[{"data":1,"prerenderedAt":7420},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":304,"course-wordcounts":1968,"ref-card-index":2880,"tikz:219d2f9d05f39ffc77fb9a96e98fad0867be7d52741c1b1d7bca769dde658fc8":7413,"tikz:08885f48708546aae2dfb0c54a68add3d13be14ee883021cdb05e2ca1a63c812":7414,"tikz:0c69ca5d49b635fb61a011bbdcffe1773214698f55a513b880e79de9f4f78595":7415,"tikz:c5544cbceee3491b3c9eb16cb25ac7992f10b53e03ec040bc288bc6402e891d2":7416,"tikz:7ab12ed37aea4a680c39ba8009c9b7c584f05a8406fbc73345afccbd79a158a8":7417,"tikz:39c4d2cbabfcec56924ef89a30ec08ba8c1374803ceaccb204fb0b7497e3c3e4":7418,"tikz:fc96736a2acfbfdef157d4078bf81f708b5dc65171626b385dc2576f3766d4e1":7419},[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":142,"blurb":306,"body":307,"brief":1942,"category":1943,"description":1944,"draft":1945,"extension":1946,"meta":1947,"module":138,"navigation":1027,"path":143,"practice":1949,"rawbody":1950,"readingTime":1951,"seo":1956,"sources":1957,"status":1964,"stem":1965,"summary":145,"topics":1966,"__hash__":1967},"course\u002F03.computer-architecture\u002F04.processor-design\u002F01.the-fetch-decode-execute-cycle.md","",{"type":308,"value":309,"toc":1934},"minimark",[310,328,333,353,363,382,386,389,393,400,403,467,478,528,531,535,569,588,592,599,602,605,686,719,723,743,862,868,994,1067,1360,1363,1376,1664,1670,1717,1720,1745,1853,1856,1860,1897,1904,1923,1930],[311,312,313,314,318,319,322,323,327],"p",{},"The previous module fixed the ",[315,316,317],"a",{"href":100},"Y86-64 instruction set",":\nexactly what state a program can see and exactly how each instruction is encoded in\nbytes. The module before that built the ",[315,320,321],{"href":124},"combinational and storage\nelements",":\nmuxes, decoders, the ALU, the register file, memory. This module spends those parts\non one goal: a circuit that, started at an address, ",[324,325,326],"strong",{},"runs"," a Y86-64 program. The\nwhole thing is one loop, repeated billions of times a second, and this first lesson\ndraws that loop and names its pieces before we wire a single gate.",[329,330,332],"h2",{"id":331},"the-stored-program-machine","The stored-program machine",[311,334,335,336,339,340,343,344,348,349,352],{},"The defining idea of the modern computer is older than any chip: ",[324,337,338],{},"the program lives\nin the same memory as the data, as bytes the machine reads and obeys."," A processor\nholds one piece of private state that points into that memory, the ",[324,341,342],{},"program\ncounter",", and its entire behavior is a loop: read the bytes at the PC, treat them\nas an instruction, carry it out, and update the PC to point at the next instruction.\nNothing tells the hardware whether a given byte is ",[345,346,347],"q",{},"code"," or ",[345,350,351],{},"data","; the PC decides,\nby pointing at it.",[354,355,357],"callout",{"type":356},"definition",[311,358,359,362],{},[324,360,361],{},"Definition (Stored-program \u002F von Neumann machine)."," A computer whose\ninstructions and data share one addressable memory, executed by repeatedly\nfetching the instruction at the program counter, performing it, and advancing the\ncounter. The same bytes are instructions when the PC points at them and data when\na load or store does.",[311,364,365,366,369,370,373,374,377,378,381],{},"That single loop is the ",[324,367,368],{},"instruction cycle",", and the machine never leaves it until\na ",[347,371,372],{},"halt"," instruction sets ",[347,375,376],{},"Stat"," to ",[347,379,380],{},"HLT",".",[383,384],"tikz-figure",{"hash":385},"219d2f9d05f39ffc77fb9a96e98fad0867be7d52741c1b1d7bca769dde658fc8",[311,387,388],{},"The PC update is what makes the loop a loop. For most instructions the next PC is simply the address just past the bytes\nwe read; for a jump or a call it is somewhere else entirely; for a return it comes\noff the stack. Getting that one value right on every instruction is what keeps the\nmachine on the rails.",[329,390,392],{"id":391},"the-datapath-the-units-the-loop-drives","The datapath: the units the loop drives",[311,394,395,396,399],{},"The loop above is behavior; the ",[324,397,398],{},"datapath"," is the hardware that carries it out:\nthe functional units, wired together, that hold and move the bits. Five units do almost\nall of the work, and we have already built every one of them in isolation.",[383,401],{"hash":402},"08885f48708546aae2dfb0c54a68add3d13be14ee883021cdb05e2ca1a63c812",[404,405,406,413,431,445,461],"ul",{},[407,408,409,412],"li",{},[324,410,411],{},"The program counter (PC)"," is a single 64-bit register holding the address of\nthe current instruction. It is the only state outside memory and the register\nfile, and it is updated once per instruction.",[407,414,415,418,419,422,423,426,427,430],{},[324,416,417],{},"Instruction memory"," is the part of memory the fetch stage reads. Given the PC it\nreturns the instruction bytes: the ",[347,420,421],{},"icode:ifun"," opcode, an optional register byte,\nan optional 8-byte constant. (In Y86-64 there is one memory; ",[345,424,425],{},"instruction memory","\nand ",[345,428,429],{},"data memory"," are two read\u002Fwrite ports onto it.)",[407,432,433,436,437,440,441,444],{},[324,434,435],{},"The register file"," holds the fifteen program registers ",[347,438,439],{},"%rax","–",[347,442,443],{},"%r14",". It has two\nread ports (so both ALU operands can be read at once) and two write ports (so an\ninstruction can update two registers — an ALU result and a memory value — in one\ncycle).",[407,446,447,450,451,454,455,454,458,381],{},[324,448,449],{},"The ALU"," does the arithmetic: it adds, subtracts, ANDs, and XORs under a\nfunction-code control input, and on arithmetic instructions it sets the condition\ncodes ",[347,452,453],{},"ZF","\u002F",[347,456,457],{},"SF",[347,459,460],{},"OF",[407,462,463,466],{},[324,464,465],{},"Data memory"," is the part of memory loads and stores touch, addressed by an\naddress the ALU usually computes.",[311,468,469,470,473,474,477],{},"Two more pieces glue these together. ",[324,471,472],{},"Condition codes"," are three flip-flops the ALU\nwrites and the branches read. And ",[324,475,476],{},"multiplexers"," sit at the input of nearly every\nunit, choosing, under control-unit signals, which of several possible values that\nunit should see this cycle. The next operand might be a register or an immediate; the\nwrite-back value might be the ALU result or a loaded word; the next PC might be the\nfall-through address, a jump target, or a return address. Every such choice is a mux.",[311,479,480,481,484,485,489,490,493,494,497,498,500,501,504,505,440,508,511,512,440,514,516,517,520,521,524,525,527],{},"The register file deserves a closer look, because its shape is dictated by what a\nsingle instruction must do in one cycle. ",[347,482,483],{},"popq %rbx",", for instance, updates ",[486,487,488],"em",{},"two","\nregisters at once — it writes the incremented ",[347,491,492],{},"%rsp"," and the loaded word into\n",[347,495,496],{},"%rbx"," — and it reads ",[347,499,492],{}," while doing so. So the register file has ",[324,502,503],{},"two read\nports and two write ports",", each an independent address-plus-data channel into the\nsame array of fifteen 64-bit registers. Reads are combinational (present an ID, the\nvalue appears after a gate delay); writes are clocked (they commit only at the\ncycle's rising edge). A register ID is four bits, so ",[347,506,507],{},"0x0",[347,509,510],{},"0xE"," name ",[347,513,439],{},[347,515,443],{},"\nand the spare code ",[347,518,519],{},"0xF"," is ",[347,522,523],{},"RNONE",": addressing a port with ",[347,526,523],{}," reads zero and\nwrites nowhere, which is how an instruction that needs only one operand leaves the\nother port idle.",[383,529],{"hash":530},"0c69ca5d49b635fb61a011bbdcffe1773214698f55a513b880e79de9f4f78595",[329,532,534],{"id":533},"the-control-unit-sequencing-the-datapath","The control unit: sequencing the datapath",[311,536,537,538,541,542,545,546,549,550,553,554,557,558,561,562,564,565,568],{},"The datapath can compute anything, but it does not know ",[486,539,540],{},"what"," to compute on a given\ncycle. That is the ",[324,543,544],{},"control unit's"," job. It reads the one field that names the\noperation, ",[347,547,548],{},"icode"," (with ",[347,551,552],{},"ifun"," for variants), and from it computes every control\nsignal the datapath needs: which registers to read and write, what function the ALU\nperforms, whether memory reads or writes, and where the next PC comes from. In a\n",[324,555,556],{},"hardwired"," control unit — the kind we build in this module — that computation is\npure combinational logic, written in HCL: a set of Boolean and ",[347,559,560],{},"case"," expressions of\n",[347,563,548],{},". There is no little program inside the processor; the control ",[486,566,567],{},"is"," the\ncircuit.",[354,570,571],{"type":356},[311,572,573,576,577,454,579,581,582,584,585,381],{},[324,574,575],{},"Definition (Control unit)."," The combinational logic that derives every datapath\ncontrol signal from the instruction's ",[347,578,548],{},[347,580,552],{},". In a hardwired\nimplementation these are HCL ",[347,583,560],{}," expressions evaluated each cycle; the\nalternative — a microprogrammed control unit that steps through stored\nmicro-instructions — trades speed for flexibility and is sketched in\n",[315,586,587],{"href":153},"lesson 3",[329,589,591],{"id":590},"breaking-the-cycle-into-stages","Breaking the cycle into stages",[311,593,594,595,598],{},"To turn the loop into a circuit we slice it into a fixed sequence of ",[324,596,597],{},"stages",", each\na clean band of computation that hands its results to the next. CS:APP's sequential\ndesign (SEQ) uses six, and every Y86-64 instruction flows through the same six in the\nsame order. Instructions that do not need a stage simply pass through it.",[383,600],{"hash":601},"c5544cbceee3491b3c9eb16cb25ac7992f10b53e03ec040bc288bc6402e891d2",[311,603,604],{},"The stages are worth naming once, because the rest of the module fills in\nexactly what each one computes for each instruction.",[404,606,607,624,636,649,659,671],{},[407,608,609,612,613,615,616,619,620,623],{},[324,610,611],{},"Fetch"," reads the instruction bytes at the PC, splits out ",[347,614,421],{},", the\nregister byte, and the constant ",[347,617,618],{},"valC",", and computes ",[347,621,622],{},"valP",", the address of the\nnext instruction in sequence.",[407,625,626,629,630,426,633,381],{},[324,627,628],{},"Decode"," reads up to two register operands from the register file into ",[347,631,632],{},"valA",[347,634,635],{},"valB",[407,637,638,641,642,645,646,381],{},[324,639,640],{},"Execute"," uses the ALU — to compute an arithmetic result, a memory address, or a\nstack adjustment — producing ",[347,643,644],{},"valE",", and on arithmetic instructions sets the\ncondition codes. It also evaluates the branch condition ",[347,647,648],{},"Cnd",[407,650,651,654,655,658],{},[324,652,653],{},"Memory"," reads a word from data memory into ",[347,656,657],{},"valM",", or writes a value to data\nmemory.",[407,660,661,664,665,667,668,670],{},[324,662,663],{},"Write-back"," writes up to two results back to the register file: ",[347,666,644],{}," to one\nregister, ",[347,669,657],{}," to another.",[407,672,673,676,677,679,680,682,683,685],{},[324,674,675],{},"PC update"," computes the address of the next instruction: normally ",[347,678,622],{},", but\n",[347,681,618],{}," for a call or taken jump, and ",[347,684,657],{}," for a return.",[311,687,688,689,692,693,696,697,699,700,703,704,707,708,711,712,715,716,718],{},"Not every instruction uses every stage, but every instruction passes through all six\nin lockstep — a stage it does not need simply produces a value nothing uses. An ",[347,690,691],{},"OPq","\nlike ",[347,694,695],{},"addq"," reads registers (Decode), computes in the ALU (Execute), and writes a\nregister (Write-back), but its Memory stage does nothing: ",[347,698,695],{}," touches no memory, so\nMemory is a cycle spent idle. A ",[347,701,702],{},"nop"," uses only Fetch and PC update; a ",[347,705,706],{},"jmp"," adds\nExecute (to evaluate the always-true condition) but skips Decode, Memory, and\nWrite-back; a ",[347,709,710],{},"ret"," is the busiest short instruction, exercising Decode, Execute,\nMemory, Write-back, ",[486,713,714],{},"and"," a non-default PC update. Keeping the stage sequence fixed —\nrather than letting instructions take custom paths — is what lets one control unit and\none datapath serve all twelve opcodes, at the cost of stages an instruction\nleaves idle; ",[315,717,168],{"href":177},"\nlater recovers that cost.",[329,720,722],{"id":721},"how-fetch-finds-the-instruction-boundaries","How fetch finds the instruction boundaries",[311,724,725,726,729,730,733,734,736,737,739,740,742],{},"Everything downstream depends on fetch getting one job exactly right: carving a\nstream of undifferentiated bytes into instructions. Y86-64 instructions are\n",[324,727,728],{},"variable-length"," (1, 2, 9, or 10 bytes), so there is no fixed stride the PC can\nadvance by. The machine cannot look ahead, and it does not need to: ",[324,731,732],{},"the first byte\nalone determines the length of the whole instruction."," Its high nibble is ",[347,735,548],{},",\nits low nibble ",[347,738,552],{},", and ",[347,741,548],{}," fixes the format:",[404,744,745,821],{},[407,746,747,748,751,752,454,755,758,759,761,762,758,765,758,768,758,771,739,774,777,778,758,780,758,782,761,785,739,788,790,791,794,795,381],{},"Does the instruction have a ",[324,749,750],{},"register byte","? Yes for ",[347,753,754],{},"rrmovq",[347,756,757],{},"cmovXX",", ",[347,760,691],{},",\n",[347,763,764],{},"pushq",[347,766,767],{},"popq",[347,769,770],{},"irmovq",[347,772,773],{},"rmmovq",[347,775,776],{},"mrmovq","; no for ",[347,779,372],{},[347,781,702],{},[347,783,784],{},"jXX",[347,786,787],{},"call",[347,789,710],{},". Call this bit ",[347,792,793],{},"need_regids",", or ",[796,797,800],"span",{"className":798},[799],"katex",[796,801,805],{"className":802,"ariaHidden":804},[803],"katex-html","true",[796,806,809,814],{"className":807},[808],"base",[796,810],{"className":811,"style":813},[812],"strut","height:0.4306em;",[796,815,820],{"className":816,"style":819},[817,818],"mord","mathnormal","margin-right:0.0278em;","r",[407,822,823,824,827,828,751,830,758,832,758,834,836,837,839,840,842,843,794,846,381],{},"Does it have an ",[324,825,826],{},"8-byte constant"," ",[347,829,618],{},[347,831,770],{},[347,833,773],{},[347,835,776],{},"\n(the immediate or displacement) and for ",[347,838,784],{}," and ",[347,841,787],{}," (the destination\naddress). Call this bit ",[347,844,845],{},"need_valC",[796,847,849],{"className":848},[799],[796,850,852],{"className":851,"ariaHidden":804},[803],[796,853,855,858],{"className":854},[808],[796,856],{"className":857,"style":813},[812],[796,859,861],{"className":860},[817,818],"c",[311,863,864,865,867],{},"Both bits are one-line HCL predicates on ",[347,866,548],{},", and together they give the\ninstruction length and therefore the fall-through address:",[796,869,872],{"className":870},[871],"katex-display",[796,873,875],{"className":874},[799],[796,876,878,912,938,958,977],{"className":877,"ariaHidden":804},[803],[796,879,881,885,893,898,901,906,909],{"className":880},[808],[796,882],{"className":883,"style":884},[812],"height:0.6111em;",[796,886,889],{"className":887},[817,888],"text",[796,890,622],{"className":891},[817,892],"texttt",[796,894],{"className":895,"style":897},[896],"mspace","margin-right:0.2778em;",[796,899],{"className":900,"style":897},[896],[796,902,905],{"className":903},[904],"mrel","=",[796,907],{"className":908,"style":897},[896],[796,910],{"className":911,"style":897},[896],[796,913,915,919,926,930,935],{"className":914},[808],[796,916],{"className":917,"style":918},[812],"height:0.6944em;vertical-align:-0.0833em;",[796,920,922],{"className":921},[817,888],[796,923,925],{"className":924},[817,892],"PC",[796,927],{"className":928,"style":929},[896],"margin-right:0.2222em;",[796,931,934],{"className":932},[933],"mbin","+",[796,936],{"className":937,"style":929},[896],[796,939,941,945,949,952,955],{"className":940},[808],[796,942],{"className":943,"style":944},[812],"height:0.7278em;vertical-align:-0.0833em;",[796,946,948],{"className":947},[817],"1",[796,950],{"className":951,"style":929},[896],[796,953,934],{"className":954},[933],[796,956],{"className":957,"style":929},[896],[796,959,961,965,968,971,974],{"className":960},[808],[796,962],{"className":963,"style":964},[812],"height:0.6667em;vertical-align:-0.0833em;",[796,966,820],{"className":967,"style":819},[817,818],[796,969],{"className":970,"style":929},[896],[796,972,934],{"className":973},[933],[796,975],{"className":976,"style":929},[896],[796,978,980,984,988,991],{"className":979},[808],[796,981],{"className":982,"style":983},[812],"height:0.6444em;",[796,985,987],{"className":986},[817],"8",[796,989,861],{"className":990},[817,818],[796,992,381],{"className":993},[817],[995,996,1000],"pre",{"className":997,"code":998,"filename":999,"language":861,"meta":306,"style":306},"language-c shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","bool need_regids = icode in { IRRMOVQ, IOPQ, IPUSHQ, IPOPQ,\n                              IIRMOVQ, IRMMOVQ, IMRMOVQ };\n\nbool need_valC   = icode in { IIRMOVQ, IRMMOVQ, IMRMOVQ, IJXX, ICALL };\n\nbool instr_valid = icode in { INOP, IHALT, IRRMOVQ, IIRMOVQ, IRMMOVQ,\n                              IMRMOVQ, IOPQ, IJXX, ICALL, IRET,\n                              IPUSHQ, IPOPQ };\n","seq-fetch.hcl",[347,1001,1002,1018,1023,1029,1041,1045,1057,1062],{"__ignoreMap":306},[796,1003,1005,1009,1013,1015],{"class":1004,"line":6},"line",[796,1006,1008],{"class":1007},"sdxpw","bool",[796,1010,1012],{"class":1011},"s3i95"," need_regids ",[796,1014,905],{"class":1007},[796,1016,1017],{"class":1011}," icode in { IRRMOVQ, IOPQ, IPUSHQ, IPOPQ,\n",[796,1019,1020],{"class":1004,"line":17},[796,1021,1022],{"class":1011},"                              IIRMOVQ, IRMMOVQ, IMRMOVQ };\n",[796,1024,1025],{"class":1004,"line":23},[796,1026,1028],{"emptyLinePlaceholder":1027},true,"\n",[796,1030,1031,1033,1036,1038],{"class":1004,"line":29},[796,1032,1008],{"class":1007},[796,1034,1035],{"class":1011}," need_valC   ",[796,1037,905],{"class":1007},[796,1039,1040],{"class":1011}," icode in { IIRMOVQ, IRMMOVQ, IMRMOVQ, IJXX, ICALL };\n",[796,1042,1043],{"class":1004,"line":35},[796,1044,1028],{"emptyLinePlaceholder":1027},[796,1046,1047,1049,1052,1054],{"class":1004,"line":70},[796,1048,1008],{"class":1007},[796,1050,1051],{"class":1011}," instr_valid ",[796,1053,905],{"class":1007},[796,1055,1056],{"class":1011}," icode in { INOP, IHALT, IRRMOVQ, IIRMOVQ, IRMMOVQ,\n",[796,1058,1059],{"class":1004,"line":76},[796,1060,1061],{"class":1011},"                              IMRMOVQ, IOPQ, IJXX, ICALL, IRET,\n",[796,1063,1064],{"class":1004,"line":226},[796,1065,1066],{"class":1011},"                              IPUSHQ, IPOPQ };\n",[311,1068,1069,1070,839,1085,1100,1101,1166,1167,1169,1170,1166,1230,1232,1233,1166,1293,1296,1297,1166,1357,1359],{},"The four possible lengths come from the four combinations of ",[796,1071,1073],{"className":1072},[799],[796,1074,1076],{"className":1075,"ariaHidden":804},[803],[796,1077,1079,1082],{"className":1078},[808],[796,1080],{"className":1081,"style":813},[812],[796,1083,820],{"className":1084,"style":819},[817,818],[796,1086,1088],{"className":1087},[799],[796,1089,1091],{"className":1090,"ariaHidden":804},[803],[796,1092,1094,1097],{"className":1093},[808],[796,1095],{"className":1096,"style":813},[812],[796,1098,861],{"className":1099},[817,818],": 1 byte\n(",[796,1102,1104],{"className":1103},[799],[796,1105,1107,1125,1157],{"className":1106,"ariaHidden":804},[803],[796,1108,1110,1113,1116,1119,1122],{"className":1109},[808],[796,1111],{"className":1112,"style":813},[812],[796,1114,820],{"className":1115,"style":819},[817,818],[796,1117],{"className":1118,"style":897},[896],[796,1120,905],{"className":1121},[904],[796,1123],{"className":1124,"style":897},[896],[796,1126,1128,1132,1136,1141,1145,1148,1151,1154],{"className":1127},[808],[796,1129],{"className":1130,"style":1131},[812],"height:0.8389em;vertical-align:-0.1944em;",[796,1133,1135],{"className":1134},[817],"0",[796,1137,1140],{"className":1138},[1139],"mpunct",",",[796,1142],{"className":1143,"style":1144},[896],"margin-right:0.1667em;",[796,1146,861],{"className":1147},[817,818],[796,1149],{"className":1150,"style":897},[896],[796,1152,905],{"className":1153},[904],[796,1155],{"className":1156,"style":897},[896],[796,1158,1160,1163],{"className":1159},[808],[796,1161],{"className":1162,"style":983},[812],[796,1164,1135],{"className":1165},[817],", e.g. ",[347,1168,710],{},"), 2 bytes (",[796,1171,1173],{"className":1172},[799],[796,1174,1176,1194,1221],{"className":1175,"ariaHidden":804},[803],[796,1177,1179,1182,1185,1188,1191],{"className":1178},[808],[796,1180],{"className":1181,"style":813},[812],[796,1183,820],{"className":1184,"style":819},[817,818],[796,1186],{"className":1187,"style":897},[896],[796,1189,905],{"className":1190},[904],[796,1192],{"className":1193,"style":897},[896],[796,1195,1197,1200,1203,1206,1209,1212,1215,1218],{"className":1196},[808],[796,1198],{"className":1199,"style":1131},[812],[796,1201,948],{"className":1202},[817],[796,1204,1140],{"className":1205},[1139],[796,1207],{"className":1208,"style":1144},[896],[796,1210,861],{"className":1211},[817,818],[796,1213],{"className":1214,"style":897},[896],[796,1216,905],{"className":1217},[904],[796,1219],{"className":1220,"style":897},[896],[796,1222,1224,1227],{"className":1223},[808],[796,1225],{"className":1226,"style":983},[812],[796,1228,1135],{"className":1229},[817],[347,1231,695],{},"), 9 bytes\n(",[796,1234,1236],{"className":1235},[799],[796,1237,1239,1257,1284],{"className":1238,"ariaHidden":804},[803],[796,1240,1242,1245,1248,1251,1254],{"className":1241},[808],[796,1243],{"className":1244,"style":813},[812],[796,1246,820],{"className":1247,"style":819},[817,818],[796,1249],{"className":1250,"style":897},[896],[796,1252,905],{"className":1253},[904],[796,1255],{"className":1256,"style":897},[896],[796,1258,1260,1263,1266,1269,1272,1275,1278,1281],{"className":1259},[808],[796,1261],{"className":1262,"style":1131},[812],[796,1264,1135],{"className":1265},[817],[796,1267,1140],{"className":1268},[1139],[796,1270],{"className":1271,"style":1144},[896],[796,1273,861],{"className":1274},[817,818],[796,1276],{"className":1277,"style":897},[896],[796,1279,905],{"className":1280},[904],[796,1282],{"className":1283,"style":897},[896],[796,1285,1287,1290],{"className":1286},[808],[796,1288],{"className":1289,"style":983},[812],[796,1291,948],{"className":1292},[817],[347,1294,1295],{},"jne","), and 10 bytes (",[796,1298,1300],{"className":1299},[799],[796,1301,1303,1321,1348],{"className":1302,"ariaHidden":804},[803],[796,1304,1306,1309,1312,1315,1318],{"className":1305},[808],[796,1307],{"className":1308,"style":813},[812],[796,1310,820],{"className":1311,"style":819},[817,818],[796,1313],{"className":1314,"style":897},[896],[796,1316,905],{"className":1317},[904],[796,1319],{"className":1320,"style":897},[896],[796,1322,1324,1327,1330,1333,1336,1339,1342,1345],{"className":1323},[808],[796,1325],{"className":1326,"style":1131},[812],[796,1328,948],{"className":1329},[817],[796,1331,1140],{"className":1332},[1139],[796,1334],{"className":1335,"style":1144},[896],[796,1337,861],{"className":1338},[817,818],[796,1340],{"className":1341,"style":897},[896],[796,1343,905],{"className":1344},[904],[796,1346],{"className":1347,"style":897},[896],[796,1349,1351,1354],{"className":1350},[808],[796,1352],{"className":1353,"style":983},[812],[796,1355,948],{"className":1356},[817],[347,1358,770],{},").",[383,1361],{"hash":1362},"7ab12ed37aea4a680c39ba8009c9b7c584f05a8406fbc73345afccbd79a158a8",[311,1364,1365,1366,1369,1370,1373,1374,381],{},"Trace it on a real byte stream. Suppose memory from address ",[347,1367,1368],{},"0x000"," holds\n",[347,1371,1372],{},"30 f2 09 00 00 00 00 00 00 00 60 20 90"," and the PC starts at ",[347,1375,1368],{},[404,1377,1378,1474,1576],{},[407,1379,1380,1381,1384,1385,1388,1389,1391,1392,758,1425,1458,1459,1462,1463,1466,1467,1470,1471,381],{},"Fetch reads byte ",[347,1382,1383],{},"30",": ",[347,1386,1387],{},"icode = 3"," (",[347,1390,770],{},"), so ",[796,1393,1395],{"className":1394},[799],[796,1396,1398,1416],{"className":1397,"ariaHidden":804},[803],[796,1399,1401,1404,1407,1410,1413],{"className":1400},[808],[796,1402],{"className":1403,"style":813},[812],[796,1405,820],{"className":1406,"style":819},[817,818],[796,1408],{"className":1409,"style":897},[896],[796,1411,905],{"className":1412},[904],[796,1414],{"className":1415,"style":897},[896],[796,1417,1419,1422],{"className":1418},[808],[796,1420],{"className":1421,"style":983},[812],[796,1423,948],{"className":1424},[817],[796,1426,1428],{"className":1427},[799],[796,1429,1431,1449],{"className":1430,"ariaHidden":804},[803],[796,1432,1434,1437,1440,1443,1446],{"className":1433},[808],[796,1435],{"className":1436,"style":813},[812],[796,1438,861],{"className":1439},[817,818],[796,1441],{"className":1442,"style":897},[896],[796,1444,905],{"className":1445},[904],[796,1447],{"className":1448,"style":897},[896],[796,1450,1452,1455],{"className":1451},[808],[796,1453],{"className":1454,"style":983},[812],[796,1456,948],{"className":1457},[817],", length 10. The\nregister byte ",[347,1460,1461],{},"f2"," gives ",[347,1464,1465],{},"rB = %rdx",", the next 8 bytes give ",[347,1468,1469],{},"valC = 9",", and\n",[347,1472,1473],{},"valP = 0x000 + 10 = 0x00a",[407,1475,1476,1477,1480,1481,1384,1484,1388,1487,739,1489,1492,1493,1495,1496,758,1529,1562,1563,1566,1567,839,1570,1572,1573,381],{},"At ",[347,1478,1479],{},"0x00a",", byte ",[347,1482,1483],{},"60",[347,1485,1486],{},"icode = 6",[347,1488,691],{},[347,1490,1491],{},"ifun = 0"," says ",[347,1494,695],{},"), so\n",[796,1497,1499],{"className":1498},[799],[796,1500,1502,1520],{"className":1501,"ariaHidden":804},[803],[796,1503,1505,1508,1511,1514,1517],{"className":1504},[808],[796,1506],{"className":1507,"style":813},[812],[796,1509,820],{"className":1510,"style":819},[817,818],[796,1512],{"className":1513,"style":897},[896],[796,1515,905],{"className":1516},[904],[796,1518],{"className":1519,"style":897},[896],[796,1521,1523,1526],{"className":1522},[808],[796,1524],{"className":1525,"style":983},[812],[796,1527,948],{"className":1528},[817],[796,1530,1532],{"className":1531},[799],[796,1533,1535,1553],{"className":1534,"ariaHidden":804},[803],[796,1536,1538,1541,1544,1547,1550],{"className":1537},[808],[796,1539],{"className":1540,"style":813},[812],[796,1542,861],{"className":1543},[817,818],[796,1545],{"className":1546,"style":897},[896],[796,1548,905],{"className":1549},[904],[796,1551],{"className":1552,"style":897},[896],[796,1554,1556,1559],{"className":1555},[808],[796,1557],{"className":1558,"style":983},[812],[796,1560,1135],{"className":1561},[817],", length 2. The register byte ",[347,1564,1565],{},"20"," names ",[347,1568,1569],{},"%rdx",[347,1571,439],{},";\n",[347,1574,1575],{},"valP = 0x00c",[407,1577,1476,1578,1480,1581,1384,1584,1388,1587,1589,1590,758,1623,1656,1657,1660,1661,1663],{},[347,1579,1580],{},"0x00c",[347,1582,1583],{},"90",[347,1585,1586],{},"icode = 9",[347,1588,710],{},"), ",[796,1591,1593],{"className":1592},[799],[796,1594,1596,1614],{"className":1595,"ariaHidden":804},[803],[796,1597,1599,1602,1605,1608,1611],{"className":1598},[808],[796,1600],{"className":1601,"style":813},[812],[796,1603,820],{"className":1604,"style":819},[817,818],[796,1606],{"className":1607,"style":897},[896],[796,1609,905],{"className":1610},[904],[796,1612],{"className":1613,"style":897},[896],[796,1615,1617,1620],{"className":1616},[808],[796,1618],{"className":1619,"style":983},[812],[796,1621,1135],{"className":1622},[817],[796,1624,1626],{"className":1625},[799],[796,1627,1629,1647],{"className":1628,"ariaHidden":804},[803],[796,1630,1632,1635,1638,1641,1644],{"className":1631},[808],[796,1633],{"className":1634,"style":813},[812],[796,1636,861],{"className":1637},[817,818],[796,1639],{"className":1640,"style":897},[896],[796,1642,905],{"className":1643},[904],[796,1645],{"className":1646,"style":897},[896],[796,1648,1650,1653],{"className":1649},[808],[796,1651],{"className":1652,"style":983},[812],[796,1654,1135],{"className":1655},[817],", length 1;\n",[347,1658,1659],{},"valP = 0x00d",", though ",[347,1662,710],{}," will discard it and take the return address instead.",[311,1665,1666,1667,1669],{},"Three instructions, three different lengths, and at no point did the hardware guess:\neach first byte fixed how many bytes belonged to its instruction, and ",[347,1668,622],{},"\nlanded exactly on the next boundary.",[311,1671,1672,1673,827,1676,1678,1679,1681,1682,1685,1686,1688,1689,1692,1693,1696,1697,1700,1701,758,1704,1706,1707,1710,1711,1713,1714,381],{},"Fetch is also the machine's first line of defense against a broken program. Two\nthings can go wrong before an instruction even runs, and fetch catches both by\nsetting the two-bit ",[324,1674,1675],{},"status code",[347,1677,376],{}," that every cycle carries alongside the\ninstruction. If the ",[347,1680,548],{}," nibble is not one of the twelve valid opcodes,\n",[347,1683,1684],{},"instr_valid"," goes false and ",[347,1687,376],{}," becomes ",[347,1690,1691],{},"INS",", an illegal-instruction halt,\nrather than executing garbage. If the PC points outside valid memory, ",[347,1694,1695],{},"imem_error","\nraises ",[347,1698,1699],{},"Stat = ADR",". A clean instruction leaves ",[347,1702,1703],{},"Stat = AOK",[347,1705,372],{}," sets ",[347,1708,1709],{},"Stat = HLT",", and the rule is simply that the machine begins another cycle only while ",[347,1712,376],{},"\nis ",[347,1715,1716],{},"AOK",[383,1718],{"hash":1719},"39c4d2cbabfcec56924ef89a30ec08ba8c1374803ceaccb204fb0b7497e3c3e4",[311,1721,1722,1723,1726,1727,1730,1731,520,1733,758,1736,1391,1738,761,1741,1744],{},"Suppose the byte at the PC were ",[347,1724,1725],{},"f0",". Its high nibble ",[347,1728,1729],{},"f"," is not among the twelve\nopcodes (the largest valid ",[347,1732,548],{},[347,1734,1735],{},"0xB",[347,1737,767],{},[347,1739,1740],{},"instr_valid = 0",[347,1742,1743],{},"Stat = INS",", and the machine halts here instead of decoding a phantom instruction\nwith a phantom length. This is why a valid-opcode check belongs in fetch and nowhere\nelse: fetch is the one stage that has seen the raw byte before any downstream logic\nhas committed to a length or a register read.",[311,1746,1747,1748,1751,1752,839,1754,1756,1757,1760,1761,758,1764,739,1767,1769,1770,1772,1773,1776,1777,1852],{},"In hardware, fetch is a small datapath of its own: instruction memory produces ten\nbytes starting at the PC; a ",[324,1749,1750],{},"split"," unit divides byte 0 into ",[347,1753,548],{},[347,1755,552],{},";\nan ",[324,1758,1759],{},"align"," unit routes bytes 1–9 into ",[347,1762,1763],{},"rA",[347,1765,1766],{},"rB",[347,1768,618],{}," (bytes 1–8 form\n",[347,1771,618],{}," when there is no register byte, bytes 2–9 when there is); and a dedicated\n",[324,1774,1775],{},"PC-increment"," adder computes ",[796,1778,1780],{"className":1779},[799],[796,1781,1783,1804,1822,1840],{"className":1782,"ariaHidden":804},[803],[796,1784,1786,1789,1795,1798,1801],{"className":1785},[808],[796,1787],{"className":1788,"style":918},[812],[796,1790,1792],{"className":1791},[817,888],[796,1793,925],{"className":1794},[817,892],[796,1796],{"className":1797,"style":929},[896],[796,1799,934],{"className":1800},[933],[796,1802],{"className":1803,"style":929},[896],[796,1805,1807,1810,1813,1816,1819],{"className":1806},[808],[796,1808],{"className":1809,"style":944},[812],[796,1811,948],{"className":1812},[817],[796,1814],{"className":1815,"style":929},[896],[796,1817,934],{"className":1818},[933],[796,1820],{"className":1821,"style":929},[896],[796,1823,1825,1828,1831,1834,1837],{"className":1824},[808],[796,1826],{"className":1827,"style":964},[812],[796,1829,820],{"className":1830,"style":819},[817,818],[796,1832],{"className":1833,"style":929},[896],[796,1835,934],{"className":1836},[933],[796,1838],{"className":1839,"style":929},[896],[796,1841,1843,1846,1849],{"className":1842},[808],[796,1844],{"className":1845,"style":983},[812],[796,1847,987],{"className":1848},[817],[796,1850,861],{"className":1851},[817,818],". There is no reason to\noccupy the main ALU with the PC increment (it is busy computing the instruction's\nown result), so fetch gets its own small adder.",[383,1854],{"hash":1855},"fc96736a2acfbfdef157d4078bf81f708b5dc65171626b385dc2576f3766d4e1",[329,1857,1859],{"id":1858},"where-the-six-stages-go-next","Where the six stages go next",[311,1861,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,758,1886,758,1889,1892,1893,1896],{},"SEQ commits to one instruction per clock cycle, and the whole loop must settle inside\nthat cycle. That is a deliberate teaching simplification, and the very next design in\nCS:APP starts undoing it. The first move is a bookkeeping one called ",[324,1864,1865],{},"SEQ+"," (Bryant\n& O'Hallaron, ",[486,1868,1869],{},"CS:APP"," §4.5.1): the PC-update stage is shifted from the ",[486,1872,1873],{},"end"," of the\ncycle to the ",[486,1876,1877],{},"beginning",", so the machine computes the address of the instruction it is\n",[486,1880,1881],{},"about"," to run from state saved on the previous cycle. SEQ+ has no PC\nregister at all — the program counter is reconstructed each cycle from a handful of\nsaved signals (",[347,1884,1885],{},"pIcode",[347,1887,1888],{},"pValC",[347,1890,1891],{},"pValM",", …). CS:APP notes this is an instance of\n",[324,1894,1895],{},"circuit retiming"," (Leiserson & Saxe, 1991), a transformation that relocates state\nacross combinational logic without changing what the circuit computes, used here to\nbalance stage delays. It leads directly to pipelining: once every stage begins\nand ends at a clean register boundary, you can let several instructions occupy\ndifferent stages at once.",[311,1898,1899,1900,1903],{},"Real processors carry the same six-stage skeleton, but the fetch-and-decode front end\nlooks nothing like Y86-64's tidy nibble-splitter. x86-64 instructions run from 1 to 15\nbytes with prefixes, escape bytes, and mode-dependent operands, so decode is a serious\npipeline of its own. Modern x86 cores translate each architectural instruction into\none or more fixed-format internal operations — ",[345,1901,1902],{},"micro-operations,"," or µops — and the\nback end schedules those, out of order, across many functional units (Bryant &\nO'Hallaron, §4.1 aside on RISC vs. CISC; and CS:APP §5.7 on modern processors). The\nprinciple the aside on SEQ+ states plainly is what licenses all of this: a processor\nmay represent its state however it likes, so long as it produces the correct\nprogrammer-visible values for any machine-language program. SEQ is the baseline\nagainst which those later liberties make sense.",[354,1905,1907],{"type":1906},"note",[311,1908,1909,1912,1913,1915,1916,1918,1919,1922],{},[324,1910,1911],{},"Takeaway."," A processor is a stored-program machine running one loop forever:\nfetch the instruction at the PC, decode its operands, execute, touch memory, write\nback, and update the PC. The datapath — PC, instruction memory, register file, ALU,\ndata memory, with muxes at their inputs — is the hardware; the control unit, reading\n",[347,1914,548],{},", decides each cycle what that hardware does. SEQ cuts the loop into\nsix stages, the same six for every instruction, and fetch keeps the loop aligned:\nthe first byte's ",[347,1917,548],{}," fixes the instruction's length, so\n",[347,1920,1921],{},"valP = PC + 1 + need_regids + 8 need_valC"," always lands on the next boundary.",[311,1924,1925,1926,1929],{},"The ",[315,1927,1928],{"href":148},"next lesson"," makes the\nsix stages precise, writing down exactly what each one computes for each Y86-64\ninstruction.",[1931,1932,1933],"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 .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);}",{"title":306,"searchDepth":17,"depth":17,"links":1935},[1936,1937,1938,1939,1940,1941],{"id":331,"depth":17,"text":332},{"id":391,"depth":17,"text":392},{"id":533,"depth":17,"text":534},{"id":590,"depth":17,"text":591},{"id":721,"depth":17,"text":722},{"id":1858,"depth":17,"text":1859},[],"computer-science","The previous module fixed the Y86-64 instruction set:\nexactly what state a program can see and exactly how each instruction is encoded in\nbytes. The module before that built the combinational and storage\nelements:\nmuxes, decoders, the ALU, the register file, memory. This module spends those parts\non one goal: a circuit that, started at an address, runs a Y86-64 program. The\nwhole thing is one loop, repeated billions of times a second, and this first lesson\ndraws that loop and names its pieces before we wire a single gate.",false,"md",{"moduleNumber":29,"lessonNumber":6,"order":1948},401,[],"---\ntitle: The Fetch-Decode-Execute Cycle\nmodule: Processor Design\nmoduleNumber: 4\nlessonNumber: 1\norder: 401\nsummary: >\n  A processor is a machine that repeats one loop forever: read the next instruction\n  from memory, figure out what it asks for, do it, and advance. We fix the\n  stored-program idea, lay out the datapath at a high level — PC, instruction\n  memory, register file, ALU, data memory — and the control unit that sequences\n  them, break the work into the six stages the rest of the module builds in\n  hardware, and work out exactly how fetch parses variable-length instructions\n  and computes the next PC.\ntopics: [Processor Design]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4.3 Sequential Y86-64 Implementations\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)\"\n---\n\nThe previous module fixed the [Y86-64 instruction set](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set):\nexactly what state a program can see and exactly how each instruction is encoded in\nbytes. The module before that built the [combinational and storage\nelements](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu):\nmuxes, decoders, the ALU, the register file, memory. This module spends those parts\non one goal: a circuit that, started at an address, **runs** a Y86-64 program. The\nwhole thing is one loop, repeated billions of times a second, and this first lesson\ndraws that loop and names its pieces before we wire a single gate.\n\n## The stored-program machine\n\nThe defining idea of the modern computer is older than any chip: **the program lives\nin the same memory as the data, as bytes the machine reads and obeys.** A processor\nholds one piece of private state that points into that memory, the **program\ncounter**, and its entire behavior is a loop: read the bytes at the PC, treat them\nas an instruction, carry it out, and update the PC to point at the next instruction.\nNothing tells the hardware whether a given byte is \"code\" or \"data\"; the PC decides,\nby pointing at it.\n\n> **Definition (Stored-program \u002F von Neumann machine).** A computer whose\n> instructions and data share one addressable memory, executed by repeatedly\n> fetching the instruction at the program counter, performing it, and advancing the\n> counter. The same bytes are instructions when the PC points at them and data when\n> a load or store does.\n\nThat single loop is the **instruction cycle**, and the machine never leaves it until\na `halt` instruction sets `Stat` to `HLT`.\n\n$$\n% caption: The von Neumann loop. Starting from the PC, the machine fetches the\n% caption: instruction, decodes it, executes it, and updates the PC — then repeats.\n% caption: A halt instruction is the only exit.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  st\u002F.style={draw, fill=acc!8, minimum width=24mm, minimum height=10mm,\n             align=center, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[st] (f) at (0,0)    {Fetch\\\\(read bytes at PC)};\n  \\node[st] (d) at (5,0)    {Decode\\\\(read operands)};\n  \\node[st] (e) at (5,-2.4) {Execute\\\\(compute \u002F mem)};\n  \\node[st] (u) at (0,-2.4) {Update PC\\\\(next instruction)};\n  \\draw[->] (f.east) -- (d.west);\n  \\draw[->] (d.south) -- (e.north);\n  \\draw[->] (e.west) -- (u.east);\n  \\draw[->] (u.north) -- (f.south);\n  \\node[anchor=east, text=acc] at (-2.3,-1.2) {repeat};\n  \\draw[->, acc] (-1.4,-1.9) .. controls (-2.1,-1.2) .. (-1.4,-0.5);\n  \\draw[->] (e.east) -- ++(1.5,0) node[anchor=west] {halt $\\Rightarrow$ stop};\n\\end{tikzpicture}\n$$\n\nThe PC update is what makes the loop a loop. For most instructions the next PC is simply the address just past the bytes\nwe read; for a jump or a call it is somewhere else entirely; for a return it comes\noff the stack. Getting that one value right on every instruction is what keeps the\nmachine on the rails.\n\n## The datapath: the units the loop drives\n\nThe loop above is behavior; the **datapath** is the hardware that carries it out:\nthe functional units, wired together, that hold and move the bits. Five units do almost\nall of the work, and we have already built every one of them in isolation.\n\n$$\n% caption: A high-level datapath. The PC addresses instruction memory; the fetched\n% caption: instruction names registers in the register file, whose values feed the\n% caption: ALU; the ALU result addresses data memory or returns to the register\n% caption: file. The control unit (right) reads icode and steers every unit.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, minimum width=22mm, minimum height=11mm,\n            align=center, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % left-to-right pipeline of units\n  \\node[u] (pc)   at (0,0)    {PC};\n  \\node[u] (imem) at (3.0,0)  {Instruction\\\\memory};\n  \\node[u] (rf)   at (6.4,0)  {Register\\\\f\\\u002File};\n  \\node[u] (alu)  at (9.8,0)  {ALU};\n  \\node[u] (dmem) at (9.8,-2.6){Data\\\\memory};\n  % control unit to the right\n  \\node[u, minimum height=30mm] (ctl) at (13.2,-0.9) {Control\\\\unit};\n  % horizontal datapath wires\n  \\draw[->] (pc.east)   -- (imem.west) node[midway,above,font=\\scriptsize]{addr};\n  \\draw[->] (imem.east) -- (rf.west)   node[midway,above,font=\\scriptsize]{regids};\n  \\draw[->] (rf.east)   -- (alu.west)  node[midway,above,align=center,font=\\scriptsize]{valA,\\\\valB};\n  \\draw[->] (alu.south) -- (dmem.north) node[midway,right,font=\\scriptsize]{addr};\n  % writeback from data memory \u002F ALU back to register f\\\u002File\n  \\draw[->] (dmem.west) -| (rf.south)  node[pos=0.78,left,font=\\scriptsize]{valM};\n  \\draw[->] (alu.north) -- ++(0,0.7) -| ([xshift=8mm]rf.north)\n        node[pos=0.3,above,font=\\scriptsize]{valE};\n  % icode to the control unit, routed over the top\n  \\draw[->] (imem.north) -- ++(0,2.2) -| (ctl.north)\n        node[pos=0.3,above,font=\\scriptsize]{icode:ifun};\n  % control signals fan out to the units\n  \\draw[->, acc] ([yshift=6mm]ctl.west) -- ++(-0.6,0) |- (alu.east);\n  \\draw[->, acc] ([yshift=-6mm]ctl.west) -- ++(-0.6,0) |- (dmem.east);\n  \\draw[->, acc] ([xshift=-6mm]ctl.north) -- ++(0,1.1) -| ([xshift=-5mm]rf.north)\n        node[pos=0.4,above,font=\\scriptsize,text=acc]{control signals};\n\\end{tikzpicture}\n$$\n\n- **The program counter (PC)** is a single 64-bit register holding the address of\n  the current instruction. It is the only state outside memory and the register\n  file, and it is updated once per instruction.\n- **Instruction memory** is the part of memory the fetch stage reads. Given the PC it\n  returns the instruction bytes: the `icode:ifun` opcode, an optional register byte,\n  an optional 8-byte constant. (In Y86-64 there is one memory; \"instruction memory\"\n  and \"data memory\" are two read\u002Fwrite ports onto it.)\n- **The register file** holds the fifteen program registers `%rax`–`%r14`. It has two\n  read ports (so both ALU operands can be read at once) and two write ports (so an\n  instruction can update two registers — an ALU result and a memory value — in one\n  cycle).\n- **The ALU** does the arithmetic: it adds, subtracts, ANDs, and XORs under a\n  function-code control input, and on arithmetic instructions it sets the condition\n  codes `ZF`\u002F`SF`\u002F`OF`.\n- **Data memory** is the part of memory loads and stores touch, addressed by an\n  address the ALU usually computes.\n\nTwo more pieces glue these together. **Condition codes** are three flip-flops the ALU\nwrites and the branches read. And **multiplexers** sit at the input of nearly every\nunit, choosing, under control-unit signals, which of several possible values that\nunit should see this cycle. The next operand might be a register or an immediate; the\nwrite-back value might be the ALU result or a loaded word; the next PC might be the\nfall-through address, a jump target, or a return address. Every such choice is a mux.\n\nThe register file deserves a closer look, because its shape is dictated by what a\nsingle instruction must do in one cycle. `popq %rbx`, for instance, updates _two_\nregisters at once — it writes the incremented `%rsp` and the loaded word into\n`%rbx` — and it reads `%rsp` while doing so. So the register file has **two read\nports and two write ports**, each an independent address-plus-data channel into the\nsame array of fifteen 64-bit registers. Reads are combinational (present an ID, the\nvalue appears after a gate delay); writes are clocked (they commit only at the\ncycle's rising edge). A register ID is four bits, so `0x0`–`0xE` name `%rax`–`%r14`\nand the spare code `0xF` is `RNONE`: addressing a port with `RNONE` reads zero and\nwrites nowhere, which is how an instruction that needs only one operand leaves the\nother port idle.\n\n$$\n% caption: The register file: two read ports (srcA, srcB return valA, valB) and two\n% caption: write ports (dstE, dstM commit valE, valM). Reads are combinational; writes\n% caption: land at the clock edge. Addressing a port with RNONE (0xF) idles it.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  rf\u002F.style={draw, fill=acc!8, minimum width=30mm, minimum height=26mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[rf] (rf) {Register\\\\f\\\u002File\\\\\\scriptsize(15 regs)};\n  % read ports on the left (in) and right (out)\n  \\draw[->] (rf.west) ++(-2.2,0.8) -- ([yshift=8mm]rf.west) node[pos=0,anchor=east,font=\\scriptsize]{srcA};\n  \\draw[->] (rf.west) ++(-2.2,-0.8) -- ([yshift=-8mm]rf.west) node[pos=0,anchor=east,font=\\scriptsize]{srcB};\n  \\draw[->] ([yshift=8mm]rf.east) -- ++(2.2,0) node[anchor=west,font=\\scriptsize]{valA};\n  \\draw[->] ([yshift=-8mm]rf.east) -- ++(2.2,0) node[anchor=west,font=\\scriptsize]{valB};\n  % write ports from the bottom\n  \\draw[->, acc] (-1.4,-3.1) node[anchor=north,font=\\scriptsize]{dstE, valE} -- ([xshift=-7mm]rf.south);\n  \\draw[->, acc] (1.4,-3.1) node[anchor=north,font=\\scriptsize]{dstM, valM} -- ([xshift=7mm]rf.south);\n  % clock tick\n  \\node[anchor=south, font=\\scriptsize, text=acc] at (0,2.0) {writes commit at clock edge};\n\\end{tikzpicture}\n$$\n\n## The control unit: sequencing the datapath\n\nThe datapath can compute anything, but it does not know _what_ to compute on a given\ncycle. That is the **control unit's** job. It reads the one field that names the\noperation, `icode` (with `ifun` for variants), and from it computes every control\nsignal the datapath needs: which registers to read and write, what function the ALU\nperforms, whether memory reads or writes, and where the next PC comes from. In a\n**hardwired** control unit — the kind we build in this module — that computation is\npure combinational logic, written in HCL: a set of Boolean and `case` expressions of\n`icode`. There is no little program inside the processor; the control _is_ the\ncircuit.\n\n> **Definition (Control unit).** The combinational logic that derives every datapath\n> control signal from the instruction's `icode`\u002F`ifun`. In a hardwired\n> implementation these are HCL `case` expressions evaluated each cycle; the\n> alternative — a microprogrammed control unit that steps through stored\n> micro-instructions — trades speed for flexibility and is sketched in\n> [lesson 3](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing).\n\n## Breaking the cycle into stages\n\nTo turn the loop into a circuit we slice it into a fixed sequence of **stages**, each\na clean band of computation that hands its results to the next. CS:APP's sequential\ndesign (SEQ) uses six, and every Y86-64 instruction flows through the same six in the\nsame order. Instructions that do not need a stage simply pass through it.\n\n$$\n% caption: The six SEQ stages as a ring. Every instruction passes through all six\n% caption: in order; the PC update closes the loop back to the next fetch. Stages an\n% caption: instruction does not need (e.g. memory for an OPq) pass through idle.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  s\u002F.style={draw, fill=acc!8, minimum width=26mm, minimum height=9mm,\n            align=center, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[s] (f)  at (0,0)     {Fetch};\n  \\node[s] (d)  at (0,-1.4)  {Decode};\n  \\node[s] (e)  at (0,-2.8)  {Execute};\n  \\node[s] (m)  at (0,-4.2)  {Memory};\n  \\node[s] (w)  at (0,-5.6)  {Write-back};\n  \\node[s] (p)  at (0,-7.0)  {PC update};\n  \\foreach \\a\u002F\\b in {f\u002Fd, d\u002Fe, e\u002Fm, m\u002Fw, w\u002Fp} \\draw[->] (\\a.south) -- (\\b.north);\n  % loop back from PC update to fetch along the left margin\n  \\draw[->, acc] (p.west) -- ++(-1.6,0) |- (f.west);\n  \\node[text=acc, anchor=south, rotate=90, font=\\scriptsize] at (-3.3,-3.5) {next instruction};\n  % per-stage one-line job\n  \\node[anchor=west, font=\\scriptsize] at (1.7,0)    {read bytes at PC; compute valP};\n  \\node[anchor=west, font=\\scriptsize] at (1.7,-1.4) {read register operands valA, valB};\n  \\node[anchor=west, font=\\scriptsize] at (1.7,-2.8) {ALU computes valE; set CC};\n  \\node[anchor=west, font=\\scriptsize] at (1.7,-4.2) {read or write data memory (valM)};\n  \\node[anchor=west, font=\\scriptsize] at (1.7,-5.6) {write valE \u002F valM to registers};\n  \\node[anchor=west, font=\\scriptsize] at (1.7,-7.0) {select newPC};\n\\end{tikzpicture}\n$$\n\nThe stages are worth naming once, because the rest of the module fills in\nexactly what each one computes for each instruction.\n\n- **Fetch** reads the instruction bytes at the PC, splits out `icode:ifun`, the\n  register byte, and the constant `valC`, and computes `valP`, the address of the\n  next instruction in sequence.\n- **Decode** reads up to two register operands from the register file into `valA`\n  and `valB`.\n- **Execute** uses the ALU — to compute an arithmetic result, a memory address, or a\n  stack adjustment — producing `valE`, and on arithmetic instructions sets the\n  condition codes. It also evaluates the branch condition `Cnd`.\n- **Memory** reads a word from data memory into `valM`, or writes a value to data\n  memory.\n- **Write-back** writes up to two results back to the register file: `valE` to one\n  register, `valM` to another.\n- **PC update** computes the address of the next instruction: normally `valP`, but\n  `valC` for a call or taken jump, and `valM` for a return.\n\nNot every instruction uses every stage, but every instruction passes through all six\nin lockstep — a stage it does not need simply produces a value nothing uses. An `OPq`\nlike `addq` reads registers (Decode), computes in the ALU (Execute), and writes a\nregister (Write-back), but its Memory stage does nothing: `addq` touches no memory, so\nMemory is a cycle spent idle. A `nop` uses only Fetch and PC update; a `jmp` adds\nExecute (to evaluate the always-true condition) but skips Decode, Memory, and\nWrite-back; a `ret` is the busiest short instruction, exercising Decode, Execute,\nMemory, Write-back, _and_ a non-default PC update. Keeping the stage sequence fixed —\nrather than letting instructions take custom paths — is what lets one control unit and\none datapath serve all twelve opcodes, at the cost of stages an instruction\nleaves idle; [pipelining](\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe)\nlater recovers that cost.\n\n## How fetch finds the instruction boundaries\n\nEverything downstream depends on fetch getting one job exactly right: carving a\nstream of undifferentiated bytes into instructions. Y86-64 instructions are\n**variable-length** (1, 2, 9, or 10 bytes), so there is no fixed stride the PC can\nadvance by. The machine cannot look ahead, and it does not need to: **the first byte\nalone determines the length of the whole instruction.** Its high nibble is `icode`,\nits low nibble `ifun`, and `icode` fixes the format:\n\n- Does the instruction have a **register byte**? Yes for `rrmovq`\u002F`cmovXX`, `OPq`,\n  `pushq`, `popq`, `irmovq`, `rmmovq`, and `mrmovq`; no for `halt`, `nop`, `jXX`,\n  `call`, and `ret`. Call this bit `need_regids`, or $r$.\n- Does it have an **8-byte constant** `valC`? Yes for `irmovq`, `rmmovq`, `mrmovq`\n  (the immediate or displacement) and for `jXX` and `call` (the destination\n  address). Call this bit `need_valC`, or $c$.\n\nBoth bits are one-line HCL predicates on `icode`, and together they give the\ninstruction length and therefore the fall-through address:\n\n$$\n\\texttt{valP} \\;=\\; \\texttt{PC} + 1 + r + 8c.\n$$\n\n```c [seq-fetch.hcl]\nbool need_regids = icode in { IRRMOVQ, IOPQ, IPUSHQ, IPOPQ,\n                              IIRMOVQ, IRMMOVQ, IMRMOVQ };\n\nbool need_valC   = icode in { IIRMOVQ, IRMMOVQ, IMRMOVQ, IJXX, ICALL };\n\nbool instr_valid = icode in { INOP, IHALT, IRRMOVQ, IIRMOVQ, IRMMOVQ,\n                              IMRMOVQ, IOPQ, IJXX, ICALL, IRET,\n                              IPUSHQ, IPOPQ };\n```\n\nThe four possible lengths come from the four combinations of $r$ and $c$: 1 byte\n($r=0, c=0$, e.g. `ret`), 2 bytes ($r=1, c=0$, e.g. `addq`), 9 bytes\n($r=0, c=1$, e.g. `jne`), and 10 bytes ($r=1, c=1$, e.g. `irmovq`).\n\n$$\n% caption: The four Y86-64 instruction lengths, each determined by the first byte\n% caption: alone. The high nibble (icode) fixes whether a register byte and an 8-byte\n% caption: constant follow, and hence the increment from PC to valP.\n\\begin{tikzpicture}[font=\\footnotesize,\n  b\u002F.style={draw, fill=acc!8, minimum width=11mm, minimum height=7mm, inner sep=1pt},\n  w\u002F.style={draw, fill=acc!8, minimum width=40mm, minimum height=7mm, inner sep=1pt},\n  nm\u002F.style={anchor=east, font=\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[font=\\scriptsize, text=acc, anchor=south] at (0,0.42) {icode:ifun};\n  \\node[nm] at (-1.0,0) {ret};\n  \\node[b] at (0,0) {9:0};\n  \\node[anchor=west] at (5.4,0) {$\\mathtt{valP}=\\mathtt{PC}+1$};\n  \\node[nm] at (-1.0,-1.2) {addq rA,rB};\n  \\node[b] at (0,-1.2) {6:0};\n  \\node[b] at (1.1,-1.2) {rA:rB};\n  \\node[anchor=west] at (5.4,-1.2) {$\\mathtt{valP}=\\mathtt{PC}+2$};\n  \\node[nm] at (-1.0,-2.4) {jne Dest};\n  \\node[b] at (0,-2.4) {7:4};\n  \\node[w] at (2.55,-2.4) {Dest (8 bytes)};\n  \\node[anchor=west] at (5.4,-2.4) {$\\mathtt{valP}=\\mathtt{PC}+9$};\n  \\node[nm] at (-1.0,-3.6) {irmovq V,rB};\n  \\node[b] at (0,-3.6) {3:0};\n  \\node[b] at (1.1,-3.6) {F:rB};\n  \\node[w] at (3.65,-3.6) {V (8 bytes)};\n  \\node[anchor=west] at (6.2,-3.6) {$\\mathtt{valP}=\\mathtt{PC}+10$};\n\\end{tikzpicture}\n$$\n\nTrace it on a real byte stream. Suppose memory from address `0x000` holds\n`30 f2 09 00 00 00 00 00 00 00 60 20 90` and the PC starts at `0x000`.\n\n- Fetch reads byte `30`: `icode = 3` (`irmovq`), so $r=1$, $c=1$, length 10. The\n  register byte `f2` gives `rB = %rdx`, the next 8 bytes give `valC = 9`, and\n  `valP = 0x000 + 10 = 0x00a`.\n- At `0x00a`, byte `60`: `icode = 6` (`OPq`, and `ifun = 0` says `addq`), so\n  $r=1$, $c=0$, length 2. The register byte `20` names `%rdx` and `%rax`;\n  `valP = 0x00c`.\n- At `0x00c`, byte `90`: `icode = 9` (`ret`), $r=0$, $c=0$, length 1;\n  `valP = 0x00d`, though `ret` will discard it and take the return address instead.\n\nThree instructions, three different lengths, and at no point did the hardware guess:\neach first byte fixed how many bytes belonged to its instruction, and `valP`\nlanded exactly on the next boundary.\n\nFetch is also the machine's first line of defense against a broken program. Two\nthings can go wrong before an instruction even runs, and fetch catches both by\nsetting the two-bit **status code** `Stat` that every cycle carries alongside the\ninstruction. If the `icode` nibble is not one of the twelve valid opcodes,\n`instr_valid` goes false and `Stat` becomes `INS`, an illegal-instruction halt,\nrather than executing garbage. If the PC points outside valid memory, `imem_error`\nraises `Stat = ADR`. A clean instruction leaves `Stat = AOK`, `halt` sets `Stat =\nHLT`, and the rule is simply that the machine begins another cycle only while `Stat`\nis `AOK`.\n\n$$\n% caption: The four status codes fetch can raise, from the first instruction byte and\n% caption: the fetch address. AOK proceeds; HLT, ADR, and INS each stop the machine.\n% caption: Stat rides alongside the instruction so a later stage can act on it.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\ttfamily\\footnotesize},\n  row\u002F.style={anchor=west, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-0.5,0.45) -- (10.8,0.45);\n  \\foreach \\y\u002F\\code\u002F\\mean in {\n    0\u002F{AOK}\u002F{normal: icode valid, address in range -- proceed},\n    -0.75\u002F{HLT}\u002F{halt instruction fetched -- machine stops cleanly},\n    -1.5\u002F{ADR}\u002F{imem\\_error: PC outside valid memory -- stop},\n    -2.25\u002F{INS}\u002F{instr\\_valid false: icode not a real opcode -- stop}} {\n    \\node[lbl] at (1.1,\\y) {\\code};\n    \\node[row] at (1.5,\\y) {\\mean};\n    \\draw[acc!40] (-0.5,\\y-0.37) -- (10.8,\\y-0.37);\n  }\n\\end{tikzpicture}\n$$\n\nSuppose the byte at the PC were `f0`. Its high nibble `f` is not among the twelve\nopcodes (the largest valid `icode` is `0xB`, `popq`), so `instr_valid = 0`,\n`Stat = INS`, and the machine halts here instead of decoding a phantom instruction\nwith a phantom length. This is why a valid-opcode check belongs in fetch and nowhere\nelse: fetch is the one stage that has seen the raw byte before any downstream logic\nhas committed to a length or a register read.\n\nIn hardware, fetch is a small datapath of its own: instruction memory produces ten\nbytes starting at the PC; a **split** unit divides byte 0 into `icode` and `ifun`;\nan **align** unit routes bytes 1–9 into `rA`, `rB`, and `valC` (bytes 1–8 form\n`valC` when there is no register byte, bytes 2–9 when there is); and a dedicated\n**PC-increment** adder computes $\\texttt{PC} + 1 + r + 8c$. There is no reason to\noccupy the main ALU with the PC increment (it is busy computing the instruction's\nown result), so fetch gets its own small adder.\n\n$$\n% caption: The fetch stage as a mini-datapath. Instruction memory yields ten bytes at\n% caption: the PC; Split divides byte 0 into icode and ifun; Align routes bytes 1-9\n% caption: into rA, rB, and valC; a dedicated adder computes valP = PC + 1 + r + 8c,\n% caption: with r and c derived from icode.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, minimum width=18mm, minimum height=10mm,\n            align=center, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[u, minimum width=14mm] (pc) at (0,0) {PC};\n  \\node[u, minimum width=24mm, minimum height=13mm] (imem) at (3.2,0) {Instruction\\\\memory};\n  \\node[u] (split) at (7.0,0.9) {Split};\n  \\node[u] (align) at (7.0,-0.9) {Align};\n  \\node[u, minimum width=24mm] (incr) at (10.8,0.9) {PC increment\\\\adder};\n  \\draw[->] (pc.east) -- (imem.west) node[midway,above,font=\\scriptsize]{addr};\n  \\draw[->] ([yshift=2.5mm]imem.east) -- ++(0.5,0) |- (split.west)\n        node[pos=0.75,above,font=\\scriptsize]{byte 0};\n  \\draw[->] ([yshift=-2.5mm]imem.east) -- ++(0.4,0) |- (align.west);\n  \\node[font=\\scriptsize, anchor=north] at (5.2,-1.05) {bytes 1-9};\n  \\draw[->] (split.north) -- ++(0,0.55) node[anchor=south,font=\\scriptsize]{icode, ifun};\n  \\draw[->] (align.east) -- ++(1.0,0) node[anchor=west,font=\\scriptsize]{rA, rB, valC};\n  \\draw[->] (split.east) -- (incr.west) node[midway,above,font=\\scriptsize]{r, c};\n  \\draw[->] (pc.south) -- ++(0,-1.5) -| (incr.south);\n  \\draw[->] (incr.east) -- ++(0.8,0) node[anchor=west,font=\\scriptsize]{valP};\n\\end{tikzpicture}\n$$\n\n## Where the six stages go next\n\nSEQ commits to one instruction per clock cycle, and the whole loop must settle inside\nthat cycle. That is a deliberate teaching simplification, and the very next design in\nCS:APP starts undoing it. The first move is a bookkeeping one called **SEQ+** (Bryant\n& O'Hallaron, _CS:APP_ §4.5.1): the PC-update stage is shifted from the _end_ of the\ncycle to the _beginning_, so the machine computes the address of the instruction it is\n_about_ to run from state saved on the previous cycle. SEQ+ has no PC\nregister at all — the program counter is reconstructed each cycle from a handful of\nsaved signals (`pIcode`, `pValC`, `pValM`, …). CS:APP notes this is an instance of\n**circuit retiming** (Leiserson & Saxe, 1991), a transformation that relocates state\nacross combinational logic without changing what the circuit computes, used here to\nbalance stage delays. It leads directly to pipelining: once every stage begins\nand ends at a clean register boundary, you can let several instructions occupy\ndifferent stages at once.\n\nReal processors carry the same six-stage skeleton, but the fetch-and-decode front end\nlooks nothing like Y86-64's tidy nibble-splitter. x86-64 instructions run from 1 to 15\nbytes with prefixes, escape bytes, and mode-dependent operands, so decode is a serious\npipeline of its own. Modern x86 cores translate each architectural instruction into\none or more fixed-format internal operations — \"micro-operations,\" or µops — and the\nback end schedules those, out of order, across many functional units (Bryant &\nO'Hallaron, §4.1 aside on RISC vs. CISC; and CS:APP §5.7 on modern processors). The\nprinciple the aside on SEQ+ states plainly is what licenses all of this: a processor\nmay represent its state however it likes, so long as it produces the correct\nprogrammer-visible values for any machine-language program. SEQ is the baseline\nagainst which those later liberties make sense.\n\n> **Takeaway.** A processor is a stored-program machine running one loop forever:\n> fetch the instruction at the PC, decode its operands, execute, touch memory, write\n> back, and update the PC. The datapath — PC, instruction memory, register file, ALU,\n> data memory, with muxes at their inputs — is the hardware; the control unit, reading\n> `icode`, decides each cycle what that hardware does. SEQ cuts the loop into\n> six stages, the same six for every instruction, and fetch keeps the loop aligned:\n> the first byte's `icode` fixes the instruction's length, so\n> `valP = PC + 1 + need_regids + 8 need_valC` always lands on the next boundary.\n\nThe [next lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages) makes the\nsix stages precise, writing down exactly what each one computes for each Y86-64\ninstruction.\n",{"text":1952,"minutes":1953,"time":1954,"words":1955},"12 min read",11.33,679800,2266,{"title":142,"description":1944},[1958,1961],{"book":1959,"ref":1960},"Bryant & O'Hallaron","CS:APP — §4.3 Sequential Y86-64 Implementations",{"book":1962,"ref":1963},"Bistriceanu","Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)","available","03.computer-architecture\u002F04.processor-design\u002F01.the-fetch-decode-execute-cycle",[138],"nKrmwydXNM1Q0P5b5v_N5fBFStZaOjVEEOW3PMZiAhc",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":1969,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":1970,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":1971,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":1972,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":1973,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":1974,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":1975,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":1976,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":1977,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":1978,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":1979,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":1980,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":1981,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":1982,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":1983,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":1984,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":1985,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":1986,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":1987,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":1988,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":1989,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":1990,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":1991,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":1992,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":1993,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":1994,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":1995,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":1996,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":1997,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":1998,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":1999,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2000,"\u002Falgorithms\u002Fsequences\u002Ftries":2001,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2002,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2003,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2004,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2005,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2006,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2007,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2008,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2009,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2010,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2011,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2012,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2013,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2014,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2015,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2016,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2017,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2018,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2019,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2020,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2021,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2022,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2023,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2024,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2025,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2026,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2027,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2028,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2029,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2030,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2031,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2032,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2033,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2034,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2035,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2036,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2037,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2038,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2039,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2040,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2041,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2042,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2043,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2044,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2045,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2046,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2047,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2048,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2049,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2050,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2051,"\u002Falgorithms":2052,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2053,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2054,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2055,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2056,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2057,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2058,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2059,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2060,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2061,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2062,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2063,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2064,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2065,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2066,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2067,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2068,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2069,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2070,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2071,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2072,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2073,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2074,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2075,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2076,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2077,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2078,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2079,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2080,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2081,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2082,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2083,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2084,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2085,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2086,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2067,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2087,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2088,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2089,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2057,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2090,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2091,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2092,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2093,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2094,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2095,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2096,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2097,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2098,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2099,"\u002Fcalculus":2100,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2101,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2102,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2103,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2104,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2105,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2106,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2107,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2108,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2109,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2110,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2111,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2112,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2113,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2114,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2115,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2116,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2117,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2118,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2119,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2120,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2121,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2122,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2123,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2124,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2125,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2126,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2127,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2128,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2129,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2130,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2131,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2132,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2133,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2134,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2135,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2136,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2137,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2138,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2139,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2140,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2141,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2142,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2143,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2144,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2145,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2146,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2147,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2148,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2149,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2150,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2151,"\u002Fmechanics":2152,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2153,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2154,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2155,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2156,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2157,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2158,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2159,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2160,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2161,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2162,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2163,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2164,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2141,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2165,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2166,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2167,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2137,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2002,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2168,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2128,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2169,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2170,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2171,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2172,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2173,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2174,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2175,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2176,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2177,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2102,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2178,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2179,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2180,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2181,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2182,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2183,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2184,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2185,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2120,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2119,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2186,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2187,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2188,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2189,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2190,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2191,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2192,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2193,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2194,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2146,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2144,"\u002Felectricity-and-magnetism":2195,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2196,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2197,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2198,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2199,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2200,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2201,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2202,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2203,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2204,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2054,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2205,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2206,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2058,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2207,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2208,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2209,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2210,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2211,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2212,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2213,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2214,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2215,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2216,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2217,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2218,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2219,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2220,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2221,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2222,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2223,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2224,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2225,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2226,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2093,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2227,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2228,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2229,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2230,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2231,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2232,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2233,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2234,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2235,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2236,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2237,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2238,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2239,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2240,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2241,"\u002Flinear-algebra":2242,"\u002Ftheory-of-computation":2243,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2244,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2245,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2246,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2247,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2248,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2249,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2250,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2251,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2252,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2253,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2254,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2255,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2256,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2257,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2258,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2259,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2260,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2261,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2262,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2263,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2264,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2265,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":1955,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2266,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2267,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2268,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2269,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2270,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2271,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2272,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2273,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2274,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2275,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2276,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2277,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2278,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2279,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2280,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2281,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2282,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2283,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2284,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2285,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2286,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2287,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2288,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2289,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2290,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2291,"\u002Fcomputer-architecture":2243,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2292,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2293,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2294,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2058,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2295,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2057,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2064,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2296,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2297,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2098,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2298,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2299,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2300,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2301,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2302,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2303,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2304,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2305,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2306,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2307,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2308,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2309,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2304,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2310,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2311,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2312,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2313,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2314,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2315,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2316,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2317,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2318,"\u002Fdifferential-equations":2319,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2320,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2321,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2322,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2323,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2203,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2324,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2325,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2326,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2327,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2328,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2329,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2073,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2330,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2331,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2332,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2333,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2334,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2335,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2336,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2337,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2338,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2339,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2294,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2340,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2341,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2342,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2343,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2344,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2224,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2345,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2346,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2234,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2347,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2348,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2349,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2350,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2351,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2352,"\u002Frelativity":2353,"\u002Fphysical-computing":2243,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2354,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2333,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2355,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2356,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2357,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2358,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2359,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2360,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2361,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2309,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2234,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2362,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2363,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2364,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2365,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2361,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2366,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2341,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2095,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2367,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2368,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2075,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2369,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2370,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2371,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2372,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2373,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2374,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2375,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2376,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2377,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2333,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2378,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2379,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2380,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2367,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2056,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2381,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2382,"\u002Fquantum-mechanics":2383,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2317,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2384,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2385,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2207,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2386,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2093,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2387,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2388,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2230,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2339,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2389,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2390,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2391,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2392,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2393,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2366,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2394,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2200,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2395,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2396,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2054,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2397,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2398,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2355,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2083,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2234,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2399,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2400,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2219,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2343,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2401,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2402,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2403,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2239,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2404,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2405,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2406,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2406,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2407,"\u002Freal-analysis":2408,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2409,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2410,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2411,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2412,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2413,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2414,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2415,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2416,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2417,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2418,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2382,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2419,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2411,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2328,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2420,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2421,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2422,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2423,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2424,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2425,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2426,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2427,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2421,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2428,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2397,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2429,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2430,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2431,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2432,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2433,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2434,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2435,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2436,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2437,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2438,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2072,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2439,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2440,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2313,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2441,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2442,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2370,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2442,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2443,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2444,"\u002Fabstract-algebra":2445,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2446,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2447,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2448,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2449,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2450,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2362,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2451,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2452,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2453,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2454,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2455,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2456,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2457,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2197,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2325,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2072,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2458,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2056,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2459,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2460,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2094,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2387,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2461,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2462,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2463,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2464,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2465,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2466,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2467,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2468,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2469,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2470,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2471,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2472,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2473,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2474,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2418,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2475,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2476,"\u002Fatomic-physics":2477,"\u002Fdatabases":2243,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2478,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2479,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2480,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2409,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2481,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2482,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2483,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2484,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2485,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2486,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2487,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2488,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2489,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2490,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2491,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2492,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2493,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2494,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2495,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2496,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2497,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2498,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2499,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2500,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2491,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2501,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2502,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2503,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2504,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2505,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2450,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2506,"\u002Fcategory-theory":2507,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2508,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2509,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2510,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2511,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2512,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2513,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2472,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2514,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2515,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2516,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2517,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2518,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2519,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2520,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2521,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2522,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2523,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2524,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2525,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2526,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2527,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2528,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2529,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2530,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2531,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2532,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2533,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2534,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2535,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2536,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2537,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2538,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2539,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2540,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2484,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2541,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2542,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2543,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2544,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2545,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2546,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2547,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2037,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2548,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2549,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2272,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2550,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2551,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2552,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2553,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2554,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2555,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2556,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2557,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2558,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2559,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2560,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2561,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2246,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2562,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2563,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2564,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2565,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2282,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2566,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2567,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2568,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2569,"\u002Fdeep-learning":2243,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2570,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2367,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2571,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2572,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2573,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2574,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2575,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2576,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2577,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2578,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2414,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2579,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2580,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2581,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2301,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2095,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2582,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2583,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2584,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2229,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2585,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2586,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2306,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2234,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2587,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2203,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2073,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2089,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2588,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2589,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2590,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2221,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":2591,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2083,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":2592,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":2593,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2594,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":2595,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2416,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":2596,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":2597,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":2598,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":2599,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2362,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":2600,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2340,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":2601,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2202,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":2602,"\u002Fstatistical-mechanics":2603,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":2604,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2068,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2327,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":2605,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":2606,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":2607,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":2608,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":2609,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":2610,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2201,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":2611,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":2612,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":2613,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":2614,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2343,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":2615,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":2616,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":2617,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":2618,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":2619,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2398,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2342,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":2620,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":2621,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":2622,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":2623,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2333,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":2624,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":2625,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2570,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2470,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2198,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":2626,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2064,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":2627,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":2628,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2209,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":2629,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2463,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":2630,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2056,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":2631,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2067,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":2632,"\u002Fcondensed-matter":2383,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":2633,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":2634,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":2635,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":2636,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2081,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":2637,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":2638,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2081,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":2639,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2493,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":2640,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":2641,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":2642,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":2640,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":2643,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":2644,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":2645,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":2646,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":2647,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":2648,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":2649,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":2650,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2571,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":2651,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":2644,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":2652,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":2653,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2286,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":2654,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2471,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":2655,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":2656,"\u002Flogic":2657,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":2658,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":2659,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2272,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":2660,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":2661,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":2662,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":2663,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":2653,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":2664,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":2665,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":2666,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2564,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":2667,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":2668,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":2669,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":2670,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":2671,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2289,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":2672,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":2673,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":2674,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":2675,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2480,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":2676,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":2652,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":2677,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":2678,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":2679,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2300,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":2680,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2430,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":2681,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":2682,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2263,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":2683,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":2684,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":2685,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":2686,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":2687,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2540,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":2688,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":2689,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":2690,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2575,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":2691,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":2692,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":2693,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2289,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2356,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":2694,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":2695,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":2696,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":2697,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":2698,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":2699,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":2700,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":2701,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":2702,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":2703,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":2704,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":2705,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":2706,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":2707,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":2708,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":2709,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":2710,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":2711,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":2712,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":2713,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":2714,"\u002Freinforcement-learning":2243,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":2715,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":2716,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":2717,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":2718,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":2719,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":2720,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":2721,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":2722,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":2723,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":2724,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":2725,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":2726,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":2727,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2569,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2424,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":2728,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":2729,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":2730,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":2731,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":2732,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":2733,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2551,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":2734,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":2735,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":2736,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":2737,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":2738,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":2739,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":2740,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":2741,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":2742,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":2743,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":2744,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":2745,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2483,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":2735,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":2746,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2024,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":2747,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":2748,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":2749,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":2750,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":2751,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2532,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":2752,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":2753,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":2754,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":2755,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":2756,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":2757,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":2758,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":2759,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":2760,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":2761,"\u002Fartificial-intelligence":2243,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2499,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":2762,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2060,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2058,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":2593,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":2763,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2086,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2395,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":2764,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":2765,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":2766,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2455,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":2767,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":2768,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":2769,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":2654,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":2770,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":2771,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2070,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2298,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":2772,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2399,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":2773,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":2774,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2294,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2382,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":2775,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":2776,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":2777,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2065,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2439,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2301,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":2778,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2349,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2413,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":2779,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":2780,"\u002Fnuclear-physics":2781,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":2782,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":2783,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2420,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":2784,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":2785,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":2786,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2268,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":2787,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":2788,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2565,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":2789,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":2734,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":2790,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":2791,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":2792,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":2793,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":2794,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":2795,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":2796,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2247,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":2797,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":2798,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":2740,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":2799,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":2800,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":2801,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":2802,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":2803,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":2804,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":2805,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":2806,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":2664,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":2807,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":2808,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":2809,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":2810,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":2811,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":2812,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":2813,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":2814,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":2815,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":2816,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":2817,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":2818,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2518,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":2685,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2274,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":2819,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":2820,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":2821,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":2822,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2532,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":2823,"\u002Fnatural-language-processing":2243,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":2824,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2440,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":2825,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2585,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":2826,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":2827,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":2775,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":2828,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":2829,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2390,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2093,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":2830,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2344,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":2831,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2377,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":2832,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":2631,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":2833,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":2834,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":2600,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":2835,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2064,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":2836,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":2837,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":2838,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2381,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":2597,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":2839,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":2840,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2456,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":2841,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2501,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":2842,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":2843,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2390,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2423,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":2844,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":2845,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":2846,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2479,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":2847,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2221,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":2848,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2323,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":2849,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":2850,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":2647,"\u002Fparticle-physics":2851,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2441,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":2595,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":2852,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2380,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":2853,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2440,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2352,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":2854,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":2855,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":2856,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":2857,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":2858,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":2646,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2577,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":2859,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":2860,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":2861,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":2862,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":2774,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":2863,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2336,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2399,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2381,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":2864,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2465,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2082,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2865,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":2866,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":2596,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":2867,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":2868,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":2869,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":2870,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2063,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":2871,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":2872,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2323,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":2873,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":2874,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2589,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2245,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":2875,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":2876,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2501,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2487,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2499,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":2596,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":2877,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2062,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2254,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":2878,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2340,"\u002Fastrophysics-cosmology":2445,"\u002Fcolophon":2879,"\u002F":2243},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,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2881,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2885,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2889,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2893,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2897,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2901,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2905,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2910,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2914,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2918,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2922,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2927,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2931,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2935,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2939,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2944,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2948,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2952,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2956,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2960,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2964,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2968,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2972,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2976,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2980,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2984,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2988,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2993,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2997,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3001,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3005,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3009,"\u002Falgorithms\u002Fsequences\u002Ftries":3013,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3017,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3021,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3026,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3030,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3034,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3038,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3042,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3046,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3050,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3054,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3058,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3062,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3066,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3070,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3074,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3078,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3083,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3087,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3091,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3095,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3099,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3104,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3108,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3112,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3116,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3120,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3124,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3128,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3132,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3136,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3140,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3144,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3149,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3153,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3157,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3161,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3166,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3170,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3174,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3178,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3182,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3186,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3190,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3195,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3199,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3203,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3207,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3212,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3216,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3220,"\u002Falgorithms":3224,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3227,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3232,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3236,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3240,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3244,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3249,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3253,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3257,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3261,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3266,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3270,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3274,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3278,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3283,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3287,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3291,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3296,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3300,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3304,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3309,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3313,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3317,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3322,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3326,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3330,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3334,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3339,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3343,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3347,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3352,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3356,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3360,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3364,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3368,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3373,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3377,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3381,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3385,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3389,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3394,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3397,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3401,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3405,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3409,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3414,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3418,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3422,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3426,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3430,"\u002Fcalculus":3434,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3437,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3441,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3445,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3450,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3454,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3458,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3462,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3466,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3471,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3475,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3479,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3483,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3487,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3492,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3496,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3500,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3504,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3508,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3513,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3517,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3521,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3526,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3530,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3534,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3538,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3542,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3546,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3551,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3555,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3559,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3563,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3567,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3571,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3575,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3580,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3584,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3588,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3592,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3596,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3600,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3604,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3608,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3612,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3616,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3620,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3624,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3629,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3633,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3637,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3641,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3645,"\u002Fmechanics":3649,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3652,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3657,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3661,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3665,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3669,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3673,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3678,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3682,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3687,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3691,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3695,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3699,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3703,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3708,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3712,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3716,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3720,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3725,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3729,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3733,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3738,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3742,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3746,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3750,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3754,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3759,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3763,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3767,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3771,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3775,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3779,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3784,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3788,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3792,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3796,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3800,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3804,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3808,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3812,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3817,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3821,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3825,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3829,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3833,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3838,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3842,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3846,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3850,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3854,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3859,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3863,"\u002Felectricity-and-magnetism":3867,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":3870,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":3875,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":3879,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":3883,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":3887,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":3891,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":3896,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":3900,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":3904,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":3908,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":3912,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":3917,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":3921,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":3925,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":3930,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":3934,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":3938,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":3942,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":3946,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":3950,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":3954,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":3959,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":3963,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":3967,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":3971,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":3975,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":3979,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":3983,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":3988,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":3992,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":3996,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4000,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4004,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4008,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4013,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4017,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4021,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4025,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4029,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4034,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4038,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4042,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4046,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4050,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4054,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4059,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4063,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4067,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4071,"\u002Flinear-algebra":4075,"\u002Ftheory-of-computation":4078,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4081,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4082,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4083,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4084,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4085,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4086,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4087,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4088,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4089,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4090,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4091,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4092,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4093,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4094,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4095,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4096,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4097,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4098,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4099,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4100,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4101,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4102,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4103,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4104,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4105,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4106,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4107,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4108,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4109,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4110,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4111,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4112,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4113,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4114,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4115,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4116,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4117,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4118,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4119,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4120,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4121,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4122,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4123,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4124,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4125,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4126,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4127,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4128,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4129,"\u002Fcomputer-architecture":4130,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4133,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4137,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4141,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4146,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4150,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4154,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4158,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4162,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4166,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4171,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4175,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4179,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4183,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4187,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4191,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4196,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4200,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4204,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4209,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4213,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4218,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4222,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4226,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4231,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4235,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4240,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4244,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4248,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4253,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4257,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4261,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4266,"\u002Fdifferential-equations":4270,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4273,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4278,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4282,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4286,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4290,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4294,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4299,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4303,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4307,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4311,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4316,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4320,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4324,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4328,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4333,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4337,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4341,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4345,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4350,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4354,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4358,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4362,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4366,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4370,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4375,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4379,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4383,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4388,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4392,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4396,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4400,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4405,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4409,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4413,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4418,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4422,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4426,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4431,"\u002Frelativity":4435,"\u002Fphysical-computing":4438,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4441,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4446,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4450,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4454,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4458,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4463,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4467,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4471,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4476,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4480,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4484,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4488,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4492,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4496,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4501,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4505,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4509,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4513,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4517,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4521,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4526,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4530,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4534,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4538,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4542,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4546,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4550,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4555,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4559,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4563,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4568,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4572,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4576,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4581,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4585,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4590,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4594,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4598,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4602,"\u002Fquantum-mechanics":4606,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4609,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4614,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4618,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4622,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4626,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4631,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4635,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4639,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4643,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4647,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4651,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4656,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4660,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4664,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4668,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4672,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4676,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4680,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4684,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4688,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4692,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4696,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4701,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4705,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4709,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4713,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4718,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4722,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4726,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4729,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4733,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4738,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4742,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4746,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4750,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4755,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4759,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4763,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4767,"\u002Freal-analysis":4771,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4774,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4778,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4782,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4787,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4791,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4795,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4799,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4804,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4808,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4812,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4816,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4820,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4824,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4829,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4833,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4837,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4841,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4846,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4850,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4854,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4858,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4863,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4867,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4871,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4876,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4880,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4884,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4888,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4893,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4897,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4901,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4905,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4910,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4914,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4918,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4923,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4927,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4931,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4935,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":4940,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":4944,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":4948,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":4952,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":4956,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":4961,"\u002Fabstract-algebra":4965,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":4968,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":4973,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":4977,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":4981,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":4985,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":4989,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":4994,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":4998,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5002,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5006,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5010,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5014,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5018,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5023,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5027,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5031,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5035,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5040,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5044,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5048,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5053,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5057,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5061,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5065,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5069,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5073,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5078,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5082,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5086,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5091,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5095,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5099,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5103,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5108,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5112,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5116,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5121,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5125,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5129,"\u002Fatomic-physics":5133,"\u002Fdatabases":5136,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5139,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5143,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5147,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5151,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5155,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5159,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5163,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5168,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5172,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5176,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5181,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5185,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5189,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5194,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5198,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5202,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5206,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5210,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5215,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5219,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5223,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5227,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5232,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5236,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5240,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5244,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5249,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5253,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5257,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5261,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5266,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5270,"\u002Fcategory-theory":5274,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5277,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5281,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5285,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5289,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5292,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5296,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5300,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5304,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5309,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5313,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5317,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5321,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5325,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5330,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5334,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5338,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5342,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5346,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5351,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5355,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5359,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5363,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5368,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5372,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5376,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5380,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5384,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5388,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5392,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5396,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5400,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5405,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5409,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5413,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5417,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5421,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5426,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5430,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5434,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5438,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5442,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5446,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5450,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5455,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5459,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5463,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5468,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5472,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5476,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5480,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5484,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5488,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5492,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5497,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5501,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5505,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5509,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5513,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5517,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5521,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5525,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5529,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5533,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5537,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5542,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5546,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5550,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5554,"\u002Fdeep-learning":5558,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5561,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5565,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5569,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5573,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5577,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5581,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5586,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5590,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5594,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5598,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5603,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5607,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5611,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5615,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5620,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5624,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5628,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5632,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5636,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5641,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5645,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5649,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5654,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5658,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5662,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5667,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5671,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5675,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5679,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5684,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5688,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5692,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5696,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5700,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5704,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5709,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5713,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5717,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5721,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5726,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5730,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5734,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5739,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5743,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5747,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5751,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5755,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5760,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5764,"\u002Fstatistical-mechanics":5768,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5771,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5776,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5780,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5784,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5788,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5793,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5797,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5801,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5805,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5810,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5814,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5818,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5822,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5827,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5831,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5835,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5839,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5844,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5848,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5852,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5856,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5861,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5865,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":5869,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":5873,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":5878,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":5882,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":5886,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":5890,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":5894,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":5899,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5903,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":5908,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5912,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":5916,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":5920,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5925,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":5929,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":5933,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":5937,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":5941,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":5946,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":5950,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":5954,"\u002Fcondensed-matter":5958,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":5961,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":5965,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":5970,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":5974,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":5978,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":5982,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":5986,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":5990,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":5994,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":5999,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6003,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6007,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6011,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6016,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6020,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6024,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6028,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6033,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6037,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6041,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6045,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6050,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6054,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6058,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6062,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6067,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6071,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6075,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6080,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6084,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6089,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6093,"\u002Flogic":6097,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6100,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6104,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6108,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6112,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6116,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6120,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6124,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6128,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6132,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6136,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6140,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6144,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6148,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6152,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6156,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6160,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6164,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6168,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6172,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6177,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6181,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6185,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6189,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6193,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6197,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6201,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6205,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6209,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6213,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6217,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6221,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6225,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6229,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6233,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6237,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6241,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6245,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6249,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6253,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6257,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6261,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6266,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6270,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6274,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6278,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6282,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6286,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6290,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6294,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6298,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6302,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6306,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6310,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6314,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6318,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6322,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6326,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6330,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6334,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6338,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6342,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6346,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6350,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6355,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6359,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6363,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6367,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6371,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6375,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6379,"\u002Freinforcement-learning":6383,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6385,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6389,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6393,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6397,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6401,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6406,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6410,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6414,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6418,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6422,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6426,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6430,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6434,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6438,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6442,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6446,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6450,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6455,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6459,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6463,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6467,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6471,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6475,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6479,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6483,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6487,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6491,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6495,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6499,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6504,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6508,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6512,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6516,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6520,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6524,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6528,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6531,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6535,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6539,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6544,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6548,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6552,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6556,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6559,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6563,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6567,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6571,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6576,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6580,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6584,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6588,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6592,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6596,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6600,"\u002Fartificial-intelligence":6604,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6607,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6612,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6616,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6620,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6624,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6628,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6633,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6637,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6641,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6645,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6650,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6654,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6658,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6662,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6667,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6671,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6676,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6680,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6685,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6689,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6693,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6697,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6702,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6706,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6710,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6715,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6719,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6723,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6728,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6732,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6737,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6741,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6745,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6750,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6754,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6758,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6762,"\u002Fnuclear-physics":6766,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6769,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6773,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6777,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6781,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6785,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6789,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6794,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6798,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6802,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6806,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6811,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6815,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6819,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6823,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6827,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6831,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6835,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6838,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6841,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6845,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6849,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6853,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6858,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6862,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6866,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6870,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6874,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6878,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6882,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6886,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6890,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6894,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6898,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6902,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6906,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6910,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6914,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6918,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6922,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6926,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6930,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6934,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":6938,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":6942,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":6946,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":6950,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":6954,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":6958,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":6962,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":6966,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":6971,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":6975,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":6979,"\u002Fnatural-language-processing":6983,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":6986,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":6990,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":6994,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":6998,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7003,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7007,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7011,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7015,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7020,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7024,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7028,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7032,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7037,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7041,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7045,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7049,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7054,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7058,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7062,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7067,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7071,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7075,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7079,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7084,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7088,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7092,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7096,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7101,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7105,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7109,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7113,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7118,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7122,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7126,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7130,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7134,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7139,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7143,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7147,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7152,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7156,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7160,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7164,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7168,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7172,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7176,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7180,"\u002Fparticle-physics":7184,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7187,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7192,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7196,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7200,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7205,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7209,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7213,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7217,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7222,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7226,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7230,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7234,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7239,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7243,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7247,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7251,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7256,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7260,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7264,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7268,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7273,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7277,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7281,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7286,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7290,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7294,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7298,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7302,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7306,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7310,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7314,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7318,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7323,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7327,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7331,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7335,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7340,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7344,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7348,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7352,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7356,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7361,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7365,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7368,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7372,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7376,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7381,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7385,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7389,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7393,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7397,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7401,"\u002Fastrophysics-cosmology":7405,"\u002Fcolophon":7408,"\u002F":7411},{"path":2882,"title":2883,"module":5,"summary":2884},"\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":2886,"title":2887,"module":5,"summary":2888},"\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":2890,"title":2891,"module":5,"summary":2892},"\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":2894,"title":2895,"module":5,"summary":2896},"\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":2898,"title":2899,"module":5,"summary":2900},"\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":2902,"title":2903,"module":5,"summary":2904},"\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":2906,"title":2907,"module":2908,"summary":2909},"\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":2911,"title":2912,"module":2908,"summary":2913},"\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":2915,"title":2916,"module":2908,"summary":2917},"\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":2919,"title":2920,"module":2908,"summary":2921},"\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":2923,"title":2924,"module":2925,"summary":2926},"\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":2928,"title":2929,"module":2925,"summary":2930},"\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":2932,"title":2933,"module":2925,"summary":2934},"\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":2936,"title":2937,"module":2925,"summary":2938},"\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":2940,"title":2941,"module":2942,"summary":2943},"\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":2945,"title":2946,"module":2942,"summary":2947},"\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":2949,"title":2950,"module":2942,"summary":2951},"\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":2953,"title":2954,"module":2942,"summary":2955},"\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":2957,"title":2958,"module":2942,"summary":2959},"\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":2961,"title":2962,"module":2942,"summary":2963},"\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":2965,"title":2966,"module":2942,"summary":2967},"\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":2969,"title":2970,"module":2942,"summary":2971},"\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":2973,"title":2974,"module":2942,"summary":2975},"\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":2977,"title":2978,"module":2942,"summary":2979},"\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":2981,"title":2982,"module":2942,"summary":2983},"\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":2985,"title":2986,"module":2942,"summary":2987},"\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":2989,"title":2990,"module":2991,"summary":2992},"\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":2994,"title":2995,"module":2991,"summary":2996},"\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":2998,"title":2999,"module":2991,"summary":3000},"\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":3002,"title":3003,"module":2991,"summary":3004},"\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":3006,"title":3007,"module":2991,"summary":3008},"\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":3010,"title":3011,"module":2991,"summary":3012},"\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":3014,"title":3015,"module":2991,"summary":3016},"\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":3018,"title":3019,"module":2991,"summary":3020},"\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":3022,"title":3023,"module":3024,"summary":3025},"\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":3027,"title":3028,"module":3024,"summary":3029},"\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":3031,"title":3032,"module":3024,"summary":3033},"\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":3035,"title":3036,"module":3024,"summary":3037},"\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":3039,"title":3040,"module":3024,"summary":3041},"\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":3043,"title":3044,"module":3024,"summary":3045},"\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":3047,"title":3048,"module":3024,"summary":3049},"\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":3051,"title":3052,"module":3024,"summary":3053},"\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":3055,"title":3056,"module":3024,"summary":3057},"\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":3059,"title":3060,"module":3024,"summary":3061},"\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":3063,"title":3064,"module":3024,"summary":3065},"\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":3067,"title":3068,"module":3024,"summary":3069},"\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":3071,"title":3072,"module":3024,"summary":3073},"\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":3075,"title":3076,"module":3024,"summary":3077},"\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":3079,"title":3080,"module":3081,"summary":3082},"\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":3084,"title":3085,"module":3081,"summary":3086},"\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":3088,"title":3089,"module":3081,"summary":3090},"\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":3092,"title":3093,"module":3081,"summary":3094},"\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":3096,"title":3097,"module":3081,"summary":3098},"\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":3100,"title":3101,"module":3102,"summary":3103},"\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":3105,"title":3106,"module":3102,"summary":3107},"\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":3109,"title":3110,"module":3102,"summary":3111},"\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":3113,"title":3114,"module":3102,"summary":3115},"\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":3117,"title":3118,"module":3102,"summary":3119},"\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":3121,"title":3122,"module":3102,"summary":3123},"\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":3125,"title":3126,"module":3102,"summary":3127},"\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":3129,"title":3130,"module":3102,"summary":3131},"\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":3133,"title":3134,"module":3102,"summary":3135},"\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":3137,"title":3138,"module":3102,"summary":3139},"\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":3141,"title":3142,"module":3102,"summary":3143},"\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":3145,"title":3146,"module":3147,"summary":3148},"\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":3150,"title":3151,"module":3147,"summary":3152},"\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":3154,"title":3155,"module":3147,"summary":3156},"\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":3158,"title":3159,"module":3147,"summary":3160},"\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":3162,"title":3163,"module":3164,"summary":3165},"\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":3167,"title":3168,"module":3164,"summary":3169},"\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":3171,"title":3172,"module":3164,"summary":3173},"\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":3175,"title":3176,"module":3164,"summary":3177},"\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":3179,"title":3180,"module":3164,"summary":3181},"\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":3183,"title":3184,"module":3164,"summary":3185},"\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":3187,"title":3188,"module":3164,"summary":3189},"\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":3191,"title":3192,"module":3193,"summary":3194},"\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":3196,"title":3197,"module":3193,"summary":3198},"\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":3200,"title":3201,"module":3193,"summary":3202},"\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":3204,"title":3205,"module":3193,"summary":3206},"\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":3208,"title":3209,"module":3210,"summary":3211},"\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":3213,"title":3214,"module":3210,"summary":3215},"\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":3217,"title":3218,"module":3210,"summary":3219},"\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":3221,"title":3222,"module":3210,"summary":3223},"\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":3225,"title":3226,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3228,"title":3229,"module":3230,"summary":3231},"\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":3233,"title":3234,"module":3230,"summary":3235},"\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":3237,"title":3238,"module":3230,"summary":3239},"\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":3241,"title":3242,"module":3230,"summary":3243},"\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":3245,"title":3246,"module":3247,"summary":3248},"\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":3250,"title":3251,"module":3247,"summary":3252},"\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":3254,"title":3255,"module":3247,"summary":3256},"\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":3258,"title":3259,"module":3247,"summary":3260},"\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":3262,"title":3263,"module":3264,"summary":3265},"\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":3267,"title":3268,"module":3264,"summary":3269},"\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":3271,"title":3272,"module":3264,"summary":3273},"\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":3275,"title":3276,"module":3264,"summary":3277},"\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":3279,"title":3280,"module":3281,"summary":3282},"\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":3284,"title":3285,"module":3281,"summary":3286},"\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":3288,"title":3289,"module":3281,"summary":3290},"\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":3292,"title":3293,"module":3294,"summary":3295},"\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":3297,"title":3298,"module":3294,"summary":3299},"\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":3301,"title":3302,"module":3294,"summary":3303},"\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":3305,"title":3306,"module":3307,"summary":3308},"\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":3310,"title":3311,"module":3307,"summary":3312},"\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":3314,"title":3315,"module":3307,"summary":3316},"\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":3318,"title":3319,"module":3320,"summary":3321},"\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":3323,"title":3324,"module":3320,"summary":3325},"\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":3327,"title":3328,"module":3320,"summary":3329},"\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":3331,"title":3332,"module":3320,"summary":3333},"\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":3335,"title":3336,"module":3337,"summary":3338},"\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":3340,"title":3341,"module":3337,"summary":3342},"\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":3344,"title":3345,"module":3337,"summary":3346},"\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":3348,"title":3349,"module":3350,"summary":3351},"\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":3353,"title":3354,"module":3350,"summary":3355},"\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":3357,"title":3358,"module":3350,"summary":3359},"\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":3361,"title":3362,"module":3350,"summary":3363},"\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":3365,"title":3366,"module":3350,"summary":3367},"\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":3369,"title":3370,"module":3371,"summary":3372},"\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":3374,"title":3375,"module":3371,"summary":3376},"\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":3378,"title":3379,"module":3371,"summary":3380},"\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":3382,"title":3383,"module":3371,"summary":3384},"\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":3386,"title":3387,"module":3371,"summary":3388},"\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":3390,"title":3391,"module":3392,"summary":3393},"\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":3395,"title":3392,"module":3392,"summary":3396},"\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":3398,"title":3399,"module":3392,"summary":3400},"\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":3402,"title":3403,"module":3392,"summary":3404},"\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":3406,"title":3407,"module":3392,"summary":3408},"\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":3410,"title":3411,"module":3412,"summary":3413},"\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":3415,"title":3416,"module":3412,"summary":3417},"\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":3419,"title":3420,"module":3412,"summary":3421},"\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":3423,"title":3424,"module":3412,"summary":3425},"\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":3427,"title":3428,"module":3412,"summary":3429},"\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":3431,"title":3432,"module":3412,"summary":3433},"\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":3435,"title":3436,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3438,"title":3439,"module":5,"summary":3440},"\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":3442,"title":3443,"module":5,"summary":3444},"\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":3446,"title":3447,"module":3448,"summary":3449},"\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":3451,"title":3452,"module":3448,"summary":3453},"\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":3455,"title":3456,"module":3448,"summary":3457},"\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":3459,"title":3460,"module":3448,"summary":3461},"\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":3463,"title":3464,"module":3448,"summary":3465},"\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":3467,"title":3468,"module":3469,"summary":3470},"\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":3472,"title":3473,"module":3469,"summary":3474},"\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":3476,"title":3477,"module":3469,"summary":3478},"\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":3480,"title":3481,"module":3469,"summary":3482},"\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":3484,"title":3485,"module":3469,"summary":3486},"\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":3488,"title":3489,"module":3490,"summary":3491},"\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":3493,"title":3494,"module":3490,"summary":3495},"\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":3497,"title":3498,"module":3490,"summary":3499},"\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":3501,"title":3502,"module":3490,"summary":3503},"\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":3505,"title":3506,"module":3490,"summary":3507},"\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":3509,"title":3510,"module":3511,"summary":3512},"\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":3514,"title":3515,"module":3511,"summary":3516},"\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":3518,"title":3519,"module":3511,"summary":3520},"\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":3522,"title":3523,"module":3524,"summary":3525},"\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":3527,"title":3528,"module":3524,"summary":3529},"\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":3531,"title":3532,"module":3524,"summary":3533},"\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":3535,"title":3536,"module":3524,"summary":3537},"\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":3539,"title":3540,"module":3524,"summary":3541},"\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":3543,"title":3544,"module":3524,"summary":3545},"\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":3547,"title":3548,"module":3549,"summary":3550},"\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":3552,"title":3553,"module":3549,"summary":3554},"\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":3556,"title":3557,"module":3549,"summary":3558},"\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":3560,"title":3561,"module":3549,"summary":3562},"\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":3564,"title":3565,"module":3549,"summary":3566},"\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":3568,"title":3569,"module":3549,"summary":3570},"\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":3572,"title":3573,"module":3549,"summary":3574},"\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":3576,"title":3577,"module":3578,"summary":3579},"\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":3581,"title":3582,"module":3578,"summary":3583},"\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":3585,"title":3586,"module":3578,"summary":3587},"\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":3589,"title":3590,"module":3578,"summary":3591},"\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":3593,"title":3594,"module":3578,"summary":3595},"\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":3597,"title":3598,"module":3578,"summary":3599},"\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":3601,"title":3602,"module":3578,"summary":3603},"\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":3605,"title":3606,"module":3578,"summary":3607},"\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":3609,"title":3610,"module":3578,"summary":3611},"\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":3613,"title":3614,"module":3578,"summary":3615},"\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":3617,"title":3618,"module":3578,"summary":3619},"\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":3621,"title":3622,"module":3578,"summary":3623},"\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":3625,"title":3626,"module":3627,"summary":3628},"\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":3630,"title":3631,"module":3627,"summary":3632},"\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":3634,"title":3635,"module":3627,"summary":3636},"\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":3638,"title":3639,"module":3627,"summary":3640},"\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":3642,"title":3643,"module":3627,"summary":3644},"\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":3646,"title":3647,"module":3627,"summary":3648},"\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":3650,"title":3651,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3653,"title":3654,"module":3655,"summary":3656},"\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":3658,"title":3659,"module":3655,"summary":3660},"\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":3662,"title":3663,"module":3655,"summary":3664},"\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":3666,"title":3667,"module":3655,"summary":3668},"\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":3670,"title":3671,"module":3655,"summary":3672},"\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":3674,"title":3675,"module":3676,"summary":3677},"\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":3679,"title":3680,"module":3676,"summary":3681},"\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":3683,"title":3684,"module":3685,"summary":3686},"\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":3688,"title":3689,"module":3685,"summary":3690},"\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":3692,"title":3693,"module":3685,"summary":3694},"\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":3696,"title":3697,"module":3685,"summary":3698},"\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":3700,"title":3701,"module":3685,"summary":3702},"\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":3704,"title":3705,"module":3706,"summary":3707},"\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":3709,"title":3710,"module":3706,"summary":3711},"\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":3713,"title":3714,"module":3706,"summary":3715},"\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":3717,"title":3718,"module":3706,"summary":3719},"\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":3721,"title":3722,"module":3723,"summary":3724},"\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":3726,"title":3727,"module":3723,"summary":3728},"\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":3730,"title":3731,"module":3723,"summary":3732},"\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":3734,"title":3735,"module":3736,"summary":3737},"\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":3739,"title":3740,"module":3736,"summary":3741},"\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":3743,"title":3744,"module":3736,"summary":3745},"\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":3747,"title":3748,"module":3736,"summary":3749},"\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":3751,"title":3752,"module":3736,"summary":3753},"\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":3755,"title":3756,"module":3757,"summary":3758},"\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":3760,"title":3761,"module":3757,"summary":3762},"\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":3764,"title":3765,"module":3757,"summary":3766},"\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":3768,"title":3769,"module":3757,"summary":3770},"\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":3772,"title":3773,"module":3757,"summary":3774},"\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":3776,"title":3777,"module":3757,"summary":3778},"\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":3780,"title":3781,"module":3782,"summary":3783},"\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":3785,"title":3786,"module":3782,"summary":3787},"\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":3789,"title":3790,"module":3782,"summary":3791},"\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":3793,"title":3794,"module":3782,"summary":3795},"\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":3797,"title":3798,"module":3782,"summary":3799},"\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":3801,"title":3802,"module":3782,"summary":3803},"\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":3805,"title":3806,"module":3782,"summary":3807},"\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":3809,"title":3810,"module":3782,"summary":3811},"\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":3813,"title":3814,"module":3815,"summary":3816},"\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":3818,"title":3819,"module":3815,"summary":3820},"\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":3822,"title":3823,"module":3815,"summary":3824},"\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":3826,"title":3827,"module":3815,"summary":3828},"\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":3830,"title":3831,"module":3815,"summary":3832},"\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":3834,"title":3835,"module":3836,"summary":3837},"\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":3839,"title":3840,"module":3836,"summary":3841},"\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":3843,"title":3844,"module":3836,"summary":3845},"\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":3847,"title":3848,"module":3836,"summary":3849},"\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":3851,"title":3852,"module":3836,"summary":3853},"\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":3855,"title":3856,"module":3857,"summary":3858},"\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":3860,"title":3861,"module":3857,"summary":3862},"\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":3864,"title":3865,"module":3857,"summary":3866},"\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":3868,"title":3869,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":3871,"title":3872,"module":3873,"summary":3874},"\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":3876,"title":3877,"module":3873,"summary":3878},"\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":3880,"title":3881,"module":3873,"summary":3882},"\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":3884,"title":3885,"module":3873,"summary":3886},"\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":3888,"title":3889,"module":3873,"summary":3890},"\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":3892,"title":3893,"module":3894,"summary":3895},"\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":3897,"title":3898,"module":3894,"summary":3899},"\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":3901,"title":3902,"module":3894,"summary":3903},"\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":3905,"title":3906,"module":3894,"summary":3907},"\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":3909,"title":3910,"module":3894,"summary":3911},"\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":3913,"title":3914,"module":3915,"summary":3916},"\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":3918,"title":3919,"module":3915,"summary":3920},"\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":3922,"title":3923,"module":3915,"summary":3924},"\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":3926,"title":3927,"module":3928,"summary":3929},"\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":3931,"title":3932,"module":3928,"summary":3933},"\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":3935,"title":3936,"module":3928,"summary":3937},"\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":3939,"title":3940,"module":3928,"summary":3941},"\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":3943,"title":3944,"module":3928,"summary":3945},"\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":3947,"title":3948,"module":3928,"summary":3949},"\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":3951,"title":3952,"module":3928,"summary":3953},"\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":3955,"title":3956,"module":3957,"summary":3958},"\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":3960,"title":3961,"module":3957,"summary":3962},"\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":3964,"title":3965,"module":3957,"summary":3966},"\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":3968,"title":3969,"module":3957,"summary":3970},"\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":3972,"title":3973,"module":3957,"summary":3974},"\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":3976,"title":3977,"module":3957,"summary":3978},"\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":3980,"title":3981,"module":3957,"summary":3982},"\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":3984,"title":3985,"module":3986,"summary":3987},"\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":3989,"title":3990,"module":3986,"summary":3991},"\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":3993,"title":3994,"module":3986,"summary":3995},"\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":3997,"title":3998,"module":3986,"summary":3999},"\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":4001,"title":4002,"module":3986,"summary":4003},"\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":4005,"title":4006,"module":3986,"summary":4007},"\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":4009,"title":4010,"module":4011,"summary":4012},"\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":4014,"title":4015,"module":4011,"summary":4016},"\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":4018,"title":4019,"module":4011,"summary":4020},"\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":4022,"title":4023,"module":4011,"summary":4024},"\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":4026,"title":4027,"module":4011,"summary":4028},"\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":4030,"title":4031,"module":4032,"summary":4033},"\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":4035,"title":4036,"module":4032,"summary":4037},"\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":4039,"title":4040,"module":4032,"summary":4041},"\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":4043,"title":4044,"module":4032,"summary":4045},"\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":4047,"title":4048,"module":4032,"summary":4049},"\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":4051,"title":4052,"module":4032,"summary":4053},"\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":4055,"title":4056,"module":4057,"summary":4058},"\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":4060,"title":4061,"module":4057,"summary":4062},"\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":4064,"title":4065,"module":4057,"summary":4066},"\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":4068,"title":4069,"module":4057,"summary":4070},"\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":4072,"title":4073,"module":4057,"summary":4074},"\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":4076,"title":4077,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4079,"title":4080,"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":4131,"title":4132,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4134,"title":4135,"module":5,"summary":4136},"\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":4138,"title":4139,"module":5,"summary":4140},"\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":4142,"title":4143,"module":4144,"summary":4145},"\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":4147,"title":4148,"module":4144,"summary":4149},"\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":4151,"title":4152,"module":4144,"summary":4153},"\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":4155,"title":4156,"module":4144,"summary":4157},"\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":4159,"title":4160,"module":4144,"summary":4161},"\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":4163,"title":4164,"module":4144,"summary":4165},"\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":4167,"title":4168,"module":4169,"summary":4170},"\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":4172,"title":4173,"module":4169,"summary":4174},"\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":4176,"title":4177,"module":4169,"summary":4178},"\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":4180,"title":4181,"module":4169,"summary":4182},"\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":4184,"title":4185,"module":4169,"summary":4186},"\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":4188,"title":4189,"module":4169,"summary":4190},"\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":4192,"title":4193,"module":4194,"summary":4195},"\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":4197,"title":4198,"module":4194,"summary":4199},"\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":4201,"title":4202,"module":4194,"summary":4203},"\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":4205,"title":4206,"module":4207,"summary":4208},"\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":4210,"title":4211,"module":4207,"summary":4212},"\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":4214,"title":4215,"module":4216,"summary":4217},"\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":4219,"title":4220,"module":4216,"summary":4221},"\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":4223,"title":4224,"module":4216,"summary":4225},"\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":4227,"title":4228,"module":4229,"summary":4230},"\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":4232,"title":4233,"module":4229,"summary":4234},"\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":4236,"title":4237,"module":4238,"summary":4239},"\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":4241,"title":4242,"module":4238,"summary":4243},"\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":4245,"title":4246,"module":4238,"summary":4247},"\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":4249,"title":4250,"module":4251,"summary":4252},"\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":4254,"title":4255,"module":4251,"summary":4256},"\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":4258,"title":4259,"module":4251,"summary":4260},"\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":4262,"title":4263,"module":4264,"summary":4265},"\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":4267,"title":4268,"module":4264,"summary":4269},"\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":4271,"title":4272,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4274,"title":4275,"module":4276,"summary":4277},"\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":4279,"title":4280,"module":4276,"summary":4281},"\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":4283,"title":4284,"module":4276,"summary":4285},"\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":4287,"title":4288,"module":4276,"summary":4289},"\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":4291,"title":4292,"module":4276,"summary":4293},"\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":4295,"title":4296,"module":4297,"summary":4298},"\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":4300,"title":4301,"module":4297,"summary":4302},"\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":4304,"title":4305,"module":4297,"summary":4306},"\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":4308,"title":4309,"module":4297,"summary":4310},"\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":4312,"title":4313,"module":4314,"summary":4315},"\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":4317,"title":4318,"module":4314,"summary":4319},"\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":4321,"title":4322,"module":4314,"summary":4323},"\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":4325,"title":4326,"module":4314,"summary":4327},"\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":4329,"title":4330,"module":4331,"summary":4332},"\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":4334,"title":4335,"module":4331,"summary":4336},"\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":4338,"title":4339,"module":4331,"summary":4340},"\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":4342,"title":4343,"module":4331,"summary":4344},"\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":4346,"title":4347,"module":4348,"summary":4349},"\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":4351,"title":4352,"module":4348,"summary":4353},"\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":4355,"title":4356,"module":4348,"summary":4357},"\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":4359,"title":4360,"module":4348,"summary":4361},"\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":4363,"title":4364,"module":4348,"summary":4365},"\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":4367,"title":4368,"module":4348,"summary":4369},"\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":4371,"title":4372,"module":4373,"summary":4374},"\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":4376,"title":4377,"module":4373,"summary":4378},"\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":4380,"title":4381,"module":4373,"summary":4382},"\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":4384,"title":4385,"module":4386,"summary":4387},"\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":4389,"title":4390,"module":4386,"summary":4391},"\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":4393,"title":4394,"module":4386,"summary":4395},"\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":4397,"title":4398,"module":4386,"summary":4399},"\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":4401,"title":4402,"module":4403,"summary":4404},"\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":4406,"title":4407,"module":4403,"summary":4408},"\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":4410,"title":4411,"module":4403,"summary":4412},"\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":4414,"title":4415,"module":4416,"summary":4417},"\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":4419,"title":4420,"module":4416,"summary":4421},"\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":4423,"title":4424,"module":4416,"summary":4425},"\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":4427,"title":4428,"module":4429,"summary":4430},"\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":4432,"title":4433,"module":4429,"summary":4434},"\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":4436,"title":4437,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4439,"title":4440,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4442,"title":4443,"module":4444,"summary":4445},"\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":4447,"title":4448,"module":4444,"summary":4449},"\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":4451,"title":4452,"module":4444,"summary":4453},"\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":4455,"title":4456,"module":4444,"summary":4457},"\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":4459,"title":4460,"module":4461,"summary":4462},"\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":4464,"title":4465,"module":4461,"summary":4466},"\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":4468,"title":4469,"module":4461,"summary":4470},"\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":4472,"title":4473,"module":4474,"summary":4475},"\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":4477,"title":4478,"module":4474,"summary":4479},"\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":4481,"title":4482,"module":4474,"summary":4483},"\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":4485,"title":4486,"module":4474,"summary":4487},"\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":4489,"title":4490,"module":4474,"summary":4491},"\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":4493,"title":4494,"module":4474,"summary":4495},"\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":4497,"title":4498,"module":4499,"summary":4500},"\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":4502,"title":4503,"module":4499,"summary":4504},"\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":4506,"title":4507,"module":4499,"summary":4508},"\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":4510,"title":4511,"module":4499,"summary":4512},"\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":4514,"title":4515,"module":4499,"summary":4516},"\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":4518,"title":4519,"module":4499,"summary":4520},"\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":4522,"title":4523,"module":4524,"summary":4525},"\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":4527,"title":4528,"module":4524,"summary":4529},"\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":4531,"title":4532,"module":4524,"summary":4533},"\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":4535,"title":4536,"module":4524,"summary":4537},"\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":4539,"title":4540,"module":3536,"summary":4541},"\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":4543,"title":4544,"module":3536,"summary":4545},"\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":4547,"title":4548,"module":3536,"summary":4549},"\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":4551,"title":4552,"module":4553,"summary":4554},"\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":4556,"title":4557,"module":4553,"summary":4558},"\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":4560,"title":4561,"module":4553,"summary":4562},"\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":4564,"title":4565,"module":4566,"summary":4567},"\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":4569,"title":4570,"module":4566,"summary":4571},"\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":4573,"title":4574,"module":4566,"summary":4575},"\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":4577,"title":4578,"module":4579,"summary":4580},"\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":4582,"title":4583,"module":4579,"summary":4584},"\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":4586,"title":4587,"module":4588,"summary":4589},"\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":4591,"title":4592,"module":4588,"summary":4593},"\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":4595,"title":4596,"module":4588,"summary":4597},"\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":4599,"title":4600,"module":4588,"summary":4601},"\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":4603,"title":4604,"module":4588,"summary":4605},"\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":4607,"title":4608,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4610,"title":4611,"module":4612,"summary":4613},"\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":4615,"title":4616,"module":4612,"summary":4617},"\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":4619,"title":4620,"module":4612,"summary":4621},"\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":4623,"title":4624,"module":4612,"summary":4625},"\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":4627,"title":4628,"module":4629,"summary":4630},"\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":4632,"title":4633,"module":4629,"summary":4634},"\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":4636,"title":4637,"module":4629,"summary":4638},"\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":4640,"title":4641,"module":4629,"summary":4642},"\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":4644,"title":4645,"module":4629,"summary":4646},"\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":4648,"title":4649,"module":4629,"summary":4650},"\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":4652,"title":4653,"module":4654,"summary":4655},"\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":4657,"title":4658,"module":4654,"summary":4659},"\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":4661,"title":4662,"module":4654,"summary":4663},"\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":4665,"title":4666,"module":4654,"summary":4667},"\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":4669,"title":4670,"module":4654,"summary":4671},"\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":4673,"title":4674,"module":3230,"summary":4675},"\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":4677,"title":4678,"module":3230,"summary":4679},"\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":4681,"title":4682,"module":3230,"summary":4683},"\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":4685,"title":4686,"module":3230,"summary":4687},"\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":4689,"title":4690,"module":3230,"summary":4691},"\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":4693,"title":4694,"module":3230,"summary":4695},"\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":4697,"title":4698,"module":4699,"summary":4700},"\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":4702,"title":4703,"module":4699,"summary":4704},"\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":4706,"title":4707,"module":4699,"summary":4708},"\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":4710,"title":4711,"module":4699,"summary":4712},"\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":4714,"title":4715,"module":4716,"summary":4717},"\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":4719,"title":4720,"module":4716,"summary":4721},"\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":4723,"title":4724,"module":4716,"summary":4725},"\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":4727,"title":3285,"module":4716,"summary":4728},"\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":4730,"title":4731,"module":4716,"summary":4732},"\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":4734,"title":4735,"module":4736,"summary":4737},"\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":4739,"title":4740,"module":4736,"summary":4741},"\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":4743,"title":4744,"module":4736,"summary":4745},"\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":4747,"title":4748,"module":4736,"summary":4749},"\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":4751,"title":4752,"module":4753,"summary":4754},"\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":4756,"title":4757,"module":4753,"summary":4758},"\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":4760,"title":4761,"module":4753,"summary":4762},"\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":4764,"title":4765,"module":4753,"summary":4766},"\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":4768,"title":4769,"module":4753,"summary":4770},"\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":4772,"title":4773,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4775,"title":4776,"module":5,"summary":4777},"\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":4779,"title":4780,"module":5,"summary":4781},"\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":4783,"title":4784,"module":4785,"summary":4786},"\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":4788,"title":4789,"module":4785,"summary":4790},"\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":4792,"title":4793,"module":4785,"summary":4794},"\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":4796,"title":4797,"module":4785,"summary":4798},"\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":4800,"title":4801,"module":4802,"summary":4803},"\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":4805,"title":4806,"module":4802,"summary":4807},"\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":4809,"title":4810,"module":4802,"summary":4811},"\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":4813,"title":4814,"module":4802,"summary":4815},"\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":4817,"title":4818,"module":4802,"summary":4819},"\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":4821,"title":4822,"module":4802,"summary":4823},"\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":4825,"title":4826,"module":4827,"summary":4828},"\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":4830,"title":4831,"module":4827,"summary":4832},"\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":4834,"title":4835,"module":4827,"summary":4836},"\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":4838,"title":4839,"module":4827,"summary":4840},"\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":4842,"title":4843,"module":4844,"summary":4845},"\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":4847,"title":4848,"module":4844,"summary":4849},"\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":4851,"title":4852,"module":4844,"summary":4853},"\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":4855,"title":4856,"module":4844,"summary":4857},"\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":4859,"title":4860,"module":4861,"summary":4862},"\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":4864,"title":4865,"module":4861,"summary":4866},"\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":4868,"title":4869,"module":4861,"summary":4870},"\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":4872,"title":4873,"module":4874,"summary":4875},"\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":4877,"title":4878,"module":4874,"summary":4879},"\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":4881,"title":4882,"module":4874,"summary":4883},"\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":4885,"title":4886,"module":4874,"summary":4887},"\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":4889,"title":4890,"module":4891,"summary":4892},"\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":4894,"title":4895,"module":4891,"summary":4896},"\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":4898,"title":4899,"module":4891,"summary":4900},"\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":4902,"title":4903,"module":4891,"summary":4904},"\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":4906,"title":4907,"module":4908,"summary":4909},"\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":4911,"title":4912,"module":4908,"summary":4913},"\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":4915,"title":4916,"module":4908,"summary":4917},"\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":4919,"title":4920,"module":4921,"summary":4922},"\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":4924,"title":4925,"module":4921,"summary":4926},"\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":4928,"title":4929,"module":4921,"summary":4930},"\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":4932,"title":4933,"module":4921,"summary":4934},"\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":4936,"title":4937,"module":4938,"summary":4939},"\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":4941,"title":4942,"module":4938,"summary":4943},"\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":4945,"title":4946,"module":4938,"summary":4947},"\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":4949,"title":4950,"module":4938,"summary":4951},"\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":4953,"title":4954,"module":4938,"summary":4955},"\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":4957,"title":4958,"module":4959,"summary":4960},"\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":4962,"title":4963,"module":4959,"summary":4964},"\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":4966,"title":4967,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":4969,"title":4970,"module":4971,"summary":4972},"\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":4974,"title":4975,"module":4971,"summary":4976},"\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":4978,"title":4979,"module":4971,"summary":4980},"\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":4982,"title":4983,"module":4971,"summary":4984},"\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":4986,"title":4987,"module":4971,"summary":4988},"\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":4990,"title":4991,"module":4992,"summary":4993},"\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":4995,"title":4996,"module":4992,"summary":4997},"\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":4999,"title":5000,"module":4992,"summary":5001},"\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":5003,"title":5004,"module":4992,"summary":5005},"\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":5007,"title":5008,"module":4992,"summary":5009},"\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":5011,"title":5012,"module":4992,"summary":5013},"\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":5015,"title":5016,"module":4992,"summary":5017},"\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":5019,"title":5020,"module":5021,"summary":5022},"\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":5024,"title":5025,"module":5021,"summary":5026},"\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":5028,"title":5029,"module":5021,"summary":5030},"\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":5032,"title":5033,"module":5021,"summary":5034},"\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":5036,"title":5037,"module":5038,"summary":5039},"\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":5041,"title":5042,"module":5038,"summary":5043},"\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":5045,"title":5046,"module":5038,"summary":5047},"\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":5049,"title":5050,"module":5051,"summary":5052},"\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":5054,"title":5055,"module":5051,"summary":5056},"\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":5058,"title":5059,"module":5051,"summary":5060},"\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":5062,"title":5063,"module":5051,"summary":5064},"\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":5066,"title":5067,"module":5051,"summary":5068},"\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":5070,"title":5071,"module":5051,"summary":5072},"\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":5074,"title":5075,"module":5076,"summary":5077},"\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":5079,"title":5080,"module":5076,"summary":5081},"\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":5083,"title":5084,"module":5076,"summary":5085},"\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":5087,"title":5088,"module":5089,"summary":5090},"\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":5092,"title":5093,"module":5089,"summary":5094},"\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":5096,"title":5097,"module":5089,"summary":5098},"\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":5100,"title":5101,"module":5089,"summary":5102},"\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":5104,"title":5105,"module":5106,"summary":5107},"\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":5109,"title":5110,"module":5106,"summary":5111},"\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":5113,"title":5114,"module":5106,"summary":5115},"\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":5117,"title":5118,"module":5119,"summary":5120},"\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":5122,"title":5123,"module":5119,"summary":5124},"\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":5126,"title":5127,"module":5119,"summary":5128},"\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":5130,"title":5131,"module":5119,"summary":5132},"\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":5134,"title":5135,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5137,"title":5138,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5140,"title":5141,"module":5,"summary":5142},"\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":5144,"title":5145,"module":5,"summary":5146},"\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":5148,"title":5149,"module":5,"summary":5150},"\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":5152,"title":5153,"module":5,"summary":5154},"\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":5156,"title":5157,"module":5,"summary":5158},"\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":5160,"title":5161,"module":5,"summary":5162},"\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":5164,"title":5165,"module":5166,"summary":5167},"\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":5169,"title":5170,"module":5166,"summary":5171},"\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":5173,"title":5174,"module":5166,"summary":5175},"\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":5177,"title":5178,"module":5179,"summary":5180},"\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":5182,"title":5183,"module":5179,"summary":5184},"\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":5186,"title":5187,"module":5179,"summary":5188},"\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":5190,"title":5191,"module":5192,"summary":5193},"\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":5195,"title":5196,"module":5192,"summary":5197},"\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":5199,"title":5200,"module":5192,"summary":5201},"\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":5203,"title":5204,"module":5192,"summary":5205},"\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":5207,"title":5208,"module":5192,"summary":5209},"\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":5211,"title":5212,"module":5213,"summary":5214},"\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":5216,"title":5217,"module":5213,"summary":5218},"\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":5220,"title":5221,"module":5213,"summary":5222},"\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":5224,"title":5225,"module":5213,"summary":5226},"\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":5228,"title":5229,"module":5230,"summary":5231},"\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":5233,"title":5234,"module":5230,"summary":5235},"\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":5237,"title":5238,"module":5230,"summary":5239},"\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":5241,"title":5242,"module":5230,"summary":5243},"\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":5245,"title":5246,"module":5247,"summary":5248},"\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":5250,"title":5251,"module":5247,"summary":5252},"\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":5254,"title":5255,"module":5247,"summary":5256},"\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":5258,"title":5259,"module":5247,"summary":5260},"\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":5262,"title":5263,"module":5264,"summary":5265},"\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":5267,"title":5268,"module":5264,"summary":5269},"\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":5271,"title":5272,"module":5264,"summary":5273},"\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":5275,"title":5276,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5278,"title":4077,"module":5279,"summary":5280},"\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":5282,"title":5283,"module":5279,"summary":5284},"\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":5286,"title":5287,"module":5279,"summary":5288},"\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":5290,"title":3436,"module":5279,"summary":5291},"\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":5293,"title":5294,"module":5,"summary":5295},"\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":5297,"title":5298,"module":5,"summary":5299},"\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":5301,"title":5302,"module":5,"summary":5303},"\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":5305,"title":5306,"module":5307,"summary":5308},"\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":5310,"title":5311,"module":5307,"summary":5312},"\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":5314,"title":5315,"module":5307,"summary":5316},"\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":5318,"title":5319,"module":5307,"summary":5320},"\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":5322,"title":5323,"module":5307,"summary":5324},"\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":5326,"title":5327,"module":5328,"summary":5329},"\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":5331,"title":5332,"module":5328,"summary":5333},"\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":5335,"title":5336,"module":5328,"summary":5337},"\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":5339,"title":5340,"module":5328,"summary":5341},"\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":5343,"title":5344,"module":5328,"summary":5345},"\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":5347,"title":5348,"module":5349,"summary":5350},"\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":5352,"title":5353,"module":5349,"summary":5354},"\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":5356,"title":5357,"module":5349,"summary":5358},"\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":5360,"title":5361,"module":5349,"summary":5362},"\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":5364,"title":5365,"module":5366,"summary":5367},"\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":5369,"title":5370,"module":5366,"summary":5371},"\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":5373,"title":5374,"module":5366,"summary":5375},"\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":5377,"title":5378,"module":5366,"summary":5379},"\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":5381,"title":5382,"module":5366,"summary":5383},"\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":5385,"title":5386,"module":5366,"summary":5387},"\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":5389,"title":5390,"module":5366,"summary":5391},"\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":5393,"title":5394,"module":5366,"summary":5395},"\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":5397,"title":5398,"module":5366,"summary":5399},"\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":5401,"title":5402,"module":5403,"summary":5404},"\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":5406,"title":5407,"module":5403,"summary":5408},"\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":5410,"title":5411,"module":5403,"summary":5412},"\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":5414,"title":5415,"module":5403,"summary":5416},"\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":5418,"title":5419,"module":5403,"summary":5420},"\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":5422,"title":5423,"module":5424,"summary":5425},"\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":5427,"title":5428,"module":5424,"summary":5429},"\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":5431,"title":5432,"module":5424,"summary":5433},"\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":5435,"title":5436,"module":5424,"summary":5437},"\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":5439,"title":5440,"module":5424,"summary":5441},"\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":5443,"title":5444,"module":5424,"summary":5445},"\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":5447,"title":5448,"module":5424,"summary":5449},"\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":5451,"title":5452,"module":5453,"summary":5454},"\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":5456,"title":5457,"module":5453,"summary":5458},"\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":5460,"title":5461,"module":5453,"summary":5462},"\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":5464,"title":5465,"module":5466,"summary":5467},"\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":5469,"title":5470,"module":5466,"summary":5471},"\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":5473,"title":5474,"module":5466,"summary":5475},"\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":5477,"title":5478,"module":5466,"summary":5479},"\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":5481,"title":5482,"module":5466,"summary":5483},"\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":5485,"title":5486,"module":5466,"summary":5487},"\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":5489,"title":5490,"module":5466,"summary":5491},"\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":5493,"title":5494,"module":5495,"summary":5496},"\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":5498,"title":5499,"module":5495,"summary":5500},"\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":5502,"title":5503,"module":5495,"summary":5504},"\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":5506,"title":5507,"module":5495,"summary":5508},"\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":5510,"title":5511,"module":5495,"summary":5512},"\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":5514,"title":5515,"module":5495,"summary":5516},"\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":5518,"title":5519,"module":5495,"summary":5520},"\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":5522,"title":5523,"module":5495,"summary":5524},"\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":5526,"title":5527,"module":5495,"summary":5528},"\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":5530,"title":5531,"module":5495,"summary":5532},"\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":5534,"title":5535,"module":5495,"summary":5536},"\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":5538,"title":5539,"module":5540,"summary":5541},"\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":5543,"title":5544,"module":5540,"summary":5545},"\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":5547,"title":5548,"module":5540,"summary":5549},"\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":5551,"title":5552,"module":5540,"summary":5553},"\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":5555,"title":5556,"module":5540,"summary":5557},"\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":5559,"title":5560,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5562,"title":5563,"module":3627,"summary":5564},"\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":5566,"title":5567,"module":3627,"summary":5568},"\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":5570,"title":5571,"module":3627,"summary":5572},"\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":5574,"title":5575,"module":3627,"summary":5576},"\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":5578,"title":5579,"module":3627,"summary":5580},"\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":5582,"title":5583,"module":5584,"summary":5585},"\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":5587,"title":5588,"module":5584,"summary":5589},"\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":5591,"title":5592,"module":5584,"summary":5593},"\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":5595,"title":5596,"module":5584,"summary":5597},"\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":5599,"title":5600,"module":5601,"summary":5602},"\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":5604,"title":5605,"module":5601,"summary":5606},"\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":5608,"title":5609,"module":5601,"summary":5610},"\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":5612,"title":5613,"module":5601,"summary":5614},"\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":5616,"title":5617,"module":5618,"summary":5619},"\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":5621,"title":5622,"module":5618,"summary":5623},"\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":5625,"title":5626,"module":5618,"summary":5627},"\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":5629,"title":5630,"module":5618,"summary":5631},"\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":5633,"title":5634,"module":5618,"summary":5635},"\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":5637,"title":5638,"module":5639,"summary":5640},"\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":5642,"title":5643,"module":5639,"summary":5644},"\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":5646,"title":5647,"module":5639,"summary":5648},"\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":5650,"title":5651,"module":5652,"summary":5653},"\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":5655,"title":5656,"module":5652,"summary":5657},"\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":5659,"title":5660,"module":5652,"summary":5661},"\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":5663,"title":5664,"module":5665,"summary":5666},"\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":5668,"title":5669,"module":5665,"summary":5670},"\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":5672,"title":5673,"module":5665,"summary":5674},"\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":5676,"title":5677,"module":5665,"summary":5678},"\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":5680,"title":5681,"module":5682,"summary":5683},"\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":5685,"title":5686,"module":5682,"summary":5687},"\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":5689,"title":5690,"module":5682,"summary":5691},"\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":5693,"title":5694,"module":5682,"summary":5695},"\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":5697,"title":5698,"module":5682,"summary":5699},"\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":5701,"title":5702,"module":5682,"summary":5703},"\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":5705,"title":5706,"module":5707,"summary":5708},"\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":5710,"title":5711,"module":5707,"summary":5712},"\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":5714,"title":5715,"module":5707,"summary":5716},"\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":5718,"title":5719,"module":5707,"summary":5720},"\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":5722,"title":5723,"module":5724,"summary":5725},"\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":5727,"title":5728,"module":5724,"summary":5729},"\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":5731,"title":5732,"module":5724,"summary":5733},"\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":5735,"title":5736,"module":5737,"summary":5738},"\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":5740,"title":5741,"module":5737,"summary":5742},"\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":5744,"title":5745,"module":5737,"summary":5746},"\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":5748,"title":5749,"module":5737,"summary":5750},"\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":5752,"title":5753,"module":5737,"summary":5754},"\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":5756,"title":5757,"module":5758,"summary":5759},"\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":5761,"title":5762,"module":5758,"summary":5763},"\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":5765,"title":5766,"module":5758,"summary":5767},"\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":5769,"title":5770,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5772,"title":5773,"module":5774,"summary":5775},"\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":5777,"title":5778,"module":5774,"summary":5779},"\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":5781,"title":5782,"module":5774,"summary":5783},"\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":5785,"title":5786,"module":5774,"summary":5787},"\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":5789,"title":5790,"module":5791,"summary":5792},"\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":5794,"title":5795,"module":5791,"summary":5796},"\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":5798,"title":5799,"module":5791,"summary":5800},"\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":5802,"title":5803,"module":5791,"summary":5804},"\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":5806,"title":5807,"module":5808,"summary":5809},"\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":5811,"title":5812,"module":5808,"summary":5813},"\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":5815,"title":5816,"module":5808,"summary":5817},"\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":5819,"title":5820,"module":5808,"summary":5821},"\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":5823,"title":5824,"module":5825,"summary":5826},"\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":5828,"title":5829,"module":5825,"summary":5830},"\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":5832,"title":5833,"module":5825,"summary":5834},"\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":5836,"title":5837,"module":5825,"summary":5838},"\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":5840,"title":5841,"module":5842,"summary":5843},"\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":5845,"title":5846,"module":5842,"summary":5847},"\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":5849,"title":5850,"module":5842,"summary":5851},"\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":5853,"title":5854,"module":5842,"summary":5855},"\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":5857,"title":5858,"module":5859,"summary":5860},"\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":5862,"title":5863,"module":5859,"summary":5864},"\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":5866,"title":5867,"module":5859,"summary":5868},"\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":5870,"title":5871,"module":5859,"summary":5872},"\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":5874,"title":5875,"module":5876,"summary":5877},"\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":5879,"title":5880,"module":5876,"summary":5881},"\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":5883,"title":5884,"module":5876,"summary":5885},"\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":5887,"title":5888,"module":5876,"summary":5889},"\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":5891,"title":5892,"module":5876,"summary":5893},"\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":5895,"title":5896,"module":5897,"summary":5898},"\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":5900,"title":5901,"module":5897,"summary":5902},"\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":5904,"title":5905,"module":5906,"summary":5907},"\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":5909,"title":5910,"module":5906,"summary":5911},"\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":5913,"title":5914,"module":5906,"summary":5915},"\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":5917,"title":5918,"module":5906,"summary":5919},"\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":5921,"title":5922,"module":5923,"summary":5924},"\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":5926,"title":5927,"module":5923,"summary":5928},"\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":5930,"title":5931,"module":5923,"summary":5932},"\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":5934,"title":5935,"module":5923,"summary":5936},"\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":5938,"title":5939,"module":5923,"summary":5940},"\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":5942,"title":5943,"module":5944,"summary":5945},"\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":5947,"title":5948,"module":5944,"summary":5949},"\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":5951,"title":5952,"module":5944,"summary":5953},"\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":5955,"title":5956,"module":5944,"summary":5957},"\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":5959,"title":5960,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":5962,"title":5963,"module":5,"summary":5964},"\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":5966,"title":5967,"module":5968,"summary":5969},"\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":5971,"title":5972,"module":5968,"summary":5973},"\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":5975,"title":5976,"module":5968,"summary":5977},"\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":5979,"title":5980,"module":5968,"summary":5981},"\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":5983,"title":5984,"module":5968,"summary":5985},"\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":5987,"title":5988,"module":5968,"summary":5989},"\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":5991,"title":5992,"module":5968,"summary":5993},"\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":5995,"title":5996,"module":5997,"summary":5998},"\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":6000,"title":6001,"module":5997,"summary":6002},"\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":6004,"title":6005,"module":5997,"summary":6006},"\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":6008,"title":6009,"module":5997,"summary":6010},"\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":6012,"title":6013,"module":6014,"summary":6015},"\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":6017,"title":6018,"module":6014,"summary":6019},"\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":6021,"title":6022,"module":6014,"summary":6023},"\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":6025,"title":6026,"module":6014,"summary":6027},"\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":6029,"title":6030,"module":6031,"summary":6032},"\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":6034,"title":6035,"module":6031,"summary":6036},"\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":6038,"title":6039,"module":6031,"summary":6040},"\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":6042,"title":6043,"module":6031,"summary":6044},"\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":6046,"title":6047,"module":6048,"summary":6049},"\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":6051,"title":6052,"module":6048,"summary":6053},"\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":6055,"title":6056,"module":6048,"summary":6057},"\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":6059,"title":6060,"module":6048,"summary":6061},"\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":6063,"title":6064,"module":6065,"summary":6066},"\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":6068,"title":6069,"module":6065,"summary":6070},"\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":6072,"title":6073,"module":6065,"summary":6074},"\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":6076,"title":6077,"module":6078,"summary":6079},"\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":6081,"title":6082,"module":6078,"summary":6083},"\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":6085,"title":6086,"module":6087,"summary":6088},"\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":6090,"title":6091,"module":6087,"summary":6092},"\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":6094,"title":6095,"module":6087,"summary":6096},"\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":6098,"title":6099,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6101,"title":6102,"module":5,"summary":6103},"\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":6105,"title":6106,"module":5,"summary":6107},"\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":6109,"title":6110,"module":5,"summary":6111},"\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":6113,"title":6114,"module":5,"summary":6115},"\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":6117,"title":6118,"module":5,"summary":6119},"\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":6121,"title":6122,"module":5,"summary":6123},"\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":6125,"title":3102,"module":6126,"summary":6127},"\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":6129,"title":6130,"module":6126,"summary":6131},"\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":6133,"title":6134,"module":6126,"summary":6135},"\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":6137,"title":6138,"module":6126,"summary":6139},"\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":6141,"title":6142,"module":6126,"summary":6143},"\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":6145,"title":6146,"module":6126,"summary":6147},"\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":6149,"title":6150,"module":6126,"summary":6151},"\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":6153,"title":6154,"module":6126,"summary":6155},"\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":6157,"title":6158,"module":6126,"summary":6159},"\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":6161,"title":6162,"module":6126,"summary":6163},"\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":6165,"title":6166,"module":6126,"summary":6167},"\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":6169,"title":6170,"module":6126,"summary":6171},"\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":6173,"title":6174,"module":6175,"summary":6176},"\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":6178,"title":6179,"module":6175,"summary":6180},"\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":6182,"title":6183,"module":6175,"summary":6184},"\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":6186,"title":6187,"module":6175,"summary":6188},"\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":6190,"title":6191,"module":6175,"summary":6192},"\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":6194,"title":6195,"module":6175,"summary":6196},"\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":6198,"title":6199,"module":6175,"summary":6200},"\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":6202,"title":6203,"module":6175,"summary":6204},"\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":6206,"title":6207,"module":6175,"summary":6208},"\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":6210,"title":6211,"module":6175,"summary":6212},"\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":6214,"title":6215,"module":6175,"summary":6216},"\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":6218,"title":6219,"module":6175,"summary":6220},"\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":6222,"title":6223,"module":6175,"summary":6224},"\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":6226,"title":6227,"module":6175,"summary":6228},"\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":6230,"title":5548,"module":6231,"summary":6232},"\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":6234,"title":6235,"module":6231,"summary":6236},"\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":6238,"title":6239,"module":6231,"summary":6240},"\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":6242,"title":6243,"module":6231,"summary":6244},"\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":6246,"title":6247,"module":6231,"summary":6248},"\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":6250,"title":6251,"module":6231,"summary":6252},"\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":6254,"title":6255,"module":6231,"summary":6256},"\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":6258,"title":6259,"module":6231,"summary":6260},"\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":6262,"title":6263,"module":6264,"summary":6265},"\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":6267,"title":6268,"module":6264,"summary":6269},"\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":6271,"title":6272,"module":6264,"summary":6273},"\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":6275,"title":6276,"module":6264,"summary":6277},"\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":6279,"title":6280,"module":6264,"summary":6281},"\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":6283,"title":6284,"module":6264,"summary":6285},"\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":6287,"title":6288,"module":6264,"summary":6289},"\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":6291,"title":6292,"module":6264,"summary":6293},"\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":6295,"title":6296,"module":6264,"summary":6297},"\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":6299,"title":6300,"module":6264,"summary":6301},"\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":6303,"title":6304,"module":6264,"summary":6305},"\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":6307,"title":6308,"module":6264,"summary":6309},"\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":6311,"title":6312,"module":6264,"summary":6313},"\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":6315,"title":6316,"module":6264,"summary":6317},"\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":6319,"title":6320,"module":6264,"summary":6321},"\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":6323,"title":6324,"module":6264,"summary":6325},"\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":6327,"title":6328,"module":6264,"summary":6329},"\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":6331,"title":6332,"module":6264,"summary":6333},"\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":6335,"title":6336,"module":6264,"summary":6337},"\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":6339,"title":6340,"module":6264,"summary":6341},"\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":6343,"title":6344,"module":6264,"summary":6345},"\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":6347,"title":6348,"module":6264,"summary":6349},"\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":6351,"title":6352,"module":6353,"summary":6354},"\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":6356,"title":6357,"module":6353,"summary":6358},"\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":6360,"title":6361,"module":6353,"summary":6362},"\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":6364,"title":6365,"module":6353,"summary":6366},"\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":6368,"title":6369,"module":6353,"summary":6370},"\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":6372,"title":6373,"module":6353,"summary":6374},"\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":6376,"title":6377,"module":6353,"summary":6378},"\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":6380,"title":6381,"module":6353,"summary":6382},"\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":6384,"title":5540,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6386,"title":6387,"module":5,"summary":6388},"\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":6390,"title":6391,"module":5,"summary":6392},"\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":6394,"title":6395,"module":5,"summary":6396},"\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":6398,"title":6399,"module":5,"summary":6400},"\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":6402,"title":6403,"module":6404,"summary":6405},"\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":6407,"title":6408,"module":6404,"summary":6409},"\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":6411,"title":6412,"module":6404,"summary":6413},"\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":6415,"title":6416,"module":6404,"summary":6417},"\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":6419,"title":6420,"module":6404,"summary":6421},"\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":6423,"title":6424,"module":6404,"summary":6425},"\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":6427,"title":6428,"module":6404,"summary":6429},"\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":6431,"title":6432,"module":6404,"summary":6433},"\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":6435,"title":6436,"module":6404,"summary":6437},"\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":6439,"title":6440,"module":6404,"summary":6441},"\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":6443,"title":6444,"module":6404,"summary":6445},"\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":6447,"title":6448,"module":6404,"summary":6449},"\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":6451,"title":6452,"module":6453,"summary":6454},"\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":6456,"title":6457,"module":6453,"summary":6458},"\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":6460,"title":6461,"module":6453,"summary":6462},"\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":6464,"title":6465,"module":6453,"summary":6466},"\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":6468,"title":6469,"module":6453,"summary":6470},"\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":6472,"title":6473,"module":6453,"summary":6474},"\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":6476,"title":6477,"module":6453,"summary":6478},"\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":6480,"title":6481,"module":6453,"summary":6482},"\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":6484,"title":6485,"module":6453,"summary":6486},"\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":6488,"title":6489,"module":6453,"summary":6490},"\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":6492,"title":6493,"module":6453,"summary":6494},"\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":6496,"title":6497,"module":6453,"summary":6498},"\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":6500,"title":6501,"module":6502,"summary":6503},"\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":6505,"title":6506,"module":6502,"summary":6507},"\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":6509,"title":6510,"module":6502,"summary":6511},"\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":6513,"title":6514,"module":6502,"summary":6515},"\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":6517,"title":6518,"module":6502,"summary":6519},"\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":6521,"title":6522,"module":6502,"summary":6523},"\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":6525,"title":6526,"module":6502,"summary":6527},"\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":6529,"title":6118,"module":6502,"summary":6530},"\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":6532,"title":6533,"module":6502,"summary":6534},"\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":6536,"title":6537,"module":6502,"summary":6538},"\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":6540,"title":6541,"module":6542,"summary":6543},"\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":6545,"title":6546,"module":6542,"summary":6547},"\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":6549,"title":6550,"module":6542,"summary":6551},"\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":6553,"title":6554,"module":6542,"summary":6555},"\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":6557,"title":5540,"module":6542,"summary":6558},"\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":6560,"title":6561,"module":6542,"summary":6562},"\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":6564,"title":6565,"module":6542,"summary":6566},"\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":6568,"title":6569,"module":6542,"summary":6570},"\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":6572,"title":6573,"module":6574,"summary":6575},"\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":6577,"title":6578,"module":6574,"summary":6579},"\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":6581,"title":6582,"module":6574,"summary":6583},"\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":6585,"title":6586,"module":6574,"summary":6587},"\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":6589,"title":6590,"module":6574,"summary":6591},"\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":6593,"title":6594,"module":6574,"summary":6595},"\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":6597,"title":6598,"module":6574,"summary":6599},"\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":6601,"title":6602,"module":6574,"summary":6603},"\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":6605,"title":6606,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6608,"title":6609,"module":6610,"summary":6611},"\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":6613,"title":6614,"module":6610,"summary":6615},"\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":6617,"title":6618,"module":6610,"summary":6619},"\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":6621,"title":6622,"module":6610,"summary":6623},"\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":6625,"title":6626,"module":6610,"summary":6627},"\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":6629,"title":6630,"module":6631,"summary":6632},"\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":6634,"title":6635,"module":6631,"summary":6636},"\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":6638,"title":6639,"module":6631,"summary":6640},"\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":6642,"title":6643,"module":6631,"summary":6644},"\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":6646,"title":6647,"module":6648,"summary":6649},"\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":6651,"title":6652,"module":6648,"summary":6653},"\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":6655,"title":6656,"module":6648,"summary":6657},"\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":6659,"title":6660,"module":6648,"summary":6661},"\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":6663,"title":6664,"module":6665,"summary":6666},"\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":6668,"title":6669,"module":6665,"summary":6670},"\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":6672,"title":6673,"module":6674,"summary":6675},"\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":6677,"title":6678,"module":6674,"summary":6679},"\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":6681,"title":6682,"module":6683,"summary":6684},"\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":6686,"title":6687,"module":6683,"summary":6688},"\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":6690,"title":6691,"module":6683,"summary":6692},"\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":6694,"title":6695,"module":6683,"summary":6696},"\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":6698,"title":6699,"module":6700,"summary":6701},"\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":6703,"title":6704,"module":6700,"summary":6705},"\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":6707,"title":6708,"module":6700,"summary":6709},"\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":6711,"title":6712,"module":6713,"summary":6714},"\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":6716,"title":6717,"module":6713,"summary":6718},"\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":6720,"title":6721,"module":6713,"summary":6722},"\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":6724,"title":6725,"module":6726,"summary":6727},"\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":6729,"title":6730,"module":6726,"summary":6731},"\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":6733,"title":6734,"module":6735,"summary":6736},"\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":6738,"title":6739,"module":6735,"summary":6740},"\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":6742,"title":6743,"module":6735,"summary":6744},"\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":6746,"title":6747,"module":6748,"summary":6749},"\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":6751,"title":6752,"module":6748,"summary":6753},"\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":6755,"title":6756,"module":6748,"summary":6757},"\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":6759,"title":6760,"module":6748,"summary":6761},"\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":6763,"title":6764,"module":6748,"summary":6765},"\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":6767,"title":6768,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6770,"title":6771,"module":5,"summary":6772},"\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":6774,"title":6775,"module":5,"summary":6776},"\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":6778,"title":6779,"module":5,"summary":6780},"\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":6782,"title":6783,"module":5,"summary":6784},"\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":6786,"title":6787,"module":5,"summary":6788},"\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":6790,"title":6791,"module":6792,"summary":6793},"\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":6795,"title":6796,"module":6792,"summary":6797},"\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":6799,"title":6800,"module":6792,"summary":6801},"\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":6803,"title":6804,"module":6792,"summary":6805},"\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":6807,"title":6808,"module":6809,"summary":6810},"\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":6812,"title":6813,"module":6809,"summary":6814},"\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":6816,"title":6817,"module":6809,"summary":6818},"\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":6820,"title":6821,"module":3349,"summary":6822},"\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":6824,"title":6825,"module":3349,"summary":6826},"\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":6828,"title":6829,"module":3349,"summary":6830},"\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":6832,"title":6833,"module":3831,"summary":6834},"\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":6836,"title":5386,"module":3831,"summary":6837},"\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":6839,"title":5494,"module":3831,"summary":6840},"\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":6842,"title":6843,"module":3831,"summary":6844},"\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":6846,"title":6847,"module":3831,"summary":6848},"\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":6850,"title":6851,"module":3831,"summary":6852},"\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":6854,"title":6855,"module":6856,"summary":6857},"\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":6859,"title":6860,"module":6856,"summary":6861},"\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":6863,"title":6864,"module":6856,"summary":6865},"\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":6867,"title":6868,"module":6856,"summary":6869},"\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":6871,"title":6872,"module":6856,"summary":6873},"\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":6875,"title":6876,"module":6856,"summary":6877},"\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":6879,"title":6880,"module":6856,"summary":6881},"\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":6883,"title":6884,"module":6856,"summary":6885},"\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":6887,"title":6888,"module":6856,"summary":6889},"\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":6891,"title":6892,"module":6856,"summary":6893},"\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":6895,"title":6896,"module":6856,"summary":6897},"\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":6899,"title":6900,"module":6856,"summary":6901},"\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":6903,"title":6904,"module":6856,"summary":6905},"\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":6907,"title":6908,"module":6856,"summary":6909},"\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":6911,"title":6912,"module":6856,"summary":6913},"\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":6915,"title":6916,"module":6856,"summary":6917},"\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":6919,"title":6920,"module":6856,"summary":6921},"\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":6923,"title":6924,"module":6856,"summary":6925},"\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":6927,"title":6928,"module":6856,"summary":6929},"\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":6931,"title":6932,"module":6856,"summary":6933},"\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":6935,"title":6936,"module":5482,"summary":6937},"\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":6939,"title":6940,"module":5482,"summary":6941},"\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":6943,"title":6944,"module":5482,"summary":6945},"\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":6947,"title":6948,"module":5482,"summary":6949},"\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":6951,"title":6952,"module":5482,"summary":6953},"\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":6955,"title":6956,"module":5482,"summary":6957},"\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":6959,"title":6960,"module":5482,"summary":6961},"\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":6963,"title":6964,"module":5482,"summary":6965},"\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":6967,"title":6968,"module":6969,"summary":6970},"\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":6972,"title":6973,"module":6969,"summary":6974},"\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":6976,"title":6977,"module":6969,"summary":6978},"\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":6980,"title":6981,"module":6969,"summary":6982},"\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":6984,"title":6985,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":6987,"title":6988,"module":5,"summary":6989},"\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":6991,"title":6992,"module":5,"summary":6993},"\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":6995,"title":6996,"module":5,"summary":6997},"\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":6999,"title":7000,"module":7001,"summary":7002},"\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":7004,"title":7005,"module":7001,"summary":7006},"\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":7008,"title":7009,"module":7001,"summary":7010},"\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":7012,"title":7013,"module":7001,"summary":7014},"\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":7016,"title":7017,"module":7018,"summary":7019},"\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":7021,"title":7022,"module":7018,"summary":7023},"\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":7025,"title":7026,"module":7018,"summary":7027},"\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":7029,"title":7030,"module":7018,"summary":7031},"\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":7033,"title":7034,"module":7035,"summary":7036},"\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":7038,"title":7039,"module":7035,"summary":7040},"\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":7042,"title":7043,"module":7035,"summary":7044},"\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":7046,"title":7047,"module":7035,"summary":7048},"\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":7050,"title":7051,"module":7052,"summary":7053},"\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":7055,"title":7056,"module":7052,"summary":7057},"\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":7059,"title":7060,"module":7052,"summary":7061},"\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":7063,"title":7064,"module":7065,"summary":7066},"\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":7068,"title":7069,"module":7065,"summary":7070},"\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":7072,"title":7073,"module":7065,"summary":7074},"\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":7076,"title":7077,"module":7065,"summary":7078},"\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":7080,"title":7081,"module":7082,"summary":7083},"\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":7085,"title":7086,"module":7082,"summary":7087},"\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":7089,"title":7090,"module":7082,"summary":7091},"\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":7093,"title":7094,"module":7082,"summary":7095},"\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":7097,"title":7098,"module":7099,"summary":7100},"\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":7102,"title":7103,"module":7099,"summary":7104},"\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":7106,"title":7107,"module":7099,"summary":7108},"\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":7110,"title":7111,"module":7099,"summary":7112},"\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":7114,"title":7115,"module":7116,"summary":7117},"\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":7119,"title":7120,"module":7116,"summary":7121},"\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":7123,"title":7124,"module":7116,"summary":7125},"\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":7127,"title":7128,"module":7116,"summary":7129},"\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":7131,"title":7132,"module":7116,"summary":7133},"\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":7135,"title":7136,"module":7137,"summary":7138},"\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":7140,"title":7141,"module":7137,"summary":7142},"\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":7144,"title":7145,"module":7137,"summary":7146},"\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":7148,"title":7149,"module":7150,"summary":7151},"\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":7153,"title":7154,"module":7150,"summary":7155},"\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":7157,"title":7158,"module":7150,"summary":7159},"\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":7161,"title":7162,"module":7162,"summary":7163},"\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":7165,"title":7166,"module":7162,"summary":7167},"\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":7169,"title":7170,"module":7162,"summary":7171},"\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":7173,"title":7174,"module":7162,"summary":7175},"\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":7177,"title":7178,"module":7162,"summary":7179},"\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":7181,"title":7182,"module":7162,"summary":7183},"\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":7185,"title":7186,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7188,"title":7189,"module":7190,"summary":7191},"\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":7193,"title":7194,"module":7190,"summary":7195},"\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":7197,"title":7198,"module":7190,"summary":7199},"\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":7201,"title":7202,"module":7203,"summary":7204},"\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":7206,"title":7207,"module":7203,"summary":7208},"\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":7210,"title":7211,"module":7203,"summary":7212},"\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":7214,"title":7215,"module":7203,"summary":7216},"\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":7218,"title":7219,"module":7220,"summary":7221},"\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":7223,"title":7224,"module":7220,"summary":7225},"\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":7227,"title":7228,"module":7220,"summary":7229},"\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":7231,"title":7232,"module":7220,"summary":7233},"\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":7235,"title":7236,"module":7237,"summary":7238},"\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":7240,"title":7241,"module":7237,"summary":7242},"\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":7244,"title":7245,"module":7237,"summary":7246},"\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":7248,"title":7249,"module":7237,"summary":7250},"\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":7252,"title":7253,"module":7254,"summary":7255},"\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":7257,"title":7258,"module":7254,"summary":7259},"\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":7261,"title":7262,"module":7254,"summary":7263},"\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":7265,"title":7266,"module":7254,"summary":7267},"\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":7269,"title":7270,"module":7271,"summary":7272},"\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":7274,"title":7275,"module":7271,"summary":7276},"\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":7278,"title":7279,"module":7271,"summary":7280},"\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":7282,"title":7283,"module":7284,"summary":7285},"\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":7287,"title":7288,"module":7284,"summary":7289},"\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":7291,"title":7292,"module":7284,"summary":7293},"\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":7295,"title":7296,"module":7284,"summary":7297},"\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":7299,"title":5715,"module":7300,"summary":7301},"\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":7303,"title":7304,"module":7300,"summary":7305},"\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":7307,"title":7308,"module":7300,"summary":7309},"\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":7311,"title":7312,"module":7300,"summary":7313},"\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":7315,"title":7316,"module":7300,"summary":7317},"\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":7319,"title":7320,"module":7321,"summary":7322},"\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":7324,"title":7325,"module":7321,"summary":7326},"\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":7328,"title":7329,"module":7321,"summary":7330},"\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":7332,"title":7333,"module":7321,"summary":7334},"\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":7336,"title":7337,"module":7338,"summary":7339},"\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":7341,"title":7342,"module":7338,"summary":7343},"\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":7345,"title":7346,"module":7338,"summary":7347},"\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":7349,"title":7350,"module":7338,"summary":7351},"\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":7353,"title":7354,"module":7338,"summary":7355},"\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":7357,"title":7358,"module":7359,"summary":7360},"\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":7362,"title":7363,"module":7359,"summary":7364},"\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":7366,"title":4433,"module":7359,"summary":7367},"\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":7369,"title":7370,"module":7359,"summary":7371},"\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":7373,"title":7374,"module":7359,"summary":7375},"\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":7377,"title":7378,"module":7379,"summary":7380},"\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":7382,"title":7383,"module":7379,"summary":7384},"\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":7386,"title":7387,"module":7379,"summary":7388},"\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":7390,"title":7391,"module":7379,"summary":7392},"\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":7394,"title":7395,"module":7379,"summary":7396},"\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":7398,"title":7399,"module":7379,"summary":7400},"\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":7402,"title":7403,"module":7379,"summary":7404},"\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":7406,"title":7407,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7409,"title":7410,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":454,"title":7412,"module":306,"summary":306},"Study Notes","\u003Csvg style=\"width:100%;max-width:502.033px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 376.524 103.139\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-10.276-43.617h74.058V-72.07h-74.058Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M54.612-67.344L52.026-67.344L52.026-67.641Q52.346-67.641 52.590-67.688Q52.835-67.735 52.835-67.903L52.835-72.246Q52.835-72.418 52.590-72.465Q52.346-72.512 52.026-72.512L52.026-72.809L56.643-72.809L56.874-70.961L56.592-70.961Q56.506-71.645 56.344-71.965Q56.182-72.285 55.842-72.399Q55.502-72.512 54.811-72.512L54.002-72.512Q53.784-72.512 53.692-72.469Q53.600-72.426 53.600-72.246L53.600-70.223L54.210-70.223Q54.635-70.223 54.833-70.289Q55.030-70.356 55.112-70.549Q55.194-70.742 55.194-71.160L55.475-71.160L55.475-68.992L55.194-68.992Q55.194-69.410 55.112-69.604Q55.030-69.797 54.833-69.864Q54.635-69.930 54.210-69.930L53.600-69.930L53.600-67.903Q53.600-67.739 53.919-67.690Q54.237-67.641 54.612-67.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M56.764-69.098Q56.764-69.578 56.997-69.994Q57.229-70.410 57.639-70.660Q58.049-70.910 58.526-70.910Q59.256-70.910 59.655-70.469Q60.053-70.028 60.053-69.297Q60.053-69.192 59.960-69.168L57.510-69.168L57.510-69.098Q57.510-68.688 57.631-68.332Q57.753-67.977 58.024-67.760Q58.296-67.543 58.725-67.543Q59.089-67.543 59.385-67.772Q59.682-68 59.784-68.352Q59.792-68.399 59.878-68.414L59.960-68.414Q60.053-68.387 60.053-68.305Q60.053-68.297 60.046-68.266Q59.983-68.039 59.844-67.856Q59.706-67.672 59.514-67.539Q59.323-67.406 59.104-67.336Q58.885-67.266 58.647-67.266Q58.276-67.266 57.938-67.403Q57.600-67.539 57.333-67.791Q57.065-68.043 56.915-68.383Q56.764-68.723 56.764-69.098M57.518-69.406L59.479-69.406Q59.479-69.711 59.378-70.002Q59.276-70.293 59.059-70.475Q58.842-70.656 58.526-70.656Q58.225-70.656 57.995-70.469Q57.764-70.281 57.641-69.990Q57.518-69.699 57.518-69.406M61.167-68.305L61.167-70.496L60.464-70.496L60.464-70.750Q60.819-70.750 61.061-70.983Q61.303-71.215 61.415-71.563Q61.526-71.910 61.526-72.266L61.807-72.266L61.807-70.793L62.983-70.793L62.983-70.496L61.807-70.496L61.807-68.321Q61.807-68 61.926-67.772Q62.046-67.543 62.327-67.543Q62.506-67.543 62.624-67.666Q62.741-67.789 62.794-67.969Q62.846-68.149 62.846-68.321L62.846-68.793L63.128-68.793L63.128-68.305Q63.128-68.051 63.022-67.811Q62.917-67.571 62.719-67.418Q62.522-67.266 62.264-67.266Q61.948-67.266 61.696-67.389Q61.444-67.512 61.305-67.746Q61.167-67.981 61.167-68.305M63.889-69.071Q63.889-69.567 64.139-69.992Q64.389-70.418 64.809-70.664Q65.229-70.910 65.729-70.910Q66.268-70.910 66.659-70.785Q67.049-70.660 67.049-70.246Q67.049-70.141 66.999-70.049Q66.948-69.957 66.856-69.906Q66.764-69.856 66.655-69.856Q66.549-69.856 66.458-69.906Q66.366-69.957 66.315-70.049Q66.264-70.141 66.264-70.246Q66.264-70.469 66.432-70.574Q66.210-70.633 65.737-70.633Q65.440-70.633 65.225-70.494Q65.010-70.356 64.880-70.125Q64.749-69.895 64.690-69.625Q64.631-69.356 64.631-69.071Q64.631-68.676 64.764-68.326Q64.897-67.977 65.169-67.760Q65.440-67.543 65.839-67.543Q66.214-67.543 66.489-67.760Q66.764-67.977 66.866-68.336Q66.881-68.399 66.944-68.399L67.049-68.399Q67.085-68.399 67.110-68.371Q67.135-68.344 67.135-68.305L67.135-68.281Q67.003-67.801 66.618-67.533Q66.233-67.266 65.729-67.266Q65.366-67.266 65.032-67.403Q64.698-67.539 64.438-67.789Q64.178-68.039 64.034-68.375Q63.889-68.711 63.889-69.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M69.319-67.344L67.463-67.344L67.463-67.641Q67.737-67.641 67.905-67.688Q68.073-67.735 68.073-67.903L68.073-72.063Q68.073-72.278 68.010-72.373Q67.948-72.469 67.829-72.490Q67.710-72.512 67.463-72.512L67.463-72.809L68.686-72.895L68.686-70.192Q68.811-70.403 68.999-70.553Q69.186-70.703 69.413-70.787Q69.639-70.871 69.885-70.871Q71.053-70.871 71.053-69.793L71.053-67.903Q71.053-67.735 71.223-67.688Q71.393-67.641 71.663-67.641L71.663-67.344L69.807-67.344L69.807-67.641Q70.081-67.641 70.249-67.688Q70.417-67.735 70.417-67.903L70.417-69.778Q70.417-70.160 70.296-70.389Q70.174-70.617 69.823-70.617Q69.510-70.617 69.256-70.455Q69.003-70.293 68.856-70.024Q68.710-69.754 68.710-69.457L68.710-67.903Q68.710-67.735 68.880-67.688Q69.049-67.641 69.319-67.641\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M29.370-55.852Q28.757-56.309 28.355-56.944Q27.952-57.578 27.757-58.324Q27.562-59.071 27.562-59.844Q27.562-60.617 27.757-61.364Q27.952-62.110 28.355-62.744Q28.757-63.379 29.370-63.836Q29.382-63.840 29.390-63.842Q29.398-63.844 29.409-63.844L29.487-63.844Q29.526-63.844 29.552-63.817Q29.577-63.789 29.577-63.746Q29.577-63.696 29.546-63.676Q29.038-63.223 28.716-62.600Q28.394-61.977 28.253-61.282Q28.112-60.586 28.112-59.844Q28.112-59.110 28.251-58.410Q28.390-57.711 28.714-57.086Q29.038-56.461 29.546-56.012Q29.577-55.992 29.577-55.942Q29.577-55.899 29.552-55.871Q29.526-55.844 29.487-55.844L29.409-55.844Q29.401-55.848 29.392-55.850Q29.382-55.852 29.370-55.852M32.304-57.844L30.323-57.844L30.323-58.141Q30.593-58.141 30.761-58.186Q30.929-58.231 30.929-58.403L30.929-60.539Q30.929-60.754 30.866-60.850Q30.804-60.946 30.687-60.967Q30.569-60.989 30.323-60.989L30.323-61.285L31.491-61.371L31.491-60.586Q31.569-60.797 31.722-60.983Q31.874-61.168 32.073-61.270Q32.273-61.371 32.499-61.371Q32.745-61.371 32.937-61.227Q33.128-61.082 33.128-60.852Q33.128-60.696 33.023-60.586Q32.917-60.477 32.761-60.477Q32.605-60.477 32.495-60.586Q32.386-60.696 32.386-60.852Q32.386-61.012 32.491-61.117Q32.167-61.117 31.952-60.889Q31.737-60.660 31.642-60.321Q31.546-59.981 31.546-59.676L31.546-58.403Q31.546-58.235 31.773-58.188Q31.999-58.141 32.304-58.141L32.304-57.844M33.608-59.598Q33.608-60.078 33.841-60.494Q34.073-60.910 34.483-61.160Q34.894-61.410 35.370-61.410Q36.101-61.410 36.499-60.969Q36.898-60.528 36.898-59.797Q36.898-59.692 36.804-59.668L34.355-59.668L34.355-59.598Q34.355-59.188 34.476-58.832Q34.597-58.477 34.868-58.260Q35.140-58.043 35.569-58.043Q35.933-58.043 36.230-58.272Q36.526-58.500 36.628-58.852Q36.636-58.899 36.722-58.914L36.804-58.914Q36.898-58.887 36.898-58.805Q36.898-58.797 36.890-58.766Q36.827-58.539 36.689-58.356Q36.550-58.172 36.358-58.039Q36.167-57.907 35.948-57.836Q35.730-57.766 35.491-57.766Q35.120-57.766 34.782-57.903Q34.444-58.039 34.177-58.291Q33.909-58.543 33.759-58.883Q33.608-59.223 33.608-59.598M34.362-59.907L36.323-59.907Q36.323-60.211 36.222-60.502Q36.120-60.793 35.903-60.975Q35.687-61.157 35.370-61.157Q35.069-61.157 34.839-60.969Q34.608-60.782 34.485-60.490Q34.362-60.199 34.362-59.907M37.483-58.676Q37.483-59.160 37.886-59.455Q38.288-59.750 38.839-59.869Q39.390-59.989 39.882-59.989L39.882-60.278Q39.882-60.504 39.767-60.711Q39.651-60.918 39.454-61.037Q39.257-61.157 39.026-61.157Q38.601-61.157 38.316-61.051Q38.386-61.024 38.433-60.969Q38.480-60.914 38.505-60.844Q38.530-60.774 38.530-60.699Q38.530-60.594 38.480-60.502Q38.429-60.410 38.337-60.360Q38.245-60.309 38.140-60.309Q38.034-60.309 37.942-60.360Q37.851-60.410 37.800-60.502Q37.749-60.594 37.749-60.699Q37.749-61.117 38.138-61.264Q38.526-61.410 39.026-61.410Q39.358-61.410 39.712-61.280Q40.066-61.149 40.294-60.895Q40.523-60.641 40.523-60.293L40.523-58.492Q40.523-58.360 40.595-58.250Q40.667-58.141 40.796-58.141Q40.921-58.141 40.989-58.246Q41.058-58.352 41.058-58.492L41.058-59.004L41.339-59.004L41.339-58.492Q41.339-58.289 41.222-58.131Q41.105-57.973 40.923-57.889Q40.741-57.805 40.538-57.805Q40.308-57.805 40.155-57.977Q40.003-58.149 39.972-58.379Q39.812-58.098 39.503-57.932Q39.194-57.766 38.843-57.766Q38.331-57.766 37.907-57.989Q37.483-58.211 37.483-58.676M38.171-58.676Q38.171-58.391 38.398-58.205Q38.624-58.020 38.917-58.020Q39.163-58.020 39.388-58.137Q39.612-58.254 39.747-58.457Q39.882-58.660 39.882-58.914L39.882-59.746Q39.616-59.746 39.331-59.692Q39.046-59.637 38.774-59.508Q38.503-59.379 38.337-59.172Q38.171-58.965 38.171-58.676M43.448-57.766Q42.968-57.766 42.560-58.010Q42.151-58.254 41.913-58.668Q41.675-59.082 41.675-59.571Q41.675-60.063 41.933-60.479Q42.191-60.895 42.622-61.133Q43.054-61.371 43.546-61.371Q44.167-61.371 44.616-60.934L44.616-62.563Q44.616-62.778 44.554-62.873Q44.491-62.969 44.374-62.990Q44.257-63.012 44.011-63.012L44.011-63.309L45.233-63.395L45.233-58.586Q45.233-58.375 45.296-58.280Q45.358-58.184 45.476-58.162Q45.593-58.141 45.843-58.141L45.843-57.844L44.593-57.766L44.593-58.250Q44.128-57.766 43.448-57.766M43.515-58.020Q43.855-58.020 44.148-58.211Q44.441-58.403 44.593-58.699L44.593-60.532Q44.444-60.805 44.183-60.961Q43.921-61.117 43.608-61.117Q42.983-61.117 42.700-60.670Q42.417-60.223 42.417-59.563Q42.417-58.918 42.669-58.469Q42.921-58.020 43.515-58.020\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M50.107-57.844L49.826-57.844L49.826-62.563Q49.826-62.778 49.764-62.873Q49.701-62.969 49.584-62.990Q49.467-63.012 49.221-63.012L49.221-63.309L50.443-63.395L50.443-60.907Q50.920-61.371 51.619-61.371Q52.100-61.371 52.508-61.127Q52.916-60.883 53.152-60.469Q53.389-60.055 53.389-59.571Q53.389-59.196 53.240-58.867Q53.092-58.539 52.822-58.287Q52.553-58.035 52.209-57.901Q51.865-57.766 51.506-57.766Q51.185-57.766 50.887-57.914Q50.588-58.063 50.381-58.324L50.107-57.844M50.467-60.516L50.467-58.676Q50.619-58.379 50.879-58.199Q51.139-58.020 51.451-58.020Q51.877-58.020 52.144-58.239Q52.412-58.457 52.527-58.803Q52.642-59.149 52.642-59.571Q52.642-60.219 52.394-60.668Q52.146-61.117 51.549-61.117Q51.213-61.117 50.924-60.959Q50.635-60.801 50.467-60.516\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M54.097-56.547Q54.211-56.469 54.386-56.469Q54.675-56.469 54.896-56.682Q55.117-56.895 55.242-57.196L55.531-57.844L54.257-60.731Q54.175-60.907 54.031-60.951Q53.886-60.996 53.617-60.996L53.617-61.293L55.336-61.293L55.336-60.996Q54.914-60.996 54.914-60.813Q54.914-60.801 54.929-60.731L55.867-58.606L56.699-60.516Q56.738-60.606 56.738-60.684Q56.738-60.824 56.636-60.910Q56.535-60.996 56.394-60.996L56.394-61.293L57.746-61.293L57.746-60.996Q57.492-60.996 57.298-60.871Q57.105-60.746 57-60.516L55.554-57.196Q55.441-56.942 55.275-56.719Q55.109-56.496 54.880-56.354Q54.652-56.211 54.386-56.211Q54.089-56.211 53.849-56.403Q53.609-56.594 53.609-56.883Q53.609-57.039 53.714-57.141Q53.820-57.242 53.968-57.242Q54.074-57.242 54.154-57.196Q54.234-57.149 54.281-57.071Q54.328-56.992 54.328-56.883Q54.328-56.762 54.267-56.674Q54.207-56.586 54.097-56.547M58.785-58.805L58.785-60.996L58.082-60.996L58.082-61.250Q58.437-61.250 58.679-61.483Q58.921-61.715 59.033-62.063Q59.144-62.410 59.144-62.766L59.425-62.766L59.425-61.293L60.601-61.293L60.601-60.996L59.425-60.996L59.425-58.821Q59.425-58.500 59.545-58.272Q59.664-58.043 59.945-58.043Q60.125-58.043 60.242-58.166Q60.359-58.289 60.412-58.469Q60.464-58.649 60.464-58.821L60.464-59.293L60.746-59.293L60.746-58.805Q60.746-58.551 60.640-58.311Q60.535-58.071 60.337-57.918Q60.140-57.766 59.882-57.766Q59.566-57.766 59.314-57.889Q59.062-58.012 58.923-58.246Q58.785-58.481 58.785-58.805M61.464-59.598Q61.464-60.078 61.697-60.494Q61.929-60.910 62.339-61.160Q62.750-61.410 63.226-61.410Q63.957-61.410 64.355-60.969Q64.754-60.528 64.754-59.797Q64.754-59.692 64.660-59.668L62.211-59.668L62.211-59.598Q62.211-59.188 62.332-58.832Q62.453-58.477 62.724-58.260Q62.996-58.043 63.425-58.043Q63.789-58.043 64.086-58.272Q64.382-58.500 64.484-58.852Q64.492-58.899 64.578-58.914L64.660-58.914Q64.754-58.887 64.754-58.805Q64.754-58.797 64.746-58.766Q64.683-58.539 64.545-58.356Q64.406-58.172 64.214-58.039Q64.023-57.907 63.804-57.836Q63.586-57.766 63.347-57.766Q62.976-57.766 62.638-57.903Q62.300-58.039 62.033-58.291Q61.765-58.543 61.615-58.883Q61.464-59.223 61.464-59.598M62.218-59.907L64.179-59.907Q64.179-60.211 64.078-60.502Q63.976-60.793 63.759-60.975Q63.543-61.157 63.226-61.157Q62.925-61.157 62.695-60.969Q62.464-60.782 62.341-60.490Q62.218-60.199 62.218-59.907M65.285-57.852L65.285-59.074Q65.285-59.102 65.316-59.133Q65.347-59.164 65.371-59.164L65.476-59.164Q65.546-59.164 65.562-59.102Q65.625-58.782 65.763-58.541Q65.902-58.301 66.134-58.160Q66.367-58.020 66.675-58.020Q66.914-58.020 67.123-58.080Q67.332-58.141 67.468-58.289Q67.605-58.438 67.605-58.684Q67.605-58.938 67.394-59.104Q67.183-59.270 66.914-59.324L66.293-59.438Q65.886-59.516 65.586-59.772Q65.285-60.028 65.285-60.403Q65.285-60.770 65.486-60.992Q65.687-61.215 66.011-61.313Q66.336-61.410 66.675-61.410Q67.140-61.410 67.437-61.203L67.660-61.387Q67.683-61.410 67.714-61.410L67.765-61.410Q67.796-61.410 67.824-61.383Q67.851-61.356 67.851-61.324L67.851-60.340Q67.851-60.309 67.826-60.280Q67.800-60.250 67.765-60.250L67.660-60.250Q67.625-60.250 67.597-60.278Q67.570-60.305 67.570-60.340Q67.570-60.739 67.318-60.959Q67.066-61.180 66.668-61.180Q66.312-61.180 66.029-61.057Q65.746-60.934 65.746-60.629Q65.746-60.410 65.947-60.278Q66.148-60.145 66.394-60.102L67.019-59.989Q67.449-59.899 67.757-59.602Q68.066-59.305 68.066-58.891Q68.066-58.321 67.668-58.043Q67.269-57.766 66.675-57.766Q66.125-57.766 65.773-58.102L65.476-57.789Q65.453-57.766 65.418-57.766L65.371-57.766Q65.347-57.766 65.316-57.797Q65.285-57.828 65.285-57.852\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M71.533-58.676Q71.533-59.160 71.935-59.455Q72.338-59.750 72.888-59.869Q73.439-59.989 73.931-59.989L73.931-60.278Q73.931-60.504 73.816-60.711Q73.701-60.918 73.504-61.037Q73.306-61.157 73.076-61.157Q72.650-61.157 72.365-61.051Q72.435-61.024 72.482-60.969Q72.529-60.914 72.554-60.844Q72.580-60.774 72.580-60.699Q72.580-60.594 72.529-60.502Q72.478-60.410 72.386-60.360Q72.295-60.309 72.189-60.309Q72.084-60.309 71.992-60.360Q71.900-60.410 71.849-60.502Q71.799-60.594 71.799-60.699Q71.799-61.117 72.187-61.264Q72.576-61.410 73.076-61.410Q73.408-61.410 73.761-61.280Q74.115-61.149 74.343-60.895Q74.572-60.641 74.572-60.293L74.572-58.492Q74.572-58.360 74.644-58.250Q74.717-58.141 74.845-58.141Q74.970-58.141 75.039-58.246Q75.107-58.352 75.107-58.492L75.107-59.004L75.388-59.004L75.388-58.492Q75.388-58.289 75.271-58.131Q75.154-57.973 74.972-57.889Q74.791-57.805 74.588-57.805Q74.357-57.805 74.205-57.977Q74.052-58.149 74.021-58.379Q73.861-58.098 73.552-57.932Q73.244-57.766 72.892-57.766Q72.381-57.766 71.957-57.989Q71.533-58.211 71.533-58.676M72.220-58.676Q72.220-58.391 72.447-58.205Q72.674-58.020 72.967-58.020Q73.213-58.020 73.437-58.137Q73.662-58.254 73.797-58.457Q73.931-58.660 73.931-58.914L73.931-59.746Q73.666-59.746 73.381-59.692Q73.095-59.637 72.824-59.508Q72.552-59.379 72.386-59.172Q72.220-58.965 72.220-58.676M76.306-58.805L76.306-60.996L75.603-60.996L75.603-61.250Q75.959-61.250 76.201-61.483Q76.443-61.715 76.554-62.063Q76.666-62.410 76.666-62.766L76.947-62.766L76.947-61.293L78.123-61.293L78.123-60.996L76.947-60.996L76.947-58.821Q76.947-58.500 77.066-58.272Q77.185-58.043 77.467-58.043Q77.646-58.043 77.763-58.166Q77.881-58.289 77.933-58.469Q77.986-58.649 77.986-58.821L77.986-59.293L78.267-59.293L78.267-58.805Q78.267-58.551 78.162-58.311Q78.056-58.071 77.859-57.918Q77.662-57.766 77.404-57.766Q77.088-57.766 76.836-57.889Q76.584-58.012 76.445-58.246Q76.306-58.481 76.306-58.805\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-35.029 6.528)\">\u003Cpath d=\"M84.320-57.844L81.938-57.844L81.938-58.141Q82.262-58.141 82.504-58.188Q82.746-58.235 82.746-58.403L82.746-62.746Q82.746-62.918 82.504-62.965Q82.262-63.012 81.938-63.012L81.938-63.309L84.883-63.309Q85.227-63.309 85.582-63.209Q85.938-63.110 86.232-62.918Q86.527-62.727 86.709-62.442Q86.891-62.157 86.891-61.797Q86.891-61.324 86.580-60.989Q86.270-60.653 85.805-60.481Q85.340-60.309 84.883-60.309L83.516-60.309L83.516-58.403Q83.516-58.235 83.758-58.188Q84-58.141 84.320-58.141L84.320-57.844M83.488-62.746L83.488-60.578L84.664-60.578Q85.352-60.578 85.690-60.854Q86.027-61.129 86.027-61.797Q86.027-62.461 85.690-62.737Q85.352-63.012 84.664-63.012L83.891-63.012Q83.672-63.012 83.580-62.969Q83.488-62.926 83.488-62.746M87.836-60.578Q87.836-61.172 88.068-61.703Q88.301-62.235 88.717-62.635Q89.133-63.035 89.666-63.256Q90.199-63.477 90.805-63.477Q91.242-63.477 91.641-63.295Q92.039-63.114 92.348-62.782L92.820-63.446Q92.852-63.477 92.883-63.477L92.930-63.477Q92.957-63.477 92.988-63.446Q93.020-63.414 93.020-63.387L93.020-61.250Q93.020-61.227 92.988-61.196Q92.957-61.164 92.930-61.164L92.813-61.164Q92.785-61.164 92.754-61.196Q92.723-61.227 92.723-61.250Q92.723-61.516 92.580-61.869Q92.438-62.223 92.258-62.461Q92.004-62.793 91.654-62.987Q91.305-63.180 90.898-63.180Q90.395-63.180 89.941-62.961Q89.488-62.742 89.195-62.348Q88.699-61.680 88.699-60.578Q88.699-60.047 88.836-59.580Q88.973-59.114 89.248-58.748Q89.523-58.383 89.943-58.178Q90.363-57.973 90.906-57.973Q91.395-57.973 91.818-58.217Q92.242-58.461 92.490-58.881Q92.738-59.301 92.738-59.797Q92.738-59.832 92.768-59.858Q92.797-59.883 92.828-59.883L92.930-59.883Q92.973-59.883 92.996-59.854Q93.020-59.824 93.020-59.782Q93.020-59.344 92.844-58.955Q92.668-58.567 92.357-58.283Q92.047-58 91.637-57.838Q91.227-57.676 90.805-57.676Q90.215-57.676 89.674-57.897Q89.133-58.117 88.717-58.522Q88.301-58.926 88.068-59.455Q87.836-59.985 87.836-60.578M94.141-55.844L94.059-55.844Q94.023-55.844 93.998-55.873Q93.973-55.903 93.973-55.942Q93.973-55.992 94.004-56.012Q94.391-56.348 94.674-56.797Q94.957-57.246 95.123-57.746Q95.289-58.246 95.363-58.764Q95.438-59.282 95.438-59.844Q95.438-60.414 95.363-60.930Q95.289-61.446 95.123-61.942Q94.957-62.438 94.678-62.885Q94.398-63.332 94.004-63.676Q93.973-63.696 93.973-63.746Q93.973-63.785 93.998-63.815Q94.023-63.844 94.059-63.844L94.141-63.844Q94.152-63.844 94.162-63.842Q94.172-63.840 94.180-63.836Q94.793-63.379 95.195-62.744Q95.598-62.110 95.793-61.364Q95.988-60.617 95.988-59.844Q95.988-59.071 95.793-58.324Q95.598-57.578 95.195-56.944Q94.793-56.309 94.180-55.852Q94.168-55.852 94.160-55.850Q94.152-55.848 94.141-55.844\" 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=\"M134.873-43.617h68.287V-72.07h-68.287Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(112.837 6.528)\">\u003Cpath d=\"M46.078-67.344L43.016-67.344L43.016-67.641Q43.340-67.641 43.582-67.688Q43.824-67.735 43.824-67.903L43.824-72.246Q43.824-72.418 43.582-72.465Q43.340-72.512 43.016-72.512L43.016-72.809L46.078-72.809Q46.629-72.809 47.107-72.582Q47.586-72.356 47.939-71.961Q48.293-71.567 48.482-71.067Q48.672-70.567 48.672-70.024Q48.672-69.317 48.328-68.699Q47.984-68.082 47.389-67.713Q46.793-67.344 46.078-67.344M44.566-72.246L44.566-67.903Q44.566-67.731 44.658-67.686Q44.750-67.641 44.969-67.641L45.863-67.641Q46.309-67.641 46.701-67.811Q47.094-67.981 47.365-68.305Q47.637-68.629 47.734-69.049Q47.832-69.469 47.832-70.024Q47.832-70.379 47.795-70.692Q47.758-71.004 47.652-71.299Q47.547-71.594 47.367-71.817Q47.184-72.051 46.945-72.201Q46.707-72.352 46.426-72.432Q46.144-72.512 45.863-72.512L44.969-72.512Q44.750-72.512 44.658-72.469Q44.566-72.426 44.566-72.246M49.391-69.098Q49.391-69.578 49.623-69.994Q49.855-70.410 50.266-70.660Q50.676-70.910 51.152-70.910Q51.883-70.910 52.281-70.469Q52.680-70.028 52.680-69.297Q52.680-69.192 52.586-69.168L50.137-69.168L50.137-69.098Q50.137-68.688 50.258-68.332Q50.379-67.977 50.650-67.760Q50.922-67.543 51.352-67.543Q51.715-67.543 52.012-67.772Q52.309-68 52.410-68.352Q52.418-68.399 52.504-68.414L52.586-68.414Q52.680-68.387 52.680-68.305Q52.680-68.297 52.672-68.266Q52.609-68.039 52.471-67.856Q52.332-67.672 52.141-67.539Q51.949-67.406 51.730-67.336Q51.512-67.266 51.273-67.266Q50.902-67.266 50.564-67.403Q50.227-67.539 49.959-67.791Q49.691-68.043 49.541-68.383Q49.391-68.723 49.391-69.098M50.144-69.406L52.105-69.406Q52.105-69.711 52.004-70.002Q51.902-70.293 51.685-70.475Q51.469-70.656 51.152-70.656Q50.852-70.656 50.621-70.469Q50.391-70.281 50.268-69.990Q50.144-69.699 50.144-69.406M53.211-69.071Q53.211-69.567 53.461-69.992Q53.711-70.418 54.131-70.664Q54.551-70.910 55.051-70.910Q55.590-70.910 55.980-70.785Q56.371-70.660 56.371-70.246Q56.371-70.141 56.320-70.049Q56.269-69.957 56.178-69.906Q56.086-69.856 55.977-69.856Q55.871-69.856 55.779-69.906Q55.687-69.957 55.637-70.049Q55.586-70.141 55.586-70.246Q55.586-70.469 55.754-70.574Q55.531-70.633 55.059-70.633Q54.762-70.633 54.547-70.494Q54.332-70.356 54.201-70.125Q54.070-69.895 54.012-69.625Q53.953-69.356 53.953-69.071Q53.953-68.676 54.086-68.326Q54.219-67.977 54.490-67.760Q54.762-67.543 55.160-67.543Q55.535-67.543 55.810-67.760Q56.086-67.977 56.187-68.336Q56.203-68.399 56.266-68.399L56.371-68.399Q56.406-68.399 56.432-68.371Q56.457-68.344 56.457-68.305L56.457-68.281Q56.324-67.801 55.939-67.533Q55.555-67.266 55.051-67.266Q54.687-67.266 54.353-67.403Q54.019-67.539 53.760-67.789Q53.500-68.039 53.355-68.375Q53.211-68.711 53.211-69.071M56.945-69.039Q56.945-69.543 57.201-69.975Q57.457-70.406 57.893-70.658Q58.328-70.910 58.828-70.910Q59.215-70.910 59.557-70.766Q59.898-70.621 60.160-70.360Q60.422-70.098 60.564-69.762Q60.707-69.426 60.707-69.039Q60.707-68.547 60.443-68.137Q60.180-67.727 59.750-67.496Q59.320-67.266 58.828-67.266Q58.336-67.266 57.902-67.498Q57.469-67.731 57.207-68.139Q56.945-68.547 56.945-69.039M58.828-67.543Q59.285-67.543 59.537-67.766Q59.789-67.989 59.877-68.340Q59.965-68.692 59.965-69.137Q59.965-69.567 59.871-69.905Q59.777-70.242 59.523-70.449Q59.269-70.656 58.828-70.656Q58.180-70.656 57.935-70.240Q57.691-69.824 57.691-69.137Q57.691-68.692 57.779-68.340Q57.867-67.989 58.119-67.766Q58.371-67.543 58.828-67.543\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(112.837 6.528)\">\u003Cpath d=\"M63.250-67.266Q62.769-67.266 62.361-67.510Q61.953-67.754 61.715-68.168Q61.476-68.582 61.476-69.071Q61.476-69.563 61.734-69.979Q61.992-70.395 62.424-70.633Q62.855-70.871 63.347-70.871Q63.968-70.871 64.418-70.434L64.418-72.063Q64.418-72.278 64.355-72.373Q64.293-72.469 64.175-72.490Q64.058-72.512 63.812-72.512L63.812-72.809L65.035-72.895L65.035-68.086Q65.035-67.875 65.097-67.780Q65.160-67.684 65.277-67.662Q65.394-67.641 65.644-67.641L65.644-67.344L64.394-67.266L64.394-67.750Q63.929-67.266 63.250-67.266M63.316-67.520Q63.656-67.520 63.949-67.711Q64.242-67.903 64.394-68.199L64.394-70.031Q64.246-70.305 63.984-70.461Q63.722-70.617 63.410-70.617Q62.785-70.617 62.502-70.170Q62.218-69.723 62.218-69.063Q62.218-68.418 62.470-67.969Q62.722-67.520 63.316-67.520M66.152-69.098Q66.152-69.578 66.384-69.994Q66.617-70.410 67.027-70.660Q67.437-70.910 67.914-70.910Q68.644-70.910 69.043-70.469Q69.441-70.028 69.441-69.297Q69.441-69.192 69.347-69.168L66.898-69.168L66.898-69.098Q66.898-68.688 67.019-68.332Q67.140-67.977 67.412-67.760Q67.683-67.543 68.113-67.543Q68.476-67.543 68.773-67.772Q69.070-68 69.172-68.352Q69.179-68.399 69.265-68.414L69.347-68.414Q69.441-68.387 69.441-68.305Q69.441-68.297 69.433-68.266Q69.371-68.039 69.232-67.856Q69.093-67.672 68.902-67.539Q68.711-67.406 68.492-67.336Q68.273-67.266 68.035-67.266Q67.664-67.266 67.326-67.403Q66.988-67.539 66.720-67.791Q66.453-68.043 66.302-68.383Q66.152-68.723 66.152-69.098M66.906-69.406L68.867-69.406Q68.867-69.711 68.765-70.002Q68.664-70.293 68.447-70.475Q68.230-70.656 67.914-70.656Q67.613-70.656 67.382-70.469Q67.152-70.281 67.029-69.990Q66.906-69.699 66.906-69.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(112.837 6.528)\">\u003Cpath d=\"M29.370-55.852Q28.757-56.309 28.355-56.944Q27.952-57.578 27.757-58.324Q27.562-59.071 27.562-59.844Q27.562-60.617 27.757-61.364Q27.952-62.110 28.355-62.744Q28.757-63.379 29.370-63.836Q29.382-63.840 29.390-63.842Q29.398-63.844 29.409-63.844L29.487-63.844Q29.526-63.844 29.552-63.817Q29.577-63.789 29.577-63.746Q29.577-63.696 29.546-63.676Q29.038-63.223 28.716-62.600Q28.394-61.977 28.253-61.282Q28.112-60.586 28.112-59.844Q28.112-59.110 28.251-58.410Q28.390-57.711 28.714-57.086Q29.038-56.461 29.546-56.012Q29.577-55.992 29.577-55.942Q29.577-55.899 29.552-55.871Q29.526-55.844 29.487-55.844L29.409-55.844Q29.401-55.848 29.392-55.850Q29.382-55.852 29.370-55.852M32.304-57.844L30.323-57.844L30.323-58.141Q30.593-58.141 30.761-58.186Q30.929-58.231 30.929-58.403L30.929-60.539Q30.929-60.754 30.866-60.850Q30.804-60.946 30.687-60.967Q30.569-60.989 30.323-60.989L30.323-61.285L31.491-61.371L31.491-60.586Q31.569-60.797 31.722-60.983Q31.874-61.168 32.073-61.270Q32.273-61.371 32.499-61.371Q32.745-61.371 32.937-61.227Q33.128-61.082 33.128-60.852Q33.128-60.696 33.023-60.586Q32.917-60.477 32.761-60.477Q32.605-60.477 32.495-60.586Q32.386-60.696 32.386-60.852Q32.386-61.012 32.491-61.117Q32.167-61.117 31.952-60.889Q31.737-60.660 31.642-60.321Q31.546-59.981 31.546-59.676L31.546-58.403Q31.546-58.235 31.773-58.188Q31.999-58.141 32.304-58.141L32.304-57.844M33.608-59.598Q33.608-60.078 33.841-60.494Q34.073-60.910 34.483-61.160Q34.894-61.410 35.370-61.410Q36.101-61.410 36.499-60.969Q36.898-60.528 36.898-59.797Q36.898-59.692 36.804-59.668L34.355-59.668L34.355-59.598Q34.355-59.188 34.476-58.832Q34.597-58.477 34.868-58.260Q35.140-58.043 35.569-58.043Q35.933-58.043 36.230-58.272Q36.526-58.500 36.628-58.852Q36.636-58.899 36.722-58.914L36.804-58.914Q36.898-58.887 36.898-58.805Q36.898-58.797 36.890-58.766Q36.827-58.539 36.689-58.356Q36.550-58.172 36.358-58.039Q36.167-57.907 35.948-57.836Q35.730-57.766 35.491-57.766Q35.120-57.766 34.782-57.903Q34.444-58.039 34.177-58.291Q33.909-58.543 33.759-58.883Q33.608-59.223 33.608-59.598M34.362-59.907L36.323-59.907Q36.323-60.211 36.222-60.502Q36.120-60.793 35.903-60.975Q35.687-61.157 35.370-61.157Q35.069-61.157 34.839-60.969Q34.608-60.782 34.485-60.490Q34.362-60.199 34.362-59.907M37.483-58.676Q37.483-59.160 37.886-59.455Q38.288-59.750 38.839-59.869Q39.390-59.989 39.882-59.989L39.882-60.278Q39.882-60.504 39.767-60.711Q39.651-60.918 39.454-61.037Q39.257-61.157 39.026-61.157Q38.601-61.157 38.316-61.051Q38.386-61.024 38.433-60.969Q38.480-60.914 38.505-60.844Q38.530-60.774 38.530-60.699Q38.530-60.594 38.480-60.502Q38.429-60.410 38.337-60.360Q38.245-60.309 38.140-60.309Q38.034-60.309 37.942-60.360Q37.851-60.410 37.800-60.502Q37.749-60.594 37.749-60.699Q37.749-61.117 38.138-61.264Q38.526-61.410 39.026-61.410Q39.358-61.410 39.712-61.280Q40.066-61.149 40.294-60.895Q40.523-60.641 40.523-60.293L40.523-58.492Q40.523-58.360 40.595-58.250Q40.667-58.141 40.796-58.141Q40.921-58.141 40.989-58.246Q41.058-58.352 41.058-58.492L41.058-59.004L41.339-59.004L41.339-58.492Q41.339-58.289 41.222-58.131Q41.105-57.973 40.923-57.889Q40.741-57.805 40.538-57.805Q40.308-57.805 40.155-57.977Q40.003-58.149 39.972-58.379Q39.812-58.098 39.503-57.932Q39.194-57.766 38.843-57.766Q38.331-57.766 37.907-57.989Q37.483-58.211 37.483-58.676M38.171-58.676Q38.171-58.391 38.398-58.205Q38.624-58.020 38.917-58.020Q39.163-58.020 39.388-58.137Q39.612-58.254 39.747-58.457Q39.882-58.660 39.882-58.914L39.882-59.746Q39.616-59.746 39.331-59.692Q39.046-59.637 38.774-59.508Q38.503-59.379 38.337-59.172Q38.171-58.965 38.171-58.676M43.448-57.766Q42.968-57.766 42.560-58.010Q42.151-58.254 41.913-58.668Q41.675-59.082 41.675-59.571Q41.675-60.063 41.933-60.479Q42.191-60.895 42.622-61.133Q43.054-61.371 43.546-61.371Q44.167-61.371 44.616-60.934L44.616-62.563Q44.616-62.778 44.554-62.873Q44.491-62.969 44.374-62.990Q44.257-63.012 44.011-63.012L44.011-63.309L45.233-63.395L45.233-58.586Q45.233-58.375 45.296-58.280Q45.358-58.184 45.476-58.162Q45.593-58.141 45.843-58.141L45.843-57.844L44.593-57.766L44.593-58.250Q44.128-57.766 43.448-57.766M43.515-58.020Q43.855-58.020 44.148-58.211Q44.441-58.403 44.593-58.699L44.593-60.532Q44.444-60.805 44.183-60.961Q43.921-61.117 43.608-61.117Q42.983-61.117 42.700-60.670Q42.417-60.223 42.417-59.563Q42.417-58.918 42.669-58.469Q42.921-58.020 43.515-58.020\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(112.837 6.528)\">\u003Cpath d=\"M49.193-59.539Q49.193-60.043 49.449-60.475Q49.705-60.907 50.141-61.158Q50.576-61.410 51.076-61.410Q51.463-61.410 51.805-61.266Q52.146-61.121 52.408-60.860Q52.670-60.598 52.812-60.262Q52.955-59.926 52.955-59.539Q52.955-59.047 52.691-58.637Q52.428-58.227 51.998-57.996Q51.568-57.766 51.076-57.766Q50.584-57.766 50.150-57.998Q49.717-58.231 49.455-58.639Q49.193-59.047 49.193-59.539M51.076-58.043Q51.533-58.043 51.785-58.266Q52.037-58.489 52.125-58.840Q52.213-59.192 52.213-59.637Q52.213-60.067 52.119-60.405Q52.025-60.742 51.771-60.949Q51.517-61.157 51.076-61.157Q50.428-61.157 50.184-60.740Q49.939-60.324 49.939-59.637Q49.939-59.192 50.027-58.840Q50.115-58.489 50.367-58.266Q50.619-58.043 51.076-58.043M55.322-56.293L53.467-56.293L53.467-56.586Q53.736-56.586 53.904-56.631Q54.072-56.676 54.072-56.852L54.072-60.676Q54.072-60.883 53.916-60.936Q53.760-60.989 53.467-60.989L53.467-61.285L54.689-61.371L54.689-60.907Q54.920-61.129 55.234-61.250Q55.549-61.371 55.889-61.371Q56.361-61.371 56.766-61.125Q57.170-60.879 57.402-60.463Q57.635-60.047 57.635-59.571Q57.635-59.196 57.486-58.867Q57.338-58.539 57.068-58.287Q56.799-58.035 56.455-57.901Q56.111-57.766 55.752-57.766Q55.463-57.766 55.191-57.887Q54.920-58.008 54.713-58.219L54.713-56.852Q54.713-56.676 54.881-56.631Q55.049-56.586 55.322-56.586L55.322-56.293M54.713-60.508L54.713-58.668Q54.865-58.379 55.127-58.199Q55.389-58.020 55.697-58.020Q55.982-58.020 56.205-58.158Q56.428-58.297 56.580-58.528Q56.732-58.758 56.810-59.030Q56.889-59.301 56.889-59.571Q56.889-59.903 56.764-60.260Q56.639-60.617 56.391-60.854Q56.142-61.090 55.795-61.090Q55.471-61.090 55.176-60.934Q54.881-60.778 54.713-60.508\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(112.837 6.528)\">\u003Cpath d=\"M58.401-59.598Q58.401-60.078 58.634-60.494Q58.866-60.910 59.276-61.160Q59.686-61.410 60.163-61.410Q60.893-61.410 61.292-60.969Q61.690-60.528 61.690-59.797Q61.690-59.692 61.597-59.668L59.147-59.668L59.147-59.598Q59.147-59.188 59.268-58.832Q59.390-58.477 59.661-58.260Q59.933-58.043 60.362-58.043Q60.725-58.043 61.022-58.272Q61.319-58.500 61.421-58.852Q61.429-58.899 61.515-58.914L61.597-58.914Q61.690-58.887 61.690-58.805Q61.690-58.797 61.683-58.766Q61.620-58.539 61.481-58.356Q61.343-58.172 61.151-58.039Q60.960-57.907 60.741-57.836Q60.522-57.766 60.284-57.766Q59.913-57.766 59.575-57.903Q59.237-58.039 58.970-58.291Q58.702-58.543 58.552-58.883Q58.401-59.223 58.401-59.598M59.155-59.907L61.116-59.907Q61.116-60.211 61.015-60.502Q60.913-60.793 60.696-60.975Q60.479-61.157 60.163-61.157Q59.862-61.157 59.632-60.969Q59.401-60.782 59.278-60.490Q59.155-60.199 59.155-59.907M64.186-57.844L62.206-57.844L62.206-58.141Q62.475-58.141 62.643-58.186Q62.811-58.231 62.811-58.403L62.811-60.539Q62.811-60.754 62.749-60.850Q62.686-60.946 62.569-60.967Q62.452-60.989 62.206-60.989L62.206-61.285L63.374-61.371L63.374-60.586Q63.452-60.797 63.604-60.983Q63.757-61.168 63.956-61.270Q64.155-61.371 64.382-61.371Q64.628-61.371 64.819-61.227Q65.011-61.082 65.011-60.852Q65.011-60.696 64.905-60.586Q64.800-60.477 64.643-60.477Q64.487-60.477 64.378-60.586Q64.268-60.696 64.268-60.852Q64.268-61.012 64.374-61.117Q64.050-61.117 63.835-60.889Q63.620-60.660 63.524-60.321Q63.429-59.981 63.429-59.676L63.429-58.403Q63.429-58.235 63.655-58.188Q63.882-58.141 64.186-58.141L64.186-57.844M65.589-58.676Q65.589-59.160 65.991-59.455Q66.393-59.750 66.944-59.869Q67.495-59.989 67.987-59.989L67.987-60.278Q67.987-60.504 67.872-60.711Q67.757-60.918 67.559-61.037Q67.362-61.157 67.132-61.157Q66.706-61.157 66.421-61.051Q66.491-61.024 66.538-60.969Q66.585-60.914 66.610-60.844Q66.636-60.774 66.636-60.699Q66.636-60.594 66.585-60.502Q66.534-60.410 66.442-60.360Q66.350-60.309 66.245-60.309Q66.140-60.309 66.048-60.360Q65.956-60.410 65.905-60.502Q65.854-60.594 65.854-60.699Q65.854-61.117 66.243-61.264Q66.632-61.410 67.132-61.410Q67.464-61.410 67.817-61.280Q68.171-61.149 68.399-60.895Q68.628-60.641 68.628-60.293L68.628-58.492Q68.628-58.360 68.700-58.250Q68.772-58.141 68.901-58.141Q69.026-58.141 69.095-58.246Q69.163-58.352 69.163-58.492L69.163-59.004L69.444-59.004L69.444-58.492Q69.444-58.289 69.327-58.131Q69.210-57.973 69.028-57.889Q68.847-57.805 68.643-57.805Q68.413-57.805 68.261-57.977Q68.108-58.149 68.077-58.379Q67.917-58.098 67.608-57.932Q67.300-57.766 66.948-57.766Q66.436-57.766 66.013-57.989Q65.589-58.211 65.589-58.676M66.276-58.676Q66.276-58.391 66.503-58.205Q66.729-58.020 67.022-58.020Q67.268-58.020 67.493-58.137Q67.718-58.254 67.852-58.457Q67.987-58.660 67.987-58.914L67.987-59.746Q67.722-59.746 67.436-59.692Q67.151-59.637 66.880-59.508Q66.608-59.379 66.442-59.172Q66.276-58.965 66.276-58.676M71.667-57.844L69.811-57.844L69.811-58.141Q70.085-58.141 70.253-58.188Q70.421-58.235 70.421-58.403L70.421-60.539Q70.421-60.754 70.358-60.850Q70.296-60.946 70.177-60.967Q70.058-60.989 69.811-60.989L69.811-61.285L71.003-61.371L71.003-60.637Q71.116-60.852 71.309-61.020Q71.503-61.188 71.741-61.280Q71.979-61.371 72.233-61.371Q73.401-61.371 73.401-60.293L73.401-58.403Q73.401-58.235 73.571-58.188Q73.741-58.141 74.011-58.141L74.011-57.844L72.155-57.844L72.155-58.141Q72.429-58.141 72.597-58.188Q72.765-58.235 72.765-58.403L72.765-60.278Q72.765-60.660 72.643-60.889Q72.522-61.117 72.171-61.117Q71.858-61.117 71.604-60.955Q71.350-60.793 71.204-60.524Q71.058-60.254 71.058-59.957L71.058-58.403Q71.058-58.235 71.227-58.188Q71.397-58.141 71.667-58.141L71.667-57.844M76.272-57.766Q75.792-57.766 75.384-58.010Q74.975-58.254 74.737-58.668Q74.499-59.082 74.499-59.571Q74.499-60.063 74.757-60.479Q75.015-60.895 75.446-61.133Q75.878-61.371 76.370-61.371Q76.991-61.371 77.440-60.934L77.440-62.563Q77.440-62.778 77.378-62.873Q77.315-62.969 77.198-62.990Q77.081-63.012 76.835-63.012L76.835-63.309L78.058-63.395L78.058-58.586Q78.058-58.375 78.120-58.280Q78.183-58.184 78.300-58.162Q78.417-58.141 78.667-58.141L78.667-57.844L77.417-57.766L77.417-58.250Q76.952-57.766 76.272-57.766M76.339-58.020Q76.679-58.020 76.972-58.211Q77.265-58.403 77.417-58.699L77.417-60.532Q77.268-60.805 77.007-60.961Q76.745-61.117 76.433-61.117Q75.808-61.117 75.524-60.670Q75.241-60.223 75.241-59.563Q75.241-58.918 75.493-58.469Q75.745-58.020 76.339-58.020M79.218-57.852L79.218-59.074Q79.218-59.102 79.249-59.133Q79.280-59.164 79.304-59.164L79.409-59.164Q79.479-59.164 79.495-59.102Q79.558-58.782 79.696-58.541Q79.835-58.301 80.067-58.160Q80.300-58.020 80.608-58.020Q80.847-58.020 81.056-58.080Q81.265-58.141 81.401-58.289Q81.538-58.438 81.538-58.684Q81.538-58.938 81.327-59.104Q81.116-59.270 80.847-59.324L80.225-59.438Q79.819-59.516 79.518-59.772Q79.218-60.028 79.218-60.403Q79.218-60.770 79.419-60.992Q79.620-61.215 79.944-61.313Q80.268-61.410 80.608-61.410Q81.073-61.410 81.370-61.203L81.593-61.387Q81.616-61.410 81.647-61.410L81.698-61.410Q81.729-61.410 81.757-61.383Q81.784-61.356 81.784-61.324L81.784-60.340Q81.784-60.309 81.759-60.280Q81.733-60.250 81.698-60.250L81.593-60.250Q81.558-60.250 81.530-60.278Q81.503-60.305 81.503-60.340Q81.503-60.739 81.251-60.959Q80.999-61.180 80.600-61.180Q80.245-61.180 79.962-61.057Q79.679-60.934 79.679-60.629Q79.679-60.410 79.880-60.278Q80.081-60.145 80.327-60.102L80.952-59.989Q81.382-59.899 81.690-59.602Q81.999-59.305 81.999-58.891Q81.999-58.321 81.600-58.043Q81.202-57.766 80.608-57.766Q80.058-57.766 79.706-58.102L79.409-57.789Q79.386-57.766 79.350-57.766L79.304-57.766Q79.280-57.766 79.249-57.797Q79.218-57.828 79.218-57.852M82.929-55.844L82.847-55.844Q82.811-55.844 82.786-55.873Q82.761-55.903 82.761-55.942Q82.761-55.992 82.792-56.012Q83.179-56.348 83.462-56.797Q83.745-57.246 83.911-57.746Q84.077-58.246 84.151-58.764Q84.225-59.282 84.225-59.844Q84.225-60.414 84.151-60.930Q84.077-61.446 83.911-61.942Q83.745-62.438 83.466-62.885Q83.186-63.332 82.792-63.676Q82.761-63.696 82.761-63.746Q82.761-63.785 82.786-63.815Q82.811-63.844 82.847-63.844L82.929-63.844Q82.940-63.844 82.950-63.842Q82.960-63.840 82.968-63.836Q83.581-63.379 83.983-62.744Q84.386-62.110 84.581-61.364Q84.776-60.617 84.776-59.844Q84.776-59.071 84.581-58.324Q84.386-57.578 83.983-56.944Q83.581-56.309 82.968-55.852Q82.956-55.852 82.948-55.850Q82.940-55.848 82.929-55.844\" 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=\"M133.96 24.67h70.113V-3.785H133.96Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(109.208 74.77)\">\u003Cpath d=\"M50.179-67.344L45.331-67.344L45.331-67.641Q45.651-67.641 45.895-67.688Q46.140-67.735 46.140-67.903L46.140-72.246Q46.140-72.418 45.895-72.465Q45.651-72.512 45.331-72.512L45.331-72.809L50.065-72.809L50.300-70.961L50.018-70.961Q49.936-71.656 49.761-71.977Q49.585-72.297 49.237-72.405Q48.890-72.512 48.171-72.512L47.307-72.512Q47.089-72.512 46.997-72.469Q46.905-72.426 46.905-72.246L46.905-70.328L47.538-70.328Q47.964-70.328 48.171-70.391Q48.378-70.453 48.466-70.649Q48.554-70.844 48.554-71.266L48.835-71.266L48.835-69.098L48.554-69.098Q48.554-69.520 48.466-69.713Q48.378-69.906 48.171-69.969Q47.964-70.031 47.538-70.031L46.905-70.031L46.905-67.903Q46.905-67.731 46.997-67.686Q47.089-67.641 47.307-67.641L48.233-67.641Q48.815-67.641 49.169-67.723Q49.522-67.805 49.727-68.002Q49.932-68.199 50.046-68.537Q50.159-68.875 50.253-69.457L50.530-69.457L50.179-67.344M52.397-67.344L50.901-67.344L50.901-67.641Q51.534-67.641 51.956-68.121L52.725-69.031L51.733-70.231Q51.577-70.410 51.415-70.453Q51.253-70.496 50.948-70.496L50.948-70.793L52.636-70.793L52.636-70.496Q52.542-70.496 52.466-70.453Q52.390-70.410 52.390-70.321Q52.390-70.278 52.421-70.231L53.077-69.442L53.557-70.016Q53.675-70.153 53.675-70.289Q53.675-70.379 53.624-70.438Q53.573-70.496 53.491-70.496L53.491-70.793L54.979-70.793L54.979-70.496Q54.343-70.496 53.932-70.016L53.253-69.215L54.339-67.903Q54.499-67.727 54.659-67.684Q54.819-67.641 55.124-67.641L55.124-67.344L53.436-67.344L53.436-67.641Q53.526-67.641 53.604-67.684Q53.682-67.727 53.682-67.817Q53.682-67.840 53.651-67.903L52.909-68.809L52.323-68.121Q52.206-67.985 52.206-67.848Q52.206-67.762 52.257-67.701Q52.307-67.641 52.397-67.641L52.397-67.344M55.491-69.098Q55.491-69.578 55.724-69.994Q55.956-70.410 56.366-70.660Q56.776-70.910 57.253-70.910Q57.983-70.910 58.382-70.469Q58.780-70.028 58.780-69.297Q58.780-69.192 58.686-69.168L56.237-69.168L56.237-69.098Q56.237-68.688 56.358-68.332Q56.479-67.977 56.751-67.760Q57.022-67.543 57.452-67.543Q57.815-67.543 58.112-67.772Q58.409-68 58.511-68.352Q58.518-68.399 58.604-68.414L58.686-68.414Q58.780-68.387 58.780-68.305Q58.780-68.297 58.772-68.266Q58.710-68.039 58.571-67.856Q58.432-67.672 58.241-67.539Q58.050-67.406 57.831-67.336Q57.612-67.266 57.374-67.266Q57.003-67.266 56.665-67.403Q56.327-67.539 56.059-67.791Q55.792-68.043 55.641-68.383Q55.491-68.723 55.491-69.098M56.245-69.406L58.206-69.406Q58.206-69.711 58.104-70.002Q58.003-70.293 57.786-70.475Q57.569-70.656 57.253-70.656Q56.952-70.656 56.722-70.469Q56.491-70.281 56.368-69.990Q56.245-69.699 56.245-69.406M59.311-69.071Q59.311-69.567 59.561-69.992Q59.811-70.418 60.231-70.664Q60.651-70.910 61.151-70.910Q61.690-70.910 62.081-70.785Q62.472-70.660 62.472-70.246Q62.472-70.141 62.421-70.049Q62.370-69.957 62.278-69.906Q62.186-69.856 62.077-69.856Q61.972-69.856 61.880-69.906Q61.788-69.957 61.737-70.049Q61.686-70.141 61.686-70.246Q61.686-70.469 61.854-70.574Q61.632-70.633 61.159-70.633Q60.862-70.633 60.647-70.494Q60.432-70.356 60.302-70.125Q60.171-69.895 60.112-69.625Q60.054-69.356 60.054-69.071Q60.054-68.676 60.186-68.326Q60.319-67.977 60.591-67.760Q60.862-67.543 61.261-67.543Q61.636-67.543 61.911-67.760Q62.186-67.977 62.288-68.336Q62.304-68.399 62.366-68.399L62.472-68.399Q62.507-68.399 62.532-68.371Q62.557-68.344 62.557-68.305L62.557-68.281Q62.425-67.801 62.040-67.533Q61.655-67.266 61.151-67.266Q60.788-67.266 60.454-67.403Q60.120-67.539 59.860-67.789Q59.600-68.039 59.456-68.375Q59.311-68.711 59.311-69.071M63.729-68.297L63.729-70.039Q63.729-70.254 63.667-70.350Q63.604-70.446 63.485-70.467Q63.366-70.489 63.120-70.489L63.120-70.785L64.366-70.871L64.366-68.321L64.366-68.297Q64.366-67.985 64.421-67.823Q64.475-67.660 64.626-67.590Q64.776-67.520 65.097-67.520Q65.526-67.520 65.800-67.858Q66.073-68.196 66.073-68.641L66.073-70.039Q66.073-70.254 66.011-70.350Q65.948-70.446 65.829-70.467Q65.710-70.489 65.464-70.489L65.464-70.785L66.710-70.871L66.710-68.086Q66.710-67.875 66.772-67.780Q66.835-67.684 66.954-67.662Q67.073-67.641 67.319-67.641L67.319-67.344L66.097-67.266L66.097-67.887Q65.929-67.598 65.647-67.432Q65.366-67.266 65.046-67.266Q63.729-67.266 63.729-68.297M68.390-68.305L68.390-70.496L67.686-70.496L67.686-70.750Q68.042-70.750 68.284-70.983Q68.526-71.215 68.638-71.563Q68.749-71.910 68.749-72.266L69.030-72.266L69.030-70.793L70.206-70.793L70.206-70.496L69.030-70.496L69.030-68.321Q69.030-68 69.149-67.772Q69.268-67.543 69.550-67.543Q69.729-67.543 69.847-67.666Q69.964-67.789 70.016-67.969Q70.069-68.149 70.069-68.321L70.069-68.793L70.350-68.793L70.350-68.305Q70.350-68.051 70.245-67.811Q70.140-67.571 69.942-67.418Q69.745-67.266 69.487-67.266Q69.171-67.266 68.919-67.389Q68.667-67.512 68.528-67.746Q68.390-67.981 68.390-68.305M71.069-69.098Q71.069-69.578 71.302-69.994Q71.534-70.410 71.944-70.660Q72.354-70.910 72.831-70.910Q73.561-70.910 73.960-70.469Q74.358-70.028 74.358-69.297Q74.358-69.192 74.265-69.168L71.815-69.168L71.815-69.098Q71.815-68.688 71.936-68.332Q72.058-67.977 72.329-67.760Q72.600-67.543 73.030-67.543Q73.393-67.543 73.690-67.772Q73.987-68 74.089-68.352Q74.097-68.399 74.183-68.414L74.265-68.414Q74.358-68.387 74.358-68.305Q74.358-68.297 74.350-68.266Q74.288-68.039 74.149-67.856Q74.011-67.672 73.819-67.539Q73.628-67.406 73.409-67.336Q73.190-67.266 72.952-67.266Q72.581-67.266 72.243-67.403Q71.905-67.539 71.638-67.791Q71.370-68.043 71.220-68.383Q71.069-68.723 71.069-69.098M71.823-69.406L73.784-69.406Q73.784-69.711 73.683-70.002Q73.581-70.293 73.364-70.475Q73.147-70.656 72.831-70.656Q72.530-70.656 72.300-70.469Q72.069-70.281 71.946-69.990Q71.823-69.699 71.823-69.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(109.208 74.77)\">\u003Cpath d=\"M29.370-55.852Q28.757-56.309 28.355-56.944Q27.952-57.578 27.757-58.324Q27.562-59.071 27.562-59.844Q27.562-60.617 27.757-61.364Q27.952-62.110 28.355-62.744Q28.757-63.379 29.370-63.836Q29.382-63.840 29.390-63.842Q29.398-63.844 29.409-63.844L29.487-63.844Q29.526-63.844 29.552-63.817Q29.577-63.789 29.577-63.746Q29.577-63.696 29.546-63.676Q29.038-63.223 28.716-62.600Q28.394-61.977 28.253-61.282Q28.112-60.586 28.112-59.844Q28.112-59.110 28.251-58.410Q28.390-57.711 28.714-57.086Q29.038-56.461 29.546-56.012Q29.577-55.992 29.577-55.942Q29.577-55.899 29.552-55.871Q29.526-55.844 29.487-55.844L29.409-55.844Q29.401-55.848 29.392-55.850Q29.382-55.852 29.370-55.852M30.339-59.571Q30.339-60.067 30.589-60.492Q30.839-60.918 31.259-61.164Q31.679-61.410 32.179-61.410Q32.718-61.410 33.108-61.285Q33.499-61.160 33.499-60.746Q33.499-60.641 33.448-60.549Q33.398-60.457 33.306-60.407Q33.214-60.356 33.105-60.356Q32.999-60.356 32.907-60.407Q32.816-60.457 32.765-60.549Q32.714-60.641 32.714-60.746Q32.714-60.969 32.882-61.074Q32.659-61.133 32.187-61.133Q31.890-61.133 31.675-60.994Q31.460-60.856 31.329-60.625Q31.198-60.395 31.140-60.125Q31.081-59.856 31.081-59.571Q31.081-59.176 31.214-58.826Q31.347-58.477 31.618-58.260Q31.890-58.043 32.288-58.043Q32.663-58.043 32.939-58.260Q33.214-58.477 33.316-58.836Q33.331-58.899 33.394-58.899L33.499-58.899Q33.534-58.899 33.560-58.871Q33.585-58.844 33.585-58.805L33.585-58.782Q33.452-58.301 33.067-58.033Q32.683-57.766 32.179-57.766Q31.816-57.766 31.482-57.903Q31.148-58.039 30.888-58.289Q30.628-58.539 30.483-58.875Q30.339-59.211 30.339-59.571M34.073-59.539Q34.073-60.043 34.329-60.475Q34.585-60.907 35.021-61.158Q35.456-61.410 35.956-61.410Q36.343-61.410 36.685-61.266Q37.026-61.121 37.288-60.860Q37.550-60.598 37.692-60.262Q37.835-59.926 37.835-59.539Q37.835-59.047 37.571-58.637Q37.308-58.227 36.878-57.996Q36.448-57.766 35.956-57.766Q35.464-57.766 35.030-57.998Q34.597-58.231 34.335-58.639Q34.073-59.047 34.073-59.539M35.956-58.043Q36.413-58.043 36.665-58.266Q36.917-58.489 37.005-58.840Q37.093-59.192 37.093-59.637Q37.093-60.067 36.999-60.405Q36.905-60.742 36.651-60.949Q36.398-61.157 35.956-61.157Q35.308-61.157 35.064-60.740Q34.819-60.324 34.819-59.637Q34.819-59.192 34.907-58.840Q34.995-58.489 35.247-58.266Q35.499-58.043 35.956-58.043M40.249-57.844L38.394-57.844L38.394-58.141Q38.667-58.141 38.835-58.188Q39.003-58.235 39.003-58.403L39.003-60.539Q39.003-60.754 38.941-60.850Q38.878-60.946 38.759-60.967Q38.640-60.989 38.394-60.989L38.394-61.285L39.585-61.371L39.585-60.637Q39.698-60.852 39.892-61.020Q40.085-61.188 40.323-61.280Q40.562-61.371 40.816-61.371Q41.776-61.371 41.952-60.660Q42.136-60.989 42.464-61.180Q42.792-61.371 43.171-61.371Q44.347-61.371 44.347-60.293L44.347-58.403Q44.347-58.235 44.515-58.188Q44.683-58.141 44.952-58.141L44.952-57.844L43.097-57.844L43.097-58.141Q43.370-58.141 43.538-58.186Q43.706-58.231 43.706-58.403L43.706-60.278Q43.706-60.664 43.581-60.891Q43.456-61.117 43.105-61.117Q42.800-61.117 42.544-60.955Q42.288-60.793 42.140-60.524Q41.991-60.254 41.991-59.957L41.991-58.403Q41.991-58.235 42.161-58.188Q42.331-58.141 42.601-58.141L42.601-57.844L40.745-57.844L40.745-58.141Q41.019-58.141 41.187-58.188Q41.355-58.235 41.355-58.403L41.355-60.278Q41.355-60.664 41.230-60.891Q41.105-61.117 40.753-61.117Q40.448-61.117 40.192-60.955Q39.937-60.793 39.788-60.524Q39.640-60.254 39.640-59.957L39.640-58.403Q39.640-58.235 39.810-58.188Q39.980-58.141 40.249-58.141L40.249-57.844M47.280-56.293L45.425-56.293L45.425-56.586Q45.694-56.586 45.862-56.631Q46.030-56.676 46.030-56.852L46.030-60.676Q46.030-60.883 45.874-60.936Q45.718-60.989 45.425-60.989L45.425-61.285L46.648-61.371L46.648-60.907Q46.878-61.129 47.192-61.250Q47.507-61.371 47.847-61.371Q48.319-61.371 48.724-61.125Q49.128-60.879 49.360-60.463Q49.593-60.047 49.593-59.571Q49.593-59.196 49.444-58.867Q49.296-58.539 49.026-58.287Q48.757-58.035 48.413-57.901Q48.069-57.766 47.710-57.766Q47.421-57.766 47.149-57.887Q46.878-58.008 46.671-58.219L46.671-56.852Q46.671-56.676 46.839-56.631Q47.007-56.586 47.280-56.586L47.280-56.293M46.671-60.508L46.671-58.668Q46.823-58.379 47.085-58.199Q47.347-58.020 47.655-58.020Q47.941-58.020 48.163-58.158Q48.386-58.297 48.538-58.528Q48.691-58.758 48.769-59.030Q48.847-59.301 48.847-59.571Q48.847-59.903 48.722-60.260Q48.597-60.617 48.349-60.854Q48.101-61.090 47.753-61.090Q47.429-61.090 47.134-60.934Q46.839-60.778 46.671-60.508M50.800-58.797L50.800-60.539Q50.800-60.754 50.737-60.850Q50.675-60.946 50.556-60.967Q50.437-60.989 50.191-60.989L50.191-61.285L51.437-61.371L51.437-58.821L51.437-58.797Q51.437-58.485 51.491-58.323Q51.546-58.160 51.696-58.090Q51.847-58.020 52.167-58.020Q52.597-58.020 52.870-58.358Q53.144-58.696 53.144-59.141L53.144-60.539Q53.144-60.754 53.081-60.850Q53.019-60.946 52.899-60.967Q52.780-60.989 52.534-60.989L52.534-61.285L53.780-61.371L53.780-58.586Q53.780-58.375 53.843-58.280Q53.905-58.184 54.024-58.162Q54.144-58.141 54.390-58.141L54.390-57.844L53.167-57.766L53.167-58.387Q52.999-58.098 52.718-57.932Q52.437-57.766 52.116-57.766Q50.800-57.766 50.800-58.797M55.460-58.805L55.460-60.996L54.757-60.996L54.757-61.250Q55.112-61.250 55.355-61.483Q55.597-61.715 55.708-62.063Q55.819-62.410 55.819-62.766L56.101-62.766L56.101-61.293L57.276-61.293L57.276-60.996L56.101-60.996L56.101-58.821Q56.101-58.500 56.220-58.272Q56.339-58.043 56.620-58.043Q56.800-58.043 56.917-58.166Q57.034-58.289 57.087-58.469Q57.140-58.649 57.140-58.821L57.140-59.293L57.421-59.293L57.421-58.805Q57.421-58.551 57.316-58.311Q57.210-58.071 57.013-57.918Q56.816-57.766 56.558-57.766Q56.241-57.766 55.989-57.889Q55.737-58.012 55.599-58.246Q55.460-58.481 55.460-58.805M58.140-59.598Q58.140-60.078 58.372-60.494Q58.605-60.910 59.015-61.160Q59.425-61.410 59.901-61.410Q60.632-61.410 61.030-60.969Q61.429-60.528 61.429-59.797Q61.429-59.692 61.335-59.668L58.886-59.668L58.886-59.598Q58.886-59.188 59.007-58.832Q59.128-58.477 59.399-58.260Q59.671-58.043 60.101-58.043Q60.464-58.043 60.761-58.272Q61.058-58.500 61.159-58.852Q61.167-58.899 61.253-58.914L61.335-58.914Q61.429-58.887 61.429-58.805Q61.429-58.797 61.421-58.766Q61.358-58.539 61.220-58.356Q61.081-58.172 60.890-58.039Q60.698-57.907 60.480-57.836Q60.261-57.766 60.023-57.766Q59.651-57.766 59.314-57.903Q58.976-58.039 58.708-58.291Q58.441-58.543 58.290-58.883Q58.140-59.223 58.140-59.598M58.894-59.907L60.855-59.907Q60.855-60.211 60.753-60.502Q60.651-60.793 60.435-60.975Q60.218-61.157 59.901-61.157Q59.601-61.157 59.370-60.969Q59.140-60.782 59.017-60.490Q58.894-60.199 58.894-59.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(109.208 74.77)\">\u003Cpath d=\"M65.004-56.028Q65.004-56.047 65.019-56.102L67.945-63.739Q68.011-63.844 68.117-63.844Q68.195-63.844 68.248-63.791Q68.301-63.739 68.301-63.660Q68.301-63.641 68.285-63.586L65.355-55.949Q65.293-55.844 65.187-55.844Q65.113-55.844 65.058-55.899Q65.004-55.953 65.004-56.028\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(109.208 74.77)\">\u003Cpath d=\"M73.783-57.844L71.927-57.844L71.927-58.141Q72.201-58.141 72.369-58.188Q72.537-58.235 72.537-58.403L72.537-60.539Q72.537-60.754 72.474-60.850Q72.412-60.946 72.293-60.967Q72.174-60.989 71.927-60.989L71.927-61.285L73.119-61.371L73.119-60.637Q73.232-60.852 73.426-61.020Q73.619-61.188 73.857-61.280Q74.095-61.371 74.349-61.371Q75.310-61.371 75.486-60.660Q75.670-60.989 75.998-61.180Q76.326-61.371 76.705-61.371Q77.881-61.371 77.881-60.293L77.881-58.403Q77.881-58.235 78.049-58.188Q78.217-58.141 78.486-58.141L78.486-57.844L76.631-57.844L76.631-58.141Q76.904-58.141 77.072-58.186Q77.240-58.231 77.240-58.403L77.240-60.278Q77.240-60.664 77.115-60.891Q76.990-61.117 76.638-61.117Q76.334-61.117 76.078-60.955Q75.822-60.793 75.674-60.524Q75.525-60.254 75.525-59.957L75.525-58.403Q75.525-58.235 75.695-58.188Q75.865-58.141 76.135-58.141L76.135-57.844L74.279-57.844L74.279-58.141Q74.552-58.141 74.720-58.188Q74.888-58.235 74.888-58.403L74.888-60.278Q74.888-60.664 74.763-60.891Q74.638-61.117 74.287-61.117Q73.982-61.117 73.726-60.955Q73.470-60.793 73.322-60.524Q73.174-60.254 73.174-59.957L73.174-58.403Q73.174-58.235 73.344-58.188Q73.513-58.141 73.783-58.141L73.783-57.844M78.931-59.598Q78.931-60.078 79.164-60.494Q79.396-60.910 79.806-61.160Q80.217-61.410 80.693-61.410Q81.424-61.410 81.822-60.969Q82.220-60.528 82.220-59.797Q82.220-59.692 82.127-59.668L79.677-59.668L79.677-59.598Q79.677-59.188 79.799-58.832Q79.920-58.477 80.191-58.260Q80.463-58.043 80.892-58.043Q81.256-58.043 81.552-58.272Q81.849-58.500 81.951-58.852Q81.959-58.899 82.045-58.914L82.127-58.914Q82.220-58.887 82.220-58.805Q82.220-58.797 82.213-58.766Q82.150-58.539 82.011-58.356Q81.873-58.172 81.681-58.039Q81.490-57.907 81.271-57.836Q81.052-57.766 80.814-57.766Q80.443-57.766 80.105-57.903Q79.767-58.039 79.500-58.291Q79.232-58.543 79.082-58.883Q78.931-59.223 78.931-59.598M79.685-59.907L81.646-59.907Q81.646-60.211 81.545-60.502Q81.443-60.793 81.226-60.975Q81.010-61.157 80.693-61.157Q80.392-61.157 80.162-60.969Q79.931-60.782 79.808-60.490Q79.685-60.199 79.685-59.907M84.638-57.844L82.783-57.844L82.783-58.141Q83.056-58.141 83.224-58.188Q83.392-58.235 83.392-58.403L83.392-60.539Q83.392-60.754 83.330-60.850Q83.267-60.946 83.148-60.967Q83.029-60.989 82.783-60.989L82.783-61.285L83.974-61.371L83.974-60.637Q84.088-60.852 84.281-61.020Q84.474-61.188 84.713-61.280Q84.951-61.371 85.205-61.371Q86.166-61.371 86.342-60.660Q86.525-60.989 86.853-61.180Q87.181-61.371 87.560-61.371Q88.736-61.371 88.736-60.293L88.736-58.403Q88.736-58.235 88.904-58.188Q89.072-58.141 89.342-58.141L89.342-57.844L87.486-57.844L87.486-58.141Q87.760-58.141 87.927-58.186Q88.095-58.231 88.095-58.403L88.095-60.278Q88.095-60.664 87.970-60.891Q87.845-61.117 87.494-61.117Q87.189-61.117 86.933-60.955Q86.677-60.793 86.529-60.524Q86.381-60.254 86.381-59.957L86.381-58.403Q86.381-58.235 86.551-58.188Q86.720-58.141 86.990-58.141L86.990-57.844L85.135-57.844L85.135-58.141Q85.408-58.141 85.576-58.188Q85.744-58.235 85.744-58.403L85.744-60.278Q85.744-60.664 85.619-60.891Q85.494-61.117 85.142-61.117Q84.838-61.117 84.582-60.955Q84.326-60.793 84.177-60.524Q84.029-60.254 84.029-59.957L84.029-58.403Q84.029-58.235 84.199-58.188Q84.369-58.141 84.638-58.141L84.638-57.844M90.189-55.844L90.107-55.844Q90.072-55.844 90.047-55.873Q90.021-55.903 90.021-55.942Q90.021-55.992 90.052-56.012Q90.439-56.348 90.722-56.797Q91.006-57.246 91.172-57.746Q91.338-58.246 91.412-58.764Q91.486-59.282 91.486-59.844Q91.486-60.414 91.412-60.930Q91.338-61.446 91.172-61.942Q91.006-62.438 90.726-62.885Q90.447-63.332 90.052-63.676Q90.021-63.696 90.021-63.746Q90.021-63.785 90.047-63.815Q90.072-63.844 90.107-63.844L90.189-63.844Q90.201-63.844 90.211-63.842Q90.220-63.840 90.228-63.836Q90.842-63.379 91.244-62.744Q91.646-62.110 91.842-61.364Q92.037-60.617 92.037-59.844Q92.037-59.071 91.842-58.324Q91.646-57.578 91.244-56.944Q90.842-56.309 90.228-55.852Q90.217-55.852 90.209-55.850Q90.201-55.848 90.189-55.844\" 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-8.212 24.67h69.93V-3.785h-69.93Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-32.965 74.814)\">\u003Cpath d=\"M39.796-69.153L39.796-72.246Q39.796-72.418 39.551-72.465Q39.307-72.512 38.987-72.512L38.987-72.809L41.370-72.809L41.370-72.512Q41.049-72.512 40.805-72.463Q40.561-72.414 40.561-72.246L40.561-69.176Q40.561-68.453 40.905-67.963Q41.249-67.473 41.948-67.473Q42.413-67.473 42.784-67.703Q43.155-67.934 43.364-68.326Q43.573-68.719 43.573-69.176L43.573-72.031Q43.573-72.512 42.764-72.512L42.764-72.809L44.674-72.809L44.674-72.512Q43.866-72.512 43.866-72.031L43.866-69.153Q43.866-68.633 43.612-68.176Q43.358-67.719 42.917-67.448Q42.475-67.176 41.948-67.176Q41.538-67.176 41.157-67.319Q40.776-67.461 40.464-67.731Q40.151-68 39.973-68.367Q39.796-68.735 39.796-69.153M47.131-65.793L45.276-65.793L45.276-66.086Q45.546-66.086 45.714-66.131Q45.881-66.176 45.881-66.352L45.881-70.176Q45.881-70.383 45.725-70.436Q45.569-70.489 45.276-70.489L45.276-70.785L46.499-70.871L46.499-70.406Q46.729-70.629 47.044-70.750Q47.358-70.871 47.698-70.871Q48.171-70.871 48.575-70.625Q48.979-70.379 49.212-69.963Q49.444-69.547 49.444-69.071Q49.444-68.696 49.296-68.367Q49.147-68.039 48.878-67.787Q48.608-67.535 48.264-67.401Q47.921-67.266 47.561-67.266Q47.272-67.266 47.001-67.387Q46.729-67.508 46.522-67.719L46.522-66.352Q46.522-66.176 46.690-66.131Q46.858-66.086 47.131-66.086L47.131-65.793M46.522-70.008L46.522-68.168Q46.674-67.879 46.936-67.699Q47.198-67.520 47.506-67.520Q47.792-67.520 48.014-67.658Q48.237-67.797 48.389-68.028Q48.542-68.258 48.620-68.530Q48.698-68.801 48.698-69.071Q48.698-69.403 48.573-69.760Q48.448-70.117 48.200-70.354Q47.952-70.590 47.604-70.590Q47.280-70.590 46.985-70.434Q46.690-70.278 46.522-70.008\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-32.965 74.814)\">\u003Cpath d=\"M52.031-67.266Q51.550-67.266 51.142-67.510Q50.734-67.754 50.496-68.168Q50.257-68.582 50.257-69.071Q50.257-69.563 50.515-69.979Q50.773-70.395 51.205-70.633Q51.636-70.871 52.128-70.871Q52.749-70.871 53.199-70.434L53.199-72.063Q53.199-72.278 53.136-72.373Q53.074-72.469 52.956-72.490Q52.839-72.512 52.593-72.512L52.593-72.809L53.816-72.895L53.816-68.086Q53.816-67.875 53.878-67.780Q53.941-67.684 54.058-67.662Q54.175-67.641 54.425-67.641L54.425-67.344L53.175-67.266L53.175-67.750Q52.710-67.266 52.031-67.266M52.097-67.520Q52.437-67.520 52.730-67.711Q53.023-67.903 53.175-68.199L53.175-70.031Q53.027-70.305 52.765-70.461Q52.503-70.617 52.191-70.617Q51.566-70.617 51.283-70.170Q50.999-69.723 50.999-69.063Q50.999-68.418 51.251-67.969Q51.503-67.520 52.097-67.520M55.031-68.176Q55.031-68.660 55.433-68.955Q55.835-69.250 56.386-69.369Q56.937-69.489 57.429-69.489L57.429-69.778Q57.429-70.004 57.314-70.211Q57.199-70.418 57.001-70.537Q56.804-70.656 56.574-70.656Q56.148-70.656 55.863-70.551Q55.933-70.524 55.980-70.469Q56.027-70.414 56.052-70.344Q56.078-70.274 56.078-70.199Q56.078-70.094 56.027-70.002Q55.976-69.910 55.884-69.860Q55.792-69.809 55.687-69.809Q55.581-69.809 55.490-69.860Q55.398-69.910 55.347-70.002Q55.296-70.094 55.296-70.199Q55.296-70.617 55.685-70.764Q56.074-70.910 56.574-70.910Q56.906-70.910 57.259-70.780Q57.613-70.649 57.841-70.395Q58.070-70.141 58.070-69.793L58.070-67.992Q58.070-67.860 58.142-67.750Q58.214-67.641 58.343-67.641Q58.468-67.641 58.537-67.746Q58.605-67.852 58.605-67.992L58.605-68.504L58.886-68.504L58.886-67.992Q58.886-67.789 58.769-67.631Q58.652-67.473 58.470-67.389Q58.288-67.305 58.085-67.305Q57.855-67.305 57.703-67.477Q57.550-67.649 57.519-67.879Q57.359-67.598 57.050-67.432Q56.742-67.266 56.390-67.266Q55.878-67.266 55.455-67.489Q55.031-67.711 55.031-68.176M55.718-68.176Q55.718-67.891 55.945-67.705Q56.171-67.520 56.464-67.520Q56.710-67.520 56.935-67.637Q57.160-67.754 57.294-67.957Q57.429-68.160 57.429-68.414L57.429-69.246Q57.163-69.246 56.878-69.192Q56.593-69.137 56.322-69.008Q56.050-68.879 55.884-68.672Q55.718-68.465 55.718-68.176M59.804-68.305L59.804-70.496L59.101-70.496L59.101-70.750Q59.456-70.750 59.699-70.983Q59.941-71.215 60.052-71.563Q60.163-71.910 60.163-72.266L60.445-72.266L60.445-70.793L61.621-70.793L61.621-70.496L60.445-70.496L60.445-68.321Q60.445-68 60.564-67.772Q60.683-67.543 60.964-67.543Q61.144-67.543 61.261-67.666Q61.378-67.789 61.431-67.969Q61.484-68.149 61.484-68.321L61.484-68.793L61.765-68.793L61.765-68.305Q61.765-68.051 61.660-67.811Q61.554-67.571 61.357-67.418Q61.160-67.266 60.902-67.266Q60.585-67.266 60.333-67.389Q60.081-67.512 59.943-67.746Q59.804-67.981 59.804-68.305M62.484-69.098Q62.484-69.578 62.716-69.994Q62.949-70.410 63.359-70.660Q63.769-70.910 64.246-70.910Q64.976-70.910 65.374-70.469Q65.773-70.028 65.773-69.297Q65.773-69.192 65.679-69.168L63.230-69.168L63.230-69.098Q63.230-68.688 63.351-68.332Q63.472-67.977 63.744-67.760Q64.015-67.543 64.445-67.543Q64.808-67.543 65.105-67.772Q65.402-68 65.503-68.352Q65.511-68.399 65.597-68.414L65.679-68.414Q65.773-68.387 65.773-68.305Q65.773-68.297 65.765-68.266Q65.703-68.039 65.564-67.856Q65.425-67.672 65.234-67.539Q65.042-67.406 64.824-67.336Q64.605-67.266 64.367-67.266Q63.996-67.266 63.658-67.403Q63.320-67.539 63.052-67.791Q62.785-68.043 62.634-68.383Q62.484-68.723 62.484-69.098M63.238-69.406L65.199-69.406Q65.199-69.711 65.097-70.002Q64.996-70.293 64.779-70.475Q64.562-70.656 64.246-70.656Q63.945-70.656 63.714-70.469Q63.484-70.281 63.361-69.990Q63.238-69.699 63.238-69.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-32.965 74.814)\">\u003Cpath d=\"M71.599-67.344L69.217-67.344L69.217-67.641Q69.541-67.641 69.783-67.688Q70.025-67.735 70.025-67.903L70.025-72.246Q70.025-72.418 69.783-72.465Q69.541-72.512 69.217-72.512L69.217-72.809L72.162-72.809Q72.506-72.809 72.861-72.709Q73.217-72.610 73.511-72.418Q73.806-72.227 73.988-71.942Q74.170-71.656 74.170-71.297Q74.170-70.824 73.859-70.489Q73.549-70.153 73.084-69.981Q72.619-69.809 72.162-69.809L70.795-69.809L70.795-67.903Q70.795-67.735 71.037-67.688Q71.279-67.641 71.599-67.641L71.599-67.344M70.767-72.246L70.767-70.078L71.943-70.078Q72.631-70.078 72.969-70.354Q73.306-70.629 73.306-71.297Q73.306-71.961 72.969-72.237Q72.631-72.512 71.943-72.512L71.170-72.512Q70.951-72.512 70.859-72.469Q70.767-72.426 70.767-72.246M75.115-70.078Q75.115-70.672 75.347-71.203Q75.580-71.735 75.996-72.135Q76.412-72.535 76.945-72.756Q77.478-72.977 78.084-72.977Q78.521-72.977 78.920-72.795Q79.318-72.614 79.627-72.281L80.099-72.946Q80.131-72.977 80.162-72.977L80.209-72.977Q80.236-72.977 80.267-72.946Q80.299-72.914 80.299-72.887L80.299-70.750Q80.299-70.727 80.267-70.696Q80.236-70.664 80.209-70.664L80.092-70.664Q80.064-70.664 80.033-70.696Q80.002-70.727 80.002-70.750Q80.002-71.016 79.859-71.369Q79.717-71.723 79.537-71.961Q79.283-72.293 78.933-72.487Q78.584-72.680 78.177-72.680Q77.674-72.680 77.220-72.461Q76.767-72.242 76.474-71.848Q75.978-71.180 75.978-70.078Q75.978-69.547 76.115-69.080Q76.252-68.614 76.527-68.248Q76.802-67.883 77.222-67.678Q77.642-67.473 78.185-67.473Q78.674-67.473 79.097-67.717Q79.521-67.961 79.769-68.381Q80.017-68.801 80.017-69.297Q80.017-69.332 80.047-69.358Q80.076-69.383 80.107-69.383L80.209-69.383Q80.252-69.383 80.275-69.354Q80.299-69.324 80.299-69.281Q80.299-68.844 80.123-68.455Q79.947-68.067 79.636-67.783Q79.326-67.500 78.916-67.338Q78.506-67.176 78.084-67.176Q77.494-67.176 76.953-67.397Q76.412-67.617 75.996-68.022Q75.580-68.426 75.347-68.955Q75.115-69.485 75.115-70.078\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-32.965 74.814)\">\u003Cpath d=\"M29.370-55.852Q28.757-56.309 28.355-56.944Q27.952-57.578 27.757-58.324Q27.562-59.071 27.562-59.844Q27.562-60.617 27.757-61.364Q27.952-62.110 28.355-62.744Q28.757-63.379 29.370-63.836Q29.382-63.840 29.390-63.842Q29.398-63.844 29.409-63.844L29.487-63.844Q29.526-63.844 29.552-63.817Q29.577-63.789 29.577-63.746Q29.577-63.696 29.546-63.676Q29.038-63.223 28.716-62.600Q28.394-61.977 28.253-61.282Q28.112-60.586 28.112-59.844Q28.112-59.110 28.251-58.410Q28.390-57.711 28.714-57.086Q29.038-56.461 29.546-56.012Q29.577-55.992 29.577-55.942Q29.577-55.899 29.552-55.871Q29.526-55.844 29.487-55.844L29.409-55.844Q29.401-55.848 29.392-55.850Q29.382-55.852 29.370-55.852M32.226-57.844L30.370-57.844L30.370-58.141Q30.644-58.141 30.812-58.188Q30.980-58.235 30.980-58.403L30.980-60.539Q30.980-60.754 30.917-60.850Q30.855-60.946 30.735-60.967Q30.616-60.989 30.370-60.989L30.370-61.285L31.562-61.371L31.562-60.637Q31.675-60.852 31.868-61.020Q32.062-61.188 32.300-61.280Q32.538-61.371 32.792-61.371Q33.960-61.371 33.960-60.293L33.960-58.403Q33.960-58.235 34.130-58.188Q34.300-58.141 34.569-58.141L34.569-57.844L32.714-57.844L32.714-58.141Q32.987-58.141 33.155-58.188Q33.323-58.235 33.323-58.403L33.323-60.278Q33.323-60.660 33.202-60.889Q33.081-61.117 32.730-61.117Q32.417-61.117 32.163-60.955Q31.909-60.793 31.763-60.524Q31.616-60.254 31.616-59.957L31.616-58.403Q31.616-58.235 31.786-58.188Q31.956-58.141 32.226-58.141L32.226-57.844M35.015-59.598Q35.015-60.078 35.247-60.494Q35.480-60.910 35.890-61.160Q36.300-61.410 36.776-61.410Q37.507-61.410 37.905-60.969Q38.304-60.528 38.304-59.797Q38.304-59.692 38.210-59.668L35.761-59.668L35.761-59.598Q35.761-59.188 35.882-58.832Q36.003-58.477 36.274-58.260Q36.546-58.043 36.976-58.043Q37.339-58.043 37.636-58.272Q37.933-58.500 38.034-58.852Q38.042-58.899 38.128-58.914L38.210-58.914Q38.304-58.887 38.304-58.805Q38.304-58.797 38.296-58.766Q38.233-58.539 38.095-58.356Q37.956-58.172 37.765-58.039Q37.573-57.907 37.355-57.836Q37.136-57.766 36.898-57.766Q36.526-57.766 36.189-57.903Q35.851-58.039 35.583-58.291Q35.316-58.543 35.165-58.883Q35.015-59.223 35.015-59.598M35.769-59.907L37.730-59.907Q37.730-60.211 37.628-60.502Q37.526-60.793 37.310-60.975Q37.093-61.157 36.776-61.157Q36.476-61.157 36.245-60.969Q36.015-60.782 35.892-60.490Q35.769-60.199 35.769-59.907M40.179-57.844L38.683-57.844L38.683-58.141Q39.316-58.141 39.737-58.621L40.507-59.532L39.515-60.731Q39.358-60.910 39.196-60.953Q39.034-60.996 38.730-60.996L38.730-61.293L40.417-61.293L40.417-60.996Q40.323-60.996 40.247-60.953Q40.171-60.910 40.171-60.821Q40.171-60.778 40.202-60.731L40.858-59.942L41.339-60.516Q41.456-60.653 41.456-60.789Q41.456-60.879 41.405-60.938Q41.355-60.996 41.273-60.996L41.273-61.293L42.761-61.293L42.761-60.996Q42.124-60.996 41.714-60.516L41.034-59.715L42.120-58.403Q42.280-58.227 42.441-58.184Q42.601-58.141 42.905-58.141L42.905-57.844L41.218-57.844L41.218-58.141Q41.308-58.141 41.386-58.184Q41.464-58.227 41.464-58.317Q41.464-58.340 41.433-58.403L40.691-59.309L40.105-58.621Q39.987-58.485 39.987-58.348Q39.987-58.262 40.038-58.201Q40.089-58.141 40.179-58.141L40.179-57.844M43.898-58.805L43.898-60.996L43.194-60.996L43.194-61.250Q43.550-61.250 43.792-61.483Q44.034-61.715 44.146-62.063Q44.257-62.410 44.257-62.766L44.538-62.766L44.538-61.293L45.714-61.293L45.714-60.996L44.538-60.996L44.538-58.821Q44.538-58.500 44.657-58.272Q44.776-58.043 45.058-58.043Q45.237-58.043 45.355-58.166Q45.472-58.289 45.524-58.469Q45.577-58.649 45.577-58.821L45.577-59.293L45.858-59.293L45.858-58.805Q45.858-58.551 45.753-58.311Q45.648-58.071 45.450-57.918Q45.253-57.766 44.995-57.766Q44.679-57.766 44.427-57.889Q44.175-58.012 44.036-58.246Q43.898-58.481 43.898-58.805\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-32.965 74.814)\">\u003Cpath d=\"M51.282-57.844L49.504-57.844L49.504-58.141Q49.778-58.141 49.946-58.188Q50.114-58.235 50.114-58.403L50.114-60.539Q50.114-60.754 50.057-60.850Q50-60.946 49.887-60.967Q49.774-60.989 49.528-60.989L49.528-61.285L50.727-61.371L50.727-58.403Q50.727-58.235 50.873-58.188Q51.020-58.141 51.282-58.141L51.282-57.844M49.840-62.766Q49.840-62.957 49.975-63.088Q50.110-63.219 50.305-63.219Q50.426-63.219 50.530-63.157Q50.633-63.094 50.696-62.990Q50.758-62.887 50.758-62.766Q50.758-62.571 50.627-62.436Q50.496-62.301 50.305-62.301Q50.106-62.301 49.973-62.434Q49.840-62.567 49.840-62.766M53.711-57.844L51.856-57.844L51.856-58.141Q52.129-58.141 52.297-58.188Q52.465-58.235 52.465-58.403L52.465-60.539Q52.465-60.754 52.403-60.850Q52.340-60.946 52.221-60.967Q52.102-60.989 51.856-60.989L51.856-61.285L53.047-61.371L53.047-60.637Q53.161-60.852 53.354-61.020Q53.547-61.188 53.786-61.280Q54.024-61.371 54.278-61.371Q55.446-61.371 55.446-60.293L55.446-58.403Q55.446-58.235 55.616-58.188Q55.786-58.141 56.055-58.141L56.055-57.844L54.200-57.844L54.200-58.141Q54.473-58.141 54.641-58.188Q54.809-58.235 54.809-58.403L54.809-60.278Q54.809-60.660 54.688-60.889Q54.567-61.117 54.215-61.117Q53.903-61.117 53.649-60.955Q53.395-60.793 53.248-60.524Q53.102-60.254 53.102-59.957L53.102-58.403Q53.102-58.235 53.272-58.188Q53.442-58.141 53.711-58.141L53.711-57.844M56.543-57.852L56.543-59.074Q56.543-59.102 56.575-59.133Q56.606-59.164 56.629-59.164L56.735-59.164Q56.805-59.164 56.821-59.102Q56.883-58.782 57.022-58.541Q57.161-58.301 57.393-58.160Q57.625-58.020 57.934-58.020Q58.172-58.020 58.381-58.080Q58.590-58.141 58.727-58.289Q58.864-58.438 58.864-58.684Q58.864-58.938 58.653-59.104Q58.442-59.270 58.172-59.324L57.551-59.438Q57.145-59.516 56.844-59.772Q56.543-60.028 56.543-60.403Q56.543-60.770 56.745-60.992Q56.946-61.215 57.270-61.313Q57.594-61.410 57.934-61.410Q58.399-61.410 58.696-61.203L58.918-61.387Q58.942-61.410 58.973-61.410L59.024-61.410Q59.055-61.410 59.082-61.383Q59.110-61.356 59.110-61.324L59.110-60.340Q59.110-60.309 59.084-60.280Q59.059-60.250 59.024-60.250L58.918-60.250Q58.883-60.250 58.856-60.278Q58.829-60.305 58.829-60.340Q58.829-60.739 58.577-60.959Q58.325-61.180 57.926-61.180Q57.571-61.180 57.288-61.057Q57.004-60.934 57.004-60.629Q57.004-60.410 57.205-60.278Q57.407-60.145 57.653-60.102L58.278-59.989Q58.707-59.899 59.016-59.602Q59.325-59.305 59.325-58.891Q59.325-58.321 58.926-58.043Q58.528-57.766 57.934-57.766Q57.383-57.766 57.032-58.102L56.735-57.789Q56.711-57.766 56.676-57.766L56.629-57.766Q56.606-57.766 56.575-57.797Q56.543-57.828 56.543-57.852M60.477-58.805L60.477-60.996L59.774-60.996L59.774-61.250Q60.129-61.250 60.371-61.483Q60.614-61.715 60.725-62.063Q60.836-62.410 60.836-62.766L61.118-62.766L61.118-61.293L62.293-61.293L62.293-60.996L61.118-60.996L61.118-58.821Q61.118-58.500 61.237-58.272Q61.356-58.043 61.637-58.043Q61.817-58.043 61.934-58.166Q62.051-58.289 62.104-58.469Q62.157-58.649 62.157-58.821L62.157-59.293L62.438-59.293L62.438-58.805Q62.438-58.551 62.332-58.311Q62.227-58.071 62.030-57.918Q61.832-57.766 61.575-57.766Q61.258-57.766 61.006-57.889Q60.754-58.012 60.616-58.246Q60.477-58.481 60.477-58.805M65.164-57.844L63.184-57.844L63.184-58.141Q63.454-58.141 63.621-58.186Q63.789-58.231 63.789-58.403L63.789-60.539Q63.789-60.754 63.727-60.850Q63.664-60.946 63.547-60.967Q63.430-60.989 63.184-60.989L63.184-61.285L64.352-61.371L64.352-60.586Q64.430-60.797 64.582-60.983Q64.735-61.168 64.934-61.270Q65.133-61.371 65.360-61.371Q65.606-61.371 65.797-61.227Q65.989-61.082 65.989-60.852Q65.989-60.696 65.883-60.586Q65.778-60.477 65.621-60.477Q65.465-60.477 65.356-60.586Q65.246-60.696 65.246-60.852Q65.246-61.012 65.352-61.117Q65.028-61.117 64.813-60.889Q64.598-60.660 64.502-60.321Q64.407-59.981 64.407-59.676L64.407-58.403Q64.407-58.235 64.633-58.188Q64.860-58.141 65.164-58.141L65.164-57.844M67.153-58.797L67.153-60.539Q67.153-60.754 67.090-60.850Q67.028-60.946 66.909-60.967Q66.789-60.989 66.543-60.989L66.543-61.285L67.789-61.371L67.789-58.821L67.789-58.797Q67.789-58.485 67.844-58.323Q67.899-58.160 68.049-58.090Q68.200-58.020 68.520-58.020Q68.950-58.020 69.223-58.358Q69.496-58.696 69.496-59.141L69.496-60.539Q69.496-60.754 69.434-60.850Q69.371-60.946 69.252-60.967Q69.133-60.989 68.887-60.989L68.887-61.285L70.133-61.371L70.133-58.586Q70.133-58.375 70.196-58.280Q70.258-58.184 70.377-58.162Q70.496-58.141 70.743-58.141L70.743-57.844L69.520-57.766L69.520-58.387Q69.352-58.098 69.071-57.932Q68.789-57.766 68.469-57.766Q67.153-57.766 67.153-58.797M71.231-59.571Q71.231-60.067 71.481-60.492Q71.731-60.918 72.151-61.164Q72.571-61.410 73.071-61.410Q73.610-61.410 74-61.285Q74.391-61.160 74.391-60.746Q74.391-60.641 74.340-60.549Q74.289-60.457 74.198-60.407Q74.106-60.356 73.996-60.356Q73.891-60.356 73.799-60.407Q73.707-60.457 73.657-60.549Q73.606-60.641 73.606-60.746Q73.606-60.969 73.774-61.074Q73.551-61.133 73.079-61.133Q72.782-61.133 72.567-60.994Q72.352-60.856 72.221-60.625Q72.090-60.395 72.032-60.125Q71.973-59.856 71.973-59.571Q71.973-59.176 72.106-58.826Q72.239-58.477 72.510-58.260Q72.782-58.043 73.180-58.043Q73.555-58.043 73.830-58.260Q74.106-58.477 74.207-58.836Q74.223-58.899 74.286-58.899L74.391-58.899Q74.426-58.899 74.452-58.871Q74.477-58.844 74.477-58.805L74.477-58.782Q74.344-58.301 73.959-58.033Q73.575-57.766 73.071-57.766Q72.707-57.766 72.373-57.903Q72.039-58.039 71.780-58.289Q71.520-58.539 71.375-58.875Q71.231-59.211 71.231-59.571M75.590-58.805L75.590-60.996L74.887-60.996L74.887-61.250Q75.243-61.250 75.485-61.483Q75.727-61.715 75.838-62.063Q75.950-62.410 75.950-62.766L76.231-62.766L76.231-61.293L77.407-61.293L77.407-60.996L76.231-60.996L76.231-58.821Q76.231-58.500 76.350-58.272Q76.469-58.043 76.750-58.043Q76.930-58.043 77.047-58.166Q77.164-58.289 77.217-58.469Q77.270-58.649 77.270-58.821L77.270-59.293L77.551-59.293L77.551-58.805Q77.551-58.551 77.446-58.311Q77.340-58.071 77.143-57.918Q76.946-57.766 76.688-57.766Q76.371-57.766 76.120-57.889Q75.868-58.012 75.729-58.246Q75.590-58.481 75.590-58.805M80.129-57.844L78.352-57.844L78.352-58.141Q78.625-58.141 78.793-58.188Q78.961-58.235 78.961-58.403L78.961-60.539Q78.961-60.754 78.905-60.850Q78.848-60.946 78.735-60.967Q78.621-60.989 78.375-60.989L78.375-61.285L79.575-61.371L79.575-58.403Q79.575-58.235 79.721-58.188Q79.868-58.141 80.129-58.141L80.129-57.844M78.688-62.766Q78.688-62.957 78.823-63.088Q78.957-63.219 79.153-63.219Q79.274-63.219 79.377-63.157Q79.481-63.094 79.543-62.990Q79.606-62.887 79.606-62.766Q79.606-62.571 79.475-62.436Q79.344-62.301 79.153-62.301Q78.954-62.301 78.821-62.434Q78.688-62.567 78.688-62.766M80.629-59.539Q80.629-60.043 80.885-60.475Q81.141-60.907 81.577-61.158Q82.012-61.410 82.512-61.410Q82.899-61.410 83.241-61.266Q83.582-61.121 83.844-60.860Q84.106-60.598 84.248-60.262Q84.391-59.926 84.391-59.539Q84.391-59.047 84.127-58.637Q83.864-58.227 83.434-57.996Q83.004-57.766 82.512-57.766Q82.020-57.766 81.586-57.998Q81.153-58.231 80.891-58.639Q80.629-59.047 80.629-59.539M82.512-58.043Q82.969-58.043 83.221-58.266Q83.473-58.489 83.561-58.840Q83.649-59.192 83.649-59.637Q83.649-60.067 83.555-60.405Q83.461-60.742 83.207-60.949Q82.954-61.157 82.512-61.157Q81.864-61.157 81.620-60.740Q81.375-60.324 81.375-59.637Q81.375-59.192 81.463-58.840Q81.551-58.489 81.803-58.266Q82.055-58.043 82.512-58.043M86.805-57.844L84.950-57.844L84.950-58.141Q85.223-58.141 85.391-58.188Q85.559-58.235 85.559-58.403L85.559-60.539Q85.559-60.754 85.496-60.850Q85.434-60.946 85.315-60.967Q85.196-60.989 84.950-60.989L84.950-61.285L86.141-61.371L86.141-60.637Q86.254-60.852 86.448-61.020Q86.641-61.188 86.879-61.280Q87.118-61.371 87.371-61.371Q88.539-61.371 88.539-60.293L88.539-58.403Q88.539-58.235 88.709-58.188Q88.879-58.141 89.149-58.141L89.149-57.844L87.293-57.844L87.293-58.141Q87.567-58.141 87.735-58.188Q87.903-58.235 87.903-58.403L87.903-60.278Q87.903-60.660 87.782-60.889Q87.661-61.117 87.309-61.117Q86.996-61.117 86.743-60.955Q86.489-60.793 86.342-60.524Q86.196-60.254 86.196-59.957L86.196-58.403Q86.196-58.235 86.366-58.188Q86.536-58.141 86.805-58.141L86.805-57.844M89.996-55.844L89.914-55.844Q89.879-55.844 89.854-55.873Q89.829-55.903 89.829-55.942Q89.829-55.992 89.860-56.012Q90.246-56.348 90.530-56.797Q90.813-57.246 90.979-57.746Q91.145-58.246 91.219-58.764Q91.293-59.282 91.293-59.844Q91.293-60.414 91.219-60.930Q91.145-61.446 90.979-61.942Q90.813-62.438 90.534-62.885Q90.254-63.332 89.860-63.676Q89.829-63.696 89.829-63.746Q89.829-63.785 89.854-63.815Q89.879-63.844 89.914-63.844L89.996-63.844Q90.008-63.844 90.018-63.842Q90.028-63.840 90.036-63.836Q90.649-63.379 91.051-62.744Q91.454-62.110 91.649-61.364Q91.844-60.617 91.844-59.844Q91.844-59.071 91.649-58.324Q91.454-57.578 91.051-56.944Q90.649-56.309 90.036-55.852Q90.024-55.852 90.016-55.850Q90.008-55.848 89.996-55.844\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M63.982-57.844h68.691\"\u002F>\u003Cpath stroke=\"none\" d=\"m134.673-57.844-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M169.017-43.417v37.433\"\u002F>\u003Cpath stroke=\"none\" d=\"m169.017-3.984 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M133.76 10.443H63.919\"\u002F>\u003Cpath stroke=\"none\" d=\"m61.918 10.443 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M26.753-3.984v-37.433\"\u002F>\u003Cpath stroke=\"none\" d=\"m26.753-43.417-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-92.357 35.826)\">\u003Cpath d=\"M28.999-57.844L27.019-57.844L27.019-58.141Q27.288-58.141 27.456-58.186Q27.624-58.231 27.624-58.403L27.624-60.539Q27.624-60.754 27.562-60.850Q27.499-60.946 27.382-60.967Q27.265-60.989 27.019-60.989L27.019-61.285L28.187-61.371L28.187-60.586Q28.265-60.797 28.417-60.983Q28.569-61.168 28.769-61.270Q28.968-61.371 29.194-61.371Q29.441-61.371 29.632-61.227Q29.823-61.082 29.823-60.852Q29.823-60.696 29.718-60.586Q29.612-60.477 29.456-60.477Q29.300-60.477 29.191-60.586Q29.081-60.696 29.081-60.852Q29.081-61.012 29.187-61.117Q28.862-61.117 28.648-60.889Q28.433-60.660 28.337-60.321Q28.241-59.981 28.241-59.676L28.241-58.403Q28.241-58.235 28.468-58.188Q28.694-58.141 28.999-58.141L28.999-57.844M30.304-59.598Q30.304-60.078 30.536-60.494Q30.769-60.910 31.179-61.160Q31.589-61.410 32.066-61.410Q32.796-61.410 33.194-60.969Q33.593-60.528 33.593-59.797Q33.593-59.692 33.499-59.668L31.050-59.668L31.050-59.598Q31.050-59.188 31.171-58.832Q31.292-58.477 31.564-58.260Q31.835-58.043 32.265-58.043Q32.628-58.043 32.925-58.272Q33.222-58.500 33.323-58.852Q33.331-58.899 33.417-58.914L33.499-58.914Q33.593-58.887 33.593-58.805Q33.593-58.797 33.585-58.766Q33.523-58.539 33.384-58.356Q33.245-58.172 33.054-58.039Q32.862-57.907 32.644-57.836Q32.425-57.766 32.187-57.766Q31.816-57.766 31.478-57.903Q31.140-58.039 30.872-58.291Q30.605-58.543 30.454-58.883Q30.304-59.223 30.304-59.598M31.058-59.907L33.019-59.907Q33.019-60.211 32.917-60.502Q32.816-60.793 32.599-60.975Q32.382-61.157 32.066-61.157Q31.765-61.157 31.534-60.969Q31.304-60.782 31.181-60.490Q31.058-60.199 31.058-59.907M35.964-56.293L34.108-56.293L34.108-56.586Q34.378-56.586 34.546-56.631Q34.714-56.676 34.714-56.852L34.714-60.676Q34.714-60.883 34.558-60.936Q34.401-60.989 34.108-60.989L34.108-61.285L35.331-61.371L35.331-60.907Q35.562-61.129 35.876-61.250Q36.191-61.371 36.530-61.371Q37.003-61.371 37.407-61.125Q37.812-60.879 38.044-60.463Q38.276-60.047 38.276-59.571Q38.276-59.196 38.128-58.867Q37.980-58.539 37.710-58.287Q37.441-58.035 37.097-57.901Q36.753-57.766 36.394-57.766Q36.105-57.766 35.833-57.887Q35.562-58.008 35.355-58.219L35.355-56.852Q35.355-56.676 35.523-56.631Q35.691-56.586 35.964-56.586L35.964-56.293M35.355-60.508L35.355-58.668Q35.507-58.379 35.769-58.199Q36.030-58.020 36.339-58.020Q36.624-58.020 36.847-58.158Q37.069-58.297 37.222-58.528Q37.374-58.758 37.452-59.030Q37.530-59.301 37.530-59.571Q37.530-59.903 37.405-60.260Q37.280-60.617 37.032-60.854Q36.784-61.090 36.437-61.090Q36.112-61.090 35.817-60.934Q35.523-60.778 35.355-60.508\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.357 35.826)\">\u003Cpath d=\"M39.040-59.598Q39.040-60.078 39.273-60.494Q39.505-60.910 39.915-61.160Q40.325-61.410 40.802-61.410Q41.532-61.410 41.931-60.969Q42.329-60.528 42.329-59.797Q42.329-59.692 42.236-59.668L39.786-59.668L39.786-59.598Q39.786-59.188 39.907-58.832Q40.029-58.477 40.300-58.260Q40.572-58.043 41.001-58.043Q41.364-58.043 41.661-58.272Q41.958-58.500 42.060-58.852Q42.068-58.899 42.154-58.914L42.236-58.914Q42.329-58.887 42.329-58.805Q42.329-58.797 42.322-58.766Q42.259-58.539 42.120-58.356Q41.982-58.172 41.790-58.039Q41.599-57.907 41.380-57.836Q41.161-57.766 40.923-57.766Q40.552-57.766 40.214-57.903Q39.876-58.039 39.609-58.291Q39.341-58.543 39.191-58.883Q39.040-59.223 39.040-59.598M39.794-59.907L41.755-59.907Q41.755-60.211 41.654-60.502Q41.552-60.793 41.335-60.975Q41.118-61.157 40.802-61.157Q40.501-61.157 40.271-60.969Q40.040-60.782 39.917-60.490Q39.794-60.199 39.794-59.907M42.915-58.676Q42.915-59.160 43.318-59.455Q43.720-59.750 44.271-59.869Q44.822-59.989 45.314-59.989L45.314-60.278Q45.314-60.504 45.198-60.711Q45.083-60.918 44.886-61.037Q44.689-61.157 44.458-61.157Q44.032-61.157 43.747-61.051Q43.818-61.024 43.864-60.969Q43.911-60.914 43.937-60.844Q43.962-60.774 43.962-60.699Q43.962-60.594 43.911-60.502Q43.861-60.410 43.769-60.360Q43.677-60.309 43.572-60.309Q43.466-60.309 43.374-60.360Q43.282-60.410 43.232-60.502Q43.181-60.594 43.181-60.699Q43.181-61.117 43.570-61.264Q43.958-61.410 44.458-61.410Q44.790-61.410 45.144-61.280Q45.497-61.149 45.726-60.895Q45.954-60.641 45.954-60.293L45.954-58.492Q45.954-58.360 46.027-58.250Q46.099-58.141 46.228-58.141Q46.353-58.141 46.421-58.246Q46.489-58.352 46.489-58.492L46.489-59.004L46.771-59.004L46.771-58.492Q46.771-58.289 46.654-58.131Q46.536-57.973 46.355-57.889Q46.173-57.805 45.970-57.805Q45.739-57.805 45.587-57.977Q45.435-58.149 45.404-58.379Q45.243-58.098 44.935-57.932Q44.626-57.766 44.275-57.766Q43.763-57.766 43.339-57.989Q42.915-58.211 42.915-58.676M43.603-58.676Q43.603-58.391 43.829-58.205Q44.056-58.020 44.349-58.020Q44.595-58.020 44.820-58.137Q45.044-58.254 45.179-58.457Q45.314-58.660 45.314-58.914L45.314-59.746Q45.048-59.746 44.763-59.692Q44.478-59.637 44.206-59.508Q43.935-59.379 43.769-59.172Q43.603-58.965 43.603-58.676M47.689-58.805L47.689-60.996L46.986-60.996L46.986-61.250Q47.341-61.250 47.583-61.483Q47.825-61.715 47.937-62.063Q48.048-62.410 48.048-62.766L48.329-62.766L48.329-61.293L49.505-61.293L49.505-60.996L48.329-60.996L48.329-58.821Q48.329-58.500 48.448-58.272Q48.568-58.043 48.849-58.043Q49.029-58.043 49.146-58.166Q49.263-58.289 49.316-58.469Q49.368-58.649 49.368-58.821L49.368-59.293L49.650-59.293L49.650-58.805Q49.650-58.551 49.544-58.311Q49.439-58.071 49.241-57.918Q49.044-57.766 48.786-57.766Q48.470-57.766 48.218-57.889Q47.966-58.012 47.827-58.246Q47.689-58.481 47.689-58.805\" 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-13.08-3.784C-32.999-23.7-32.999-23.7-14.496-42.204\"\u002F>\u003Cpath stroke=\"none\" d=\"m-13.08-43.617-3.395 1.131 1.98.283.283 1.98\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M204.273 10.443h40.679\"\u002F>\u003Cpath stroke=\"none\" d=\"m246.952 10.443-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(223.732 70.286)\">\u003Cpath d=\"M28.921-57.844L27.066-57.844L27.066-58.141Q27.339-58.141 27.507-58.188Q27.675-58.235 27.675-58.403L27.675-62.563Q27.675-62.778 27.612-62.873Q27.550-62.969 27.431-62.990Q27.312-63.012 27.066-63.012L27.066-63.309L28.288-63.395L28.288-60.692Q28.413-60.903 28.601-61.053Q28.788-61.203 29.015-61.287Q29.241-61.371 29.487-61.371Q30.655-61.371 30.655-60.293L30.655-58.403Q30.655-58.235 30.825-58.188Q30.995-58.141 31.265-58.141L31.265-57.844L29.409-57.844L29.409-58.141Q29.683-58.141 29.851-58.188Q30.019-58.235 30.019-58.403L30.019-60.278Q30.019-60.660 29.898-60.889Q29.776-61.117 29.425-61.117Q29.112-61.117 28.858-60.955Q28.605-60.793 28.458-60.524Q28.312-60.254 28.312-59.957L28.312-58.403Q28.312-58.235 28.482-58.188Q28.651-58.141 28.921-58.141L28.921-57.844M31.808-58.676Q31.808-59.160 32.210-59.455Q32.612-59.750 33.163-59.869Q33.714-59.989 34.206-59.989L34.206-60.278Q34.206-60.504 34.091-60.711Q33.976-60.918 33.778-61.037Q33.581-61.157 33.351-61.157Q32.925-61.157 32.640-61.051Q32.710-61.024 32.757-60.969Q32.804-60.914 32.829-60.844Q32.855-60.774 32.855-60.699Q32.855-60.594 32.804-60.502Q32.753-60.410 32.661-60.360Q32.569-60.309 32.464-60.309Q32.358-60.309 32.267-60.360Q32.175-60.410 32.124-60.502Q32.073-60.594 32.073-60.699Q32.073-61.117 32.462-61.264Q32.851-61.410 33.351-61.410Q33.683-61.410 34.036-61.280Q34.390-61.149 34.618-60.895Q34.847-60.641 34.847-60.293L34.847-58.492Q34.847-58.360 34.919-58.250Q34.991-58.141 35.120-58.141Q35.245-58.141 35.314-58.246Q35.382-58.352 35.382-58.492L35.382-59.004L35.663-59.004L35.663-58.492Q35.663-58.289 35.546-58.131Q35.429-57.973 35.247-57.889Q35.066-57.805 34.862-57.805Q34.632-57.805 34.480-57.977Q34.327-58.149 34.296-58.379Q34.136-58.098 33.827-57.932Q33.519-57.766 33.167-57.766Q32.655-57.766 32.232-57.989Q31.808-58.211 31.808-58.676M32.495-58.676Q32.495-58.391 32.722-58.205Q32.948-58.020 33.241-58.020Q33.487-58.020 33.712-58.137Q33.937-58.254 34.071-58.457Q34.206-58.660 34.206-58.914L34.206-59.746Q33.941-59.746 33.655-59.692Q33.370-59.637 33.099-59.508Q32.827-59.379 32.661-59.172Q32.495-58.965 32.495-58.676M37.870-57.844L36.038-57.844L36.038-58.141Q36.312-58.141 36.480-58.188Q36.648-58.235 36.648-58.403L36.648-62.563Q36.648-62.778 36.585-62.873Q36.523-62.969 36.403-62.990Q36.284-63.012 36.038-63.012L36.038-63.309L37.261-63.395L37.261-58.403Q37.261-58.235 37.429-58.188Q37.597-58.141 37.870-58.141L37.870-57.844M38.941-58.805L38.941-60.996L38.237-60.996L38.237-61.250Q38.593-61.250 38.835-61.483Q39.077-61.715 39.189-62.063Q39.300-62.410 39.300-62.766L39.581-62.766L39.581-61.293L40.757-61.293L40.757-60.996L39.581-60.996L39.581-58.821Q39.581-58.500 39.700-58.272Q39.819-58.043 40.101-58.043Q40.280-58.043 40.398-58.166Q40.515-58.289 40.567-58.469Q40.620-58.649 40.620-58.821L40.620-59.293L40.901-59.293L40.901-58.805Q40.901-58.551 40.796-58.311Q40.691-58.071 40.493-57.918Q40.296-57.766 40.038-57.766Q39.722-57.766 39.470-57.889Q39.218-58.012 39.079-58.246Q38.941-58.481 38.941-58.805\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(223.732 70.286)\">\u003Cpath d=\"M49.905-58.821L44.873-58.821Q44.795-58.828 44.746-58.877Q44.698-58.926 44.698-59.004Q44.698-59.074 44.745-59.125Q44.791-59.176 44.873-59.188L50.303-59.188Q50.553-59.387 50.834-59.555Q51.116-59.723 51.409-59.844Q50.807-60.098 50.303-60.508L44.873-60.508Q44.795-60.516 44.746-60.565Q44.698-60.614 44.698-60.692Q44.698-60.762 44.745-60.813Q44.791-60.864 44.873-60.875L49.905-60.875Q49.436-61.356 49.127-61.981Q49.120-62.012 49.120-62.020Q49.120-62.106 49.217-62.133L49.385-62.133Q49.448-62.121 49.483-62.067Q49.745-61.535 50.153-61.106Q50.561-60.676 51.082-60.383Q51.604-60.090 52.186-59.949Q52.248-59.938 52.248-59.844Q52.248-59.750 52.186-59.739Q51.604-59.598 51.082-59.305Q50.561-59.012 50.153-58.582Q49.745-58.153 49.483-57.621Q49.448-57.567 49.385-57.555L49.217-57.555Q49.120-57.582 49.120-57.668Q49.120-57.676 49.127-57.707Q49.432-58.324 49.905-58.821\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(223.732 70.286)\">\u003Cpath d=\"M55.840-57.852L55.840-59.074Q55.840-59.102 55.871-59.133Q55.903-59.164 55.926-59.164L56.032-59.164Q56.102-59.164 56.118-59.102Q56.180-58.782 56.319-58.541Q56.457-58.301 56.690-58.160Q56.922-58.020 57.231-58.020Q57.469-58.020 57.678-58.080Q57.887-58.141 58.024-58.289Q58.161-58.438 58.161-58.684Q58.161-58.938 57.950-59.104Q57.739-59.270 57.469-59.324L56.848-59.438Q56.442-59.516 56.141-59.772Q55.840-60.028 55.840-60.403Q55.840-60.770 56.041-60.992Q56.243-61.215 56.567-61.313Q56.891-61.410 57.231-61.410Q57.696-61.410 57.993-61.203L58.215-61.387Q58.239-61.410 58.270-61.410L58.321-61.410Q58.352-61.410 58.379-61.383Q58.407-61.356 58.407-61.324L58.407-60.340Q58.407-60.309 58.381-60.280Q58.356-60.250 58.321-60.250L58.215-60.250Q58.180-60.250 58.153-60.278Q58.125-60.305 58.125-60.340Q58.125-60.739 57.873-60.959Q57.621-61.180 57.223-61.180Q56.868-61.180 56.584-61.057Q56.301-60.934 56.301-60.629Q56.301-60.410 56.502-60.278Q56.704-60.145 56.950-60.102L57.575-59.989Q58.004-59.899 58.313-59.602Q58.621-59.305 58.621-58.891Q58.621-58.321 58.223-58.043Q57.825-57.766 57.231-57.766Q56.680-57.766 56.329-58.102L56.032-57.789Q56.008-57.766 55.973-57.766L55.926-57.766Q55.903-57.766 55.871-57.797Q55.840-57.828 55.840-57.852M59.774-58.805L59.774-60.996L59.071-60.996L59.071-61.250Q59.426-61.250 59.668-61.483Q59.911-61.715 60.022-62.063Q60.133-62.410 60.133-62.766L60.414-62.766L60.414-61.293L61.590-61.293L61.590-60.996L60.414-60.996L60.414-58.821Q60.414-58.500 60.534-58.272Q60.653-58.043 60.934-58.043Q61.114-58.043 61.231-58.166Q61.348-58.289 61.401-58.469Q61.454-58.649 61.454-58.821L61.454-59.293L61.735-59.293L61.735-58.805Q61.735-58.551 61.629-58.311Q61.524-58.071 61.327-57.918Q61.129-57.766 60.871-57.766Q60.555-57.766 60.303-57.889Q60.051-58.012 59.913-58.246Q59.774-58.481 59.774-58.805M62.454-59.539Q62.454-60.043 62.709-60.475Q62.965-60.907 63.401-61.158Q63.836-61.410 64.336-61.410Q64.723-61.410 65.065-61.266Q65.407-61.121 65.668-60.860Q65.930-60.598 66.073-60.262Q66.215-59.926 66.215-59.539Q66.215-59.047 65.952-58.637Q65.688-58.227 65.258-57.996Q64.829-57.766 64.336-57.766Q63.844-57.766 63.411-57.998Q62.977-58.231 62.715-58.639Q62.454-59.047 62.454-59.539M64.336-58.043Q64.793-58.043 65.045-58.266Q65.297-58.489 65.385-58.840Q65.473-59.192 65.473-59.637Q65.473-60.067 65.379-60.405Q65.286-60.742 65.032-60.949Q64.778-61.157 64.336-61.157Q63.688-61.157 63.444-60.740Q63.200-60.324 63.200-59.637Q63.200-59.192 63.288-58.840Q63.375-58.489 63.627-58.266Q63.879-58.043 64.336-58.043M68.582-56.293L66.727-56.293L66.727-56.586Q66.996-56.586 67.164-56.631Q67.332-56.676 67.332-56.852L67.332-60.676Q67.332-60.883 67.176-60.936Q67.020-60.989 66.727-60.989L66.727-61.285L67.950-61.371L67.950-60.907Q68.180-61.129 68.495-61.250Q68.809-61.371 69.149-61.371Q69.621-61.371 70.026-61.125Q70.430-60.879 70.663-60.463Q70.895-60.047 70.895-59.571Q70.895-59.196 70.746-58.867Q70.598-58.539 70.329-58.287Q70.059-58.035 69.715-57.901Q69.371-57.766 69.012-57.766Q68.723-57.766 68.452-57.887Q68.180-58.008 67.973-58.219L67.973-56.852Q67.973-56.676 68.141-56.631Q68.309-56.586 68.582-56.586L68.582-56.293M67.973-60.508L67.973-58.668Q68.125-58.379 68.387-58.199Q68.649-58.020 68.957-58.020Q69.243-58.020 69.465-58.158Q69.688-58.297 69.840-58.528Q69.993-58.758 70.071-59.030Q70.149-59.301 70.149-59.571Q70.149-59.903 70.024-60.260Q69.899-60.617 69.651-60.854Q69.403-61.090 69.055-61.090Q68.731-61.090 68.436-60.934Q68.141-60.778 67.973-60.508\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The von Neumann loop. Starting from the PC, the machine fetches the instruction, decodes it, executes it, and updates the PC — then repeats. A halt instruction is the only exit.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:601.652px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 451.239 185.998\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 33.551h62.596V2.253h-62.596Z\"\u002F>\u003Cg transform=\"translate(-5.96 2.733)\">\u003Cpath d=\"M-31.371 17.902L-33.753 17.902L-33.753 17.605Q-33.429 17.605-33.187 17.558Q-32.945 17.511-32.945 17.343L-32.945 13Q-32.945 12.828-33.187 12.781Q-33.429 12.734-33.753 12.734L-33.753 12.437L-30.808 12.437Q-30.464 12.437-30.109 12.537Q-29.753 12.636-29.459 12.828Q-29.164 13.019-28.982 13.304Q-28.800 13.590-28.800 13.949Q-28.800 14.422-29.111 14.757Q-29.421 15.093-29.886 15.265Q-30.351 15.437-30.808 15.437L-32.175 15.437L-32.175 17.343Q-32.175 17.511-31.933 17.558Q-31.691 17.605-31.371 17.605L-31.371 17.902M-32.203 13L-32.203 15.168L-31.027 15.168Q-30.339 15.168-30.001 14.892Q-29.664 14.617-29.664 13.949Q-29.664 13.285-30.001 13.009Q-30.339 12.734-31.027 12.734L-31.800 12.734Q-32.019 12.734-32.111 12.777Q-32.203 12.820-32.203 13M-27.855 15.168Q-27.855 14.574-27.623 14.043Q-27.390 13.511-26.974 13.111Q-26.558 12.711-26.025 12.490Q-25.492 12.269-24.886 12.269Q-24.449 12.269-24.050 12.451Q-23.652 12.632-23.343 12.965L-22.871 12.300Q-22.839 12.269-22.808 12.269L-22.761 12.269Q-22.734 12.269-22.703 12.300Q-22.671 12.332-22.671 12.359L-22.671 14.496Q-22.671 14.519-22.703 14.550Q-22.734 14.582-22.761 14.582L-22.878 14.582Q-22.906 14.582-22.937 14.550Q-22.968 14.519-22.968 14.496Q-22.968 14.230-23.111 13.877Q-23.253 13.523-23.433 13.285Q-23.687 12.953-24.037 12.759Q-24.386 12.566-24.792 12.566Q-25.296 12.566-25.750 12.785Q-26.203 13.004-26.496 13.398Q-26.992 14.066-26.992 15.168Q-26.992 15.699-26.855 16.166Q-26.718 16.632-26.443 16.998Q-26.167 17.363-25.748 17.568Q-25.328 17.773-24.785 17.773Q-24.296 17.773-23.873 17.529Q-23.449 17.285-23.201 16.865Q-22.953 16.445-22.953 15.949Q-22.953 15.914-22.923 15.888Q-22.894 15.863-22.863 15.863L-22.761 15.863Q-22.718 15.863-22.695 15.892Q-22.671 15.922-22.671 15.965Q-22.671 16.402-22.847 16.791Q-23.023 17.179-23.334 17.463Q-23.644 17.746-24.054 17.908Q-24.464 18.070-24.886 18.070Q-25.476 18.070-26.017 17.849Q-26.558 17.629-26.974 17.224Q-27.390 16.820-27.623 16.291Q-27.855 15.761-27.855 15.168\" 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=\"M19.955 33.551H82.55V2.253H19.955Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(64.911 6.706)\">\u003Cpath d=\"M-31.343 8.402L-33.808 8.402L-33.808 8.105Q-33.476 8.105-33.218 8.058Q-32.960 8.011-32.960 7.843L-32.960 3.500Q-32.960 3.234-33.808 3.234L-33.808 2.937L-31.343 2.937L-31.343 3.234Q-32.195 3.234-32.195 3.500L-32.195 7.843Q-32.195 8.105-31.343 8.105L-31.343 8.402M-28.882 8.402L-30.738 8.402L-30.738 8.105Q-30.464 8.105-30.296 8.058Q-30.128 8.011-30.128 7.843L-30.128 5.707Q-30.128 5.492-30.191 5.396Q-30.253 5.300-30.373 5.279Q-30.492 5.257-30.738 5.257L-30.738 4.961L-29.546 4.875L-29.546 5.609Q-29.433 5.394-29.240 5.226Q-29.046 5.058-28.808 4.966Q-28.570 4.875-28.316 4.875Q-27.148 4.875-27.148 5.953L-27.148 7.843Q-27.148 8.011-26.978 8.058Q-26.808 8.105-26.539 8.105L-26.539 8.402L-28.394 8.402L-28.394 8.105Q-28.121 8.105-27.953 8.058Q-27.785 8.011-27.785 7.843L-27.785 5.968Q-27.785 5.586-27.906 5.357Q-28.027 5.129-28.378 5.129Q-28.691 5.129-28.945 5.291Q-29.199 5.453-29.345 5.722Q-29.492 5.992-29.492 6.289L-29.492 7.843Q-29.492 8.011-29.322 8.058Q-29.152 8.105-28.882 8.105L-28.882 8.402M-26.050 8.394L-26.050 7.172Q-26.050 7.144-26.019 7.113Q-25.988 7.082-25.964 7.082L-25.859 7.082Q-25.789 7.082-25.773 7.144Q-25.710 7.464-25.572 7.705Q-25.433 7.945-25.201 8.086Q-24.968 8.226-24.660 8.226Q-24.421 8.226-24.212 8.166Q-24.003 8.105-23.867 7.957Q-23.730 7.808-23.730 7.562Q-23.730 7.308-23.941 7.142Q-24.152 6.976-24.421 6.922L-25.042 6.808Q-25.449 6.730-25.750 6.474Q-26.050 6.218-26.050 5.843Q-26.050 5.476-25.849 5.254Q-25.648 5.031-25.324 4.933Q-25 4.836-24.660 4.836Q-24.195 4.836-23.898 5.043L-23.675 4.859Q-23.652 4.836-23.621 4.836L-23.570 4.836Q-23.539 4.836-23.511 4.863Q-23.484 4.890-23.484 4.922L-23.484 5.906Q-23.484 5.937-23.509 5.966Q-23.535 5.996-23.570 5.996L-23.675 5.996Q-23.710 5.996-23.738 5.968Q-23.765 5.941-23.765 5.906Q-23.765 5.507-24.017 5.287Q-24.269 5.066-24.667 5.066Q-25.023 5.066-25.306 5.189Q-25.589 5.312-25.589 5.617Q-25.589 5.836-25.388 5.968Q-25.187 6.101-24.941 6.144L-24.316 6.257Q-23.886 6.347-23.578 6.644Q-23.269 6.941-23.269 7.355Q-23.269 7.925-23.667 8.203Q-24.066 8.480-24.660 8.480Q-25.210 8.480-25.562 8.144L-25.859 8.457Q-25.882 8.480-25.917 8.480L-25.964 8.480Q-25.988 8.480-26.019 8.449Q-26.050 8.418-26.050 8.394M-22.117 7.441L-22.117 5.250L-22.820 5.250L-22.820 4.996Q-22.464 4.996-22.222 4.763Q-21.980 4.531-21.869 4.183Q-21.757 3.836-21.757 3.480L-21.476 3.480L-21.476 4.953L-20.300 4.953L-20.300 5.250L-21.476 5.250L-21.476 7.425Q-21.476 7.746-21.357 7.974Q-21.238 8.203-20.957 8.203Q-20.777 8.203-20.660 8.080Q-20.542 7.957-20.490 7.777Q-20.437 7.597-20.437 7.425L-20.437 6.953L-20.156 6.953L-20.156 7.441Q-20.156 7.695-20.261 7.935Q-20.367 8.175-20.564 8.328Q-20.761 8.480-21.019 8.480Q-21.335 8.480-21.587 8.357Q-21.839 8.234-21.978 8Q-22.117 7.765-22.117 7.441M-17.429 8.402L-19.410 8.402L-19.410 8.105Q-19.140 8.105-18.972 8.060Q-18.804 8.015-18.804 7.843L-18.804 5.707Q-18.804 5.492-18.867 5.396Q-18.929 5.300-19.046 5.279Q-19.164 5.257-19.410 5.257L-19.410 4.961L-18.242 4.875L-18.242 5.660Q-18.164 5.449-18.011 5.263Q-17.859 5.078-17.660 4.976Q-17.460 4.875-17.234 4.875Q-16.988 4.875-16.796 5.019Q-16.605 5.164-16.605 5.394Q-16.605 5.550-16.710 5.660Q-16.816 5.769-16.972 5.769Q-17.128 5.769-17.238 5.660Q-17.347 5.550-17.347 5.394Q-17.347 5.234-17.242 5.129Q-17.566 5.129-17.781 5.357Q-17.996 5.586-18.091 5.925Q-18.187 6.265-18.187 6.570L-18.187 7.843Q-18.187 8.011-17.960 8.058Q-17.734 8.105-17.429 8.105L-17.429 8.402M-15.441 7.449L-15.441 5.707Q-15.441 5.492-15.503 5.396Q-15.566 5.300-15.685 5.279Q-15.804 5.257-16.050 5.257L-16.050 4.961L-14.804 4.875L-14.804 7.425L-14.804 7.449Q-14.804 7.761-14.750 7.923Q-14.695 8.086-14.544 8.156Q-14.394 8.226-14.074 8.226Q-13.644 8.226-13.371 7.888Q-13.097 7.550-13.097 7.105L-13.097 5.707Q-13.097 5.492-13.160 5.396Q-13.222 5.300-13.341 5.279Q-13.460 5.257-13.707 5.257L-13.707 4.961L-12.460 4.875L-12.460 7.660Q-12.460 7.871-12.398 7.966Q-12.335 8.062-12.216 8.084Q-12.097 8.105-11.851 8.105L-11.851 8.402L-13.074 8.480L-13.074 7.859Q-13.242 8.148-13.523 8.314Q-13.804 8.480-14.125 8.480Q-15.441 8.480-15.441 7.449M-11.363 6.675Q-11.363 6.179-11.113 5.754Q-10.863 5.328-10.443 5.082Q-10.023 4.836-9.523 4.836Q-8.984 4.836-8.593 4.961Q-8.203 5.086-8.203 5.500Q-8.203 5.605-8.253 5.697Q-8.304 5.789-8.396 5.839Q-8.488 5.890-8.597 5.890Q-8.703 5.890-8.794 5.839Q-8.886 5.789-8.937 5.697Q-8.988 5.605-8.988 5.500Q-8.988 5.277-8.820 5.172Q-9.042 5.113-9.515 5.113Q-9.812 5.113-10.027 5.252Q-10.242 5.390-10.373 5.621Q-10.503 5.851-10.562 6.121Q-10.621 6.390-10.621 6.675Q-10.621 7.070-10.488 7.420Q-10.355 7.769-10.084 7.986Q-9.812 8.203-9.414 8.203Q-9.039 8.203-8.763 7.986Q-8.488 7.769-8.386 7.410Q-8.371 7.347-8.308 7.347L-8.203 7.347Q-8.167 7.347-8.142 7.375Q-8.117 7.402-8.117 7.441L-8.117 7.464Q-8.250 7.945-8.634 8.213Q-9.019 8.480-9.523 8.480Q-9.886 8.480-10.220 8.343Q-10.554 8.207-10.814 7.957Q-11.074 7.707-11.218 7.371Q-11.363 7.035-11.363 6.675M-7.003 7.441L-7.003 5.250L-7.707 5.250L-7.707 4.996Q-7.351 4.996-7.109 4.763Q-6.867 4.531-6.755 4.183Q-6.644 3.836-6.644 3.480L-6.363 3.480L-6.363 4.953L-5.187 4.953L-5.187 5.250L-6.363 5.250L-6.363 7.425Q-6.363 7.746-6.244 7.974Q-6.125 8.203-5.843 8.203Q-5.664 8.203-5.546 8.080Q-5.429 7.957-5.376 7.777Q-5.324 7.597-5.324 7.425L-5.324 6.953L-5.042 6.953L-5.042 7.441Q-5.042 7.695-5.148 7.935Q-5.253 8.175-5.451 8.328Q-5.648 8.480-5.906 8.480Q-6.222 8.480-6.474 8.357Q-6.726 8.234-6.865 8Q-7.003 7.765-7.003 7.441M-2.464 8.402L-4.242 8.402L-4.242 8.105Q-3.968 8.105-3.800 8.058Q-3.632 8.011-3.632 7.843L-3.632 5.707Q-3.632 5.492-3.689 5.396Q-3.746 5.300-3.859 5.279Q-3.972 5.257-4.218 5.257L-4.218 4.961L-3.019 4.875L-3.019 7.843Q-3.019 8.011-2.873 8.058Q-2.726 8.105-2.464 8.105L-2.464 8.402M-3.906 3.480Q-3.906 3.289-3.771 3.158Q-3.636 3.027-3.441 3.027Q-3.320 3.027-3.216 3.089Q-3.113 3.152-3.050 3.256Q-2.988 3.359-2.988 3.480Q-2.988 3.675-3.119 3.810Q-3.250 3.945-3.441 3.945Q-3.640 3.945-3.773 3.812Q-3.906 3.679-3.906 3.480M-1.964 6.707Q-1.964 6.203-1.709 5.771Q-1.453 5.339-1.017 5.088Q-0.582 4.836-0.082 4.836Q0.305 4.836 0.647 4.980Q0.989 5.125 1.250 5.386Q1.512 5.648 1.655 5.984Q1.797 6.320 1.797 6.707Q1.797 7.199 1.534 7.609Q1.270 8.019 0.840 8.250Q0.411 8.480-0.082 8.480Q-0.574 8.480-1.007 8.248Q-1.441 8.015-1.703 7.607Q-1.964 7.199-1.964 6.707M-0.082 8.203Q0.375 8.203 0.627 7.980Q0.879 7.757 0.967 7.406Q1.055 7.054 1.055 6.609Q1.055 6.179 0.961 5.841Q0.868 5.504 0.614 5.297Q0.360 5.089-0.082 5.089Q-0.730 5.089-0.974 5.506Q-1.218 5.922-1.218 6.609Q-1.218 7.054-1.130 7.406Q-1.042 7.757-0.791 7.980Q-0.539 8.203-0.082 8.203M4.211 8.402L2.356 8.402L2.356 8.105Q2.629 8.105 2.797 8.058Q2.965 8.011 2.965 7.843L2.965 5.707Q2.965 5.492 2.903 5.396Q2.840 5.300 2.721 5.279Q2.602 5.257 2.356 5.257L2.356 4.961L3.547 4.875L3.547 5.609Q3.661 5.394 3.854 5.226Q4.047 5.058 4.286 4.966Q4.524 4.875 4.778 4.875Q5.946 4.875 5.946 5.953L5.946 7.843Q5.946 8.011 6.116 8.058Q6.286 8.105 6.555 8.105L6.555 8.402L4.700 8.402L4.700 8.105Q4.973 8.105 5.141 8.058Q5.309 8.011 5.309 7.843L5.309 5.968Q5.309 5.586 5.188 5.357Q5.067 5.129 4.715 5.129Q4.403 5.129 4.149 5.291Q3.895 5.453 3.749 5.722Q3.602 5.992 3.602 6.289L3.602 7.843Q3.602 8.011 3.772 8.058Q3.942 8.105 4.211 8.105\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.911 6.706)\">\u003Cpath d=\"M-26.487 17.902L-28.343 17.902L-28.343 17.605Q-28.069 17.605-27.901 17.558Q-27.733 17.511-27.733 17.343L-27.733 15.207Q-27.733 14.992-27.796 14.896Q-27.858 14.800-27.977 14.779Q-28.096 14.757-28.343 14.757L-28.343 14.461L-27.151 14.375L-27.151 15.109Q-27.038 14.894-26.844 14.726Q-26.651 14.558-26.413 14.466Q-26.175 14.375-25.921 14.375Q-24.960 14.375-24.784 15.086Q-24.600 14.757-24.272 14.566Q-23.944 14.375-23.565 14.375Q-22.389 14.375-22.389 15.453L-22.389 17.343Q-22.389 17.511-22.221 17.558Q-22.053 17.605-21.784 17.605L-21.784 17.902L-23.639 17.902L-23.639 17.605Q-23.366 17.605-23.198 17.560Q-23.030 17.515-23.030 17.343L-23.030 15.468Q-23.030 15.082-23.155 14.855Q-23.280 14.629-23.632 14.629Q-23.936 14.629-24.192 14.791Q-24.448 14.953-24.596 15.222Q-24.745 15.492-24.745 15.789L-24.745 17.343Q-24.745 17.511-24.575 17.558Q-24.405 17.605-24.135 17.605L-24.135 17.902L-25.991 17.902L-25.991 17.605Q-25.718 17.605-25.550 17.558Q-25.382 17.511-25.382 17.343L-25.382 15.468Q-25.382 15.082-25.507 14.855Q-25.632 14.629-25.983 14.629Q-26.288 14.629-26.544 14.791Q-26.800 14.953-26.948 15.222Q-27.096 15.492-27.096 15.789L-27.096 17.343Q-27.096 17.511-26.926 17.558Q-26.757 17.605-26.487 17.605L-26.487 17.902M-21.339 16.148Q-21.339 15.668-21.106 15.252Q-20.874 14.836-20.464 14.586Q-20.053 14.336-19.577 14.336Q-18.846 14.336-18.448 14.777Q-18.050 15.218-18.050 15.949Q-18.050 16.054-18.143 16.078L-20.593 16.078L-20.593 16.148Q-20.593 16.558-20.471 16.914Q-20.350 17.269-20.079 17.486Q-19.807 17.703-19.378 17.703Q-19.014 17.703-18.718 17.474Q-18.421 17.246-18.319 16.894Q-18.311 16.847-18.225 16.832L-18.143 16.832Q-18.050 16.859-18.050 16.941Q-18.050 16.949-18.057 16.980Q-18.120 17.207-18.259 17.390Q-18.397 17.574-18.589 17.707Q-18.780 17.840-18.999 17.910Q-19.218 17.980-19.456 17.980Q-19.827 17.980-20.165 17.843Q-20.503 17.707-20.770 17.455Q-21.038 17.203-21.188 16.863Q-21.339 16.523-21.339 16.148M-20.585 15.840L-18.624 15.840Q-18.624 15.535-18.725 15.244Q-18.827 14.953-19.044 14.771Q-19.260 14.590-19.577 14.590Q-19.878 14.590-20.108 14.777Q-20.339 14.965-20.462 15.256Q-20.585 15.547-20.585 15.840M-15.632 17.902L-17.487 17.902L-17.487 17.605Q-17.214 17.605-17.046 17.558Q-16.878 17.511-16.878 17.343L-16.878 15.207Q-16.878 14.992-16.940 14.896Q-17.003 14.800-17.122 14.779Q-17.241 14.757-17.487 14.757L-17.487 14.461L-16.296 14.375L-16.296 15.109Q-16.182 14.894-15.989 14.726Q-15.796 14.558-15.557 14.466Q-15.319 14.375-15.065 14.375Q-14.104 14.375-13.928 15.086Q-13.745 14.757-13.417 14.566Q-13.089 14.375-12.710 14.375Q-11.534 14.375-11.534 15.453L-11.534 17.343Q-11.534 17.511-11.366 17.558Q-11.198 17.605-10.928 17.605L-10.928 17.902L-12.784 17.902L-12.784 17.605Q-12.510 17.605-12.343 17.560Q-12.175 17.515-12.175 17.343L-12.175 15.468Q-12.175 15.082-12.300 14.855Q-12.425 14.629-12.776 14.629Q-13.081 14.629-13.337 14.791Q-13.593 14.953-13.741 15.222Q-13.889 15.492-13.889 15.789L-13.889 17.343Q-13.889 17.511-13.719 17.558Q-13.550 17.605-13.280 17.605L-13.280 17.902L-15.135 17.902L-15.135 17.605Q-14.862 17.605-14.694 17.558Q-14.526 17.511-14.526 17.343L-14.526 15.468Q-14.526 15.082-14.651 14.855Q-14.776 14.629-15.128 14.629Q-15.432 14.629-15.688 14.791Q-15.944 14.953-16.093 15.222Q-16.241 15.492-16.241 15.789L-16.241 17.343Q-16.241 17.511-16.071 17.558Q-15.901 17.605-15.632 17.605L-15.632 17.902M-10.483 16.207Q-10.483 15.703-10.227 15.271Q-9.971 14.840-9.536 14.588Q-9.100 14.336-8.600 14.336Q-8.214 14.336-7.872 14.480Q-7.530 14.625-7.268 14.886Q-7.007 15.148-6.864 15.484Q-6.721 15.820-6.721 16.207Q-6.721 16.699-6.985 17.109Q-7.249 17.519-7.678 17.750Q-8.108 17.980-8.600 17.980Q-9.093 17.980-9.526 17.748Q-9.960 17.515-10.221 17.107Q-10.483 16.699-10.483 16.207M-8.600 17.703Q-8.143 17.703-7.891 17.480Q-7.639 17.257-7.551 16.906Q-7.464 16.554-7.464 16.109Q-7.464 15.679-7.557 15.341Q-7.651 15.004-7.905 14.797Q-8.159 14.590-8.600 14.590Q-9.249 14.590-9.493 15.006Q-9.737 15.422-9.737 16.109Q-9.737 16.554-9.649 16.906Q-9.561 17.257-9.309 17.480Q-9.057 17.703-8.600 17.703M-4.229 17.902L-6.210 17.902L-6.210 17.605Q-5.940 17.605-5.772 17.560Q-5.604 17.515-5.604 17.343L-5.604 15.207Q-5.604 14.992-5.667 14.896Q-5.729 14.800-5.846 14.779Q-5.964 14.757-6.210 14.757L-6.210 14.461L-5.042 14.375L-5.042 15.160Q-4.964 14.949-4.811 14.763Q-4.659 14.578-4.460 14.476Q-4.260 14.375-4.034 14.375Q-3.788 14.375-3.596 14.519Q-3.405 14.664-3.405 14.894Q-3.405 15.050-3.510 15.160Q-3.616 15.269-3.772 15.269Q-3.928 15.269-4.038 15.160Q-4.147 15.050-4.147 14.894Q-4.147 14.734-4.042 14.629Q-4.366 14.629-4.581 14.857Q-4.796 15.086-4.891 15.425Q-4.987 15.765-4.987 16.070L-4.987 17.343Q-4.987 17.511-4.760 17.558Q-4.534 17.605-4.229 17.605L-4.229 17.902M-2.507 19.199Q-2.393 19.277-2.218 19.277Q-1.928 19.277-1.708 19.064Q-1.487 18.851-1.362 18.550L-1.073 17.902L-2.346 15.015Q-2.428 14.840-2.573 14.795Q-2.718 14.750-2.987 14.750L-2.987 14.453L-1.268 14.453L-1.268 14.750Q-1.690 14.750-1.690 14.933Q-1.690 14.945-1.675 15.015L-0.737 17.140L0.095 15.230Q0.134 15.140 0.134 15.062Q0.134 14.922 0.032 14.836Q-0.069 14.750-0.210 14.750L-0.210 14.453L1.142 14.453L1.142 14.750Q0.888 14.750 0.695 14.875Q0.501 15 0.396 15.230L-1.050 18.550Q-1.163 18.804-1.329 19.027Q-1.495 19.250-1.723 19.392Q-1.952 19.535-2.218 19.535Q-2.514 19.535-2.755 19.343Q-2.995 19.152-2.995 18.863Q-2.995 18.707-2.889 18.605Q-2.784 18.504-2.635 18.504Q-2.530 18.504-2.450 18.550Q-2.370 18.597-2.323 18.675Q-2.276 18.754-2.276 18.863Q-2.276 18.984-2.337 19.072Q-2.397 19.160-2.507 19.199\" 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=\"M116.694 33.551h62.596V2.253h-62.596Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(166.902 7.483)\">\u003Cpath d=\"M-31.394 8.402L-33.753 8.402L-33.753 8.105Q-33.429 8.105-33.187 8.058Q-32.945 8.011-32.945 7.843L-32.945 3.500Q-32.945 3.328-33.187 3.281Q-33.429 3.234-33.753 3.234L-33.753 2.937L-31.160 2.937Q-30.828 2.937-30.441 3.023Q-30.054 3.109-29.707 3.283Q-29.359 3.457-29.140 3.738Q-28.921 4.019-28.921 4.386Q-28.921 4.711-29.123 4.976Q-29.324 5.242-29.630 5.418Q-29.937 5.593-30.265 5.683Q-29.898 5.804-29.638 6.074Q-29.378 6.343-29.328 6.707L-29.234 7.402Q-29.164 7.851-29.066 8.082Q-28.968 8.312-28.671 8.312Q-28.425 8.312-28.292 8.095Q-28.160 7.879-28.160 7.617Q-28.140 7.543-28.058 7.523L-27.976 7.523Q-27.882 7.547-27.882 7.640Q-27.882 7.871-27.980 8.086Q-28.078 8.300-28.255 8.435Q-28.433 8.570-28.664 8.570Q-29.261 8.570-29.679 8.283Q-30.097 7.996-30.097 7.425L-30.097 6.730Q-30.097 6.449-30.250 6.234Q-30.402 6.019-30.652 5.906Q-30.902 5.793-31.175 5.793L-32.203 5.793L-32.203 7.843Q-32.203 8.007-31.959 8.056Q-31.714 8.105-31.394 8.105L-31.394 8.402M-32.203 3.500L-32.203 5.539L-31.273 5.539Q-30.953 5.539-30.685 5.486Q-30.417 5.433-30.218 5.306Q-30.019 5.179-29.902 4.947Q-29.785 4.714-29.785 4.386Q-29.785 3.734-30.181 3.484Q-30.578 3.234-31.273 3.234L-31.800 3.234Q-32.019 3.234-32.111 3.277Q-32.203 3.320-32.203 3.500M-27.621 6.648Q-27.621 6.168-27.388 5.752Q-27.156 5.336-26.746 5.086Q-26.335 4.836-25.859 4.836Q-25.128 4.836-24.730 5.277Q-24.332 5.718-24.332 6.449Q-24.332 6.554-24.425 6.578L-26.875 6.578L-26.875 6.648Q-26.875 7.058-26.753 7.414Q-26.632 7.769-26.361 7.986Q-26.089 8.203-25.660 8.203Q-25.296 8.203-25 7.974Q-24.703 7.746-24.601 7.394Q-24.593 7.347-24.507 7.332L-24.425 7.332Q-24.332 7.359-24.332 7.441Q-24.332 7.449-24.339 7.480Q-24.402 7.707-24.541 7.890Q-24.679 8.074-24.871 8.207Q-25.062 8.339-25.281 8.410Q-25.500 8.480-25.738 8.480Q-26.109 8.480-26.447 8.343Q-26.785 8.207-27.052 7.955Q-27.320 7.703-27.470 7.363Q-27.621 7.023-27.621 6.648M-26.867 6.339L-24.906 6.339Q-24.906 6.035-25.007 5.744Q-25.109 5.453-25.326 5.271Q-25.542 5.089-25.859 5.089Q-26.160 5.089-26.390 5.277Q-26.621 5.464-26.744 5.756Q-26.867 6.047-26.867 6.339M-23.843 9.011Q-23.843 8.730-23.632 8.519Q-23.421 8.308-23.136 8.218Q-23.292 8.093-23.371 7.904Q-23.449 7.714-23.449 7.515Q-23.449 7.160-23.218 6.867Q-23.585 6.527-23.585 6.058Q-23.585 5.707-23.382 5.437Q-23.179 5.168-22.859 5.021Q-22.539 4.875-22.195 4.875Q-21.675 4.875-21.304 5.156Q-20.941 4.785-20.394 4.785Q-20.214 4.785-20.087 4.912Q-19.960 5.039-19.960 5.218Q-19.960 5.324-20.039 5.402Q-20.117 5.480-20.226 5.480Q-20.335 5.480-20.412 5.404Q-20.488 5.328-20.488 5.218Q-20.488 5.117-20.449 5.066Q-20.441 5.058-20.437 5.052Q-20.433 5.047-20.433 5.043Q-20.808 5.043-21.128 5.297Q-20.808 5.636-20.808 6.058Q-20.808 6.328-20.925 6.545Q-21.042 6.761-21.248 6.920Q-21.453 7.078-21.695 7.160Q-21.937 7.242-22.195 7.242Q-22.414 7.242-22.626 7.183Q-22.839 7.125-23.035 7.004Q-23.128 7.144-23.128 7.324Q-23.128 7.531-22.992 7.683Q-22.855 7.836-22.648 7.836L-21.953 7.836Q-21.464 7.836-21.052 7.920Q-20.640 8.004-20.361 8.261Q-20.082 8.519-20.082 9.011Q-20.082 9.375-20.402 9.607Q-20.722 9.839-21.164 9.941Q-21.605 10.043-21.960 10.043Q-22.316 10.043-22.759 9.941Q-23.203 9.839-23.523 9.607Q-23.843 9.375-23.843 9.011M-23.339 9.011Q-23.339 9.207-23.195 9.355Q-23.050 9.504-22.837 9.593Q-22.625 9.683-22.384 9.730Q-22.144 9.777-21.960 9.777Q-21.718 9.777-21.388 9.699Q-21.058 9.621-20.822 9.447Q-20.585 9.273-20.585 9.011Q-20.585 8.605-20.996 8.496Q-21.406 8.386-21.968 8.386L-22.648 8.386Q-22.917 8.386-23.128 8.564Q-23.339 8.742-23.339 9.011M-22.195 6.976Q-21.472 6.976-21.472 6.058Q-21.472 5.136-22.195 5.136Q-22.921 5.136-22.921 6.058Q-22.921 6.976-22.195 6.976M-17.738 8.402L-19.515 8.402L-19.515 8.105Q-19.242 8.105-19.074 8.058Q-18.906 8.011-18.906 7.843L-18.906 5.707Q-18.906 5.492-18.962 5.396Q-19.019 5.300-19.132 5.279Q-19.246 5.257-19.492 5.257L-19.492 4.961L-18.292 4.875L-18.292 7.843Q-18.292 8.011-18.146 8.058Q-18 8.105-17.738 8.105L-17.738 8.402M-19.179 3.480Q-19.179 3.289-19.044 3.158Q-18.910 3.027-18.714 3.027Q-18.593 3.027-18.490 3.089Q-18.386 3.152-18.324 3.256Q-18.261 3.359-18.261 3.480Q-18.261 3.675-18.392 3.810Q-18.523 3.945-18.714 3.945Q-18.914 3.945-19.046 3.812Q-19.179 3.679-19.179 3.480M-17.195 8.394L-17.195 7.172Q-17.195 7.144-17.164 7.113Q-17.132 7.082-17.109 7.082L-17.003 7.082Q-16.933 7.082-16.917 7.144Q-16.855 7.464-16.716 7.705Q-16.578 7.945-16.345 8.086Q-16.113 8.226-15.804 8.226Q-15.566 8.226-15.357 8.166Q-15.148 8.105-15.011 7.957Q-14.875 7.808-14.875 7.562Q-14.875 7.308-15.085 7.142Q-15.296 6.976-15.566 6.922L-16.187 6.808Q-16.593 6.730-16.894 6.474Q-17.195 6.218-17.195 5.843Q-17.195 5.476-16.994 5.254Q-16.792 5.031-16.468 4.933Q-16.144 4.836-15.804 4.836Q-15.339 4.836-15.042 5.043L-14.820 4.859Q-14.796 4.836-14.765 4.836L-14.714 4.836Q-14.683 4.836-14.656 4.863Q-14.628 4.890-14.628 4.922L-14.628 5.906Q-14.628 5.937-14.654 5.966Q-14.679 5.996-14.714 5.996L-14.820 5.996Q-14.855 5.996-14.882 5.968Q-14.910 5.941-14.910 5.906Q-14.910 5.507-15.162 5.287Q-15.414 5.066-15.812 5.066Q-16.167 5.066-16.451 5.189Q-16.734 5.312-16.734 5.617Q-16.734 5.836-16.533 5.968Q-16.332 6.101-16.085 6.144L-15.460 6.257Q-15.031 6.347-14.722 6.644Q-14.414 6.941-14.414 7.355Q-14.414 7.925-14.812 8.203Q-15.210 8.480-15.804 8.480Q-16.355 8.480-16.707 8.144L-17.003 8.457Q-17.027 8.480-17.062 8.480L-17.109 8.480Q-17.132 8.480-17.164 8.449Q-17.195 8.418-17.195 8.394M-13.261 7.441L-13.261 5.250L-13.964 5.250L-13.964 4.996Q-13.609 4.996-13.367 4.763Q-13.125 4.531-13.013 4.183Q-12.902 3.836-12.902 3.480L-12.621 3.480L-12.621 4.953L-11.445 4.953L-11.445 5.250L-12.621 5.250L-12.621 7.425Q-12.621 7.746-12.501 7.974Q-12.382 8.203-12.101 8.203Q-11.921 8.203-11.804 8.080Q-11.687 7.957-11.634 7.777Q-11.582 7.597-11.582 7.425L-11.582 6.953L-11.300 6.953L-11.300 7.441Q-11.300 7.695-11.406 7.935Q-11.511 8.175-11.709 8.328Q-11.906 8.480-12.164 8.480Q-12.480 8.480-12.732 8.357Q-12.984 8.234-13.123 8Q-13.261 7.765-13.261 7.441M-10.582 6.648Q-10.582 6.168-10.349 5.752Q-10.117 5.336-9.707 5.086Q-9.296 4.836-8.820 4.836Q-8.089 4.836-7.691 5.277Q-7.292 5.718-7.292 6.449Q-7.292 6.554-7.386 6.578L-9.835 6.578L-9.835 6.648Q-9.835 7.058-9.714 7.414Q-9.593 7.769-9.322 7.986Q-9.050 8.203-8.621 8.203Q-8.257 8.203-7.960 7.974Q-7.664 7.746-7.562 7.394Q-7.554 7.347-7.468 7.332L-7.386 7.332Q-7.292 7.359-7.292 7.441Q-7.292 7.449-7.300 7.480Q-7.363 7.707-7.501 7.890Q-7.640 8.074-7.832 8.207Q-8.023 8.339-8.242 8.410Q-8.460 8.480-8.699 8.480Q-9.070 8.480-9.408 8.343Q-9.746 8.207-10.013 7.955Q-10.281 7.703-10.431 7.363Q-10.582 7.023-10.582 6.648M-9.828 6.339L-7.867 6.339Q-7.867 6.035-7.968 5.744Q-8.070 5.453-8.287 5.271Q-8.503 5.089-8.820 5.089Q-9.121 5.089-9.351 5.277Q-9.582 5.464-9.705 5.756Q-9.828 6.047-9.828 6.339M-4.796 8.402L-6.777 8.402L-6.777 8.105Q-6.507 8.105-6.339 8.060Q-6.171 8.015-6.171 7.843L-6.171 5.707Q-6.171 5.492-6.234 5.396Q-6.296 5.300-6.414 5.279Q-6.531 5.257-6.777 5.257L-6.777 4.961L-5.609 4.875L-5.609 5.660Q-5.531 5.449-5.378 5.263Q-5.226 5.078-5.027 4.976Q-4.828 4.875-4.601 4.875Q-4.355 4.875-4.164 5.019Q-3.972 5.164-3.972 5.394Q-3.972 5.550-4.078 5.660Q-4.183 5.769-4.339 5.769Q-4.496 5.769-4.605 5.660Q-4.714 5.550-4.714 5.394Q-4.714 5.234-4.609 5.129Q-4.933 5.129-5.148 5.357Q-5.363 5.586-5.459 5.925Q-5.554 6.265-5.554 6.570L-5.554 7.843Q-5.554 8.011-5.328 8.058Q-5.101 8.105-4.796 8.105\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.902 7.483)\">\u003Cpath d=\"M-22.470 17.902L-24.455 17.902L-24.455 17.605Q-24.181 17.605-24.013 17.558Q-23.845 17.511-23.845 17.343L-23.845 14.750L-24.486 14.750L-24.486 14.453L-23.845 14.453L-23.845 13.519Q-23.845 13.254-23.728 13.017Q-23.611 12.781-23.418 12.617Q-23.224 12.453-22.976 12.361Q-22.728 12.269-22.462 12.269Q-22.177 12.269-21.953 12.427Q-21.728 12.586-21.728 12.863Q-21.728 13.019-21.834 13.129Q-21.939 13.238-22.103 13.238Q-22.259 13.238-22.369 13.129Q-22.478 13.019-22.478 12.863Q-22.478 12.656-22.318 12.550Q-22.416 12.527-22.509 12.527Q-22.740 12.527-22.912 12.683Q-23.084 12.840-23.170 13.076Q-23.255 13.312-23.255 13.535L-23.255 14.453L-22.287 14.453L-22.287 14.750L-23.232 14.750L-23.232 17.343Q-23.232 17.511-23.005 17.558Q-22.779 17.605-22.470 17.605\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.902 7.483)\">\u003Cpath d=\"M-19.447 17.902L-21.225 17.902L-21.225 17.605Q-20.951 17.605-20.783 17.558Q-20.615 17.511-20.615 17.343L-20.615 15.207Q-20.615 14.992-20.672 14.896Q-20.729 14.800-20.842 14.779Q-20.955 14.757-21.201 14.757L-21.201 14.461L-20.002 14.375L-20.002 17.343Q-20.002 17.511-19.856 17.558Q-19.709 17.605-19.447 17.605L-19.447 17.902M-20.889 12.980Q-20.889 12.789-20.754 12.658Q-20.619 12.527-20.424 12.527Q-20.303 12.527-20.199 12.590Q-20.096 12.652-20.033 12.756Q-19.971 12.859-19.971 12.980Q-19.971 13.175-20.102 13.310Q-20.233 13.445-20.424 13.445Q-20.623 13.445-20.756 13.312Q-20.889 13.179-20.889 12.980M-17.033 17.902L-18.865 17.902L-18.865 17.605Q-18.592 17.605-18.424 17.558Q-18.256 17.511-18.256 17.343L-18.256 13.183Q-18.256 12.968-18.318 12.873Q-18.381 12.777-18.500 12.756Q-18.619 12.734-18.865 12.734L-18.865 12.437L-17.643 12.351L-17.643 17.343Q-17.643 17.511-17.475 17.558Q-17.307 17.605-17.033 17.605L-17.033 17.902M-16.588 16.148Q-16.588 15.668-16.356 15.252Q-16.123 14.836-15.713 14.586Q-15.303 14.336-14.826 14.336Q-14.096 14.336-13.697 14.777Q-13.299 15.218-13.299 15.949Q-13.299 16.054-13.393 16.078L-15.842 16.078L-15.842 16.148Q-15.842 16.558-15.721 16.914Q-15.600 17.269-15.328 17.486Q-15.057 17.703-14.627 17.703Q-14.264 17.703-13.967 17.474Q-13.670 17.246-13.568 16.894Q-13.561 16.847-13.475 16.832L-13.393 16.832Q-13.299 16.859-13.299 16.941Q-13.299 16.949-13.307 16.980Q-13.369 17.207-13.508 17.390Q-13.647 17.574-13.838 17.707Q-14.029 17.840-14.248 17.910Q-14.467 17.980-14.705 17.980Q-15.076 17.980-15.414 17.843Q-15.752 17.707-16.020 17.455Q-16.287 17.203-16.438 16.863Q-16.588 16.523-16.588 16.148M-15.834 15.840L-13.873 15.840Q-13.873 15.535-13.975 15.244Q-14.076 14.953-14.293 14.771Q-14.510 14.590-14.826 14.590Q-15.127 14.590-15.358 14.777Q-15.588 14.965-15.711 15.256Q-15.834 15.547-15.834 15.840\" 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=\"M213.434 33.551h62.596V2.253h-62.596Z\"\u002F>\u003Cg transform=\"translate(269.816 2.733)\">\u003Cpath d=\"M-32.066 17.902L-33.816 17.902L-33.816 17.605Q-33.117 17.605-32.929 17.125L-31.128 12.300Q-31.074 12.191-30.960 12.191L-30.890 12.191Q-30.777 12.191-30.722 12.300L-28.832 17.343Q-28.753 17.511-28.550 17.558Q-28.347 17.605-28.035 17.605L-28.035 17.902L-30.257 17.902L-30.257 17.605Q-29.617 17.605-29.617 17.390Q-29.617 17.371-29.619 17.361Q-29.621 17.351-29.625 17.343L-30.089 16.109L-32.234 16.109L-32.617 17.125Q-32.621 17.140-32.626 17.170Q-32.632 17.199-32.632 17.222Q-32.632 17.363-32.542 17.447Q-32.453 17.531-32.320 17.568Q-32.187 17.605-32.066 17.605L-32.066 17.902M-31.160 13.246L-32.128 15.812L-30.203 15.812L-31.160 13.246M-23.027 17.902L-27.410 17.902L-27.410 17.605Q-27.089 17.605-26.845 17.558Q-26.601 17.511-26.601 17.343L-26.601 13Q-26.601 12.828-26.845 12.781Q-27.089 12.734-27.410 12.734L-27.410 12.437L-24.824 12.437L-24.824 12.734Q-25.835 12.734-25.835 13L-25.835 17.343Q-25.835 17.515-25.744 17.560Q-25.652 17.605-25.433 17.605L-24.746 17.605Q-24.273 17.605-23.964 17.480Q-23.656 17.355-23.478 17.125Q-23.300 16.894-23.209 16.568Q-23.117 16.242-23.074 15.789L-22.792 15.789L-23.027 17.902M-21.296 16.093L-21.296 13Q-21.296 12.828-21.541 12.781Q-21.785 12.734-22.105 12.734L-22.105 12.437L-19.722 12.437L-19.722 12.734Q-20.042 12.734-20.287 12.783Q-20.531 12.832-20.531 13L-20.531 16.070Q-20.531 16.793-20.187 17.283Q-19.843 17.773-19.144 17.773Q-18.679 17.773-18.308 17.543Q-17.937 17.312-17.728 16.920Q-17.519 16.527-17.519 16.070L-17.519 13.215Q-17.519 12.734-18.328 12.734L-18.328 12.437L-16.417 12.437L-16.417 12.734Q-17.226 12.734-17.226 13.215L-17.226 16.093Q-17.226 16.613-17.480 17.070Q-17.734 17.527-18.175 17.798Q-18.617 18.070-19.144 18.070Q-19.554 18.070-19.935 17.927Q-20.316 17.785-20.628 17.515Q-20.941 17.246-21.119 16.879Q-21.296 16.511-21.296 16.093\" 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=\"M213.434 107.528h62.596V76.23h-62.596Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(263.84 80.683)\">\u003Cpath d=\"M-24.842 8.402L-27.904 8.402L-27.904 8.105Q-27.580 8.105-27.338 8.058Q-27.096 8.011-27.096 7.843L-27.096 3.500Q-27.096 3.328-27.338 3.281Q-27.580 3.234-27.904 3.234L-27.904 2.937L-24.842 2.937Q-24.291 2.937-23.813 3.164Q-23.334 3.390-22.981 3.785Q-22.627 4.179-22.438 4.679Q-22.248 5.179-22.248 5.722Q-22.248 6.429-22.592 7.047Q-22.936 7.664-23.531 8.033Q-24.127 8.402-24.842 8.402M-26.354 3.500L-26.354 7.843Q-26.354 8.015-26.262 8.060Q-26.170 8.105-25.951 8.105L-25.057 8.105Q-24.611 8.105-24.219 7.935Q-23.826 7.765-23.555 7.441Q-23.283 7.117-23.186 6.697Q-23.088 6.277-23.088 5.722Q-23.088 5.367-23.125 5.054Q-23.162 4.742-23.268 4.447Q-23.373 4.152-23.553 3.929Q-23.736 3.695-23.975 3.545Q-24.213 3.394-24.494 3.314Q-24.776 3.234-25.057 3.234L-25.951 3.234Q-26.170 3.234-26.262 3.277Q-26.354 3.320-26.354 3.500M-21.432 7.570Q-21.432 7.086-21.029 6.791Q-20.627 6.496-20.076 6.377Q-19.526 6.257-19.033 6.257L-19.033 5.968Q-19.033 5.742-19.149 5.535Q-19.264 5.328-19.461 5.209Q-19.658 5.089-19.889 5.089Q-20.315 5.089-20.600 5.195Q-20.529 5.222-20.483 5.277Q-20.436 5.332-20.410 5.402Q-20.385 5.472-20.385 5.547Q-20.385 5.652-20.436 5.744Q-20.486 5.836-20.578 5.886Q-20.670 5.937-20.776 5.937Q-20.881 5.937-20.973 5.886Q-21.065 5.836-21.115 5.744Q-21.166 5.652-21.166 5.547Q-21.166 5.129-20.777 4.982Q-20.389 4.836-19.889 4.836Q-19.557 4.836-19.203 4.966Q-18.850 5.097-18.621 5.351Q-18.393 5.605-18.393 5.953L-18.393 7.754Q-18.393 7.886-18.320 7.996Q-18.248 8.105-18.119 8.105Q-17.994 8.105-17.926 8Q-17.858 7.894-17.858 7.754L-17.858 7.242L-17.576 7.242L-17.576 7.754Q-17.576 7.957-17.694 8.115Q-17.811 8.273-17.992 8.357Q-18.174 8.441-18.377 8.441Q-18.608 8.441-18.760 8.269Q-18.912 8.097-18.944 7.867Q-19.104 8.148-19.412 8.314Q-19.721 8.480-20.072 8.480Q-20.584 8.480-21.008 8.257Q-21.432 8.035-21.432 7.570M-20.744 7.570Q-20.744 7.855-20.518 8.041Q-20.291 8.226-19.998 8.226Q-19.752 8.226-19.527 8.109Q-19.303 7.992-19.168 7.789Q-19.033 7.586-19.033 7.332L-19.033 6.500Q-19.299 6.500-19.584 6.554Q-19.869 6.609-20.141 6.738Q-20.412 6.867-20.578 7.074Q-20.744 7.281-20.744 7.570M-16.658 7.441L-16.658 5.250L-17.361 5.250L-17.361 4.996Q-17.006 4.996-16.764 4.763Q-16.522 4.531-16.410 4.183Q-16.299 3.836-16.299 3.480L-16.018 3.480L-16.018 4.953L-14.842 4.953L-14.842 5.250L-16.018 5.250L-16.018 7.425Q-16.018 7.746-15.899 7.974Q-15.779 8.203-15.498 8.203Q-15.319 8.203-15.201 8.080Q-15.084 7.957-15.031 7.777Q-14.979 7.597-14.979 7.425L-14.979 6.953L-14.697 6.953L-14.697 7.441Q-14.697 7.695-14.803 7.935Q-14.908 8.175-15.106 8.328Q-15.303 8.480-15.561 8.480Q-15.877 8.480-16.129 8.357Q-16.381 8.234-16.520 8Q-16.658 7.765-16.658 7.441M-13.881 7.570Q-13.881 7.086-13.479 6.791Q-13.076 6.496-12.526 6.377Q-11.975 6.257-11.483 6.257L-11.483 5.968Q-11.483 5.742-11.598 5.535Q-11.713 5.328-11.910 5.209Q-12.108 5.089-12.338 5.089Q-12.764 5.089-13.049 5.195Q-12.979 5.222-12.932 5.277Q-12.885 5.332-12.860 5.402Q-12.834 5.472-12.834 5.547Q-12.834 5.652-12.885 5.744Q-12.936 5.836-13.027 5.886Q-13.119 5.937-13.225 5.937Q-13.330 5.937-13.422 5.886Q-13.514 5.836-13.565 5.744Q-13.615 5.652-13.615 5.547Q-13.615 5.129-13.227 4.982Q-12.838 4.836-12.338 4.836Q-12.006 4.836-11.652 4.966Q-11.299 5.097-11.070 5.351Q-10.842 5.605-10.842 5.953L-10.842 7.754Q-10.842 7.886-10.770 7.996Q-10.697 8.105-10.569 8.105Q-10.444 8.105-10.375 8Q-10.307 7.894-10.307 7.754L-10.307 7.242L-10.026 7.242L-10.026 7.754Q-10.026 7.957-10.143 8.115Q-10.260 8.273-10.442 8.357Q-10.623 8.441-10.826 8.441Q-11.057 8.441-11.209 8.269Q-11.361 8.097-11.393 7.867Q-11.553 8.148-11.861 8.314Q-12.170 8.480-12.522 8.480Q-13.033 8.480-13.457 8.257Q-13.881 8.035-13.881 7.570M-13.194 7.570Q-13.194 7.855-12.967 8.041Q-12.740 8.226-12.447 8.226Q-12.201 8.226-11.977 8.109Q-11.752 7.992-11.617 7.789Q-11.483 7.586-11.483 7.332L-11.483 6.500Q-11.748 6.500-12.033 6.554Q-12.319 6.609-12.590 6.738Q-12.861 6.867-13.027 7.074Q-13.194 7.281-13.194 7.570\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(263.84 80.683)\">\u003Cpath d=\"M-31.937 17.902L-33.792 17.902L-33.792 17.605Q-33.519 17.605-33.351 17.558Q-33.183 17.511-33.183 17.343L-33.183 15.207Q-33.183 14.992-33.246 14.896Q-33.308 14.800-33.427 14.779Q-33.546 14.757-33.792 14.757L-33.792 14.461L-32.601 14.375L-32.601 15.109Q-32.488 14.894-32.294 14.726Q-32.101 14.558-31.863 14.466Q-31.625 14.375-31.371 14.375Q-30.410 14.375-30.234 15.086Q-30.050 14.757-29.722 14.566Q-29.394 14.375-29.015 14.375Q-27.839 14.375-27.839 15.453L-27.839 17.343Q-27.839 17.511-27.671 17.558Q-27.503 17.605-27.234 17.605L-27.234 17.902L-29.089 17.902L-29.089 17.605Q-28.816 17.605-28.648 17.560Q-28.480 17.515-28.480 17.343L-28.480 15.468Q-28.480 15.082-28.605 14.855Q-28.730 14.629-29.082 14.629Q-29.386 14.629-29.642 14.791Q-29.898 14.953-30.046 15.222Q-30.195 15.492-30.195 15.789L-30.195 17.343Q-30.195 17.511-30.025 17.558Q-29.855 17.605-29.585 17.605L-29.585 17.902L-31.441 17.902L-31.441 17.605Q-31.167 17.605-31 17.558Q-30.832 17.511-30.832 17.343L-30.832 15.468Q-30.832 15.082-30.957 14.855Q-31.082 14.629-31.433 14.629Q-31.738 14.629-31.994 14.791Q-32.250 14.953-32.398 15.222Q-32.546 15.492-32.546 15.789L-32.546 17.343Q-32.546 17.511-32.376 17.558Q-32.207 17.605-31.937 17.605L-31.937 17.902M-26.789 16.148Q-26.789 15.668-26.556 15.252Q-26.324 14.836-25.914 14.586Q-25.503 14.336-25.027 14.336Q-24.296 14.336-23.898 14.777Q-23.500 15.218-23.500 15.949Q-23.500 16.054-23.593 16.078L-26.042 16.078L-26.042 16.148Q-26.042 16.558-25.921 16.914Q-25.800 17.269-25.529 17.486Q-25.257 17.703-24.828 17.703Q-24.464 17.703-24.167 17.474Q-23.871 17.246-23.769 16.894Q-23.761 16.847-23.675 16.832L-23.593 16.832Q-23.500 16.859-23.500 16.941Q-23.500 16.949-23.507 16.980Q-23.570 17.207-23.709 17.390Q-23.847 17.574-24.039 17.707Q-24.230 17.840-24.449 17.910Q-24.667 17.980-24.906 17.980Q-25.277 17.980-25.615 17.843Q-25.953 17.707-26.220 17.455Q-26.488 17.203-26.638 16.863Q-26.789 16.523-26.789 16.148M-26.035 15.840L-24.074 15.840Q-24.074 15.535-24.175 15.244Q-24.277 14.953-24.494 14.771Q-24.710 14.590-25.027 14.590Q-25.328 14.590-25.558 14.777Q-25.789 14.965-25.912 15.256Q-26.035 15.547-26.035 15.840M-21.082 17.902L-22.937 17.902L-22.937 17.605Q-22.664 17.605-22.496 17.558Q-22.328 17.511-22.328 17.343L-22.328 15.207Q-22.328 14.992-22.390 14.896Q-22.453 14.800-22.572 14.779Q-22.691 14.757-22.937 14.757L-22.937 14.461L-21.746 14.375L-21.746 15.109Q-21.632 14.894-21.439 14.726Q-21.246 14.558-21.007 14.466Q-20.769 14.375-20.515 14.375Q-19.554 14.375-19.378 15.086Q-19.195 14.757-18.867 14.566Q-18.539 14.375-18.160 14.375Q-16.984 14.375-16.984 15.453L-16.984 17.343Q-16.984 17.511-16.816 17.558Q-16.648 17.605-16.378 17.605L-16.378 17.902L-18.234 17.902L-18.234 17.605Q-17.960 17.605-17.792 17.560Q-17.625 17.515-17.625 17.343L-17.625 15.468Q-17.625 15.082-17.750 14.855Q-17.875 14.629-18.226 14.629Q-18.531 14.629-18.787 14.791Q-19.042 14.953-19.191 15.222Q-19.339 15.492-19.339 15.789L-19.339 17.343Q-19.339 17.511-19.169 17.558Q-19 17.605-18.730 17.605L-18.730 17.902L-20.585 17.902L-20.585 17.605Q-20.312 17.605-20.144 17.558Q-19.976 17.511-19.976 17.343L-19.976 15.468Q-19.976 15.082-20.101 14.855Q-20.226 14.629-20.578 14.629Q-20.882 14.629-21.138 14.791Q-21.394 14.953-21.542 15.222Q-21.691 15.492-21.691 15.789L-21.691 17.343Q-21.691 17.511-21.521 17.558Q-21.351 17.605-21.082 17.605L-21.082 17.902M-15.933 16.207Q-15.933 15.703-15.677 15.271Q-15.421 14.840-14.986 14.588Q-14.550 14.336-14.050 14.336Q-13.664 14.336-13.322 14.480Q-12.980 14.625-12.718 14.886Q-12.457 15.148-12.314 15.484Q-12.171 15.820-12.171 16.207Q-12.171 16.699-12.435 17.109Q-12.699 17.519-13.128 17.750Q-13.558 17.980-14.050 17.980Q-14.542 17.980-14.976 17.748Q-15.410 17.515-15.671 17.107Q-15.933 16.699-15.933 16.207M-14.050 17.703Q-13.593 17.703-13.341 17.480Q-13.089 17.257-13.001 16.906Q-12.914 16.554-12.914 16.109Q-12.914 15.679-13.007 15.341Q-13.101 15.004-13.355 14.797Q-13.609 14.590-14.050 14.590Q-14.699 14.590-14.943 15.006Q-15.187 15.422-15.187 16.109Q-15.187 16.554-15.099 16.906Q-15.011 17.257-14.759 17.480Q-14.507 17.703-14.050 17.703M-9.679 17.902L-11.660 17.902L-11.660 17.605Q-11.390 17.605-11.222 17.560Q-11.054 17.515-11.054 17.343L-11.054 15.207Q-11.054 14.992-11.117 14.896Q-11.179 14.800-11.296 14.779Q-11.414 14.757-11.660 14.757L-11.660 14.461L-10.492 14.375L-10.492 15.160Q-10.414 14.949-10.261 14.763Q-10.109 14.578-9.910 14.476Q-9.710 14.375-9.484 14.375Q-9.238 14.375-9.046 14.519Q-8.855 14.664-8.855 14.894Q-8.855 15.050-8.960 15.160Q-9.066 15.269-9.222 15.269Q-9.378 15.269-9.488 15.160Q-9.597 15.050-9.597 14.894Q-9.597 14.734-9.492 14.629Q-9.816 14.629-10.031 14.857Q-10.246 15.086-10.341 15.425Q-10.437 15.765-10.437 16.070L-10.437 17.343Q-10.437 17.511-10.210 17.558Q-9.984 17.605-9.679 17.605L-9.679 17.902M-7.957 19.199Q-7.843 19.277-7.667 19.277Q-7.378 19.277-7.158 19.064Q-6.937 18.851-6.812 18.550L-6.523 17.902L-7.796 15.015Q-7.878 14.840-8.023 14.795Q-8.167 14.750-8.437 14.750L-8.437 14.453L-6.718 14.453L-6.718 14.750Q-7.140 14.750-7.140 14.933Q-7.140 14.945-7.125 15.015L-6.187 17.140L-5.355 15.230Q-5.316 15.140-5.316 15.062Q-5.316 14.922-5.417 14.836Q-5.519 14.750-5.660 14.750L-5.660 14.453L-4.308 14.453L-4.308 14.750Q-4.562 14.750-4.755 14.875Q-4.949 15-5.054 15.230L-6.500 18.550Q-6.613 18.804-6.779 19.027Q-6.945 19.250-7.173 19.392Q-7.402 19.535-7.667 19.535Q-7.964 19.535-8.205 19.343Q-8.445 19.152-8.445 18.863Q-8.445 18.707-8.339 18.605Q-8.234 18.504-8.085 18.504Q-7.980 18.504-7.900 18.550Q-7.820 18.597-7.773 18.675Q-7.726 18.754-7.726 18.863Q-7.726 18.984-7.787 19.072Q-7.847 19.160-7.957 19.199\" 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=\"M310.173 86.188h62.596V.83h-62.596Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(361.524 33.135)\">\u003Cpath d=\"M-33.632 5.668Q-33.632 5.074-33.400 4.543Q-33.167 4.011-32.751 3.611Q-32.335 3.211-31.802 2.990Q-31.269 2.769-30.664 2.769Q-30.226 2.769-29.828 2.951Q-29.429 3.132-29.121 3.464L-28.648 2.800Q-28.617 2.769-28.585 2.769L-28.539 2.769Q-28.511 2.769-28.480 2.800Q-28.449 2.832-28.449 2.859L-28.449 4.996Q-28.449 5.019-28.480 5.050Q-28.511 5.082-28.539 5.082L-28.656 5.082Q-28.683 5.082-28.714 5.050Q-28.746 5.019-28.746 4.996Q-28.746 4.730-28.888 4.377Q-29.031 4.023-29.210 3.785Q-29.464 3.453-29.814 3.259Q-30.164 3.066-30.570 3.066Q-31.074 3.066-31.527 3.285Q-31.980 3.504-32.273 3.898Q-32.769 4.566-32.769 5.668Q-32.769 6.199-32.632 6.666Q-32.496 7.132-32.220 7.498Q-31.945 7.863-31.525 8.068Q-31.105 8.273-30.562 8.273Q-30.074 8.273-29.650 8.029Q-29.226 7.785-28.978 7.365Q-28.730 6.945-28.730 6.449Q-28.730 6.414-28.701 6.388Q-28.671 6.363-28.640 6.363L-28.539 6.363Q-28.496 6.363-28.472 6.392Q-28.449 6.422-28.449 6.464Q-28.449 6.902-28.625 7.291Q-28.800 7.679-29.111 7.963Q-29.421 8.246-29.832 8.408Q-30.242 8.570-30.664 8.570Q-31.253 8.570-31.794 8.349Q-32.335 8.129-32.751 7.724Q-33.167 7.320-33.400 6.791Q-33.632 6.261-33.632 5.668M-27.730 6.707Q-27.730 6.203-27.474 5.771Q-27.218 5.339-26.783 5.088Q-26.347 4.836-25.847 4.836Q-25.460 4.836-25.119 4.980Q-24.777 5.125-24.515 5.386Q-24.253 5.648-24.111 5.984Q-23.968 6.320-23.968 6.707Q-23.968 7.199-24.232 7.609Q-24.496 8.019-24.925 8.250Q-25.355 8.480-25.847 8.480Q-26.339 8.480-26.773 8.248Q-27.207 8.015-27.468 7.607Q-27.730 7.199-27.730 6.707M-25.847 8.203Q-25.390 8.203-25.138 7.980Q-24.886 7.757-24.798 7.406Q-24.710 7.054-24.710 6.609Q-24.710 6.179-24.804 5.841Q-24.898 5.504-25.152 5.297Q-25.406 5.089-25.847 5.089Q-26.496 5.089-26.740 5.506Q-26.984 5.922-26.984 6.609Q-26.984 7.054-26.896 7.406Q-26.808 7.757-26.556 7.980Q-26.304 8.203-25.847 8.203M-21.554 8.402L-23.410 8.402L-23.410 8.105Q-23.136 8.105-22.968 8.058Q-22.800 8.011-22.800 7.843L-22.800 5.707Q-22.800 5.492-22.863 5.396Q-22.925 5.300-23.044 5.279Q-23.164 5.257-23.410 5.257L-23.410 4.961L-22.218 4.875L-22.218 5.609Q-22.105 5.394-21.912 5.226Q-21.718 5.058-21.480 4.966Q-21.242 4.875-20.988 4.875Q-19.820 4.875-19.820 5.953L-19.820 7.843Q-19.820 8.011-19.650 8.058Q-19.480 8.105-19.210 8.105L-19.210 8.402L-21.066 8.402L-21.066 8.105Q-20.792 8.105-20.625 8.058Q-20.457 8.011-20.457 7.843L-20.457 5.968Q-20.457 5.586-20.578 5.357Q-20.699 5.129-21.050 5.129Q-21.363 5.129-21.617 5.291Q-21.871 5.453-22.017 5.722Q-22.164 5.992-22.164 6.289L-22.164 7.843Q-22.164 8.011-21.994 8.058Q-21.824 8.105-21.554 8.105\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(361.524 33.135)\">\u003Cpath d=\"M-18.367 7.441L-18.367 5.250L-19.070 5.250L-19.070 4.996Q-18.714 4.996-18.472 4.763Q-18.230 4.531-18.119 4.183Q-18.007 3.836-18.007 3.480L-17.726 3.480L-17.726 4.953L-16.550 4.953L-16.550 5.250L-17.726 5.250L-17.726 7.425Q-17.726 7.746-17.607 7.974Q-17.488 8.203-17.207 8.203Q-17.027 8.203-16.910 8.080Q-16.793 7.957-16.740 7.777Q-16.687 7.597-16.687 7.425L-16.687 6.953L-16.406 6.953L-16.406 7.441Q-16.406 7.695-16.511 7.935Q-16.617 8.175-16.814 8.328Q-17.011 8.480-17.269 8.480Q-17.585 8.480-17.837 8.357Q-18.089 8.234-18.228 8Q-18.367 7.765-18.367 7.441M-13.679 8.402L-15.660 8.402L-15.660 8.105Q-15.390 8.105-15.222 8.060Q-15.054 8.015-15.054 7.843L-15.054 5.707Q-15.054 5.492-15.117 5.396Q-15.179 5.300-15.296 5.279Q-15.414 5.257-15.660 5.257L-15.660 4.961L-14.492 4.875L-14.492 5.660Q-14.414 5.449-14.261 5.263Q-14.109 5.078-13.910 4.976Q-13.710 4.875-13.484 4.875Q-13.238 4.875-13.046 5.019Q-12.855 5.164-12.855 5.394Q-12.855 5.550-12.960 5.660Q-13.066 5.769-13.222 5.769Q-13.378 5.769-13.488 5.660Q-13.597 5.550-13.597 5.394Q-13.597 5.234-13.492 5.129Q-13.816 5.129-14.031 5.357Q-14.246 5.586-14.341 5.925Q-14.437 6.265-14.437 6.570L-14.437 7.843Q-14.437 8.011-14.210 8.058Q-13.984 8.105-13.679 8.105L-13.679 8.402M-12.375 6.707Q-12.375 6.203-12.119 5.771Q-11.863 5.339-11.427 5.088Q-10.992 4.836-10.492 4.836Q-10.105 4.836-9.763 4.980Q-9.421 5.125-9.160 5.386Q-8.898 5.648-8.755 5.984Q-8.613 6.320-8.613 6.707Q-8.613 7.199-8.876 7.609Q-9.140 8.019-9.570 8.250Q-10 8.480-10.492 8.480Q-10.984 8.480-11.418 8.248Q-11.851 8.015-12.113 7.607Q-12.375 7.199-12.375 6.707M-10.492 8.203Q-10.035 8.203-9.783 7.980Q-9.531 7.757-9.443 7.406Q-9.355 7.054-9.355 6.609Q-9.355 6.179-9.449 5.841Q-9.543 5.504-9.796 5.297Q-10.050 5.089-10.492 5.089Q-11.140 5.089-11.384 5.506Q-11.628 5.922-11.628 6.609Q-11.628 7.054-11.541 7.406Q-11.453 7.757-11.201 7.980Q-10.949 8.203-10.492 8.203M-6.214 8.402L-8.046 8.402L-8.046 8.105Q-7.773 8.105-7.605 8.058Q-7.437 8.011-7.437 7.843L-7.437 3.683Q-7.437 3.468-7.500 3.373Q-7.562 3.277-7.681 3.256Q-7.800 3.234-8.046 3.234L-8.046 2.937L-6.824 2.851L-6.824 7.843Q-6.824 8.011-6.656 8.058Q-6.488 8.105-6.214 8.105\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(361.524 33.135)\">\u003Cpath d=\"M-26.687 16.949L-26.687 15.207Q-26.687 14.992-26.750 14.896Q-26.812 14.800-26.931 14.779Q-27.050 14.757-27.297 14.757L-27.297 14.461L-26.050 14.375L-26.050 16.925L-26.050 16.949Q-26.050 17.261-25.996 17.423Q-25.941 17.586-25.791 17.656Q-25.640 17.726-25.320 17.726Q-24.890 17.726-24.617 17.388Q-24.343 17.050-24.343 16.605L-24.343 15.207Q-24.343 14.992-24.406 14.896Q-24.468 14.800-24.588 14.779Q-24.707 14.757-24.953 14.757L-24.953 14.461L-23.707 14.375L-23.707 17.160Q-23.707 17.371-23.644 17.466Q-23.582 17.562-23.463 17.584Q-23.343 17.605-23.097 17.605L-23.097 17.902L-24.320 17.980L-24.320 17.359Q-24.488 17.648-24.769 17.814Q-25.050 17.980-25.371 17.980Q-26.687 17.980-26.687 16.949M-20.722 17.902L-22.578 17.902L-22.578 17.605Q-22.304 17.605-22.136 17.558Q-21.968 17.511-21.968 17.343L-21.968 15.207Q-21.968 14.992-22.031 14.896Q-22.093 14.800-22.213 14.779Q-22.332 14.757-22.578 14.757L-22.578 14.461L-21.386 14.375L-21.386 15.109Q-21.273 14.894-21.080 14.726Q-20.886 14.558-20.648 14.466Q-20.410 14.375-20.156 14.375Q-18.988 14.375-18.988 15.453L-18.988 17.343Q-18.988 17.511-18.818 17.558Q-18.648 17.605-18.379 17.605L-18.379 17.902L-20.234 17.902L-20.234 17.605Q-19.961 17.605-19.793 17.558Q-19.625 17.511-19.625 17.343L-19.625 15.468Q-19.625 15.086-19.746 14.857Q-19.867 14.629-20.218 14.629Q-20.531 14.629-20.785 14.791Q-21.039 14.953-21.185 15.222Q-21.332 15.492-21.332 15.789L-21.332 17.343Q-21.332 17.511-21.162 17.558Q-20.992 17.605-20.722 17.605L-20.722 17.902M-16.074 17.902L-17.851 17.902L-17.851 17.605Q-17.578 17.605-17.410 17.558Q-17.242 17.511-17.242 17.343L-17.242 15.207Q-17.242 14.992-17.298 14.896Q-17.355 14.800-17.468 14.779Q-17.582 14.757-17.828 14.757L-17.828 14.461L-16.629 14.375L-16.629 17.343Q-16.629 17.511-16.482 17.558Q-16.336 17.605-16.074 17.605L-16.074 17.902M-17.515 12.980Q-17.515 12.789-17.380 12.658Q-17.246 12.527-17.050 12.527Q-16.929 12.527-16.826 12.590Q-16.722 12.652-16.660 12.756Q-16.597 12.859-16.597 12.980Q-16.597 13.175-16.728 13.310Q-16.859 13.445-17.050 13.445Q-17.250 13.445-17.382 13.312Q-17.515 13.179-17.515 12.980M-14.949 16.941L-14.949 14.750L-15.652 14.750L-15.652 14.496Q-15.297 14.496-15.054 14.263Q-14.812 14.031-14.701 13.683Q-14.589 13.336-14.589 12.980L-14.308 12.980L-14.308 14.453L-13.132 14.453L-13.132 14.750L-14.308 14.750L-14.308 16.925Q-14.308 17.246-14.189 17.474Q-14.070 17.703-13.789 17.703Q-13.609 17.703-13.492 17.580Q-13.375 17.457-13.322 17.277Q-13.269 17.097-13.269 16.925L-13.269 16.453L-12.988 16.453L-12.988 16.941Q-12.988 17.195-13.093 17.435Q-13.199 17.675-13.396 17.828Q-13.593 17.980-13.851 17.980Q-14.168 17.980-14.420 17.857Q-14.672 17.734-14.810 17.500Q-14.949 17.265-14.949 16.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-2.607 17.902h20.362\"\u002F>\u003Cpath stroke=\"none\" d=\"m19.755 17.902-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(34.707 -3.533)\">\u003Cpath d=\"M-33.732 17.174Q-33.732 16.842-33.509 16.615Q-33.285 16.388-32.941 16.260Q-32.598 16.131-32.225 16.079Q-31.853 16.026-31.548 16.026L-31.548 15.773Q-31.548 15.568-31.656 15.388Q-31.764 15.209-31.945 15.106Q-32.126 15.004-32.334 15.004Q-32.741 15.004-32.977 15.096Q-32.888 15.133-32.842 15.217Q-32.796 15.301-32.796 15.403Q-32.796 15.499-32.842 15.578Q-32.888 15.656-32.969 15.701Q-33.049 15.745-33.138 15.745Q-33.288 15.745-33.389 15.648Q-33.490 15.550-33.490 15.403Q-33.490 14.781-32.334 14.781Q-32.123 14.781-31.873 14.845Q-31.624 14.908-31.422 15.027Q-31.220 15.147-31.094 15.332Q-30.967 15.516-30.967 15.759L-30.967 17.335Q-30.967 17.451-30.906 17.547Q-30.844 17.642-30.731 17.642Q-30.622 17.642-30.557 17.548Q-30.492 17.454-30.492 17.335L-30.492 16.887L-30.226 16.887L-30.226 17.335Q-30.226 17.605-30.453 17.770Q-30.680 17.936-30.960 17.936Q-31.169 17.936-31.306 17.782Q-31.442 17.629-31.466 17.413Q-31.613 17.680-31.895 17.825Q-32.177 17.970-32.502 17.970Q-32.779 17.970-33.063 17.895Q-33.346 17.820-33.539 17.641Q-33.732 17.461-33.732 17.174M-33.117 17.174Q-33.117 17.348-33.016 17.478Q-32.916 17.608-32.760 17.678Q-32.605 17.748-32.440 17.748Q-32.222 17.748-32.013 17.651Q-31.805 17.553-31.677 17.372Q-31.548 17.191-31.548 16.965L-31.548 16.237Q-31.873 16.237-32.239 16.328Q-32.605 16.419-32.861 16.631Q-33.117 16.842-33.117 17.174M-29.809 16.391Q-29.809 16.053-29.668 15.762Q-29.528 15.472-29.284 15.258Q-29.040 15.045-28.735 14.930Q-28.431 14.816-28.106 14.816Q-27.836 14.816-27.573 14.915Q-27.310 15.014-27.119 15.192L-27.119 13.794Q-27.119 13.524-27.226 13.462Q-27.334 13.401-27.645 13.401L-27.645 13.120L-26.568 13.045L-26.568 17.229Q-26.568 17.417-26.514 17.500Q-26.459 17.584-26.358 17.603Q-26.257 17.622-26.042 17.622L-26.042 17.902L-27.149 17.970L-27.149 17.553Q-27.566 17.970-28.192 17.970Q-28.623 17.970-28.995 17.758Q-29.368 17.547-29.588 17.186Q-29.809 16.825-29.809 16.391M-28.134 17.748Q-27.925 17.748-27.739 17.676Q-27.553 17.605-27.399 17.468Q-27.245 17.331-27.149 17.153L-27.149 15.544Q-27.235 15.397-27.380 15.277Q-27.525 15.157-27.695 15.098Q-27.864 15.038-28.045 15.038Q-28.605 15.038-28.874 15.427Q-29.142 15.817-29.142 16.398Q-29.142 16.969-28.908 17.359Q-28.674 17.748-28.134 17.748M-25.393 16.391Q-25.393 16.053-25.252 15.762Q-25.112 15.472-24.868 15.258Q-24.624 15.045-24.319 14.930Q-24.015 14.816-23.690 14.816Q-23.420 14.816-23.157 14.915Q-22.894 15.014-22.703 15.192L-22.703 13.794Q-22.703 13.524-22.810 13.462Q-22.918 13.401-23.229 13.401L-23.229 13.120L-22.152 13.045L-22.152 17.229Q-22.152 17.417-22.098 17.500Q-22.043 17.584-21.942 17.603Q-21.841 17.622-21.626 17.622L-21.626 17.902L-22.733 17.970L-22.733 17.553Q-23.150 17.970-23.776 17.970Q-24.207 17.970-24.579 17.758Q-24.952 17.547-25.172 17.186Q-25.393 16.825-25.393 16.391M-23.718 17.748Q-23.509 17.748-23.323 17.676Q-23.137 17.605-22.983 17.468Q-22.829 17.331-22.733 17.153L-22.733 15.544Q-22.819 15.397-22.964 15.277Q-23.109 15.157-23.279 15.098Q-23.448 15.038-23.629 15.038Q-24.189 15.038-24.458 15.427Q-24.726 15.817-24.726 16.398Q-24.726 16.969-24.492 17.359Q-24.258 17.748-23.718 17.748M-19.227 17.902L-20.963 17.902L-20.963 17.622Q-20.734 17.622-20.585 17.588Q-20.437 17.553-20.437 17.413L-20.437 15.564Q-20.437 15.294-20.544 15.233Q-20.652 15.171-20.963 15.171L-20.963 14.891L-19.934 14.816L-19.934 15.523Q-19.804 15.215-19.562 15.016Q-19.319 14.816-19.001 14.816Q-18.782 14.816-18.611 14.940Q-18.440 15.065-18.440 15.277Q-18.440 15.414-18.540 15.513Q-18.639 15.612-18.772 15.612Q-18.909 15.612-19.008 15.513Q-19.107 15.414-19.107 15.277Q-19.107 15.137-19.008 15.038Q-19.298 15.038-19.498 15.234Q-19.698 15.431-19.791 15.725Q-19.883 16.019-19.883 16.299L-19.883 17.413Q-19.883 17.622-19.227 17.622\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M82.75 17.902h31.744\"\u002F>\u003Cpath stroke=\"none\" d=\"m116.494 17.902-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(123.47 -4.894)\">\u003Cpath d=\"M-32.041 17.902L-33.777 17.902L-33.777 17.622Q-33.548 17.622-33.399 17.588Q-33.251 17.553-33.251 17.413L-33.251 15.564Q-33.251 15.294-33.358 15.233Q-33.466 15.171-33.777 15.171L-33.777 14.891L-32.748 14.816L-32.748 15.523Q-32.618 15.215-32.376 15.016Q-32.133 14.816-31.815 14.816Q-31.596 14.816-31.425 14.940Q-31.254 15.065-31.254 15.277Q-31.254 15.414-31.354 15.513Q-31.453 15.612-31.586 15.612Q-31.723 15.612-31.822 15.513Q-31.921 15.414-31.921 15.277Q-31.921 15.137-31.822 15.038Q-32.112 15.038-32.312 15.234Q-32.512 15.431-32.605 15.725Q-32.697 16.019-32.697 16.299L-32.697 17.413Q-32.697 17.622-32.041 17.622L-32.041 17.902M-30.711 16.367Q-30.711 16.046-30.586 15.757Q-30.461 15.468-30.236 15.245Q-30.010 15.021-29.715 14.901Q-29.419 14.781-29.101 14.781Q-28.773 14.781-28.511 14.881Q-28.250 14.980-28.074 15.162Q-27.898 15.345-27.804 15.603Q-27.710 15.861-27.710 16.193Q-27.710 16.285-27.792 16.306L-30.048 16.306L-30.048 16.367Q-30.048 16.955-29.764 17.338Q-29.480 17.721-28.913 17.721Q-28.592 17.721-28.324 17.528Q-28.055 17.335-27.966 17.020Q-27.959 16.979-27.884 16.965L-27.792 16.965Q-27.710 16.989-27.710 17.061Q-27.710 17.068-27.717 17.095Q-27.830 17.492-28.200 17.731Q-28.571 17.970-28.995 17.970Q-29.433 17.970-29.833 17.762Q-30.232 17.553-30.472 17.186Q-30.711 16.819-30.711 16.367M-30.041 16.097L-28.226 16.097Q-28.226 15.820-28.324 15.568Q-28.421 15.315-28.619 15.159Q-28.817 15.004-29.101 15.004Q-29.378 15.004-29.592 15.162Q-29.805 15.321-29.923 15.576Q-30.041 15.831-30.041 16.097M-27.163 18.435Q-27.163 18.189-26.967 18.005Q-26.770 17.820-26.514 17.741Q-26.650 17.629-26.722 17.468Q-26.794 17.307-26.794 17.126Q-26.794 16.805-26.582 16.559Q-26.917 16.261-26.917 15.851Q-26.917 15.390-26.527 15.103Q-26.138 14.816-25.659 14.816Q-25.188 14.816-24.853 15.062Q-24.678 14.908-24.468 14.826Q-24.258 14.744-24.029 14.744Q-23.865 14.744-23.743 14.851Q-23.622 14.959-23.622 15.123Q-23.622 15.219-23.694 15.291Q-23.766 15.362-23.858 15.362Q-23.957 15.362-24.027 15.289Q-24.097 15.215-24.097 15.116Q-24.097 15.062-24.084 15.031L-24.077 15.017Q-24.070 14.997-24.061 14.986Q-24.053 14.976-24.049 14.969Q-24.405 14.969-24.692 15.192Q-24.405 15.485-24.405 15.851Q-24.405 16.166-24.589 16.398Q-24.774 16.631-25.063 16.759Q-25.352 16.887-25.659 16.887Q-25.861 16.887-26.052 16.837Q-26.244 16.788-26.421 16.678Q-26.514 16.805-26.514 16.948Q-26.514 17.130-26.386 17.265Q-26.257 17.400-26.073 17.400L-25.440 17.400Q-24.993 17.400-24.624 17.471Q-24.254 17.543-23.995 17.772Q-23.735 18.001-23.735 18.435Q-23.735 18.756-24.031 18.958Q-24.326 19.160-24.730 19.249Q-25.133 19.338-25.447 19.338Q-25.765 19.338-26.168 19.249Q-26.572 19.160-26.867 18.958Q-27.163 18.756-27.163 18.435M-26.709 18.435Q-26.709 18.664-26.490 18.813Q-26.271 18.962-25.979 19.030Q-25.687 19.098-25.447 19.098Q-25.283 19.098-25.075 19.062Q-24.866 19.027-24.659 18.946Q-24.453 18.866-24.321 18.738Q-24.189 18.610-24.189 18.435Q-24.189 18.083-24.571 17.989Q-24.952 17.895-25.454 17.895L-26.073 17.895Q-26.312 17.895-26.510 18.046Q-26.709 18.196-26.709 18.435M-25.659 16.648Q-24.993 16.648-24.993 15.851Q-24.993 15.051-25.659 15.051Q-26.329 15.051-26.329 15.851Q-26.329 16.648-25.659 16.648M-21.523 17.902L-23.075 17.902L-23.075 17.622Q-22.850 17.622-22.701 17.588Q-22.552 17.553-22.552 17.413L-22.552 15.564Q-22.552 15.376-22.600 15.292Q-22.648 15.209-22.745 15.190Q-22.843 15.171-23.055 15.171L-23.055 14.891L-21.999 14.816L-21.999 17.413Q-21.999 17.553-21.867 17.588Q-21.735 17.622-21.523 17.622L-21.523 17.902M-22.795 13.595Q-22.795 13.424-22.672 13.305Q-22.549 13.185-22.378 13.185Q-22.210 13.185-22.087 13.305Q-21.964 13.424-21.964 13.595Q-21.964 13.770-22.087 13.893Q-22.210 14.016-22.378 14.016Q-22.549 14.016-22.672 13.893Q-22.795 13.770-22.795 13.595M-20.877 16.391Q-20.877 16.053-20.737 15.762Q-20.597 15.472-20.353 15.258Q-20.108 15.045-19.804 14.930Q-19.500 14.816-19.175 14.816Q-18.905 14.816-18.642 14.915Q-18.379 15.014-18.188 15.192L-18.188 13.794Q-18.188 13.524-18.295 13.462Q-18.403 13.401-18.714 13.401L-18.714 13.120L-17.637 13.045L-17.637 17.229Q-17.637 17.417-17.583 17.500Q-17.528 17.584-17.427 17.603Q-17.326 17.622-17.111 17.622L-17.111 17.902L-18.218 17.970L-18.218 17.553Q-18.635 17.970-19.261 17.970Q-19.691 17.970-20.064 17.758Q-20.437 17.547-20.657 17.186Q-20.877 16.825-20.877 16.391M-19.203 17.748Q-18.994 17.748-18.808 17.676Q-18.622 17.605-18.468 17.468Q-18.314 17.331-18.218 17.153L-18.218 15.544Q-18.304 15.397-18.449 15.277Q-18.594 15.157-18.763 15.098Q-18.933 15.038-19.114 15.038Q-19.674 15.038-19.943 15.427Q-20.211 15.817-20.211 16.398Q-20.211 16.969-19.977 17.359Q-19.743 17.748-19.203 17.748M-16.461 17.895L-16.461 16.832Q-16.461 16.808-16.434 16.781Q-16.407 16.754-16.383 16.754L-16.273 16.754Q-16.209 16.754-16.195 16.812Q-16.099 17.246-15.853 17.497Q-15.607 17.748-15.193 17.748Q-14.852 17.748-14.599 17.615Q-14.346 17.482-14.346 17.174Q-14.346 17.017-14.440 16.902Q-14.534 16.788-14.672 16.719Q-14.811 16.651-14.978 16.613L-15.559 16.514Q-15.915 16.446-16.188 16.225Q-16.461 16.005-16.461 15.663Q-16.461 15.414-16.350 15.239Q-16.239 15.065-16.053 14.966Q-15.867 14.867-15.651 14.824Q-15.436 14.781-15.193 14.781Q-14.780 14.781-14.500 14.963L-14.284 14.788Q-14.274 14.785-14.267 14.783Q-14.260 14.781-14.250 14.781L-14.199 14.781Q-14.171 14.781-14.147 14.805Q-14.124 14.829-14.124 14.857L-14.124 15.704Q-14.124 15.725-14.147 15.752Q-14.171 15.779-14.199 15.779L-14.312 15.779Q-14.339 15.779-14.365 15.754Q-14.390 15.728-14.390 15.704Q-14.390 15.468-14.496 15.304Q-14.602 15.140-14.785 15.058Q-14.968 14.976-15.200 14.976Q-15.528 14.976-15.785 15.079Q-16.041 15.181-16.041 15.458Q-16.041 15.653-15.858 15.762Q-15.675 15.872-15.446 15.913L-14.872 16.019Q-14.626 16.067-14.412 16.195Q-14.199 16.323-14.062 16.526Q-13.925 16.730-13.925 16.979Q-13.925 17.492-14.291 17.731Q-14.657 17.970-15.193 17.970Q-15.689 17.970-16.021 17.676L-16.287 17.950Q-16.308 17.970-16.335 17.970L-16.383 17.970Q-16.407 17.970-16.434 17.943Q-16.461 17.916-16.461 17.895\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M179.49 17.902h31.744\"\u002F>\u003Cpath stroke=\"none\" d=\"m213.234 17.902-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(221.373 -3.533)\">\u003Cpath d=\"M-32.201 9.875L-33.329 7.376Q-33.401 7.229-33.531 7.197Q-33.661 7.164-33.890 7.164L-33.890 6.884L-32.376 6.884L-32.376 7.164Q-32.728 7.164-32.728 7.311Q-32.728 7.356-32.717 7.376L-31.853 9.294L-31.073 7.564Q-31.039 7.496-31.039 7.417Q-31.039 7.304-31.123 7.234Q-31.207 7.164-31.326 7.164L-31.326 6.884L-30.130 6.884L-30.130 7.164Q-30.349 7.164-30.520 7.267Q-30.690 7.369-30.779 7.564L-31.815 9.875Q-31.863 9.970-31.969 9.970L-32.047 9.970Q-32.153 9.970-32.201 9.875\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(221.373 -3.533)\">\u003Cpath d=\"M-29.961 9.174Q-29.961 8.842-29.738 8.615Q-29.514 8.388-29.170 8.260Q-28.827 8.131-28.454 8.079Q-28.082 8.026-27.777 8.026L-27.777 7.773Q-27.777 7.568-27.885 7.388Q-27.993 7.209-28.174 7.106Q-28.355 7.004-28.563 7.004Q-28.970 7.004-29.206 7.096Q-29.117 7.133-29.071 7.217Q-29.025 7.301-29.025 7.403Q-29.025 7.499-29.071 7.578Q-29.117 7.656-29.198 7.701Q-29.278 7.745-29.367 7.745Q-29.517 7.745-29.618 7.648Q-29.719 7.550-29.719 7.403Q-29.719 6.781-28.563 6.781Q-28.352 6.781-28.102 6.845Q-27.853 6.908-27.651 7.027Q-27.449 7.147-27.323 7.332Q-27.196 7.516-27.196 7.759L-27.196 9.335Q-27.196 9.451-27.135 9.547Q-27.073 9.642-26.960 9.642Q-26.851 9.642-26.786 9.548Q-26.721 9.454-26.721 9.335L-26.721 8.887L-26.455 8.887L-26.455 9.335Q-26.455 9.605-26.682 9.770Q-26.909 9.936-27.189 9.936Q-27.398 9.936-27.535 9.782Q-27.671 9.629-27.695 9.413Q-27.842 9.680-28.124 9.825Q-28.406 9.970-28.731 9.970Q-29.008 9.970-29.292 9.895Q-29.575 9.820-29.768 9.641Q-29.961 9.461-29.961 9.174M-29.346 9.174Q-29.346 9.348-29.245 9.478Q-29.145 9.608-28.989 9.678Q-28.834 9.748-28.669 9.748Q-28.451 9.748-28.242 9.651Q-28.034 9.553-27.906 9.372Q-27.777 9.191-27.777 8.965L-27.777 8.237Q-28.102 8.237-28.468 8.328Q-28.834 8.419-29.090 8.631Q-29.346 8.842-29.346 9.174M-24.370 9.902L-25.973 9.902L-25.973 9.622Q-25.747 9.622-25.598 9.588Q-25.450 9.553-25.450 9.413L-25.450 5.794Q-25.450 5.524-25.557 5.462Q-25.665 5.401-25.973 5.401L-25.973 5.120L-24.896 5.045L-24.896 9.413Q-24.896 9.550-24.746 9.586Q-24.595 9.622-24.370 9.622L-24.370 9.902M-22.186 9.902L-23.775 9.902L-23.775 9.622Q-23.132 9.622-22.975 9.222L-21.331 5.007Q-21.297 4.912-21.184 4.912L-21.102 4.912Q-20.993 4.912-20.952 5.007L-19.232 9.413Q-19.164 9.553-18.974 9.588Q-18.785 9.622-18.511 9.622L-18.511 9.902L-20.511 9.902L-20.511 9.622Q-19.947 9.622-19.947 9.447Q-19.947 9.430-19.949 9.423Q-19.950 9.417-19.954 9.413L-20.374 8.347L-22.333 8.347L-22.674 9.222Q-22.688 9.222-22.688 9.300Q-22.688 9.461-22.526 9.541Q-22.363 9.622-22.186 9.622L-22.186 9.902M-21.352 5.828L-22.220 8.067L-20.477 8.067L-21.352 5.828M-17.376 11.132Q-17.376 11.098-17.349 11.071Q-17.079 10.842-16.930 10.519Q-16.782 10.196-16.782 9.840L-16.782 9.803Q-16.891 9.902-17.055 9.902Q-17.236 9.902-17.356 9.782Q-17.476 9.663-17.476 9.482Q-17.476 9.307-17.356 9.188Q-17.236 9.068-17.055 9.068Q-16.799 9.068-16.679 9.307Q-16.560 9.547-16.560 9.840Q-16.560 10.240-16.729 10.611Q-16.898 10.982-17.195 11.238Q-17.226 11.259-17.253 11.259Q-17.294 11.259-17.335 11.218Q-17.376 11.177-17.376 11.132\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(221.373 -3.533)\">\u003Cpath d=\"M-30.913 17.875L-32.041 15.376Q-32.113 15.229-32.243 15.197Q-32.373 15.164-32.602 15.164L-32.602 14.884L-31.088 14.884L-31.088 15.164Q-31.440 15.164-31.440 15.311Q-31.440 15.356-31.429 15.376L-30.565 17.294L-29.785 15.564Q-29.751 15.496-29.751 15.417Q-29.751 15.304-29.835 15.234Q-29.919 15.164-30.038 15.164L-30.038 14.884L-28.842 14.884L-28.842 15.164Q-29.061 15.164-29.232 15.267Q-29.402 15.369-29.491 15.564L-30.527 17.875Q-30.575 17.970-30.681 17.970L-30.759 17.970Q-30.865 17.970-30.913 17.875\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(221.373 -3.533)\">\u003Cpath d=\"M-28.673 17.174Q-28.673 16.842-28.450 16.615Q-28.226 16.388-27.882 16.260Q-27.539 16.131-27.166 16.079Q-26.794 16.026-26.489 16.026L-26.489 15.773Q-26.489 15.568-26.597 15.388Q-26.705 15.209-26.886 15.106Q-27.067 15.004-27.275 15.004Q-27.682 15.004-27.918 15.096Q-27.829 15.133-27.783 15.217Q-27.737 15.301-27.737 15.403Q-27.737 15.499-27.783 15.578Q-27.829 15.656-27.910 15.701Q-27.990 15.745-28.079 15.745Q-28.229 15.745-28.330 15.648Q-28.431 15.550-28.431 15.403Q-28.431 14.781-27.275 14.781Q-27.064 14.781-26.814 14.845Q-26.565 14.908-26.363 15.027Q-26.161 15.147-26.035 15.332Q-25.908 15.516-25.908 15.759L-25.908 17.335Q-25.908 17.451-25.847 17.547Q-25.785 17.642-25.672 17.642Q-25.563 17.642-25.498 17.548Q-25.433 17.454-25.433 17.335L-25.433 16.887L-25.167 16.887L-25.167 17.335Q-25.167 17.605-25.394 17.770Q-25.621 17.936-25.901 17.936Q-26.110 17.936-26.247 17.782Q-26.383 17.629-26.407 17.413Q-26.554 17.680-26.836 17.825Q-27.118 17.970-27.443 17.970Q-27.720 17.970-28.004 17.895Q-28.287 17.820-28.480 17.641Q-28.673 17.461-28.673 17.174M-28.058 17.174Q-28.058 17.348-27.957 17.478Q-27.857 17.608-27.701 17.678Q-27.546 17.748-27.381 17.748Q-27.163 17.748-26.954 17.651Q-26.746 17.553-26.618 17.372Q-26.489 17.191-26.489 16.965L-26.489 16.237Q-26.814 16.237-27.180 16.328Q-27.546 16.419-27.802 16.631Q-28.058 16.842-28.058 17.174M-23.082 17.902L-24.685 17.902L-24.685 17.622Q-24.459 17.622-24.310 17.588Q-24.162 17.553-24.162 17.413L-24.162 13.794Q-24.162 13.524-24.269 13.462Q-24.377 13.401-24.685 13.401L-24.685 13.120L-23.608 13.045L-23.608 17.413Q-23.608 17.550-23.458 17.586Q-23.307 17.622-23.082 17.622L-23.082 17.902M-19.421 17.902L-22.395 17.902L-22.395 17.622Q-21.673 17.622-21.673 17.413L-21.673 13.612Q-21.673 13.401-22.395 13.401L-22.395 13.120L-19.636 13.120Q-19.370 13.120-19.064 13.195Q-18.758 13.271-18.498 13.418Q-18.238 13.565-18.076 13.794Q-17.914 14.023-17.914 14.317Q-17.914 14.747-18.300 15.029Q-18.686 15.311-19.168 15.403Q-18.860 15.403-18.512 15.568Q-18.163 15.732-17.934 16.010Q-17.705 16.289-17.705 16.607Q-17.705 17.013-17.968 17.307Q-18.232 17.601-18.630 17.752Q-19.028 17.902-19.421 17.902M-21.031 15.530L-21.031 17.413Q-21.031 17.553-20.942 17.588Q-20.853 17.622-20.665 17.622L-19.636 17.622Q-19.349 17.622-19.072 17.495Q-18.796 17.369-18.625 17.135Q-18.454 16.901-18.454 16.607Q-18.454 16.391-18.536 16.195Q-18.618 15.998-18.768 15.848Q-18.919 15.697-19.115 15.614Q-19.312 15.530-19.527 15.530L-21.031 15.530M-21.031 13.612L-21.031 15.304L-19.848 15.304Q-19.561 15.304-19.281 15.185Q-19.001 15.065-18.821 14.838Q-18.642 14.610-18.642 14.317Q-18.642 14.067-18.780 13.853Q-18.919 13.640-19.148 13.520Q-19.377 13.401-19.636 13.401L-20.665 13.401Q-20.853 13.401-20.942 13.435Q-21.031 13.469-21.031 13.612\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M244.732 33.751v40.28\"\u002F>\u003Cpath stroke=\"none\" d=\"m244.732 76.03 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg transform=\"translate(282.37 39.42)\">\u003Cpath d=\"M-33.732 17.174Q-33.732 16.842-33.509 16.615Q-33.285 16.388-32.941 16.260Q-32.598 16.131-32.225 16.079Q-31.853 16.026-31.548 16.026L-31.548 15.773Q-31.548 15.568-31.656 15.388Q-31.764 15.209-31.945 15.106Q-32.126 15.004-32.334 15.004Q-32.741 15.004-32.977 15.096Q-32.888 15.133-32.842 15.217Q-32.796 15.301-32.796 15.403Q-32.796 15.499-32.842 15.578Q-32.888 15.656-32.969 15.701Q-33.049 15.745-33.138 15.745Q-33.288 15.745-33.389 15.648Q-33.490 15.550-33.490 15.403Q-33.490 14.781-32.334 14.781Q-32.123 14.781-31.873 14.845Q-31.624 14.908-31.422 15.027Q-31.220 15.147-31.094 15.332Q-30.967 15.516-30.967 15.759L-30.967 17.335Q-30.967 17.451-30.906 17.547Q-30.844 17.642-30.731 17.642Q-30.622 17.642-30.557 17.548Q-30.492 17.454-30.492 17.335L-30.492 16.887L-30.226 16.887L-30.226 17.335Q-30.226 17.605-30.453 17.770Q-30.680 17.936-30.960 17.936Q-31.169 17.936-31.306 17.782Q-31.442 17.629-31.466 17.413Q-31.613 17.680-31.895 17.825Q-32.177 17.970-32.502 17.970Q-32.779 17.970-33.063 17.895Q-33.346 17.820-33.539 17.641Q-33.732 17.461-33.732 17.174M-33.117 17.174Q-33.117 17.348-33.016 17.478Q-32.916 17.608-32.760 17.678Q-32.605 17.748-32.440 17.748Q-32.222 17.748-32.013 17.651Q-31.805 17.553-31.677 17.372Q-31.548 17.191-31.548 16.965L-31.548 16.237Q-31.873 16.237-32.239 16.328Q-32.605 16.419-32.861 16.631Q-33.117 16.842-33.117 17.174M-29.809 16.391Q-29.809 16.053-29.668 15.762Q-29.528 15.472-29.284 15.258Q-29.040 15.045-28.735 14.930Q-28.431 14.816-28.106 14.816Q-27.836 14.816-27.573 14.915Q-27.310 15.014-27.119 15.192L-27.119 13.794Q-27.119 13.524-27.226 13.462Q-27.334 13.401-27.645 13.401L-27.645 13.120L-26.568 13.045L-26.568 17.229Q-26.568 17.417-26.514 17.500Q-26.459 17.584-26.358 17.603Q-26.257 17.622-26.042 17.622L-26.042 17.902L-27.149 17.970L-27.149 17.553Q-27.566 17.970-28.192 17.970Q-28.623 17.970-28.995 17.758Q-29.368 17.547-29.588 17.186Q-29.809 16.825-29.809 16.391M-28.134 17.748Q-27.925 17.748-27.739 17.676Q-27.553 17.605-27.399 17.468Q-27.245 17.331-27.149 17.153L-27.149 15.544Q-27.235 15.397-27.380 15.277Q-27.525 15.157-27.695 15.098Q-27.864 15.038-28.045 15.038Q-28.605 15.038-28.874 15.427Q-29.142 15.817-29.142 16.398Q-29.142 16.969-28.908 17.359Q-28.674 17.748-28.134 17.748M-25.393 16.391Q-25.393 16.053-25.252 15.762Q-25.112 15.472-24.868 15.258Q-24.624 15.045-24.319 14.930Q-24.015 14.816-23.690 14.816Q-23.420 14.816-23.157 14.915Q-22.894 15.014-22.703 15.192L-22.703 13.794Q-22.703 13.524-22.810 13.462Q-22.918 13.401-23.229 13.401L-23.229 13.120L-22.152 13.045L-22.152 17.229Q-22.152 17.417-22.098 17.500Q-22.043 17.584-21.942 17.603Q-21.841 17.622-21.626 17.622L-21.626 17.902L-22.733 17.970L-22.733 17.553Q-23.150 17.970-23.776 17.970Q-24.207 17.970-24.579 17.758Q-24.952 17.547-25.172 17.186Q-25.393 16.825-25.393 16.391M-23.718 17.748Q-23.509 17.748-23.323 17.676Q-23.137 17.605-22.983 17.468Q-22.829 17.331-22.733 17.153L-22.733 15.544Q-22.819 15.397-22.964 15.277Q-23.109 15.157-23.279 15.098Q-23.448 15.038-23.629 15.038Q-24.189 15.038-24.458 15.427Q-24.726 15.817-24.726 16.398Q-24.726 16.969-24.492 17.359Q-24.258 17.748-23.718 17.748M-19.227 17.902L-20.963 17.902L-20.963 17.622Q-20.734 17.622-20.585 17.588Q-20.437 17.553-20.437 17.413L-20.437 15.564Q-20.437 15.294-20.544 15.233Q-20.652 15.171-20.963 15.171L-20.963 14.891L-19.934 14.816L-19.934 15.523Q-19.804 15.215-19.562 15.016Q-19.319 14.816-19.001 14.816Q-18.782 14.816-18.611 14.940Q-18.440 15.065-18.440 15.277Q-18.440 15.414-18.540 15.513Q-18.639 15.612-18.772 15.612Q-18.909 15.612-19.008 15.513Q-19.107 15.414-19.107 15.277Q-19.107 15.137-19.008 15.038Q-19.298 15.038-19.498 15.234Q-19.698 15.431-19.791 15.725Q-19.883 16.019-19.883 16.299L-19.883 17.413Q-19.883 17.622-19.227 17.622\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M213.234 91.88h-65.242V35.75\"\u002F>\u003Cpath stroke=\"none\" d=\"m147.992 33.751-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(161.349 43.856)\">\u003Cpath d=\"M-32.201 17.875L-33.329 15.376Q-33.401 15.229-33.531 15.197Q-33.661 15.164-33.890 15.164L-33.890 14.884L-32.376 14.884L-32.376 15.164Q-32.728 15.164-32.728 15.311Q-32.728 15.356-32.717 15.376L-31.853 17.294L-31.073 15.564Q-31.039 15.496-31.039 15.417Q-31.039 15.304-31.123 15.234Q-31.207 15.164-31.326 15.164L-31.326 14.884L-30.130 14.884L-30.130 15.164Q-30.349 15.164-30.520 15.267Q-30.690 15.369-30.779 15.564L-31.815 17.875Q-31.863 17.970-31.969 17.970L-32.047 17.970Q-32.153 17.970-32.201 17.875\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(161.349 43.856)\">\u003Cpath d=\"M-29.961 17.174Q-29.961 16.842-29.738 16.615Q-29.514 16.388-29.170 16.260Q-28.827 16.131-28.454 16.079Q-28.082 16.026-27.777 16.026L-27.777 15.773Q-27.777 15.568-27.885 15.388Q-27.993 15.209-28.174 15.106Q-28.355 15.004-28.563 15.004Q-28.970 15.004-29.206 15.096Q-29.117 15.133-29.071 15.217Q-29.025 15.301-29.025 15.403Q-29.025 15.499-29.071 15.578Q-29.117 15.656-29.198 15.701Q-29.278 15.745-29.367 15.745Q-29.517 15.745-29.618 15.648Q-29.719 15.550-29.719 15.403Q-29.719 14.781-28.563 14.781Q-28.352 14.781-28.102 14.845Q-27.853 14.908-27.651 15.027Q-27.449 15.147-27.323 15.332Q-27.196 15.516-27.196 15.759L-27.196 17.335Q-27.196 17.451-27.135 17.547Q-27.073 17.642-26.960 17.642Q-26.851 17.642-26.786 17.548Q-26.721 17.454-26.721 17.335L-26.721 16.887L-26.455 16.887L-26.455 17.335Q-26.455 17.605-26.682 17.770Q-26.909 17.936-27.189 17.936Q-27.398 17.936-27.535 17.782Q-27.671 17.629-27.695 17.413Q-27.842 17.680-28.124 17.825Q-28.406 17.970-28.731 17.970Q-29.008 17.970-29.292 17.895Q-29.575 17.820-29.768 17.641Q-29.961 17.461-29.961 17.174M-29.346 17.174Q-29.346 17.348-29.245 17.478Q-29.145 17.608-28.989 17.678Q-28.834 17.748-28.669 17.748Q-28.451 17.748-28.242 17.651Q-28.034 17.553-27.906 17.372Q-27.777 17.191-27.777 16.965L-27.777 16.237Q-28.102 16.237-28.468 16.328Q-28.834 16.419-29.090 16.631Q-29.346 16.842-29.346 17.174M-24.370 17.902L-25.973 17.902L-25.973 17.622Q-25.747 17.622-25.598 17.588Q-25.450 17.553-25.450 17.413L-25.450 13.794Q-25.450 13.524-25.557 13.462Q-25.665 13.401-25.973 13.401L-25.973 13.120L-24.896 13.045L-24.896 17.413Q-24.896 17.550-24.746 17.586Q-24.595 17.622-24.370 17.622L-24.370 17.902M-21.933 17.902L-23.669 17.902L-23.669 17.622Q-22.948 17.622-22.948 17.222L-22.948 13.612Q-22.948 13.401-23.669 13.401L-23.669 13.120L-22.312 13.120Q-22.216 13.120-22.165 13.219L-20.490 17.194L-18.819 13.219Q-18.771 13.120-18.672 13.120L-17.322 13.120L-17.322 13.401Q-18.043 13.401-18.043 13.612L-18.043 17.413Q-18.043 17.622-17.322 17.622L-17.322 17.902L-19.379 17.902L-19.379 17.622Q-18.658 17.622-18.658 17.413L-18.658 13.401L-20.511 17.803Q-20.559 17.902-20.668 17.902Q-20.781 17.902-20.829 17.803L-22.654 13.472L-22.654 17.222Q-22.654 17.622-21.933 17.622\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M244.732 2.053v-19.917h-73.978V.053\"\u002F>\u003Cpath stroke=\"none\" d=\"m170.754 2.053 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(226.752 -39.299)\">\u003Cpath d=\"M-32.201 17.875L-33.329 15.376Q-33.401 15.229-33.531 15.197Q-33.661 15.164-33.890 15.164L-33.890 14.884L-32.376 14.884L-32.376 15.164Q-32.728 15.164-32.728 15.311Q-32.728 15.356-32.717 15.376L-31.853 17.294L-31.073 15.564Q-31.039 15.496-31.039 15.417Q-31.039 15.304-31.123 15.234Q-31.207 15.164-31.326 15.164L-31.326 14.884L-30.130 14.884L-30.130 15.164Q-30.349 15.164-30.520 15.267Q-30.690 15.369-30.779 15.564L-31.815 17.875Q-31.863 17.970-31.969 17.970L-32.047 17.970Q-32.153 17.970-32.201 17.875\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(226.752 -39.299)\">\u003Cpath d=\"M-29.961 17.174Q-29.961 16.842-29.738 16.615Q-29.514 16.388-29.170 16.260Q-28.827 16.131-28.454 16.079Q-28.082 16.026-27.777 16.026L-27.777 15.773Q-27.777 15.568-27.885 15.388Q-27.993 15.209-28.174 15.106Q-28.355 15.004-28.563 15.004Q-28.970 15.004-29.206 15.096Q-29.117 15.133-29.071 15.217Q-29.025 15.301-29.025 15.403Q-29.025 15.499-29.071 15.578Q-29.117 15.656-29.198 15.701Q-29.278 15.745-29.367 15.745Q-29.517 15.745-29.618 15.648Q-29.719 15.550-29.719 15.403Q-29.719 14.781-28.563 14.781Q-28.352 14.781-28.102 14.845Q-27.853 14.908-27.651 15.027Q-27.449 15.147-27.323 15.332Q-27.196 15.516-27.196 15.759L-27.196 17.335Q-27.196 17.451-27.135 17.547Q-27.073 17.642-26.960 17.642Q-26.851 17.642-26.786 17.548Q-26.721 17.454-26.721 17.335L-26.721 16.887L-26.455 16.887L-26.455 17.335Q-26.455 17.605-26.682 17.770Q-26.909 17.936-27.189 17.936Q-27.398 17.936-27.535 17.782Q-27.671 17.629-27.695 17.413Q-27.842 17.680-28.124 17.825Q-28.406 17.970-28.731 17.970Q-29.008 17.970-29.292 17.895Q-29.575 17.820-29.768 17.641Q-29.961 17.461-29.961 17.174M-29.346 17.174Q-29.346 17.348-29.245 17.478Q-29.145 17.608-28.989 17.678Q-28.834 17.748-28.669 17.748Q-28.451 17.748-28.242 17.651Q-28.034 17.553-27.906 17.372Q-27.777 17.191-27.777 16.965L-27.777 16.237Q-28.102 16.237-28.468 16.328Q-28.834 16.419-29.090 16.631Q-29.346 16.842-29.346 17.174M-24.370 17.902L-25.973 17.902L-25.973 17.622Q-25.747 17.622-25.598 17.588Q-25.450 17.553-25.450 17.413L-25.450 13.794Q-25.450 13.524-25.557 13.462Q-25.665 13.401-25.973 13.401L-25.973 13.120L-24.896 13.045L-24.896 17.413Q-24.896 17.550-24.746 17.586Q-24.595 17.622-24.370 17.622L-24.370 17.902M-19.308 17.902L-23.710 17.902L-23.710 17.622Q-22.989 17.622-22.989 17.413L-22.989 13.612Q-22.989 13.401-23.710 13.401L-23.710 13.120L-19.420 13.120L-19.212 14.757L-19.475 14.757Q-19.533 14.286-19.636 14.021Q-19.738 13.756-19.923 13.623Q-20.107 13.489-20.379 13.445Q-20.651 13.401-21.150 13.401L-21.933 13.401Q-22.121 13.401-22.209 13.435Q-22.298 13.469-22.298 13.612L-22.298 15.277L-21.724 15.277Q-21.334 15.277-21.152 15.226Q-20.969 15.174-20.887 15.002Q-20.805 14.829-20.805 14.457L-20.542 14.457L-20.542 16.378L-20.805 16.378Q-20.805 16.005-20.887 15.832Q-20.969 15.660-21.152 15.609Q-21.334 15.557-21.724 15.557L-22.298 15.557L-22.298 17.413Q-22.298 17.553-22.209 17.588Q-22.121 17.622-21.933 17.622L-21.085 17.622Q-20.555 17.622-20.246 17.553Q-19.937 17.485-19.749 17.318Q-19.561 17.150-19.453 16.848Q-19.345 16.545-19.260 16.032L-18.993 16.032\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M51.253 2.053v-62.596H341.47V-1.37\"\u002F>\u003Cpath stroke=\"none\" d=\"m341.47.63 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(242.574 -81.978)\">\u003Cpath d=\"M-32.174 17.902L-33.726 17.902L-33.726 17.622Q-33.500 17.622-33.351 17.588Q-33.203 17.553-33.203 17.413L-33.203 15.564Q-33.203 15.376-33.251 15.292Q-33.298 15.209-33.396 15.190Q-33.493 15.171-33.705 15.171L-33.705 14.891L-32.649 14.816L-32.649 17.413Q-32.649 17.553-32.517 17.588Q-32.386 17.622-32.174 17.622L-32.174 17.902M-33.445 13.595Q-33.445 13.424-33.322 13.305Q-33.199 13.185-33.028 13.185Q-32.861 13.185-32.738 13.305Q-32.615 13.424-32.615 13.595Q-32.615 13.770-32.738 13.893Q-32.861 14.016-33.028 14.016Q-33.199 14.016-33.322 13.893Q-33.445 13.770-33.445 13.595M-31.528 16.391Q-31.528 16.063-31.393 15.762Q-31.258 15.462-31.022 15.241Q-30.786 15.021-30.482 14.901Q-30.178 14.781-29.853 14.781Q-29.347 14.781-28.999 14.884Q-28.650 14.986-28.650 15.362Q-28.650 15.509-28.747 15.610Q-28.845 15.711-28.992 15.711Q-29.146 15.711-29.245 15.612Q-29.344 15.513-29.344 15.362Q-29.344 15.174-29.204 15.082Q-29.405 15.031-29.846 15.031Q-30.202 15.031-30.431 15.227Q-30.660 15.424-30.761 15.733Q-30.861 16.043-30.861 16.391Q-30.861 16.740-30.735 17.046Q-30.608 17.352-30.354 17.536Q-30.099 17.721-29.744 17.721Q-29.522 17.721-29.337 17.637Q-29.152 17.553-29.017 17.398Q-28.882 17.242-28.824 17.034Q-28.811 16.979-28.756 16.979L-28.643 16.979Q-28.612 16.979-28.590 17.003Q-28.568 17.027-28.568 17.061L-28.568 17.082Q-28.653 17.369-28.841 17.567Q-29.029 17.765-29.294 17.868Q-29.559 17.970-29.853 17.970Q-30.284 17.970-30.672 17.764Q-31.060 17.557-31.294 17.194Q-31.528 16.832-31.528 16.391M-28.021 16.419Q-28.021 16.077-27.886 15.778Q-27.751 15.479-27.512 15.255Q-27.272 15.031-26.955 14.906Q-26.637 14.781-26.305 14.781Q-25.861 14.781-25.461 14.997Q-25.061 15.212-24.827 15.590Q-24.593 15.967-24.593 16.419Q-24.593 16.760-24.735 17.044Q-24.876 17.328-25.121 17.535Q-25.365 17.741-25.675 17.856Q-25.984 17.970-26.305 17.970Q-26.736 17.970-27.137 17.769Q-27.539 17.567-27.780 17.215Q-28.021 16.863-28.021 16.419M-26.305 17.721Q-25.704 17.721-25.480 17.343Q-25.256 16.965-25.256 16.333Q-25.256 15.721-25.490 15.362Q-25.724 15.004-26.305 15.004Q-27.358 15.004-27.358 16.333Q-27.358 16.965-27.132 17.343Q-26.907 17.721-26.305 17.721\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(242.574 -81.978)\">\u003Cpath d=\"M-23.770 16.391Q-23.770 16.053-23.629 15.762Q-23.489 15.472-23.245 15.258Q-23.001 15.045-22.696 14.930Q-22.392 14.816-22.067 14.816Q-21.797 14.816-21.534 14.915Q-21.271 15.014-21.080 15.192L-21.080 13.794Q-21.080 13.524-21.187 13.462Q-21.295 13.401-21.606 13.401L-21.606 13.120L-20.529 13.045L-20.529 17.229Q-20.529 17.417-20.475 17.500Q-20.420 17.584-20.319 17.603Q-20.218 17.622-20.003 17.622L-20.003 17.902L-21.110 17.970L-21.110 17.553Q-21.527 17.970-22.153 17.970Q-22.584 17.970-22.956 17.758Q-23.329 17.547-23.549 17.186Q-23.770 16.825-23.770 16.391M-22.095 17.748Q-21.886 17.748-21.700 17.676Q-21.514 17.605-21.360 17.468Q-21.206 17.331-21.110 17.153L-21.110 15.544Q-21.196 15.397-21.341 15.277Q-21.486 15.157-21.656 15.098Q-21.825 15.038-22.006 15.038Q-22.566 15.038-22.835 15.427Q-23.103 15.817-23.103 16.398Q-23.103 16.969-22.869 17.359Q-22.635 17.748-22.095 17.748M-19.395 16.367Q-19.395 16.046-19.270 15.757Q-19.145 15.468-18.919 15.245Q-18.694 15.021-18.398 14.901Q-18.103 14.781-17.785 14.781Q-17.457 14.781-17.195 14.881Q-16.934 14.980-16.758 15.162Q-16.582 15.345-16.488 15.603Q-16.394 15.861-16.394 16.193Q-16.394 16.285-16.476 16.306L-18.731 16.306L-18.731 16.367Q-18.731 16.955-18.448 17.338Q-18.164 17.721-17.597 17.721Q-17.275 17.721-17.007 17.528Q-16.739 17.335-16.650 17.020Q-16.643 16.979-16.568 16.965L-16.476 16.965Q-16.394 16.989-16.394 17.061Q-16.394 17.068-16.400 17.095Q-16.513 17.492-16.884 17.731Q-17.255 17.970-17.679 17.970Q-18.116 17.970-18.516 17.762Q-18.916 17.553-19.155 17.186Q-19.395 16.819-19.395 16.367M-18.725 16.097L-16.910 16.097Q-16.910 15.820-17.007 15.568Q-17.105 15.315-17.303 15.159Q-17.501 15.004-17.785 15.004Q-18.062 15.004-18.275 15.162Q-18.489 15.321-18.607 15.576Q-18.725 15.831-18.725 16.097M-15.406 17.482Q-15.406 17.314-15.283 17.191Q-15.160 17.068-14.985 17.068Q-14.818 17.068-14.695 17.191Q-14.572 17.314-14.572 17.482Q-14.572 17.656-14.695 17.779Q-14.818 17.902-14.985 17.902Q-15.160 17.902-15.283 17.779Q-15.406 17.656-15.406 17.482M-15.406 15.298Q-15.406 15.130-15.283 15.007Q-15.160 14.884-14.985 14.884Q-14.818 14.884-14.695 15.007Q-14.572 15.130-14.572 15.298Q-14.572 15.472-14.695 15.595Q-14.818 15.718-14.985 15.718Q-15.160 15.718-15.283 15.595Q-15.406 15.472-15.406 15.298M-11.926 17.902L-13.478 17.902L-13.478 17.622Q-13.252 17.622-13.104 17.588Q-12.955 17.553-12.955 17.413L-12.955 15.564Q-12.955 15.376-13.003 15.292Q-13.051 15.209-13.148 15.190Q-13.246 15.171-13.458 15.171L-13.458 14.891L-12.401 14.816L-12.401 17.413Q-12.401 17.553-12.270 17.588Q-12.138 17.622-11.926 17.622L-11.926 17.902M-13.198 13.595Q-13.198 13.424-13.075 13.305Q-12.952 13.185-12.781 13.185Q-12.613 13.185-12.490 13.305Q-12.367 13.424-12.367 13.595Q-12.367 13.770-12.490 13.893Q-12.613 14.016-12.781 14.016Q-12.952 14.016-13.075 13.893Q-13.198 13.770-13.198 13.595M-9.482 17.902L-11.215 17.902L-11.215 17.622Q-10.990 17.622-10.841 17.588Q-10.692 17.553-10.692 17.413L-10.692 15.164L-11.280 15.164L-11.280 14.884L-10.692 14.884L-10.692 14.067Q-10.692 13.749-10.515 13.501Q-10.337 13.254-10.046 13.113Q-9.756 12.973-9.445 12.973Q-9.188 12.973-8.985 13.115Q-8.782 13.257-8.782 13.500Q-8.782 13.636-8.881 13.735Q-8.980 13.835-9.117 13.835Q-9.253 13.835-9.353 13.735Q-9.452 13.636-9.452 13.500Q-9.452 13.319-9.312 13.226Q-9.390 13.199-9.489 13.199Q-9.698 13.199-9.852 13.332Q-10.005 13.465-10.086 13.669Q-10.166 13.872-10.166 14.081L-10.166 14.884L-9.277 14.884L-9.277 15.164L-10.139 15.164L-10.139 17.413Q-10.139 17.622-9.482 17.622L-9.482 17.902M-8.228 17.068L-8.228 15.564Q-8.228 15.294-8.336 15.233Q-8.443 15.171-8.754 15.171L-8.754 14.891L-7.647 14.816L-7.647 17.048L-7.647 17.068Q-7.647 17.348-7.596 17.492Q-7.544 17.635-7.403 17.692Q-7.261 17.748-6.974 17.748Q-6.721 17.748-6.516 17.608Q-6.311 17.468-6.194 17.242Q-6.078 17.017-6.078 16.767L-6.078 15.564Q-6.078 15.294-6.186 15.233Q-6.293 15.171-6.605 15.171L-6.605 14.891L-5.497 14.816L-5.497 17.229Q-5.497 17.420-5.444 17.502Q-5.391 17.584-5.290 17.603Q-5.189 17.622-4.974 17.622L-4.974 17.902L-6.051 17.970L-6.051 17.406Q-6.160 17.588-6.305 17.711Q-6.451 17.834-6.637 17.902Q-6.823 17.970-7.025 17.970Q-8.228 17.970-8.228 17.068M-2.705 17.902L-4.338 17.902L-4.338 17.622Q-4.109 17.622-3.961 17.588Q-3.812 17.553-3.812 17.413L-3.812 15.564Q-3.812 15.294-3.920 15.233Q-4.027 15.171-4.338 15.171L-4.338 14.891L-3.279 14.816L-3.279 15.465Q-3.108 15.157-2.804 14.986Q-2.500 14.816-2.154 14.816Q-1.648 14.816-1.365 15.039Q-1.081 15.263-1.081 15.759L-1.081 17.413Q-1.081 17.550-0.932 17.586Q-0.784 17.622-0.558 17.622L-0.558 17.902L-2.188 17.902L-2.188 17.622Q-1.959 17.622-1.811 17.588Q-1.662 17.553-1.662 17.413L-1.662 15.773Q-1.662 15.438-1.782 15.238Q-1.901 15.038-2.216 15.038Q-2.486 15.038-2.720 15.174Q-2.954 15.311-3.093 15.545Q-3.231 15.779-3.231 16.053L-3.231 17.413Q-3.231 17.550-3.081 17.586Q-2.930 17.622-2.705 17.622\" 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=\"M309.973 26.438H292.9v-8.536H278.23\"\u002F>\u003Cpath stroke=\"none\" d=\"m276.23 17.902 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=\"M309.973 60.58H292.9v31.3H278.23\"\u002F>\u003Cpath stroke=\"none\" d=\"m276.23 91.88 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=\"M324.4.63v-31.298H133.765V.053\"\u002F>\u003Cpath stroke=\"none\" d=\"m133.766 2.053 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(180.905 -53.464)\">\u003Cpath d=\"M-33.791 16.391Q-33.791 16.063-33.656 15.762Q-33.521 15.462-33.285 15.241Q-33.049 15.021-32.745 14.901Q-32.440 14.781-32.116 14.781Q-31.610 14.781-31.261 14.884Q-30.913 14.986-30.913 15.362Q-30.913 15.509-31.010 15.610Q-31.107 15.711-31.254 15.711Q-31.408 15.711-31.507 15.612Q-31.606 15.513-31.606 15.362Q-31.606 15.174-31.466 15.082Q-31.668 15.031-32.109 15.031Q-32.464 15.031-32.693 15.227Q-32.922 15.424-33.023 15.733Q-33.124 16.043-33.124 16.391Q-33.124 16.740-32.998 17.046Q-32.871 17.352-32.616 17.536Q-32.362 17.721-32.006 17.721Q-31.784 17.721-31.600 17.637Q-31.415 17.553-31.280 17.398Q-31.145 17.242-31.087 17.034Q-31.073 16.979-31.019 16.979L-30.906 16.979Q-30.875 16.979-30.853 17.003Q-30.831 17.027-30.831 17.061L-30.831 17.082Q-30.916 17.369-31.104 17.567Q-31.292 17.765-31.557 17.868Q-31.822 17.970-32.116 17.970Q-32.546 17.970-32.934 17.764Q-33.322 17.557-33.556 17.194Q-33.791 16.832-33.791 16.391M-30.284 16.419Q-30.284 16.077-30.149 15.778Q-30.014 15.479-29.774 15.255Q-29.535 15.031-29.217 14.906Q-28.899 14.781-28.568 14.781Q-28.124 14.781-27.724 14.997Q-27.324 15.212-27.090 15.590Q-26.855 15.967-26.855 16.419Q-26.855 16.760-26.997 17.044Q-27.139 17.328-27.384 17.535Q-27.628 17.741-27.937 17.856Q-28.247 17.970-28.568 17.970Q-28.999 17.970-29.400 17.769Q-29.802 17.567-30.043 17.215Q-30.284 16.863-30.284 16.419M-28.568 17.721Q-27.966 17.721-27.742 17.343Q-27.519 16.965-27.519 16.333Q-27.519 15.721-27.753 15.362Q-27.987 15.004-28.568 15.004Q-29.621 15.004-29.621 16.333Q-29.621 16.965-29.395 17.343Q-29.169 17.721-28.568 17.721M-24.579 17.902L-26.213 17.902L-26.213 17.622Q-25.984 17.622-25.835 17.588Q-25.687 17.553-25.687 17.413L-25.687 15.564Q-25.687 15.294-25.794 15.233Q-25.902 15.171-26.213 15.171L-26.213 14.891L-25.153 14.816L-25.153 15.465Q-24.982 15.157-24.678 14.986Q-24.374 14.816-24.029 14.816Q-23.523 14.816-23.239 15.039Q-22.956 15.263-22.956 15.759L-22.956 17.413Q-22.956 17.550-22.807 17.586Q-22.658 17.622-22.433 17.622L-22.433 17.902L-24.063 17.902L-24.063 17.622Q-23.834 17.622-23.685 17.588Q-23.537 17.553-23.537 17.413L-23.537 15.773Q-23.537 15.438-23.656 15.238Q-23.776 15.038-24.090 15.038Q-24.360 15.038-24.595 15.174Q-24.829 15.311-24.967 15.545Q-25.105 15.779-25.105 16.053L-25.105 17.413Q-25.105 17.550-24.955 17.586Q-24.805 17.622-24.579 17.622\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(180.905 -53.464)\">\u003Cpath d=\"M-21.521 17.061L-21.521 15.164L-22.160 15.164L-22.160 14.942Q-21.842 14.942-21.625 14.732Q-21.408 14.522-21.308 14.212Q-21.207 13.903-21.207 13.595L-20.940 13.595L-20.940 14.884L-19.863 14.884L-19.863 15.164L-20.940 15.164L-20.940 17.048Q-20.940 17.324-20.836 17.523Q-20.732 17.721-20.472 17.721Q-20.315 17.721-20.209 17.617Q-20.103 17.512-20.053 17.359Q-20.004 17.205-20.004 17.048L-20.004 16.634L-19.737 16.634L-19.737 17.061Q-19.737 17.287-19.836 17.497Q-19.935 17.707-20.120 17.839Q-20.304 17.970-20.533 17.970Q-20.971 17.970-21.246 17.733Q-21.521 17.495-21.521 17.061M-17.177 17.902L-18.913 17.902L-18.913 17.622Q-18.684 17.622-18.536 17.588Q-18.387 17.553-18.387 17.413L-18.387 15.564Q-18.387 15.294-18.495 15.233Q-18.602 15.171-18.913 15.171L-18.913 14.891L-17.884 14.816L-17.884 15.523Q-17.755 15.215-17.512 15.016Q-17.269 14.816-16.951 14.816Q-16.733 14.816-16.562 14.940Q-16.391 15.065-16.391 15.277Q-16.391 15.414-16.490 15.513Q-16.589 15.612-16.722 15.612Q-16.859 15.612-16.958 15.513Q-17.057 15.414-17.057 15.277Q-17.057 15.137-16.958 15.038Q-17.249 15.038-17.449 15.234Q-17.649 15.431-17.741 15.725Q-17.833 16.019-17.833 16.299L-17.833 17.413Q-17.833 17.622-17.177 17.622L-17.177 17.902M-15.847 16.419Q-15.847 16.077-15.712 15.778Q-15.577 15.479-15.338 15.255Q-15.099 15.031-14.781 14.906Q-14.463 14.781-14.132 14.781Q-13.687 14.781-13.287 14.997Q-12.887 15.212-12.653 15.590Q-12.419 15.967-12.419 16.419Q-12.419 16.760-12.561 17.044Q-12.703 17.328-12.947 17.535Q-13.192 17.741-13.501 17.856Q-13.810 17.970-14.132 17.970Q-14.562 17.970-14.964 17.769Q-15.365 17.567-15.606 17.215Q-15.847 16.863-15.847 16.419M-14.132 17.721Q-13.530 17.721-13.306 17.343Q-13.082 16.965-13.082 16.333Q-13.082 15.721-13.316 15.362Q-13.550 15.004-14.132 15.004Q-15.184 15.004-15.184 16.333Q-15.184 16.965-14.959 17.343Q-14.733 17.721-14.132 17.721M-10.156 17.902L-11.759 17.902L-11.759 17.622Q-11.534 17.622-11.385 17.588Q-11.237 17.553-11.237 17.413L-11.237 13.794Q-11.237 13.524-11.344 13.462Q-11.452 13.401-11.759 13.401L-11.759 13.120L-10.683 13.045L-10.683 17.413Q-10.683 17.550-10.532 17.586Q-10.382 17.622-10.156 17.622\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(180.905 -53.464)\">\u003Cpath d=\"M-6.854 17.895L-6.854 16.832Q-6.854 16.808-6.826 16.781Q-6.799 16.754-6.775 16.754L-6.666 16.754Q-6.601 16.754-6.587 16.812Q-6.491 17.246-6.245 17.497Q-5.999 17.748-5.585 17.748Q-5.244 17.748-4.991 17.615Q-4.738 17.482-4.738 17.174Q-4.738 17.017-4.832 16.902Q-4.926 16.788-5.064 16.719Q-5.203 16.651-5.370 16.613L-5.951 16.514Q-6.307 16.446-6.580 16.225Q-6.854 16.005-6.854 15.663Q-6.854 15.414-6.742 15.239Q-6.631 15.065-6.445 14.966Q-6.259 14.867-6.043 14.824Q-5.828 14.781-5.585 14.781Q-5.172 14.781-4.892 14.963L-4.676 14.788Q-4.666 14.785-4.659 14.783Q-4.652 14.781-4.642 14.781L-4.591 14.781Q-4.564 14.781-4.540 14.805Q-4.516 14.829-4.516 14.857L-4.516 15.704Q-4.516 15.725-4.540 15.752Q-4.564 15.779-4.591 15.779L-4.704 15.779Q-4.731 15.779-4.757 15.754Q-4.782 15.728-4.782 15.704Q-4.782 15.468-4.888 15.304Q-4.994 15.140-5.177 15.058Q-5.360 14.976-5.592 14.976Q-5.920 14.976-6.177 15.079Q-6.433 15.181-6.433 15.458Q-6.433 15.653-6.250 15.762Q-6.067 15.872-5.838 15.913L-5.264 16.019Q-5.018 16.067-4.804 16.195Q-4.591 16.323-4.454 16.526Q-4.317 16.730-4.317 16.979Q-4.317 17.492-4.683 17.731Q-5.049 17.970-5.585 17.970Q-6.081 17.970-6.413 17.676L-6.679 17.950Q-6.700 17.970-6.727 17.970L-6.775 17.970Q-6.799 17.970-6.826 17.943Q-6.854 17.916-6.854 17.895M-2.072 17.902L-3.624 17.902L-3.624 17.622Q-3.398 17.622-3.249 17.588Q-3.101 17.553-3.101 17.413L-3.101 15.564Q-3.101 15.376-3.148 15.292Q-3.196 15.209-3.294 15.190Q-3.391 15.171-3.603 15.171L-3.603 14.891L-2.547 14.816L-2.547 17.413Q-2.547 17.553-2.415 17.588Q-2.284 17.622-2.072 17.622L-2.072 17.902M-3.343 13.595Q-3.343 13.424-3.220 13.305Q-3.097 13.185-2.926 13.185Q-2.759 13.185-2.636 13.305Q-2.513 13.424-2.513 13.595Q-2.513 13.770-2.636 13.893Q-2.759 14.016-2.926 14.016Q-3.097 14.016-3.220 13.893Q-3.343 13.770-3.343 13.595M-1.467 18.435Q-1.467 18.189-1.270 18.005Q-1.074 17.820-0.817 17.741Q-0.954 17.629-1.026 17.468Q-1.098 17.307-1.098 17.126Q-1.098 16.805-0.886 16.559Q-1.221 16.261-1.221 15.851Q-1.221 15.390-0.831 15.103Q-0.441 14.816 0.037 14.816Q0.509 14.816 0.844 15.062Q1.018 14.908 1.228 14.826Q1.438 14.744 1.667 14.744Q1.832 14.744 1.953 14.851Q2.074 14.959 2.074 15.123Q2.074 15.219 2.002 15.291Q1.931 15.362 1.838 15.362Q1.739 15.362 1.669 15.289Q1.599 15.215 1.599 15.116Q1.599 15.062 1.613 15.031L1.620 15.017Q1.626 14.997 1.635 14.986Q1.644 14.976 1.647 14.969Q1.291 14.969 1.004 15.192Q1.291 15.485 1.291 15.851Q1.291 16.166 1.107 16.398Q0.922 16.631 0.634 16.759Q0.345 16.887 0.037 16.887Q-0.165 16.887-0.356 16.837Q-0.547 16.788-0.725 16.678Q-0.817 16.805-0.817 16.948Q-0.817 17.130-0.689 17.265Q-0.561 17.400-0.376 17.400L0.256 17.400Q0.704 17.400 1.073 17.471Q1.442 17.543 1.702 17.772Q1.961 18.001 1.961 18.435Q1.961 18.756 1.666 18.958Q1.370 19.160 0.967 19.249Q0.563 19.338 0.249 19.338Q-0.069 19.338-0.472 19.249Q-0.876 19.160-1.171 18.958Q-1.467 18.756-1.467 18.435M-1.012 18.435Q-1.012 18.664-0.793 18.813Q-0.575 18.962-0.283 19.030Q0.010 19.098 0.249 19.098Q0.413 19.098 0.622 19.062Q0.830 19.027 1.037 18.946Q1.244 18.866 1.375 18.738Q1.507 18.610 1.507 18.435Q1.507 18.083 1.126 17.989Q0.745 17.895 0.242 17.895L-0.376 17.895Q-0.616 17.895-0.814 18.046Q-1.012 18.196-1.012 18.435M0.037 16.648Q0.704 16.648 0.704 15.851Q0.704 15.051 0.037 15.051Q-0.633 15.051-0.633 15.851Q-0.633 16.648 0.037 16.648M4.238 17.902L2.604 17.902L2.604 17.622Q2.833 17.622 2.982 17.588Q3.130 17.553 3.130 17.413L3.130 15.564Q3.130 15.294 3.023 15.233Q2.915 15.171 2.604 15.171L2.604 14.891L3.664 14.816L3.664 15.465Q3.834 15.157 4.139 14.986Q4.443 14.816 4.788 14.816Q5.294 14.816 5.578 15.039Q5.861 15.263 5.861 15.759L5.861 17.413Q5.861 17.550 6.010 17.586Q6.159 17.622 6.384 17.622L6.384 17.902L4.754 17.902L4.754 17.622Q4.983 17.622 5.132 17.588Q5.280 17.553 5.280 17.413L5.280 15.773Q5.280 15.438 5.161 15.238Q5.041 15.038 4.727 15.038Q4.457 15.038 4.222 15.174Q3.988 15.311 3.850 15.545Q3.711 15.779 3.711 16.053L3.711 17.413Q3.711 17.550 3.862 17.586Q4.012 17.622 4.238 17.622L4.238 17.902M7.030 17.174Q7.030 16.842 7.254 16.615Q7.478 16.388 7.822 16.260Q8.165 16.131 8.538 16.079Q8.910 16.026 9.214 16.026L9.214 15.773Q9.214 15.568 9.107 15.388Q8.999 15.209 8.818 15.106Q8.637 15.004 8.428 15.004Q8.021 15.004 7.786 15.096Q7.874 15.133 7.921 15.217Q7.967 15.301 7.967 15.403Q7.967 15.499 7.921 15.578Q7.874 15.656 7.794 15.701Q7.714 15.745 7.625 15.745Q7.475 15.745 7.374 15.648Q7.273 15.550 7.273 15.403Q7.273 14.781 8.428 14.781Q8.640 14.781 8.890 14.845Q9.139 14.908 9.341 15.027Q9.542 15.147 9.669 15.332Q9.795 15.516 9.795 15.759L9.795 17.335Q9.795 17.451 9.857 17.547Q9.918 17.642 10.031 17.642Q10.141 17.642 10.206 17.548Q10.270 17.454 10.270 17.335L10.270 16.887L10.537 16.887L10.537 17.335Q10.537 17.605 10.310 17.770Q10.082 17.936 9.802 17.936Q9.594 17.936 9.457 17.782Q9.320 17.629 9.296 17.413Q9.149 17.680 8.867 17.825Q8.585 17.970 8.261 17.970Q7.984 17.970 7.700 17.895Q7.416 17.820 7.223 17.641Q7.030 17.461 7.030 17.174M7.645 17.174Q7.645 17.348 7.746 17.478Q7.847 17.608 8.003 17.678Q8.158 17.748 8.322 17.748Q8.541 17.748 8.749 17.651Q8.958 17.553 9.086 17.372Q9.214 17.191 9.214 16.965L9.214 16.237Q8.890 16.237 8.524 16.328Q8.158 16.419 7.902 16.631Q7.645 16.842 7.645 17.174M12.622 17.902L11.019 17.902L11.019 17.622Q11.245 17.622 11.393 17.588Q11.542 17.553 11.542 17.413L11.542 13.794Q11.542 13.524 11.434 13.462Q11.327 13.401 11.019 13.401L11.019 13.120L12.096 13.045L12.096 17.413Q12.096 17.550 12.246 17.586Q12.396 17.622 12.622 17.622L12.622 17.902M13.217 17.895L13.217 16.832Q13.217 16.808 13.244 16.781Q13.271 16.754 13.295 16.754L13.405 16.754Q13.470 16.754 13.483 16.812Q13.579 17.246 13.825 17.497Q14.071 17.748 14.485 17.748Q14.827 17.748 15.080 17.615Q15.332 17.482 15.332 17.174Q15.332 17.017 15.238 16.902Q15.145 16.788 15.006 16.719Q14.868 16.651 14.700 16.613L14.119 16.514Q13.764 16.446 13.490 16.225Q13.217 16.005 13.217 15.663Q13.217 15.414 13.328 15.239Q13.439 15.065 13.625 14.966Q13.811 14.867 14.027 14.824Q14.242 14.781 14.485 14.781Q14.898 14.781 15.179 14.963L15.394 14.788Q15.404 14.785 15.411 14.783Q15.418 14.781 15.428 14.781L15.479 14.781Q15.507 14.781 15.531 14.805Q15.555 14.829 15.555 14.857L15.555 15.704Q15.555 15.725 15.531 15.752Q15.507 15.779 15.479 15.779L15.367 15.779Q15.339 15.779 15.314 15.754Q15.288 15.728 15.288 15.704Q15.288 15.468 15.182 15.304Q15.076 15.140 14.893 15.058Q14.710 14.976 14.478 14.976Q14.150 14.976 13.894 15.079Q13.637 15.181 13.637 15.458Q13.637 15.653 13.820 15.762Q14.003 15.872 14.232 15.913L14.806 16.019Q15.052 16.067 15.266 16.195Q15.479 16.323 15.616 16.526Q15.753 16.730 15.753 16.979Q15.753 17.492 15.387 17.731Q15.021 17.970 14.485 17.970Q13.989 17.970 13.658 17.676L13.391 17.950Q13.371 17.970 13.343 17.970L13.295 17.970Q13.271 17.970 13.244 17.943Q13.217 17.916 13.217 17.895\" 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\">A high-level datapath. The PC addresses instruction memory; the fetched instruction names registers in the register file, whose values feed the ALU; the ALU result addresses data memory or returns to the register file. The control unit (right) reads icode and steers every unit.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:358.698px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 269.024 177.285\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M19.81 34.712h85.358v-73.977H19.81Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\">\u003Cg transform=\"translate(-15.376 11.358)\">\u003Cpath d=\"M65.381-21.276L63.022-21.276L63.022-21.573Q63.346-21.573 63.588-21.620Q63.830-21.667 63.830-21.835L63.830-26.178Q63.830-26.350 63.588-26.397Q63.346-26.444 63.022-26.444L63.022-26.741L65.615-26.741Q65.947-26.741 66.334-26.655Q66.721-26.569 67.068-26.395Q67.416-26.221 67.635-25.940Q67.854-25.659 67.854-25.292Q67.854-24.967 67.652-24.702Q67.451-24.436 67.145-24.260Q66.838-24.085 66.510-23.995Q66.877-23.874 67.137-23.604Q67.397-23.335 67.447-22.971L67.541-22.276Q67.611-21.827 67.709-21.596Q67.807-21.366 68.104-21.366Q68.350-21.366 68.483-21.583Q68.615-21.799 68.615-22.061Q68.635-22.135 68.717-22.155L68.799-22.155Q68.893-22.131 68.893-22.038Q68.893-21.807 68.795-21.592Q68.697-21.378 68.520-21.243Q68.342-21.108 68.111-21.108Q67.514-21.108 67.096-21.395Q66.678-21.682 66.678-22.253L66.678-22.948Q66.678-23.229 66.525-23.444Q66.373-23.659 66.123-23.772Q65.873-23.885 65.600-23.885L64.572-23.885L64.572-21.835Q64.572-21.671 64.816-21.622Q65.061-21.573 65.381-21.573L65.381-21.276M64.572-26.178L64.572-24.139L65.502-24.139Q65.822-24.139 66.090-24.192Q66.358-24.245 66.557-24.372Q66.756-24.499 66.873-24.731Q66.990-24.963 66.990-25.292Q66.990-25.944 66.594-26.194Q66.197-26.444 65.502-26.444L64.975-26.444Q64.756-26.444 64.664-26.401Q64.572-26.358 64.572-26.178M69.154-23.030Q69.154-23.510 69.387-23.926Q69.619-24.342 70.029-24.592Q70.440-24.842 70.916-24.842Q71.647-24.842 72.045-24.401Q72.443-23.960 72.443-23.229Q72.443-23.124 72.350-23.100L69.900-23.100L69.900-23.030Q69.900-22.620 70.022-22.264Q70.143-21.909 70.414-21.692Q70.686-21.475 71.115-21.475Q71.479-21.475 71.775-21.704Q72.072-21.932 72.174-22.284Q72.182-22.331 72.268-22.346L72.350-22.346Q72.443-22.319 72.443-22.237Q72.443-22.229 72.436-22.198Q72.373-21.971 72.234-21.788Q72.096-21.604 71.904-21.471Q71.713-21.338 71.494-21.268Q71.275-21.198 71.037-21.198Q70.666-21.198 70.328-21.335Q69.990-21.471 69.723-21.723Q69.455-21.975 69.305-22.315Q69.154-22.655 69.154-23.030M69.908-23.338L71.869-23.338Q71.869-23.643 71.768-23.934Q71.666-24.225 71.449-24.407Q71.233-24.588 70.916-24.588Q70.615-24.588 70.385-24.401Q70.154-24.213 70.031-23.922Q69.908-23.631 69.908-23.338M72.932-20.667Q72.932-20.948 73.143-21.159Q73.354-21.370 73.639-21.460Q73.483-21.585 73.404-21.774Q73.326-21.963 73.326-22.163Q73.326-22.518 73.557-22.811Q73.190-23.151 73.190-23.620Q73.190-23.971 73.393-24.241Q73.596-24.510 73.916-24.657Q74.236-24.803 74.580-24.803Q75.100-24.803 75.471-24.522Q75.834-24.893 76.381-24.893Q76.561-24.893 76.688-24.766Q76.815-24.639 76.815-24.460Q76.815-24.354 76.736-24.276Q76.658-24.198 76.549-24.198Q76.440-24.198 76.363-24.274Q76.287-24.350 76.287-24.460Q76.287-24.561 76.326-24.612Q76.334-24.620 76.338-24.626Q76.342-24.631 76.342-24.635Q75.967-24.635 75.647-24.381Q75.967-24.042 75.967-23.620Q75.967-23.350 75.850-23.133Q75.733-22.917 75.527-22.758Q75.322-22.600 75.080-22.518Q74.838-22.436 74.580-22.436Q74.361-22.436 74.149-22.495Q73.936-22.553 73.740-22.674Q73.647-22.534 73.647-22.354Q73.647-22.147 73.783-21.995Q73.920-21.842 74.127-21.842L74.822-21.842Q75.311-21.842 75.723-21.758Q76.135-21.674 76.414-21.417Q76.693-21.159 76.693-20.667Q76.693-20.303 76.373-20.071Q76.053-19.838 75.611-19.737Q75.170-19.635 74.815-19.635Q74.459-19.635 74.016-19.737Q73.572-19.838 73.252-20.071Q72.932-20.303 72.932-20.667M73.436-20.667Q73.436-20.471 73.580-20.323Q73.725-20.174 73.938-20.085Q74.150-19.995 74.391-19.948Q74.631-19.901 74.815-19.901Q75.057-19.901 75.387-19.979Q75.717-20.057 75.953-20.231Q76.190-20.405 76.190-20.667Q76.190-21.073 75.779-21.182Q75.369-21.292 74.807-21.292L74.127-21.292Q73.858-21.292 73.647-21.114Q73.436-20.936 73.436-20.667M74.580-22.702Q75.303-22.702 75.303-23.620Q75.303-24.542 74.580-24.542Q73.854-24.542 73.854-23.620Q73.854-22.702 74.580-22.702M79.037-21.276L77.260-21.276L77.260-21.573Q77.533-21.573 77.701-21.620Q77.869-21.667 77.869-21.835L77.869-23.971Q77.869-24.186 77.813-24.282Q77.756-24.378 77.643-24.399Q77.529-24.421 77.283-24.421L77.283-24.717L78.483-24.803L78.483-21.835Q78.483-21.667 78.629-21.620Q78.775-21.573 79.037-21.573L79.037-21.276M77.596-26.198Q77.596-26.389 77.731-26.520Q77.865-26.651 78.061-26.651Q78.182-26.651 78.285-26.588Q78.389-26.526 78.451-26.422Q78.514-26.319 78.514-26.198Q78.514-26.003 78.383-25.868Q78.252-25.733 78.061-25.733Q77.861-25.733 77.729-25.866Q77.596-25.999 77.596-26.198M79.580-21.284L79.580-22.506Q79.580-22.534 79.611-22.565Q79.643-22.596 79.666-22.596L79.772-22.596Q79.842-22.596 79.858-22.534Q79.920-22.213 80.059-21.973Q80.197-21.733 80.430-21.592Q80.662-21.452 80.971-21.452Q81.209-21.452 81.418-21.512Q81.627-21.573 81.764-21.721Q81.900-21.870 81.900-22.116Q81.900-22.370 81.690-22.536Q81.479-22.702 81.209-22.756L80.588-22.870Q80.182-22.948 79.881-23.204Q79.580-23.460 79.580-23.835Q79.580-24.202 79.781-24.424Q79.983-24.647 80.307-24.745Q80.631-24.842 80.971-24.842Q81.436-24.842 81.733-24.635L81.955-24.819Q81.979-24.842 82.010-24.842L82.061-24.842Q82.092-24.842 82.119-24.815Q82.147-24.788 82.147-24.756L82.147-23.772Q82.147-23.741 82.121-23.712Q82.096-23.682 82.061-23.682L81.955-23.682Q81.920-23.682 81.893-23.710Q81.865-23.737 81.865-23.772Q81.865-24.171 81.613-24.391Q81.361-24.612 80.963-24.612Q80.608-24.612 80.324-24.489Q80.041-24.366 80.041-24.061Q80.041-23.842 80.242-23.710Q80.443-23.577 80.690-23.534L81.315-23.421Q81.744-23.331 82.053-23.034Q82.361-22.737 82.361-22.323Q82.361-21.753 81.963-21.475Q81.565-21.198 80.971-21.198Q80.420-21.198 80.068-21.534L79.772-21.221Q79.748-21.198 79.713-21.198L79.666-21.198Q79.643-21.198 79.611-21.229Q79.580-21.260 79.580-21.284M83.514-22.237L83.514-24.428L82.811-24.428L82.811-24.682Q83.166-24.682 83.408-24.915Q83.650-25.147 83.762-25.495Q83.873-25.842 83.873-26.198L84.154-26.198L84.154-24.725L85.330-24.725L85.330-24.428L84.154-24.428L84.154-22.253Q84.154-21.932 84.274-21.704Q84.393-21.475 84.674-21.475Q84.854-21.475 84.971-21.598Q85.088-21.721 85.141-21.901Q85.193-22.081 85.193-22.253L85.193-22.725L85.475-22.725L85.475-22.237Q85.475-21.983 85.369-21.743Q85.264-21.503 85.066-21.350Q84.869-21.198 84.611-21.198Q84.295-21.198 84.043-21.321Q83.791-21.444 83.652-21.678Q83.514-21.913 83.514-22.237M86.193-23.030Q86.193-23.510 86.426-23.926Q86.658-24.342 87.068-24.592Q87.479-24.842 87.955-24.842Q88.686-24.842 89.084-24.401Q89.483-23.960 89.483-23.229Q89.483-23.124 89.389-23.100L86.940-23.100L86.940-23.030Q86.940-22.620 87.061-22.264Q87.182-21.909 87.453-21.692Q87.725-21.475 88.154-21.475Q88.518-21.475 88.815-21.704Q89.111-21.932 89.213-22.284Q89.221-22.331 89.307-22.346L89.389-22.346Q89.483-22.319 89.483-22.237Q89.483-22.229 89.475-22.198Q89.412-21.971 89.274-21.788Q89.135-21.604 88.943-21.471Q88.752-21.338 88.533-21.268Q88.315-21.198 88.076-21.198Q87.705-21.198 87.367-21.335Q87.029-21.471 86.762-21.723Q86.494-21.975 86.344-22.315Q86.193-22.655 86.193-23.030M86.947-23.338L88.908-23.338Q88.908-23.643 88.807-23.934Q88.705-24.225 88.488-24.407Q88.272-24.588 87.955-24.588Q87.654-24.588 87.424-24.401Q87.193-24.213 87.070-23.922Q86.947-23.631 86.947-23.338M91.979-21.276L89.998-21.276L89.998-21.573Q90.268-21.573 90.436-21.618Q90.604-21.663 90.604-21.835L90.604-23.971Q90.604-24.186 90.541-24.282Q90.479-24.378 90.361-24.399Q90.244-24.421 89.998-24.421L89.998-24.717L91.166-24.803L91.166-24.018Q91.244-24.229 91.397-24.415Q91.549-24.600 91.748-24.702Q91.947-24.803 92.174-24.803Q92.420-24.803 92.611-24.659Q92.803-24.514 92.803-24.284Q92.803-24.128 92.697-24.018Q92.592-23.909 92.436-23.909Q92.279-23.909 92.170-24.018Q92.061-24.128 92.061-24.284Q92.061-24.444 92.166-24.549Q91.842-24.549 91.627-24.321Q91.412-24.092 91.316-23.753Q91.221-23.413 91.221-23.108L91.221-21.835Q91.221-21.667 91.447-21.620Q91.674-21.573 91.979-21.573\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.376 11.358)\">\u003Cpath d=\"M74.305-11.776L72.320-11.776L72.320-12.073Q72.594-12.073 72.762-12.120Q72.930-12.167 72.930-12.335L72.930-14.928L72.289-14.928L72.289-15.225L72.930-15.225L72.930-16.159Q72.930-16.424 73.047-16.661Q73.164-16.897 73.357-17.061Q73.551-17.225 73.799-17.317Q74.047-17.409 74.313-17.409Q74.598-17.409 74.822-17.251Q75.047-17.092 75.047-16.815Q75.047-16.659 74.941-16.549Q74.836-16.440 74.672-16.440Q74.516-16.440 74.406-16.549Q74.297-16.659 74.297-16.815Q74.297-17.022 74.457-17.128Q74.359-17.151 74.266-17.151Q74.035-17.151 73.863-16.995Q73.691-16.838 73.605-16.602Q73.520-16.366 73.520-16.143L73.520-15.225L74.488-15.225L74.488-14.928L73.543-14.928L73.543-12.335Q73.543-12.167 73.770-12.120Q73.996-12.073 74.305-12.073\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.376 11.358)\">\u003Cpath d=\"M77.327-11.776L75.549-11.776L75.549-12.073Q75.823-12.073 75.991-12.120Q76.159-12.167 76.159-12.335L76.159-14.471Q76.159-14.686 76.102-14.782Q76.045-14.878 75.932-14.899Q75.819-14.921 75.573-14.921L75.573-15.217L76.772-15.303L76.772-12.335Q76.772-12.167 76.918-12.120Q77.065-12.073 77.327-12.073L77.327-11.776M75.885-16.698Q75.885-16.889 76.020-17.020Q76.155-17.151 76.350-17.151Q76.471-17.151 76.575-17.088Q76.678-17.026 76.741-16.922Q76.803-16.819 76.803-16.698Q76.803-16.503 76.672-16.368Q76.541-16.233 76.350-16.233Q76.151-16.233 76.018-16.366Q75.885-16.499 75.885-16.698M79.741-11.776L77.909-11.776L77.909-12.073Q78.182-12.073 78.350-12.120Q78.518-12.167 78.518-12.335L78.518-16.495Q78.518-16.710 78.456-16.805Q78.393-16.901 78.274-16.922Q78.155-16.944 77.909-16.944L77.909-17.241L79.131-17.327L79.131-12.335Q79.131-12.167 79.299-12.120Q79.467-12.073 79.741-12.073L79.741-11.776M80.186-13.530Q80.186-14.010 80.418-14.426Q80.651-14.842 81.061-15.092Q81.471-15.342 81.948-15.342Q82.678-15.342 83.077-14.901Q83.475-14.460 83.475-13.729Q83.475-13.624 83.381-13.600L80.932-13.600L80.932-13.530Q80.932-13.120 81.053-12.764Q81.174-12.409 81.446-12.192Q81.717-11.975 82.147-11.975Q82.510-11.975 82.807-12.204Q83.104-12.432 83.206-12.784Q83.213-12.831 83.299-12.846L83.381-12.846Q83.475-12.819 83.475-12.737Q83.475-12.729 83.467-12.698Q83.405-12.471 83.266-12.288Q83.127-12.104 82.936-11.971Q82.745-11.838 82.526-11.768Q82.307-11.698 82.069-11.698Q81.698-11.698 81.360-11.835Q81.022-11.971 80.754-12.223Q80.487-12.475 80.336-12.815Q80.186-13.155 80.186-13.530M80.940-13.838L82.901-13.838Q82.901-14.143 82.799-14.434Q82.698-14.725 82.481-14.907Q82.264-15.088 81.948-15.088Q81.647-15.088 81.416-14.901Q81.186-14.713 81.063-14.422Q80.940-14.131 80.940-13.838\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.376 11.358)\">\u003Cpath d=\"M64.933-0.526Q64.383-0.926 64.012-1.481Q63.641-2.037 63.460-2.683Q63.279-3.329 63.279-4.026Q63.279-4.539 63.379-5.034Q63.480-5.530 63.685-5.981Q63.890-6.432 64.203-6.824Q64.516-7.215 64.933-7.519Q64.943-7.523 64.950-7.524Q64.957-7.526 64.967-7.526L65.035-7.526Q65.070-7.526 65.092-7.502Q65.114-7.478 65.114-7.441Q65.114-7.396 65.087-7.379Q64.738-7.078 64.485-6.694Q64.232-6.309 64.080-5.868Q63.928-5.427 63.856-4.971Q63.784-4.515 63.784-4.026Q63.784-3.025 64.094-2.138Q64.403-1.251 65.087-0.666Q65.114-0.649 65.114-0.605Q65.114-0.567 65.092-0.543Q65.070-0.519 65.035-0.519L64.967-0.519Q64.960-0.523 64.952-0.524Q64.943-0.526 64.933-0.526M68.935-2.276L66.406-2.276L66.406-2.556Q67.373-2.556 67.373-2.765L67.373-6.384Q66.980-6.196 66.358-6.196L66.358-6.477Q66.775-6.477 67.139-6.578Q67.503-6.678 67.760-6.924L67.886-6.924Q67.951-6.907 67.968-6.839L67.968-2.765Q67.968-2.556 68.935-2.556L68.935-2.276M70.398-3.038L70.367-3.038Q70.504-2.741 70.802-2.565Q71.099-2.389 71.427-2.389Q71.789-2.389 72.017-2.567Q72.244-2.744 72.338-3.033Q72.432-3.322 72.432-3.684Q72.432-3.999 72.377-4.284Q72.322-4.569 72.150-4.775Q71.977-4.980 71.663-4.980Q71.389-4.980 71.207-4.913Q71.024-4.846 70.919-4.757Q70.815-4.669 70.719-4.559Q70.624-4.450 70.579-4.440L70.501-4.440Q70.429-4.457 70.412-4.528L70.412-6.846Q70.412-6.880 70.436-6.902Q70.460-6.924 70.494-6.924L70.521-6.924Q70.808-6.808 71.077-6.754Q71.345-6.699 71.622-6.699Q71.899-6.699 72.169-6.754Q72.439-6.808 72.719-6.924L72.743-6.924Q72.777-6.924 72.801-6.901Q72.825-6.877 72.825-6.846L72.825-6.777Q72.825-6.750 72.804-6.730Q72.531-6.415 72.146-6.239Q71.762-6.063 71.348-6.063Q71.010-6.063 70.692-6.149L70.692-4.867Q71.089-5.202 71.663-5.202Q72.066-5.202 72.403-4.992Q72.739-4.781 72.933-4.429Q73.126-4.077 73.126-3.677Q73.126-3.346 72.986-3.060Q72.845-2.775 72.601-2.565Q72.357-2.355 72.054-2.245Q71.752-2.136 71.434-2.136Q71.075-2.136 70.749-2.300Q70.422-2.464 70.227-2.756Q70.032-3.048 70.032-3.411Q70.032-3.561 70.138-3.667Q70.244-3.773 70.398-3.773Q70.552-3.773 70.656-3.669Q70.760-3.565 70.760-3.411Q70.760-3.254 70.656-3.146Q70.552-3.038 70.398-3.038\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.376 11.358)\">\u003Cpath d=\"M78.345-2.276L76.609-2.276L76.609-2.556Q76.838-2.556 76.987-2.590Q77.135-2.625 77.135-2.765L77.135-4.614Q77.135-4.884 77.028-4.945Q76.920-5.007 76.609-5.007L76.609-5.287L77.638-5.362L77.638-4.655Q77.768-4.963 78.010-5.162Q78.253-5.362 78.571-5.362Q78.790-5.362 78.961-5.238Q79.132-5.113 79.132-4.901Q79.132-4.764 79.032-4.665Q78.933-4.566 78.800-4.566Q78.663-4.566 78.564-4.665Q78.465-4.764 78.465-4.901Q78.465-5.041 78.564-5.140Q78.274-5.140 78.074-4.944Q77.874-4.747 77.781-4.453Q77.689-4.159 77.689-3.879L77.689-2.765Q77.689-2.556 78.345-2.556L78.345-2.276M79.675-3.811Q79.675-4.132 79.800-4.421Q79.925-4.710 80.150-4.933Q80.376-5.157 80.671-5.277Q80.967-5.397 81.285-5.397Q81.613-5.397 81.875-5.297Q82.136-5.198 82.312-5.016Q82.488-4.833 82.582-4.575Q82.676-4.317 82.676-3.985Q82.676-3.893 82.594-3.872L80.338-3.872L80.338-3.811Q80.338-3.223 80.622-2.840Q80.906-2.457 81.473-2.457Q81.794-2.457 82.062-2.650Q82.331-2.843 82.420-3.158Q82.427-3.199 82.502-3.213L82.594-3.213Q82.676-3.189 82.676-3.117Q82.676-3.110 82.669-3.083Q82.556-2.686 82.186-2.447Q81.815-2.208 81.391-2.208Q80.953-2.208 80.553-2.416Q80.154-2.625 79.914-2.992Q79.675-3.359 79.675-3.811M80.345-4.081L82.160-4.081Q82.160-4.358 82.062-4.610Q81.965-4.863 81.767-5.019Q81.569-5.174 81.285-5.174Q81.008-5.174 80.794-5.016Q80.581-4.857 80.463-4.602Q80.345-4.347 80.345-4.081M83.223-1.743Q83.223-1.989 83.419-2.173Q83.616-2.358 83.872-2.437Q83.736-2.549 83.664-2.710Q83.592-2.871 83.592-3.052Q83.592-3.373 83.804-3.619Q83.469-3.917 83.469-4.327Q83.469-4.788 83.859-5.075Q84.248-5.362 84.727-5.362Q85.198-5.362 85.533-5.116Q85.708-5.270 85.918-5.352Q86.128-5.434 86.357-5.434Q86.521-5.434 86.643-5.327Q86.764-5.219 86.764-5.055Q86.764-4.959 86.692-4.887Q86.620-4.816 86.528-4.816Q86.429-4.816 86.359-4.889Q86.289-4.963 86.289-5.062Q86.289-5.116 86.302-5.147L86.309-5.161Q86.316-5.181 86.325-5.192Q86.333-5.202 86.337-5.209Q85.981-5.209 85.694-4.986Q85.981-4.693 85.981-4.327Q85.981-4.012 85.797-3.780Q85.612-3.547 85.323-3.419Q85.034-3.291 84.727-3.291Q84.525-3.291 84.334-3.341Q84.142-3.390 83.965-3.500Q83.872-3.373 83.872-3.230Q83.872-3.048 84-2.913Q84.129-2.778 84.313-2.778L84.946-2.778Q85.393-2.778 85.762-2.707Q86.132-2.635 86.391-2.406Q86.651-2.177 86.651-1.743Q86.651-1.422 86.355-1.220Q86.060-1.018 85.656-0.929Q85.253-0.840 84.939-0.840Q84.621-0.840 84.218-0.929Q83.814-1.018 83.519-1.220Q83.223-1.422 83.223-1.743M83.677-1.743Q83.677-1.514 83.896-1.365Q84.115-1.216 84.407-1.148Q84.699-1.080 84.939-1.080Q85.103-1.080 85.311-1.116Q85.520-1.151 85.727-1.232Q85.933-1.312 86.065-1.440Q86.197-1.568 86.197-1.743Q86.197-2.095 85.815-2.189Q85.434-2.283 84.932-2.283L84.313-2.283Q84.074-2.283 83.876-2.132Q83.677-1.982 83.677-1.743M84.727-3.530Q85.393-3.530 85.393-4.327Q85.393-5.127 84.727-5.127Q84.057-5.127 84.057-4.327Q84.057-3.530 84.727-3.530M87.246-2.283L87.246-3.346Q87.246-3.370 87.273-3.397Q87.301-3.424 87.324-3.424L87.434-3.424Q87.499-3.424 87.512-3.366Q87.608-2.932 87.854-2.681Q88.100-2.430 88.514-2.430Q88.856-2.430 89.109-2.563Q89.362-2.696 89.362-3.004Q89.362-3.161 89.268-3.276Q89.174-3.390 89.035-3.459Q88.897-3.527 88.729-3.565L88.148-3.664Q87.793-3.732 87.519-3.953Q87.246-4.173 87.246-4.515Q87.246-4.764 87.357-4.939Q87.468-5.113 87.654-5.212Q87.841-5.311 88.056-5.354Q88.271-5.397 88.514-5.397Q88.927-5.397 89.208-5.215L89.423-5.390Q89.433-5.393 89.440-5.395Q89.447-5.397 89.457-5.397L89.509-5.397Q89.536-5.397 89.560-5.373Q89.584-5.349 89.584-5.321L89.584-4.474Q89.584-4.453 89.560-4.426Q89.536-4.399 89.509-4.399L89.396-4.399Q89.368-4.399 89.343-4.424Q89.317-4.450 89.317-4.474Q89.317-4.710 89.211-4.874Q89.105-5.038 88.922-5.120Q88.739-5.202 88.507-5.202Q88.179-5.202 87.923-5.099Q87.666-4.997 87.666-4.720Q87.666-4.525 87.849-4.416Q88.032-4.306 88.261-4.265L88.835-4.159Q89.081-4.111 89.295-3.983Q89.509-3.855 89.645-3.652Q89.782-3.448 89.782-3.199Q89.782-2.686 89.416-2.447Q89.051-2.208 88.514-2.208Q88.018-2.208 87.687-2.502L87.420-2.228Q87.400-2.208 87.372-2.208L87.324-2.208Q87.301-2.208 87.273-2.235Q87.246-2.262 87.246-2.283M90.732-0.519L90.664-0.519Q90.630-0.519 90.607-0.545Q90.585-0.570 90.585-0.605Q90.585-0.649 90.616-0.666Q90.971-0.970 91.221-1.360Q91.470-1.750 91.623-2.182Q91.775-2.614 91.845-3.083Q91.915-3.551 91.915-4.026Q91.915-4.505 91.845-4.971Q91.775-5.438 91.621-5.873Q91.467-6.309 91.216-6.697Q90.965-7.085 90.616-7.379Q90.585-7.396 90.585-7.441Q90.585-7.475 90.607-7.500Q90.630-7.526 90.664-7.526L90.732-7.526Q90.742-7.526 90.751-7.524Q90.760-7.523 90.770-7.519Q91.313-7.119 91.686-6.566Q92.058-6.012 92.239-5.366Q92.421-4.720 92.421-4.026Q92.421-3.325 92.239-2.678Q92.058-2.030 91.684-1.476Q91.310-0.922 90.770-0.526Q90.760-0.526 90.751-0.524Q90.742-0.523 90.732-0.519\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-42.986-25.039H17.61\"\u002F>\u003Cpath stroke=\"none\" d=\"m19.61-25.039-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(-124.76 -20.37)\">\u003Cpath d=\"M62.803-2.283L62.803-3.346Q62.803-3.370 62.831-3.397Q62.858-3.424 62.882-3.424L62.991-3.424Q63.056-3.424 63.070-3.366Q63.166-2.932 63.412-2.681Q63.658-2.430 64.072-2.430Q64.413-2.430 64.666-2.563Q64.919-2.696 64.919-3.004Q64.919-3.161 64.825-3.276Q64.731-3.390 64.593-3.459Q64.454-3.527 64.287-3.565L63.706-3.664Q63.350-3.732 63.077-3.953Q62.803-4.173 62.803-4.515Q62.803-4.764 62.915-4.939Q63.026-5.113 63.212-5.212Q63.398-5.311 63.614-5.354Q63.829-5.397 64.072-5.397Q64.485-5.397 64.765-5.215L64.981-5.390Q64.991-5.393 64.998-5.395Q65.005-5.397 65.015-5.397L65.066-5.397Q65.093-5.397 65.117-5.373Q65.141-5.349 65.141-5.321L65.141-4.474Q65.141-4.453 65.117-4.426Q65.093-4.399 65.066-4.399L64.953-4.399Q64.926-4.399 64.900-4.424Q64.875-4.450 64.875-4.474Q64.875-4.710 64.769-4.874Q64.663-5.038 64.480-5.120Q64.297-5.202 64.065-5.202Q63.737-5.202 63.480-5.099Q63.224-4.997 63.224-4.720Q63.224-4.525 63.407-4.416Q63.590-4.306 63.819-4.265L64.393-4.159Q64.639-4.111 64.853-3.983Q65.066-3.855 65.203-3.652Q65.340-3.448 65.340-3.199Q65.340-2.686 64.974-2.447Q64.608-2.208 64.072-2.208Q63.576-2.208 63.244-2.502L62.978-2.228Q62.957-2.208 62.930-2.208L62.882-2.208Q62.858-2.208 62.831-2.235Q62.803-2.262 62.803-2.283M67.718-2.276L65.982-2.276L65.982-2.556Q66.211-2.556 66.360-2.590Q66.509-2.625 66.509-2.765L66.509-4.614Q66.509-4.884 66.401-4.945Q66.293-5.007 65.982-5.007L65.982-5.287L67.011-5.362L67.011-4.655Q67.141-4.963 67.384-5.162Q67.626-5.362 67.944-5.362Q68.163-5.362 68.334-5.238Q68.505-5.113 68.505-4.901Q68.505-4.764 68.406-4.665Q68.306-4.566 68.173-4.566Q68.036-4.566 67.937-4.665Q67.838-4.764 67.838-4.901Q67.838-5.041 67.937-5.140Q67.647-5.140 67.447-4.944Q67.247-4.747 67.155-4.453Q67.062-4.159 67.062-3.879L67.062-2.765Q67.062-2.556 67.718-2.556L67.718-2.276M69.089-3.787Q69.089-4.115 69.224-4.416Q69.359-4.716 69.595-4.937Q69.831-5.157 70.135-5.277Q70.439-5.397 70.764-5.397Q71.270-5.397 71.618-5.294Q71.967-5.192 71.967-4.816Q71.967-4.669 71.870-4.568Q71.772-4.467 71.625-4.467Q71.471-4.467 71.372-4.566Q71.273-4.665 71.273-4.816Q71.273-5.004 71.413-5.096Q71.212-5.147 70.771-5.147Q70.415-5.147 70.186-4.951Q69.957-4.754 69.856-4.445Q69.756-4.135 69.756-3.787Q69.756-3.438 69.882-3.132Q70.009-2.826 70.263-2.642Q70.518-2.457 70.873-2.457Q71.095-2.457 71.280-2.541Q71.465-2.625 71.600-2.780Q71.735-2.936 71.793-3.144Q71.806-3.199 71.861-3.199L71.974-3.199Q72.005-3.199 72.027-3.175Q72.049-3.151 72.049-3.117L72.049-3.096Q71.964-2.809 71.776-2.611Q71.588-2.413 71.323-2.310Q71.058-2.208 70.764-2.208Q70.333-2.208 69.945-2.414Q69.557-2.621 69.323-2.984Q69.089-3.346 69.089-3.787M74.226-2.276L72.637-2.276L72.637-2.556Q73.280-2.556 73.437-2.956L75.081-7.171Q75.115-7.266 75.228-7.266L75.310-7.266Q75.419-7.266 75.460-7.171L77.179-2.765Q77.248-2.625 77.437-2.590Q77.627-2.556 77.901-2.556L77.901-2.276L75.901-2.276L75.901-2.556Q76.465-2.556 76.465-2.731Q76.465-2.748 76.463-2.755Q76.462-2.761 76.458-2.765L76.038-3.831L74.079-3.831L73.738-2.956Q73.724-2.956 73.724-2.878Q73.724-2.717 73.886-2.637Q74.049-2.556 74.226-2.556L74.226-2.276M75.060-6.350L74.192-4.111L75.935-4.111\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-42.986 20.486H17.61\"\u002F>\u003Cpath stroke=\"none\" d=\"m19.61 20.486-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(-124.447 25.154)\">\u003Cpath d=\"M62.803-2.283L62.803-3.346Q62.803-3.370 62.831-3.397Q62.858-3.424 62.882-3.424L62.991-3.424Q63.056-3.424 63.070-3.366Q63.166-2.932 63.412-2.681Q63.658-2.430 64.072-2.430Q64.413-2.430 64.666-2.563Q64.919-2.696 64.919-3.004Q64.919-3.161 64.825-3.276Q64.731-3.390 64.593-3.459Q64.454-3.527 64.287-3.565L63.706-3.664Q63.350-3.732 63.077-3.953Q62.803-4.173 62.803-4.515Q62.803-4.764 62.915-4.939Q63.026-5.113 63.212-5.212Q63.398-5.311 63.614-5.354Q63.829-5.397 64.072-5.397Q64.485-5.397 64.765-5.215L64.981-5.390Q64.991-5.393 64.998-5.395Q65.005-5.397 65.015-5.397L65.066-5.397Q65.093-5.397 65.117-5.373Q65.141-5.349 65.141-5.321L65.141-4.474Q65.141-4.453 65.117-4.426Q65.093-4.399 65.066-4.399L64.953-4.399Q64.926-4.399 64.900-4.424Q64.875-4.450 64.875-4.474Q64.875-4.710 64.769-4.874Q64.663-5.038 64.480-5.120Q64.297-5.202 64.065-5.202Q63.737-5.202 63.480-5.099Q63.224-4.997 63.224-4.720Q63.224-4.525 63.407-4.416Q63.590-4.306 63.819-4.265L64.393-4.159Q64.639-4.111 64.853-3.983Q65.066-3.855 65.203-3.652Q65.340-3.448 65.340-3.199Q65.340-2.686 64.974-2.447Q64.608-2.208 64.072-2.208Q63.576-2.208 63.244-2.502L62.978-2.228Q62.957-2.208 62.930-2.208L62.882-2.208Q62.858-2.208 62.831-2.235Q62.803-2.262 62.803-2.283M67.718-2.276L65.982-2.276L65.982-2.556Q66.211-2.556 66.360-2.590Q66.509-2.625 66.509-2.765L66.509-4.614Q66.509-4.884 66.401-4.945Q66.293-5.007 65.982-5.007L65.982-5.287L67.011-5.362L67.011-4.655Q67.141-4.963 67.384-5.162Q67.626-5.362 67.944-5.362Q68.163-5.362 68.334-5.238Q68.505-5.113 68.505-4.901Q68.505-4.764 68.406-4.665Q68.306-4.566 68.173-4.566Q68.036-4.566 67.937-4.665Q67.838-4.764 67.838-4.901Q67.838-5.041 67.937-5.140Q67.647-5.140 67.447-4.944Q67.247-4.747 67.155-4.453Q67.062-4.159 67.062-3.879L67.062-2.765Q67.062-2.556 67.718-2.556L67.718-2.276M69.089-3.787Q69.089-4.115 69.224-4.416Q69.359-4.716 69.595-4.937Q69.831-5.157 70.135-5.277Q70.439-5.397 70.764-5.397Q71.270-5.397 71.618-5.294Q71.967-5.192 71.967-4.816Q71.967-4.669 71.870-4.568Q71.772-4.467 71.625-4.467Q71.471-4.467 71.372-4.566Q71.273-4.665 71.273-4.816Q71.273-5.004 71.413-5.096Q71.212-5.147 70.771-5.147Q70.415-5.147 70.186-4.951Q69.957-4.754 69.856-4.445Q69.756-4.135 69.756-3.787Q69.756-3.438 69.882-3.132Q70.009-2.826 70.263-2.642Q70.518-2.457 70.873-2.457Q71.095-2.457 71.280-2.541Q71.465-2.625 71.600-2.780Q71.735-2.936 71.793-3.144Q71.806-3.199 71.861-3.199L71.974-3.199Q72.005-3.199 72.027-3.175Q72.049-3.151 72.049-3.117L72.049-3.096Q71.964-2.809 71.776-2.611Q71.588-2.413 71.323-2.310Q71.058-2.208 70.764-2.208Q70.333-2.208 69.945-2.414Q69.557-2.621 69.323-2.984Q69.089-3.346 69.089-3.787M75.703-2.276L72.729-2.276L72.729-2.556Q73.450-2.556 73.450-2.765L73.450-6.566Q73.450-6.777 72.729-6.777L72.729-7.058L75.488-7.058Q75.754-7.058 76.060-6.983Q76.366-6.907 76.626-6.760Q76.885-6.613 77.048-6.384Q77.210-6.155 77.210-5.861Q77.210-5.431 76.824-5.149Q76.438-4.867 75.956-4.775Q76.263-4.775 76.612-4.610Q76.961-4.446 77.190-4.168Q77.419-3.889 77.419-3.571Q77.419-3.165 77.156-2.871Q76.892-2.577 76.494-2.426Q76.096-2.276 75.703-2.276M74.093-4.648L74.093-2.765Q74.093-2.625 74.182-2.590Q74.271-2.556 74.459-2.556L75.488-2.556Q75.775-2.556 76.052-2.683Q76.328-2.809 76.499-3.043Q76.670-3.277 76.670-3.571Q76.670-3.787 76.588-3.983Q76.506-4.180 76.356-4.330Q76.205-4.481 76.009-4.564Q75.812-4.648 75.597-4.648L74.093-4.648M74.093-6.566L74.093-4.874L75.276-4.874Q75.563-4.874 75.843-4.993Q76.123-5.113 76.303-5.340Q76.482-5.568 76.482-5.861Q76.482-6.111 76.344-6.325Q76.205-6.538 75.976-6.658Q75.747-6.777 75.488-6.777L74.459-6.777Q74.271-6.777 74.182-6.743Q74.093-6.709 74.093-6.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M105.368-25.039h60.596\"\u002F>\u003Cpath stroke=\"none\" d=\"m167.964-25.039-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(109.008 -20.332)\">\u003Cpath d=\"M64.393-2.303L63.265-4.802Q63.193-4.949 63.063-4.981Q62.933-5.014 62.704-5.014L62.704-5.294L64.218-5.294L64.218-5.014Q63.866-5.014 63.866-4.867Q63.866-4.822 63.877-4.802L64.741-2.884L65.521-4.614Q65.555-4.682 65.555-4.761Q65.555-4.874 65.471-4.944Q65.387-5.014 65.268-5.014L65.268-5.294L66.464-5.294L66.464-5.014Q66.245-5.014 66.074-4.911Q65.904-4.809 65.815-4.614L64.779-2.303Q64.731-2.208 64.625-2.208L64.547-2.208Q64.441-2.208 64.393-2.303\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(109.008 -20.332)\">\u003Cpath d=\"M66.633-3.004Q66.633-3.336 66.856-3.563Q67.080-3.790 67.424-3.918Q67.767-4.047 68.140-4.099Q68.512-4.152 68.817-4.152L68.817-4.405Q68.817-4.610 68.709-4.790Q68.601-4.969 68.420-5.072Q68.239-5.174 68.031-5.174Q67.624-5.174 67.388-5.082Q67.477-5.045 67.523-4.961Q67.569-4.877 67.569-4.775Q67.569-4.679 67.523-4.600Q67.477-4.522 67.396-4.477Q67.316-4.433 67.227-4.433Q67.077-4.433 66.976-4.530Q66.875-4.628 66.875-4.775Q66.875-5.397 68.031-5.397Q68.242-5.397 68.492-5.333Q68.741-5.270 68.943-5.151Q69.145-5.031 69.271-4.846Q69.398-4.662 69.398-4.419L69.398-2.843Q69.398-2.727 69.459-2.631Q69.521-2.536 69.634-2.536Q69.743-2.536 69.808-2.630Q69.873-2.724 69.873-2.843L69.873-3.291L70.139-3.291L70.139-2.843Q70.139-2.573 69.912-2.408Q69.685-2.242 69.405-2.242Q69.196-2.242 69.059-2.396Q68.923-2.549 68.899-2.765Q68.752-2.498 68.470-2.353Q68.188-2.208 67.863-2.208Q67.586-2.208 67.302-2.283Q67.019-2.358 66.826-2.537Q66.633-2.717 66.633-3.004M67.248-3.004Q67.248-2.830 67.349-2.700Q67.449-2.570 67.605-2.500Q67.760-2.430 67.925-2.430Q68.143-2.430 68.352-2.527Q68.560-2.625 68.688-2.806Q68.817-2.987 68.817-3.213L68.817-3.941Q68.492-3.941 68.126-3.850Q67.760-3.759 67.504-3.547Q67.248-3.336 67.248-3.004M72.224-2.276L70.621-2.276L70.621-2.556Q70.847-2.556 70.996-2.590Q71.144-2.625 71.144-2.765L71.144-6.384Q71.144-6.654 71.037-6.716Q70.929-6.777 70.621-6.777L70.621-7.058L71.698-7.133L71.698-2.765Q71.698-2.628 71.848-2.592Q71.999-2.556 72.224-2.556L72.224-2.276M74.408-2.276L72.819-2.276L72.819-2.556Q73.462-2.556 73.619-2.956L75.263-7.171Q75.297-7.266 75.410-7.266L75.492-7.266Q75.601-7.266 75.642-7.171L77.362-2.765Q77.430-2.625 77.620-2.590Q77.809-2.556 78.083-2.556L78.083-2.276L76.083-2.276L76.083-2.556Q76.647-2.556 76.647-2.731Q76.647-2.748 76.645-2.755Q76.644-2.761 76.640-2.765L76.220-3.831L74.261-3.831L73.920-2.956Q73.906-2.956 73.906-2.878Q73.906-2.717 74.068-2.637Q74.231-2.556 74.408-2.556L74.408-2.276M75.242-6.350L74.374-4.111L76.117-4.111\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M105.368 20.486h60.596\"\u002F>\u003Cpath stroke=\"none\" d=\"m167.964 20.486-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(109.008 25.193)\">\u003Cpath d=\"M64.393-2.303L63.265-4.802Q63.193-4.949 63.063-4.981Q62.933-5.014 62.704-5.014L62.704-5.294L64.218-5.294L64.218-5.014Q63.866-5.014 63.866-4.867Q63.866-4.822 63.877-4.802L64.741-2.884L65.521-4.614Q65.555-4.682 65.555-4.761Q65.555-4.874 65.471-4.944Q65.387-5.014 65.268-5.014L65.268-5.294L66.464-5.294L66.464-5.014Q66.245-5.014 66.074-4.911Q65.904-4.809 65.815-4.614L64.779-2.303Q64.731-2.208 64.625-2.208L64.547-2.208Q64.441-2.208 64.393-2.303\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(109.008 25.193)\">\u003Cpath d=\"M66.633-3.004Q66.633-3.336 66.856-3.563Q67.080-3.790 67.424-3.918Q67.767-4.047 68.140-4.099Q68.512-4.152 68.817-4.152L68.817-4.405Q68.817-4.610 68.709-4.790Q68.601-4.969 68.420-5.072Q68.239-5.174 68.031-5.174Q67.624-5.174 67.388-5.082Q67.477-5.045 67.523-4.961Q67.569-4.877 67.569-4.775Q67.569-4.679 67.523-4.600Q67.477-4.522 67.396-4.477Q67.316-4.433 67.227-4.433Q67.077-4.433 66.976-4.530Q66.875-4.628 66.875-4.775Q66.875-5.397 68.031-5.397Q68.242-5.397 68.492-5.333Q68.741-5.270 68.943-5.151Q69.145-5.031 69.271-4.846Q69.398-4.662 69.398-4.419L69.398-2.843Q69.398-2.727 69.459-2.631Q69.521-2.536 69.634-2.536Q69.743-2.536 69.808-2.630Q69.873-2.724 69.873-2.843L69.873-3.291L70.139-3.291L70.139-2.843Q70.139-2.573 69.912-2.408Q69.685-2.242 69.405-2.242Q69.196-2.242 69.059-2.396Q68.923-2.549 68.899-2.765Q68.752-2.498 68.470-2.353Q68.188-2.208 67.863-2.208Q67.586-2.208 67.302-2.283Q67.019-2.358 66.826-2.537Q66.633-2.717 66.633-3.004M67.248-3.004Q67.248-2.830 67.349-2.700Q67.449-2.570 67.605-2.500Q67.760-2.430 67.925-2.430Q68.143-2.430 68.352-2.527Q68.560-2.625 68.688-2.806Q68.817-2.987 68.817-3.213L68.817-3.941Q68.492-3.941 68.126-3.850Q67.760-3.759 67.504-3.547Q67.248-3.336 67.248-3.004M72.224-2.276L70.621-2.276L70.621-2.556Q70.847-2.556 70.996-2.590Q71.144-2.625 71.144-2.765L71.144-6.384Q71.144-6.654 71.037-6.716Q70.929-6.777 70.621-6.777L70.621-7.058L71.698-7.133L71.698-2.765Q71.698-2.628 71.848-2.592Q71.999-2.556 72.224-2.556L72.224-2.276M75.885-2.276L72.911-2.276L72.911-2.556Q73.633-2.556 73.633-2.765L73.633-6.566Q73.633-6.777 72.911-6.777L72.911-7.058L75.670-7.058Q75.936-7.058 76.242-6.983Q76.548-6.907 76.808-6.760Q77.068-6.613 77.230-6.384Q77.392-6.155 77.392-5.861Q77.392-5.431 77.006-5.149Q76.620-4.867 76.138-4.775Q76.446-4.775 76.794-4.610Q77.143-4.446 77.372-4.168Q77.601-3.889 77.601-3.571Q77.601-3.165 77.338-2.871Q77.074-2.577 76.676-2.426Q76.278-2.276 75.885-2.276M74.275-4.648L74.275-2.765Q74.275-2.625 74.364-2.590Q74.453-2.556 74.641-2.556L75.670-2.556Q75.957-2.556 76.234-2.683Q76.510-2.809 76.681-3.043Q76.852-3.277 76.852-3.571Q76.852-3.787 76.770-3.983Q76.688-4.180 76.538-4.330Q76.387-4.481 76.191-4.564Q75.994-4.648 75.779-4.648L74.275-4.648M74.275-6.566L74.275-4.874L75.458-4.874Q75.745-4.874 76.025-4.993Q76.305-5.113 76.485-5.340Q76.664-5.568 76.664-5.861Q76.664-6.111 76.526-6.325Q76.387-6.538 76.158-6.658Q75.929-6.777 75.670-6.777L74.641-6.777Q74.453-6.777 74.364-6.743Q74.275-6.709 74.275-6.566\" 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=\"m22.655 85.927 19.19-49.152\"\u002F>\u003Cpath stroke=\"none\" d=\"m42.572 34.912-2.654 2.399 1.927-.536 1.054 1.7\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-58.053 96.598)\">\u003Cpath d=\"M62.803-3.787Q62.803-4.125 62.944-4.416Q63.084-4.706 63.328-4.920Q63.572-5.133 63.877-5.248Q64.181-5.362 64.506-5.362Q64.776-5.362 65.039-5.263Q65.302-5.164 65.493-4.986L65.493-6.384Q65.493-6.654 65.386-6.716Q65.278-6.777 64.967-6.777L64.967-7.058L66.044-7.133L66.044-2.949Q66.044-2.761 66.098-2.678Q66.153-2.594 66.254-2.575Q66.355-2.556 66.570-2.556L66.570-2.276L65.463-2.208L65.463-2.625Q65.046-2.208 64.420-2.208Q63.989-2.208 63.617-2.420Q63.244-2.631 63.024-2.992Q62.803-3.353 62.803-3.787M64.478-2.430Q64.687-2.430 64.873-2.502Q65.059-2.573 65.213-2.710Q65.367-2.847 65.463-3.025L65.463-4.634Q65.377-4.781 65.232-4.901Q65.087-5.021 64.917-5.080Q64.748-5.140 64.567-5.140Q64.007-5.140 63.738-4.751Q63.470-4.361 63.470-3.780Q63.470-3.209 63.704-2.819Q63.938-2.430 64.478-2.430M67.219-2.283L67.219-3.346Q67.219-3.370 67.247-3.397Q67.274-3.424 67.298-3.424L67.407-3.424Q67.472-3.424 67.486-3.366Q67.582-2.932 67.828-2.681Q68.074-2.430 68.488-2.430Q68.829-2.430 69.082-2.563Q69.335-2.696 69.335-3.004Q69.335-3.161 69.241-3.276Q69.147-3.390 69.009-3.459Q68.870-3.527 68.703-3.565L68.122-3.664Q67.766-3.732 67.493-3.953Q67.219-4.173 67.219-4.515Q67.219-4.764 67.331-4.939Q67.442-5.113 67.628-5.212Q67.814-5.311 68.030-5.354Q68.245-5.397 68.488-5.397Q68.901-5.397 69.181-5.215L69.397-5.390Q69.407-5.393 69.414-5.395Q69.421-5.397 69.431-5.397L69.482-5.397Q69.510-5.397 69.533-5.373Q69.557-5.349 69.557-5.321L69.557-4.474Q69.557-4.453 69.533-4.426Q69.510-4.399 69.482-4.399L69.369-4.399Q69.342-4.399 69.316-4.424Q69.291-4.450 69.291-4.474Q69.291-4.710 69.185-4.874Q69.079-5.038 68.896-5.120Q68.713-5.202 68.481-5.202Q68.153-5.202 67.896-5.099Q67.640-4.997 67.640-4.720Q67.640-4.525 67.823-4.416Q68.006-4.306 68.235-4.265L68.809-4.159Q69.055-4.111 69.269-3.983Q69.482-3.855 69.619-3.652Q69.756-3.448 69.756-3.199Q69.756-2.686 69.390-2.447Q69.024-2.208 68.488-2.208Q67.992-2.208 67.660-2.502L67.394-2.228Q67.373-2.208 67.346-2.208L67.298-2.208Q67.274-2.208 67.247-2.235Q67.219-2.262 67.219-2.283M70.911-3.117L70.911-5.014L70.272-5.014L70.272-5.236Q70.590-5.236 70.807-5.446Q71.024-5.656 71.124-5.966Q71.225-6.275 71.225-6.583L71.492-6.583L71.492-5.294L72.569-5.294L72.569-5.014L71.492-5.014L71.492-3.130Q71.492-2.854 71.596-2.655Q71.700-2.457 71.960-2.457Q72.117-2.457 72.223-2.561Q72.329-2.666 72.379-2.819Q72.428-2.973 72.428-3.130L72.428-3.544L72.695-3.544L72.695-3.117Q72.695-2.891 72.596-2.681Q72.497-2.471 72.312-2.339Q72.128-2.208 71.899-2.208Q71.461-2.208 71.186-2.445Q70.911-2.683 70.911-3.117M77.972-2.276L73.570-2.276L73.570-2.556Q74.291-2.556 74.291-2.765L74.291-6.566Q74.291-6.777 73.570-6.777L73.570-7.058L77.860-7.058L78.068-5.421L77.805-5.421Q77.747-5.892 77.644-6.157Q77.542-6.422 77.357-6.555Q77.173-6.689 76.901-6.733Q76.629-6.777 76.130-6.777L75.347-6.777Q75.159-6.777 75.071-6.743Q74.982-6.709 74.982-6.566L74.982-4.901L75.556-4.901Q75.946-4.901 76.128-4.952Q76.311-5.004 76.393-5.176Q76.475-5.349 76.475-5.721L76.739-5.721L76.739-3.800L76.475-3.800Q76.475-4.173 76.393-4.346Q76.311-4.518 76.128-4.569Q75.946-4.621 75.556-4.621L74.982-4.621L74.982-2.765Q74.982-2.625 75.071-2.590Q75.159-2.556 75.347-2.556L76.195-2.556Q76.725-2.556 77.034-2.625Q77.343-2.693 77.531-2.860Q77.719-3.028 77.827-3.330Q77.935-3.633 78.020-4.146L78.287-4.146L77.972-2.276M79.374-1.046Q79.374-1.080 79.401-1.107Q79.671-1.336 79.820-1.659Q79.968-1.982 79.968-2.338L79.968-2.375Q79.859-2.276 79.695-2.276Q79.514-2.276 79.394-2.396Q79.275-2.515 79.275-2.696Q79.275-2.871 79.394-2.990Q79.514-3.110 79.695-3.110Q79.951-3.110 80.071-2.871Q80.191-2.631 80.191-2.338Q80.191-1.938 80.021-1.567Q79.852-1.196 79.555-0.940Q79.524-0.919 79.497-0.919Q79.456-0.919 79.415-0.960Q79.374-1.001 79.374-1.046\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.053 96.598)\">\u003Cpath d=\"M85.436-2.303L84.308-4.802Q84.236-4.949 84.106-4.981Q83.976-5.014 83.747-5.014L83.747-5.294L85.261-5.294L85.261-5.014Q84.909-5.014 84.909-4.867Q84.909-4.822 84.920-4.802L85.784-2.884L86.564-4.614Q86.598-4.682 86.598-4.761Q86.598-4.874 86.514-4.944Q86.430-5.014 86.311-5.014L86.311-5.294L87.507-5.294L87.507-5.014Q87.288-5.014 87.117-4.911Q86.947-4.809 86.858-4.614L85.822-2.303Q85.774-2.208 85.668-2.208L85.590-2.208Q85.484-2.208 85.436-2.303\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.053 96.598)\">\u003Cpath d=\"M87.676-3.004Q87.676-3.336 87.899-3.563Q88.123-3.790 88.467-3.918Q88.810-4.047 89.183-4.099Q89.555-4.152 89.860-4.152L89.860-4.405Q89.860-4.610 89.752-4.790Q89.644-4.969 89.463-5.072Q89.282-5.174 89.074-5.174Q88.667-5.174 88.431-5.082Q88.520-5.045 88.566-4.961Q88.612-4.877 88.612-4.775Q88.612-4.679 88.566-4.600Q88.520-4.522 88.439-4.477Q88.359-4.433 88.270-4.433Q88.120-4.433 88.019-4.530Q87.918-4.628 87.918-4.775Q87.918-5.397 89.074-5.397Q89.285-5.397 89.535-5.333Q89.784-5.270 89.986-5.151Q90.188-5.031 90.314-4.846Q90.441-4.662 90.441-4.419L90.441-2.843Q90.441-2.727 90.502-2.631Q90.564-2.536 90.677-2.536Q90.786-2.536 90.851-2.630Q90.916-2.724 90.916-2.843L90.916-3.291L91.182-3.291L91.182-2.843Q91.182-2.573 90.955-2.408Q90.728-2.242 90.448-2.242Q90.239-2.242 90.102-2.396Q89.966-2.549 89.942-2.765Q89.795-2.498 89.513-2.353Q89.231-2.208 88.906-2.208Q88.629-2.208 88.345-2.283Q88.062-2.358 87.869-2.537Q87.676-2.717 87.676-3.004M88.291-3.004Q88.291-2.830 88.392-2.700Q88.492-2.570 88.648-2.500Q88.803-2.430 88.968-2.430Q89.186-2.430 89.395-2.527Q89.603-2.625 89.731-2.806Q89.860-2.987 89.860-3.213L89.860-3.941Q89.535-3.941 89.169-3.850Q88.803-3.759 88.547-3.547Q88.291-3.336 88.291-3.004M93.267-2.276L91.664-2.276L91.664-2.556Q91.890-2.556 92.039-2.590Q92.187-2.625 92.187-2.765L92.187-6.384Q92.187-6.654 92.080-6.716Q91.972-6.777 91.664-6.777L91.664-7.058L92.741-7.133L92.741-2.765Q92.741-2.628 92.891-2.592Q93.042-2.556 93.267-2.556L93.267-2.276M98.329-2.276L93.927-2.276L93.927-2.556Q94.648-2.556 94.648-2.765L94.648-6.566Q94.648-6.777 93.927-6.777L93.927-7.058L98.217-7.058L98.425-5.421L98.162-5.421Q98.104-5.892 98.001-6.157Q97.899-6.422 97.714-6.555Q97.530-6.689 97.258-6.733Q96.986-6.777 96.487-6.777L95.704-6.777Q95.516-6.777 95.428-6.743Q95.339-6.709 95.339-6.566L95.339-4.901L95.913-4.901Q96.303-4.901 96.485-4.952Q96.668-5.004 96.750-5.176Q96.832-5.349 96.832-5.721L97.095-5.721L97.095-3.800L96.832-3.800Q96.832-4.173 96.750-4.346Q96.668-4.518 96.485-4.569Q96.303-4.621 95.913-4.621L95.339-4.621L95.339-2.765Q95.339-2.625 95.428-2.590Q95.516-2.556 95.704-2.556L96.552-2.556Q97.082-2.556 97.391-2.625Q97.700-2.693 97.888-2.860Q98.076-3.028 98.184-3.330Q98.292-3.633 98.377-4.146L98.644-4.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"m102.323 85.927-19.19-49.152\"\u002F>\u003Cpath stroke=\"none\" d=\"m82.406 34.912-.327 3.563 1.054-1.7 1.927.536\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(19.795 96.598)\">\u003Cpath d=\"M62.803-3.787Q62.803-4.125 62.944-4.416Q63.084-4.706 63.328-4.920Q63.572-5.133 63.877-5.248Q64.181-5.362 64.506-5.362Q64.776-5.362 65.039-5.263Q65.302-5.164 65.493-4.986L65.493-6.384Q65.493-6.654 65.386-6.716Q65.278-6.777 64.967-6.777L64.967-7.058L66.044-7.133L66.044-2.949Q66.044-2.761 66.098-2.678Q66.153-2.594 66.254-2.575Q66.355-2.556 66.570-2.556L66.570-2.276L65.463-2.208L65.463-2.625Q65.046-2.208 64.420-2.208Q63.989-2.208 63.617-2.420Q63.244-2.631 63.024-2.992Q62.803-3.353 62.803-3.787M64.478-2.430Q64.687-2.430 64.873-2.502Q65.059-2.573 65.213-2.710Q65.367-2.847 65.463-3.025L65.463-4.634Q65.377-4.781 65.232-4.901Q65.087-5.021 64.917-5.080Q64.748-5.140 64.567-5.140Q64.007-5.140 63.738-4.751Q63.470-4.361 63.470-3.780Q63.470-3.209 63.704-2.819Q63.938-2.430 64.478-2.430M67.219-2.283L67.219-3.346Q67.219-3.370 67.247-3.397Q67.274-3.424 67.298-3.424L67.407-3.424Q67.472-3.424 67.486-3.366Q67.582-2.932 67.828-2.681Q68.074-2.430 68.488-2.430Q68.829-2.430 69.082-2.563Q69.335-2.696 69.335-3.004Q69.335-3.161 69.241-3.276Q69.147-3.390 69.009-3.459Q68.870-3.527 68.703-3.565L68.122-3.664Q67.766-3.732 67.493-3.953Q67.219-4.173 67.219-4.515Q67.219-4.764 67.331-4.939Q67.442-5.113 67.628-5.212Q67.814-5.311 68.030-5.354Q68.245-5.397 68.488-5.397Q68.901-5.397 69.181-5.215L69.397-5.390Q69.407-5.393 69.414-5.395Q69.421-5.397 69.431-5.397L69.482-5.397Q69.510-5.397 69.533-5.373Q69.557-5.349 69.557-5.321L69.557-4.474Q69.557-4.453 69.533-4.426Q69.510-4.399 69.482-4.399L69.369-4.399Q69.342-4.399 69.316-4.424Q69.291-4.450 69.291-4.474Q69.291-4.710 69.185-4.874Q69.079-5.038 68.896-5.120Q68.713-5.202 68.481-5.202Q68.153-5.202 67.896-5.099Q67.640-4.997 67.640-4.720Q67.640-4.525 67.823-4.416Q68.006-4.306 68.235-4.265L68.809-4.159Q69.055-4.111 69.269-3.983Q69.482-3.855 69.619-3.652Q69.756-3.448 69.756-3.199Q69.756-2.686 69.390-2.447Q69.024-2.208 68.488-2.208Q67.992-2.208 67.660-2.502L67.394-2.228Q67.373-2.208 67.346-2.208L67.298-2.208Q67.274-2.208 67.247-2.235Q67.219-2.262 67.219-2.283M70.911-3.117L70.911-5.014L70.272-5.014L70.272-5.236Q70.590-5.236 70.807-5.446Q71.024-5.656 71.124-5.966Q71.225-6.275 71.225-6.583L71.492-6.583L71.492-5.294L72.569-5.294L72.569-5.014L71.492-5.014L71.492-3.130Q71.492-2.854 71.596-2.655Q71.700-2.457 71.960-2.457Q72.117-2.457 72.223-2.561Q72.329-2.666 72.379-2.819Q72.428-2.973 72.428-3.130L72.428-3.544L72.695-3.544L72.695-3.117Q72.695-2.891 72.596-2.681Q72.497-2.471 72.312-2.339Q72.128-2.208 71.899-2.208Q71.461-2.208 71.186-2.445Q70.911-2.683 70.911-3.117M75.347-2.276L73.611-2.276L73.611-2.556Q74.332-2.556 74.332-2.956L74.332-6.566Q74.332-6.777 73.611-6.777L73.611-7.058L74.968-7.058Q75.064-7.058 75.115-6.959L76.790-2.984L78.461-6.959Q78.509-7.058 78.608-7.058L79.958-7.058L79.958-6.777Q79.237-6.777 79.237-6.566L79.237-2.765Q79.237-2.556 79.958-2.556L79.958-2.276L77.901-2.276L77.901-2.556Q78.622-2.556 78.622-2.765L78.622-6.777L76.769-2.375Q76.721-2.276 76.612-2.276Q76.499-2.276 76.451-2.375L74.626-6.706L74.626-2.956Q74.626-2.556 75.347-2.556L75.347-2.276M81.192-1.046Q81.192-1.080 81.219-1.107Q81.489-1.336 81.638-1.659Q81.787-1.982 81.787-2.338L81.787-2.375Q81.677-2.276 81.513-2.276Q81.332-2.276 81.213-2.396Q81.093-2.515 81.093-2.696Q81.093-2.871 81.213-2.990Q81.332-3.110 81.513-3.110Q81.770-3.110 81.889-2.871Q82.009-2.631 82.009-2.338Q82.009-1.938 81.840-1.567Q81.671-1.196 81.373-0.940Q81.343-0.919 81.315-0.919Q81.274-0.919 81.233-0.960Q81.192-1.001 81.192-1.046\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(19.795 96.598)\">\u003Cpath d=\"M87.256-2.303L86.128-4.802Q86.056-4.949 85.926-4.981Q85.796-5.014 85.567-5.014L85.567-5.294L87.081-5.294L87.081-5.014Q86.729-5.014 86.729-4.867Q86.729-4.822 86.740-4.802L87.604-2.884L88.384-4.614Q88.418-4.682 88.418-4.761Q88.418-4.874 88.334-4.944Q88.250-5.014 88.131-5.014L88.131-5.294L89.327-5.294L89.327-5.014Q89.108-5.014 88.937-4.911Q88.767-4.809 88.678-4.614L87.642-2.303Q87.594-2.208 87.488-2.208L87.410-2.208Q87.304-2.208 87.256-2.303\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(19.795 96.598)\">\u003Cpath d=\"M89.496-3.004Q89.496-3.336 89.719-3.563Q89.943-3.790 90.287-3.918Q90.630-4.047 91.003-4.099Q91.375-4.152 91.680-4.152L91.680-4.405Q91.680-4.610 91.572-4.790Q91.464-4.969 91.283-5.072Q91.102-5.174 90.894-5.174Q90.487-5.174 90.251-5.082Q90.340-5.045 90.386-4.961Q90.432-4.877 90.432-4.775Q90.432-4.679 90.386-4.600Q90.340-4.522 90.259-4.477Q90.179-4.433 90.090-4.433Q89.940-4.433 89.839-4.530Q89.738-4.628 89.738-4.775Q89.738-5.397 90.894-5.397Q91.105-5.397 91.355-5.333Q91.604-5.270 91.806-5.151Q92.008-5.031 92.134-4.846Q92.261-4.662 92.261-4.419L92.261-2.843Q92.261-2.727 92.322-2.631Q92.384-2.536 92.497-2.536Q92.606-2.536 92.671-2.630Q92.736-2.724 92.736-2.843L92.736-3.291L93.002-3.291L93.002-2.843Q93.002-2.573 92.775-2.408Q92.548-2.242 92.268-2.242Q92.059-2.242 91.922-2.396Q91.786-2.549 91.762-2.765Q91.615-2.498 91.333-2.353Q91.051-2.208 90.726-2.208Q90.449-2.208 90.165-2.283Q89.882-2.358 89.689-2.537Q89.496-2.717 89.496-3.004M90.111-3.004Q90.111-2.830 90.212-2.700Q90.312-2.570 90.468-2.500Q90.623-2.430 90.788-2.430Q91.006-2.430 91.215-2.527Q91.423-2.625 91.551-2.806Q91.680-2.987 91.680-3.213L91.680-3.941Q91.355-3.941 90.989-3.850Q90.623-3.759 90.367-3.547Q90.111-3.336 90.111-3.004M95.087-2.276L93.484-2.276L93.484-2.556Q93.710-2.556 93.859-2.590Q94.007-2.625 94.007-2.765L94.007-6.384Q94.007-6.654 93.900-6.716Q93.792-6.777 93.484-6.777L93.484-7.058L94.561-7.133L94.561-2.765Q94.561-2.628 94.711-2.592Q94.862-2.556 95.087-2.556L95.087-2.276M97.524-2.276L95.788-2.276L95.788-2.556Q96.509-2.556 96.509-2.956L96.509-6.566Q96.509-6.777 95.788-6.777L95.788-7.058L97.145-7.058Q97.241-7.058 97.292-6.959L98.967-2.984L100.638-6.959Q100.686-7.058 100.785-7.058L102.135-7.058L102.135-6.777Q101.414-6.777 101.414-6.566L101.414-2.765Q101.414-2.556 102.135-2.556L102.135-2.276L100.078-2.276L100.078-2.556Q100.799-2.556 100.799-2.765L100.799-6.777L98.946-2.375Q98.898-2.276 98.789-2.276Q98.676-2.276 98.628-2.375L96.803-6.706L96.803-2.956Q96.803-2.556 97.524-2.556\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M64.191-2.303L63.210-4.802Q63.149-4.945 63.031-4.980Q62.913-5.014 62.697-5.014L62.697-5.294L64.177-5.294L64.177-5.014Q63.798-5.014 63.798-4.853Q63.798-4.843 63.812-4.802L64.526-2.970L65.199-4.675Q65.169-4.747 65.169-4.775Q65.169-4.802 65.141-4.802Q65.080-4.949 64.962-4.981Q64.844-5.014 64.632-5.014L64.632-5.294L66.030-5.294L66.030-5.014Q65.654-5.014 65.654-4.853Q65.654-4.822 65.661-4.802L66.416-2.864L67.103-4.614Q67.124-4.665 67.124-4.720Q67.124-4.860 67.011-4.937Q66.898-5.014 66.758-5.014L66.758-5.294L67.978-5.294L67.978-5.014Q67.773-5.014 67.618-4.908Q67.462-4.802 67.390-4.614L66.485-2.303Q66.450-2.208 66.338-2.208L66.269-2.208Q66.160-2.208 66.122-2.303L65.340-4.306L64.553-2.303Q64.519-2.208 64.406-2.208L64.338-2.208Q64.229-2.208 64.191-2.303M70.258-2.276L68.522-2.276L68.522-2.556Q68.751-2.556 68.899-2.590Q69.048-2.625 69.048-2.765L69.048-4.614Q69.048-4.884 68.940-4.945Q68.833-5.007 68.522-5.007L68.522-5.287L69.551-5.362L69.551-4.655Q69.680-4.963 69.923-5.162Q70.166-5.362 70.484-5.362Q70.702-5.362 70.873-5.238Q71.044-5.113 71.044-4.901Q71.044-4.764 70.945-4.665Q70.846-4.566 70.713-4.566Q70.576-4.566 70.477-4.665Q70.378-4.764 70.378-4.901Q70.378-5.041 70.477-5.140Q70.186-5.140 69.986-4.944Q69.786-4.747 69.694-4.453Q69.602-4.159 69.602-3.879L69.602-2.765Q69.602-2.556 70.258-2.556L70.258-2.276M73.245-2.276L71.694-2.276L71.694-2.556Q71.919-2.556 72.068-2.590Q72.217-2.625 72.217-2.765L72.217-4.614Q72.217-4.802 72.169-4.886Q72.121-4.969 72.023-4.988Q71.926-5.007 71.714-5.007L71.714-5.287L72.770-5.362L72.770-2.765Q72.770-2.625 72.902-2.590Q73.033-2.556 73.245-2.556L73.245-2.276M71.974-6.583Q71.974-6.754 72.097-6.873Q72.220-6.993 72.391-6.993Q72.558-6.993 72.681-6.873Q72.804-6.754 72.804-6.583Q72.804-6.408 72.681-6.285Q72.558-6.162 72.391-6.162Q72.220-6.162 72.097-6.285Q71.974-6.408 71.974-6.583M74.418-3.117L74.418-5.014L73.779-5.014L73.779-5.236Q74.096-5.236 74.313-5.446Q74.531-5.656 74.631-5.966Q74.732-6.275 74.732-6.583L74.999-6.583L74.999-5.294L76.075-5.294L76.075-5.014L74.999-5.014L74.999-3.130Q74.999-2.854 75.103-2.655Q75.207-2.457 75.467-2.457Q75.624-2.457 75.730-2.561Q75.836-2.666 75.886-2.819Q75.935-2.973 75.935-3.130L75.935-3.544L76.202-3.544L76.202-3.117Q76.202-2.891 76.103-2.681Q76.004-2.471 75.819-2.339Q75.635-2.208 75.406-2.208Q74.968-2.208 74.693-2.445Q74.418-2.683 74.418-3.117M76.971-3.811Q76.971-4.132 77.096-4.421Q77.220-4.710 77.446-4.933Q77.672-5.157 77.967-5.277Q78.263-5.397 78.581-5.397Q78.909-5.397 79.170-5.297Q79.432-5.198 79.608-5.016Q79.784-4.833 79.878-4.575Q79.972-4.317 79.972-3.985Q79.972-3.893 79.890-3.872L77.634-3.872L77.634-3.811Q77.634-3.223 77.918-2.840Q78.201-2.457 78.769-2.457Q79.090-2.457 79.358-2.650Q79.627-2.843 79.716-3.158Q79.722-3.199 79.798-3.213L79.890-3.213Q79.972-3.189 79.972-3.117Q79.972-3.110 79.965-3.083Q79.852-2.686 79.481-2.447Q79.111-2.208 78.687-2.208Q78.249-2.208 77.849-2.416Q77.449-2.625 77.210-2.992Q76.971-3.359 76.971-3.811M77.641-4.081L79.456-4.081Q79.456-4.358 79.358-4.610Q79.261-4.863 79.063-5.019Q78.864-5.174 78.581-5.174Q78.304-5.174 78.090-5.016Q77.877-4.857 77.759-4.602Q77.641-4.347 77.641-4.081M80.560-2.283L80.560-3.346Q80.560-3.370 80.587-3.397Q80.614-3.424 80.638-3.424L80.748-3.424Q80.813-3.424 80.826-3.366Q80.922-2.932 81.168-2.681Q81.414-2.430 81.828-2.430Q82.170-2.430 82.423-2.563Q82.676-2.696 82.676-3.004Q82.676-3.161 82.582-3.276Q82.488-3.390 82.349-3.459Q82.211-3.527 82.043-3.565L81.462-3.664Q81.107-3.732 80.833-3.953Q80.560-4.173 80.560-4.515Q80.560-4.764 80.671-4.939Q80.782-5.113 80.968-5.212Q81.155-5.311 81.370-5.354Q81.585-5.397 81.828-5.397Q82.241-5.397 82.522-5.215L82.737-5.390Q82.747-5.393 82.754-5.395Q82.761-5.397 82.771-5.397L82.822-5.397Q82.850-5.397 82.874-5.373Q82.898-5.349 82.898-5.321L82.898-4.474Q82.898-4.453 82.874-4.426Q82.850-4.399 82.822-4.399L82.710-4.399Q82.682-4.399 82.657-4.424Q82.631-4.450 82.631-4.474Q82.631-4.710 82.525-4.874Q82.419-5.038 82.236-5.120Q82.053-5.202 81.821-5.202Q81.493-5.202 81.237-5.099Q80.980-4.997 80.980-4.720Q80.980-4.525 81.163-4.416Q81.346-4.306 81.575-4.265L82.149-4.159Q82.395-4.111 82.609-3.983Q82.822-3.855 82.959-3.652Q83.096-3.448 83.096-3.199Q83.096-2.686 82.730-2.447Q82.364-2.208 81.828-2.208Q81.332-2.208 81.001-2.502L80.734-2.228Q80.714-2.208 80.686-2.208L80.638-2.208Q80.614-2.208 80.587-2.235Q80.560-2.262 80.560-2.283\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M86.444-3.787Q86.444-4.115 86.579-4.416Q86.714-4.716 86.950-4.937Q87.186-5.157 87.490-5.277Q87.795-5.397 88.119-5.397Q88.625-5.397 88.974-5.294Q89.322-5.192 89.322-4.816Q89.322-4.669 89.225-4.568Q89.128-4.467 88.981-4.467Q88.827-4.467 88.728-4.566Q88.629-4.665 88.629-4.816Q88.629-5.004 88.769-5.096Q88.567-5.147 88.126-5.147Q87.771-5.147 87.542-4.951Q87.313-4.754 87.212-4.445Q87.111-4.135 87.111-3.787Q87.111-3.438 87.237-3.132Q87.364-2.826 87.619-2.642Q87.873-2.457 88.229-2.457Q88.451-2.457 88.635-2.541Q88.820-2.625 88.955-2.780Q89.090-2.936 89.148-3.144Q89.162-3.199 89.216-3.199L89.329-3.199Q89.360-3.199 89.382-3.175Q89.404-3.151 89.404-3.117L89.404-3.096Q89.319-2.809 89.131-2.611Q88.943-2.413 88.678-2.310Q88.413-2.208 88.119-2.208Q87.689-2.208 87.301-2.414Q86.913-2.621 86.679-2.984Q86.444-3.346 86.444-3.787M89.951-3.759Q89.951-4.101 90.086-4.400Q90.221-4.699 90.461-4.923Q90.700-5.147 91.018-5.272Q91.336-5.397 91.667-5.397Q92.111-5.397 92.511-5.181Q92.911-4.966 93.145-4.588Q93.380-4.211 93.380-3.759Q93.380-3.418 93.238-3.134Q93.096-2.850 92.851-2.643Q92.607-2.437 92.298-2.322Q91.988-2.208 91.667-2.208Q91.236-2.208 90.835-2.409Q90.433-2.611 90.192-2.963Q89.951-3.315 89.951-3.759M91.667-2.457Q92.269-2.457 92.493-2.835Q92.716-3.213 92.716-3.845Q92.716-4.457 92.482-4.816Q92.248-5.174 91.667-5.174Q90.614-5.174 90.614-3.845Q90.614-3.213 90.840-2.835Q91.066-2.457 91.667-2.457M95.656-2.276L94.022-2.276L94.022-2.556Q94.251-2.556 94.400-2.590Q94.548-2.625 94.548-2.765L94.548-4.614Q94.548-4.884 94.441-4.945Q94.333-5.007 94.022-5.007L94.022-5.287L95.082-5.362L95.082-4.713Q95.253-5.021 95.557-5.192Q95.861-5.362 96.206-5.362Q96.606-5.362 96.883-5.222Q97.160-5.082 97.245-4.734Q97.413-5.027 97.712-5.195Q98.011-5.362 98.356-5.362Q98.862-5.362 99.146-5.139Q99.429-4.915 99.429-4.419L99.429-2.765Q99.429-2.628 99.578-2.592Q99.727-2.556 99.952-2.556L99.952-2.276L98.322-2.276L98.322-2.556Q98.547-2.556 98.698-2.592Q98.848-2.628 98.848-2.765L98.848-4.405Q98.848-4.740 98.729-4.940Q98.609-5.140 98.295-5.140Q98.025-5.140 97.790-5.004Q97.556-4.867 97.418-4.633Q97.279-4.399 97.279-4.125L97.279-2.765Q97.279-2.628 97.428-2.592Q97.577-2.556 97.802-2.556L97.802-2.276L96.172-2.276L96.172-2.556Q96.401-2.556 96.550-2.590Q96.698-2.625 96.698-2.765L96.698-4.405Q96.698-4.740 96.579-4.940Q96.459-5.140 96.145-5.140Q95.875-5.140 95.640-5.004Q95.406-4.867 95.268-4.633Q95.130-4.399 95.130-4.125L95.130-2.765Q95.130-2.628 95.280-2.592Q95.430-2.556 95.656-2.556L95.656-2.276M102.222-2.276L100.588-2.276L100.588-2.556Q100.817-2.556 100.966-2.590Q101.114-2.625 101.114-2.765L101.114-4.614Q101.114-4.884 101.007-4.945Q100.899-5.007 100.588-5.007L100.588-5.287L101.648-5.362L101.648-4.713Q101.818-5.021 102.123-5.192Q102.427-5.362 102.772-5.362Q103.172-5.362 103.449-5.222Q103.726-5.082 103.811-4.734Q103.979-5.027 104.278-5.195Q104.577-5.362 104.922-5.362Q105.428-5.362 105.712-5.139Q105.995-4.915 105.995-4.419L105.995-2.765Q105.995-2.628 106.144-2.592Q106.293-2.556 106.518-2.556L106.518-2.276L104.888-2.276L104.888-2.556Q105.113-2.556 105.264-2.592Q105.414-2.628 105.414-2.765L105.414-4.405Q105.414-4.740 105.295-4.940Q105.175-5.140 104.860-5.140Q104.590-5.140 104.356-5.004Q104.122-4.867 103.984-4.633Q103.845-4.399 103.845-4.125L103.845-2.765Q103.845-2.628 103.994-2.592Q104.143-2.556 104.368-2.556L104.368-2.276L102.738-2.276L102.738-2.556Q102.967-2.556 103.116-2.590Q103.264-2.625 103.264-2.765L103.264-4.405Q103.264-4.740 103.145-4.940Q103.025-5.140 102.711-5.140Q102.441-5.140 102.206-5.004Q101.972-4.867 101.834-4.633Q101.695-4.399 101.695-4.125L101.695-2.765Q101.695-2.628 101.846-2.592Q101.996-2.556 102.222-2.556L102.222-2.276M108.723-2.276L107.171-2.276L107.171-2.556Q107.397-2.556 107.545-2.590Q107.694-2.625 107.694-2.765L107.694-4.614Q107.694-4.802 107.646-4.886Q107.598-4.969 107.501-4.988Q107.403-5.007 107.192-5.007L107.192-5.287L108.248-5.362L108.248-2.765Q108.248-2.625 108.379-2.590Q108.511-2.556 108.723-2.556L108.723-2.276M107.451-6.583Q107.451-6.754 107.574-6.873Q107.697-6.993 107.868-6.993Q108.036-6.993 108.159-6.873Q108.282-6.754 108.282-6.583Q108.282-6.408 108.159-6.285Q108.036-6.162 107.868-6.162Q107.697-6.162 107.574-6.285Q107.451-6.408 107.451-6.583M109.895-3.117L109.895-5.014L109.256-5.014L109.256-5.236Q109.574-5.236 109.791-5.446Q110.008-5.656 110.109-5.966Q110.210-6.275 110.210-6.583L110.476-6.583L110.476-5.294L111.553-5.294L111.553-5.014L110.476-5.014L110.476-3.130Q110.476-2.854 110.580-2.655Q110.685-2.457 110.944-2.457Q111.102-2.457 111.208-2.561Q111.314-2.666 111.363-2.819Q111.413-2.973 111.413-3.130L111.413-3.544L111.679-3.544L111.679-3.117Q111.679-2.891 111.580-2.681Q111.481-2.471 111.297-2.339Q111.112-2.208 110.883-2.208Q110.445-2.208 110.170-2.445Q109.895-2.683 109.895-3.117\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M115.267-3.004Q115.267-3.336 115.490-3.563Q115.714-3.790 116.058-3.918Q116.401-4.047 116.774-4.099Q117.146-4.152 117.451-4.152L117.451-4.405Q117.451-4.610 117.343-4.790Q117.235-4.969 117.054-5.072Q116.873-5.174 116.665-5.174Q116.258-5.174 116.022-5.082Q116.111-5.045 116.157-4.961Q116.203-4.877 116.203-4.775Q116.203-4.679 116.157-4.600Q116.111-4.522 116.030-4.477Q115.950-4.433 115.861-4.433Q115.711-4.433 115.610-4.530Q115.509-4.628 115.509-4.775Q115.509-5.397 116.665-5.397Q116.876-5.397 117.126-5.333Q117.375-5.270 117.577-5.151Q117.779-5.031 117.905-4.846Q118.032-4.662 118.032-4.419L118.032-2.843Q118.032-2.727 118.093-2.631Q118.155-2.536 118.268-2.536Q118.377-2.536 118.442-2.630Q118.507-2.724 118.507-2.843L118.507-3.291L118.773-3.291L118.773-2.843Q118.773-2.573 118.546-2.408Q118.319-2.242 118.039-2.242Q117.830-2.242 117.693-2.396Q117.557-2.549 117.533-2.765Q117.386-2.498 117.104-2.353Q116.822-2.208 116.497-2.208Q116.220-2.208 115.936-2.283Q115.653-2.358 115.460-2.537Q115.267-2.717 115.267-3.004M115.882-3.004Q115.882-2.830 115.983-2.700Q116.083-2.570 116.239-2.500Q116.394-2.430 116.559-2.430Q116.777-2.430 116.986-2.527Q117.194-2.625 117.322-2.806Q117.451-2.987 117.451-3.213L117.451-3.941Q117.126-3.941 116.760-3.850Q116.394-3.759 116.138-3.547Q115.882-3.336 115.882-3.004M119.717-3.117L119.717-5.014L119.078-5.014L119.078-5.236Q119.395-5.236 119.613-5.446Q119.830-5.656 119.930-5.966Q120.031-6.275 120.031-6.583L120.298-6.583L120.298-5.294L121.374-5.294L121.374-5.014L120.298-5.014L120.298-3.130Q120.298-2.854 120.402-2.655Q120.506-2.457 120.766-2.457Q120.923-2.457 121.029-2.561Q121.135-2.666 121.185-2.819Q121.234-2.973 121.234-3.130L121.234-3.544L121.501-3.544L121.501-3.117Q121.501-2.891 121.402-2.681Q121.303-2.471 121.118-2.339Q120.934-2.208 120.705-2.208Q120.267-2.208 119.992-2.445Q119.717-2.683 119.717-3.117\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M125.013-3.787Q125.013-4.115 125.148-4.416Q125.283-4.716 125.519-4.937Q125.755-5.157 126.059-5.277Q126.364-5.397 126.688-5.397Q127.194-5.397 127.543-5.294Q127.891-5.192 127.891-4.816Q127.891-4.669 127.794-4.568Q127.697-4.467 127.550-4.467Q127.396-4.467 127.297-4.566Q127.198-4.665 127.198-4.816Q127.198-5.004 127.338-5.096Q127.136-5.147 126.695-5.147Q126.340-5.147 126.111-4.951Q125.882-4.754 125.781-4.445Q125.680-4.135 125.680-3.787Q125.680-3.438 125.806-3.132Q125.933-2.826 126.188-2.642Q126.442-2.457 126.798-2.457Q127.020-2.457 127.204-2.541Q127.389-2.625 127.524-2.780Q127.659-2.936 127.717-3.144Q127.731-3.199 127.785-3.199L127.898-3.199Q127.929-3.199 127.951-3.175Q127.973-3.151 127.973-3.117L127.973-3.096Q127.888-2.809 127.700-2.611Q127.512-2.413 127.247-2.310Q126.982-2.208 126.688-2.208Q126.258-2.208 125.870-2.414Q125.482-2.621 125.248-2.984Q125.013-3.346 125.013-3.787M130.229-2.276L128.626-2.276L128.626-2.556Q128.852-2.556 129.001-2.590Q129.149-2.625 129.149-2.765L129.149-6.384Q129.149-6.654 129.042-6.716Q128.934-6.777 128.626-6.777L128.626-7.058L129.703-7.133L129.703-2.765Q129.703-2.628 129.853-2.592Q130.004-2.556 130.229-2.556L130.229-2.276M130.783-3.759Q130.783-4.101 130.918-4.400Q131.053-4.699 131.292-4.923Q131.532-5.147 131.849-5.272Q132.167-5.397 132.499-5.397Q132.943-5.397 133.343-5.181Q133.743-4.966 133.977-4.588Q134.211-4.211 134.211-3.759Q134.211-3.418 134.069-3.134Q133.928-2.850 133.683-2.643Q133.439-2.437 133.129-2.322Q132.820-2.208 132.499-2.208Q132.068-2.208 131.667-2.409Q131.265-2.611 131.024-2.963Q130.783-3.315 130.783-3.759M132.499-2.457Q133.100-2.457 133.324-2.835Q133.548-3.213 133.548-3.845Q133.548-4.457 133.314-4.816Q133.080-5.174 132.499-5.174Q131.446-5.174 131.446-3.845Q131.446-3.213 131.672-2.835Q131.897-2.457 132.499-2.457\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M135.034-3.787Q135.034-4.115 135.169-4.416Q135.304-4.716 135.540-4.937Q135.776-5.157 136.080-5.277Q136.385-5.397 136.709-5.397Q137.215-5.397 137.564-5.294Q137.912-5.192 137.912-4.816Q137.912-4.669 137.815-4.568Q137.718-4.467 137.571-4.467Q137.417-4.467 137.318-4.566Q137.219-4.665 137.219-4.816Q137.219-5.004 137.359-5.096Q137.157-5.147 136.716-5.147Q136.361-5.147 136.132-4.951Q135.903-4.754 135.802-4.445Q135.701-4.135 135.701-3.787Q135.701-3.438 135.827-3.132Q135.954-2.826 136.209-2.642Q136.463-2.457 136.819-2.457Q137.041-2.457 137.225-2.541Q137.410-2.625 137.545-2.780Q137.680-2.936 137.738-3.144Q137.752-3.199 137.806-3.199L137.919-3.199Q137.950-3.199 137.972-3.175Q137.994-3.151 137.994-3.117L137.994-3.096Q137.909-2.809 137.721-2.611Q137.533-2.413 137.268-2.310Q137.003-2.208 136.709-2.208Q136.279-2.208 135.891-2.414Q135.503-2.621 135.269-2.984Q135.034-3.346 135.034-3.787\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M139.971-2.276L138.388-2.276L138.388-2.556Q138.617-2.556 138.766-2.590Q138.914-2.625 138.914-2.765L138.914-6.384Q138.914-6.654 138.807-6.716Q138.699-6.777 138.388-6.777L138.388-7.058L139.468-7.133L139.468-3.845L140.453-4.614Q140.658-4.751 140.658-4.901Q140.658-4.945 140.617-4.980Q140.576-5.014 140.531-5.014L140.531-5.294L141.895-5.294L141.895-5.014Q141.406-5.014 140.887-4.614L140.330-4.180L141.307-2.956Q141.509-2.710 141.642-2.633Q141.775-2.556 142.062-2.556L142.062-2.276L140.630-2.276L140.630-2.556Q140.818-2.556 140.818-2.669Q140.818-2.765 140.664-2.956L139.930-3.865L139.448-3.486L139.448-2.765Q139.448-2.628 139.596-2.592Q139.745-2.556 139.971-2.556\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-48.99 -61.8)\">\u003Cpath d=\"M145.229-3.811Q145.229-4.132 145.354-4.421Q145.479-4.710 145.705-4.933Q145.930-5.157 146.226-5.277Q146.521-5.397 146.839-5.397Q147.167-5.397 147.429-5.297Q147.690-5.198 147.866-5.016Q148.042-4.833 148.136-4.575Q148.230-4.317 148.230-3.985Q148.230-3.893 148.148-3.872L145.893-3.872L145.893-3.811Q145.893-3.223 146.176-2.840Q146.460-2.457 147.027-2.457Q147.349-2.457 147.617-2.650Q147.885-2.843 147.974-3.158Q147.981-3.199 148.056-3.213L148.148-3.213Q148.230-3.189 148.230-3.117Q148.230-3.110 148.224-3.083Q148.111-2.686 147.740-2.447Q147.369-2.208 146.945-2.208Q146.508-2.208 146.108-2.416Q145.708-2.625 145.469-2.992Q145.229-3.359 145.229-3.811M145.899-4.081L147.714-4.081Q147.714-4.358 147.617-4.610Q147.519-4.863 147.321-5.019Q147.123-5.174 146.839-5.174Q146.562-5.174 146.349-5.016Q146.135-4.857 146.017-4.602Q145.899-4.347 145.899-4.081M148.818-3.787Q148.818-4.125 148.958-4.416Q149.099-4.706 149.343-4.920Q149.587-5.133 149.892-5.248Q150.196-5.362 150.520-5.362Q150.790-5.362 151.054-5.263Q151.317-5.164 151.508-4.986L151.508-6.384Q151.508-6.654 151.401-6.716Q151.293-6.777 150.982-6.777L150.982-7.058L152.059-7.133L152.059-2.949Q152.059-2.761 152.113-2.678Q152.168-2.594 152.269-2.575Q152.370-2.556 152.585-2.556L152.585-2.276L151.477-2.208L151.477-2.625Q151.060-2.208 150.435-2.208Q150.004-2.208 149.632-2.420Q149.259-2.631 149.039-2.992Q148.818-3.353 148.818-3.787M150.493-2.430Q150.702-2.430 150.888-2.502Q151.074-2.573 151.228-2.710Q151.382-2.847 151.477-3.025L151.477-4.634Q151.392-4.781 151.247-4.901Q151.102-5.021 150.932-5.080Q150.763-5.140 150.582-5.140Q150.021-5.140 149.753-4.751Q149.485-4.361 149.485-3.780Q149.485-3.209 149.719-2.819Q149.953-2.430 150.493-2.430M153.193-1.743Q153.193-1.989 153.390-2.173Q153.586-2.358 153.843-2.437Q153.706-2.549 153.634-2.710Q153.562-2.871 153.562-3.052Q153.562-3.373 153.774-3.619Q153.439-3.917 153.439-4.327Q153.439-4.788 153.829-5.075Q154.219-5.362 154.697-5.362Q155.169-5.362 155.504-5.116Q155.678-5.270 155.888-5.352Q156.099-5.434 156.328-5.434Q156.492-5.434 156.613-5.327Q156.734-5.219 156.734-5.055Q156.734-4.959 156.663-4.887Q156.591-4.816 156.498-4.816Q156.399-4.816 156.329-4.889Q156.259-4.963 156.259-5.062Q156.259-5.116 156.273-5.147L156.280-5.161Q156.287-5.181 156.295-5.192Q156.304-5.202 156.307-5.209Q155.952-5.209 155.664-4.986Q155.952-4.693 155.952-4.327Q155.952-4.012 155.767-3.780Q155.582-3.547 155.294-3.419Q155.005-3.291 154.697-3.291Q154.496-3.291 154.304-3.341Q154.113-3.390 153.935-3.500Q153.843-3.373 153.843-3.230Q153.843-3.048 153.971-2.913Q154.099-2.778 154.284-2.778L154.916-2.778Q155.364-2.778 155.733-2.707Q156.102-2.635 156.362-2.406Q156.622-2.177 156.622-1.743Q156.622-1.422 156.326-1.220Q156.030-1.018 155.627-0.929Q155.224-0.840 154.909-0.840Q154.591-0.840 154.188-0.929Q153.785-1.018 153.489-1.220Q153.193-1.422 153.193-1.743M153.648-1.743Q153.648-1.514 153.867-1.365Q154.085-1.216 154.378-1.148Q154.670-1.080 154.909-1.080Q155.073-1.080 155.282-1.116Q155.490-1.151 155.697-1.232Q155.904-1.312 156.035-1.440Q156.167-1.568 156.167-1.743Q156.167-2.095 155.786-2.189Q155.405-2.283 154.902-2.283L154.284-2.283Q154.044-2.283 153.846-2.132Q153.648-1.982 153.648-1.743M154.697-3.530Q155.364-3.530 155.364-4.327Q155.364-5.127 154.697-5.127Q154.027-5.127 154.027-4.327Q154.027-3.530 154.697-3.530M157.175-3.811Q157.175-4.132 157.300-4.421Q157.425-4.710 157.650-4.933Q157.876-5.157 158.172-5.277Q158.467-5.397 158.785-5.397Q159.113-5.397 159.375-5.297Q159.636-5.198 159.812-5.016Q159.988-4.833 160.082-4.575Q160.176-4.317 160.176-3.985Q160.176-3.893 160.094-3.872L157.838-3.872L157.838-3.811Q157.838-3.223 158.122-2.840Q158.406-2.457 158.973-2.457Q159.294-2.457 159.563-2.650Q159.831-2.843 159.920-3.158Q159.927-3.199 160.002-3.213L160.094-3.213Q160.176-3.189 160.176-3.117Q160.176-3.110 160.169-3.083Q160.057-2.686 159.686-2.447Q159.315-2.208 158.891-2.208Q158.454-2.208 158.054-2.416Q157.654-2.625 157.414-2.992Q157.175-3.359 157.175-3.811M157.845-4.081L159.660-4.081Q159.660-4.358 159.563-4.610Q159.465-4.863 159.267-5.019Q159.069-5.174 158.785-5.174Q158.508-5.174 158.295-5.016Q158.081-4.857 157.963-4.602Q157.845-4.347 157.845-4.081\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The register file: two read ports (srcA, srcB return valA, valB) and two write ports (dstE, dstM commit valE, valM). Reads are combinational; writes land at the clock edge. Addressing a port with RNONE (0xF) idles it.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:391.736px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 293.802 231.177\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M2.877-46.463h73.977V-72.07H2.877Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M42.787-59.266L40.201-59.266L40.201-59.563Q40.521-59.563 40.765-59.610Q41.010-59.657 41.010-59.825L41.010-64.168Q41.010-64.340 40.765-64.387Q40.521-64.434 40.201-64.434L40.201-64.731L44.818-64.731L45.049-62.883L44.767-62.883Q44.681-63.567 44.519-63.887Q44.357-64.207 44.017-64.321Q43.678-64.434 42.986-64.434L42.178-64.434Q41.959-64.434 41.867-64.391Q41.775-64.348 41.775-64.168L41.775-62.145L42.385-62.145Q42.810-62.145 43.008-62.211Q43.205-62.278 43.287-62.471Q43.369-62.664 43.369-63.082L43.650-63.082L43.650-60.914L43.369-60.914Q43.369-61.332 43.287-61.526Q43.205-61.719 43.008-61.786Q42.810-61.852 42.385-61.852L41.775-61.852L41.775-59.825Q41.775-59.661 42.094-59.612Q42.412-59.563 42.787-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M44.939-61.020Q44.939-61.500 45.172-61.916Q45.404-62.332 45.814-62.582Q46.224-62.832 46.701-62.832Q47.431-62.832 47.830-62.391Q48.228-61.950 48.228-61.219Q48.228-61.114 48.135-61.090L45.685-61.090L45.685-61.020Q45.685-60.610 45.806-60.254Q45.928-59.899 46.199-59.682Q46.471-59.465 46.900-59.465Q47.264-59.465 47.560-59.694Q47.857-59.922 47.959-60.274Q47.967-60.321 48.053-60.336L48.135-60.336Q48.228-60.309 48.228-60.227Q48.228-60.219 48.221-60.188Q48.158-59.961 48.019-59.778Q47.881-59.594 47.689-59.461Q47.498-59.328 47.279-59.258Q47.060-59.188 46.822-59.188Q46.451-59.188 46.113-59.325Q45.775-59.461 45.508-59.713Q45.240-59.965 45.090-60.305Q44.939-60.645 44.939-61.020M45.693-61.328L47.654-61.328Q47.654-61.633 47.553-61.924Q47.451-62.215 47.234-62.397Q47.017-62.578 46.701-62.578Q46.400-62.578 46.170-62.391Q45.939-62.203 45.816-61.912Q45.693-61.621 45.693-61.328M49.342-60.227L49.342-62.418L48.639-62.418L48.639-62.672Q48.994-62.672 49.236-62.905Q49.478-63.137 49.590-63.485Q49.701-63.832 49.701-64.188L49.982-64.188L49.982-62.715L51.158-62.715L51.158-62.418L49.982-62.418L49.982-60.243Q49.982-59.922 50.101-59.694Q50.221-59.465 50.502-59.465Q50.681-59.465 50.799-59.588Q50.916-59.711 50.969-59.891Q51.021-60.071 51.021-60.243L51.021-60.715L51.303-60.715L51.303-60.227Q51.303-59.973 51.197-59.733Q51.092-59.493 50.894-59.340Q50.697-59.188 50.439-59.188Q50.123-59.188 49.871-59.311Q49.619-59.434 49.480-59.668Q49.342-59.903 49.342-60.227M52.064-60.993Q52.064-61.489 52.314-61.914Q52.564-62.340 52.984-62.586Q53.404-62.832 53.904-62.832Q54.443-62.832 54.834-62.707Q55.224-62.582 55.224-62.168Q55.224-62.063 55.174-61.971Q55.123-61.879 55.031-61.828Q54.939-61.778 54.830-61.778Q54.724-61.778 54.633-61.828Q54.541-61.879 54.490-61.971Q54.439-62.063 54.439-62.168Q54.439-62.391 54.607-62.496Q54.385-62.555 53.912-62.555Q53.615-62.555 53.400-62.416Q53.185-62.278 53.055-62.047Q52.924-61.817 52.865-61.547Q52.806-61.278 52.806-60.993Q52.806-60.598 52.939-60.248Q53.072-59.899 53.344-59.682Q53.615-59.465 54.014-59.465Q54.389-59.465 54.664-59.682Q54.939-59.899 55.041-60.258Q55.056-60.321 55.119-60.321L55.224-60.321Q55.260-60.321 55.285-60.293Q55.310-60.266 55.310-60.227L55.310-60.203Q55.178-59.723 54.793-59.455Q54.408-59.188 53.904-59.188Q53.541-59.188 53.207-59.325Q52.873-59.461 52.613-59.711Q52.353-59.961 52.209-60.297Q52.064-60.633 52.064-60.993\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M57.494-59.266L55.639-59.266L55.639-59.563Q55.912-59.563 56.080-59.610Q56.248-59.657 56.248-59.825L56.248-63.985Q56.248-64.200 56.185-64.295Q56.123-64.391 56.004-64.412Q55.885-64.434 55.639-64.434L55.639-64.731L56.861-64.817L56.861-62.114Q56.986-62.325 57.174-62.475Q57.361-62.625 57.588-62.709Q57.814-62.793 58.060-62.793Q59.228-62.793 59.228-61.715L59.228-59.825Q59.228-59.657 59.398-59.610Q59.568-59.563 59.838-59.563L59.838-59.266L57.982-59.266L57.982-59.563Q58.256-59.563 58.424-59.610Q58.592-59.657 58.592-59.825L58.592-61.700Q58.592-62.082 58.471-62.311Q58.349-62.539 57.998-62.539Q57.685-62.539 57.431-62.377Q57.178-62.215 57.031-61.946Q56.885-61.676 56.885-61.379L56.885-59.825Q56.885-59.657 57.055-59.610Q57.224-59.563 57.494-59.563\" 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=\"M2.877-6.629h73.977v-25.607H2.877Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-13.515 42.611)\">\u003Cpath d=\"M43.279-59.266L40.217-59.266L40.217-59.563Q40.541-59.563 40.783-59.610Q41.025-59.657 41.025-59.825L41.025-64.168Q41.025-64.340 40.783-64.387Q40.541-64.434 40.217-64.434L40.217-64.731L43.279-64.731Q43.830-64.731 44.308-64.504Q44.787-64.278 45.140-63.883Q45.494-63.489 45.683-62.989Q45.873-62.489 45.873-61.946Q45.873-61.239 45.529-60.621Q45.185-60.004 44.590-59.635Q43.994-59.266 43.279-59.266M41.767-64.168L41.767-59.825Q41.767-59.653 41.859-59.608Q41.951-59.563 42.170-59.563L43.064-59.563Q43.510-59.563 43.902-59.733Q44.295-59.903 44.566-60.227Q44.838-60.551 44.935-60.971Q45.033-61.391 45.033-61.946Q45.033-62.301 44.996-62.614Q44.959-62.926 44.853-63.221Q44.748-63.516 44.568-63.739Q44.385-63.973 44.146-64.123Q43.908-64.274 43.627-64.354Q43.345-64.434 43.064-64.434L42.170-64.434Q41.951-64.434 41.859-64.391Q41.767-64.348 41.767-64.168M46.592-61.020Q46.592-61.500 46.824-61.916Q47.056-62.332 47.467-62.582Q47.877-62.832 48.353-62.832Q49.084-62.832 49.482-62.391Q49.881-61.950 49.881-61.219Q49.881-61.114 49.787-61.090L47.338-61.090L47.338-61.020Q47.338-60.610 47.459-60.254Q47.580-59.899 47.851-59.682Q48.123-59.465 48.553-59.465Q48.916-59.465 49.213-59.694Q49.510-59.922 49.611-60.274Q49.619-60.321 49.705-60.336L49.787-60.336Q49.881-60.309 49.881-60.227Q49.881-60.219 49.873-60.188Q49.810-59.961 49.672-59.778Q49.533-59.594 49.342-59.461Q49.150-59.328 48.931-59.258Q48.713-59.188 48.474-59.188Q48.103-59.188 47.765-59.325Q47.428-59.461 47.160-59.713Q46.892-59.965 46.742-60.305Q46.592-60.645 46.592-61.020M47.345-61.328L49.306-61.328Q49.306-61.633 49.205-61.924Q49.103-62.215 48.886-62.397Q48.670-62.578 48.353-62.578Q48.053-62.578 47.822-62.391Q47.592-62.203 47.469-61.912Q47.345-61.621 47.345-61.328M50.412-60.993Q50.412-61.489 50.662-61.914Q50.912-62.340 51.332-62.586Q51.752-62.832 52.252-62.832Q52.791-62.832 53.181-62.707Q53.572-62.582 53.572-62.168Q53.572-62.063 53.521-61.971Q53.470-61.879 53.379-61.828Q53.287-61.778 53.178-61.778Q53.072-61.778 52.980-61.828Q52.888-61.879 52.838-61.971Q52.787-62.063 52.787-62.168Q52.787-62.391 52.955-62.496Q52.732-62.555 52.260-62.555Q51.963-62.555 51.748-62.416Q51.533-62.278 51.402-62.047Q51.271-61.817 51.213-61.547Q51.154-61.278 51.154-60.993Q51.154-60.598 51.287-60.248Q51.420-59.899 51.691-59.682Q51.963-59.465 52.361-59.465Q52.736-59.465 53.011-59.682Q53.287-59.899 53.388-60.258Q53.404-60.321 53.467-60.321L53.572-60.321Q53.607-60.321 53.633-60.293Q53.658-60.266 53.658-60.227L53.658-60.203Q53.525-59.723 53.140-59.455Q52.756-59.188 52.252-59.188Q51.888-59.188 51.554-59.325Q51.220-59.461 50.961-59.711Q50.701-59.961 50.556-60.297Q50.412-60.633 50.412-60.993M54.146-60.961Q54.146-61.465 54.402-61.897Q54.658-62.328 55.094-62.580Q55.529-62.832 56.029-62.832Q56.416-62.832 56.758-62.688Q57.099-62.543 57.361-62.282Q57.623-62.020 57.765-61.684Q57.908-61.348 57.908-60.961Q57.908-60.469 57.644-60.059Q57.381-59.649 56.951-59.418Q56.521-59.188 56.029-59.188Q55.537-59.188 55.103-59.420Q54.670-59.653 54.408-60.061Q54.146-60.469 54.146-60.961M56.029-59.465Q56.486-59.465 56.738-59.688Q56.990-59.911 57.078-60.262Q57.166-60.614 57.166-61.059Q57.166-61.489 57.072-61.827Q56.978-62.164 56.724-62.371Q56.470-62.578 56.029-62.578Q55.381-62.578 55.136-62.162Q54.892-61.746 54.892-61.059Q54.892-60.614 54.980-60.262Q55.068-59.911 55.320-59.688Q55.572-59.465 56.029-59.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.515 42.611)\">\u003Cpath d=\"M60.451-59.188Q59.970-59.188 59.562-59.432Q59.154-59.676 58.916-60.090Q58.677-60.504 58.677-60.993Q58.677-61.485 58.935-61.901Q59.193-62.317 59.625-62.555Q60.056-62.793 60.548-62.793Q61.169-62.793 61.619-62.356L61.619-63.985Q61.619-64.200 61.556-64.295Q61.494-64.391 61.376-64.412Q61.259-64.434 61.013-64.434L61.013-64.731L62.236-64.817L62.236-60.008Q62.236-59.797 62.298-59.702Q62.361-59.606 62.478-59.584Q62.595-59.563 62.845-59.563L62.845-59.266L61.595-59.188L61.595-59.672Q61.130-59.188 60.451-59.188M60.517-59.442Q60.857-59.442 61.150-59.633Q61.443-59.825 61.595-60.121L61.595-61.953Q61.447-62.227 61.185-62.383Q60.923-62.539 60.611-62.539Q59.986-62.539 59.703-62.092Q59.419-61.645 59.419-60.985Q59.419-60.340 59.671-59.891Q59.923-59.442 60.517-59.442M63.353-61.020Q63.353-61.500 63.585-61.916Q63.818-62.332 64.228-62.582Q64.638-62.832 65.115-62.832Q65.845-62.832 66.244-62.391Q66.642-61.950 66.642-61.219Q66.642-61.114 66.548-61.090L64.099-61.090L64.099-61.020Q64.099-60.610 64.220-60.254Q64.341-59.899 64.613-59.682Q64.884-59.465 65.314-59.465Q65.677-59.465 65.974-59.694Q66.271-59.922 66.373-60.274Q66.380-60.321 66.466-60.336L66.548-60.336Q66.642-60.309 66.642-60.227Q66.642-60.219 66.634-60.188Q66.572-59.961 66.433-59.778Q66.294-59.594 66.103-59.461Q65.912-59.328 65.693-59.258Q65.474-59.188 65.236-59.188Q64.865-59.188 64.527-59.325Q64.189-59.461 63.921-59.713Q63.654-59.965 63.503-60.305Q63.353-60.645 63.353-61.020M64.107-61.328L66.068-61.328Q66.068-61.633 65.966-61.924Q65.865-62.215 65.648-62.397Q65.431-62.578 65.115-62.578Q64.814-62.578 64.584-62.391Q64.353-62.203 64.230-61.912Q64.107-61.621 64.107-61.328\" 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=\"M2.877 33.205h73.977V7.598H2.877Z\"\u002F>\u003Cg transform=\"translate(-14.814 82.401)\">\u003Cpath d=\"M45.049-59.266L40.201-59.266L40.201-59.563Q40.521-59.563 40.765-59.610Q41.010-59.657 41.010-59.825L41.010-64.168Q41.010-64.340 40.765-64.387Q40.521-64.434 40.201-64.434L40.201-64.731L44.935-64.731L45.170-62.883L44.888-62.883Q44.806-63.578 44.631-63.899Q44.455-64.219 44.107-64.327Q43.760-64.434 43.041-64.434L42.178-64.434Q41.959-64.434 41.867-64.391Q41.775-64.348 41.775-64.168L41.775-62.250L42.408-62.250Q42.834-62.250 43.041-62.313Q43.248-62.375 43.336-62.571Q43.424-62.766 43.424-63.188L43.705-63.188L43.705-61.020L43.424-61.020Q43.424-61.442 43.336-61.635Q43.248-61.828 43.041-61.891Q42.834-61.953 42.408-61.953L41.775-61.953L41.775-59.825Q41.775-59.653 41.867-59.608Q41.959-59.563 42.178-59.563L43.103-59.563Q43.685-59.563 44.039-59.645Q44.392-59.727 44.597-59.924Q44.803-60.121 44.916-60.459Q45.029-60.797 45.123-61.379L45.400-61.379L45.049-59.266M47.267-59.266L45.771-59.266L45.771-59.563Q46.404-59.563 46.826-60.043L47.595-60.953L46.603-62.153Q46.447-62.332 46.285-62.375Q46.123-62.418 45.818-62.418L45.818-62.715L47.506-62.715L47.506-62.418Q47.412-62.418 47.336-62.375Q47.260-62.332 47.260-62.243Q47.260-62.200 47.291-62.153L47.947-61.364L48.428-61.938Q48.545-62.075 48.545-62.211Q48.545-62.301 48.494-62.360Q48.443-62.418 48.361-62.418L48.361-62.715L49.849-62.715L49.849-62.418Q49.213-62.418 48.803-61.938L48.123-61.137L49.209-59.825Q49.369-59.649 49.529-59.606Q49.689-59.563 49.994-59.563L49.994-59.266L48.306-59.266L48.306-59.563Q48.396-59.563 48.474-59.606Q48.553-59.649 48.553-59.739Q48.553-59.762 48.521-59.825L47.779-60.731L47.193-60.043Q47.076-59.907 47.076-59.770Q47.076-59.684 47.127-59.623Q47.178-59.563 47.267-59.563L47.267-59.266M50.361-61.020Q50.361-61.500 50.594-61.916Q50.826-62.332 51.236-62.582Q51.646-62.832 52.123-62.832Q52.853-62.832 53.252-62.391Q53.650-61.950 53.650-61.219Q53.650-61.114 53.556-61.090L51.107-61.090L51.107-61.020Q51.107-60.610 51.228-60.254Q51.349-59.899 51.621-59.682Q51.892-59.465 52.322-59.465Q52.685-59.465 52.982-59.694Q53.279-59.922 53.381-60.274Q53.388-60.321 53.474-60.336L53.556-60.336Q53.650-60.309 53.650-60.227Q53.650-60.219 53.642-60.188Q53.580-59.961 53.441-59.778Q53.303-59.594 53.111-59.461Q52.920-59.328 52.701-59.258Q52.482-59.188 52.244-59.188Q51.873-59.188 51.535-59.325Q51.197-59.461 50.929-59.713Q50.662-59.965 50.511-60.305Q50.361-60.645 50.361-61.020M51.115-61.328L53.076-61.328Q53.076-61.633 52.974-61.924Q52.873-62.215 52.656-62.397Q52.439-62.578 52.123-62.578Q51.822-62.578 51.592-62.391Q51.361-62.203 51.238-61.912Q51.115-61.621 51.115-61.328M54.181-60.993Q54.181-61.489 54.431-61.914Q54.681-62.340 55.101-62.586Q55.521-62.832 56.021-62.832Q56.560-62.832 56.951-62.707Q57.342-62.582 57.342-62.168Q57.342-62.063 57.291-61.971Q57.240-61.879 57.148-61.828Q57.056-61.778 56.947-61.778Q56.842-61.778 56.750-61.828Q56.658-61.879 56.607-61.971Q56.556-62.063 56.556-62.168Q56.556-62.391 56.724-62.496Q56.502-62.555 56.029-62.555Q55.732-62.555 55.517-62.416Q55.303-62.278 55.172-62.047Q55.041-61.817 54.982-61.547Q54.924-61.278 54.924-60.993Q54.924-60.598 55.056-60.248Q55.189-59.899 55.461-59.682Q55.732-59.465 56.131-59.465Q56.506-59.465 56.781-59.682Q57.056-59.899 57.158-60.258Q57.174-60.321 57.236-60.321L57.342-60.321Q57.377-60.321 57.402-60.293Q57.428-60.266 57.428-60.227L57.428-60.203Q57.295-59.723 56.910-59.455Q56.525-59.188 56.021-59.188Q55.658-59.188 55.324-59.325Q54.990-59.461 54.730-59.711Q54.470-59.961 54.326-60.297Q54.181-60.633 54.181-60.993M58.599-60.219L58.599-61.961Q58.599-62.176 58.537-62.272Q58.474-62.368 58.355-62.389Q58.236-62.411 57.990-62.411L57.990-62.707L59.236-62.793L59.236-60.243L59.236-60.219Q59.236-59.907 59.291-59.745Q59.345-59.582 59.496-59.512Q59.646-59.442 59.967-59.442Q60.396-59.442 60.670-59.780Q60.943-60.118 60.943-60.563L60.943-61.961Q60.943-62.176 60.881-62.272Q60.818-62.368 60.699-62.389Q60.580-62.411 60.334-62.411L60.334-62.707L61.580-62.793L61.580-60.008Q61.580-59.797 61.642-59.702Q61.705-59.606 61.824-59.584Q61.943-59.563 62.189-59.563L62.189-59.266L60.967-59.188L60.967-59.809Q60.799-59.520 60.517-59.354Q60.236-59.188 59.916-59.188Q58.599-59.188 58.599-60.219M63.260-60.227L63.260-62.418L62.556-62.418L62.556-62.672Q62.912-62.672 63.154-62.905Q63.396-63.137 63.508-63.485Q63.619-63.832 63.619-64.188L63.900-64.188L63.900-62.715L65.076-62.715L65.076-62.418L63.900-62.418L63.900-60.243Q63.900-59.922 64.019-59.694Q64.138-59.465 64.420-59.465Q64.599-59.465 64.717-59.588Q64.834-59.711 64.886-59.891Q64.939-60.071 64.939-60.243L64.939-60.715L65.220-60.715L65.220-60.227Q65.220-59.973 65.115-59.733Q65.010-59.493 64.812-59.340Q64.615-59.188 64.357-59.188Q64.041-59.188 63.789-59.311Q63.537-59.434 63.398-59.668Q63.260-59.903 63.260-60.227M65.939-61.020Q65.939-61.500 66.172-61.916Q66.404-62.332 66.814-62.582Q67.224-62.832 67.701-62.832Q68.431-62.832 68.830-62.391Q69.228-61.950 69.228-61.219Q69.228-61.114 69.135-61.090L66.685-61.090L66.685-61.020Q66.685-60.610 66.806-60.254Q66.928-59.899 67.199-59.682Q67.470-59.465 67.900-59.465Q68.263-59.465 68.560-59.694Q68.857-59.922 68.959-60.274Q68.967-60.321 69.053-60.336L69.135-60.336Q69.228-60.309 69.228-60.227Q69.228-60.219 69.220-60.188Q69.158-59.961 69.019-59.778Q68.881-59.594 68.689-59.461Q68.498-59.328 68.279-59.258Q68.060-59.188 67.822-59.188Q67.451-59.188 67.113-59.325Q66.775-59.461 66.508-59.713Q66.240-59.965 66.090-60.305Q65.939-60.645 65.939-61.020M66.693-61.328L68.654-61.328Q68.654-61.633 68.553-61.924Q68.451-62.215 68.234-62.397Q68.017-62.578 67.701-62.578Q67.400-62.578 67.170-62.391Q66.939-62.203 66.816-61.912Q66.693-61.621 66.693-61.328\" 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=\"M2.877 73.039h73.977V47.43H2.877Z\"\u002F>\u003Cg transform=\"translate(-15.347 121.457)\">\u003Cpath d=\"M42.162-59.266L40.240-59.266L40.240-59.563Q41.049-59.563 41.049-60.043L41.049-64.168Q41.049-64.340 40.806-64.387Q40.564-64.434 40.240-64.434L40.240-64.731L41.736-64.731Q41.845-64.731 41.904-64.618L43.752-60.075L45.592-64.618Q45.654-64.731 45.760-64.731L47.263-64.731L47.263-64.434Q46.943-64.434 46.701-64.387Q46.459-64.340 46.459-64.168L46.459-59.825Q46.459-59.657 46.701-59.610Q46.943-59.563 47.263-59.563L47.263-59.266L44.963-59.266L44.963-59.563Q45.767-59.563 45.767-59.825L45.767-64.418L43.720-59.379Q43.685-59.266 43.553-59.266Q43.412-59.266 43.377-59.379L41.353-64.356L41.353-60.043Q41.353-59.563 42.162-59.563L42.162-59.266M47.881-61.020Q47.881-61.500 48.113-61.916Q48.345-62.332 48.756-62.582Q49.166-62.832 49.642-62.832Q50.373-62.832 50.771-62.391Q51.170-61.950 51.170-61.219Q51.170-61.114 51.076-61.090L48.627-61.090L48.627-61.020Q48.627-60.610 48.748-60.254Q48.869-59.899 49.140-59.682Q49.412-59.465 49.842-59.465Q50.205-59.465 50.502-59.694Q50.799-59.922 50.900-60.274Q50.908-60.321 50.994-60.336L51.076-60.336Q51.170-60.309 51.170-60.227Q51.170-60.219 51.162-60.188Q51.099-59.961 50.961-59.778Q50.822-59.594 50.631-59.461Q50.439-59.328 50.220-59.258Q50.002-59.188 49.763-59.188Q49.392-59.188 49.054-59.325Q48.717-59.461 48.449-59.713Q48.181-59.965 48.031-60.305Q47.881-60.645 47.881-61.020M48.635-61.328L50.595-61.328Q50.595-61.633 50.494-61.924Q50.392-62.215 50.176-62.397Q49.959-62.578 49.642-62.578Q49.342-62.578 49.111-62.391Q48.881-62.203 48.758-61.912Q48.635-61.621 48.635-61.328M53.588-59.266L51.732-59.266L51.732-59.563Q52.006-59.563 52.174-59.610Q52.342-59.657 52.342-59.825L52.342-61.961Q52.342-62.176 52.279-62.272Q52.217-62.368 52.097-62.389Q51.978-62.411 51.732-62.411L51.732-62.707L52.924-62.793L52.924-62.059Q53.037-62.274 53.230-62.442Q53.424-62.610 53.662-62.702Q53.900-62.793 54.154-62.793Q55.115-62.793 55.291-62.082Q55.474-62.411 55.803-62.602Q56.131-62.793 56.510-62.793Q57.685-62.793 57.685-61.715L57.685-59.825Q57.685-59.657 57.853-59.610Q58.021-59.563 58.291-59.563L58.291-59.266L56.435-59.266L56.435-59.563Q56.709-59.563 56.877-59.608Q57.045-59.653 57.045-59.825L57.045-61.700Q57.045-62.086 56.920-62.313Q56.795-62.539 56.443-62.539Q56.138-62.539 55.883-62.377Q55.627-62.215 55.478-61.946Q55.330-61.676 55.330-61.379L55.330-59.825Q55.330-59.657 55.500-59.610Q55.670-59.563 55.939-59.563L55.939-59.266L54.084-59.266L54.084-59.563Q54.357-59.563 54.525-59.610Q54.693-59.657 54.693-59.825L54.693-61.700Q54.693-62.086 54.568-62.313Q54.443-62.539 54.092-62.539Q53.787-62.539 53.531-62.377Q53.275-62.215 53.127-61.946Q52.978-61.676 52.978-61.379L52.978-59.825Q52.978-59.657 53.148-59.610Q53.318-59.563 53.588-59.563L53.588-59.266M58.736-60.961Q58.736-61.465 58.992-61.897Q59.248-62.328 59.683-62.580Q60.119-62.832 60.619-62.832Q61.006-62.832 61.347-62.688Q61.689-62.543 61.951-62.282Q62.213-62.020 62.355-61.684Q62.498-61.348 62.498-60.961Q62.498-60.469 62.234-60.059Q61.970-59.649 61.541-59.418Q61.111-59.188 60.619-59.188Q60.127-59.188 59.693-59.420Q59.260-59.653 58.998-60.061Q58.736-60.469 58.736-60.961M60.619-59.465Q61.076-59.465 61.328-59.688Q61.580-59.911 61.668-60.262Q61.756-60.614 61.756-61.059Q61.756-61.489 61.662-61.827Q61.568-62.164 61.314-62.371Q61.060-62.578 60.619-62.578Q59.970-62.578 59.726-62.162Q59.482-61.746 59.482-61.059Q59.482-60.614 59.570-60.262Q59.658-59.911 59.910-59.688Q60.162-59.465 60.619-59.465M64.990-59.266L63.010-59.266L63.010-59.563Q63.279-59.563 63.447-59.608Q63.615-59.653 63.615-59.825L63.615-61.961Q63.615-62.176 63.553-62.272Q63.490-62.368 63.373-62.389Q63.256-62.411 63.010-62.411L63.010-62.707L64.178-62.793L64.178-62.008Q64.256-62.219 64.408-62.405Q64.560-62.590 64.760-62.692Q64.959-62.793 65.185-62.793Q65.431-62.793 65.623-62.649Q65.814-62.504 65.814-62.274Q65.814-62.118 65.709-62.008Q65.603-61.899 65.447-61.899Q65.291-61.899 65.181-62.008Q65.072-62.118 65.072-62.274Q65.072-62.434 65.178-62.539Q64.853-62.539 64.638-62.311Q64.424-62.082 64.328-61.743Q64.232-61.403 64.232-61.098L64.232-59.825Q64.232-59.657 64.459-59.610Q64.685-59.563 64.990-59.563L64.990-59.266M66.713-57.969Q66.826-57.891 67.002-57.891Q67.291-57.891 67.511-58.104Q67.732-58.317 67.857-58.618L68.146-59.266L66.873-62.153Q66.791-62.328 66.646-62.373Q66.502-62.418 66.232-62.418L66.232-62.715L67.951-62.715L67.951-62.418Q67.529-62.418 67.529-62.235Q67.529-62.223 67.545-62.153L68.482-60.028L69.314-61.938Q69.353-62.028 69.353-62.106Q69.353-62.246 69.252-62.332Q69.150-62.418 69.010-62.418L69.010-62.715L70.361-62.715L70.361-62.418Q70.107-62.418 69.914-62.293Q69.720-62.168 69.615-61.938L68.170-58.618Q68.056-58.364 67.890-58.141Q67.724-57.918 67.496-57.776Q67.267-57.633 67.002-57.633Q66.705-57.633 66.465-57.825Q66.224-58.016 66.224-58.305Q66.224-58.461 66.330-58.563Q66.435-58.664 66.584-58.664Q66.689-58.664 66.769-58.618Q66.849-58.571 66.896-58.493Q66.943-58.414 66.943-58.305Q66.943-58.184 66.883-58.096Q66.822-58.008 66.713-57.969\" 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=\"M2.877 112.873h73.977V87.266H2.877Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.305 162.113)\">\u003Cpath d=\"M42.439-59.211L40.736-64.168Q40.670-64.344 40.494-64.389Q40.318-64.434 40.025-64.434L40.025-64.731L42.170-64.731L42.170-64.434Q41.513-64.434 41.513-64.219Q41.517-64.207 41.519-64.198Q41.521-64.188 41.521-64.168L42.873-60.235L44.072-63.739L43.928-64.168Q43.857-64.344 43.683-64.389Q43.510-64.434 43.217-64.434L43.217-64.731L45.353-64.731L45.353-64.434Q44.705-64.434 44.705-64.219Q44.705-64.176 44.713-64.168L46.064-60.235L47.338-63.953Q47.353-64 47.353-64.036Q47.353-64.176 47.244-64.268Q47.135-64.360 46.978-64.397Q46.822-64.434 46.689-64.434L46.689-64.731L48.424-64.731L48.424-64.434Q47.806-64.434 47.635-63.953L46.010-59.211Q45.990-59.161 45.947-59.129Q45.904-59.098 45.849-59.098L45.795-59.098Q45.674-59.098 45.635-59.211L44.224-63.305L42.818-59.211Q42.799-59.161 42.756-59.129Q42.713-59.098 42.658-59.098L42.599-59.098Q42.486-59.098 42.439-59.211\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 162.113)\">\u003Cpath d=\"M50.131-59.266L48.151-59.266L48.151-59.563Q48.420-59.563 48.588-59.608Q48.756-59.653 48.756-59.825L48.756-61.961Q48.756-62.176 48.694-62.272Q48.631-62.368 48.514-62.389Q48.397-62.411 48.151-62.411L48.151-62.707L49.319-62.793L49.319-62.008Q49.397-62.219 49.549-62.405Q49.701-62.590 49.901-62.692Q50.100-62.793 50.326-62.793Q50.572-62.793 50.764-62.649Q50.955-62.504 50.955-62.274Q50.955-62.118 50.850-62.008Q50.744-61.899 50.588-61.899Q50.432-61.899 50.322-62.008Q50.213-62.118 50.213-62.274Q50.213-62.434 50.319-62.539Q49.994-62.539 49.780-62.311Q49.565-62.082 49.469-61.743Q49.373-61.403 49.373-61.098L49.373-59.825Q49.373-59.657 49.600-59.610Q49.826-59.563 50.131-59.563L50.131-59.266M53.295-59.266L51.518-59.266L51.518-59.563Q51.791-59.563 51.959-59.610Q52.127-59.657 52.127-59.825L52.127-61.961Q52.127-62.176 52.071-62.272Q52.014-62.368 51.901-62.389Q51.787-62.411 51.541-62.411L51.541-62.707L52.740-62.793L52.740-59.825Q52.740-59.657 52.887-59.610Q53.033-59.563 53.295-59.563L53.295-59.266M51.854-64.188Q51.854-64.379 51.989-64.510Q52.123-64.641 52.319-64.641Q52.440-64.641 52.543-64.578Q52.647-64.516 52.709-64.412Q52.772-64.309 52.772-64.188Q52.772-63.993 52.641-63.858Q52.510-63.723 52.319-63.723Q52.119-63.723 51.987-63.856Q51.854-63.989 51.854-64.188M54.420-60.227L54.420-62.418L53.717-62.418L53.717-62.672Q54.072-62.672 54.315-62.905Q54.557-63.137 54.668-63.485Q54.780-63.832 54.780-64.188L55.061-64.188L55.061-62.715L56.237-62.715L56.237-62.418L55.061-62.418L55.061-60.243Q55.061-59.922 55.180-59.694Q55.299-59.465 55.580-59.465Q55.760-59.465 55.877-59.588Q55.994-59.711 56.047-59.891Q56.100-60.071 56.100-60.243L56.100-60.715L56.381-60.715L56.381-60.227Q56.381-59.973 56.276-59.733Q56.170-59.493 55.973-59.340Q55.776-59.188 55.518-59.188Q55.201-59.188 54.949-59.311Q54.697-59.434 54.559-59.668Q54.420-59.903 54.420-60.227M57.100-61.020Q57.100-61.500 57.332-61.916Q57.565-62.332 57.975-62.582Q58.385-62.832 58.862-62.832Q59.592-62.832 59.990-62.391Q60.389-61.950 60.389-61.219Q60.389-61.114 60.295-61.090L57.846-61.090L57.846-61.020Q57.846-60.610 57.967-60.254Q58.088-59.899 58.360-59.682Q58.631-59.465 59.061-59.465Q59.424-59.465 59.721-59.694Q60.018-59.922 60.119-60.274Q60.127-60.321 60.213-60.336L60.295-60.336Q60.389-60.309 60.389-60.227Q60.389-60.219 60.381-60.188Q60.319-59.961 60.180-59.778Q60.041-59.594 59.850-59.461Q59.658-59.328 59.440-59.258Q59.221-59.188 58.983-59.188Q58.612-59.188 58.274-59.325Q57.936-59.461 57.668-59.713Q57.401-59.965 57.250-60.305Q57.100-60.645 57.100-61.020M57.854-61.328L59.815-61.328Q59.815-61.633 59.713-61.924Q59.612-62.215 59.395-62.397Q59.178-62.578 58.862-62.578Q58.561-62.578 58.330-62.391Q58.100-62.203 57.977-61.912Q57.854-61.621 57.854-61.328M62.990-60.715L60.737-60.715L60.737-61.266L62.990-61.266L62.990-60.715M64.623-59.266L64.342-59.266L64.342-63.985Q64.342-64.200 64.280-64.295Q64.217-64.391 64.100-64.412Q63.983-64.434 63.737-64.434L63.737-64.731L64.959-64.817L64.959-62.328Q65.436-62.793 66.135-62.793Q66.615-62.793 67.024-62.549Q67.432-62.305 67.668-61.891Q67.905-61.477 67.905-60.993Q67.905-60.618 67.756-60.289Q67.608-59.961 67.338-59.709Q67.069-59.457 66.725-59.323Q66.381-59.188 66.022-59.188Q65.701-59.188 65.403-59.336Q65.104-59.485 64.897-59.746L64.623-59.266M64.983-61.938L64.983-60.098Q65.135-59.801 65.395-59.621Q65.655-59.442 65.967-59.442Q66.393-59.442 66.660-59.661Q66.928-59.879 67.043-60.225Q67.158-60.571 67.158-60.993Q67.158-61.641 66.910-62.090Q66.662-62.539 66.065-62.539Q65.729-62.539 65.440-62.381Q65.151-62.223 64.983-61.938M68.526-60.098Q68.526-60.582 68.928-60.877Q69.330-61.172 69.881-61.291Q70.432-61.411 70.924-61.411L70.924-61.700Q70.924-61.926 70.809-62.133Q70.694-62.340 70.496-62.459Q70.299-62.578 70.069-62.578Q69.643-62.578 69.358-62.473Q69.428-62.446 69.475-62.391Q69.522-62.336 69.547-62.266Q69.572-62.196 69.572-62.121Q69.572-62.016 69.522-61.924Q69.471-61.832 69.379-61.782Q69.287-61.731 69.182-61.731Q69.076-61.731 68.985-61.782Q68.893-61.832 68.842-61.924Q68.791-62.016 68.791-62.121Q68.791-62.539 69.180-62.686Q69.569-62.832 70.069-62.832Q70.401-62.832 70.754-62.702Q71.108-62.571 71.336-62.317Q71.565-62.063 71.565-61.715L71.565-59.914Q71.565-59.782 71.637-59.672Q71.709-59.563 71.838-59.563Q71.963-59.563 72.031-59.668Q72.100-59.774 72.100-59.914L72.100-60.426L72.381-60.426L72.381-59.914Q72.381-59.711 72.264-59.553Q72.147-59.395 71.965-59.311Q71.783-59.227 71.580-59.227Q71.350-59.227 71.197-59.399Q71.045-59.571 71.014-59.801Q70.854-59.520 70.545-59.354Q70.237-59.188 69.885-59.188Q69.373-59.188 68.949-59.411Q68.526-59.633 68.526-60.098M69.213-60.098Q69.213-59.813 69.440-59.627Q69.666-59.442 69.959-59.442Q70.205-59.442 70.430-59.559Q70.655-59.676 70.789-59.879Q70.924-60.082 70.924-60.336L70.924-61.168Q70.658-61.168 70.373-61.114Q70.088-61.059 69.817-60.930Q69.545-60.801 69.379-60.594Q69.213-60.387 69.213-60.098M72.717-60.993Q72.717-61.489 72.967-61.914Q73.217-62.340 73.637-62.586Q74.057-62.832 74.557-62.832Q75.096-62.832 75.487-62.707Q75.877-62.582 75.877-62.168Q75.877-62.063 75.826-61.971Q75.776-61.879 75.684-61.828Q75.592-61.778 75.483-61.778Q75.377-61.778 75.285-61.828Q75.194-61.879 75.143-61.971Q75.092-62.063 75.092-62.168Q75.092-62.391 75.260-62.496Q75.037-62.555 74.565-62.555Q74.268-62.555 74.053-62.416Q73.838-62.278 73.707-62.047Q73.576-61.817 73.518-61.547Q73.459-61.278 73.459-60.993Q73.459-60.598 73.592-60.248Q73.725-59.899 73.996-59.682Q74.268-59.465 74.666-59.465Q75.041-59.465 75.317-59.682Q75.592-59.899 75.694-60.258Q75.709-60.321 75.772-60.321L75.877-60.321Q75.912-60.321 75.938-60.293Q75.963-60.266 75.963-60.227L75.963-60.203Q75.830-59.723 75.446-59.455Q75.061-59.188 74.557-59.188Q74.194-59.188 73.860-59.325Q73.526-59.461 73.266-59.711Q73.006-59.961 72.862-60.297Q72.717-60.633 72.717-60.993\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 162.113)\">\u003Cpath d=\"M78.052-59.266L76.255-59.266L76.255-59.563Q76.524-59.563 76.692-59.608Q76.860-59.653 76.860-59.825L76.860-63.985Q76.860-64.200 76.798-64.295Q76.735-64.391 76.618-64.412Q76.501-64.434 76.255-64.434L76.255-64.731L77.477-64.817L77.477-61.051L78.575-61.938Q78.782-62.118 78.782-62.266Q78.782-62.332 78.729-62.375Q78.677-62.418 78.606-62.418L78.606-62.715L80.141-62.715L80.141-62.418Q79.610-62.418 79.012-61.938L78.403-61.442L79.477-60.043Q79.614-59.868 79.721-59.760Q79.829-59.653 79.964-59.608Q80.098-59.563 80.325-59.563L80.325-59.266L78.700-59.266L78.700-59.563Q78.942-59.563 78.942-59.715Q78.942-59.793 78.899-59.864Q78.856-59.934 78.774-60.043L77.973-61.090L77.446-60.664L77.446-59.825Q77.446-59.657 77.614-59.610Q77.782-59.563 78.052-59.563\" 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=\"M2.877 152.707h73.977v-25.608H2.877Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.245 201.17)\">\u003Cpath d=\"M42.599-59.266L40.217-59.266L40.217-59.563Q40.541-59.563 40.783-59.610Q41.025-59.657 41.025-59.825L41.025-64.168Q41.025-64.340 40.783-64.387Q40.541-64.434 40.217-64.434L40.217-64.731L43.162-64.731Q43.506-64.731 43.861-64.631Q44.217-64.532 44.511-64.340Q44.806-64.149 44.988-63.864Q45.170-63.578 45.170-63.219Q45.170-62.746 44.859-62.411Q44.549-62.075 44.084-61.903Q43.619-61.731 43.162-61.731L41.795-61.731L41.795-59.825Q41.795-59.657 42.037-59.610Q42.279-59.563 42.599-59.563L42.599-59.266M41.767-64.168L41.767-62L42.943-62Q43.631-62 43.969-62.276Q44.306-62.551 44.306-63.219Q44.306-63.883 43.969-64.159Q43.631-64.434 42.943-64.434L42.170-64.434Q41.951-64.434 41.859-64.391Q41.767-64.348 41.767-64.168M46.115-62Q46.115-62.594 46.347-63.125Q46.580-63.657 46.996-64.057Q47.412-64.457 47.945-64.678Q48.478-64.899 49.084-64.899Q49.521-64.899 49.920-64.717Q50.318-64.536 50.627-64.203L51.099-64.868Q51.131-64.899 51.162-64.899L51.209-64.899Q51.236-64.899 51.267-64.868Q51.299-64.836 51.299-64.809L51.299-62.672Q51.299-62.649 51.267-62.618Q51.236-62.586 51.209-62.586L51.092-62.586Q51.064-62.586 51.033-62.618Q51.002-62.649 51.002-62.672Q51.002-62.938 50.859-63.291Q50.717-63.645 50.537-63.883Q50.283-64.215 49.933-64.409Q49.584-64.602 49.178-64.602Q48.674-64.602 48.220-64.383Q47.767-64.164 47.474-63.770Q46.978-63.102 46.978-62Q46.978-61.469 47.115-61.002Q47.252-60.536 47.527-60.170Q47.803-59.805 48.222-59.600Q48.642-59.395 49.185-59.395Q49.674-59.395 50.097-59.639Q50.521-59.883 50.769-60.303Q51.017-60.723 51.017-61.219Q51.017-61.254 51.047-61.280Q51.076-61.305 51.107-61.305L51.209-61.305Q51.252-61.305 51.275-61.276Q51.299-61.246 51.299-61.203Q51.299-60.766 51.123-60.377Q50.947-59.989 50.636-59.705Q50.326-59.422 49.916-59.260Q49.506-59.098 49.084-59.098Q48.494-59.098 47.953-59.319Q47.412-59.539 46.996-59.944Q46.580-60.348 46.347-60.877Q46.115-61.407 46.115-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 201.17)\">\u003Cpath d=\"M55.540-60.219L55.540-61.961Q55.540-62.176 55.477-62.272Q55.415-62.368 55.296-62.389Q55.177-62.411 54.931-62.411L54.931-62.707L56.177-62.793L56.177-60.243L56.177-60.219Q56.177-59.907 56.231-59.745Q56.286-59.582 56.436-59.512Q56.587-59.442 56.907-59.442Q57.337-59.442 57.610-59.780Q57.884-60.118 57.884-60.563L57.884-61.961Q57.884-62.176 57.821-62.272Q57.759-62.368 57.639-62.389Q57.520-62.411 57.274-62.411L57.274-62.707L58.520-62.793L58.520-60.008Q58.520-59.797 58.583-59.702Q58.645-59.606 58.764-59.584Q58.884-59.563 59.130-59.563L59.130-59.266L57.907-59.188L57.907-59.809Q57.739-59.520 57.458-59.354Q57.177-59.188 56.856-59.188Q55.540-59.188 55.540-60.219M61.458-57.715L59.602-57.715L59.602-58.008Q59.872-58.008 60.040-58.053Q60.208-58.098 60.208-58.274L60.208-62.098Q60.208-62.305 60.052-62.358Q59.895-62.411 59.602-62.411L59.602-62.707L60.825-62.793L60.825-62.328Q61.056-62.551 61.370-62.672Q61.684-62.793 62.024-62.793Q62.497-62.793 62.901-62.547Q63.306-62.301 63.538-61.885Q63.770-61.469 63.770-60.993Q63.770-60.618 63.622-60.289Q63.473-59.961 63.204-59.709Q62.934-59.457 62.591-59.323Q62.247-59.188 61.888-59.188Q61.598-59.188 61.327-59.309Q61.056-59.430 60.848-59.641L60.848-58.274Q60.848-58.098 61.016-58.053Q61.184-58.008 61.458-58.008L61.458-57.715M60.848-61.930L60.848-60.090Q61.001-59.801 61.263-59.621Q61.524-59.442 61.833-59.442Q62.118-59.442 62.341-59.580Q62.563-59.719 62.716-59.950Q62.868-60.180 62.946-60.452Q63.024-60.723 63.024-60.993Q63.024-61.325 62.899-61.682Q62.774-62.039 62.526-62.276Q62.278-62.512 61.931-62.512Q61.606-62.512 61.311-62.356Q61.016-62.200 60.848-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 201.17)\">\u003Cpath d=\"M66.354-59.188Q65.873-59.188 65.465-59.432Q65.057-59.676 64.819-60.090Q64.580-60.504 64.580-60.993Q64.580-61.485 64.838-61.901Q65.096-62.317 65.528-62.555Q65.959-62.793 66.451-62.793Q67.072-62.793 67.522-62.356L67.522-63.985Q67.522-64.200 67.459-64.295Q67.397-64.391 67.279-64.412Q67.162-64.434 66.916-64.434L66.916-64.731L68.139-64.817L68.139-60.008Q68.139-59.797 68.201-59.702Q68.264-59.606 68.381-59.584Q68.498-59.563 68.748-59.563L68.748-59.266L67.498-59.188L67.498-59.672Q67.033-59.188 66.354-59.188M66.420-59.442Q66.760-59.442 67.053-59.633Q67.346-59.825 67.498-60.121L67.498-61.953Q67.350-62.227 67.088-62.383Q66.826-62.539 66.514-62.539Q65.889-62.539 65.606-62.092Q65.322-61.645 65.322-60.985Q65.322-60.340 65.574-59.891Q65.826-59.442 66.420-59.442M69.354-60.098Q69.354-60.582 69.756-60.877Q70.158-61.172 70.709-61.291Q71.260-61.411 71.752-61.411L71.752-61.700Q71.752-61.926 71.637-62.133Q71.522-62.340 71.324-62.459Q71.127-62.578 70.897-62.578Q70.471-62.578 70.186-62.473Q70.256-62.446 70.303-62.391Q70.350-62.336 70.375-62.266Q70.401-62.196 70.401-62.121Q70.401-62.016 70.350-61.924Q70.299-61.832 70.207-61.782Q70.115-61.731 70.010-61.731Q69.904-61.731 69.813-61.782Q69.721-61.832 69.670-61.924Q69.619-62.016 69.619-62.121Q69.619-62.539 70.008-62.686Q70.397-62.832 70.897-62.832Q71.229-62.832 71.582-62.702Q71.936-62.571 72.164-62.317Q72.393-62.063 72.393-61.715L72.393-59.914Q72.393-59.782 72.465-59.672Q72.537-59.563 72.666-59.563Q72.791-59.563 72.860-59.668Q72.928-59.774 72.928-59.914L72.928-60.426L73.209-60.426L73.209-59.914Q73.209-59.711 73.092-59.553Q72.975-59.395 72.793-59.311Q72.612-59.227 72.408-59.227Q72.178-59.227 72.026-59.399Q71.873-59.571 71.842-59.801Q71.682-59.520 71.373-59.354Q71.065-59.188 70.713-59.188Q70.201-59.188 69.778-59.411Q69.354-59.633 69.354-60.098M70.041-60.098Q70.041-59.813 70.268-59.627Q70.494-59.442 70.787-59.442Q71.033-59.442 71.258-59.559Q71.483-59.676 71.617-59.879Q71.752-60.082 71.752-60.336L71.752-61.168Q71.487-61.168 71.201-61.114Q70.916-61.059 70.645-60.930Q70.373-60.801 70.207-60.594Q70.041-60.387 70.041-60.098M74.127-60.227L74.127-62.418L73.424-62.418L73.424-62.672Q73.779-62.672 74.022-62.905Q74.264-63.137 74.375-63.485Q74.487-63.832 74.487-64.188L74.768-64.188L74.768-62.715L75.944-62.715L75.944-62.418L74.768-62.418L74.768-60.243Q74.768-59.922 74.887-59.694Q75.006-59.465 75.287-59.465Q75.467-59.465 75.584-59.588Q75.701-59.711 75.754-59.891Q75.807-60.071 75.807-60.243L75.807-60.715L76.088-60.715L76.088-60.227Q76.088-59.973 75.983-59.733Q75.877-59.493 75.680-59.340Q75.483-59.188 75.225-59.188Q74.908-59.188 74.656-59.311Q74.404-59.434 74.266-59.668Q74.127-59.903 74.127-60.227M76.807-61.020Q76.807-61.500 77.039-61.916Q77.272-62.332 77.682-62.582Q78.092-62.832 78.569-62.832Q79.299-62.832 79.697-62.391Q80.096-61.950 80.096-61.219Q80.096-61.114 80.002-61.090L77.553-61.090L77.553-61.020Q77.553-60.610 77.674-60.254Q77.795-59.899 78.067-59.682Q78.338-59.465 78.768-59.465Q79.131-59.465 79.428-59.694Q79.725-59.922 79.826-60.274Q79.834-60.321 79.920-60.336L80.002-60.336Q80.096-60.309 80.096-60.227Q80.096-60.219 80.088-60.188Q80.026-59.961 79.887-59.778Q79.748-59.594 79.557-59.461Q79.365-59.328 79.147-59.258Q78.928-59.188 78.690-59.188Q78.319-59.188 77.981-59.325Q77.643-59.461 77.375-59.713Q77.108-59.965 76.957-60.305Q76.807-60.645 76.807-61.020M77.561-61.328L79.522-61.328Q79.522-61.633 79.420-61.924Q79.319-62.215 79.102-62.397Q78.885-62.578 78.569-62.578Q78.268-62.578 78.037-62.391Q77.807-62.203 77.684-61.912Q77.561-61.621 77.561-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M39.865-46.263v11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m39.865-32.436 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M39.865-6.429V5.398\"\u002F>\u003Cpath stroke=\"none\" d=\"m39.865 7.398 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M39.865 33.405v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m39.865 47.231 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M39.865 73.239v11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m39.865 87.066 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M39.865 113.073v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m39.865 126.9 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=\"M2.677 139.903h-45.525v-199.17H.677\"\u002F>\u003Cpath stroke=\"none\" d=\"m2.677-59.266-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 54.908 53.204)\">\u003Cpath d=\"M41.861-59.266L40.227-59.266L40.227-59.546Q40.456-59.546 40.605-59.580Q40.754-59.615 40.754-59.755L40.754-61.604Q40.754-61.874 40.646-61.935Q40.538-61.997 40.227-61.997L40.227-62.277L41.287-62.352L41.287-61.703Q41.458-62.011 41.762-62.182Q42.066-62.352 42.411-62.352Q42.917-62.352 43.201-62.129Q43.485-61.905 43.485-61.409L43.485-59.755Q43.485-59.618 43.633-59.582Q43.782-59.546 44.008-59.546L44.008-59.266L42.377-59.266L42.377-59.546Q42.606-59.546 42.755-59.580Q42.904-59.615 42.904-59.755L42.904-61.395Q42.904-61.730 42.784-61.930Q42.664-62.130 42.350-62.130Q42.080-62.130 41.846-61.994Q41.612-61.857 41.473-61.623Q41.335-61.389 41.335-61.115L41.335-59.755Q41.335-59.618 41.485-59.582Q41.636-59.546 41.861-59.546L41.861-59.266M44.554-60.801Q44.554-61.122 44.679-61.411Q44.804-61.700 45.030-61.923Q45.255-62.147 45.551-62.267Q45.846-62.387 46.164-62.387Q46.492-62.387 46.754-62.287Q47.015-62.188 47.191-62.006Q47.367-61.823 47.461-61.565Q47.555-61.307 47.555-60.975Q47.555-60.883 47.473-60.862L45.218-60.862L45.218-60.801Q45.218-60.213 45.501-59.830Q45.785-59.447 46.352-59.447Q46.674-59.447 46.942-59.640Q47.210-59.833 47.299-60.148Q47.306-60.189 47.381-60.203L47.473-60.203Q47.555-60.179 47.555-60.107Q47.555-60.100 47.549-60.073Q47.436-59.676 47.065-59.437Q46.694-59.198 46.270-59.198Q45.833-59.198 45.433-59.406Q45.033-59.615 44.794-59.982Q44.554-60.349 44.554-60.801M45.224-61.071L47.039-61.071Q47.039-61.348 46.942-61.600Q46.844-61.853 46.646-62.009Q46.448-62.164 46.164-62.164Q45.887-62.164 45.674-62.006Q45.460-61.847 45.342-61.592Q45.224-61.337 45.224-61.071M49.326-59.266L48.003-59.266L48.003-59.546Q48.564-59.546 48.943-59.946L49.657-60.743L48.745-61.792Q48.608-61.939 48.459-61.971Q48.311-62.004 48.044-62.004L48.044-62.284L49.545-62.284L49.545-62.004Q49.353-62.004 49.353-61.870Q49.353-61.840 49.384-61.792L49.979-61.108L50.420-61.604Q50.532-61.734 50.532-61.850Q50.532-61.912 50.495-61.958Q50.457-62.004 50.399-62.004L50.399-62.284L51.715-62.284L51.715-62.004Q51.155-62.004 50.775-61.604L50.153-60.903L51.148-59.755Q51.247-59.656 51.348-59.611Q51.448-59.567 51.560-59.557Q51.671-59.546 51.848-59.546L51.848-59.266L50.355-59.266L50.355-59.546Q50.420-59.546 50.480-59.580Q50.539-59.615 50.539-59.680Q50.539-59.727 50.509-59.755L49.832-60.541L49.299-59.946Q49.186-59.816 49.186-59.700Q49.186-59.635 49.227-59.591Q49.268-59.546 49.326-59.546L49.326-59.266M52.870-60.107L52.870-62.004L52.231-62.004L52.231-62.226Q52.549-62.226 52.766-62.436Q52.983-62.646 53.084-62.956Q53.185-63.265 53.185-63.573L53.451-63.573L53.451-62.284L54.528-62.284L54.528-62.004L53.451-62.004L53.451-60.120Q53.451-59.844 53.556-59.645Q53.660-59.447 53.920-59.447Q54.077-59.447 54.183-59.551Q54.289-59.656 54.338-59.809Q54.388-59.963 54.388-60.120L54.388-60.534L54.655-60.534L54.655-60.107Q54.655-59.881 54.555-59.671Q54.456-59.461 54.272-59.329Q54.087-59.198 53.858-59.198Q53.421-59.198 53.146-59.435Q52.870-59.673 52.870-60.107\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 54.908 53.204)\">\u003Cpath d=\"M59.789-59.266L58.237-59.266L58.237-59.546Q58.463-59.546 58.612-59.580Q58.760-59.615 58.760-59.755L58.760-61.604Q58.760-61.792 58.712-61.876Q58.665-61.959 58.567-61.978Q58.470-61.997 58.258-61.997L58.258-62.277L59.314-62.352L59.314-59.755Q59.314-59.615 59.446-59.580Q59.577-59.546 59.789-59.546L59.789-59.266M58.518-63.573Q58.518-63.744 58.641-63.863Q58.764-63.983 58.935-63.983Q59.102-63.983 59.225-63.863Q59.348-63.744 59.348-63.573Q59.348-63.398 59.225-63.275Q59.102-63.152 58.935-63.152Q58.764-63.152 58.641-63.275Q58.518-63.398 58.518-63.573M62.117-59.266L60.483-59.266L60.483-59.546Q60.712-59.546 60.861-59.580Q61.009-59.615 61.009-59.755L61.009-61.604Q61.009-61.874 60.902-61.935Q60.794-61.997 60.483-61.997L60.483-62.277L61.543-62.352L61.543-61.703Q61.713-62.011 62.018-62.182Q62.322-62.352 62.667-62.352Q63.173-62.352 63.457-62.129Q63.740-61.905 63.740-61.409L63.740-59.755Q63.740-59.618 63.889-59.582Q64.038-59.546 64.263-59.546L64.263-59.266L62.633-59.266L62.633-59.546Q62.862-59.546 63.011-59.580Q63.159-59.615 63.159-59.755L63.159-61.395Q63.159-61.730 63.040-61.930Q62.920-62.130 62.606-62.130Q62.336-62.130 62.101-61.994Q61.867-61.857 61.729-61.623Q61.590-61.389 61.590-61.115L61.590-59.755Q61.590-59.618 61.741-59.582Q61.891-59.546 62.117-59.546L62.117-59.266M64.851-59.273L64.851-60.336Q64.851-60.360 64.879-60.387Q64.906-60.414 64.930-60.414L65.039-60.414Q65.104-60.414 65.118-60.356Q65.213-59.922 65.460-59.671Q65.706-59.420 66.119-59.420Q66.461-59.420 66.714-59.553Q66.967-59.686 66.967-59.994Q66.967-60.151 66.873-60.266Q66.779-60.380 66.640-60.449Q66.502-60.517 66.335-60.555L65.754-60.654Q65.398-60.722 65.125-60.943Q64.851-61.163 64.851-61.505Q64.851-61.754 64.962-61.929Q65.073-62.103 65.260-62.202Q65.446-62.301 65.661-62.344Q65.877-62.387 66.119-62.387Q66.533-62.387 66.813-62.205L67.028-62.380Q67.039-62.383 67.046-62.385Q67.052-62.387 67.063-62.387L67.114-62.387Q67.141-62.387 67.165-62.363Q67.189-62.339 67.189-62.311L67.189-61.464Q67.189-61.443 67.165-61.416Q67.141-61.389 67.114-61.389L67.001-61.389Q66.974-61.389 66.948-61.414Q66.922-61.440 66.922-61.464Q66.922-61.700 66.816-61.864Q66.711-62.028 66.528-62.110Q66.345-62.192 66.112-62.192Q65.784-62.192 65.528-62.089Q65.272-61.987 65.272-61.710Q65.272-61.515 65.454-61.406Q65.637-61.296 65.866-61.255L66.441-61.149Q66.687-61.101 66.900-60.973Q67.114-60.845 67.251-60.642Q67.387-60.438 67.387-60.189Q67.387-59.676 67.022-59.437Q66.656-59.198 66.119-59.198Q65.624-59.198 65.292-59.492L65.025-59.218Q65.005-59.198 64.978-59.198L64.930-59.198Q64.906-59.198 64.879-59.225Q64.851-59.252 64.851-59.273M68.543-60.107L68.543-62.004L67.903-62.004L67.903-62.226Q68.221-62.226 68.438-62.436Q68.655-62.646 68.756-62.956Q68.857-63.265 68.857-63.573L69.124-63.573L69.124-62.284L70.200-62.284L70.200-62.004L69.124-62.004L69.124-60.120Q69.124-59.844 69.228-59.645Q69.332-59.447 69.592-59.447Q69.749-59.447 69.855-59.551Q69.961-59.656 70.011-59.809Q70.060-59.963 70.060-60.120L70.060-60.534L70.327-60.534L70.327-60.107Q70.327-59.881 70.228-59.671Q70.129-59.461 69.944-59.329Q69.759-59.198 69.530-59.198Q69.093-59.198 68.818-59.435Q68.543-59.673 68.543-60.107M72.887-59.266L71.150-59.266L71.150-59.546Q71.379-59.546 71.528-59.580Q71.677-59.615 71.677-59.755L71.677-61.604Q71.677-61.874 71.569-61.935Q71.462-61.997 71.150-61.997L71.150-62.277L72.179-62.352L72.179-61.645Q72.309-61.953 72.552-62.152Q72.795-62.352 73.112-62.352Q73.331-62.352 73.502-62.228Q73.673-62.103 73.673-61.891Q73.673-61.754 73.574-61.655Q73.475-61.556 73.341-61.556Q73.205-61.556 73.106-61.655Q73.006-61.754 73.006-61.891Q73.006-62.031 73.106-62.130Q72.815-62.130 72.615-61.934Q72.415-61.737 72.323-61.443Q72.231-61.149 72.231-60.869L72.231-59.755Q72.231-59.546 72.887-59.546L72.887-59.266M74.832-60.100L74.832-61.604Q74.832-61.874 74.724-61.935Q74.616-61.997 74.305-61.997L74.305-62.277L75.413-62.352L75.413-60.120L75.413-60.100Q75.413-59.820 75.464-59.676Q75.515-59.533 75.657-59.476Q75.799-59.420 76.086-59.420Q76.339-59.420 76.544-59.560Q76.749-59.700 76.865-59.926Q76.982-60.151 76.982-60.401L76.982-61.604Q76.982-61.874 76.874-61.935Q76.766-61.997 76.455-61.997L76.455-62.277L77.563-62.352L77.563-59.939Q77.563-59.748 77.616-59.666Q77.669-59.584 77.769-59.565Q77.870-59.546 78.086-59.546L78.086-59.266L77.009-59.198L77.009-59.762Q76.900-59.580 76.754-59.457Q76.609-59.334 76.423-59.266Q76.236-59.198 76.035-59.198Q74.832-59.198 74.832-60.100M78.673-60.777Q78.673-61.105 78.808-61.406Q78.943-61.706 79.179-61.927Q79.415-62.147 79.719-62.267Q80.024-62.387 80.348-62.387Q80.854-62.387 81.203-62.284Q81.551-62.182 81.551-61.806Q81.551-61.659 81.454-61.558Q81.357-61.457 81.210-61.457Q81.056-61.457 80.957-61.556Q80.858-61.655 80.858-61.806Q80.858-61.994 80.998-62.086Q80.796-62.137 80.355-62.137Q80-62.137 79.771-61.941Q79.542-61.744 79.441-61.435Q79.340-61.125 79.340-60.777Q79.340-60.428 79.466-60.122Q79.593-59.816 79.848-59.632Q80.102-59.447 80.458-59.447Q80.680-59.447 80.864-59.531Q81.049-59.615 81.184-59.770Q81.319-59.926 81.377-60.134Q81.391-60.189 81.445-60.189L81.558-60.189Q81.589-60.189 81.611-60.165Q81.633-60.141 81.633-60.107L81.633-60.086Q81.548-59.799 81.360-59.601Q81.172-59.403 80.907-59.300Q80.642-59.198 80.348-59.198Q79.918-59.198 79.530-59.404Q79.142-59.611 78.908-59.974Q78.673-60.336 78.673-60.777M82.748-60.107L82.748-62.004L82.108-62.004L82.108-62.226Q82.426-62.226 82.643-62.436Q82.860-62.646 82.961-62.956Q83.062-63.265 83.062-63.573L83.329-63.573L83.329-62.284L84.405-62.284L84.405-62.004L83.329-62.004L83.329-60.120Q83.329-59.844 83.433-59.645Q83.537-59.447 83.797-59.447Q83.954-59.447 84.060-59.551Q84.166-59.656 84.216-59.809Q84.265-59.963 84.265-60.120L84.265-60.534L84.532-60.534L84.532-60.107Q84.532-59.881 84.433-59.671Q84.334-59.461 84.149-59.329Q83.964-59.198 83.735-59.198Q83.298-59.198 83.023-59.435Q82.748-59.673 82.748-60.107M86.959-59.266L85.407-59.266L85.407-59.546Q85.632-59.546 85.781-59.580Q85.930-59.615 85.930-59.755L85.930-61.604Q85.930-61.792 85.882-61.876Q85.834-61.959 85.737-61.978Q85.639-61.997 85.427-61.997L85.427-62.277L86.483-62.352L86.483-59.755Q86.483-59.615 86.615-59.580Q86.747-59.546 86.959-59.546L86.959-59.266M85.687-63.573Q85.687-63.744 85.810-63.863Q85.933-63.983 86.104-63.983Q86.272-63.983 86.395-63.863Q86.518-63.744 86.518-63.573Q86.518-63.398 86.395-63.275Q86.272-63.152 86.104-63.152Q85.933-63.152 85.810-63.275Q85.687-63.398 85.687-63.573M87.564-60.749Q87.564-61.091 87.699-61.390Q87.834-61.689 88.073-61.913Q88.312-62.137 88.630-62.262Q88.948-62.387 89.279-62.387Q89.724-62.387 90.124-62.171Q90.524-61.956 90.758-61.578Q90.992-61.201 90.992-60.749Q90.992-60.408 90.850-60.124Q90.708-59.840 90.464-59.633Q90.219-59.427 89.910-59.312Q89.601-59.198 89.279-59.198Q88.849-59.198 88.447-59.399Q88.046-59.601 87.805-59.953Q87.564-60.305 87.564-60.749M89.279-59.447Q89.881-59.447 90.105-59.825Q90.329-60.203 90.329-60.835Q90.329-61.447 90.095-61.806Q89.860-62.164 89.279-62.164Q88.227-62.164 88.227-60.835Q88.227-60.203 88.452-59.825Q88.678-59.447 89.279-59.447M93.268-59.266L91.634-59.266L91.634-59.546Q91.863-59.546 92.012-59.580Q92.161-59.615 92.161-59.755L92.161-61.604Q92.161-61.874 92.053-61.935Q91.945-61.997 91.634-61.997L91.634-62.277L92.694-62.352L92.694-61.703Q92.865-62.011 93.169-62.182Q93.473-62.352 93.818-62.352Q94.324-62.352 94.608-62.129Q94.892-61.905 94.892-61.409L94.892-59.755Q94.892-59.618 95.040-59.582Q95.189-59.546 95.415-59.546L95.415-59.266L93.784-59.266L93.784-59.546Q94.013-59.546 94.162-59.580Q94.311-59.615 94.311-59.755L94.311-61.395Q94.311-61.730 94.191-61.930Q94.071-62.130 93.757-62.130Q93.487-62.130 93.253-61.994Q93.019-61.857 92.880-61.623Q92.742-61.389 92.742-61.115L92.742-59.755Q92.742-59.618 92.892-59.582Q93.043-59.546 93.268-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M41.929-59.266L40.193-59.266L40.193-59.546Q40.422-59.546 40.571-59.580Q40.719-59.615 40.719-59.755L40.719-61.604Q40.719-61.874 40.612-61.935Q40.504-61.997 40.193-61.997L40.193-62.277L41.222-62.352L41.222-61.645Q41.352-61.953 41.594-62.152Q41.837-62.352 42.155-62.352Q42.374-62.352 42.545-62.228Q42.716-62.103 42.716-61.891Q42.716-61.754 42.616-61.655Q42.517-61.556 42.384-61.556Q42.247-61.556 42.148-61.655Q42.049-61.754 42.049-61.891Q42.049-62.031 42.148-62.130Q41.858-62.130 41.658-61.934Q41.458-61.737 41.365-61.443Q41.273-61.149 41.273-60.869L41.273-59.755Q41.273-59.546 41.929-59.546L41.929-59.266M43.259-60.801Q43.259-61.122 43.384-61.411Q43.509-61.700 43.734-61.923Q43.960-62.147 44.255-62.267Q44.551-62.387 44.869-62.387Q45.197-62.387 45.459-62.287Q45.720-62.188 45.896-62.006Q46.072-61.823 46.166-61.565Q46.260-61.307 46.260-60.975Q46.260-60.883 46.178-60.862L43.922-60.862L43.922-60.801Q43.922-60.213 44.206-59.830Q44.490-59.447 45.057-59.447Q45.378-59.447 45.646-59.640Q45.915-59.833 46.004-60.148Q46.011-60.189 46.086-60.203L46.178-60.203Q46.260-60.179 46.260-60.107Q46.260-60.100 46.253-60.073Q46.140-59.676 45.770-59.437Q45.399-59.198 44.975-59.198Q44.537-59.198 44.137-59.406Q43.738-59.615 43.498-59.982Q43.259-60.349 43.259-60.801M43.929-61.071L45.744-61.071Q45.744-61.348 45.646-61.600Q45.549-61.853 45.351-62.009Q45.153-62.164 44.869-62.164Q44.592-62.164 44.378-62.006Q44.165-61.847 44.047-61.592Q43.929-61.337 43.929-61.071M46.906-59.994Q46.906-60.326 47.130-60.553Q47.354-60.780 47.697-60.908Q48.041-61.037 48.413-61.089Q48.786-61.142 49.090-61.142L49.090-61.395Q49.090-61.600 48.982-61.780Q48.875-61.959 48.694-62.062Q48.512-62.164 48.304-62.164Q47.897-62.164 47.661-62.072Q47.750-62.035 47.796-61.951Q47.843-61.867 47.843-61.765Q47.843-61.669 47.796-61.590Q47.750-61.512 47.670-61.467Q47.590-61.423 47.501-61.423Q47.350-61.423 47.250-61.520Q47.149-61.618 47.149-61.765Q47.149-62.387 48.304-62.387Q48.516-62.387 48.765-62.323Q49.015-62.260 49.217-62.141Q49.418-62.021 49.545-61.836Q49.671-61.652 49.671-61.409L49.671-59.833Q49.671-59.717 49.733-59.621Q49.794-59.526 49.907-59.526Q50.016-59.526 50.081-59.620Q50.146-59.714 50.146-59.833L50.146-60.281L50.413-60.281L50.413-59.833Q50.413-59.563 50.186-59.398Q49.958-59.232 49.678-59.232Q49.469-59.232 49.333-59.386Q49.196-59.539 49.172-59.755Q49.025-59.488 48.743-59.343Q48.461-59.198 48.136-59.198Q47.860-59.198 47.576-59.273Q47.292-59.348 47.099-59.527Q46.906-59.707 46.906-59.994M47.521-59.994Q47.521-59.820 47.622-59.690Q47.723-59.560 47.878-59.490Q48.034-59.420 48.198-59.420Q48.417-59.420 48.625-59.517Q48.834-59.615 48.962-59.796Q49.090-59.977 49.090-60.203L49.090-60.931Q48.765-60.931 48.400-60.840Q48.034-60.749 47.778-60.537Q47.521-60.326 47.521-59.994M50.830-60.777Q50.830-61.115 50.970-61.406Q51.110-61.696 51.355-61.910Q51.599-62.123 51.903-62.238Q52.207-62.352 52.532-62.352Q52.802-62.352 53.065-62.253Q53.328-62.154 53.520-61.976L53.520-63.374Q53.520-63.644 53.412-63.706Q53.304-63.767 52.993-63.767L52.993-64.048L54.070-64.123L54.070-59.939Q54.070-59.751 54.125-59.668Q54.179-59.584 54.280-59.565Q54.381-59.546 54.596-59.546L54.596-59.266L53.489-59.198L53.489-59.615Q53.072-59.198 52.447-59.198Q52.016-59.198 51.643-59.410Q51.271-59.621 51.050-59.982Q50.830-60.343 50.830-60.777M52.505-59.420Q52.713-59.420 52.899-59.492Q53.086-59.563 53.240-59.700Q53.393-59.837 53.489-60.015L53.489-61.624Q53.404-61.771 53.258-61.891Q53.113-62.011 52.944-62.070Q52.775-62.130 52.594-62.130Q52.033-62.130 51.765-61.741Q51.496-61.351 51.496-60.770Q51.496-60.199 51.730-59.809Q51.965-59.420 52.505-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M58.764-59.266L58.497-59.266L58.497-63.374Q58.497-63.644 58.390-63.706Q58.282-63.767 57.971-63.767L57.971-64.048L59.051-64.123L59.051-61.953Q59.260-62.144 59.545-62.248Q59.831-62.352 60.128-62.352Q60.446-62.352 60.743-62.231Q61.040-62.110 61.263-61.894Q61.485-61.679 61.611-61.394Q61.738-61.108 61.738-60.777Q61.738-60.332 61.498-59.968Q61.259-59.604 60.866-59.401Q60.473-59.198 60.029-59.198Q59.834-59.198 59.644-59.254Q59.455-59.310 59.294-59.415Q59.133-59.519 58.993-59.680L58.764-59.266M59.079-61.611L59.079-59.994Q59.215-59.734 59.456-59.577Q59.697-59.420 59.974-59.420Q60.268-59.420 60.480-59.527Q60.692-59.635 60.825-59.827Q60.958-60.018 61.017-60.257Q61.075-60.496 61.075-60.777Q61.075-61.136 60.981-61.440Q60.887-61.744 60.659-61.937Q60.432-62.130 60.066-62.130Q59.766-62.130 59.499-61.994Q59.232-61.857 59.079-61.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M62.493-58.131Q62.623-58.063 62.760-58.063Q62.931-58.063 63.081-58.152Q63.232-58.241 63.343-58.386Q63.454-58.531 63.532-58.699L63.796-59.266L62.627-61.792Q62.552-61.939 62.422-61.971Q62.292-62.004 62.059-62.004L62.059-62.284L63.580-62.284L63.580-62.004Q63.232-62.004 63.232-61.857Q63.235-61.836 63.237-61.819Q63.239-61.802 63.239-61.792L64.096-59.933L64.869-61.604Q64.903-61.672 64.903-61.751Q64.903-61.864 64.819-61.934Q64.736-62.004 64.623-62.004L64.623-62.284L65.819-62.284L65.819-62.004Q65.600-62.004 65.428-61.900Q65.255-61.795 65.163-61.604L63.826-58.699Q63.656-58.329 63.386-58.083Q63.115-57.837 62.760-57.837Q62.490-57.837 62.271-58.003Q62.052-58.169 62.052-58.432Q62.052-58.569 62.145-58.658Q62.237-58.746 62.377-58.746Q62.514-58.746 62.603-58.658Q62.692-58.569 62.692-58.432Q62.692-58.329 62.639-58.251Q62.586-58.172 62.493-58.131M66.886-60.107L66.886-62.004L66.246-62.004L66.246-62.226Q66.564-62.226 66.781-62.436Q66.998-62.646 67.099-62.956Q67.200-63.265 67.200-63.573L67.467-63.573L67.467-62.284L68.543-62.284L68.543-62.004L67.467-62.004L67.467-60.120Q67.467-59.844 67.571-59.645Q67.675-59.447 67.935-59.447Q68.092-59.447 68.198-59.551Q68.304-59.656 68.354-59.809Q68.403-59.963 68.403-60.120L68.403-60.534L68.670-60.534L68.670-60.107Q68.670-59.881 68.571-59.671Q68.471-59.461 68.287-59.329Q68.102-59.198 67.873-59.198Q67.436-59.198 67.161-59.435Q66.886-59.673 66.886-60.107M69.439-60.801Q69.439-61.122 69.563-61.411Q69.688-61.700 69.914-61.923Q70.139-62.147 70.435-62.267Q70.731-62.387 71.049-62.387Q71.377-62.387 71.638-62.287Q71.900-62.188 72.076-62.006Q72.252-61.823 72.346-61.565Q72.440-61.307 72.440-60.975Q72.440-60.883 72.358-60.862L70.102-60.862L70.102-60.801Q70.102-60.213 70.386-59.830Q70.669-59.447 71.237-59.447Q71.558-59.447 71.826-59.640Q72.094-59.833 72.183-60.148Q72.190-60.189 72.265-60.203L72.358-60.203Q72.440-60.179 72.440-60.107Q72.440-60.100 72.433-60.073Q72.320-59.676 71.949-59.437Q71.578-59.198 71.155-59.198Q70.717-59.198 70.317-59.406Q69.917-59.615 69.678-59.982Q69.439-60.349 69.439-60.801M70.109-61.071L71.924-61.071Q71.924-61.348 71.826-61.600Q71.729-61.853 71.531-62.009Q71.332-62.164 71.049-62.164Q70.772-62.164 70.558-62.006Q70.344-61.847 70.227-61.592Q70.109-61.337 70.109-61.071M73.028-59.273L73.028-60.336Q73.028-60.360 73.055-60.387Q73.082-60.414 73.106-60.414L73.216-60.414Q73.281-60.414 73.294-60.356Q73.390-59.922 73.636-59.671Q73.882-59.420 74.296-59.420Q74.637-59.420 74.890-59.553Q75.143-59.686 75.143-59.994Q75.143-60.151 75.049-60.266Q74.955-60.380 74.817-60.449Q74.678-60.517 74.511-60.555L73.930-60.654Q73.574-60.722 73.301-60.943Q73.028-61.163 73.028-61.505Q73.028-61.754 73.139-61.929Q73.250-62.103 73.436-62.202Q73.622-62.301 73.838-62.344Q74.053-62.387 74.296-62.387Q74.709-62.387 74.990-62.205L75.205-62.380Q75.215-62.383 75.222-62.385Q75.229-62.387 75.239-62.387L75.290-62.387Q75.318-62.387 75.342-62.363Q75.365-62.339 75.365-62.311L75.365-61.464Q75.365-61.443 75.342-61.416Q75.318-61.389 75.290-61.389L75.177-61.389Q75.150-61.389 75.125-61.414Q75.099-61.440 75.099-61.464Q75.099-61.700 74.993-61.864Q74.887-62.028 74.704-62.110Q74.521-62.192 74.289-62.192Q73.961-62.192 73.704-62.089Q73.448-61.987 73.448-61.710Q73.448-61.515 73.631-61.406Q73.814-61.296 74.043-61.255L74.617-61.149Q74.863-61.101 75.077-60.973Q75.290-60.845 75.427-60.642Q75.564-60.438 75.564-60.189Q75.564-59.676 75.198-59.437Q74.832-59.198 74.296-59.198Q73.800-59.198 73.469-59.492L73.202-59.218Q73.181-59.198 73.154-59.198L73.106-59.198Q73.082-59.198 73.055-59.225Q73.028-59.252 73.028-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M78.962-59.994Q78.962-60.326 79.185-60.553Q79.409-60.780 79.753-60.908Q80.096-61.037 80.469-61.089Q80.841-61.142 81.146-61.142L81.146-61.395Q81.146-61.600 81.038-61.780Q80.930-61.959 80.749-62.062Q80.568-62.164 80.360-62.164Q79.953-62.164 79.717-62.072Q79.806-62.035 79.852-61.951Q79.898-61.867 79.898-61.765Q79.898-61.669 79.852-61.590Q79.806-61.512 79.725-61.467Q79.645-61.423 79.556-61.423Q79.406-61.423 79.305-61.520Q79.204-61.618 79.204-61.765Q79.204-62.387 80.360-62.387Q80.571-62.387 80.821-62.323Q81.070-62.260 81.272-62.141Q81.474-62.021 81.600-61.836Q81.727-61.652 81.727-61.409L81.727-59.833Q81.727-59.717 81.788-59.621Q81.850-59.526 81.963-59.526Q82.072-59.526 82.137-59.620Q82.202-59.714 82.202-59.833L82.202-60.281L82.468-60.281L82.468-59.833Q82.468-59.563 82.241-59.398Q82.014-59.232 81.734-59.232Q81.525-59.232 81.388-59.386Q81.252-59.539 81.228-59.755Q81.081-59.488 80.799-59.343Q80.517-59.198 80.192-59.198Q79.915-59.198 79.631-59.273Q79.348-59.348 79.155-59.527Q78.962-59.707 78.962-59.994M79.577-59.994Q79.577-59.820 79.678-59.690Q79.778-59.560 79.934-59.490Q80.089-59.420 80.254-59.420Q80.472-59.420 80.681-59.517Q80.889-59.615 81.017-59.796Q81.146-59.977 81.146-60.203L81.146-60.931Q80.821-60.931 80.455-60.840Q80.089-60.749 79.833-60.537Q79.577-60.326 79.577-59.994M83.412-60.107L83.412-62.004L82.773-62.004L82.773-62.226Q83.090-62.226 83.308-62.436Q83.525-62.646 83.625-62.956Q83.726-63.265 83.726-63.573L83.993-63.573L83.993-62.284L85.069-62.284L85.069-62.004L83.993-62.004L83.993-60.120Q83.993-59.844 84.097-59.645Q84.201-59.447 84.461-59.447Q84.618-59.447 84.724-59.551Q84.830-59.656 84.880-59.809Q84.929-59.963 84.929-60.120L84.929-60.534L85.196-60.534L85.196-60.107Q85.196-59.881 85.097-59.671Q84.998-59.461 84.813-59.329Q84.629-59.198 84.400-59.198Q83.962-59.198 83.687-59.435Q83.412-59.673 83.412-60.107\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M90.921-59.266L88.788-59.266L88.788-59.546Q89.509-59.546 89.509-59.755L89.509-63.556Q89.509-63.767 88.788-63.767L88.788-64.048L91.454-64.048Q91.864-64.048 92.285-63.894Q92.705-63.740 92.989-63.436Q93.272-63.132 93.272-62.718Q93.272-62.400 93.105-62.154Q92.937-61.908 92.661-61.742Q92.384-61.577 92.062-61.493Q91.741-61.409 91.454-61.409L90.200-61.409L90.200-59.755Q90.200-59.546 90.921-59.546L90.921-59.266M90.172-63.556L90.172-61.659L91.259-61.659Q91.868-61.659 92.182-61.896Q92.497-62.134 92.497-62.718Q92.497-63.111 92.351-63.345Q92.206-63.579 91.934-63.673Q91.663-63.767 91.259-63.767L90.538-63.767Q90.350-63.767 90.261-63.733Q90.172-63.699 90.172-63.556M94.253-61.659Q94.253-62.185 94.470-62.653Q94.687-63.121 95.070-63.467Q95.453-63.812 95.937-64Q96.420-64.188 96.950-64.188Q97.353-64.188 97.718-64.031Q98.082-63.873 98.365-63.579L98.789-64.161Q98.823-64.188 98.847-64.188L98.895-64.188Q98.926-64.188 98.950-64.164Q98.974-64.140 98.974-64.109L98.974-62.246Q98.974-62.223 98.948-62.197Q98.922-62.171 98.895-62.171L98.769-62.171Q98.707-62.171 98.693-62.246Q98.663-62.561 98.528-62.865Q98.393-63.169 98.177-63.403Q97.962-63.638 97.673-63.773Q97.384-63.908 97.056-63.908Q96.414-63.908 95.956-63.614Q95.498-63.320 95.265-62.807Q95.033-62.294 95.033-61.659Q95.033-61.187 95.163-60.778Q95.292-60.370 95.552-60.057Q95.812-59.745 96.191-59.575Q96.571-59.406 97.063-59.406Q97.391-59.406 97.685-59.522Q97.979-59.639 98.213-59.854Q98.447-60.069 98.577-60.358Q98.707-60.647 98.707-60.975Q98.707-61.002 98.734-61.026Q98.762-61.050 98.782-61.050L98.895-61.050Q98.933-61.050 98.953-61.025Q98.974-60.999 98.974-60.961Q98.974-60.565 98.808-60.228Q98.642-59.891 98.355-59.644Q98.068-59.396 97.699-59.261Q97.330-59.126 96.950-59.126Q96.431-59.126 95.938-59.316Q95.446-59.505 95.067-59.849Q94.687-60.192 94.470-60.661Q94.253-61.129 94.253-61.659M100.283-58.036Q100.283-58.070 100.303-58.090Q100.542-58.329 100.677-58.656Q100.812-58.982 100.812-59.314Q100.727-59.266 100.604-59.266Q100.423-59.266 100.303-59.386Q100.184-59.505 100.184-59.686Q100.184-59.861 100.303-59.980Q100.423-60.100 100.604-60.100Q100.775-60.100 100.872-59.977Q100.970-59.854 101.004-59.678Q101.038-59.502 101.038-59.328Q101.038-58.945 100.891-58.581Q100.744-58.217 100.471-57.936Q100.443-57.909 100.406-57.909Q100.365-57.909 100.324-57.950Q100.283-57.991 100.283-58.036M100.184-61.870Q100.184-62.038 100.307-62.161Q100.430-62.284 100.604-62.284Q100.771-62.284 100.895-62.161Q101.018-62.038 101.018-61.870Q101.018-61.696 100.895-61.573Q100.771-61.450 100.604-61.450Q100.430-61.450 100.307-61.573Q100.184-61.696 100.184-61.870\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M104.750-60.777Q104.750-61.105 104.885-61.406Q105.020-61.706 105.256-61.927Q105.492-62.147 105.796-62.267Q106.101-62.387 106.425-62.387Q106.931-62.387 107.280-62.284Q107.628-62.182 107.628-61.806Q107.628-61.659 107.531-61.558Q107.434-61.457 107.287-61.457Q107.133-61.457 107.034-61.556Q106.935-61.655 106.935-61.806Q106.935-61.994 107.075-62.086Q106.873-62.137 106.432-62.137Q106.077-62.137 105.848-61.941Q105.619-61.744 105.518-61.435Q105.417-61.125 105.417-60.777Q105.417-60.428 105.543-60.122Q105.670-59.816 105.925-59.632Q106.179-59.447 106.535-59.447Q106.757-59.447 106.941-59.531Q107.126-59.615 107.261-59.770Q107.396-59.926 107.454-60.134Q107.468-60.189 107.522-60.189L107.635-60.189Q107.666-60.189 107.688-60.165Q107.710-60.141 107.710-60.107L107.710-60.086Q107.625-59.799 107.437-59.601Q107.249-59.403 106.984-59.300Q106.719-59.198 106.425-59.198Q105.995-59.198 105.607-59.404Q105.219-59.611 104.985-59.974Q104.750-60.336 104.750-60.777M108.257-60.749Q108.257-61.091 108.392-61.390Q108.527-61.689 108.767-61.913Q109.006-62.137 109.324-62.262Q109.642-62.387 109.973-62.387Q110.417-62.387 110.817-62.171Q111.217-61.956 111.451-61.578Q111.686-61.201 111.686-60.749Q111.686-60.408 111.544-60.124Q111.402-59.840 111.157-59.633Q110.913-59.427 110.604-59.312Q110.294-59.198 109.973-59.198Q109.542-59.198 109.141-59.399Q108.739-59.601 108.498-59.953Q108.257-60.305 108.257-60.749M109.973-59.447Q110.575-59.447 110.799-59.825Q111.022-60.203 111.022-60.835Q111.022-61.447 110.788-61.806Q110.554-62.164 109.973-62.164Q108.920-62.164 108.920-60.835Q108.920-60.203 109.146-59.825Q109.372-59.447 109.973-59.447M113.962-59.266L112.328-59.266L112.328-59.546Q112.557-59.546 112.706-59.580Q112.854-59.615 112.854-59.755L112.854-61.604Q112.854-61.874 112.747-61.935Q112.639-61.997 112.328-61.997L112.328-62.277L113.388-62.352L113.388-61.703Q113.559-62.011 113.863-62.182Q114.167-62.352 114.512-62.352Q114.912-62.352 115.189-62.212Q115.466-62.072 115.551-61.724Q115.719-62.017 116.018-62.185Q116.317-62.352 116.662-62.352Q117.168-62.352 117.452-62.129Q117.735-61.905 117.735-61.409L117.735-59.755Q117.735-59.618 117.884-59.582Q118.033-59.546 118.258-59.546L118.258-59.266L116.628-59.266L116.628-59.546Q116.853-59.546 117.004-59.582Q117.154-59.618 117.154-59.755L117.154-61.395Q117.154-61.730 117.035-61.930Q116.915-62.130 116.601-62.130Q116.331-62.130 116.096-61.994Q115.862-61.857 115.724-61.623Q115.585-61.389 115.585-61.115L115.585-59.755Q115.585-59.618 115.734-59.582Q115.883-59.546 116.108-59.546L116.108-59.266L114.478-59.266L114.478-59.546Q114.707-59.546 114.856-59.580Q115.004-59.615 115.004-59.755L115.004-61.395Q115.004-61.730 114.885-61.930Q114.765-62.130 114.451-62.130Q114.181-62.130 113.946-61.994Q113.712-61.857 113.574-61.623Q113.436-61.389 113.436-61.115L113.436-59.755Q113.436-59.618 113.586-59.582Q113.736-59.546 113.962-59.546L113.962-59.266M120.490-57.909L118.860-57.909L118.860-58.189Q119.089-58.189 119.238-58.224Q119.386-58.258 119.386-58.398L119.386-61.744Q119.386-61.915 119.249-61.956Q119.113-61.997 118.860-61.997L118.860-62.277L119.940-62.352L119.940-61.946Q120.162-62.147 120.449-62.250Q120.736-62.352 121.044-62.352Q121.471-62.352 121.835-62.139Q122.199-61.925 122.413-61.561Q122.626-61.197 122.626-60.777Q122.626-60.332 122.387-59.968Q122.148-59.604 121.755-59.401Q121.362-59.198 120.917-59.198Q120.651-59.198 120.403-59.298Q120.155-59.399 119.967-59.580L119.967-58.398Q119.967-58.261 120.116-58.225Q120.265-58.189 120.490-58.189L120.490-57.909M119.967-61.597L119.967-59.987Q120.101-59.734 120.343-59.577Q120.586-59.420 120.863-59.420Q121.191-59.420 121.444-59.621Q121.697-59.823 121.830-60.141Q121.963-60.459 121.963-60.777Q121.963-61.006 121.898-61.235Q121.833-61.464 121.705-61.662Q121.577-61.860 121.382-61.980Q121.187-62.099 120.955-62.099Q120.661-62.099 120.393-61.970Q120.124-61.840 119.967-61.597M123.836-60.100L123.836-61.604Q123.836-61.874 123.729-61.935Q123.621-61.997 123.310-61.997L123.310-62.277L124.417-62.352L124.417-60.120L124.417-60.100Q124.417-59.820 124.469-59.676Q124.520-59.533 124.662-59.476Q124.804-59.420 125.091-59.420Q125.344-59.420 125.549-59.560Q125.754-59.700 125.870-59.926Q125.986-60.151 125.986-60.401L125.986-61.604Q125.986-61.874 125.879-61.935Q125.771-61.997 125.460-61.997L125.460-62.277L126.567-62.352L126.567-59.939Q126.567-59.748 126.620-59.666Q126.673-59.584 126.774-59.565Q126.875-59.546 127.090-59.546L127.090-59.266L126.014-59.198L126.014-59.762Q125.904-59.580 125.759-59.457Q125.614-59.334 125.427-59.266Q125.241-59.198 125.040-59.198Q123.836-59.198 123.836-60.100M128.205-60.107L128.205-62.004L127.565-62.004L127.565-62.226Q127.883-62.226 128.100-62.436Q128.317-62.646 128.418-62.956Q128.519-63.265 128.519-63.573L128.786-63.573L128.786-62.284L129.862-62.284L129.862-62.004L128.786-62.004L128.786-60.120Q128.786-59.844 128.890-59.645Q128.994-59.447 129.254-59.447Q129.411-59.447 129.517-59.551Q129.623-59.656 129.673-59.809Q129.722-59.963 129.722-60.120L129.722-60.534L129.989-60.534L129.989-60.107Q129.989-59.881 129.890-59.671Q129.790-59.461 129.606-59.329Q129.421-59.198 129.192-59.198Q128.755-59.198 128.480-59.435Q128.205-59.673 128.205-60.107M130.758-60.801Q130.758-61.122 130.883-61.411Q131.007-61.700 131.233-61.923Q131.458-62.147 131.754-62.267Q132.050-62.387 132.368-62.387Q132.696-62.387 132.957-62.287Q133.219-62.188 133.395-62.006Q133.571-61.823 133.665-61.565Q133.759-61.307 133.759-60.975Q133.759-60.883 133.677-60.862L131.421-60.862L131.421-60.801Q131.421-60.213 131.705-59.830Q131.988-59.447 132.556-59.447Q132.877-59.447 133.145-59.640Q133.414-59.833 133.502-60.148Q133.509-60.189 133.584-60.203L133.677-60.203Q133.759-60.179 133.759-60.107Q133.759-60.100 133.752-60.073Q133.639-59.676 133.268-59.437Q132.897-59.198 132.474-59.198Q132.036-59.198 131.636-59.406Q131.236-59.615 130.997-59.982Q130.758-60.349 130.758-60.801M131.428-61.071L133.243-61.071Q133.243-61.348 133.145-61.600Q133.048-61.853 132.850-62.009Q132.651-62.164 132.368-62.164Q132.091-62.164 131.877-62.006Q131.664-61.847 131.546-61.592Q131.428-61.337 131.428-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M138.660-59.293L137.532-61.792Q137.460-61.939 137.330-61.971Q137.200-62.004 136.971-62.004L136.971-62.284L138.485-62.284L138.485-62.004Q138.133-62.004 138.133-61.857Q138.133-61.812 138.144-61.792L139.008-59.874L139.788-61.604Q139.822-61.672 139.822-61.751Q139.822-61.864 139.738-61.934Q139.654-62.004 139.535-62.004L139.535-62.284L140.731-62.284L140.731-62.004Q140.512-62.004 140.341-61.901Q140.171-61.799 140.082-61.604L139.046-59.293Q138.998-59.198 138.892-59.198L138.814-59.198Q138.708-59.198 138.660-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 1.75)\">\u003Cpath d=\"M140.900-59.994Q140.900-60.326 141.123-60.553Q141.347-60.780 141.691-60.908Q142.034-61.037 142.407-61.089Q142.779-61.142 143.084-61.142L143.084-61.395Q143.084-61.600 142.976-61.780Q142.868-61.959 142.687-62.062Q142.506-62.164 142.298-62.164Q141.891-62.164 141.655-62.072Q141.744-62.035 141.790-61.951Q141.836-61.867 141.836-61.765Q141.836-61.669 141.790-61.590Q141.744-61.512 141.663-61.467Q141.583-61.423 141.494-61.423Q141.344-61.423 141.243-61.520Q141.142-61.618 141.142-61.765Q141.142-62.387 142.298-62.387Q142.509-62.387 142.759-62.323Q143.008-62.260 143.210-62.141Q143.412-62.021 143.538-61.836Q143.665-61.652 143.665-61.409L143.665-59.833Q143.665-59.717 143.726-59.621Q143.788-59.526 143.901-59.526Q144.010-59.526 144.075-59.620Q144.140-59.714 144.140-59.833L144.140-60.281L144.406-60.281L144.406-59.833Q144.406-59.563 144.179-59.398Q143.952-59.232 143.672-59.232Q143.463-59.232 143.326-59.386Q143.190-59.539 143.166-59.755Q143.019-59.488 142.737-59.343Q142.455-59.198 142.130-59.198Q141.853-59.198 141.569-59.273Q141.286-59.348 141.093-59.527Q140.900-59.707 140.900-59.994M141.515-59.994Q141.515-59.820 141.616-59.690Q141.716-59.560 141.872-59.490Q142.027-59.420 142.192-59.420Q142.410-59.420 142.619-59.517Q142.827-59.615 142.955-59.796Q143.084-59.977 143.084-60.203L143.084-60.931Q142.759-60.931 142.393-60.840Q142.027-60.749 141.771-60.537Q141.515-60.326 141.515-59.994M146.491-59.266L144.888-59.266L144.888-59.546Q145.114-59.546 145.263-59.580Q145.411-59.615 145.411-59.755L145.411-63.374Q145.411-63.644 145.304-63.706Q145.196-63.767 144.888-63.767L144.888-64.048L145.965-64.123L145.965-59.755Q145.965-59.618 146.115-59.582Q146.266-59.546 146.491-59.546L146.491-59.266M149.298-59.266L147.165-59.266L147.165-59.546Q147.886-59.546 147.886-59.755L147.886-63.556Q147.886-63.767 147.165-63.767L147.165-64.048L149.831-64.048Q150.241-64.048 150.661-63.894Q151.082-63.740 151.365-63.436Q151.649-63.132 151.649-62.718Q151.649-62.400 151.482-62.154Q151.314-61.908 151.037-61.742Q150.760-61.577 150.439-61.493Q150.118-61.409 149.831-61.409L148.576-61.409L148.576-59.755Q148.576-59.546 149.298-59.546L149.298-59.266M148.549-63.556L148.549-61.659L149.636-61.659Q150.244-61.659 150.559-61.896Q150.873-62.134 150.873-62.718Q150.873-63.111 150.728-63.345Q150.583-63.579 150.311-63.673Q150.039-63.767 149.636-63.767L148.915-63.767Q148.727-63.767 148.638-63.733Q148.549-63.699 148.549-63.556\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M41.929-59.266L40.193-59.266L40.193-59.546Q40.422-59.546 40.571-59.580Q40.719-59.615 40.719-59.755L40.719-61.604Q40.719-61.874 40.612-61.935Q40.504-61.997 40.193-61.997L40.193-62.277L41.222-62.352L41.222-61.645Q41.352-61.953 41.594-62.152Q41.837-62.352 42.155-62.352Q42.374-62.352 42.545-62.228Q42.716-62.103 42.716-61.891Q42.716-61.754 42.616-61.655Q42.517-61.556 42.384-61.556Q42.247-61.556 42.148-61.655Q42.049-61.754 42.049-61.891Q42.049-62.031 42.148-62.130Q41.858-62.130 41.658-61.934Q41.458-61.737 41.365-61.443Q41.273-61.149 41.273-60.869L41.273-59.755Q41.273-59.546 41.929-59.546L41.929-59.266M43.259-60.801Q43.259-61.122 43.384-61.411Q43.509-61.700 43.734-61.923Q43.960-62.147 44.255-62.267Q44.551-62.387 44.869-62.387Q45.197-62.387 45.459-62.287Q45.720-62.188 45.896-62.006Q46.072-61.823 46.166-61.565Q46.260-61.307 46.260-60.975Q46.260-60.883 46.178-60.862L43.922-60.862L43.922-60.801Q43.922-60.213 44.206-59.830Q44.490-59.447 45.057-59.447Q45.378-59.447 45.646-59.640Q45.915-59.833 46.004-60.148Q46.011-60.189 46.086-60.203L46.178-60.203Q46.260-60.179 46.260-60.107Q46.260-60.100 46.253-60.073Q46.140-59.676 45.770-59.437Q45.399-59.198 44.975-59.198Q44.537-59.198 44.137-59.406Q43.738-59.615 43.498-59.982Q43.259-60.349 43.259-60.801M43.929-61.071L45.744-61.071Q45.744-61.348 45.646-61.600Q45.549-61.853 45.351-62.009Q45.153-62.164 44.869-62.164Q44.592-62.164 44.378-62.006Q44.165-61.847 44.047-61.592Q43.929-61.337 43.929-61.071M46.906-59.994Q46.906-60.326 47.130-60.553Q47.354-60.780 47.697-60.908Q48.041-61.037 48.413-61.089Q48.786-61.142 49.090-61.142L49.090-61.395Q49.090-61.600 48.982-61.780Q48.875-61.959 48.694-62.062Q48.512-62.164 48.304-62.164Q47.897-62.164 47.661-62.072Q47.750-62.035 47.796-61.951Q47.843-61.867 47.843-61.765Q47.843-61.669 47.796-61.590Q47.750-61.512 47.670-61.467Q47.590-61.423 47.501-61.423Q47.350-61.423 47.250-61.520Q47.149-61.618 47.149-61.765Q47.149-62.387 48.304-62.387Q48.516-62.387 48.765-62.323Q49.015-62.260 49.217-62.141Q49.418-62.021 49.545-61.836Q49.671-61.652 49.671-61.409L49.671-59.833Q49.671-59.717 49.733-59.621Q49.794-59.526 49.907-59.526Q50.016-59.526 50.081-59.620Q50.146-59.714 50.146-59.833L50.146-60.281L50.413-60.281L50.413-59.833Q50.413-59.563 50.186-59.398Q49.958-59.232 49.678-59.232Q49.469-59.232 49.333-59.386Q49.196-59.539 49.172-59.755Q49.025-59.488 48.743-59.343Q48.461-59.198 48.136-59.198Q47.860-59.198 47.576-59.273Q47.292-59.348 47.099-59.527Q46.906-59.707 46.906-59.994M47.521-59.994Q47.521-59.820 47.622-59.690Q47.723-59.560 47.878-59.490Q48.034-59.420 48.198-59.420Q48.417-59.420 48.625-59.517Q48.834-59.615 48.962-59.796Q49.090-59.977 49.090-60.203L49.090-60.931Q48.765-60.931 48.400-60.840Q48.034-60.749 47.778-60.537Q47.521-60.326 47.521-59.994M50.830-60.777Q50.830-61.115 50.970-61.406Q51.110-61.696 51.355-61.910Q51.599-62.123 51.903-62.238Q52.207-62.352 52.532-62.352Q52.802-62.352 53.065-62.253Q53.328-62.154 53.520-61.976L53.520-63.374Q53.520-63.644 53.412-63.706Q53.304-63.767 52.993-63.767L52.993-64.048L54.070-64.123L54.070-59.939Q54.070-59.751 54.125-59.668Q54.179-59.584 54.280-59.565Q54.381-59.546 54.596-59.546L54.596-59.266L53.489-59.198L53.489-59.615Q53.072-59.198 52.447-59.198Q52.016-59.198 51.643-59.410Q51.271-59.621 51.050-59.982Q50.830-60.343 50.830-60.777M52.505-59.420Q52.713-59.420 52.899-59.492Q53.086-59.563 53.240-59.700Q53.393-59.837 53.489-60.015L53.489-61.624Q53.404-61.771 53.258-61.891Q53.113-62.011 52.944-62.070Q52.775-62.130 52.594-62.130Q52.033-62.130 51.765-61.741Q51.496-61.351 51.496-60.770Q51.496-60.199 51.730-59.809Q51.965-59.420 52.505-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M59.707-59.266L57.971-59.266L57.971-59.546Q58.200-59.546 58.349-59.580Q58.497-59.615 58.497-59.755L58.497-61.604Q58.497-61.874 58.390-61.935Q58.282-61.997 57.971-61.997L57.971-62.277L59-62.352L59-61.645Q59.130-61.953 59.372-62.152Q59.615-62.352 59.933-62.352Q60.152-62.352 60.323-62.228Q60.494-62.103 60.494-61.891Q60.494-61.754 60.394-61.655Q60.295-61.556 60.162-61.556Q60.025-61.556 59.926-61.655Q59.827-61.754 59.827-61.891Q59.827-62.031 59.926-62.130Q59.636-62.130 59.436-61.934Q59.236-61.737 59.143-61.443Q59.051-61.149 59.051-60.869L59.051-59.755Q59.051-59.546 59.707-59.546L59.707-59.266M61.037-60.801Q61.037-61.122 61.162-61.411Q61.287-61.700 61.512-61.923Q61.738-62.147 62.033-62.267Q62.329-62.387 62.647-62.387Q62.975-62.387 63.237-62.287Q63.498-62.188 63.674-62.006Q63.850-61.823 63.944-61.565Q64.038-61.307 64.038-60.975Q64.038-60.883 63.956-60.862L61.700-60.862L61.700-60.801Q61.700-60.213 61.984-59.830Q62.268-59.447 62.835-59.447Q63.156-59.447 63.424-59.640Q63.693-59.833 63.782-60.148Q63.789-60.189 63.864-60.203L63.956-60.203Q64.038-60.179 64.038-60.107Q64.038-60.100 64.031-60.073Q63.918-59.676 63.548-59.437Q63.177-59.198 62.753-59.198Q62.315-59.198 61.915-59.406Q61.516-59.615 61.276-59.982Q61.037-60.349 61.037-60.801M61.707-61.071L63.522-61.071Q63.522-61.348 63.424-61.600Q63.327-61.853 63.129-62.009Q62.931-62.164 62.647-62.164Q62.370-62.164 62.156-62.006Q61.943-61.847 61.825-61.592Q61.707-61.337 61.707-61.071M64.585-58.733Q64.585-58.979 64.781-59.163Q64.978-59.348 65.234-59.427Q65.098-59.539 65.026-59.700Q64.954-59.861 64.954-60.042Q64.954-60.363 65.166-60.609Q64.831-60.907 64.831-61.317Q64.831-61.778 65.221-62.065Q65.610-62.352 66.089-62.352Q66.560-62.352 66.895-62.106Q67.070-62.260 67.280-62.342Q67.490-62.424 67.719-62.424Q67.883-62.424 68.005-62.317Q68.126-62.209 68.126-62.045Q68.126-61.949 68.054-61.877Q67.982-61.806 67.890-61.806Q67.791-61.806 67.721-61.879Q67.651-61.953 67.651-62.052Q67.651-62.106 67.664-62.137L67.671-62.151Q67.678-62.171 67.687-62.182Q67.695-62.192 67.699-62.199Q67.343-62.199 67.056-61.976Q67.343-61.683 67.343-61.317Q67.343-61.002 67.159-60.770Q66.974-60.537 66.685-60.409Q66.396-60.281 66.089-60.281Q65.887-60.281 65.696-60.331Q65.504-60.380 65.327-60.490Q65.234-60.363 65.234-60.220Q65.234-60.038 65.362-59.903Q65.491-59.768 65.675-59.768L66.308-59.768Q66.755-59.768 67.124-59.697Q67.494-59.625 67.753-59.396Q68.013-59.167 68.013-58.733Q68.013-58.412 67.717-58.210Q67.422-58.008 67.018-57.919Q66.615-57.830 66.301-57.830Q65.983-57.830 65.580-57.919Q65.176-58.008 64.881-58.210Q64.585-58.412 64.585-58.733M65.039-58.733Q65.039-58.504 65.258-58.355Q65.477-58.206 65.769-58.138Q66.061-58.070 66.301-58.070Q66.465-58.070 66.673-58.106Q66.882-58.141 67.089-58.222Q67.295-58.302 67.427-58.430Q67.559-58.558 67.559-58.733Q67.559-59.085 67.177-59.179Q66.796-59.273 66.294-59.273L65.675-59.273Q65.436-59.273 65.238-59.122Q65.039-58.972 65.039-58.733M66.089-60.520Q66.755-60.520 66.755-61.317Q66.755-62.117 66.089-62.117Q65.419-62.117 65.419-61.317Q65.419-60.520 66.089-60.520M70.225-59.266L68.673-59.266L68.673-59.546Q68.898-59.546 69.047-59.580Q69.196-59.615 69.196-59.755L69.196-61.604Q69.196-61.792 69.148-61.876Q69.100-61.959 69.003-61.978Q68.905-61.997 68.693-61.997L68.693-62.277L69.749-62.352L69.749-59.755Q69.749-59.615 69.881-59.580Q70.013-59.546 70.225-59.546L70.225-59.266M68.953-63.573Q68.953-63.744 69.076-63.863Q69.199-63.983 69.370-63.983Q69.538-63.983 69.661-63.863Q69.784-63.744 69.784-63.573Q69.784-63.398 69.661-63.275Q69.538-63.152 69.370-63.152Q69.199-63.152 69.076-63.275Q68.953-63.398 68.953-63.573M70.871-59.273L70.871-60.336Q70.871-60.360 70.898-60.387Q70.925-60.414 70.949-60.414L71.059-60.414Q71.123-60.414 71.137-60.356Q71.233-59.922 71.479-59.671Q71.725-59.420 72.139-59.420Q72.480-59.420 72.733-59.553Q72.986-59.686 72.986-59.994Q72.986-60.151 72.892-60.266Q72.798-60.380 72.660-60.449Q72.521-60.517 72.354-60.555L71.773-60.654Q71.417-60.722 71.144-60.943Q70.871-61.163 70.871-61.505Q70.871-61.754 70.982-61.929Q71.093-62.103 71.279-62.202Q71.465-62.301 71.681-62.344Q71.896-62.387 72.139-62.387Q72.552-62.387 72.832-62.205L73.048-62.380Q73.058-62.383 73.065-62.385Q73.072-62.387 73.082-62.387L73.133-62.387Q73.161-62.387 73.185-62.363Q73.208-62.339 73.208-62.311L73.208-61.464Q73.208-61.443 73.185-61.416Q73.161-61.389 73.133-61.389L73.020-61.389Q72.993-61.389 72.967-61.414Q72.942-61.440 72.942-61.464Q72.942-61.700 72.836-61.864Q72.730-62.028 72.547-62.110Q72.364-62.192 72.132-62.192Q71.804-62.192 71.547-62.089Q71.291-61.987 71.291-61.710Q71.291-61.515 71.474-61.406Q71.657-61.296 71.886-61.255L72.460-61.149Q72.706-61.101 72.920-60.973Q73.133-60.845 73.270-60.642Q73.407-60.438 73.407-60.189Q73.407-59.676 73.041-59.437Q72.675-59.198 72.139-59.198Q71.643-59.198 71.311-59.492L71.045-59.218Q71.024-59.198 70.997-59.198L70.949-59.198Q70.925-59.198 70.898-59.225Q70.871-59.252 70.871-59.273M74.562-60.107L74.562-62.004L73.923-62.004L73.923-62.226Q74.241-62.226 74.458-62.436Q74.675-62.646 74.776-62.956Q74.876-63.265 74.876-63.573L75.143-63.573L75.143-62.284L76.220-62.284L76.220-62.004L75.143-62.004L75.143-60.120Q75.143-59.844 75.247-59.645Q75.351-59.447 75.611-59.447Q75.768-59.447 75.874-59.551Q75.980-59.656 76.030-59.809Q76.080-59.963 76.080-60.120L76.080-60.534L76.346-60.534L76.346-60.107Q76.346-59.881 76.247-59.671Q76.148-59.461 75.963-59.329Q75.779-59.198 75.550-59.198Q75.112-59.198 74.837-59.435Q74.562-59.673 74.562-60.107M77.115-60.801Q77.115-61.122 77.240-61.411Q77.365-61.700 77.590-61.923Q77.816-62.147 78.112-62.267Q78.407-62.387 78.725-62.387Q79.053-62.387 79.315-62.287Q79.576-62.188 79.752-62.006Q79.928-61.823 80.022-61.565Q80.116-61.307 80.116-60.975Q80.116-60.883 80.034-60.862L77.778-60.862L77.778-60.801Q77.778-60.213 78.062-59.830Q78.346-59.447 78.913-59.447Q79.234-59.447 79.503-59.640Q79.771-59.833 79.860-60.148Q79.867-60.189 79.942-60.203L80.034-60.203Q80.116-60.179 80.116-60.107Q80.116-60.100 80.109-60.073Q79.997-59.676 79.626-59.437Q79.255-59.198 78.831-59.198Q78.393-59.198 77.994-59.406Q77.594-59.615 77.354-59.982Q77.115-60.349 77.115-60.801M77.785-61.071L79.600-61.071Q79.600-61.348 79.503-61.600Q79.405-61.853 79.207-62.009Q79.009-62.164 78.725-62.164Q78.448-62.164 78.235-62.006Q78.021-61.847 77.903-61.592Q77.785-61.337 77.785-61.071M82.454-59.266L80.718-59.266L80.718-59.546Q80.947-59.546 81.095-59.580Q81.244-59.615 81.244-59.755L81.244-61.604Q81.244-61.874 81.136-61.935Q81.029-61.997 80.718-61.997L80.718-62.277L81.747-62.352L81.747-61.645Q81.876-61.953 82.119-62.152Q82.362-62.352 82.680-62.352Q82.898-62.352 83.069-62.228Q83.240-62.103 83.240-61.891Q83.240-61.754 83.141-61.655Q83.042-61.556 82.909-61.556Q82.772-61.556 82.673-61.655Q82.574-61.754 82.574-61.891Q82.574-62.031 82.673-62.130Q82.382-62.130 82.182-61.934Q81.982-61.737 81.890-61.443Q81.798-61.149 81.798-60.869L81.798-59.755Q81.798-59.546 82.454-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M86.515-60.749Q86.515-61.091 86.650-61.390Q86.785-61.689 87.025-61.913Q87.264-62.137 87.582-62.262Q87.900-62.387 88.231-62.387Q88.676-62.387 89.075-62.171Q89.475-61.956 89.710-61.578Q89.944-61.201 89.944-60.749Q89.944-60.408 89.802-60.124Q89.660-59.840 89.416-59.633Q89.171-59.427 88.862-59.312Q88.553-59.198 88.231-59.198Q87.801-59.198 87.399-59.399Q86.997-59.601 86.756-59.953Q86.515-60.305 86.515-60.749M88.231-59.447Q88.833-59.447 89.057-59.825Q89.281-60.203 89.281-60.835Q89.281-61.447 89.046-61.806Q88.812-62.164 88.231-62.164Q87.179-62.164 87.179-60.835Q87.179-60.203 87.404-59.825Q87.630-59.447 88.231-59.447M92.182-57.909L90.552-57.909L90.552-58.189Q90.781-58.189 90.930-58.224Q91.078-58.258 91.078-58.398L91.078-61.744Q91.078-61.915 90.942-61.956Q90.805-61.997 90.552-61.997L90.552-62.277L91.632-62.352L91.632-61.946Q91.854-62.147 92.141-62.250Q92.429-62.352 92.736-62.352Q93.163-62.352 93.527-62.139Q93.891-61.925 94.105-61.561Q94.319-61.197 94.319-60.777Q94.319-60.332 94.079-59.968Q93.840-59.604 93.447-59.401Q93.054-59.198 92.610-59.198Q92.343-59.198 92.095-59.298Q91.847-59.399 91.659-59.580L91.659-58.398Q91.659-58.261 91.808-58.225Q91.957-58.189 92.182-58.189L92.182-57.909M91.659-61.597L91.659-59.987Q91.793-59.734 92.035-59.577Q92.278-59.420 92.555-59.420Q92.883-59.420 93.136-59.621Q93.389-59.823 93.522-60.141Q93.656-60.459 93.656-60.777Q93.656-61.006 93.591-61.235Q93.526-61.464 93.398-61.662Q93.269-61.860 93.075-61.980Q92.880-62.099 92.647-62.099Q92.353-62.099 92.085-61.970Q91.817-61.840 91.659-61.597\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M95.133-60.801Q95.133-61.122 95.258-61.411Q95.383-61.700 95.609-61.923Q95.834-62.147 96.130-62.267Q96.425-62.387 96.743-62.387Q97.071-62.387 97.333-62.287Q97.594-62.188 97.770-62.006Q97.946-61.823 98.040-61.565Q98.134-61.307 98.134-60.975Q98.134-60.883 98.052-60.862L95.797-60.862L95.797-60.801Q95.797-60.213 96.080-59.830Q96.364-59.447 96.931-59.447Q97.253-59.447 97.521-59.640Q97.789-59.833 97.878-60.148Q97.885-60.189 97.960-60.203L98.052-60.203Q98.134-60.179 98.134-60.107Q98.134-60.100 98.128-60.073Q98.015-59.676 97.644-59.437Q97.273-59.198 96.849-59.198Q96.412-59.198 96.012-59.406Q95.612-59.615 95.373-59.982Q95.133-60.349 95.133-60.801M95.803-61.071L97.618-61.071Q97.618-61.348 97.521-61.600Q97.423-61.853 97.225-62.009Q97.027-62.164 96.743-62.164Q96.466-62.164 96.253-62.006Q96.039-61.847 95.921-61.592Q95.803-61.337 95.803-61.071M100.472-59.266L98.736-59.266L98.736-59.546Q98.965-59.546 99.114-59.580Q99.262-59.615 99.262-59.755L99.262-61.604Q99.262-61.874 99.155-61.935Q99.047-61.997 98.736-61.997L98.736-62.277L99.765-62.352L99.765-61.645Q99.895-61.953 100.137-62.152Q100.380-62.352 100.698-62.352Q100.917-62.352 101.088-62.228Q101.258-62.103 101.258-61.891Q101.258-61.754 101.159-61.655Q101.060-61.556 100.927-61.556Q100.790-61.556 100.691-61.655Q100.592-61.754 100.592-61.891Q100.592-62.031 100.691-62.130Q100.401-62.130 100.201-61.934Q100.001-61.737 99.908-61.443Q99.816-61.149 99.816-60.869L99.816-59.755Q99.816-59.546 100.472-59.546L100.472-59.266M101.901-59.994Q101.901-60.326 102.125-60.553Q102.349-60.780 102.692-60.908Q103.036-61.037 103.408-61.089Q103.781-61.142 104.085-61.142L104.085-61.395Q104.085-61.600 103.977-61.780Q103.870-61.959 103.689-62.062Q103.507-62.164 103.299-62.164Q102.892-62.164 102.656-62.072Q102.745-62.035 102.791-61.951Q102.838-61.867 102.838-61.765Q102.838-61.669 102.791-61.590Q102.745-61.512 102.665-61.467Q102.585-61.423 102.496-61.423Q102.345-61.423 102.245-61.520Q102.144-61.618 102.144-61.765Q102.144-62.387 103.299-62.387Q103.511-62.387 103.760-62.323Q104.010-62.260 104.212-62.141Q104.413-62.021 104.540-61.836Q104.666-61.652 104.666-61.409L104.666-59.833Q104.666-59.717 104.728-59.621Q104.789-59.526 104.902-59.526Q105.011-59.526 105.076-59.620Q105.141-59.714 105.141-59.833L105.141-60.281L105.408-60.281L105.408-59.833Q105.408-59.563 105.181-59.398Q104.953-59.232 104.673-59.232Q104.464-59.232 104.328-59.386Q104.191-59.539 104.167-59.755Q104.020-59.488 103.738-59.343Q103.456-59.198 103.131-59.198Q102.855-59.198 102.571-59.273Q102.287-59.348 102.094-59.527Q101.901-59.707 101.901-59.994M102.516-59.994Q102.516-59.820 102.617-59.690Q102.718-59.560 102.873-59.490Q103.029-59.420 103.193-59.420Q103.412-59.420 103.620-59.517Q103.829-59.615 103.957-59.796Q104.085-59.977 104.085-60.203L104.085-60.931Q103.760-60.931 103.395-60.840Q103.029-60.749 102.773-60.537Q102.516-60.326 102.516-59.994M107.506-59.266L105.873-59.266L105.873-59.546Q106.102-59.546 106.250-59.580Q106.399-59.615 106.399-59.755L106.399-61.604Q106.399-61.874 106.291-61.935Q106.184-61.997 105.873-61.997L105.873-62.277L106.932-62.352L106.932-61.703Q107.103-62.011 107.407-62.182Q107.712-62.352 108.057-62.352Q108.563-62.352 108.846-62.129Q109.130-61.905 109.130-61.409L109.130-59.755Q109.130-59.618 109.279-59.582Q109.427-59.546 109.653-59.546L109.653-59.266L108.023-59.266L108.023-59.546Q108.252-59.546 108.400-59.580Q108.549-59.615 108.549-59.755L108.549-61.395Q108.549-61.730 108.429-61.930Q108.310-62.130 107.995-62.130Q107.725-62.130 107.491-61.994Q107.257-61.857 107.119-61.623Q106.980-61.389 106.980-61.115L106.980-59.755Q106.980-59.618 107.131-59.582Q107.281-59.546 107.506-59.546L107.506-59.266M110.241-60.777Q110.241-61.115 110.381-61.406Q110.521-61.696 110.766-61.910Q111.010-62.123 111.314-62.238Q111.618-62.352 111.943-62.352Q112.213-62.352 112.476-62.253Q112.739-62.154 112.931-61.976L112.931-63.374Q112.931-63.644 112.823-63.706Q112.715-63.767 112.404-63.767L112.404-64.048L113.481-64.123L113.481-59.939Q113.481-59.751 113.536-59.668Q113.590-59.584 113.691-59.565Q113.792-59.546 114.007-59.546L114.007-59.266L112.900-59.198L112.900-59.615Q112.483-59.198 111.858-59.198Q111.427-59.198 111.054-59.410Q110.682-59.621 110.461-59.982Q110.241-60.343 110.241-60.777M111.916-59.420Q112.124-59.420 112.310-59.492Q112.497-59.563 112.651-59.700Q112.804-59.837 112.900-60.015L112.900-61.624Q112.815-61.771 112.669-61.891Q112.524-62.011 112.355-62.070Q112.186-62.130 112.005-62.130Q111.444-62.130 111.176-61.741Q110.907-61.351 110.907-60.770Q110.907-60.199 111.141-59.809Q111.376-59.420 111.916-59.420M114.657-59.273L114.657-60.336Q114.657-60.360 114.684-60.387Q114.712-60.414 114.735-60.414L114.845-60.414Q114.910-60.414 114.923-60.356Q115.019-59.922 115.265-59.671Q115.511-59.420 115.925-59.420Q116.267-59.420 116.520-59.553Q116.773-59.686 116.773-59.994Q116.773-60.151 116.679-60.266Q116.585-60.380 116.446-60.449Q116.308-60.517 116.140-60.555L115.559-60.654Q115.204-60.722 114.930-60.943Q114.657-61.163 114.657-61.505Q114.657-61.754 114.768-61.929Q114.879-62.103 115.065-62.202Q115.252-62.301 115.467-62.344Q115.682-62.387 115.925-62.387Q116.339-62.387 116.619-62.205L116.834-62.380Q116.844-62.383 116.851-62.385Q116.858-62.387 116.868-62.387L116.920-62.387Q116.947-62.387 116.971-62.363Q116.995-62.339 116.995-62.311L116.995-61.464Q116.995-61.443 116.971-61.416Q116.947-61.389 116.920-61.389L116.807-61.389Q116.779-61.389 116.754-61.414Q116.728-61.440 116.728-61.464Q116.728-61.700 116.622-61.864Q116.516-62.028 116.333-62.110Q116.151-62.192 115.918-62.192Q115.590-62.192 115.334-62.089Q115.077-61.987 115.077-61.710Q115.077-61.515 115.260-61.406Q115.443-61.296 115.672-61.255L116.246-61.149Q116.492-61.101 116.706-60.973Q116.920-60.845 117.056-60.642Q117.193-60.438 117.193-60.189Q117.193-59.676 116.827-59.437Q116.462-59.198 115.925-59.198Q115.429-59.198 115.098-59.492L114.831-59.218Q114.811-59.198 114.783-59.198L114.735-59.198Q114.712-59.198 114.684-59.225Q114.657-59.252 114.657-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M122.126-59.293L120.998-61.792Q120.926-61.939 120.796-61.971Q120.666-62.004 120.437-62.004L120.437-62.284L121.951-62.284L121.951-62.004Q121.599-62.004 121.599-61.857Q121.599-61.812 121.610-61.792L122.474-59.874L123.254-61.604Q123.288-61.672 123.288-61.751Q123.288-61.864 123.204-61.934Q123.120-62.004 123.001-62.004L123.001-62.284L124.197-62.284L124.197-62.004Q123.978-62.004 123.807-61.901Q123.637-61.799 123.548-61.604L122.512-59.293Q122.464-59.198 122.358-59.198L122.280-59.198Q122.174-59.198 122.126-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M124.366-59.994Q124.366-60.326 124.589-60.553Q124.813-60.780 125.157-60.908Q125.500-61.037 125.873-61.089Q126.245-61.142 126.550-61.142L126.550-61.395Q126.550-61.600 126.442-61.780Q126.334-61.959 126.153-62.062Q125.972-62.164 125.764-62.164Q125.357-62.164 125.121-62.072Q125.210-62.035 125.256-61.951Q125.302-61.867 125.302-61.765Q125.302-61.669 125.256-61.590Q125.210-61.512 125.129-61.467Q125.049-61.423 124.960-61.423Q124.810-61.423 124.709-61.520Q124.608-61.618 124.608-61.765Q124.608-62.387 125.764-62.387Q125.975-62.387 126.225-62.323Q126.474-62.260 126.676-62.141Q126.878-62.021 127.004-61.836Q127.131-61.652 127.131-61.409L127.131-59.833Q127.131-59.717 127.192-59.621Q127.254-59.526 127.367-59.526Q127.476-59.526 127.541-59.620Q127.606-59.714 127.606-59.833L127.606-60.281L127.872-60.281L127.872-59.833Q127.872-59.563 127.645-59.398Q127.418-59.232 127.138-59.232Q126.929-59.232 126.792-59.386Q126.656-59.539 126.632-59.755Q126.485-59.488 126.203-59.343Q125.921-59.198 125.596-59.198Q125.319-59.198 125.035-59.273Q124.752-59.348 124.559-59.527Q124.366-59.707 124.366-59.994M124.981-59.994Q124.981-59.820 125.082-59.690Q125.182-59.560 125.338-59.490Q125.493-59.420 125.658-59.420Q125.876-59.420 126.085-59.517Q126.293-59.615 126.421-59.796Q126.550-59.977 126.550-60.203L126.550-60.931Q126.225-60.931 125.859-60.840Q125.493-60.749 125.237-60.537Q124.981-60.326 124.981-59.994M129.957-59.266L128.354-59.266L128.354-59.546Q128.580-59.546 128.729-59.580Q128.877-59.615 128.877-59.755L128.877-63.374Q128.877-63.644 128.770-63.706Q128.662-63.767 128.354-63.767L128.354-64.048L129.431-64.123L129.431-59.755Q129.431-59.618 129.581-59.582Q129.732-59.546 129.957-59.546L129.957-59.266M132.141-59.266L130.552-59.266L130.552-59.546Q131.195-59.546 131.352-59.946L132.996-64.161Q133.030-64.256 133.143-64.256L133.225-64.256Q133.334-64.256 133.375-64.161L135.095-59.755Q135.163-59.615 135.353-59.580Q135.542-59.546 135.816-59.546L135.816-59.266L133.816-59.266L133.816-59.546Q134.380-59.546 134.380-59.721Q134.380-59.738 134.378-59.745Q134.377-59.751 134.373-59.755L133.953-60.821L131.994-60.821L131.653-59.946Q131.639-59.946 131.639-59.868Q131.639-59.707 131.801-59.627Q131.964-59.546 132.141-59.546L132.141-59.266M132.975-63.340L132.107-61.101L133.850-61.101L132.975-63.340M136.951-58.036Q136.951-58.070 136.978-58.097Q137.248-58.326 137.397-58.649Q137.545-58.972 137.545-59.328L137.545-59.365Q137.436-59.266 137.272-59.266Q137.091-59.266 136.971-59.386Q136.851-59.505 136.851-59.686Q136.851-59.861 136.971-59.980Q137.091-60.100 137.272-60.100Q137.528-60.100 137.648-59.861Q137.767-59.621 137.767-59.328Q137.767-58.928 137.598-58.557Q137.429-58.186 137.132-57.930Q137.101-57.909 137.074-57.909Q137.033-57.909 136.992-57.950Q136.951-57.991 136.951-58.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M143.009-59.293L141.881-61.792Q141.809-61.939 141.679-61.971Q141.549-62.004 141.320-62.004L141.320-62.284L142.834-62.284L142.834-62.004Q142.482-62.004 142.482-61.857Q142.482-61.812 142.493-61.792L143.357-59.874L144.137-61.604Q144.171-61.672 144.171-61.751Q144.171-61.864 144.087-61.934Q144.003-62.004 143.884-62.004L143.884-62.284L145.080-62.284L145.080-62.004Q144.861-62.004 144.690-61.901Q144.520-61.799 144.431-61.604L143.395-59.293Q143.347-59.198 143.241-59.198L143.163-59.198Q143.057-59.198 143.009-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 41.584)\">\u003Cpath d=\"M145.248-59.994Q145.248-60.326 145.471-60.553Q145.695-60.780 146.039-60.908Q146.382-61.037 146.755-61.089Q147.127-61.142 147.432-61.142L147.432-61.395Q147.432-61.600 147.324-61.780Q147.216-61.959 147.035-62.062Q146.854-62.164 146.646-62.164Q146.239-62.164 146.003-62.072Q146.092-62.035 146.138-61.951Q146.184-61.867 146.184-61.765Q146.184-61.669 146.138-61.590Q146.092-61.512 146.011-61.467Q145.931-61.423 145.842-61.423Q145.692-61.423 145.591-61.520Q145.490-61.618 145.490-61.765Q145.490-62.387 146.646-62.387Q146.857-62.387 147.107-62.323Q147.356-62.260 147.558-62.141Q147.760-62.021 147.886-61.836Q148.013-61.652 148.013-61.409L148.013-59.833Q148.013-59.717 148.074-59.621Q148.136-59.526 148.249-59.526Q148.358-59.526 148.423-59.620Q148.488-59.714 148.488-59.833L148.488-60.281L148.754-60.281L148.754-59.833Q148.754-59.563 148.527-59.398Q148.300-59.232 148.020-59.232Q147.811-59.232 147.674-59.386Q147.538-59.539 147.514-59.755Q147.367-59.488 147.085-59.343Q146.803-59.198 146.478-59.198Q146.201-59.198 145.917-59.273Q145.634-59.348 145.441-59.527Q145.248-59.707 145.248-59.994M145.863-59.994Q145.863-59.820 145.964-59.690Q146.064-59.560 146.220-59.490Q146.375-59.420 146.540-59.420Q146.758-59.420 146.967-59.517Q147.175-59.615 147.303-59.796Q147.432-59.977 147.432-60.203L147.432-60.931Q147.107-60.931 146.741-60.840Q146.375-60.749 146.119-60.537Q145.863-60.326 145.863-59.994M150.839-59.266L149.236-59.266L149.236-59.546Q149.462-59.546 149.611-59.580Q149.759-59.615 149.759-59.755L149.759-63.374Q149.759-63.644 149.652-63.706Q149.544-63.767 149.236-63.767L149.236-64.048L150.313-64.123L150.313-59.755Q150.313-59.618 150.463-59.582Q150.614-59.546 150.839-59.546L150.839-59.266M154.500-59.266L151.526-59.266L151.526-59.546Q152.248-59.546 152.248-59.755L152.248-63.556Q152.248-63.767 151.526-63.767L151.526-64.048L154.285-64.048Q154.551-64.048 154.857-63.973Q155.163-63.897 155.423-63.750Q155.683-63.603 155.845-63.374Q156.007-63.145 156.007-62.851Q156.007-62.421 155.621-62.139Q155.235-61.857 154.753-61.765Q155.061-61.765 155.409-61.600Q155.758-61.436 155.987-61.158Q156.216-60.879 156.216-60.561Q156.216-60.155 155.953-59.861Q155.689-59.567 155.291-59.416Q154.893-59.266 154.500-59.266M152.890-61.638L152.890-59.755Q152.890-59.615 152.979-59.580Q153.068-59.546 153.256-59.546L154.285-59.546Q154.572-59.546 154.849-59.673Q155.125-59.799 155.296-60.033Q155.467-60.267 155.467-60.561Q155.467-60.777 155.385-60.973Q155.303-61.170 155.153-61.320Q155.002-61.471 154.806-61.554Q154.609-61.638 154.394-61.638L152.890-61.638M152.890-63.556L152.890-61.864L154.073-61.864Q154.360-61.864 154.640-61.983Q154.920-62.103 155.100-62.330Q155.279-62.558 155.279-62.851Q155.279-63.101 155.141-63.315Q155.002-63.528 154.773-63.648Q154.544-63.767 154.285-63.767L153.256-63.767Q153.068-63.767 152.979-63.733Q152.890-63.699 152.890-63.556\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M41.769-59.266L40.179-59.266L40.179-59.546Q40.822-59.546 40.979-59.946L42.623-64.161Q42.657-64.256 42.770-64.256L42.852-64.256Q42.962-64.256 43.003-64.161L44.722-59.755Q44.790-59.615 44.980-59.580Q45.170-59.546 45.443-59.546L45.443-59.266L43.444-59.266L43.444-59.546Q44.008-59.546 44.008-59.721Q44.008-59.738 44.006-59.745Q44.004-59.751 44.001-59.755L43.580-60.821L41.622-60.821L41.280-59.946Q41.266-59.946 41.266-59.868Q41.266-59.707 41.429-59.627Q41.591-59.546 41.769-59.546L41.769-59.266M42.603-63.340L41.735-61.101L43.478-61.101L42.603-63.340M50.112-59.266L46.144-59.266L46.144-59.546Q46.865-59.546 46.865-59.755L46.865-63.556Q46.865-63.767 46.144-63.767L46.144-64.048L48.458-64.048L48.458-63.767Q48.140-63.767 47.848-63.732Q47.555-63.696 47.555-63.556L47.555-59.755Q47.555-59.615 47.644-59.580Q47.733-59.546 47.921-59.546L48.543-59.546Q48.957-59.546 49.235-59.649Q49.514-59.751 49.680-59.953Q49.845-60.155 49.928-60.442Q50.010-60.729 50.054-61.136L50.321-61.136L50.112-59.266M51.807-60.849L51.807-63.556Q51.807-63.767 51.086-63.767L51.086-64.048L53.219-64.048L53.219-63.767Q52.498-63.767 52.498-63.556L52.498-60.869Q52.498-60.452 52.635-60.124Q52.771-59.796 53.053-59.601Q53.335-59.406 53.759-59.406Q54.063-59.406 54.332-59.516Q54.600-59.625 54.800-59.825Q55-60.025 55.111-60.291Q55.222-60.558 55.222-60.869L55.222-63.368Q55.222-63.767 54.501-63.767L54.501-64.048L56.223-64.048L56.223-63.767Q55.502-63.767 55.502-63.368L55.502-60.849Q55.502-60.387 55.265-59.987Q55.027-59.587 54.624-59.357Q54.220-59.126 53.759-59.126Q53.274-59.126 52.821-59.345Q52.368-59.563 52.088-59.958Q51.807-60.353 51.807-60.849\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M59.624-60.777Q59.624-61.105 59.759-61.406Q59.894-61.706 60.130-61.927Q60.366-62.147 60.670-62.267Q60.975-62.387 61.299-62.387Q61.805-62.387 62.154-62.284Q62.502-62.182 62.502-61.806Q62.502-61.659 62.405-61.558Q62.308-61.457 62.161-61.457Q62.007-61.457 61.908-61.556Q61.809-61.655 61.809-61.806Q61.809-61.994 61.949-62.086Q61.747-62.137 61.306-62.137Q60.951-62.137 60.722-61.941Q60.493-61.744 60.392-61.435Q60.291-61.125 60.291-60.777Q60.291-60.428 60.417-60.122Q60.544-59.816 60.799-59.632Q61.053-59.447 61.409-59.447Q61.631-59.447 61.815-59.531Q62-59.615 62.135-59.770Q62.270-59.926 62.328-60.134Q62.342-60.189 62.396-60.189L62.509-60.189Q62.540-60.189 62.562-60.165Q62.584-60.141 62.584-60.107L62.584-60.086Q62.499-59.799 62.311-59.601Q62.123-59.403 61.858-59.300Q61.593-59.198 61.299-59.198Q60.869-59.198 60.481-59.404Q60.093-59.611 59.859-59.974Q59.624-60.336 59.624-60.777M63.131-60.749Q63.131-61.091 63.266-61.390Q63.401-61.689 63.641-61.913Q63.880-62.137 64.198-62.262Q64.516-62.387 64.847-62.387Q65.291-62.387 65.691-62.171Q66.091-61.956 66.325-61.578Q66.560-61.201 66.560-60.749Q66.560-60.408 66.418-60.124Q66.276-59.840 66.031-59.633Q65.787-59.427 65.478-59.312Q65.168-59.198 64.847-59.198Q64.416-59.198 64.015-59.399Q63.613-59.601 63.372-59.953Q63.131-60.305 63.131-60.749M64.847-59.447Q65.449-59.447 65.673-59.825Q65.896-60.203 65.896-60.835Q65.896-61.447 65.662-61.806Q65.428-62.164 64.847-62.164Q63.794-62.164 63.794-60.835Q63.794-60.203 64.020-59.825Q64.246-59.447 64.847-59.447M68.836-59.266L67.202-59.266L67.202-59.546Q67.431-59.546 67.580-59.580Q67.728-59.615 67.728-59.755L67.728-61.604Q67.728-61.874 67.621-61.935Q67.513-61.997 67.202-61.997L67.202-62.277L68.262-62.352L68.262-61.703Q68.433-62.011 68.737-62.182Q69.041-62.352 69.386-62.352Q69.786-62.352 70.063-62.212Q70.340-62.072 70.425-61.724Q70.593-62.017 70.892-62.185Q71.191-62.352 71.536-62.352Q72.042-62.352 72.326-62.129Q72.609-61.905 72.609-61.409L72.609-59.755Q72.609-59.618 72.758-59.582Q72.907-59.546 73.132-59.546L73.132-59.266L71.502-59.266L71.502-59.546Q71.727-59.546 71.878-59.582Q72.028-59.618 72.028-59.755L72.028-61.395Q72.028-61.730 71.909-61.930Q71.789-62.130 71.475-62.130Q71.205-62.130 70.970-61.994Q70.736-61.857 70.598-61.623Q70.459-61.389 70.459-61.115L70.459-59.755Q70.459-59.618 70.608-59.582Q70.757-59.546 70.982-59.546L70.982-59.266L69.352-59.266L69.352-59.546Q69.581-59.546 69.730-59.580Q69.878-59.615 69.878-59.755L69.878-61.395Q69.878-61.730 69.759-61.930Q69.639-62.130 69.325-62.130Q69.055-62.130 68.820-61.994Q68.586-61.857 68.448-61.623Q68.310-61.389 68.310-61.115L68.310-59.755Q68.310-59.618 68.460-59.582Q68.610-59.546 68.836-59.546L68.836-59.266M75.364-57.909L73.734-57.909L73.734-58.189Q73.963-58.189 74.112-58.224Q74.260-58.258 74.260-58.398L74.260-61.744Q74.260-61.915 74.123-61.956Q73.987-61.997 73.734-61.997L73.734-62.277L74.814-62.352L74.814-61.946Q75.036-62.147 75.323-62.250Q75.610-62.352 75.918-62.352Q76.345-62.352 76.709-62.139Q77.073-61.925 77.287-61.561Q77.500-61.197 77.500-60.777Q77.500-60.332 77.261-59.968Q77.022-59.604 76.629-59.401Q76.236-59.198 75.791-59.198Q75.525-59.198 75.277-59.298Q75.029-59.399 74.841-59.580L74.841-58.398Q74.841-58.261 74.990-58.225Q75.139-58.189 75.364-58.189L75.364-57.909M74.841-61.597L74.841-59.987Q74.975-59.734 75.217-59.577Q75.460-59.420 75.737-59.420Q76.065-59.420 76.318-59.621Q76.571-59.823 76.704-60.141Q76.837-60.459 76.837-60.777Q76.837-61.006 76.772-61.235Q76.707-61.464 76.579-61.662Q76.451-61.860 76.256-61.980Q76.061-62.099 75.829-62.099Q75.535-62.099 75.267-61.970Q74.998-61.840 74.841-61.597M78.710-60.100L78.710-61.604Q78.710-61.874 78.603-61.935Q78.495-61.997 78.184-61.997L78.184-62.277L79.291-62.352L79.291-60.120L79.291-60.100Q79.291-59.820 79.343-59.676Q79.394-59.533 79.536-59.476Q79.678-59.420 79.965-59.420Q80.218-59.420 80.423-59.560Q80.628-59.700 80.744-59.926Q80.860-60.151 80.860-60.401L80.860-61.604Q80.860-61.874 80.753-61.935Q80.645-61.997 80.334-61.997L80.334-62.277L81.441-62.352L81.441-59.939Q81.441-59.748 81.494-59.666Q81.547-59.584 81.648-59.565Q81.749-59.546 81.964-59.546L81.964-59.266L80.888-59.198L80.888-59.762Q80.778-59.580 80.633-59.457Q80.488-59.334 80.301-59.266Q80.115-59.198 79.914-59.198Q78.710-59.198 78.710-60.100M83.079-60.107L83.079-62.004L82.439-62.004L82.439-62.226Q82.757-62.226 82.974-62.436Q83.191-62.646 83.292-62.956Q83.393-63.265 83.393-63.573L83.660-63.573L83.660-62.284L84.736-62.284L84.736-62.004L83.660-62.004L83.660-60.120Q83.660-59.844 83.764-59.645Q83.868-59.447 84.128-59.447Q84.285-59.447 84.391-59.551Q84.497-59.656 84.547-59.809Q84.596-59.963 84.596-60.120L84.596-60.534L84.863-60.534L84.863-60.107Q84.863-59.881 84.764-59.671Q84.664-59.461 84.480-59.329Q84.295-59.198 84.066-59.198Q83.629-59.198 83.354-59.435Q83.079-59.673 83.079-60.107M85.632-60.801Q85.632-61.122 85.757-61.411Q85.881-61.700 86.107-61.923Q86.332-62.147 86.628-62.267Q86.924-62.387 87.242-62.387Q87.570-62.387 87.831-62.287Q88.093-62.188 88.269-62.006Q88.445-61.823 88.539-61.565Q88.633-61.307 88.633-60.975Q88.633-60.883 88.551-60.862L86.295-60.862L86.295-60.801Q86.295-60.213 86.579-59.830Q86.862-59.447 87.430-59.447Q87.751-59.447 88.019-59.640Q88.288-59.833 88.376-60.148Q88.383-60.189 88.458-60.203L88.551-60.203Q88.633-60.179 88.633-60.107Q88.633-60.100 88.626-60.073Q88.513-59.676 88.142-59.437Q87.771-59.198 87.348-59.198Q86.910-59.198 86.510-59.406Q86.110-59.615 85.871-59.982Q85.632-60.349 85.632-60.801M86.302-61.071L88.117-61.071Q88.117-61.348 88.019-61.600Q87.922-61.853 87.724-62.009Q87.525-62.164 87.242-62.164Q86.965-62.164 86.751-62.006Q86.538-61.847 86.420-61.592Q86.302-61.337 86.302-61.071M89.221-59.273L89.221-60.336Q89.221-60.360 89.248-60.387Q89.275-60.414 89.299-60.414L89.409-60.414Q89.474-60.414 89.487-60.356Q89.583-59.922 89.829-59.671Q90.075-59.420 90.489-59.420Q90.831-59.420 91.083-59.553Q91.336-59.686 91.336-59.994Q91.336-60.151 91.242-60.266Q91.148-60.380 91.010-60.449Q90.872-60.517 90.704-60.555L90.123-60.654Q89.768-60.722 89.494-60.943Q89.221-61.163 89.221-61.505Q89.221-61.754 89.332-61.929Q89.443-62.103 89.629-62.202Q89.815-62.301 90.031-62.344Q90.246-62.387 90.489-62.387Q90.902-62.387 91.183-62.205L91.398-62.380Q91.408-62.383 91.415-62.385Q91.422-62.387 91.432-62.387L91.483-62.387Q91.511-62.387 91.535-62.363Q91.559-62.339 91.559-62.311L91.559-61.464Q91.559-61.443 91.535-61.416Q91.511-61.389 91.483-61.389L91.371-61.389Q91.343-61.389 91.318-61.414Q91.292-61.440 91.292-61.464Q91.292-61.700 91.186-61.864Q91.080-62.028 90.897-62.110Q90.714-62.192 90.482-62.192Q90.154-62.192 89.897-62.089Q89.641-61.987 89.641-61.710Q89.641-61.515 89.824-61.406Q90.007-61.296 90.236-61.255L90.810-61.149Q91.056-61.101 91.270-60.973Q91.483-60.845 91.620-60.642Q91.757-60.438 91.757-60.189Q91.757-59.676 91.391-59.437Q91.025-59.198 90.489-59.198Q89.993-59.198 89.662-59.492L89.395-59.218Q89.374-59.198 89.347-59.198L89.299-59.198Q89.275-59.198 89.248-59.225Q89.221-59.252 89.221-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M96.701-59.293L95.573-61.792Q95.501-61.939 95.371-61.971Q95.241-62.004 95.012-62.004L95.012-62.284L96.526-62.284L96.526-62.004Q96.174-62.004 96.174-61.857Q96.174-61.812 96.185-61.792L97.049-59.874L97.829-61.604Q97.863-61.672 97.863-61.751Q97.863-61.864 97.779-61.934Q97.695-62.004 97.576-62.004L97.576-62.284L98.772-62.284L98.772-62.004Q98.553-62.004 98.382-61.901Q98.212-61.799 98.123-61.604L97.087-59.293Q97.039-59.198 96.933-59.198L96.855-59.198Q96.749-59.198 96.701-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M98.941-59.994Q98.941-60.326 99.164-60.553Q99.388-60.780 99.732-60.908Q100.075-61.037 100.448-61.089Q100.820-61.142 101.125-61.142L101.125-61.395Q101.125-61.600 101.017-61.780Q100.909-61.959 100.728-62.062Q100.547-62.164 100.339-62.164Q99.932-62.164 99.696-62.072Q99.785-62.035 99.831-61.951Q99.877-61.867 99.877-61.765Q99.877-61.669 99.831-61.590Q99.785-61.512 99.704-61.467Q99.624-61.423 99.535-61.423Q99.385-61.423 99.284-61.520Q99.183-61.618 99.183-61.765Q99.183-62.387 100.339-62.387Q100.550-62.387 100.800-62.323Q101.049-62.260 101.251-62.141Q101.453-62.021 101.579-61.836Q101.706-61.652 101.706-61.409L101.706-59.833Q101.706-59.717 101.767-59.621Q101.829-59.526 101.942-59.526Q102.051-59.526 102.116-59.620Q102.181-59.714 102.181-59.833L102.181-60.281L102.447-60.281L102.447-59.833Q102.447-59.563 102.220-59.398Q101.993-59.232 101.713-59.232Q101.504-59.232 101.367-59.386Q101.231-59.539 101.207-59.755Q101.060-59.488 100.778-59.343Q100.496-59.198 100.171-59.198Q99.894-59.198 99.610-59.273Q99.327-59.348 99.134-59.527Q98.941-59.707 98.941-59.994M99.556-59.994Q99.556-59.820 99.657-59.690Q99.757-59.560 99.913-59.490Q100.068-59.420 100.233-59.420Q100.451-59.420 100.660-59.517Q100.868-59.615 100.996-59.796Q101.125-59.977 101.125-60.203L101.125-60.931Q100.800-60.931 100.434-60.840Q100.068-60.749 99.812-60.537Q99.556-60.326 99.556-59.994M104.532-59.266L102.929-59.266L102.929-59.546Q103.155-59.546 103.304-59.580Q103.452-59.615 103.452-59.755L103.452-63.374Q103.452-63.644 103.345-63.706Q103.237-63.767 102.929-63.767L102.929-64.048L104.006-64.123L104.006-59.755Q104.006-59.618 104.156-59.582Q104.307-59.546 104.532-59.546L104.532-59.266M109.594-59.266L105.192-59.266L105.192-59.546Q105.913-59.546 105.913-59.755L105.913-63.556Q105.913-63.767 105.192-63.767L105.192-64.048L109.482-64.048L109.690-62.411L109.427-62.411Q109.369-62.882 109.266-63.147Q109.164-63.412 108.979-63.545Q108.795-63.679 108.523-63.723Q108.251-63.767 107.752-63.767L106.969-63.767Q106.781-63.767 106.693-63.733Q106.604-63.699 106.604-63.556L106.604-61.891L107.178-61.891Q107.568-61.891 107.750-61.942Q107.933-61.994 108.015-62.166Q108.097-62.339 108.097-62.711L108.360-62.711L108.360-60.790L108.097-60.790Q108.097-61.163 108.015-61.336Q107.933-61.508 107.750-61.559Q107.568-61.611 107.178-61.611L106.604-61.611L106.604-59.755Q106.604-59.615 106.693-59.580Q106.781-59.546 106.969-59.546L107.817-59.546Q108.347-59.546 108.656-59.615Q108.965-59.683 109.153-59.850Q109.341-60.018 109.449-60.320Q109.557-60.623 109.642-61.136L109.909-61.136L109.594-59.266M110.996-58.036Q110.996-58.070 111.016-58.090Q111.255-58.329 111.391-58.656Q111.526-58.982 111.526-59.314Q111.440-59.266 111.317-59.266Q111.136-59.266 111.016-59.386Q110.897-59.505 110.897-59.686Q110.897-59.861 111.016-59.980Q111.136-60.100 111.317-60.100Q111.488-60.100 111.585-59.977Q111.683-59.854 111.717-59.678Q111.751-59.502 111.751-59.328Q111.751-58.945 111.604-58.581Q111.457-58.217 111.184-57.936Q111.156-57.909 111.119-57.909Q111.078-57.909 111.037-57.950Q110.996-57.991 110.996-58.036M110.897-61.870Q110.897-62.038 111.020-62.161Q111.143-62.284 111.317-62.284Q111.485-62.284 111.608-62.161Q111.731-62.038 111.731-61.870Q111.731-61.696 111.608-61.573Q111.485-61.450 111.317-61.450Q111.143-61.450 111.020-61.573Q110.897-61.696 110.897-61.870\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M115.466-59.273L115.466-60.336Q115.466-60.360 115.494-60.387Q115.521-60.414 115.545-60.414L115.654-60.414Q115.719-60.414 115.733-60.356Q115.829-59.922 116.075-59.671Q116.321-59.420 116.735-59.420Q117.076-59.420 117.329-59.553Q117.582-59.686 117.582-59.994Q117.582-60.151 117.488-60.266Q117.394-60.380 117.256-60.449Q117.117-60.517 116.950-60.555L116.369-60.654Q116.013-60.722 115.740-60.943Q115.466-61.163 115.466-61.505Q115.466-61.754 115.578-61.929Q115.689-62.103 115.875-62.202Q116.061-62.301 116.277-62.344Q116.492-62.387 116.735-62.387Q117.148-62.387 117.428-62.205L117.644-62.380Q117.654-62.383 117.661-62.385Q117.668-62.387 117.678-62.387L117.729-62.387Q117.756-62.387 117.780-62.363Q117.804-62.339 117.804-62.311L117.804-61.464Q117.804-61.443 117.780-61.416Q117.756-61.389 117.729-61.389L117.616-61.389Q117.589-61.389 117.563-61.414Q117.538-61.440 117.538-61.464Q117.538-61.700 117.432-61.864Q117.326-62.028 117.143-62.110Q116.960-62.192 116.728-62.192Q116.400-62.192 116.143-62.089Q115.887-61.987 115.887-61.710Q115.887-61.515 116.070-61.406Q116.253-61.296 116.482-61.255L117.056-61.149Q117.302-61.101 117.516-60.973Q117.729-60.845 117.866-60.642Q118.003-60.438 118.003-60.189Q118.003-59.676 117.637-59.437Q117.271-59.198 116.735-59.198Q116.239-59.198 115.907-59.492L115.641-59.218Q115.620-59.198 115.593-59.198L115.545-59.198Q115.521-59.198 115.494-59.225Q115.466-59.252 115.466-59.273M118.590-60.801Q118.590-61.122 118.715-61.411Q118.840-61.700 119.066-61.923Q119.291-62.147 119.587-62.267Q119.882-62.387 120.200-62.387Q120.528-62.387 120.790-62.287Q121.051-62.188 121.227-62.006Q121.403-61.823 121.497-61.565Q121.591-61.307 121.591-60.975Q121.591-60.883 121.509-60.862L119.254-60.862L119.254-60.801Q119.254-60.213 119.537-59.830Q119.821-59.447 120.388-59.447Q120.710-59.447 120.978-59.640Q121.246-59.833 121.335-60.148Q121.342-60.189 121.417-60.203L121.509-60.203Q121.591-60.179 121.591-60.107Q121.591-60.100 121.585-60.073Q121.472-59.676 121.101-59.437Q120.730-59.198 120.306-59.198Q119.869-59.198 119.469-59.406Q119.069-59.615 118.830-59.982Q118.590-60.349 118.590-60.801M119.260-61.071L121.075-61.071Q121.075-61.348 120.978-61.600Q120.881-61.853 120.682-62.009Q120.484-62.164 120.200-62.164Q119.923-62.164 119.710-62.006Q119.496-61.847 119.378-61.592Q119.260-61.337 119.260-61.071M122.706-60.107L122.706-62.004L122.067-62.004L122.067-62.226Q122.384-62.226 122.601-62.436Q122.819-62.646 122.919-62.956Q123.020-63.265 123.020-63.573L123.287-63.573L123.287-62.284L124.363-62.284L124.363-62.004L123.287-62.004L123.287-60.120Q123.287-59.844 123.391-59.645Q123.495-59.447 123.755-59.447Q123.912-59.447 124.018-59.551Q124.124-59.656 124.174-59.809Q124.223-59.963 124.223-60.120L124.223-60.534L124.490-60.534L124.490-60.107Q124.490-59.881 124.391-59.671Q124.292-59.461 124.107-59.329Q123.923-59.198 123.694-59.198Q123.256-59.198 122.981-59.435Q122.706-59.673 122.706-60.107\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 81.418)\">\u003Cpath d=\"M128.184-61.659Q128.184-62.185 128.401-62.653Q128.618-63.121 129.001-63.467Q129.383-63.812 129.867-64Q130.351-64.188 130.881-64.188Q131.284-64.188 131.648-64.031Q132.012-63.873 132.296-63.579L132.719-64.161Q132.754-64.188 132.778-64.188L132.825-64.188Q132.856-64.188 132.880-64.164Q132.904-64.140 132.904-64.109L132.904-62.246Q132.904-62.223 132.878-62.197Q132.853-62.171 132.825-62.171L132.699-62.171Q132.637-62.171 132.624-62.246Q132.593-62.561 132.458-62.865Q132.323-63.169 132.108-63.403Q131.892-63.638 131.603-63.773Q131.315-63.908 130.987-63.908Q130.344-63.908 129.886-63.614Q129.428-63.320 129.195-62.807Q128.963-62.294 128.963-61.659Q128.963-61.187 129.093-60.778Q129.223-60.370 129.483-60.057Q129.742-59.745 130.122-59.575Q130.501-59.406 130.993-59.406Q131.321-59.406 131.615-59.522Q131.909-59.639 132.143-59.854Q132.378-60.069 132.507-60.358Q132.637-60.647 132.637-60.975Q132.637-61.002 132.665-61.026Q132.692-61.050 132.713-61.050L132.825-61.050Q132.863-61.050 132.883-61.025Q132.904-60.999 132.904-60.961Q132.904-60.565 132.738-60.228Q132.572-59.891 132.285-59.644Q131.998-59.396 131.629-59.261Q131.260-59.126 130.881-59.126Q130.361-59.126 129.869-59.316Q129.377-59.505 128.997-59.849Q128.618-60.192 128.401-60.661Q128.184-61.129 128.184-61.659M133.888-61.659Q133.888-62.185 134.105-62.653Q134.322-63.121 134.705-63.467Q135.088-63.812 135.572-64Q136.055-64.188 136.585-64.188Q136.988-64.188 137.352-64.031Q137.716-63.873 138-63.579L138.424-64.161Q138.458-64.188 138.482-64.188L138.530-64.188Q138.561-64.188 138.585-64.164Q138.609-64.140 138.609-64.109L138.609-62.246Q138.609-62.223 138.583-62.197Q138.557-62.171 138.530-62.171L138.403-62.171Q138.342-62.171 138.328-62.246Q138.298-62.561 138.163-62.865Q138.028-63.169 137.812-63.403Q137.597-63.638 137.308-63.773Q137.019-63.908 136.691-63.908Q136.049-63.908 135.591-63.614Q135.132-63.320 134.900-62.807Q134.668-62.294 134.668-61.659Q134.668-61.187 134.798-60.778Q134.927-60.370 135.187-60.057Q135.447-59.745 135.826-59.575Q136.206-59.406 136.698-59.406Q137.026-59.406 137.320-59.522Q137.614-59.639 137.848-59.854Q138.082-60.069 138.212-60.358Q138.342-60.647 138.342-60.975Q138.342-61.002 138.369-61.026Q138.397-61.050 138.417-61.050L138.530-61.050Q138.568-61.050 138.588-61.025Q138.609-60.999 138.609-60.961Q138.609-60.565 138.443-60.228Q138.277-59.891 137.990-59.644Q137.703-59.396 137.334-59.261Q136.965-59.126 136.585-59.126Q136.066-59.126 135.573-59.316Q135.081-59.505 134.702-59.849Q134.322-60.192 134.105-60.661Q133.888-61.129 133.888-61.659\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M41.929-59.266L40.193-59.266L40.193-59.546Q40.422-59.546 40.571-59.580Q40.719-59.615 40.719-59.755L40.719-61.604Q40.719-61.874 40.612-61.935Q40.504-61.997 40.193-61.997L40.193-62.277L41.222-62.352L41.222-61.645Q41.352-61.953 41.594-62.152Q41.837-62.352 42.155-62.352Q42.374-62.352 42.545-62.228Q42.716-62.103 42.716-61.891Q42.716-61.754 42.616-61.655Q42.517-61.556 42.384-61.556Q42.247-61.556 42.148-61.655Q42.049-61.754 42.049-61.891Q42.049-62.031 42.148-62.130Q41.858-62.130 41.658-61.934Q41.458-61.737 41.365-61.443Q41.273-61.149 41.273-60.869L41.273-59.755Q41.273-59.546 41.929-59.546L41.929-59.266M43.259-60.801Q43.259-61.122 43.384-61.411Q43.509-61.700 43.734-61.923Q43.960-62.147 44.255-62.267Q44.551-62.387 44.869-62.387Q45.197-62.387 45.459-62.287Q45.720-62.188 45.896-62.006Q46.072-61.823 46.166-61.565Q46.260-61.307 46.260-60.975Q46.260-60.883 46.178-60.862L43.922-60.862L43.922-60.801Q43.922-60.213 44.206-59.830Q44.490-59.447 45.057-59.447Q45.378-59.447 45.646-59.640Q45.915-59.833 46.004-60.148Q46.011-60.189 46.086-60.203L46.178-60.203Q46.260-60.179 46.260-60.107Q46.260-60.100 46.253-60.073Q46.140-59.676 45.770-59.437Q45.399-59.198 44.975-59.198Q44.537-59.198 44.137-59.406Q43.738-59.615 43.498-59.982Q43.259-60.349 43.259-60.801M43.929-61.071L45.744-61.071Q45.744-61.348 45.646-61.600Q45.549-61.853 45.351-62.009Q45.153-62.164 44.869-62.164Q44.592-62.164 44.378-62.006Q44.165-61.847 44.047-61.592Q43.929-61.337 43.929-61.071M46.906-59.994Q46.906-60.326 47.130-60.553Q47.354-60.780 47.697-60.908Q48.041-61.037 48.413-61.089Q48.786-61.142 49.090-61.142L49.090-61.395Q49.090-61.600 48.982-61.780Q48.875-61.959 48.694-62.062Q48.512-62.164 48.304-62.164Q47.897-62.164 47.661-62.072Q47.750-62.035 47.796-61.951Q47.843-61.867 47.843-61.765Q47.843-61.669 47.796-61.590Q47.750-61.512 47.670-61.467Q47.590-61.423 47.501-61.423Q47.350-61.423 47.250-61.520Q47.149-61.618 47.149-61.765Q47.149-62.387 48.304-62.387Q48.516-62.387 48.765-62.323Q49.015-62.260 49.217-62.141Q49.418-62.021 49.545-61.836Q49.671-61.652 49.671-61.409L49.671-59.833Q49.671-59.717 49.733-59.621Q49.794-59.526 49.907-59.526Q50.016-59.526 50.081-59.620Q50.146-59.714 50.146-59.833L50.146-60.281L50.413-60.281L50.413-59.833Q50.413-59.563 50.186-59.398Q49.958-59.232 49.678-59.232Q49.469-59.232 49.333-59.386Q49.196-59.539 49.172-59.755Q49.025-59.488 48.743-59.343Q48.461-59.198 48.136-59.198Q47.860-59.198 47.576-59.273Q47.292-59.348 47.099-59.527Q46.906-59.707 46.906-59.994M47.521-59.994Q47.521-59.820 47.622-59.690Q47.723-59.560 47.878-59.490Q48.034-59.420 48.198-59.420Q48.417-59.420 48.625-59.517Q48.834-59.615 48.962-59.796Q49.090-59.977 49.090-60.203L49.090-60.931Q48.765-60.931 48.400-60.840Q48.034-60.749 47.778-60.537Q47.521-60.326 47.521-59.994M50.830-60.777Q50.830-61.115 50.970-61.406Q51.110-61.696 51.355-61.910Q51.599-62.123 51.903-62.238Q52.207-62.352 52.532-62.352Q52.802-62.352 53.065-62.253Q53.328-62.154 53.520-61.976L53.520-63.374Q53.520-63.644 53.412-63.706Q53.304-63.767 52.993-63.767L52.993-64.048L54.070-64.123L54.070-59.939Q54.070-59.751 54.125-59.668Q54.179-59.584 54.280-59.565Q54.381-59.546 54.596-59.546L54.596-59.266L53.489-59.198L53.489-59.615Q53.072-59.198 52.447-59.198Q52.016-59.198 51.643-59.410Q51.271-59.621 51.050-59.982Q50.830-60.343 50.830-60.777M52.505-59.420Q52.713-59.420 52.899-59.492Q53.086-59.563 53.240-59.700Q53.393-59.837 53.489-60.015L53.489-61.624Q53.404-61.771 53.258-61.891Q53.113-62.011 52.944-62.070Q52.775-62.130 52.594-62.130Q52.033-62.130 51.765-61.741Q51.496-61.351 51.496-60.770Q51.496-60.199 51.730-59.809Q51.965-59.420 52.505-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M57.916-60.749Q57.916-61.091 58.051-61.390Q58.186-61.689 58.426-61.913Q58.665-62.137 58.983-62.262Q59.301-62.387 59.632-62.387Q60.077-62.387 60.476-62.171Q60.876-61.956 61.111-61.578Q61.345-61.201 61.345-60.749Q61.345-60.408 61.203-60.124Q61.061-59.840 60.817-59.633Q60.572-59.427 60.263-59.312Q59.954-59.198 59.632-59.198Q59.202-59.198 58.800-59.399Q58.398-59.601 58.157-59.953Q57.916-60.305 57.916-60.749M59.632-59.447Q60.234-59.447 60.458-59.825Q60.682-60.203 60.682-60.835Q60.682-61.447 60.447-61.806Q60.213-62.164 59.632-62.164Q58.580-62.164 58.580-60.835Q58.580-60.203 58.805-59.825Q59.031-59.447 59.632-59.447M63.689-59.266L61.953-59.266L61.953-59.546Q62.182-59.546 62.331-59.580Q62.479-59.615 62.479-59.755L62.479-61.604Q62.479-61.874 62.372-61.935Q62.264-61.997 61.953-61.997L61.953-62.277L62.982-62.352L62.982-61.645Q63.112-61.953 63.354-62.152Q63.597-62.352 63.915-62.352Q64.134-62.352 64.305-62.228Q64.476-62.103 64.476-61.891Q64.476-61.754 64.376-61.655Q64.277-61.556 64.144-61.556Q64.007-61.556 63.908-61.655Q63.809-61.754 63.809-61.891Q63.809-62.031 63.908-62.130Q63.618-62.130 63.418-61.934Q63.218-61.737 63.125-61.443Q63.033-61.149 63.033-60.869L63.033-59.755Q63.033-59.546 63.689-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M69.151-59.293L68.170-61.792Q68.109-61.935 67.991-61.970Q67.873-62.004 67.657-62.004L67.657-62.284L69.137-62.284L69.137-62.004Q68.758-62.004 68.758-61.843Q68.758-61.833 68.772-61.792L69.486-59.960L70.159-61.665Q70.129-61.737 70.129-61.765Q70.129-61.792 70.101-61.792Q70.040-61.939 69.922-61.971Q69.804-62.004 69.592-62.004L69.592-62.284L70.990-62.284L70.990-62.004Q70.614-62.004 70.614-61.843Q70.614-61.812 70.621-61.792L71.376-59.854L72.063-61.604Q72.084-61.655 72.084-61.710Q72.084-61.850 71.971-61.927Q71.858-62.004 71.718-62.004L71.718-62.284L72.938-62.284L72.938-62.004Q72.733-62.004 72.578-61.898Q72.422-61.792 72.350-61.604L71.445-59.293Q71.410-59.198 71.298-59.198L71.229-59.198Q71.120-59.198 71.082-59.293L70.300-61.296L69.513-59.293Q69.479-59.198 69.366-59.198L69.298-59.198Q69.189-59.198 69.151-59.293M75.218-59.266L73.482-59.266L73.482-59.546Q73.711-59.546 73.859-59.580Q74.008-59.615 74.008-59.755L74.008-61.604Q74.008-61.874 73.900-61.935Q73.793-61.997 73.482-61.997L73.482-62.277L74.511-62.352L74.511-61.645Q74.640-61.953 74.883-62.152Q75.126-62.352 75.444-62.352Q75.662-62.352 75.833-62.228Q76.004-62.103 76.004-61.891Q76.004-61.754 75.905-61.655Q75.806-61.556 75.673-61.556Q75.536-61.556 75.437-61.655Q75.338-61.754 75.338-61.891Q75.338-62.031 75.437-62.130Q75.146-62.130 74.946-61.934Q74.746-61.737 74.654-61.443Q74.562-61.149 74.562-60.869L74.562-59.755Q74.562-59.546 75.218-59.546L75.218-59.266M78.205-59.266L76.654-59.266L76.654-59.546Q76.879-59.546 77.028-59.580Q77.177-59.615 77.177-59.755L77.177-61.604Q77.177-61.792 77.129-61.876Q77.081-61.959 76.983-61.978Q76.886-61.997 76.674-61.997L76.674-62.277L77.730-62.352L77.730-59.755Q77.730-59.615 77.862-59.580Q77.993-59.546 78.205-59.546L78.205-59.266M76.934-63.573Q76.934-63.744 77.057-63.863Q77.180-63.983 77.351-63.983Q77.518-63.983 77.641-63.863Q77.764-63.744 77.764-63.573Q77.764-63.398 77.641-63.275Q77.518-63.152 77.351-63.152Q77.180-63.152 77.057-63.275Q76.934-63.398 76.934-63.573M79.378-60.107L79.378-62.004L78.739-62.004L78.739-62.226Q79.056-62.226 79.273-62.436Q79.491-62.646 79.591-62.956Q79.692-63.265 79.692-63.573L79.959-63.573L79.959-62.284L81.035-62.284L81.035-62.004L79.959-62.004L79.959-60.120Q79.959-59.844 80.063-59.645Q80.167-59.447 80.427-59.447Q80.584-59.447 80.690-59.551Q80.796-59.656 80.846-59.809Q80.895-59.963 80.895-60.120L80.895-60.534L81.162-60.534L81.162-60.107Q81.162-59.881 81.063-59.671Q80.964-59.461 80.779-59.329Q80.595-59.198 80.366-59.198Q79.928-59.198 79.653-59.435Q79.378-59.673 79.378-60.107M81.931-60.801Q81.931-61.122 82.056-61.411Q82.180-61.700 82.406-61.923Q82.632-62.147 82.927-62.267Q83.223-62.387 83.541-62.387Q83.869-62.387 84.130-62.287Q84.392-62.188 84.568-62.006Q84.744-61.823 84.838-61.565Q84.932-61.307 84.932-60.975Q84.932-60.883 84.850-60.862L82.594-60.862L82.594-60.801Q82.594-60.213 82.878-59.830Q83.161-59.447 83.729-59.447Q84.050-59.447 84.318-59.640Q84.587-59.833 84.676-60.148Q84.682-60.189 84.758-60.203L84.850-60.203Q84.932-60.179 84.932-60.107Q84.932-60.100 84.925-60.073Q84.812-59.676 84.441-59.437Q84.071-59.198 83.647-59.198Q83.209-59.198 82.809-59.406Q82.409-59.615 82.170-59.982Q81.931-60.349 81.931-60.801M82.601-61.071L84.416-61.071Q84.416-61.348 84.318-61.600Q84.221-61.853 84.023-62.009Q83.824-62.164 83.541-62.164Q83.264-62.164 83.050-62.006Q82.837-61.847 82.719-61.592Q82.601-61.337 82.601-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M88.235-60.777Q88.235-61.115 88.376-61.406Q88.516-61.696 88.760-61.910Q89.004-62.123 89.309-62.238Q89.613-62.352 89.938-62.352Q90.208-62.352 90.471-62.253Q90.734-62.154 90.925-61.976L90.925-63.374Q90.925-63.644 90.818-63.706Q90.710-63.767 90.399-63.767L90.399-64.048L91.476-64.123L91.476-59.939Q91.476-59.751 91.530-59.668Q91.585-59.584 91.686-59.565Q91.787-59.546 92.002-59.546L92.002-59.266L90.895-59.198L90.895-59.615Q90.478-59.198 89.852-59.198Q89.421-59.198 89.049-59.410Q88.676-59.621 88.456-59.982Q88.235-60.343 88.235-60.777M89.910-59.420Q90.119-59.420 90.305-59.492Q90.491-59.563 90.645-59.700Q90.799-59.837 90.895-60.015L90.895-61.624Q90.809-61.771 90.664-61.891Q90.519-62.011 90.349-62.070Q90.180-62.130 89.999-62.130Q89.439-62.130 89.170-61.741Q88.902-61.351 88.902-60.770Q88.902-60.199 89.136-59.809Q89.370-59.420 89.910-59.420M92.710-59.994Q92.710-60.326 92.933-60.553Q93.157-60.780 93.501-60.908Q93.844-61.037 94.217-61.089Q94.589-61.142 94.894-61.142L94.894-61.395Q94.894-61.600 94.786-61.780Q94.678-61.959 94.497-62.062Q94.316-62.164 94.108-62.164Q93.701-62.164 93.465-62.072Q93.554-62.035 93.600-61.951Q93.646-61.867 93.646-61.765Q93.646-61.669 93.600-61.590Q93.554-61.512 93.473-61.467Q93.393-61.423 93.304-61.423Q93.154-61.423 93.053-61.520Q92.952-61.618 92.952-61.765Q92.952-62.387 94.108-62.387Q94.319-62.387 94.569-62.323Q94.818-62.260 95.020-62.141Q95.222-62.021 95.348-61.836Q95.475-61.652 95.475-61.409L95.475-59.833Q95.475-59.717 95.536-59.621Q95.598-59.526 95.711-59.526Q95.820-59.526 95.885-59.620Q95.950-59.714 95.950-59.833L95.950-60.281L96.216-60.281L96.216-59.833Q96.216-59.563 95.989-59.398Q95.762-59.232 95.482-59.232Q95.273-59.232 95.136-59.386Q95-59.539 94.976-59.755Q94.829-59.488 94.547-59.343Q94.265-59.198 93.940-59.198Q93.663-59.198 93.379-59.273Q93.096-59.348 92.903-59.527Q92.710-59.707 92.710-59.994M93.325-59.994Q93.325-59.820 93.426-59.690Q93.526-59.560 93.682-59.490Q93.838-59.420 94.002-59.420Q94.220-59.420 94.429-59.517Q94.637-59.615 94.765-59.796Q94.894-59.977 94.894-60.203L94.894-60.931Q94.569-60.931 94.203-60.840Q93.838-60.749 93.581-60.537Q93.325-60.326 93.325-59.994M97.160-60.107L97.160-62.004L96.521-62.004L96.521-62.226Q96.838-62.226 97.056-62.436Q97.273-62.646 97.373-62.956Q97.474-63.265 97.474-63.573L97.741-63.573L97.741-62.284L98.817-62.284L98.817-62.004L97.741-62.004L97.741-60.120Q97.741-59.844 97.845-59.645Q97.949-59.447 98.209-59.447Q98.366-59.447 98.472-59.551Q98.578-59.656 98.628-59.809Q98.677-59.963 98.677-60.120L98.677-60.534L98.944-60.534L98.944-60.107Q98.944-59.881 98.845-59.671Q98.746-59.461 98.561-59.329Q98.377-59.198 98.148-59.198Q97.710-59.198 97.435-59.435Q97.160-59.673 97.160-60.107M99.812-59.994Q99.812-60.326 100.036-60.553Q100.260-60.780 100.603-60.908Q100.947-61.037 101.319-61.089Q101.692-61.142 101.996-61.142L101.996-61.395Q101.996-61.600 101.889-61.780Q101.781-61.959 101.600-62.062Q101.419-62.164 101.210-62.164Q100.803-62.164 100.567-62.072Q100.656-62.035 100.702-61.951Q100.749-61.867 100.749-61.765Q100.749-61.669 100.702-61.590Q100.656-61.512 100.576-61.467Q100.496-61.423 100.407-61.423Q100.256-61.423 100.156-61.520Q100.055-61.618 100.055-61.765Q100.055-62.387 101.210-62.387Q101.422-62.387 101.671-62.323Q101.921-62.260 102.123-62.141Q102.324-62.021 102.451-61.836Q102.577-61.652 102.577-61.409L102.577-59.833Q102.577-59.717 102.639-59.621Q102.700-59.526 102.813-59.526Q102.922-59.526 102.987-59.620Q103.052-59.714 103.052-59.833L103.052-60.281L103.319-60.281L103.319-59.833Q103.319-59.563 103.092-59.398Q102.864-59.232 102.584-59.232Q102.376-59.232 102.239-59.386Q102.102-59.539 102.078-59.755Q101.931-59.488 101.649-59.343Q101.367-59.198 101.043-59.198Q100.766-59.198 100.482-59.273Q100.198-59.348 100.005-59.527Q99.812-59.707 99.812-59.994M100.427-59.994Q100.427-59.820 100.528-59.690Q100.629-59.560 100.785-59.490Q100.940-59.420 101.104-59.420Q101.323-59.420 101.531-59.517Q101.740-59.615 101.868-59.796Q101.996-59.977 101.996-60.203L101.996-60.931Q101.671-60.931 101.306-60.840Q100.940-60.749 100.684-60.537Q100.427-60.326 100.427-59.994\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M108.125-59.266L106.491-59.266L106.491-59.546Q106.720-59.546 106.869-59.580Q107.018-59.615 107.018-59.755L107.018-61.604Q107.018-61.874 106.910-61.935Q106.802-61.997 106.491-61.997L106.491-62.277L107.551-62.352L107.551-61.703Q107.722-62.011 108.026-62.182Q108.330-62.352 108.675-62.352Q109.075-62.352 109.352-62.212Q109.629-62.072 109.714-61.724Q109.882-62.017 110.181-62.185Q110.480-62.352 110.825-62.352Q111.331-62.352 111.615-62.129Q111.899-61.905 111.899-61.409L111.899-59.755Q111.899-59.618 112.047-59.582Q112.196-59.546 112.421-59.546L112.421-59.266L110.791-59.266L110.791-59.546Q111.017-59.546 111.167-59.582Q111.317-59.618 111.317-59.755L111.317-61.395Q111.317-61.730 111.198-61.930Q111.078-62.130 110.764-62.130Q110.494-62.130 110.260-61.994Q110.025-61.857 109.887-61.623Q109.749-61.389 109.749-61.115L109.749-59.755Q109.749-59.618 109.897-59.582Q110.046-59.546 110.272-59.546L110.272-59.266L108.641-59.266L108.641-59.546Q108.870-59.546 109.019-59.580Q109.168-59.615 109.168-59.755L109.168-61.395Q109.168-61.730 109.048-61.930Q108.928-62.130 108.614-62.130Q108.344-62.130 108.110-61.994Q107.876-61.857 107.737-61.623Q107.599-61.389 107.599-61.115L107.599-59.755Q107.599-59.618 107.749-59.582Q107.900-59.546 108.125-59.546L108.125-59.266M112.968-60.801Q112.968-61.122 113.093-61.411Q113.218-61.700 113.443-61.923Q113.669-62.147 113.965-62.267Q114.260-62.387 114.578-62.387Q114.906-62.387 115.168-62.287Q115.429-62.188 115.605-62.006Q115.781-61.823 115.875-61.565Q115.969-61.307 115.969-60.975Q115.969-60.883 115.887-60.862L113.631-60.862L113.631-60.801Q113.631-60.213 113.915-59.830Q114.199-59.447 114.766-59.447Q115.087-59.447 115.356-59.640Q115.624-59.833 115.713-60.148Q115.720-60.189 115.795-60.203L115.887-60.203Q115.969-60.179 115.969-60.107Q115.969-60.100 115.962-60.073Q115.850-59.676 115.479-59.437Q115.108-59.198 114.684-59.198Q114.247-59.198 113.847-59.406Q113.447-59.615 113.208-59.982Q112.968-60.349 112.968-60.801M113.638-61.071L115.453-61.071Q115.453-61.348 115.356-61.600Q115.258-61.853 115.060-62.009Q114.862-62.164 114.578-62.164Q114.301-62.164 114.088-62.006Q113.874-61.847 113.756-61.592Q113.638-61.337 113.638-61.071M118.239-59.266L116.605-59.266L116.605-59.546Q116.834-59.546 116.983-59.580Q117.131-59.615 117.131-59.755L117.131-61.604Q117.131-61.874 117.024-61.935Q116.916-61.997 116.605-61.997L116.605-62.277L117.665-62.352L117.665-61.703Q117.836-62.011 118.140-62.182Q118.444-62.352 118.789-62.352Q119.189-62.352 119.466-62.212Q119.743-62.072 119.828-61.724Q119.996-62.017 120.295-62.185Q120.594-62.352 120.939-62.352Q121.445-62.352 121.729-62.129Q122.012-61.905 122.012-61.409L122.012-59.755Q122.012-59.618 122.161-59.582Q122.310-59.546 122.535-59.546L122.535-59.266L120.905-59.266L120.905-59.546Q121.130-59.546 121.281-59.582Q121.431-59.618 121.431-59.755L121.431-61.395Q121.431-61.730 121.312-61.930Q121.192-62.130 120.878-62.130Q120.608-62.130 120.373-61.994Q120.139-61.857 120.001-61.623Q119.862-61.389 119.862-61.115L119.862-59.755Q119.862-59.618 120.011-59.582Q120.160-59.546 120.385-59.546L120.385-59.266L118.755-59.266L118.755-59.546Q118.984-59.546 119.133-59.580Q119.281-59.615 119.281-59.755L119.281-61.395Q119.281-61.730 119.162-61.930Q119.042-62.130 118.728-62.130Q118.458-62.130 118.223-61.994Q117.989-61.857 117.851-61.623Q117.712-61.389 117.712-61.115L117.712-59.755Q117.712-59.618 117.863-59.582Q118.013-59.546 118.239-59.546L118.239-59.266M123.082-60.749Q123.082-61.091 123.217-61.390Q123.352-61.689 123.591-61.913Q123.831-62.137 124.149-62.262Q124.466-62.387 124.798-62.387Q125.242-62.387 125.642-62.171Q126.042-61.956 126.276-61.578Q126.510-61.201 126.510-60.749Q126.510-60.408 126.369-60.124Q126.227-59.840 125.982-59.633Q125.738-59.427 125.429-59.312Q125.119-59.198 124.798-59.198Q124.367-59.198 123.966-59.399Q123.564-59.601 123.323-59.953Q123.082-60.305 123.082-60.749M124.798-59.447Q125.400-59.447 125.623-59.825Q125.847-60.203 125.847-60.835Q125.847-61.447 125.613-61.806Q125.379-62.164 124.798-62.164Q123.745-62.164 123.745-60.835Q123.745-60.203 123.971-59.825Q124.196-59.447 124.798-59.447M128.855-59.266L127.119-59.266L127.119-59.546Q127.348-59.546 127.496-59.580Q127.645-59.615 127.645-59.755L127.645-61.604Q127.645-61.874 127.537-61.935Q127.430-61.997 127.119-61.997L127.119-62.277L128.148-62.352L128.148-61.645Q128.277-61.953 128.520-62.152Q128.763-62.352 129.081-62.352Q129.299-62.352 129.470-62.228Q129.641-62.103 129.641-61.891Q129.641-61.754 129.542-61.655Q129.443-61.556 129.310-61.556Q129.173-61.556 129.074-61.655Q128.975-61.754 128.975-61.891Q128.975-62.031 129.074-62.130Q128.783-62.130 128.583-61.934Q128.383-61.737 128.291-61.443Q128.199-61.149 128.199-60.869L128.199-59.755Q128.199-59.546 128.855-59.546L128.855-59.266M130.561-58.131Q130.691-58.063 130.827-58.063Q130.998-58.063 131.149-58.152Q131.299-58.241 131.410-58.386Q131.521-58.531 131.600-58.699L131.863-59.266L130.694-61.792Q130.619-61.939 130.489-61.971Q130.359-62.004 130.127-62.004L130.127-62.284L131.648-62.284L131.648-62.004Q131.299-62.004 131.299-61.857Q131.302-61.836 131.304-61.819Q131.306-61.802 131.306-61.792L132.164-59.933L132.936-61.604Q132.970-61.672 132.970-61.751Q132.970-61.864 132.887-61.934Q132.803-62.004 132.690-62.004L132.690-62.284L133.886-62.284L133.886-62.004Q133.668-62.004 133.495-61.900Q133.322-61.795 133.230-61.604L131.894-58.699Q131.723-58.329 131.453-58.083Q131.183-57.837 130.827-57.837Q130.557-57.837 130.338-58.003Q130.120-58.169 130.120-58.432Q130.120-58.569 130.212-58.658Q130.304-58.746 130.444-58.746Q130.581-58.746 130.670-58.658Q130.759-58.569 130.759-58.432Q130.759-58.329 130.706-58.251Q130.653-58.172 130.561-58.131\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M139.275-57.516Q138.725-57.916 138.354-58.471Q137.983-59.027 137.802-59.673Q137.621-60.319 137.621-61.016Q137.621-61.529 137.721-62.024Q137.822-62.520 138.027-62.971Q138.232-63.422 138.545-63.814Q138.858-64.205 139.275-64.509Q139.285-64.513 139.292-64.514Q139.299-64.516 139.309-64.516L139.377-64.516Q139.412-64.516 139.434-64.492Q139.456-64.468 139.456-64.431Q139.456-64.386 139.429-64.369Q139.080-64.068 138.827-63.684Q138.574-63.299 138.422-62.858Q138.270-62.417 138.198-61.961Q138.126-61.505 138.126-61.016Q138.126-60.015 138.436-59.128Q138.745-58.241 139.429-57.656Q139.456-57.639 139.456-57.595Q139.456-57.557 139.434-57.533Q139.412-57.509 139.377-57.509L139.309-57.509Q139.302-57.513 139.294-57.514Q139.285-57.516 139.275-57.516M141.855-59.293L140.727-61.792Q140.656-61.939 140.526-61.971Q140.396-62.004 140.167-62.004L140.167-62.284L141.681-62.284L141.681-62.004Q141.329-62.004 141.329-61.857Q141.329-61.812 141.339-61.792L142.204-59.874L142.983-61.604Q143.018-61.672 143.018-61.751Q143.018-61.864 142.934-61.934Q142.850-62.004 142.730-62.004L142.730-62.284L143.927-62.284L143.927-62.004Q143.708-62.004 143.537-61.901Q143.366-61.799 143.277-61.604L142.242-59.293Q142.194-59.198 142.088-59.198L142.009-59.198Q141.903-59.198 141.855-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 121.251)\">\u003Cpath d=\"M144.100-59.994Q144.100-60.326 144.323-60.553Q144.547-60.780 144.891-60.908Q145.234-61.037 145.607-61.089Q145.979-61.142 146.284-61.142L146.284-61.395Q146.284-61.600 146.176-61.780Q146.068-61.959 145.887-62.062Q145.706-62.164 145.498-62.164Q145.091-62.164 144.855-62.072Q144.944-62.035 144.990-61.951Q145.036-61.867 145.036-61.765Q145.036-61.669 144.990-61.590Q144.944-61.512 144.863-61.467Q144.783-61.423 144.694-61.423Q144.544-61.423 144.443-61.520Q144.342-61.618 144.342-61.765Q144.342-62.387 145.498-62.387Q145.709-62.387 145.959-62.323Q146.208-62.260 146.410-62.141Q146.612-62.021 146.738-61.836Q146.865-61.652 146.865-61.409L146.865-59.833Q146.865-59.717 146.926-59.621Q146.988-59.526 147.101-59.526Q147.210-59.526 147.275-59.620Q147.340-59.714 147.340-59.833L147.340-60.281L147.606-60.281L147.606-59.833Q147.606-59.563 147.379-59.398Q147.152-59.232 146.872-59.232Q146.663-59.232 146.526-59.386Q146.390-59.539 146.366-59.755Q146.219-59.488 145.937-59.343Q145.655-59.198 145.330-59.198Q145.053-59.198 144.769-59.273Q144.486-59.348 144.293-59.527Q144.100-59.707 144.100-59.994M144.715-59.994Q144.715-59.820 144.816-59.690Q144.916-59.560 145.072-59.490Q145.227-59.420 145.392-59.420Q145.610-59.420 145.819-59.517Q146.027-59.615 146.155-59.796Q146.284-59.977 146.284-60.203L146.284-60.931Q145.959-60.931 145.593-60.840Q145.227-60.749 144.971-60.537Q144.715-60.326 144.715-59.994M149.691-59.266L148.088-59.266L148.088-59.546Q148.314-59.546 148.463-59.580Q148.611-59.615 148.611-59.755L148.611-63.374Q148.611-63.644 148.504-63.706Q148.396-63.767 148.088-63.767L148.088-64.048L149.165-64.123L149.165-59.755Q149.165-59.618 149.315-59.582Q149.466-59.546 149.691-59.546L149.691-59.266M152.128-59.266L150.392-59.266L150.392-59.546Q151.113-59.546 151.113-59.946L151.113-63.556Q151.113-63.767 150.392-63.767L150.392-64.048L151.749-64.048Q151.845-64.048 151.896-63.949L153.571-59.974L155.242-63.949Q155.290-64.048 155.389-64.048L156.739-64.048L156.739-63.767Q156.018-63.767 156.018-63.556L156.018-59.755Q156.018-59.546 156.739-59.546L156.739-59.266L154.682-59.266L154.682-59.546Q155.403-59.546 155.403-59.755L155.403-63.767L153.550-59.365Q153.502-59.266 153.393-59.266Q153.280-59.266 153.232-59.365L151.407-63.696L151.407-59.946Q151.407-59.546 152.128-59.546L152.128-59.266M157.795-57.509L157.727-57.509Q157.693-57.509 157.671-57.535Q157.648-57.560 157.648-57.595Q157.648-57.639 157.679-57.656Q158.035-57.960 158.284-58.350Q158.534-58.740 158.686-59.172Q158.838-59.604 158.908-60.073Q158.978-60.541 158.978-61.016Q158.978-61.495 158.908-61.961Q158.838-62.428 158.684-62.863Q158.530-63.299 158.279-63.687Q158.028-64.075 157.679-64.369Q157.648-64.386 157.648-64.431Q157.648-64.465 157.671-64.490Q157.693-64.516 157.727-64.516L157.795-64.516Q157.806-64.516 157.814-64.514Q157.823-64.513 157.833-64.509Q158.376-64.109 158.749-63.556Q159.122-63.002 159.303-62.356Q159.484-61.710 159.484-61.016Q159.484-60.315 159.303-59.668Q159.122-59.020 158.747-58.466Q158.373-57.912 157.833-57.516Q157.823-57.516 157.814-57.514Q157.806-57.513 157.795-57.509\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M41.567-59.293L40.586-61.792Q40.525-61.935 40.407-61.970Q40.289-62.004 40.073-62.004L40.073-62.284L41.553-62.284L41.553-62.004Q41.174-62.004 41.174-61.843Q41.174-61.833 41.188-61.792L41.902-59.960L42.575-61.665Q42.545-61.737 42.545-61.765Q42.545-61.792 42.517-61.792Q42.456-61.939 42.338-61.971Q42.220-62.004 42.008-62.004L42.008-62.284L43.406-62.284L43.406-62.004Q43.030-62.004 43.030-61.843Q43.030-61.812 43.037-61.792L43.792-59.854L44.479-61.604Q44.500-61.655 44.500-61.710Q44.500-61.850 44.387-61.927Q44.274-62.004 44.134-62.004L44.134-62.284L45.354-62.284L45.354-62.004Q45.149-62.004 44.994-61.898Q44.838-61.792 44.766-61.604L43.861-59.293Q43.826-59.198 43.714-59.198L43.645-59.198Q43.536-59.198 43.498-59.293L42.716-61.296L41.929-59.293Q41.895-59.198 41.782-59.198L41.714-59.198Q41.605-59.198 41.567-59.293M47.634-59.266L45.898-59.266L45.898-59.546Q46.127-59.546 46.275-59.580Q46.424-59.615 46.424-59.755L46.424-61.604Q46.424-61.874 46.316-61.935Q46.209-61.997 45.898-61.997L45.898-62.277L46.927-62.352L46.927-61.645Q47.056-61.953 47.299-62.152Q47.542-62.352 47.860-62.352Q48.078-62.352 48.249-62.228Q48.420-62.103 48.420-61.891Q48.420-61.754 48.321-61.655Q48.222-61.556 48.089-61.556Q47.952-61.556 47.853-61.655Q47.754-61.754 47.754-61.891Q47.754-62.031 47.853-62.130Q47.562-62.130 47.362-61.934Q47.162-61.737 47.070-61.443Q46.978-61.149 46.978-60.869L46.978-59.755Q46.978-59.546 47.634-59.546L47.634-59.266M50.621-59.266L49.070-59.266L49.070-59.546Q49.295-59.546 49.444-59.580Q49.593-59.615 49.593-59.755L49.593-61.604Q49.593-61.792 49.545-61.876Q49.497-61.959 49.399-61.978Q49.302-61.997 49.090-61.997L49.090-62.277L50.146-62.352L50.146-59.755Q50.146-59.615 50.278-59.580Q50.409-59.546 50.621-59.546L50.621-59.266M49.350-63.573Q49.350-63.744 49.473-63.863Q49.596-63.983 49.767-63.983Q49.934-63.983 50.057-63.863Q50.180-63.744 50.180-63.573Q50.180-63.398 50.057-63.275Q49.934-63.152 49.767-63.152Q49.596-63.152 49.473-63.275Q49.350-63.398 49.350-63.573M51.794-60.107L51.794-62.004L51.155-62.004L51.155-62.226Q51.472-62.226 51.689-62.436Q51.907-62.646 52.007-62.956Q52.108-63.265 52.108-63.573L52.375-63.573L52.375-62.284L53.451-62.284L53.451-62.004L52.375-62.004L52.375-60.120Q52.375-59.844 52.479-59.645Q52.583-59.447 52.843-59.447Q53-59.447 53.106-59.551Q53.212-59.656 53.262-59.809Q53.311-59.963 53.311-60.120L53.311-60.534L53.578-60.534L53.578-60.107Q53.578-59.881 53.479-59.671Q53.380-59.461 53.195-59.329Q53.011-59.198 52.782-59.198Q52.344-59.198 52.069-59.435Q51.794-59.673 51.794-60.107M54.347-60.801Q54.347-61.122 54.472-61.411Q54.596-61.700 54.822-61.923Q55.048-62.147 55.343-62.267Q55.639-62.387 55.957-62.387Q56.285-62.387 56.546-62.287Q56.808-62.188 56.984-62.006Q57.160-61.823 57.254-61.565Q57.348-61.307 57.348-60.975Q57.348-60.883 57.266-60.862L55.010-60.862L55.010-60.801Q55.010-60.213 55.294-59.830Q55.577-59.447 56.145-59.447Q56.466-59.447 56.734-59.640Q57.003-59.833 57.092-60.148Q57.098-60.189 57.174-60.203L57.266-60.203Q57.348-60.179 57.348-60.107Q57.348-60.100 57.341-60.073Q57.228-59.676 56.857-59.437Q56.487-59.198 56.063-59.198Q55.625-59.198 55.225-59.406Q54.825-59.615 54.586-59.982Q54.347-60.349 54.347-60.801M55.017-61.071L56.832-61.071Q56.832-61.348 56.734-61.600Q56.637-61.853 56.439-62.009Q56.240-62.164 55.957-62.164Q55.680-62.164 55.466-62.006Q55.253-61.847 55.135-61.592Q55.017-61.337 55.017-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M62.241-59.293L61.113-61.792Q61.041-61.939 60.911-61.971Q60.781-62.004 60.552-62.004L60.552-62.284L62.066-62.284L62.066-62.004Q61.714-62.004 61.714-61.857Q61.714-61.812 61.725-61.792L62.589-59.874L63.369-61.604Q63.403-61.672 63.403-61.751Q63.403-61.864 63.319-61.934Q63.235-62.004 63.116-62.004L63.116-62.284L64.312-62.284L64.312-62.004Q64.093-62.004 63.922-61.901Q63.752-61.799 63.663-61.604L62.627-59.293Q62.579-59.198 62.473-59.198L62.395-59.198Q62.289-59.198 62.241-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M64.481-59.994Q64.481-60.326 64.704-60.553Q64.928-60.780 65.272-60.908Q65.615-61.037 65.988-61.089Q66.360-61.142 66.665-61.142L66.665-61.395Q66.665-61.600 66.557-61.780Q66.449-61.959 66.268-62.062Q66.087-62.164 65.879-62.164Q65.472-62.164 65.236-62.072Q65.325-62.035 65.371-61.951Q65.417-61.867 65.417-61.765Q65.417-61.669 65.371-61.590Q65.325-61.512 65.244-61.467Q65.164-61.423 65.075-61.423Q64.925-61.423 64.824-61.520Q64.723-61.618 64.723-61.765Q64.723-62.387 65.879-62.387Q66.090-62.387 66.340-62.323Q66.589-62.260 66.791-62.141Q66.993-62.021 67.119-61.836Q67.246-61.652 67.246-61.409L67.246-59.833Q67.246-59.717 67.307-59.621Q67.369-59.526 67.482-59.526Q67.591-59.526 67.656-59.620Q67.721-59.714 67.721-59.833L67.721-60.281L67.987-60.281L67.987-59.833Q67.987-59.563 67.760-59.398Q67.533-59.232 67.253-59.232Q67.044-59.232 66.907-59.386Q66.771-59.539 66.747-59.755Q66.600-59.488 66.318-59.343Q66.036-59.198 65.711-59.198Q65.434-59.198 65.150-59.273Q64.867-59.348 64.674-59.527Q64.481-59.707 64.481-59.994M65.096-59.994Q65.096-59.820 65.197-59.690Q65.297-59.560 65.453-59.490Q65.608-59.420 65.773-59.420Q65.991-59.420 66.200-59.517Q66.408-59.615 66.536-59.796Q66.665-59.977 66.665-60.203L66.665-60.931Q66.340-60.931 65.974-60.840Q65.608-60.749 65.352-60.537Q65.096-60.326 65.096-59.994M70.072-59.266L68.469-59.266L68.469-59.546Q68.695-59.546 68.844-59.580Q68.992-59.615 68.992-59.755L68.992-63.374Q68.992-63.644 68.885-63.706Q68.777-63.767 68.469-63.767L68.469-64.048L69.546-64.123L69.546-59.755Q69.546-59.618 69.696-59.582Q69.847-59.546 70.072-59.546L70.072-59.266M75.134-59.266L70.732-59.266L70.732-59.546Q71.453-59.546 71.453-59.755L71.453-63.556Q71.453-63.767 70.732-63.767L70.732-64.048L75.022-64.048L75.230-62.411L74.967-62.411Q74.909-62.882 74.806-63.147Q74.704-63.412 74.519-63.545Q74.335-63.679 74.063-63.723Q73.791-63.767 73.292-63.767L72.509-63.767Q72.321-63.767 72.233-63.733Q72.144-63.699 72.144-63.556L72.144-61.891L72.718-61.891Q73.108-61.891 73.290-61.942Q73.473-61.994 73.555-62.166Q73.637-62.339 73.637-62.711L73.900-62.711L73.900-60.790L73.637-60.790Q73.637-61.163 73.555-61.336Q73.473-61.508 73.290-61.559Q73.108-61.611 72.718-61.611L72.144-61.611L72.144-59.755Q72.144-59.615 72.233-59.580Q72.321-59.546 72.509-59.546L73.357-59.546Q73.887-59.546 74.196-59.615Q74.505-59.683 74.693-59.850Q74.881-60.018 74.989-60.320Q75.097-60.623 75.182-61.136L75.449-61.136\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M78.917-57.683Q78.917-57.701 78.930-57.748L81.586-64.410Q81.641-64.516 81.747-64.516Q81.812-64.516 81.863-64.465Q81.914-64.413 81.914-64.349Q81.914-64.325 81.913-64.313Q81.911-64.301 81.907-64.284L79.255-57.622Q79.183-57.516 79.095-57.516Q79.026-57.516 78.971-57.567Q78.917-57.619 78.917-57.683\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M87.012-59.293L85.884-61.792Q85.812-61.939 85.682-61.971Q85.552-62.004 85.323-62.004L85.323-62.284L86.837-62.284L86.837-62.004Q86.485-62.004 86.485-61.857Q86.485-61.812 86.496-61.792L87.360-59.874L88.140-61.604Q88.174-61.672 88.174-61.751Q88.174-61.864 88.090-61.934Q88.006-62.004 87.887-62.004L87.887-62.284L89.083-62.284L89.083-62.004Q88.864-62.004 88.693-61.901Q88.523-61.799 88.434-61.604L87.398-59.293Q87.350-59.198 87.244-59.198L87.166-59.198Q87.060-59.198 87.012-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M89.252-59.994Q89.252-60.326 89.475-60.553Q89.699-60.780 90.043-60.908Q90.386-61.037 90.759-61.089Q91.131-61.142 91.436-61.142L91.436-61.395Q91.436-61.600 91.328-61.780Q91.220-61.959 91.039-62.062Q90.858-62.164 90.650-62.164Q90.243-62.164 90.007-62.072Q90.096-62.035 90.142-61.951Q90.188-61.867 90.188-61.765Q90.188-61.669 90.142-61.590Q90.096-61.512 90.015-61.467Q89.935-61.423 89.846-61.423Q89.696-61.423 89.595-61.520Q89.494-61.618 89.494-61.765Q89.494-62.387 90.650-62.387Q90.861-62.387 91.111-62.323Q91.360-62.260 91.562-62.141Q91.764-62.021 91.890-61.836Q92.017-61.652 92.017-61.409L92.017-59.833Q92.017-59.717 92.078-59.621Q92.140-59.526 92.253-59.526Q92.362-59.526 92.427-59.620Q92.492-59.714 92.492-59.833L92.492-60.281L92.758-60.281L92.758-59.833Q92.758-59.563 92.531-59.398Q92.304-59.232 92.024-59.232Q91.815-59.232 91.678-59.386Q91.542-59.539 91.518-59.755Q91.371-59.488 91.089-59.343Q90.807-59.198 90.482-59.198Q90.205-59.198 89.921-59.273Q89.638-59.348 89.445-59.527Q89.252-59.707 89.252-59.994M89.867-59.994Q89.867-59.820 89.968-59.690Q90.068-59.560 90.224-59.490Q90.379-59.420 90.544-59.420Q90.762-59.420 90.971-59.517Q91.179-59.615 91.307-59.796Q91.436-59.977 91.436-60.203L91.436-60.931Q91.111-60.931 90.745-60.840Q90.379-60.749 90.123-60.537Q89.867-60.326 89.867-59.994M94.843-59.266L93.240-59.266L93.240-59.546Q93.466-59.546 93.615-59.580Q93.763-59.615 93.763-59.755L93.763-63.374Q93.763-63.644 93.656-63.706Q93.548-63.767 93.240-63.767L93.240-64.048L94.317-64.123L94.317-59.755Q94.317-59.618 94.467-59.582Q94.618-59.546 94.843-59.546L94.843-59.266M97.280-59.266L95.544-59.266L95.544-59.546Q96.265-59.546 96.265-59.946L96.265-63.556Q96.265-63.767 95.544-63.767L95.544-64.048L96.901-64.048Q96.997-64.048 97.048-63.949L98.723-59.974L100.394-63.949Q100.442-64.048 100.541-64.048L101.891-64.048L101.891-63.767Q101.170-63.767 101.170-63.556L101.170-59.755Q101.170-59.546 101.891-59.546L101.891-59.266L99.834-59.266L99.834-59.546Q100.555-59.546 100.555-59.755L100.555-63.767L98.702-59.365Q98.654-59.266 98.545-59.266Q98.432-59.266 98.384-59.365L96.559-63.696L96.559-59.946Q96.559-59.546 97.280-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M105.859-60.107L105.859-62.004L105.220-62.004L105.220-62.226Q105.538-62.226 105.755-62.436Q105.972-62.646 106.072-62.956Q106.173-63.265 106.173-63.573L106.440-63.573L106.440-62.284L107.517-62.284L107.517-62.004L106.440-62.004L106.440-60.120Q106.440-59.844 106.544-59.645Q106.648-59.447 106.908-59.447Q107.065-59.447 107.171-59.551Q107.277-59.656 107.327-59.809Q107.376-59.963 107.376-60.120L107.376-60.534L107.643-60.534L107.643-60.107Q107.643-59.881 107.544-59.671Q107.445-59.461 107.260-59.329Q107.076-59.198 106.847-59.198Q106.409-59.198 106.134-59.435Q105.859-59.673 105.859-60.107M108.412-60.749Q108.412-61.091 108.547-61.390Q108.682-61.689 108.921-61.913Q109.161-62.137 109.478-62.262Q109.796-62.387 110.128-62.387Q110.572-62.387 110.972-62.171Q111.372-61.956 111.606-61.578Q111.840-61.201 111.840-60.749Q111.840-60.408 111.698-60.124Q111.557-59.840 111.312-59.633Q111.068-59.427 110.758-59.312Q110.449-59.198 110.128-59.198Q109.697-59.198 109.296-59.399Q108.894-59.601 108.653-59.953Q108.412-60.305 108.412-60.749M110.128-59.447Q110.729-59.447 110.953-59.825Q111.177-60.203 111.177-60.835Q111.177-61.447 110.943-61.806Q110.709-62.164 110.128-62.164Q109.075-62.164 109.075-60.835Q109.075-60.203 109.301-59.825Q109.526-59.447 110.128-59.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 161.086)\">\u003Cpath d=\"M116.888-59.266L115.152-59.266L115.152-59.546Q115.381-59.546 115.530-59.580Q115.678-59.615 115.678-59.755L115.678-61.604Q115.678-61.874 115.571-61.935Q115.463-61.997 115.152-61.997L115.152-62.277L116.181-62.352L116.181-61.645Q116.311-61.953 116.553-62.152Q116.796-62.352 117.114-62.352Q117.333-62.352 117.504-62.228Q117.675-62.103 117.675-61.891Q117.675-61.754 117.575-61.655Q117.476-61.556 117.343-61.556Q117.206-61.556 117.107-61.655Q117.008-61.754 117.008-61.891Q117.008-62.031 117.107-62.130Q116.817-62.130 116.617-61.934Q116.417-61.737 116.324-61.443Q116.232-61.149 116.232-60.869L116.232-59.755Q116.232-59.546 116.888-59.546L116.888-59.266M118.218-60.801Q118.218-61.122 118.343-61.411Q118.468-61.700 118.693-61.923Q118.919-62.147 119.214-62.267Q119.510-62.387 119.828-62.387Q120.156-62.387 120.418-62.287Q120.679-62.188 120.855-62.006Q121.031-61.823 121.125-61.565Q121.219-61.307 121.219-60.975Q121.219-60.883 121.137-60.862L118.881-60.862L118.881-60.801Q118.881-60.213 119.165-59.830Q119.449-59.447 120.016-59.447Q120.337-59.447 120.605-59.640Q120.874-59.833 120.963-60.148Q120.970-60.189 121.045-60.203L121.137-60.203Q121.219-60.179 121.219-60.107Q121.219-60.100 121.212-60.073Q121.099-59.676 120.729-59.437Q120.358-59.198 119.934-59.198Q119.496-59.198 119.096-59.406Q118.697-59.615 118.457-59.982Q118.218-60.349 118.218-60.801M118.888-61.071L120.703-61.071Q120.703-61.348 120.605-61.600Q120.508-61.853 120.310-62.009Q120.112-62.164 119.828-62.164Q119.551-62.164 119.337-62.006Q119.124-61.847 119.006-61.592Q118.888-61.337 118.888-61.071M121.766-58.733Q121.766-58.979 121.962-59.163Q122.159-59.348 122.415-59.427Q122.279-59.539 122.207-59.700Q122.135-59.861 122.135-60.042Q122.135-60.363 122.347-60.609Q122.012-60.907 122.012-61.317Q122.012-61.778 122.402-62.065Q122.791-62.352 123.270-62.352Q123.741-62.352 124.076-62.106Q124.251-62.260 124.461-62.342Q124.671-62.424 124.900-62.424Q125.064-62.424 125.186-62.317Q125.307-62.209 125.307-62.045Q125.307-61.949 125.235-61.877Q125.163-61.806 125.071-61.806Q124.972-61.806 124.902-61.879Q124.832-61.953 124.832-62.052Q124.832-62.106 124.845-62.137L124.852-62.151Q124.859-62.171 124.868-62.182Q124.876-62.192 124.880-62.199Q124.524-62.199 124.237-61.976Q124.524-61.683 124.524-61.317Q124.524-61.002 124.340-60.770Q124.155-60.537 123.866-60.409Q123.577-60.281 123.270-60.281Q123.068-60.281 122.877-60.331Q122.685-60.380 122.508-60.490Q122.415-60.363 122.415-60.220Q122.415-60.038 122.543-59.903Q122.672-59.768 122.856-59.768L123.489-59.768Q123.936-59.768 124.305-59.697Q124.675-59.625 124.934-59.396Q125.194-59.167 125.194-58.733Q125.194-58.412 124.898-58.210Q124.603-58.008 124.199-57.919Q123.796-57.830 123.482-57.830Q123.164-57.830 122.761-57.919Q122.357-58.008 122.062-58.210Q121.766-58.412 121.766-58.733M122.220-58.733Q122.220-58.504 122.439-58.355Q122.658-58.206 122.950-58.138Q123.242-58.070 123.482-58.070Q123.646-58.070 123.854-58.106Q124.063-58.141 124.270-58.222Q124.476-58.302 124.608-58.430Q124.740-58.558 124.740-58.733Q124.740-59.085 124.358-59.179Q123.977-59.273 123.475-59.273L122.856-59.273Q122.617-59.273 122.419-59.122Q122.220-58.972 122.220-58.733M123.270-60.520Q123.936-60.520 123.936-61.317Q123.936-62.117 123.270-62.117Q122.600-62.117 122.600-61.317Q122.600-60.520 123.270-60.520M127.406-59.266L125.854-59.266L125.854-59.546Q126.079-59.546 126.228-59.580Q126.377-59.615 126.377-59.755L126.377-61.604Q126.377-61.792 126.329-61.876Q126.281-61.959 126.184-61.978Q126.086-61.997 125.874-61.997L125.874-62.277L126.930-62.352L126.930-59.755Q126.930-59.615 127.062-59.580Q127.194-59.546 127.406-59.546L127.406-59.266M126.134-63.573Q126.134-63.744 126.257-63.863Q126.380-63.983 126.551-63.983Q126.719-63.983 126.842-63.863Q126.965-63.744 126.965-63.573Q126.965-63.398 126.842-63.275Q126.719-63.152 126.551-63.152Q126.380-63.152 126.257-63.275Q126.134-63.398 126.134-63.573M128.052-59.273L128.052-60.336Q128.052-60.360 128.079-60.387Q128.106-60.414 128.130-60.414L128.240-60.414Q128.304-60.414 128.318-60.356Q128.414-59.922 128.660-59.671Q128.906-59.420 129.320-59.420Q129.661-59.420 129.914-59.553Q130.167-59.686 130.167-59.994Q130.167-60.151 130.073-60.266Q129.979-60.380 129.841-60.449Q129.702-60.517 129.535-60.555L128.954-60.654Q128.598-60.722 128.325-60.943Q128.052-61.163 128.052-61.505Q128.052-61.754 128.163-61.929Q128.274-62.103 128.460-62.202Q128.646-62.301 128.862-62.344Q129.077-62.387 129.320-62.387Q129.733-62.387 130.013-62.205L130.229-62.380Q130.239-62.383 130.246-62.385Q130.253-62.387 130.263-62.387L130.314-62.387Q130.342-62.387 130.366-62.363Q130.389-62.339 130.389-62.311L130.389-61.464Q130.389-61.443 130.366-61.416Q130.342-61.389 130.314-61.389L130.201-61.389Q130.174-61.389 130.148-61.414Q130.123-61.440 130.123-61.464Q130.123-61.700 130.017-61.864Q129.911-62.028 129.728-62.110Q129.545-62.192 129.313-62.192Q128.985-62.192 128.728-62.089Q128.472-61.987 128.472-61.710Q128.472-61.515 128.655-61.406Q128.838-61.296 129.067-61.255L129.641-61.149Q129.887-61.101 130.101-60.973Q130.314-60.845 130.451-60.642Q130.588-60.438 130.588-60.189Q130.588-59.676 130.222-59.437Q129.856-59.198 129.320-59.198Q128.824-59.198 128.492-59.492L128.226-59.218Q128.205-59.198 128.178-59.198L128.130-59.198Q128.106-59.198 128.079-59.225Q128.052-59.252 128.052-59.273M131.743-60.107L131.743-62.004L131.104-62.004L131.104-62.226Q131.422-62.226 131.639-62.436Q131.856-62.646 131.957-62.956Q132.057-63.265 132.057-63.573L132.324-63.573L132.324-62.284L133.401-62.284L133.401-62.004L132.324-62.004L132.324-60.120Q132.324-59.844 132.428-59.645Q132.532-59.447 132.792-59.447Q132.949-59.447 133.055-59.551Q133.161-59.656 133.211-59.809Q133.261-59.963 133.261-60.120L133.261-60.534L133.527-60.534L133.527-60.107Q133.527-59.881 133.428-59.671Q133.329-59.461 133.144-59.329Q132.960-59.198 132.731-59.198Q132.293-59.198 132.018-59.435Q131.743-59.673 131.743-60.107M134.296-60.801Q134.296-61.122 134.421-61.411Q134.546-61.700 134.771-61.923Q134.997-62.147 135.293-62.267Q135.588-62.387 135.906-62.387Q136.234-62.387 136.496-62.287Q136.757-62.188 136.933-62.006Q137.109-61.823 137.203-61.565Q137.297-61.307 137.297-60.975Q137.297-60.883 137.215-60.862L134.959-60.862L134.959-60.801Q134.959-60.213 135.243-59.830Q135.527-59.447 136.094-59.447Q136.415-59.447 136.684-59.640Q136.952-59.833 137.041-60.148Q137.048-60.189 137.123-60.203L137.215-60.203Q137.297-60.179 137.297-60.107Q137.297-60.100 137.290-60.073Q137.178-59.676 136.807-59.437Q136.436-59.198 136.012-59.198Q135.574-59.198 135.175-59.406Q134.775-59.615 134.535-59.982Q134.296-60.349 134.296-60.801M134.966-61.071L136.781-61.071Q136.781-61.348 136.684-61.600Q136.586-61.853 136.388-62.009Q136.190-62.164 135.906-62.164Q135.629-62.164 135.416-62.006Q135.202-61.847 135.084-61.592Q134.966-61.337 134.966-61.071M139.635-59.266L137.899-59.266L137.899-59.546Q138.128-59.546 138.276-59.580Q138.425-59.615 138.425-59.755L138.425-61.604Q138.425-61.874 138.317-61.935Q138.210-61.997 137.899-61.997L137.899-62.277L138.928-62.352L138.928-61.645Q139.057-61.953 139.300-62.152Q139.543-62.352 139.861-62.352Q140.079-62.352 140.250-62.228Q140.421-62.103 140.421-61.891Q140.421-61.754 140.322-61.655Q140.223-61.556 140.090-61.556Q139.953-61.556 139.854-61.655Q139.755-61.754 139.755-61.891Q139.755-62.031 139.854-62.130Q139.563-62.130 139.363-61.934Q139.163-61.737 139.071-61.443Q138.979-61.149 138.979-60.869L138.979-59.755Q138.979-59.546 139.635-59.546L139.635-59.266M141.006-59.273L141.006-60.336Q141.006-60.360 141.033-60.387Q141.060-60.414 141.084-60.414L141.194-60.414Q141.259-60.414 141.272-60.356Q141.368-59.922 141.614-59.671Q141.860-59.420 142.274-59.420Q142.616-59.420 142.868-59.553Q143.121-59.686 143.121-59.994Q143.121-60.151 143.027-60.266Q142.933-60.380 142.795-60.449Q142.657-60.517 142.489-60.555L141.908-60.654Q141.553-60.722 141.279-60.943Q141.006-61.163 141.006-61.505Q141.006-61.754 141.117-61.929Q141.228-62.103 141.414-62.202Q141.600-62.301 141.816-62.344Q142.031-62.387 142.274-62.387Q142.687-62.387 142.968-62.205L143.183-62.380Q143.193-62.383 143.200-62.385Q143.207-62.387 143.217-62.387L143.268-62.387Q143.296-62.387 143.320-62.363Q143.344-62.339 143.344-62.311L143.344-61.464Q143.344-61.443 143.320-61.416Q143.296-61.389 143.268-61.389L143.156-61.389Q143.128-61.389 143.103-61.414Q143.077-61.440 143.077-61.464Q143.077-61.700 142.971-61.864Q142.865-62.028 142.682-62.110Q142.499-62.192 142.267-62.192Q141.939-62.192 141.682-62.089Q141.426-61.987 141.426-61.710Q141.426-61.515 141.609-61.406Q141.792-61.296 142.021-61.255L142.595-61.149Q142.841-61.101 143.055-60.973Q143.268-60.845 143.405-60.642Q143.542-60.438 143.542-60.189Q143.542-59.676 143.176-59.437Q142.810-59.198 142.274-59.198Q141.778-59.198 141.447-59.492L141.180-59.218Q141.159-59.198 141.132-59.198L141.084-59.198Q141.060-59.198 141.033-59.225Q141.006-59.252 141.006-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(51.903 201.6)\">\u003Cpath d=\"M40.179-59.273L40.179-60.336Q40.179-60.360 40.207-60.387Q40.234-60.414 40.258-60.414L40.367-60.414Q40.432-60.414 40.446-60.356Q40.542-59.922 40.788-59.671Q41.034-59.420 41.448-59.420Q41.789-59.420 42.042-59.553Q42.295-59.686 42.295-59.994Q42.295-60.151 42.201-60.266Q42.107-60.380 41.969-60.449Q41.830-60.517 41.663-60.555L41.082-60.654Q40.726-60.722 40.453-60.943Q40.179-61.163 40.179-61.505Q40.179-61.754 40.291-61.929Q40.402-62.103 40.588-62.202Q40.774-62.301 40.990-62.344Q41.205-62.387 41.448-62.387Q41.861-62.387 42.141-62.205L42.357-62.380Q42.367-62.383 42.374-62.385Q42.381-62.387 42.391-62.387L42.442-62.387Q42.469-62.387 42.493-62.363Q42.517-62.339 42.517-62.311L42.517-61.464Q42.517-61.443 42.493-61.416Q42.469-61.389 42.442-61.389L42.329-61.389Q42.302-61.389 42.276-61.414Q42.251-61.440 42.251-61.464Q42.251-61.700 42.145-61.864Q42.039-62.028 41.856-62.110Q41.673-62.192 41.441-62.192Q41.113-62.192 40.856-62.089Q40.600-61.987 40.600-61.710Q40.600-61.515 40.783-61.406Q40.966-61.296 41.195-61.255L41.769-61.149Q42.015-61.101 42.229-60.973Q42.442-60.845 42.579-60.642Q42.716-60.438 42.716-60.189Q42.716-59.676 42.350-59.437Q41.984-59.198 41.448-59.198Q40.952-59.198 40.620-59.492L40.354-59.218Q40.333-59.198 40.306-59.198L40.258-59.198Q40.234-59.198 40.207-59.225Q40.179-59.252 40.179-59.273M43.303-60.801Q43.303-61.122 43.428-61.411Q43.553-61.700 43.779-61.923Q44.004-62.147 44.300-62.267Q44.595-62.387 44.913-62.387Q45.241-62.387 45.503-62.287Q45.764-62.188 45.940-62.006Q46.116-61.823 46.210-61.565Q46.304-61.307 46.304-60.975Q46.304-60.883 46.222-60.862L43.967-60.862L43.967-60.801Q43.967-60.213 44.250-59.830Q44.534-59.447 45.101-59.447Q45.423-59.447 45.691-59.640Q45.959-59.833 46.048-60.148Q46.055-60.189 46.130-60.203L46.222-60.203Q46.304-60.179 46.304-60.107Q46.304-60.100 46.298-60.073Q46.185-59.676 45.814-59.437Q45.443-59.198 45.019-59.198Q44.582-59.198 44.182-59.406Q43.782-59.615 43.543-59.982Q43.303-60.349 43.303-60.801M43.973-61.071L45.788-61.071Q45.788-61.348 45.691-61.600Q45.594-61.853 45.395-62.009Q45.197-62.164 44.913-62.164Q44.636-62.164 44.423-62.006Q44.209-61.847 44.091-61.592Q43.973-61.337 43.973-61.071M48.560-59.266L46.957-59.266L46.957-59.546Q47.183-59.546 47.332-59.580Q47.480-59.615 47.480-59.755L47.480-63.374Q47.480-63.644 47.373-63.706Q47.265-63.767 46.957-63.767L46.957-64.048L48.034-64.123L48.034-59.755Q48.034-59.618 48.184-59.582Q48.335-59.546 48.560-59.546L48.560-59.266M49.114-60.801Q49.114-61.122 49.239-61.411Q49.364-61.700 49.589-61.923Q49.815-62.147 50.110-62.267Q50.406-62.387 50.724-62.387Q51.052-62.387 51.313-62.287Q51.575-62.188 51.751-62.006Q51.927-61.823 52.021-61.565Q52.115-61.307 52.115-60.975Q52.115-60.883 52.033-60.862L49.777-60.862L49.777-60.801Q49.777-60.213 50.061-59.830Q50.344-59.447 50.912-59.447Q51.233-59.447 51.501-59.640Q51.770-59.833 51.859-60.148Q51.865-60.189 51.941-60.203L52.033-60.203Q52.115-60.179 52.115-60.107Q52.115-60.100 52.108-60.073Q51.995-59.676 51.625-59.437Q51.254-59.198 50.830-59.198Q50.392-59.198 49.992-59.406Q49.593-59.615 49.353-59.982Q49.114-60.349 49.114-60.801M49.784-61.071L51.599-61.071Q51.599-61.348 51.501-61.600Q51.404-61.853 51.206-62.009Q51.008-62.164 50.724-62.164Q50.447-62.164 50.233-62.006Q50.020-61.847 49.902-61.592Q49.784-61.337 49.784-61.071M52.703-60.777Q52.703-61.105 52.838-61.406Q52.973-61.706 53.209-61.927Q53.445-62.147 53.749-62.267Q54.053-62.387 54.378-62.387Q54.884-62.387 55.232-62.284Q55.581-62.182 55.581-61.806Q55.581-61.659 55.483-61.558Q55.386-61.457 55.239-61.457Q55.085-61.457 54.986-61.556Q54.887-61.655 54.887-61.806Q54.887-61.994 55.027-62.086Q54.825-62.137 54.385-62.137Q54.029-62.137 53.800-61.941Q53.571-61.744 53.470-61.435Q53.369-61.125 53.369-60.777Q53.369-60.428 53.496-60.122Q53.622-59.816 53.877-59.632Q54.132-59.447 54.487-59.447Q54.709-59.447 54.894-59.531Q55.078-59.615 55.213-59.770Q55.348-59.926 55.407-60.134Q55.420-60.189 55.475-60.189L55.588-60.189Q55.618-60.189 55.641-60.165Q55.663-60.141 55.663-60.107L55.663-60.086Q55.577-59.799 55.389-59.601Q55.201-59.403 54.937-59.300Q54.672-59.198 54.378-59.198Q53.947-59.198 53.559-59.404Q53.171-59.611 52.937-59.974Q52.703-60.336 52.703-60.777M56.777-60.107L56.777-62.004L56.138-62.004L56.138-62.226Q56.456-62.226 56.673-62.436Q56.890-62.646 56.991-62.956Q57.092-63.265 57.092-63.573L57.358-63.573L57.358-62.284L58.435-62.284L58.435-62.004L57.358-62.004L57.358-60.120Q57.358-59.844 57.462-59.645Q57.567-59.447 57.826-59.447Q57.984-59.447 58.090-59.551Q58.196-59.656 58.245-59.809Q58.295-59.963 58.295-60.120L58.295-60.534L58.561-60.534L58.561-60.107Q58.561-59.881 58.462-59.671Q58.363-59.461 58.178-59.329Q57.994-59.198 57.765-59.198Q57.327-59.198 57.052-59.435Q56.777-59.673 56.777-60.107\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.903 201.6)\">\u003Cpath d=\"M63.779-59.266L62.145-59.266L62.145-59.546Q62.374-59.546 62.523-59.580Q62.672-59.615 62.672-59.755L62.672-61.604Q62.672-61.874 62.564-61.935Q62.456-61.997 62.145-61.997L62.145-62.277L63.205-62.352L63.205-61.703Q63.376-62.011 63.680-62.182Q63.984-62.352 64.329-62.352Q64.835-62.352 65.119-62.129Q65.403-61.905 65.403-61.409L65.403-59.755Q65.403-59.618 65.551-59.582Q65.700-59.546 65.926-59.546L65.926-59.266L64.295-59.266L64.295-59.546Q64.524-59.546 64.673-59.580Q64.822-59.615 64.822-59.755L64.822-61.395Q64.822-61.730 64.702-61.930Q64.582-62.130 64.268-62.130Q63.998-62.130 63.764-61.994Q63.530-61.857 63.391-61.623Q63.253-61.389 63.253-61.115L63.253-59.755Q63.253-59.618 63.403-59.582Q63.554-59.546 63.779-59.546L63.779-59.266M66.472-60.801Q66.472-61.122 66.597-61.411Q66.722-61.700 66.948-61.923Q67.173-62.147 67.469-62.267Q67.764-62.387 68.082-62.387Q68.410-62.387 68.672-62.287Q68.933-62.188 69.109-62.006Q69.285-61.823 69.379-61.565Q69.473-61.307 69.473-60.975Q69.473-60.883 69.391-60.862L67.136-60.862L67.136-60.801Q67.136-60.213 67.419-59.830Q67.703-59.447 68.270-59.447Q68.592-59.447 68.860-59.640Q69.128-59.833 69.217-60.148Q69.224-60.189 69.299-60.203L69.391-60.203Q69.473-60.179 69.473-60.107Q69.473-60.100 69.467-60.073Q69.354-59.676 68.983-59.437Q68.612-59.198 68.188-59.198Q67.751-59.198 67.351-59.406Q66.951-59.615 66.712-59.982Q66.472-60.349 66.472-60.801M67.142-61.071L68.957-61.071Q68.957-61.348 68.860-61.600Q68.762-61.853 68.564-62.009Q68.366-62.164 68.082-62.164Q67.805-62.164 67.592-62.006Q67.378-61.847 67.260-61.592Q67.142-61.337 67.142-61.071M71.449-59.293L70.468-61.792Q70.407-61.935 70.289-61.970Q70.171-62.004 69.955-62.004L69.955-62.284L71.435-62.284L71.435-62.004Q71.056-62.004 71.056-61.843Q71.056-61.833 71.070-61.792L71.784-59.960L72.457-61.665Q72.427-61.737 72.427-61.765Q72.427-61.792 72.399-61.792Q72.338-61.939 72.220-61.971Q72.102-62.004 71.890-62.004L71.890-62.284L73.288-62.284L73.288-62.004Q72.912-62.004 72.912-61.843Q72.912-61.812 72.919-61.792L73.674-59.854L74.361-61.604Q74.382-61.655 74.382-61.710Q74.382-61.850 74.269-61.927Q74.156-62.004 74.016-62.004L74.016-62.284L75.236-62.284L75.236-62.004Q75.031-62.004 74.876-61.898Q74.720-61.792 74.648-61.604L73.742-59.293Q73.708-59.198 73.596-59.198L73.527-59.198Q73.418-59.198 73.380-59.293L72.597-61.296L71.811-59.293Q71.777-59.198 71.664-59.198L71.596-59.198Q71.487-59.198 71.449-59.293M77.977-59.266L75.845-59.266L75.845-59.546Q76.566-59.546 76.566-59.755L76.566-63.556Q76.566-63.767 75.845-63.767L75.845-64.048L78.511-64.048Q78.921-64.048 79.341-63.894Q79.762-63.740 80.045-63.436Q80.329-63.132 80.329-62.718Q80.329-62.400 80.161-62.154Q79.994-61.908 79.717-61.742Q79.440-61.577 79.119-61.493Q78.798-61.409 78.511-61.409L77.256-61.409L77.256-59.755Q77.256-59.546 77.977-59.546L77.977-59.266M77.229-63.556L77.229-61.659L78.316-61.659Q78.924-61.659 79.239-61.896Q79.553-62.134 79.553-62.718Q79.553-63.111 79.408-63.345Q79.262-63.579 78.991-63.673Q78.719-63.767 78.316-63.767L77.595-63.767Q77.407-63.767 77.318-63.733Q77.229-63.699 77.229-63.556M81.310-61.659Q81.310-62.185 81.527-62.653Q81.744-63.121 82.127-63.467Q82.510-63.812 82.993-64Q83.477-64.188 84.007-64.188Q84.410-64.188 84.774-64.031Q85.138-63.873 85.422-63.579L85.846-64.161Q85.880-64.188 85.904-64.188L85.951-64.188Q85.982-64.188 86.006-64.164Q86.030-64.140 86.030-64.109L86.030-62.246Q86.030-62.223 86.004-62.197Q85.979-62.171 85.951-62.171L85.825-62.171Q85.763-62.171 85.750-62.246Q85.719-62.561 85.584-62.865Q85.449-63.169 85.234-63.403Q85.018-63.638 84.730-63.773Q84.441-63.908 84.113-63.908Q83.470-63.908 83.012-63.614Q82.554-63.320 82.322-62.807Q82.089-62.294 82.089-61.659Q82.089-61.187 82.219-60.778Q82.349-60.370 82.609-60.057Q82.868-59.745 83.248-59.575Q83.627-59.406 84.119-59.406Q84.448-59.406 84.741-59.522Q85.035-59.639 85.270-59.854Q85.504-60.069 85.634-60.358Q85.763-60.647 85.763-60.975Q85.763-61.002 85.791-61.026Q85.818-61.050 85.839-61.050L85.951-61.050Q85.989-61.050 86.010-61.025Q86.030-60.999 86.030-60.961Q86.030-60.565 85.864-60.228Q85.699-59.891 85.411-59.644Q85.124-59.396 84.755-59.261Q84.386-59.126 84.007-59.126Q83.487-59.126 82.995-59.316Q82.503-59.505 82.123-59.849Q81.744-60.192 81.527-60.661Q81.310-61.129 81.310-61.659\" 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 six SEQ stages as a ring. Every instruction passes through all six in order; the PC update closes the loop back to the next fetch. Stages an instruction does not need (e.g. memory for an OPq) pass through idle.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:459.641px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 344.731 142.266\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-16.917 -15.483)\">\u003Cpath d=\"M29.396-48.593L27.844-48.593L27.844-48.873Q28.070-48.873 28.219-48.907Q28.367-48.942 28.367-49.082L28.367-50.931Q28.367-51.119 28.319-51.203Q28.272-51.286 28.174-51.305Q28.077-51.324 27.865-51.324L27.865-51.604L28.921-51.679L28.921-49.082Q28.921-48.942 29.053-48.907Q29.184-48.873 29.396-48.873L29.396-48.593M28.125-52.900Q28.125-53.071 28.248-53.190Q28.371-53.310 28.542-53.310Q28.709-53.310 28.832-53.190Q28.955-53.071 28.955-52.900Q28.955-52.725 28.832-52.602Q28.709-52.479 28.542-52.479Q28.371-52.479 28.248-52.602Q28.125-52.725 28.125-52.900M30.042-50.104Q30.042-50.432 30.177-50.733Q30.312-51.033 30.548-51.254Q30.784-51.474 31.088-51.594Q31.392-51.714 31.717-51.714Q32.223-51.714 32.571-51.611Q32.920-51.509 32.920-51.133Q32.920-50.986 32.823-50.885Q32.725-50.784 32.578-50.784Q32.424-50.784 32.325-50.883Q32.226-50.982 32.226-51.133Q32.226-51.321 32.366-51.413Q32.165-51.464 31.724-51.464Q31.368-51.464 31.139-51.268Q30.910-51.071 30.809-50.762Q30.709-50.452 30.709-50.104Q30.709-49.755 30.835-49.449Q30.962-49.143 31.216-48.959Q31.471-48.774 31.826-48.774Q32.048-48.774 32.233-48.858Q32.418-48.942 32.553-49.097Q32.688-49.253 32.746-49.461Q32.759-49.516 32.814-49.516L32.927-49.516Q32.958-49.516 32.980-49.492Q33.002-49.468 33.002-49.434L33.002-49.413Q32.917-49.126 32.729-48.928Q32.541-48.730 32.276-48.627Q32.011-48.525 31.717-48.525Q31.286-48.525 30.898-48.731Q30.510-48.938 30.276-49.301Q30.042-49.663 30.042-50.104M33.549-50.076Q33.549-50.418 33.684-50.717Q33.819-51.016 34.058-51.240Q34.298-51.464 34.615-51.589Q34.933-51.714 35.265-51.714Q35.709-51.714 36.109-51.498Q36.509-51.283 36.743-50.905Q36.977-50.528 36.977-50.076Q36.977-49.735 36.835-49.451Q36.694-49.167 36.449-48.960Q36.205-48.754 35.895-48.639Q35.586-48.525 35.265-48.525Q34.834-48.525 34.433-48.726Q34.031-48.928 33.790-49.280Q33.549-49.632 33.549-50.076M35.265-48.774Q35.866-48.774 36.090-49.152Q36.314-49.530 36.314-50.162Q36.314-50.774 36.080-51.133Q35.846-51.491 35.265-51.491Q34.212-51.491 34.212-50.162Q34.212-49.530 34.438-49.152Q34.663-48.774 35.265-48.774\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-16.917 -15.483)\">\u003Cpath d=\"M37.800-50.104Q37.800-50.442 37.941-50.733Q38.081-51.023 38.325-51.237Q38.569-51.450 38.874-51.565Q39.178-51.679 39.503-51.679Q39.773-51.679 40.036-51.580Q40.299-51.481 40.490-51.303L40.490-52.701Q40.490-52.971 40.383-53.033Q40.275-53.094 39.964-53.094L39.964-53.375L41.041-53.450L41.041-49.266Q41.041-49.078 41.095-48.995Q41.150-48.911 41.251-48.892Q41.352-48.873 41.567-48.873L41.567-48.593L40.460-48.525L40.460-48.942Q40.043-48.525 39.417-48.525Q38.986-48.525 38.614-48.737Q38.241-48.948 38.021-49.309Q37.800-49.670 37.800-50.104M39.475-48.747Q39.684-48.747 39.870-48.819Q40.056-48.890 40.210-49.027Q40.364-49.164 40.460-49.342L40.460-50.951Q40.374-51.098 40.229-51.218Q40.084-51.338 39.914-51.397Q39.745-51.457 39.564-51.457Q39.004-51.457 38.735-51.068Q38.467-50.678 38.467-50.097Q38.467-49.526 38.701-49.136Q38.935-48.747 39.475-48.747M42.175-50.128Q42.175-50.449 42.300-50.738Q42.425-51.027 42.651-51.250Q42.876-51.474 43.172-51.594Q43.467-51.714 43.785-51.714Q44.113-51.714 44.375-51.614Q44.636-51.515 44.812-51.333Q44.988-51.150 45.082-50.892Q45.176-50.634 45.176-50.302Q45.176-50.210 45.094-50.189L42.839-50.189L42.839-50.128Q42.839-49.540 43.122-49.157Q43.406-48.774 43.973-48.774Q44.295-48.774 44.563-48.967Q44.831-49.160 44.920-49.475Q44.927-49.516 45.002-49.530L45.094-49.530Q45.176-49.506 45.176-49.434Q45.176-49.427 45.170-49.400Q45.057-49.003 44.686-48.764Q44.315-48.525 43.891-48.525Q43.454-48.525 43.054-48.733Q42.654-48.942 42.415-49.309Q42.175-49.676 42.175-50.128M42.845-50.398L44.660-50.398Q44.660-50.675 44.563-50.927Q44.465-51.180 44.267-51.336Q44.069-51.491 43.785-51.491Q43.508-51.491 43.295-51.333Q43.081-51.174 42.963-50.919Q42.845-50.664 42.845-50.398M46.164-49.013Q46.164-49.181 46.287-49.304Q46.410-49.427 46.585-49.427Q46.752-49.427 46.875-49.304Q46.998-49.181 46.998-49.013Q46.998-48.839 46.875-48.716Q46.752-48.593 46.585-48.593Q46.410-48.593 46.287-48.716Q46.164-48.839 46.164-49.013M46.164-51.197Q46.164-51.365 46.287-51.488Q46.410-51.611 46.585-51.611Q46.752-51.611 46.875-51.488Q46.998-51.365 46.998-51.197Q46.998-51.023 46.875-50.900Q46.752-50.777 46.585-50.777Q46.410-50.777 46.287-50.900Q46.164-51.023 46.164-51.197M49.644-48.593L48.092-48.593L48.092-48.873Q48.318-48.873 48.466-48.907Q48.615-48.942 48.615-49.082L48.615-50.931Q48.615-51.119 48.567-51.203Q48.519-51.286 48.422-51.305Q48.324-51.324 48.112-51.324L48.112-51.604L49.169-51.679L49.169-49.082Q49.169-48.942 49.300-48.907Q49.432-48.873 49.644-48.873L49.644-48.593M48.372-52.900Q48.372-53.071 48.495-53.190Q48.618-53.310 48.789-53.310Q48.957-53.310 49.080-53.190Q49.203-53.071 49.203-52.900Q49.203-52.725 49.080-52.602Q48.957-52.479 48.789-52.479Q48.618-52.479 48.495-52.602Q48.372-52.725 48.372-52.900M52.088-48.593L50.355-48.593L50.355-48.873Q50.580-48.873 50.729-48.907Q50.878-48.942 50.878-49.082L50.878-51.331L50.290-51.331L50.290-51.611L50.878-51.611L50.878-52.428Q50.878-52.746 51.055-52.994Q51.233-53.241 51.524-53.382Q51.814-53.522 52.125-53.522Q52.382-53.522 52.585-53.380Q52.788-53.238 52.788-52.995Q52.788-52.859 52.689-52.760Q52.590-52.660 52.453-52.660Q52.317-52.660 52.217-52.760Q52.118-52.859 52.118-52.995Q52.118-53.176 52.258-53.269Q52.180-53.296 52.081-53.296Q51.872-53.296 51.718-53.163Q51.565-53.030 51.484-52.826Q51.404-52.623 51.404-52.414L51.404-51.611L52.293-51.611L52.293-51.331L51.431-51.331L51.431-49.082Q51.431-48.873 52.088-48.873L52.088-48.593M53.342-49.427L53.342-50.931Q53.342-51.201 53.234-51.262Q53.127-51.324 52.816-51.324L52.816-51.604L53.923-51.679L53.923-49.447L53.923-49.427Q53.923-49.147 53.974-49.003Q54.026-48.860 54.167-48.803Q54.309-48.747 54.596-48.747Q54.849-48.747 55.054-48.887Q55.259-49.027 55.376-49.253Q55.492-49.478 55.492-49.728L55.492-50.931Q55.492-51.201 55.384-51.262Q55.277-51.324 54.965-51.324L54.965-51.604L56.073-51.679L56.073-49.266Q56.073-49.075 56.126-48.993Q56.179-48.911 56.280-48.892Q56.381-48.873 56.596-48.873L56.596-48.593L55.519-48.525L55.519-49.089Q55.410-48.907 55.265-48.784Q55.119-48.661 54.933-48.593Q54.747-48.525 54.545-48.525Q53.342-48.525 53.342-49.427M58.865-48.593L57.232-48.593L57.232-48.873Q57.461-48.873 57.609-48.907Q57.758-48.942 57.758-49.082L57.758-50.931Q57.758-51.201 57.650-51.262Q57.543-51.324 57.232-51.324L57.232-51.604L58.291-51.679L58.291-51.030Q58.462-51.338 58.766-51.509Q59.070-51.679 59.416-51.679Q59.922-51.679 60.205-51.456Q60.489-51.232 60.489-50.736L60.489-49.082Q60.489-48.945 60.638-48.909Q60.786-48.873 61.012-48.873L61.012-48.593L59.382-48.593L59.382-48.873Q59.611-48.873 59.759-48.907Q59.908-48.942 59.908-49.082L59.908-50.722Q59.908-51.057 59.788-51.257Q59.669-51.457 59.354-51.457Q59.084-51.457 58.850-51.321Q58.616-51.184 58.477-50.950Q58.339-50.716 58.339-50.442L58.339-49.082Q58.339-48.945 58.489-48.909Q58.640-48.873 58.865-48.873\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-47.736 2.768)\">\u003Cpath d=\"M30.946-48.593L28.046-48.593Q27.802-48.622 27.763-48.871L27.763-48.964Q27.802-49.213 28.046-49.242L28.974-49.242L28.974-52.255L28.046-52.255Q27.802-52.284 27.763-52.533L27.763-52.621Q27.802-52.875 28.046-52.905L29.423-52.905Q29.545-52.890 29.618-52.817Q29.692-52.743 29.706-52.621L29.706-52.182Q29.906-52.416 30.177-52.597Q30.448-52.778 30.766-52.870Q31.083-52.963 31.396-52.963Q31.762-52.963 32.048-52.812Q32.333-52.660 32.333-52.333Q32.333-52.143 32.211-52.009Q32.089-51.874 31.894-51.874Q31.713-51.874 31.584-51.999Q31.454-52.123 31.454-52.314L31.386-52.314Q30.907-52.314 30.522-52.055Q30.136-51.796 29.921-51.369Q29.706-50.942 29.706-50.473L29.706-49.242L30.946-49.242Q31.195-49.208 31.225-48.964L31.225-48.871Q31.195-48.627 30.946-48.593M37.074-50.483L34.003-50.483Q34.111-49.911 34.579-49.548Q35.048-49.184 35.644-49.184Q35.956-49.184 36.237-49.328Q36.518-49.472 36.625-49.731Q36.703-49.960 36.903-49.985L37.074-49.985Q37.201-49.970 37.277-49.885Q37.353-49.799 37.353-49.682Q37.353-49.653 37.350-49.635Q37.348-49.618 37.343-49.594Q37.153-49.067 36.657-48.801Q36.161-48.534 35.566-48.534Q34.960-48.534 34.421-48.830Q33.881-49.125 33.564-49.633Q33.246-50.141 33.246-50.761Q33.246-51.210 33.412-51.611Q33.578-52.011 33.874-52.326Q34.169-52.641 34.567-52.817Q34.965-52.992 35.414-52.992Q36.039-52.992 36.479-52.707Q36.918-52.421 37.135-51.926Q37.353-51.430 37.353-50.805Q37.353-50.673 37.275-50.585Q37.196-50.497 37.074-50.483M34.013-51.122L36.606-51.122Q36.567-51.474 36.425-51.750Q36.283-52.026 36.029-52.184Q35.776-52.343 35.414-52.343Q35.082-52.343 34.782-52.177Q34.482-52.011 34.279-51.728Q34.076-51.445 34.013-51.122M39.472-49.872L39.472-52.255L38.495-52.255Q38.241-52.284 38.212-52.533L38.212-52.621Q38.241-52.875 38.495-52.905L39.472-52.905L39.472-53.852Q39.501-54.096 39.755-54.135L39.921-54.135Q40.175-54.096 40.204-53.852L40.204-52.905L41.943-52.905Q42.065-52.890 42.135-52.817Q42.206-52.743 42.221-52.621L42.221-52.533Q42.192-52.284 41.943-52.255L40.204-52.255L40.204-49.911Q40.204-49.184 40.961-49.184Q41.269-49.184 41.496-49.394Q41.723-49.604 41.723-49.911L41.723-49.965Q41.737-50.082 41.811-50.156Q41.884-50.229 42.001-50.243L42.172-50.243Q42.416-50.214 42.455-49.965L42.455-49.872Q42.455-49.472 42.228-49.167Q42.001-48.862 41.645-48.698Q41.288-48.534 40.893-48.534Q40.478-48.534 40.160-48.693Q39.843-48.852 39.657-49.157Q39.472-49.462 39.472-49.872\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M11.816-38.634h31.298v-19.917H11.816Z\"\u002F>\u003Cg transform=\"translate(-5.43 2.578)\">\u003Cpath d=\"M28.457-48.937Q28.688-48.698 29.235-48.698Q29.488-48.698 29.711-48.822Q29.934-48.945 30.104-49.161Q30.274-49.378 30.367-49.609Q30.492-49.921 30.531-50.261Q30.570-50.601 30.570-51.050Q30.402-50.718 30.119-50.523Q29.836-50.327 29.496-50.327Q29.133-50.327 28.820-50.472Q28.508-50.616 28.285-50.868Q28.063-51.120 27.940-51.447Q27.817-51.773 27.817-52.128Q27.817-52.624 28.059-53.034Q28.301-53.445 28.719-53.679Q29.137-53.913 29.633-53.913Q30.590-53.913 30.971-53.083Q31.352-52.253 31.352-51.179Q31.352-50.546 31.102-49.902Q30.852-49.257 30.369-48.841Q29.887-48.425 29.235-48.425Q28.731-48.425 28.381-48.642Q28.031-48.859 28.031-49.327Q28.031-49.495 28.145-49.609Q28.258-49.722 28.426-49.722Q28.531-49.722 28.623-49.671Q28.715-49.620 28.766-49.529Q28.817-49.437 28.817-49.327Q28.817-49.179 28.715-49.058Q28.613-48.937 28.457-48.937M29.535-50.585Q29.867-50.585 30.100-50.796Q30.332-51.007 30.444-51.329Q30.555-51.652 30.555-51.968Q30.555-52.066 30.543-52.120Q30.547-52.128 30.551-52.140Q30.555-52.152 30.555-52.159Q30.555-52.402 30.512-52.665Q30.469-52.929 30.367-53.157Q30.266-53.386 30.084-53.529Q29.902-53.671 29.633-53.671Q29.199-53.671 28.973-53.450Q28.746-53.230 28.674-52.898Q28.602-52.566 28.602-52.128Q28.602-51.683 28.658-51.361Q28.715-51.038 28.920-50.812Q29.125-50.585 29.535-50.585M32.430-49.058Q32.430-49.241 32.567-49.378Q32.703-49.515 32.895-49.515Q33.086-49.515 33.219-49.382Q33.352-49.249 33.352-49.058Q33.352-48.859 33.219-48.726Q33.086-48.593 32.895-48.593Q32.703-48.593 32.567-48.730Q32.430-48.866 32.430-49.058M32.430-51.585Q32.430-51.769 32.567-51.906Q32.703-52.042 32.895-52.042Q33.086-52.042 33.219-51.909Q33.352-51.777 33.352-51.585Q33.352-51.386 33.219-51.253Q33.086-51.120 32.895-51.120Q32.703-51.120 32.567-51.257Q32.430-51.394 32.430-51.585M36.192-48.425Q35.488-48.425 35.088-48.825Q34.688-49.226 34.543-49.835Q34.399-50.445 34.399-51.144Q34.399-51.667 34.469-52.130Q34.539-52.593 34.733-53.005Q34.926-53.417 35.283-53.665Q35.641-53.913 36.192-53.913Q36.742-53.913 37.100-53.665Q37.457-53.417 37.649-53.007Q37.840-52.597 37.910-52.128Q37.981-51.659 37.981-51.144Q37.981-50.445 37.838-49.837Q37.695-49.230 37.295-48.827Q36.895-48.425 36.192-48.425M36.192-48.683Q36.664-48.683 36.897-49.118Q37.129-49.554 37.184-50.093Q37.238-50.632 37.238-51.273Q37.238-52.269 37.055-52.962Q36.871-53.656 36.192-53.656Q35.824-53.656 35.604-53.417Q35.383-53.179 35.287-52.822Q35.192-52.464 35.166-52.093Q35.141-51.722 35.141-51.273Q35.141-50.632 35.195-50.093Q35.250-49.554 35.483-49.118Q35.715-48.683 36.192-48.683\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(157.178 2.161)\">\u003Cpath d=\"M29.121-48.816L28.235-51.480L27.914-51.480Q27.715-51.503 27.664-51.722L27.664-51.808Q27.715-52.019 27.914-52.042L29.074-52.042Q29.270-52.023 29.320-51.808L29.320-51.722Q29.270-51.503 29.074-51.480L28.793-51.480L29.586-49.105L30.375-51.480L30.098-51.480Q29.899-51.503 29.848-51.722L29.848-51.808Q29.899-52.019 30.098-52.042L31.258-52.042Q31.453-52.019 31.504-51.808L31.504-51.722Q31.453-51.503 31.258-51.480L30.938-51.480L30.051-48.816Q30.008-48.702 29.906-48.628Q29.805-48.554 29.680-48.554L29.488-48.554Q29.371-48.554 29.268-48.626Q29.164-48.698 29.121-48.816M32.117-49.706Q32.117-50.152 32.531-50.409Q32.945-50.667 33.486-50.767Q34.028-50.866 34.535-50.874Q34.535-51.089 34.401-51.241Q34.266-51.394 34.059-51.470Q33.852-51.546 33.641-51.546Q33.297-51.546 33.137-51.523L33.137-51.464Q33.137-51.296 33.018-51.181Q32.899-51.066 32.735-51.066Q32.559-51.066 32.444-51.189Q32.328-51.312 32.328-51.480Q32.328-51.886 32.709-51.995Q33.090-52.105 33.649-52.105Q33.918-52.105 34.186-52.027Q34.453-51.948 34.678-51.798Q34.903-51.648 35.039-51.427Q35.176-51.206 35.176-50.929L35.176-49.210Q35.176-49.152 35.703-49.152Q35.899-49.132 35.949-48.921L35.949-48.831Q35.899-48.616 35.703-48.593L35.559-48.593Q35.215-48.593 34.986-48.640Q34.758-48.687 34.613-48.874Q34.153-48.554 33.445-48.554Q33.110-48.554 32.805-48.695Q32.500-48.835 32.309-49.097Q32.117-49.359 32.117-49.706M32.758-49.698Q32.758-49.425 33-49.269Q33.242-49.113 33.528-49.113Q33.746-49.113 33.979-49.171Q34.211-49.230 34.373-49.368Q34.535-49.507 34.535-49.730L34.535-50.320Q34.254-50.320 33.838-50.263Q33.422-50.206 33.090-50.068Q32.758-49.929 32.758-49.698M36.406-48.831L36.406-48.921Q36.457-49.128 36.653-49.152L37.758-49.152L37.758-52.921L36.653-52.921Q36.457-52.945 36.406-53.159L36.406-53.249Q36.457-53.456 36.653-53.480L38.149-53.480Q38.340-53.456 38.399-53.249L38.399-49.152L39.500-49.152Q39.699-49.128 39.750-48.921L39.750-48.831Q39.699-48.616 39.500-48.593L36.653-48.593Q36.457-48.616 36.406-48.831M40.387-48.831L40.387-48.921Q40.426-49.128 40.637-49.152L40.945-49.152L40.945-52.921L40.637-52.921Q40.426-52.945 40.387-53.159L40.387-53.249Q40.426-53.456 40.637-53.480L42.586-53.480Q42.985-53.480 43.330-53.279Q43.676-53.077 43.883-52.732Q44.090-52.386 44.090-51.984Q44.090-51.577 43.885-51.234Q43.680-50.890 43.334-50.685Q42.988-50.480 42.586-50.480L41.586-50.480L41.586-49.152L41.899-49.152Q42.110-49.128 42.149-48.921L42.149-48.831Q42.110-48.616 41.899-48.593L40.637-48.593Q40.426-48.616 40.387-48.831M41.586-52.921L41.586-51.042L42.426-51.042Q42.688-51.042 42.924-51.165Q43.160-51.288 43.305-51.503Q43.449-51.718 43.449-51.984Q43.449-52.253 43.305-52.464Q43.160-52.675 42.924-52.798Q42.688-52.921 42.426-52.921\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 2.161)\">\u003Cpath d=\"M52.787-49.570L47.474-49.570Q47.396-49.577 47.347-49.626Q47.299-49.675 47.299-49.753Q47.299-49.823 47.346-49.874Q47.392-49.925 47.474-49.937L52.787-49.937Q52.861-49.925 52.908-49.874Q52.955-49.823 52.955-49.753Q52.955-49.675 52.906-49.626Q52.857-49.577 52.787-49.570M52.787-51.257L47.474-51.257Q47.396-51.265 47.347-51.314Q47.299-51.363 47.299-51.441Q47.299-51.511 47.346-51.562Q47.392-51.613 47.474-51.624L52.787-51.624Q52.861-51.613 52.908-51.562Q52.955-51.511 52.955-51.441Q52.955-51.363 52.906-51.314Q52.857-51.265 52.787-51.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 2.161)\">\u003Cpath d=\"M55.983-48.831L55.983-48.921Q56.022-49.128 56.233-49.152L56.541-49.152L56.541-52.921L56.233-52.921Q56.022-52.945 55.983-53.159L55.983-53.249Q56.022-53.456 56.233-53.480L58.182-53.480Q58.580-53.480 58.926-53.279Q59.272-53.077 59.479-52.732Q59.686-52.386 59.686-51.984Q59.686-51.577 59.481-51.234Q59.276-50.890 58.930-50.685Q58.584-50.480 58.182-50.480L57.182-50.480L57.182-49.152L57.494-49.152Q57.705-49.128 57.744-48.921L57.744-48.831Q57.705-48.616 57.494-48.593L56.233-48.593Q56.022-48.616 55.983-48.831M57.182-52.921L57.182-51.042L58.022-51.042Q58.283-51.042 58.520-51.165Q58.756-51.288 58.901-51.503Q59.045-51.718 59.045-51.984Q59.045-52.253 58.901-52.464Q58.756-52.675 58.520-52.798Q58.283-52.921 58.022-52.921L57.182-52.921M62.311-48.515Q61.861-48.515 61.496-48.739Q61.131-48.964 60.877-49.347Q60.623-49.730 60.498-50.173Q60.373-50.616 60.373-51.042Q60.373-51.468 60.498-51.907Q60.623-52.347 60.877-52.730Q61.131-53.113 61.490-53.337Q61.850-53.562 62.311-53.562Q62.588-53.562 62.846-53.470Q63.104-53.378 63.319-53.210L63.451-53.448Q63.479-53.499 63.533-53.531Q63.588-53.562 63.647-53.562L63.725-53.562Q63.819-53.550 63.881-53.491Q63.944-53.433 63.955-53.327L63.955-51.999Q63.944-51.898 63.881-51.835Q63.819-51.773 63.725-51.761L63.557-51.761Q63.455-51.773 63.393-51.839Q63.330-51.906 63.319-51.999Q63.279-52.265 63.156-52.489Q63.033-52.714 62.830-52.857Q62.627-52.999 62.365-52.999Q62.033-52.999 61.781-52.816Q61.529-52.632 61.358-52.331Q61.186-52.031 61.100-51.689Q61.014-51.347 61.014-51.042Q61.014-50.738 61.098-50.396Q61.182-50.054 61.354-49.751Q61.526-49.448 61.783-49.261Q62.041-49.073 62.373-49.073Q62.756-49.073 63.037-49.347Q63.319-49.620 63.319-50.007Q63.346-50.218 63.557-50.241L63.725-50.241Q63.955-50.202 63.955-49.976Q63.955-49.659 63.819-49.388Q63.682-49.116 63.447-48.919Q63.213-48.722 62.922-48.618Q62.631-48.515 62.311-48.515\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 2.161)\">\u003Cpath d=\"M69.309-50.409L66.836-50.409Q66.758-50.421 66.709-50.470Q66.661-50.519 66.661-50.593Q66.661-50.667 66.709-50.716Q66.758-50.765 66.836-50.777L69.309-50.777L69.309-53.257Q69.336-53.425 69.493-53.425Q69.567-53.425 69.616-53.376Q69.665-53.327 69.676-53.257L69.676-50.777L72.149-50.777Q72.317-50.745 72.317-50.593Q72.317-50.441 72.149-50.409L69.676-50.409L69.676-47.929Q69.665-47.859 69.616-47.810Q69.567-47.761 69.493-47.761Q69.336-47.761 69.309-47.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 2.161)\">\u003Cpath d=\"M78.282-48.593L75.489-48.593L75.489-48.890Q76.551-48.890 76.551-49.152L76.551-53.320Q76.122-53.105 75.442-53.105L75.442-53.402Q76.461-53.402 76.977-53.913L77.122-53.913Q77.196-53.894 77.215-53.816L77.215-49.152Q77.215-48.890 78.282-48.890\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(-84.485 36.088)\">\u003Cpath d=\"M27.997-49.921Q27.997-50.488 28.515-50.817Q29.032-51.147 29.714-51.269Q30.395-51.391 30.995-51.391L30.995-51.474Q30.995-51.884 30.639-52.114Q30.282-52.343 29.843-52.343Q29.394-52.343 29.174-52.304Q29.184-52.304 29.184-52.221Q29.184-52.035 29.047-51.899Q28.910-51.762 28.725-51.762Q28.520-51.762 28.388-51.904Q28.256-52.045 28.256-52.245Q28.256-52.734 28.722-52.863Q29.189-52.992 29.867-52.992Q30.297-52.992 30.732-52.814Q31.166-52.636 31.444-52.299Q31.723-51.962 31.723-51.513L31.723-49.335Q31.723-49.242 32.426-49.242Q32.675-49.213 32.704-48.964L32.704-48.871Q32.675-48.622 32.426-48.593L32.255-48.593Q31.835-48.593 31.549-48.654Q31.264-48.715 31.093-48.935Q30.527-48.534 29.594-48.534Q29.198-48.534 28.827-48.705Q28.456-48.876 28.227-49.191Q27.997-49.506 27.997-49.921M28.725-49.911Q28.725-49.579 29.035-49.382Q29.345-49.184 29.716-49.184Q30.107-49.184 30.424-49.291Q30.585-49.350 30.776-49.477Q30.966-49.604 30.966-49.721Q30.966-49.716 30.981-49.792Q30.995-49.867 30.995-49.911L30.995-50.761Q30.766-50.761 30.385-50.722Q30.004-50.683 29.633-50.593Q29.262-50.502 28.993-50.329Q28.725-50.156 28.725-49.911M35.014-48.534Q34.579-48.534 34.220-48.720Q33.861-48.906 33.600-49.223Q33.339-49.540 33.197-49.938Q33.056-50.336 33.056-50.751Q33.056-51.176 33.207-51.574Q33.359-51.972 33.644-52.289Q33.930-52.607 34.308-52.785Q34.687-52.963 35.116-52.963Q35.766-52.963 36.274-52.533L36.274-54.052L35.702-54.052Q35.453-54.081 35.424-54.335L35.424-54.423Q35.453-54.672 35.702-54.701L36.723-54.701Q36.967-54.672 37.006-54.423L37.006-49.242L37.572-49.242Q37.694-49.228 37.768-49.159Q37.841-49.091 37.856-48.964L37.856-48.871Q37.841-48.754 37.768-48.681Q37.694-48.608 37.572-48.593L36.552-48.593Q36.435-48.608 36.361-48.681Q36.288-48.754 36.274-48.871L36.274-49.072Q35.712-48.534 35.014-48.534M35.072-49.184Q35.527-49.184 35.849-49.540Q36.171-49.897 36.274-50.375L36.274-51.425Q36.166-51.801 35.863-52.057Q35.561-52.314 35.175-52.314Q34.775-52.314 34.455-52.089Q34.135-51.864 33.959-51.496Q33.783-51.127 33.783-50.741Q33.783-50.380 33.942-50.011Q34.101-49.643 34.394-49.413Q34.687-49.184 35.072-49.184M40.263-48.534Q39.828-48.534 39.469-48.720Q39.111-48.906 38.849-49.223Q38.588-49.540 38.446-49.938Q38.305-50.336 38.305-50.751Q38.305-51.176 38.456-51.574Q38.608-51.972 38.893-52.289Q39.179-52.607 39.557-52.785Q39.936-52.963 40.365-52.963Q41.015-52.963 41.523-52.533L41.523-54.052L40.951-54.052Q40.702-54.081 40.673-54.335L40.673-54.423Q40.702-54.672 40.951-54.701L41.972-54.701Q42.216-54.672 42.255-54.423L42.255-49.242L42.821-49.242Q42.944-49.228 43.017-49.159Q43.090-49.091 43.105-48.964L43.105-48.871Q43.090-48.754 43.017-48.681Q42.944-48.608 42.821-48.593L41.801-48.593Q41.684-48.608 41.611-48.681Q41.537-48.754 41.523-48.871L41.523-49.072Q40.961-48.534 40.263-48.534M40.321-49.184Q40.776-49.184 41.098-49.540Q41.420-49.897 41.523-50.375L41.523-51.425Q41.415-51.801 41.112-52.057Q40.810-52.314 40.424-52.314Q40.024-52.314 39.704-52.089Q39.384-51.864 39.208-51.496Q39.032-51.127 39.032-50.741Q39.032-50.380 39.191-50.011Q39.350-49.643 39.643-49.413Q39.936-49.184 40.321-49.184M46.093-46.655L46.093-46.742Q46.122-46.991 46.371-47.021L46.982-47.021L46.982-49.101Q46.703-48.832 46.359-48.683Q46.015-48.534 45.634-48.534Q45.209-48.534 44.828-48.720Q44.447-48.906 44.176-49.211Q43.905-49.516 43.749-49.926Q43.593-50.336 43.593-50.751Q43.593-51.342 43.879-51.847Q44.164-52.353 44.660-52.658Q45.155-52.963 45.751-52.963Q46.093-52.963 46.413-52.826Q46.733-52.690 46.982-52.441L46.982-52.685Q46.996-52.802 47.069-52.875Q47.143-52.948 47.260-52.963L47.431-52.963Q47.553-52.948 47.626-52.875Q47.699-52.802 47.714-52.685L47.714-47.021L48.324-47.021Q48.573-46.991 48.603-46.742L48.603-46.655Q48.573-46.401 48.324-46.371L46.371-46.371Q46.122-46.401 46.093-46.655M45.693-49.184Q46.010-49.184 46.281-49.345Q46.552-49.506 46.728-49.772Q46.903-50.038 46.982-50.351L46.982-51.093Q46.928-51.420 46.772-51.694Q46.615-51.967 46.369-52.140Q46.122-52.314 45.800-52.314Q45.390-52.314 45.053-52.096Q44.716-51.879 44.518-51.515Q44.320-51.152 44.320-50.741Q44.320-50.356 44.494-49.997Q44.667-49.638 44.985-49.411Q45.302-49.184 45.693-49.184\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-84.485 36.088)\">\u003Cpath d=\"M57.196-48.593L54.296-48.593Q54.052-48.622 54.013-48.871L54.013-48.964Q54.052-49.213 54.296-49.242L55.224-49.242L55.224-52.255L54.296-52.255Q54.052-52.284 54.013-52.533L54.013-52.621Q54.052-52.875 54.296-52.905L55.673-52.905Q55.795-52.890 55.868-52.817Q55.942-52.743 55.956-52.621L55.956-52.182Q56.156-52.416 56.427-52.597Q56.698-52.778 57.016-52.870Q57.333-52.963 57.646-52.963Q58.012-52.963 58.298-52.812Q58.583-52.660 58.583-52.333Q58.583-52.143 58.461-52.009Q58.339-51.874 58.144-51.874Q57.963-51.874 57.834-51.999Q57.704-52.123 57.704-52.314L57.636-52.314Q57.157-52.314 56.772-52.055Q56.386-51.796 56.171-51.369Q55.956-50.942 55.956-50.473L55.956-49.242L57.196-49.242Q57.445-49.208 57.475-48.964L57.475-48.871Q57.445-48.627 57.196-48.593M59.242-48.871L59.242-48.964Q59.272-49.213 59.526-49.242L59.833-49.242L61.044-54.521Q61.073-54.653 61.183-54.738Q61.293-54.823 61.425-54.823L61.742-54.823Q61.874-54.823 61.984-54.738Q62.094-54.653 62.123-54.521L63.334-49.242L63.642-49.242Q63.764-49.228 63.837-49.159Q63.910-49.091 63.925-48.964L63.925-48.871Q63.910-48.754 63.837-48.681Q63.764-48.608 63.642-48.593L62.294-48.593Q62.045-48.627 62.016-48.871L62.016-48.964Q62.045-49.208 62.294-49.242L62.582-49.242Q62.533-49.462 62.485-49.667Q62.436-49.872 62.362-50.185L60.805-50.185Q60.766-50.019 60.702-49.740Q60.639-49.462 60.585-49.242L60.873-49.242Q60.990-49.228 61.066-49.155Q61.142-49.081 61.156-48.964L61.156-48.871Q61.142-48.759 61.066-48.683Q60.990-48.608 60.873-48.593L59.526-48.593Q59.272-48.622 59.242-48.871M60.946-50.834L62.226-50.834Q61.957-52.040 61.777-52.919Q61.596-53.798 61.596-53.974L61.586-53.974Q61.586-53.886 61.530-53.569Q61.474-53.251 61.366-52.758Q61.259-52.265 61.156-51.786Q61.054-51.308 60.946-50.834M66.391-47.201L66.332-47.201Q66.210-47.201 66.108-47.309Q66.005-47.416 66.005-47.543Q66.005-47.753 66.215-47.822Q66.508-47.895 66.725-48.107Q66.943-48.320 67.011-48.613L66.952-48.603L66.923-48.593L66.845-48.593Q66.571-48.593 66.383-48.781Q66.195-48.969 66.195-49.242Q66.195-49.511 66.386-49.697Q66.576-49.882 66.845-49.882Q67.094-49.882 67.292-49.736Q67.489-49.589 67.592-49.360Q67.694-49.130 67.694-48.871Q67.694-48.276 67.336-47.829Q66.977-47.382 66.391-47.201M72.944-48.593L70.043-48.593Q69.799-48.622 69.760-48.871L69.760-48.964Q69.799-49.213 70.043-49.242L70.971-49.242L70.971-52.255L70.043-52.255Q69.799-52.284 69.760-52.533L69.760-52.621Q69.799-52.875 70.043-52.905L71.420-52.905Q71.542-52.890 71.615-52.817Q71.689-52.743 71.703-52.621L71.703-52.182Q71.903-52.416 72.174-52.597Q72.445-52.778 72.763-52.870Q73.080-52.963 73.393-52.963Q73.759-52.963 74.045-52.812Q74.330-52.660 74.330-52.333Q74.330-52.143 74.208-52.009Q74.086-51.874 73.891-51.874Q73.710-51.874 73.581-51.999Q73.451-52.123 73.451-52.314L73.383-52.314Q72.904-52.314 72.519-52.055Q72.133-51.796 71.918-51.369Q71.703-50.942 71.703-50.473L71.703-49.242L72.944-49.242Q73.193-49.208 73.222-48.964L73.222-48.871Q73.193-48.627 72.944-48.593M74.921-48.871L74.921-48.964Q74.950-49.213 75.199-49.242L75.600-49.242L75.600-54.052L75.199-54.052Q74.950-54.081 74.921-54.335L74.921-54.423Q74.950-54.672 75.199-54.701L77.641-54.701Q78.075-54.701 78.461-54.496Q78.847-54.291 79.084-53.932Q79.320-53.573 79.320-53.134Q79.320-52.675 79.015-52.314Q78.710-51.952 78.251-51.791Q78.798-51.669 79.164-51.249Q79.530-50.829 79.530-50.282Q79.530-49.828 79.303-49.443Q79.076-49.057 78.691-48.825Q78.305-48.593 77.851-48.593L75.199-48.593Q75.082-48.608 75.009-48.681Q74.936-48.754 74.921-48.871M76.332-51.445L76.332-49.242L77.641-49.242Q77.939-49.242 78.207-49.377Q78.476-49.511 78.639-49.745Q78.803-49.980 78.803-50.282Q78.803-50.566 78.666-50.839Q78.529-51.113 78.290-51.279Q78.051-51.445 77.753-51.445L76.332-51.445M76.332-54.052L76.332-52.094L77.431-52.094Q77.714-52.094 77.987-52.231Q78.261-52.367 78.427-52.602Q78.593-52.836 78.593-53.134Q78.593-53.388 78.459-53.600Q78.324-53.813 78.107-53.932Q77.890-54.052 77.641-54.052\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M11.816-4.491h31.298v-19.917H11.816Z\"\u002F>\u003Cg transform=\"translate(-5.43 36.721)\">\u003Cpath d=\"M29.586-48.425Q28.914-48.425 28.518-48.849Q28.121-49.273 27.969-49.892Q27.817-50.511 27.817-51.179Q27.817-51.839 28.088-52.472Q28.360-53.105 28.873-53.509Q29.387-53.913 30.059-53.913Q30.348-53.913 30.596-53.814Q30.844-53.714 30.990-53.513Q31.137-53.312 31.137-53.007Q31.137-52.902 31.086-52.810Q31.035-52.718 30.944-52.667Q30.852-52.616 30.746-52.616Q30.578-52.616 30.465-52.730Q30.352-52.843 30.352-53.007Q30.352-53.167 30.461-53.284Q30.570-53.402 30.738-53.402Q30.539-53.671 30.059-53.671Q29.641-53.671 29.309-53.394Q28.977-53.116 28.801-52.698Q28.602-52.198 28.602-51.296Q28.766-51.620 29.045-51.820Q29.324-52.019 29.672-52.019Q30.156-52.019 30.541-51.773Q30.926-51.527 31.139-51.118Q31.352-50.710 31.352-50.226Q31.352-49.734 31.121-49.322Q30.891-48.909 30.481-48.667Q30.070-48.425 29.586-48.425M29.586-48.698Q30.012-48.698 30.229-48.919Q30.445-49.140 30.508-49.466Q30.570-49.792 30.570-50.226Q30.570-50.538 30.545-50.788Q30.520-51.038 30.430-51.263Q30.340-51.488 30.145-51.624Q29.949-51.761 29.633-51.761Q29.305-51.761 29.072-51.552Q28.840-51.343 28.729-51.025Q28.617-50.706 28.617-50.394Q28.621-50.355 28.623-50.322Q28.625-50.288 28.625-50.234Q28.625-50.218 28.623-50.210Q28.621-50.202 28.617-50.195Q28.617-49.620 28.844-49.159Q29.070-48.698 29.586-48.698M32.430-49.058Q32.430-49.241 32.567-49.378Q32.703-49.515 32.895-49.515Q33.086-49.515 33.219-49.382Q33.352-49.249 33.352-49.058Q33.352-48.859 33.219-48.726Q33.086-48.593 32.895-48.593Q32.703-48.593 32.567-48.730Q32.430-48.866 32.430-49.058M32.430-51.585Q32.430-51.769 32.567-51.906Q32.703-52.042 32.895-52.042Q33.086-52.042 33.219-51.909Q33.352-51.777 33.352-51.585Q33.352-51.386 33.219-51.253Q33.086-51.120 32.895-51.120Q32.703-51.120 32.567-51.257Q32.430-51.394 32.430-51.585M36.192-48.425Q35.488-48.425 35.088-48.825Q34.688-49.226 34.543-49.835Q34.399-50.445 34.399-51.144Q34.399-51.667 34.469-52.130Q34.539-52.593 34.733-53.005Q34.926-53.417 35.283-53.665Q35.641-53.913 36.192-53.913Q36.742-53.913 37.100-53.665Q37.457-53.417 37.649-53.007Q37.840-52.597 37.910-52.128Q37.981-51.659 37.981-51.144Q37.981-50.445 37.838-49.837Q37.695-49.230 37.295-48.827Q36.895-48.425 36.192-48.425M36.192-48.683Q36.664-48.683 36.897-49.118Q37.129-49.554 37.184-50.093Q37.238-50.632 37.238-51.273Q37.238-52.269 37.055-52.962Q36.871-53.656 36.192-53.656Q35.824-53.656 35.604-53.417Q35.383-53.179 35.287-52.822Q35.192-52.464 35.166-52.093Q35.141-51.722 35.141-51.273Q35.141-50.632 35.195-50.093Q35.250-49.554 35.483-49.118Q35.715-48.683 36.192-48.683\" 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=\"M43.114-4.491h31.298v-19.917H43.114Z\"\u002F>\u003Cg transform=\"translate(20.613 36.877)\">\u003Cpath d=\"M29.711-48.593L27.731-48.593L27.731-48.890Q28-48.890 28.168-48.935Q28.336-48.980 28.336-49.152L28.336-51.288Q28.336-51.503 28.274-51.599Q28.211-51.695 28.094-51.716Q27.977-51.738 27.731-51.738L27.731-52.034L28.899-52.120L28.899-51.335Q28.977-51.546 29.129-51.732Q29.281-51.917 29.481-52.019Q29.680-52.120 29.906-52.120Q30.152-52.120 30.344-51.976Q30.535-51.831 30.535-51.601Q30.535-51.445 30.430-51.335Q30.324-51.226 30.168-51.226Q30.012-51.226 29.902-51.335Q29.793-51.445 29.793-51.601Q29.793-51.761 29.899-51.866Q29.574-51.866 29.360-51.638Q29.145-51.409 29.049-51.070Q28.953-50.730 28.953-50.425L28.953-49.152Q28.953-48.984 29.180-48.937Q29.406-48.890 29.711-48.890L29.711-48.593M32.817-48.593L31.067-48.593L31.067-48.890Q31.766-48.890 31.953-49.370L33.754-54.195Q33.809-54.304 33.922-54.304L33.992-54.304Q34.106-54.304 34.160-54.195L36.051-49.152Q36.129-48.984 36.332-48.937Q36.535-48.890 36.848-48.890L36.848-48.593L34.625-48.593L34.625-48.890Q35.266-48.890 35.266-49.105Q35.266-49.124 35.264-49.134Q35.262-49.144 35.258-49.152L34.793-50.386L32.649-50.386L32.266-49.370Q32.262-49.355 32.256-49.325Q32.250-49.296 32.250-49.273Q32.250-49.132 32.340-49.048Q32.430-48.964 32.563-48.927Q32.695-48.890 32.817-48.890L32.817-48.593M33.723-53.249L32.754-50.683L34.680-50.683L33.723-53.249M37.856-49.058Q37.856-49.241 37.992-49.378Q38.129-49.515 38.320-49.515Q38.512-49.515 38.645-49.382Q38.778-49.249 38.778-49.058Q38.778-48.859 38.645-48.726Q38.512-48.593 38.320-48.593Q38.129-48.593 37.992-48.730Q37.856-48.866 37.856-49.058M37.856-51.585Q37.856-51.769 37.992-51.906Q38.129-52.042 38.320-52.042Q38.512-52.042 38.645-51.909Q38.778-51.777 38.778-51.585Q38.778-51.386 38.645-51.253Q38.512-51.120 38.320-51.120Q38.129-51.120 37.992-51.257Q37.856-51.394 37.856-51.585M41.742-48.593L39.762-48.593L39.762-48.890Q40.031-48.890 40.199-48.935Q40.367-48.980 40.367-49.152L40.367-51.288Q40.367-51.503 40.305-51.599Q40.242-51.695 40.125-51.716Q40.008-51.738 39.762-51.738L39.762-52.034L40.930-52.120L40.930-51.335Q41.008-51.546 41.160-51.732Q41.313-51.917 41.512-52.019Q41.711-52.120 41.938-52.120Q42.184-52.120 42.375-51.976Q42.567-51.831 42.567-51.601Q42.567-51.445 42.461-51.335Q42.356-51.226 42.199-51.226Q42.043-51.226 41.934-51.335Q41.824-51.445 41.824-51.601Q41.824-51.761 41.930-51.866Q41.606-51.866 41.391-51.638Q41.176-51.409 41.080-51.070Q40.985-50.730 40.985-50.425L40.985-49.152Q40.985-48.984 41.211-48.937Q41.438-48.890 41.742-48.890L41.742-48.593M46.457-48.593L43.176-48.593L43.176-48.890Q43.500-48.890 43.742-48.937Q43.985-48.984 43.985-49.152L43.985-53.495Q43.985-53.667 43.742-53.714Q43.500-53.761 43.176-53.761L43.176-54.058L46.223-54.058Q46.649-54.058 47.082-53.904Q47.516-53.749 47.811-53.441Q48.106-53.132 48.106-52.698Q48.106-52.445 47.981-52.228Q47.856-52.011 47.654-51.855Q47.453-51.698 47.221-51.599Q46.988-51.499 46.731-51.448Q47.106-51.413 47.485-51.236Q47.863-51.058 48.104-50.759Q48.344-50.460 48.344-50.066Q48.344-49.613 48.061-49.279Q47.778-48.945 47.342-48.769Q46.906-48.593 46.457-48.593M44.695-51.304L44.695-49.152Q44.695-48.980 44.787-48.935Q44.879-48.890 45.098-48.890L46.223-48.890Q46.461-48.890 46.695-48.978Q46.930-49.066 47.115-49.226Q47.301-49.386 47.403-49.599Q47.504-49.812 47.504-50.066Q47.504-50.386 47.352-50.671Q47.199-50.956 46.930-51.130Q46.660-51.304 46.344-51.304L44.695-51.304M44.695-53.495L44.695-51.562L45.985-51.562Q46.227-51.562 46.465-51.644Q46.703-51.726 46.887-51.872Q47.070-52.019 47.184-52.236Q47.297-52.452 47.297-52.698Q47.297-52.909 47.211-53.111Q47.125-53.312 46.979-53.454Q46.832-53.597 46.637-53.679Q46.442-53.761 46.223-53.761L45.098-53.761Q44.879-53.761 44.787-53.718Q44.695-53.675 44.695-53.495\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(157.178 36.304)\">\u003Cpath d=\"M29.121-48.816L28.235-51.480L27.914-51.480Q27.715-51.503 27.664-51.722L27.664-51.808Q27.715-52.019 27.914-52.042L29.074-52.042Q29.270-52.023 29.320-51.808L29.320-51.722Q29.270-51.503 29.074-51.480L28.793-51.480L29.586-49.105L30.375-51.480L30.098-51.480Q29.899-51.503 29.848-51.722L29.848-51.808Q29.899-52.019 30.098-52.042L31.258-52.042Q31.453-52.019 31.504-51.808L31.504-51.722Q31.453-51.503 31.258-51.480L30.938-51.480L30.051-48.816Q30.008-48.702 29.906-48.628Q29.805-48.554 29.680-48.554L29.488-48.554Q29.371-48.554 29.268-48.626Q29.164-48.698 29.121-48.816M32.117-49.706Q32.117-50.152 32.531-50.409Q32.945-50.667 33.486-50.767Q34.028-50.866 34.535-50.874Q34.535-51.089 34.401-51.241Q34.266-51.394 34.059-51.470Q33.852-51.546 33.641-51.546Q33.297-51.546 33.137-51.523L33.137-51.464Q33.137-51.296 33.018-51.181Q32.899-51.066 32.735-51.066Q32.559-51.066 32.444-51.189Q32.328-51.312 32.328-51.480Q32.328-51.886 32.709-51.995Q33.090-52.105 33.649-52.105Q33.918-52.105 34.186-52.027Q34.453-51.948 34.678-51.798Q34.903-51.648 35.039-51.427Q35.176-51.206 35.176-50.929L35.176-49.210Q35.176-49.152 35.703-49.152Q35.899-49.132 35.949-48.921L35.949-48.831Q35.899-48.616 35.703-48.593L35.559-48.593Q35.215-48.593 34.986-48.640Q34.758-48.687 34.613-48.874Q34.153-48.554 33.445-48.554Q33.110-48.554 32.805-48.695Q32.500-48.835 32.309-49.097Q32.117-49.359 32.117-49.706M32.758-49.698Q32.758-49.425 33-49.269Q33.242-49.113 33.528-49.113Q33.746-49.113 33.979-49.171Q34.211-49.230 34.373-49.368Q34.535-49.507 34.535-49.730L34.535-50.320Q34.254-50.320 33.838-50.263Q33.422-50.206 33.090-50.068Q32.758-49.929 32.758-49.698M36.406-48.831L36.406-48.921Q36.457-49.128 36.653-49.152L37.758-49.152L37.758-52.921L36.653-52.921Q36.457-52.945 36.406-53.159L36.406-53.249Q36.457-53.456 36.653-53.480L38.149-53.480Q38.340-53.456 38.399-53.249L38.399-49.152L39.500-49.152Q39.699-49.128 39.750-48.921L39.750-48.831Q39.699-48.616 39.500-48.593L36.653-48.593Q36.457-48.616 36.406-48.831M40.387-48.831L40.387-48.921Q40.426-49.128 40.637-49.152L40.945-49.152L40.945-52.921L40.637-52.921Q40.426-52.945 40.387-53.159L40.387-53.249Q40.426-53.456 40.637-53.480L42.586-53.480Q42.985-53.480 43.330-53.279Q43.676-53.077 43.883-52.732Q44.090-52.386 44.090-51.984Q44.090-51.577 43.885-51.234Q43.680-50.890 43.334-50.685Q42.988-50.480 42.586-50.480L41.586-50.480L41.586-49.152L41.899-49.152Q42.110-49.128 42.149-48.921L42.149-48.831Q42.110-48.616 41.899-48.593L40.637-48.593Q40.426-48.616 40.387-48.831M41.586-52.921L41.586-51.042L42.426-51.042Q42.688-51.042 42.924-51.165Q43.160-51.288 43.305-51.503Q43.449-51.718 43.449-51.984Q43.449-52.253 43.305-52.464Q43.160-52.675 42.924-52.798Q42.688-52.921 42.426-52.921\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 36.304)\">\u003Cpath d=\"M52.787-49.570L47.474-49.570Q47.396-49.577 47.347-49.626Q47.299-49.675 47.299-49.753Q47.299-49.823 47.346-49.874Q47.392-49.925 47.474-49.937L52.787-49.937Q52.861-49.925 52.908-49.874Q52.955-49.823 52.955-49.753Q52.955-49.675 52.906-49.626Q52.857-49.577 52.787-49.570M52.787-51.257L47.474-51.257Q47.396-51.265 47.347-51.314Q47.299-51.363 47.299-51.441Q47.299-51.511 47.346-51.562Q47.392-51.613 47.474-51.624L52.787-51.624Q52.861-51.613 52.908-51.562Q52.955-51.511 52.955-51.441Q52.955-51.363 52.906-51.314Q52.857-51.265 52.787-51.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 36.304)\">\u003Cpath d=\"M55.983-48.831L55.983-48.921Q56.022-49.128 56.233-49.152L56.541-49.152L56.541-52.921L56.233-52.921Q56.022-52.945 55.983-53.159L55.983-53.249Q56.022-53.456 56.233-53.480L58.182-53.480Q58.580-53.480 58.926-53.279Q59.272-53.077 59.479-52.732Q59.686-52.386 59.686-51.984Q59.686-51.577 59.481-51.234Q59.276-50.890 58.930-50.685Q58.584-50.480 58.182-50.480L57.182-50.480L57.182-49.152L57.494-49.152Q57.705-49.128 57.744-48.921L57.744-48.831Q57.705-48.616 57.494-48.593L56.233-48.593Q56.022-48.616 55.983-48.831M57.182-52.921L57.182-51.042L58.022-51.042Q58.283-51.042 58.520-51.165Q58.756-51.288 58.901-51.503Q59.045-51.718 59.045-51.984Q59.045-52.253 58.901-52.464Q58.756-52.675 58.520-52.798Q58.283-52.921 58.022-52.921L57.182-52.921M62.311-48.515Q61.861-48.515 61.496-48.739Q61.131-48.964 60.877-49.347Q60.623-49.730 60.498-50.173Q60.373-50.616 60.373-51.042Q60.373-51.468 60.498-51.907Q60.623-52.347 60.877-52.730Q61.131-53.113 61.490-53.337Q61.850-53.562 62.311-53.562Q62.588-53.562 62.846-53.470Q63.104-53.378 63.319-53.210L63.451-53.448Q63.479-53.499 63.533-53.531Q63.588-53.562 63.647-53.562L63.725-53.562Q63.819-53.550 63.881-53.491Q63.944-53.433 63.955-53.327L63.955-51.999Q63.944-51.898 63.881-51.835Q63.819-51.773 63.725-51.761L63.557-51.761Q63.455-51.773 63.393-51.839Q63.330-51.906 63.319-51.999Q63.279-52.265 63.156-52.489Q63.033-52.714 62.830-52.857Q62.627-52.999 62.365-52.999Q62.033-52.999 61.781-52.816Q61.529-52.632 61.358-52.331Q61.186-52.031 61.100-51.689Q61.014-51.347 61.014-51.042Q61.014-50.738 61.098-50.396Q61.182-50.054 61.354-49.751Q61.526-49.448 61.783-49.261Q62.041-49.073 62.373-49.073Q62.756-49.073 63.037-49.347Q63.319-49.620 63.319-50.007Q63.346-50.218 63.557-50.241L63.725-50.241Q63.955-50.202 63.955-49.976Q63.955-49.659 63.819-49.388Q63.682-49.116 63.447-48.919Q63.213-48.722 62.922-48.618Q62.631-48.515 62.311-48.515\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 36.304)\">\u003Cpath d=\"M69.309-50.409L66.836-50.409Q66.758-50.421 66.709-50.470Q66.661-50.519 66.661-50.593Q66.661-50.667 66.709-50.716Q66.758-50.765 66.836-50.777L69.309-50.777L69.309-53.257Q69.336-53.425 69.493-53.425Q69.567-53.425 69.616-53.376Q69.665-53.327 69.676-53.257L69.676-50.777L72.149-50.777Q72.317-50.745 72.317-50.593Q72.317-50.441 72.149-50.409L69.676-50.409L69.676-47.929Q69.665-47.859 69.616-47.810Q69.567-47.761 69.493-47.761Q69.336-47.761 69.309-47.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 36.304)\">\u003Cpath d=\"M78.274-48.593L75.114-48.593L75.114-48.800Q75.114-48.827 75.137-48.859L76.489-50.257Q76.868-50.644 77.116-50.933Q77.364-51.222 77.538-51.579Q77.711-51.937 77.711-52.327Q77.711-52.675 77.579-52.968Q77.446-53.261 77.192-53.439Q76.938-53.616 76.583-53.616Q76.223-53.616 75.932-53.421Q75.641-53.226 75.497-52.898L75.551-52.898Q75.735-52.898 75.860-52.777Q75.985-52.656 75.985-52.464Q75.985-52.284 75.860-52.156Q75.735-52.027 75.551-52.027Q75.372-52.027 75.243-52.156Q75.114-52.284 75.114-52.464Q75.114-52.866 75.334-53.202Q75.555-53.538 75.920-53.726Q76.286-53.913 76.688-53.913Q77.168-53.913 77.584-53.726Q78.001-53.538 78.252-53.177Q78.504-52.816 78.504-52.327Q78.504-51.968 78.350-51.665Q78.196-51.363 77.944-51.103Q77.692-50.843 77.342-50.558Q76.993-50.273 76.825-50.120L75.895-49.281L76.610-49.281Q77.985-49.281 78.024-49.320Q78.094-49.398 78.137-49.583Q78.180-49.769 78.223-50.058L78.504-50.058\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(-73.985 70.23)\">\u003Cpath d=\"M27.944-47.084Q27.944-47.289 28.075-47.431Q28.207-47.572 28.417-47.572Q28.603-47.572 28.739-47.436Q28.876-47.299 28.876-47.104Q28.876-47.074 28.874-47.052Q28.871-47.031 28.866-47.001Q29.076-46.962 29.506-46.962Q29.945-46.962 30.190-47.333Q30.434-47.704 30.434-48.173L30.434-52.255L29.013-52.255Q28.764-52.284 28.735-52.533L28.735-52.621Q28.749-52.743 28.822-52.817Q28.896-52.890 29.013-52.905L30.883-52.905Q31.005-52.890 31.078-52.817Q31.152-52.743 31.166-52.621L31.166-48.134Q31.166-47.787 31.047-47.463Q30.927-47.138 30.693-46.872Q30.458-46.606 30.151-46.459Q29.843-46.313 29.486-46.313Q29.071-46.313 28.757-46.352Q28.442-46.391 28.193-46.559Q27.944-46.728 27.944-47.084M30.126-54.194Q30.126-54.408 30.277-54.560Q30.429-54.711 30.644-54.711Q30.863-54.711 31.015-54.560Q31.166-54.408 31.166-54.194Q31.166-53.984 31.010-53.827Q30.854-53.671 30.644-53.671Q30.439-53.671 30.282-53.827Q30.126-53.984 30.126-54.194M32.812-48.871L32.812-48.964Q32.851-49.213 33.095-49.242L33.666-49.242L33.666-52.255L33.095-52.255Q32.851-52.284 32.812-52.533L32.812-52.621Q32.851-52.875 33.095-52.905L34.115-52.905Q34.233-52.890 34.306-52.817Q34.379-52.743 34.394-52.621L34.394-52.455Q34.653-52.699 34.994-52.831Q35.336-52.963 35.702-52.963Q36.361-52.963 36.684-52.575Q37.006-52.187 37.006-51.513L37.006-49.242L37.572-49.242Q37.694-49.228 37.768-49.159Q37.841-49.091 37.856-48.964L37.856-48.871Q37.841-48.754 37.768-48.681Q37.694-48.608 37.572-48.593L35.795-48.593Q35.551-48.622 35.512-48.871L35.512-48.964Q35.551-49.213 35.795-49.242L36.274-49.242L36.274-51.474Q36.274-51.894 36.149-52.104Q36.025-52.314 35.634-52.314Q35.302-52.314 35.011-52.138Q34.721-51.962 34.557-51.669Q34.394-51.376 34.394-51.034L34.394-49.242L34.965-49.242Q35.214-49.213 35.243-48.964L35.243-48.871Q35.214-48.622 34.965-48.593L33.095-48.593Q32.851-48.622 32.812-48.871M42.323-50.483L39.252-50.483Q39.360-49.911 39.828-49.548Q40.297-49.184 40.893-49.184Q41.205-49.184 41.486-49.328Q41.767-49.472 41.874-49.731Q41.952-49.960 42.153-49.985L42.323-49.985Q42.450-49.970 42.526-49.885Q42.602-49.799 42.602-49.682Q42.602-49.653 42.599-49.635Q42.597-49.618 42.592-49.594Q42.402-49.067 41.906-48.801Q41.410-48.534 40.815-48.534Q40.209-48.534 39.670-48.830Q39.130-49.125 38.813-49.633Q38.495-50.141 38.495-50.761Q38.495-51.210 38.661-51.611Q38.827-52.011 39.123-52.326Q39.418-52.641 39.816-52.817Q40.214-52.992 40.663-52.992Q41.288-52.992 41.728-52.707Q42.167-52.421 42.384-51.926Q42.602-51.430 42.602-50.805Q42.602-50.673 42.524-50.585Q42.445-50.497 42.323-50.483M39.262-51.122L41.855-51.122Q41.816-51.474 41.674-51.750Q41.532-52.026 41.278-52.184Q41.025-52.343 40.663-52.343Q40.331-52.343 40.031-52.177Q39.731-52.011 39.528-51.728Q39.325-51.445 39.262-51.122\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.985 70.23)\">\u003Cpath d=\"M48.636-48.871L48.636-48.964Q48.665-49.213 48.914-49.242L49.266-49.242L49.266-54.052L48.914-54.052Q48.665-54.081 48.636-54.335L48.636-54.423Q48.665-54.672 48.914-54.701L51.185-54.701Q51.712-54.701 52.122-54.406Q52.532-54.111 52.794-53.637Q53.055-53.163 53.184-52.621Q53.314-52.079 53.314-51.591Q53.314-50.927 53.069-50.226Q52.825-49.526 52.344-49.059Q51.863-48.593 51.185-48.593L48.914-48.593Q48.665-48.622 48.636-48.871M49.993-54.052L49.993-49.242L50.994-49.242Q51.395-49.242 51.697-49.467Q52-49.692 52.195-50.048Q52.391-50.405 52.488-50.815Q52.586-51.225 52.586-51.591Q52.586-52.109 52.410-52.685Q52.235-53.261 51.876-53.656Q51.517-54.052 50.994-54.052L49.993-54.052M58.074-50.483L55.003-50.483Q55.111-49.911 55.579-49.548Q56.048-49.184 56.644-49.184Q56.956-49.184 57.237-49.328Q57.518-49.472 57.625-49.731Q57.703-49.960 57.903-49.985L58.074-49.985Q58.201-49.970 58.277-49.885Q58.353-49.799 58.353-49.682Q58.353-49.653 58.350-49.635Q58.348-49.618 58.343-49.594Q58.153-49.067 57.657-48.801Q57.161-48.534 56.566-48.534Q55.960-48.534 55.421-48.830Q54.881-49.125 54.564-49.633Q54.246-50.141 54.246-50.761Q54.246-51.210 54.412-51.611Q54.578-52.011 54.874-52.326Q55.169-52.641 55.567-52.817Q55.965-52.992 56.414-52.992Q57.039-52.992 57.479-52.707Q57.918-52.421 58.135-51.926Q58.353-51.430 58.353-50.805Q58.353-50.673 58.275-50.585Q58.196-50.497 58.074-50.483M55.013-51.122L57.606-51.122Q57.567-51.474 57.425-51.750Q57.283-52.026 57.029-52.184Q56.776-52.343 56.414-52.343Q56.082-52.343 55.782-52.177Q55.482-52.011 55.279-51.728Q55.076-51.445 55.013-51.122M59.681-48.803L59.681-50.033Q59.720-50.273 59.954-50.302L60.145-50.302Q60.345-50.273 60.403-50.092Q60.657-49.184 61.624-49.184Q62.112-49.184 62.508-49.323Q62.903-49.462 62.903-49.853Q62.903-50.136 62.613-50.292Q62.322-50.448 61.971-50.502L61.092-50.654Q60.511-50.746 60.096-51.020Q59.681-51.293 59.681-51.801Q59.681-52.265 59.984-52.529Q60.286-52.792 60.733-52.892Q61.180-52.992 61.624-52.992Q62.244-52.992 62.635-52.792Q62.684-52.880 62.740-52.929Q62.796-52.978 62.903-52.992L62.982-52.992Q63.216-52.963 63.255-52.724L63.255-51.762Q63.216-51.523 62.982-51.493L62.791-51.493Q62.552-51.523 62.523-51.762Q62.523-52.343 61.605-52.343Q61.346-52.343 61.060-52.304Q60.775-52.265 60.555-52.140Q60.335-52.016 60.335-51.791Q60.335-51.406 61.204-51.283L62.093-51.132Q62.449-51.078 62.786-50.922Q63.123-50.766 63.338-50.492Q63.553-50.219 63.553-49.853Q63.553-49.145 62.974-48.840Q62.396-48.534 61.624-48.534Q60.867-48.534 60.374-48.891Q60.345-48.837 60.298-48.744Q60.252-48.652 60.194-48.600Q60.135-48.549 60.042-48.534L59.954-48.534Q59.720-48.564 59.681-48.803M65.721-49.872L65.721-52.255L64.744-52.255Q64.490-52.284 64.461-52.533L64.461-52.621Q64.490-52.875 64.744-52.905L65.721-52.905L65.721-53.852Q65.750-54.096 66.004-54.135L66.170-54.135Q66.424-54.096 66.453-53.852L66.453-52.905L68.192-52.905Q68.314-52.890 68.384-52.817Q68.455-52.743 68.470-52.621L68.470-52.533Q68.441-52.284 68.192-52.255L66.453-52.255L66.453-49.911Q66.453-49.184 67.210-49.184Q67.518-49.184 67.745-49.394Q67.972-49.604 67.972-49.911L67.972-49.965Q67.986-50.082 68.060-50.156Q68.133-50.229 68.250-50.243L68.421-50.243Q68.665-50.214 68.704-49.965L68.704-49.872Q68.704-49.472 68.477-49.167Q68.250-48.862 67.894-48.698Q67.537-48.534 67.142-48.534Q66.727-48.534 66.409-48.693Q66.092-48.852 65.906-49.157Q65.721-49.462 65.721-49.872\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M11.816 29.652h31.298V9.735H11.816Z\"\u002F>\u003Cg transform=\"translate(-5.43 70.864)\">\u003Cpath d=\"M28.961-48.816Q28.961-49.241 29.045-49.691Q29.129-50.140 29.285-50.558Q29.442-50.976 29.656-51.363Q29.871-51.749 30.145-52.105L30.871-53.058L29.961-53.058Q28.465-53.058 28.426-53.019Q28.356-52.937 28.309-52.747Q28.262-52.558 28.219-52.281L27.938-52.281L28.207-53.999L28.488-53.999L28.488-53.976Q28.488-53.831 29.006-53.788Q29.524-53.745 30.016-53.745L31.586-53.745L31.586-53.554Q31.578-53.515 31.563-53.488L30.387-51.952Q30.086-51.534 29.947-51.027Q29.809-50.519 29.777-50.025Q29.746-49.531 29.746-48.816Q29.746-48.710 29.695-48.618Q29.645-48.527 29.553-48.476Q29.461-48.425 29.352-48.425Q29.246-48.425 29.154-48.476Q29.063-48.527 29.012-48.618Q28.961-48.710 28.961-48.816M32.430-49.058Q32.430-49.241 32.567-49.378Q32.703-49.515 32.895-49.515Q33.086-49.515 33.219-49.382Q33.352-49.249 33.352-49.058Q33.352-48.859 33.219-48.726Q33.086-48.593 32.895-48.593Q32.703-48.593 32.567-48.730Q32.430-48.866 32.430-49.058M32.430-51.585Q32.430-51.769 32.567-51.906Q32.703-52.042 32.895-52.042Q33.086-52.042 33.219-51.909Q33.352-51.777 33.352-51.585Q33.352-51.386 33.219-51.253Q33.086-51.120 32.895-51.120Q32.703-51.120 32.567-51.257Q32.430-51.394 32.430-51.585M36.551-49.906L34.309-49.906L34.309-50.202L36.879-53.859Q36.918-53.913 36.981-53.913L37.125-53.913Q37.176-53.913 37.207-53.882Q37.238-53.851 37.238-53.800L37.238-50.202L38.070-50.202L38.070-49.906L37.238-49.906L37.238-49.152Q37.238-48.890 38.063-48.890L38.063-48.593L35.727-48.593L35.727-48.890Q36.551-48.890 36.551-49.152L36.551-49.906M36.606-53.007L34.637-50.202L36.606-50.202\" 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=\"M43.114 29.652h113.81V9.735H43.115Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(46.124 70.286)\">\u003Cpath d=\"M30.879-48.593L27.817-48.593L27.817-48.890Q28.141-48.890 28.383-48.937Q28.625-48.984 28.625-49.152L28.625-53.495Q28.625-53.667 28.383-53.714Q28.141-53.761 27.817-53.761L27.817-54.058L30.879-54.058Q31.430-54.058 31.908-53.831Q32.387-53.605 32.740-53.210Q33.094-52.816 33.283-52.316Q33.473-51.816 33.473-51.273Q33.473-50.566 33.129-49.948Q32.785-49.331 32.190-48.962Q31.594-48.593 30.879-48.593M29.367-53.495L29.367-49.152Q29.367-48.980 29.459-48.935Q29.551-48.890 29.770-48.890L30.664-48.890Q31.110-48.890 31.502-49.060Q31.895-49.230 32.166-49.554Q32.438-49.878 32.535-50.298Q32.633-50.718 32.633-51.273Q32.633-51.628 32.596-51.941Q32.559-52.253 32.453-52.548Q32.348-52.843 32.168-53.066Q31.985-53.300 31.746-53.450Q31.508-53.601 31.227-53.681Q30.945-53.761 30.664-53.761L29.770-53.761Q29.551-53.761 29.459-53.718Q29.367-53.675 29.367-53.495M34.192-50.347Q34.192-50.827 34.424-51.243Q34.656-51.659 35.067-51.909Q35.477-52.159 35.953-52.159Q36.684-52.159 37.082-51.718Q37.481-51.277 37.481-50.546Q37.481-50.441 37.387-50.417L34.938-50.417L34.938-50.347Q34.938-49.937 35.059-49.581Q35.180-49.226 35.451-49.009Q35.723-48.792 36.153-48.792Q36.516-48.792 36.813-49.021Q37.110-49.249 37.211-49.601Q37.219-49.648 37.305-49.663L37.387-49.663Q37.481-49.636 37.481-49.554Q37.481-49.546 37.473-49.515Q37.410-49.288 37.272-49.105Q37.133-48.921 36.942-48.788Q36.750-48.656 36.531-48.585Q36.313-48.515 36.074-48.515Q35.703-48.515 35.365-48.652Q35.028-48.788 34.760-49.040Q34.492-49.292 34.342-49.632Q34.192-49.972 34.192-50.347M34.945-50.656L36.906-50.656Q36.906-50.960 36.805-51.251Q36.703-51.542 36.486-51.724Q36.270-51.906 35.953-51.906Q35.653-51.906 35.422-51.718Q35.192-51.531 35.069-51.239Q34.945-50.948 34.945-50.656M38.012-48.601L38.012-49.823Q38.012-49.851 38.043-49.882Q38.074-49.913 38.098-49.913L38.203-49.913Q38.274-49.913 38.289-49.851Q38.352-49.531 38.490-49.290Q38.629-49.050 38.861-48.909Q39.094-48.769 39.403-48.769Q39.641-48.769 39.850-48.829Q40.059-48.890 40.195-49.038Q40.332-49.187 40.332-49.433Q40.332-49.687 40.121-49.853Q39.910-50.019 39.641-50.073L39.020-50.187Q38.613-50.265 38.313-50.521Q38.012-50.777 38.012-51.152Q38.012-51.519 38.213-51.741Q38.414-51.964 38.738-52.062Q39.063-52.159 39.403-52.159Q39.867-52.159 40.164-51.952L40.387-52.136Q40.410-52.159 40.442-52.159L40.492-52.159Q40.524-52.159 40.551-52.132Q40.578-52.105 40.578-52.073L40.578-51.089Q40.578-51.058 40.553-51.029Q40.528-50.999 40.492-50.999L40.387-50.999Q40.352-50.999 40.324-51.027Q40.297-51.054 40.297-51.089Q40.297-51.488 40.045-51.708Q39.793-51.929 39.395-51.929Q39.039-51.929 38.756-51.806Q38.473-51.683 38.473-51.378Q38.473-51.159 38.674-51.027Q38.875-50.894 39.121-50.851L39.746-50.738Q40.176-50.648 40.485-50.351Q40.793-50.054 40.793-49.640Q40.793-49.070 40.395-48.792Q39.996-48.515 39.403-48.515Q38.852-48.515 38.500-48.851L38.203-48.538Q38.180-48.515 38.145-48.515L38.098-48.515Q38.074-48.515 38.043-48.546Q38.012-48.577 38.012-48.601M41.945-49.554L41.945-51.745L41.242-51.745L41.242-51.999Q41.598-51.999 41.840-52.232Q42.082-52.464 42.194-52.812Q42.305-53.159 42.305-53.515L42.586-53.515L42.586-52.042L43.762-52.042L43.762-51.745L42.586-51.745L42.586-49.570Q42.586-49.249 42.705-49.021Q42.824-48.792 43.106-48.792Q43.285-48.792 43.403-48.915Q43.520-49.038 43.572-49.218Q43.625-49.398 43.625-49.570L43.625-50.042L43.906-50.042L43.906-49.554Q43.906-49.300 43.801-49.060Q43.695-48.820 43.498-48.667Q43.301-48.515 43.043-48.515Q42.727-48.515 42.475-48.638Q42.223-48.761 42.084-48.995Q41.945-49.230 41.945-49.554\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.124 70.286)\">\u003Cpath d=\"M49.840-46.601Q49.227-47.058 48.825-47.693Q48.422-48.327 48.227-49.073Q48.032-49.820 48.032-50.593Q48.032-51.366 48.227-52.113Q48.422-52.859 48.825-53.493Q49.227-54.128 49.840-54.585Q49.852-54.589 49.860-54.591Q49.868-54.593 49.879-54.593L49.957-54.593Q49.996-54.593 50.022-54.566Q50.047-54.538 50.047-54.495Q50.047-54.445 50.016-54.425Q49.508-53.972 49.186-53.349Q48.864-52.726 48.723-52.031Q48.582-51.335 48.582-50.593Q48.582-49.859 48.721-49.159Q48.860-48.460 49.184-47.835Q49.508-47.210 50.016-46.761Q50.047-46.741 50.047-46.691Q50.047-46.648 50.022-46.620Q49.996-46.593 49.957-46.593L49.879-46.593Q49.871-46.597 49.862-46.599Q49.852-46.601 49.840-46.601M50.879-49.816Q50.879-50.312 51.205-50.677Q51.532-51.042 52.055-51.288L51.785-51.448Q51.489-51.632 51.305-51.927Q51.121-52.222 51.121-52.562Q51.121-52.956 51.340-53.267Q51.559-53.577 51.912-53.745Q52.266-53.913 52.649-53.913Q52.922-53.913 53.196-53.835Q53.469-53.757 53.686-53.609Q53.903-53.460 54.039-53.234Q54.176-53.007 54.176-52.714Q54.176-52.308 53.907-52.001Q53.637-51.695 53.215-51.480L53.664-51.210Q53.883-51.073 54.051-50.880Q54.219-50.687 54.317-50.448Q54.414-50.210 54.414-49.952Q54.414-49.613 54.264-49.325Q54.114-49.038 53.868-48.841Q53.621-48.644 53.297-48.534Q52.973-48.425 52.649-48.425Q52.219-48.425 51.813-48.587Q51.407-48.749 51.143-49.068Q50.879-49.386 50.879-49.816M51.368-49.816Q51.368-49.331 51.758-49.015Q52.149-48.698 52.649-48.698Q52.942-48.698 53.241-48.810Q53.539-48.921 53.733-49.140Q53.926-49.359 53.926-49.671Q53.926-49.902 53.785-50.113Q53.645-50.323 53.438-50.441L52.328-51.120Q51.910-50.917 51.639-50.581Q51.368-50.245 51.368-49.816M51.953-52.249L52.942-51.648Q53.289-51.831 53.516-52.101Q53.743-52.370 53.743-52.714Q53.743-52.933 53.651-53.109Q53.559-53.284 53.405-53.407Q53.250-53.531 53.049-53.601Q52.848-53.671 52.649-53.671Q52.243-53.671 51.897-53.460Q51.551-53.249 51.551-52.866Q51.551-52.683 51.662-52.521Q51.774-52.359 51.953-52.249\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.124 70.286)\">\u003Cpath d=\"M58.764-48.593L58.483-48.593L58.483-53.312Q58.483-53.527 58.421-53.622Q58.358-53.718 58.241-53.739Q58.124-53.761 57.878-53.761L57.878-54.058L59.100-54.144L59.100-51.656Q59.577-52.120 60.276-52.120Q60.757-52.120 61.165-51.876Q61.573-51.632 61.809-51.218Q62.046-50.804 62.046-50.320Q62.046-49.945 61.897-49.616Q61.749-49.288 61.479-49.036Q61.210-48.784 60.866-48.650Q60.522-48.515 60.163-48.515Q59.842-48.515 59.544-48.663Q59.245-48.812 59.038-49.073L58.764-48.593M59.124-51.265L59.124-49.425Q59.276-49.128 59.536-48.948Q59.796-48.769 60.108-48.769Q60.534-48.769 60.801-48.988Q61.069-49.206 61.184-49.552Q61.300-49.898 61.300-50.320Q61.300-50.968 61.051-51.417Q60.803-51.866 60.206-51.866Q59.870-51.866 59.581-51.708Q59.292-51.550 59.124-51.265\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.124 70.286)\">\u003Cpath d=\"M62.755-47.296Q62.869-47.218 63.044-47.218Q63.333-47.218 63.554-47.431Q63.775-47.644 63.900-47.945L64.189-48.593L62.915-51.480Q62.833-51.656 62.689-51.700Q62.544-51.745 62.275-51.745L62.275-52.042L63.994-52.042L63.994-51.745Q63.572-51.745 63.572-51.562Q63.572-51.550 63.587-51.480L64.525-49.355L65.357-51.265Q65.396-51.355 65.396-51.433Q65.396-51.573 65.294-51.659Q65.193-51.745 65.052-51.745L65.052-52.042L66.404-52.042L66.404-51.745Q66.150-51.745 65.956-51.620Q65.763-51.495 65.658-51.265L64.212-47.945Q64.099-47.691 63.933-47.468Q63.767-47.245 63.538-47.103Q63.310-46.960 63.044-46.960Q62.747-46.960 62.507-47.152Q62.267-47.343 62.267-47.632Q62.267-47.788 62.372-47.890Q62.478-47.991 62.626-47.991Q62.732-47.991 62.812-47.945Q62.892-47.898 62.939-47.820Q62.986-47.741 62.986-47.632Q62.986-47.511 62.925-47.423Q62.865-47.335 62.755-47.296M67.443-49.554L67.443-51.745L66.740-51.745L66.740-51.999Q67.095-51.999 67.337-52.232Q67.579-52.464 67.691-52.812Q67.802-53.159 67.802-53.515L68.083-53.515L68.083-52.042L69.259-52.042L69.259-51.745L68.083-51.745L68.083-49.570Q68.083-49.249 68.203-49.021Q68.322-48.792 68.603-48.792Q68.783-48.792 68.900-48.915Q69.017-49.038 69.070-49.218Q69.122-49.398 69.122-49.570L69.122-50.042L69.404-50.042L69.404-49.554Q69.404-49.300 69.298-49.060Q69.193-48.820 68.995-48.667Q68.798-48.515 68.540-48.515Q68.224-48.515 67.972-48.638Q67.720-48.761 67.581-48.995Q67.443-49.230 67.443-49.554M70.122-50.347Q70.122-50.827 70.355-51.243Q70.587-51.659 70.997-51.909Q71.408-52.159 71.884-52.159Q72.615-52.159 73.013-51.718Q73.411-51.277 73.411-50.546Q73.411-50.441 73.318-50.417L70.869-50.417L70.869-50.347Q70.869-49.937 70.990-49.581Q71.111-49.226 71.382-49.009Q71.654-48.792 72.083-48.792Q72.447-48.792 72.744-49.021Q73.040-49.249 73.142-49.601Q73.150-49.648 73.236-49.663L73.318-49.663Q73.411-49.636 73.411-49.554Q73.411-49.546 73.404-49.515Q73.341-49.288 73.203-49.105Q73.064-48.921 72.872-48.788Q72.681-48.656 72.462-48.585Q72.244-48.515 72.005-48.515Q71.634-48.515 71.296-48.652Q70.958-48.788 70.691-49.040Q70.423-49.292 70.273-49.632Q70.122-49.972 70.122-50.347M70.876-50.656L72.837-50.656Q72.837-50.960 72.736-51.251Q72.634-51.542 72.417-51.724Q72.201-51.906 71.884-51.906Q71.583-51.906 71.353-51.718Q71.122-51.531 70.999-51.239Q70.876-50.948 70.876-50.656M73.943-48.601L73.943-49.823Q73.943-49.851 73.974-49.882Q74.005-49.913 74.029-49.913L74.134-49.913Q74.204-49.913 74.220-49.851Q74.283-49.531 74.421-49.290Q74.560-49.050 74.792-48.909Q75.025-48.769 75.333-48.769Q75.572-48.769 75.781-48.829Q75.990-48.890 76.126-49.038Q76.263-49.187 76.263-49.433Q76.263-49.687 76.052-49.853Q75.841-50.019 75.572-50.073L74.951-50.187Q74.544-50.265 74.244-50.521Q73.943-50.777 73.943-51.152Q73.943-51.519 74.144-51.741Q74.345-51.964 74.669-52.062Q74.994-52.159 75.333-52.159Q75.798-52.159 76.095-51.952L76.318-52.136Q76.341-52.159 76.372-52.159L76.423-52.159Q76.454-52.159 76.482-52.132Q76.509-52.105 76.509-52.073L76.509-51.089Q76.509-51.058 76.484-51.029Q76.458-50.999 76.423-50.999L76.318-50.999Q76.283-50.999 76.255-51.027Q76.228-51.054 76.228-51.089Q76.228-51.488 75.976-51.708Q75.724-51.929 75.326-51.929Q74.970-51.929 74.687-51.806Q74.404-51.683 74.404-51.378Q74.404-51.159 74.605-51.027Q74.806-50.894 75.052-50.851L75.677-50.738Q76.107-50.648 76.415-50.351Q76.724-50.054 76.724-49.640Q76.724-49.070 76.326-48.792Q75.927-48.515 75.333-48.515Q74.783-48.515 74.431-48.851L74.134-48.538Q74.111-48.515 74.076-48.515L74.029-48.515Q74.005-48.515 73.974-48.546Q73.943-48.577 73.943-48.601M77.654-46.593L77.572-46.593Q77.536-46.593 77.511-46.622Q77.486-46.652 77.486-46.691Q77.486-46.741 77.517-46.761Q77.904-47.097 78.187-47.546Q78.470-47.995 78.636-48.495Q78.802-48.995 78.876-49.513Q78.951-50.031 78.951-50.593Q78.951-51.163 78.876-51.679Q78.802-52.195 78.636-52.691Q78.470-53.187 78.191-53.634Q77.911-54.081 77.517-54.425Q77.486-54.445 77.486-54.495Q77.486-54.534 77.511-54.564Q77.536-54.593 77.572-54.593L77.654-54.593Q77.665-54.593 77.675-54.591Q77.685-54.589 77.693-54.585Q78.306-54.128 78.708-53.493Q79.111-52.859 79.306-52.113Q79.501-51.366 79.501-50.593Q79.501-49.820 79.306-49.073Q79.111-48.327 78.708-47.693Q78.306-47.058 77.693-46.601Q77.681-46.601 77.673-46.599Q77.665-46.597 77.654-46.593\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(157.178 70.448)\">\u003Cpath d=\"M29.121-48.816L28.235-51.480L27.914-51.480Q27.715-51.503 27.664-51.722L27.664-51.808Q27.715-52.019 27.914-52.042L29.074-52.042Q29.270-52.023 29.320-51.808L29.320-51.722Q29.270-51.503 29.074-51.480L28.793-51.480L29.586-49.105L30.375-51.480L30.098-51.480Q29.899-51.503 29.848-51.722L29.848-51.808Q29.899-52.019 30.098-52.042L31.258-52.042Q31.453-52.019 31.504-51.808L31.504-51.722Q31.453-51.503 31.258-51.480L30.938-51.480L30.051-48.816Q30.008-48.702 29.906-48.628Q29.805-48.554 29.680-48.554L29.488-48.554Q29.371-48.554 29.268-48.626Q29.164-48.698 29.121-48.816M32.117-49.706Q32.117-50.152 32.531-50.409Q32.945-50.667 33.486-50.767Q34.028-50.866 34.535-50.874Q34.535-51.089 34.401-51.241Q34.266-51.394 34.059-51.470Q33.852-51.546 33.641-51.546Q33.297-51.546 33.137-51.523L33.137-51.464Q33.137-51.296 33.018-51.181Q32.899-51.066 32.735-51.066Q32.559-51.066 32.444-51.189Q32.328-51.312 32.328-51.480Q32.328-51.886 32.709-51.995Q33.090-52.105 33.649-52.105Q33.918-52.105 34.186-52.027Q34.453-51.948 34.678-51.798Q34.903-51.648 35.039-51.427Q35.176-51.206 35.176-50.929L35.176-49.210Q35.176-49.152 35.703-49.152Q35.899-49.132 35.949-48.921L35.949-48.831Q35.899-48.616 35.703-48.593L35.559-48.593Q35.215-48.593 34.986-48.640Q34.758-48.687 34.613-48.874Q34.153-48.554 33.445-48.554Q33.110-48.554 32.805-48.695Q32.500-48.835 32.309-49.097Q32.117-49.359 32.117-49.706M32.758-49.698Q32.758-49.425 33-49.269Q33.242-49.113 33.528-49.113Q33.746-49.113 33.979-49.171Q34.211-49.230 34.373-49.368Q34.535-49.507 34.535-49.730L34.535-50.320Q34.254-50.320 33.838-50.263Q33.422-50.206 33.090-50.068Q32.758-49.929 32.758-49.698M36.406-48.831L36.406-48.921Q36.457-49.128 36.653-49.152L37.758-49.152L37.758-52.921L36.653-52.921Q36.457-52.945 36.406-53.159L36.406-53.249Q36.457-53.456 36.653-53.480L38.149-53.480Q38.340-53.456 38.399-53.249L38.399-49.152L39.500-49.152Q39.699-49.128 39.750-48.921L39.750-48.831Q39.699-48.616 39.500-48.593L36.653-48.593Q36.457-48.616 36.406-48.831M40.387-48.831L40.387-48.921Q40.426-49.128 40.637-49.152L40.945-49.152L40.945-52.921L40.637-52.921Q40.426-52.945 40.387-53.159L40.387-53.249Q40.426-53.456 40.637-53.480L42.586-53.480Q42.985-53.480 43.330-53.279Q43.676-53.077 43.883-52.732Q44.090-52.386 44.090-51.984Q44.090-51.577 43.885-51.234Q43.680-50.890 43.334-50.685Q42.988-50.480 42.586-50.480L41.586-50.480L41.586-49.152L41.899-49.152Q42.110-49.128 42.149-48.921L42.149-48.831Q42.110-48.616 41.899-48.593L40.637-48.593Q40.426-48.616 40.387-48.831M41.586-52.921L41.586-51.042L42.426-51.042Q42.688-51.042 42.924-51.165Q43.160-51.288 43.305-51.503Q43.449-51.718 43.449-51.984Q43.449-52.253 43.305-52.464Q43.160-52.675 42.924-52.798Q42.688-52.921 42.426-52.921\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 70.448)\">\u003Cpath d=\"M52.787-49.570L47.474-49.570Q47.396-49.577 47.347-49.626Q47.299-49.675 47.299-49.753Q47.299-49.823 47.346-49.874Q47.392-49.925 47.474-49.937L52.787-49.937Q52.861-49.925 52.908-49.874Q52.955-49.823 52.955-49.753Q52.955-49.675 52.906-49.626Q52.857-49.577 52.787-49.570M52.787-51.257L47.474-51.257Q47.396-51.265 47.347-51.314Q47.299-51.363 47.299-51.441Q47.299-51.511 47.346-51.562Q47.392-51.613 47.474-51.624L52.787-51.624Q52.861-51.613 52.908-51.562Q52.955-51.511 52.955-51.441Q52.955-51.363 52.906-51.314Q52.857-51.265 52.787-51.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 70.448)\">\u003Cpath d=\"M55.983-48.831L55.983-48.921Q56.022-49.128 56.233-49.152L56.541-49.152L56.541-52.921L56.233-52.921Q56.022-52.945 55.983-53.159L55.983-53.249Q56.022-53.456 56.233-53.480L58.182-53.480Q58.580-53.480 58.926-53.279Q59.272-53.077 59.479-52.732Q59.686-52.386 59.686-51.984Q59.686-51.577 59.481-51.234Q59.276-50.890 58.930-50.685Q58.584-50.480 58.182-50.480L57.182-50.480L57.182-49.152L57.494-49.152Q57.705-49.128 57.744-48.921L57.744-48.831Q57.705-48.616 57.494-48.593L56.233-48.593Q56.022-48.616 55.983-48.831M57.182-52.921L57.182-51.042L58.022-51.042Q58.283-51.042 58.520-51.165Q58.756-51.288 58.901-51.503Q59.045-51.718 59.045-51.984Q59.045-52.253 58.901-52.464Q58.756-52.675 58.520-52.798Q58.283-52.921 58.022-52.921L57.182-52.921M62.311-48.515Q61.861-48.515 61.496-48.739Q61.131-48.964 60.877-49.347Q60.623-49.730 60.498-50.173Q60.373-50.616 60.373-51.042Q60.373-51.468 60.498-51.907Q60.623-52.347 60.877-52.730Q61.131-53.113 61.490-53.337Q61.850-53.562 62.311-53.562Q62.588-53.562 62.846-53.470Q63.104-53.378 63.319-53.210L63.451-53.448Q63.479-53.499 63.533-53.531Q63.588-53.562 63.647-53.562L63.725-53.562Q63.819-53.550 63.881-53.491Q63.944-53.433 63.955-53.327L63.955-51.999Q63.944-51.898 63.881-51.835Q63.819-51.773 63.725-51.761L63.557-51.761Q63.455-51.773 63.393-51.839Q63.330-51.906 63.319-51.999Q63.279-52.265 63.156-52.489Q63.033-52.714 62.830-52.857Q62.627-52.999 62.365-52.999Q62.033-52.999 61.781-52.816Q61.529-52.632 61.358-52.331Q61.186-52.031 61.100-51.689Q61.014-51.347 61.014-51.042Q61.014-50.738 61.098-50.396Q61.182-50.054 61.354-49.751Q61.526-49.448 61.783-49.261Q62.041-49.073 62.373-49.073Q62.756-49.073 63.037-49.347Q63.319-49.620 63.319-50.007Q63.346-50.218 63.557-50.241L63.725-50.241Q63.955-50.202 63.955-49.976Q63.955-49.659 63.819-49.388Q63.682-49.116 63.447-48.919Q63.213-48.722 62.922-48.618Q62.631-48.515 62.311-48.515\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 70.448)\">\u003Cpath d=\"M69.309-50.409L66.836-50.409Q66.758-50.421 66.709-50.470Q66.661-50.519 66.661-50.593Q66.661-50.667 66.709-50.716Q66.758-50.765 66.836-50.777L69.309-50.777L69.309-53.257Q69.336-53.425 69.493-53.425Q69.567-53.425 69.616-53.376Q69.665-53.327 69.676-53.257L69.676-50.777L72.149-50.777Q72.317-50.745 72.317-50.593Q72.317-50.441 72.149-50.409L69.676-50.409L69.676-47.929Q69.665-47.859 69.616-47.810Q69.567-47.761 69.493-47.761Q69.336-47.761 69.309-47.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.178 70.448)\">\u003Cpath d=\"M75.680-48.937Q75.911-48.698 76.458-48.698Q76.711-48.698 76.934-48.822Q77.157-48.945 77.327-49.161Q77.497-49.378 77.590-49.609Q77.715-49.921 77.754-50.261Q77.793-50.601 77.793-51.050Q77.626-50.718 77.342-50.523Q77.059-50.327 76.719-50.327Q76.356-50.327 76.043-50.472Q75.731-50.616 75.508-50.868Q75.286-51.120 75.163-51.447Q75.040-51.773 75.040-52.128Q75.040-52.624 75.282-53.034Q75.524-53.445 75.942-53.679Q76.360-53.913 76.856-53.913Q77.813-53.913 78.194-53.083Q78.575-52.253 78.575-51.179Q78.575-50.546 78.325-49.902Q78.075-49.257 77.592-48.841Q77.110-48.425 76.458-48.425Q75.954-48.425 75.604-48.642Q75.254-48.859 75.254-49.327Q75.254-49.495 75.368-49.609Q75.481-49.722 75.649-49.722Q75.754-49.722 75.846-49.671Q75.938-49.620 75.989-49.529Q76.040-49.437 76.040-49.327Q76.040-49.179 75.938-49.058Q75.836-48.937 75.680-48.937M76.758-50.585Q77.090-50.585 77.323-50.796Q77.555-51.007 77.667-51.329Q77.778-51.652 77.778-51.968Q77.778-52.066 77.766-52.120Q77.770-52.128 77.774-52.140Q77.778-52.152 77.778-52.159Q77.778-52.402 77.735-52.665Q77.692-52.929 77.590-53.157Q77.489-53.386 77.307-53.529Q77.126-53.671 76.856-53.671Q76.422-53.671 76.196-53.450Q75.969-53.230 75.897-52.898Q75.825-52.566 75.825-52.128Q75.825-51.683 75.881-51.361Q75.938-51.038 76.143-50.812Q76.348-50.585 76.758-50.585\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt10\" font-size=\"10\">\u003Cg transform=\"translate(-89.735 104.374)\">\u003Cpath d=\"M28.227-48.871L28.227-48.964Q28.256-49.213 28.505-49.242L29.843-49.242L29.843-52.255L28.583-52.255Q28.334-52.289 28.305-52.533L28.305-52.621Q28.319-52.739 28.395-52.814Q28.471-52.890 28.583-52.905L30.297-52.905Q30.414-52.890 30.487-52.817Q30.561-52.743 30.575-52.621L30.575-49.242L31.757-49.242Q31.991-49.213 32.035-48.964L32.035-48.871Q31.991-48.622 31.757-48.593L28.505-48.593Q28.256-48.622 28.227-48.871M29.535-54.194Q29.535-54.408 29.687-54.560Q29.838-54.711 30.053-54.711Q30.273-54.711 30.424-54.560Q30.575-54.408 30.575-54.194Q30.575-53.984 30.419-53.827Q30.263-53.671 30.053-53.671Q29.848-53.671 29.692-53.827Q29.535-53.984 29.535-54.194M36.195-48.593L33.295-48.593Q33.051-48.622 33.012-48.871L33.012-48.964Q33.051-49.213 33.295-49.242L34.223-49.242L34.223-52.255L33.295-52.255Q33.051-52.284 33.012-52.533L33.012-52.621Q33.051-52.875 33.295-52.905L34.672-52.905Q34.794-52.890 34.867-52.817Q34.941-52.743 34.955-52.621L34.955-52.182Q35.155-52.416 35.426-52.597Q35.697-52.778 36.015-52.870Q36.332-52.963 36.645-52.963Q37.011-52.963 37.297-52.812Q37.582-52.660 37.582-52.333Q37.582-52.143 37.460-52.009Q37.338-51.874 37.143-51.874Q36.962-51.874 36.833-51.999Q36.703-52.123 36.703-52.314L36.635-52.314Q36.156-52.314 35.771-52.055Q35.385-51.796 35.170-51.369Q34.955-50.942 34.955-50.473L34.955-49.242L36.195-49.242Q36.444-49.208 36.474-48.964L36.474-48.871Q36.444-48.627 36.195-48.593M37.904-48.871L37.904-48.964Q37.948-49.213 38.183-49.242L38.471-49.242L38.471-52.255L38.183-52.255Q37.948-52.284 37.904-52.533L37.904-52.621Q37.948-52.875 38.183-52.905L38.793-52.905Q38.920-52.890 38.996-52.804Q39.071-52.719 39.071-52.602Q39.472-52.963 39.985-52.963Q40.224-52.963 40.429-52.822Q40.634-52.680 40.741-52.441Q41.171-52.963 41.791-52.963Q42.694-52.963 42.694-51.513L42.694-49.242L42.983-49.242Q43.217-49.213 43.261-48.964L43.261-48.871Q43.212-48.622 42.983-48.593L41.913-48.593Q41.664-48.627 41.635-48.871L41.635-48.964Q41.664-49.208 41.913-49.242L42.094-49.242L42.094-51.474Q42.094-52.314 41.733-52.314Q41.440-52.314 41.249-52.111Q41.059-51.908 40.971-51.615Q40.883-51.322 40.883-51.034L40.883-49.242L41.171-49.242Q41.410-49.213 41.454-48.964L41.454-48.871Q41.405-48.622 41.171-48.593L40.102-48.593Q39.853-48.627 39.823-48.871L39.823-48.964Q39.853-49.208 40.102-49.242L40.282-49.242L40.282-51.474Q40.282-52.314 39.921-52.314Q39.628-52.314 39.438-52.111Q39.247-51.908 39.159-51.615Q39.071-51.322 39.071-51.034L39.071-49.242L39.364-49.242Q39.599-49.213 39.643-48.964L39.643-48.871Q39.599-48.622 39.364-48.593L38.183-48.593Q37.953-48.622 37.904-48.871M45.834-48.534Q45.253-48.534 44.779-48.840Q44.306-49.145 44.035-49.662Q43.764-50.180 43.764-50.751Q43.764-51.327 44.030-51.843Q44.296-52.358 44.775-52.675Q45.253-52.992 45.834-52.992Q46.278-52.992 46.664-52.807Q47.050-52.621 47.321-52.314Q47.592-52.006 47.748-51.591Q47.904-51.176 47.904-50.751Q47.904-50.180 47.633-49.665Q47.362-49.150 46.886-48.842Q46.410-48.534 45.834-48.534M45.834-49.184Q46.435-49.184 46.803-49.699Q47.172-50.214 47.172-50.834Q47.172-51.215 47.001-51.562Q46.830-51.908 46.528-52.126Q46.225-52.343 45.834-52.343Q45.448-52.343 45.143-52.128Q44.838-51.913 44.665-51.564Q44.491-51.215 44.491-50.834Q44.491-50.214 44.862-49.699Q45.234-49.184 45.834-49.184M50.541-48.852L49.413-52.255L48.979-52.255Q48.730-52.289 48.700-52.533L48.700-52.621Q48.715-52.739 48.791-52.814Q48.866-52.890 48.979-52.905L50.444-52.905Q50.556-52.890 50.632-52.814Q50.707-52.739 50.722-52.621L50.722-52.533Q50.693-52.289 50.444-52.255L50.043-52.255L51.083-49.145L52.123-52.255L51.723-52.255Q51.469-52.289 51.440-52.533L51.440-52.621Q51.469-52.870 51.723-52.905L53.183-52.905Q53.295-52.890 53.371-52.814Q53.446-52.739 53.461-52.621L53.461-52.533Q53.432-52.289 53.183-52.255L52.753-52.255L51.620-48.852Q51.576-48.715 51.462-48.635Q51.347-48.554 51.200-48.554L50.961-48.554Q50.815-48.554 50.700-48.635Q50.585-48.715 50.541-48.852M56.591-46.655L56.591-46.742Q56.620-46.991 56.869-47.021L57.480-47.021L57.480-49.101Q57.201-48.832 56.857-48.683Q56.513-48.534 56.132-48.534Q55.707-48.534 55.326-48.720Q54.945-48.906 54.674-49.211Q54.403-49.516 54.247-49.926Q54.091-50.336 54.091-50.751Q54.091-51.342 54.377-51.847Q54.662-52.353 55.158-52.658Q55.653-52.963 56.249-52.963Q56.591-52.963 56.911-52.826Q57.231-52.690 57.480-52.441L57.480-52.685Q57.494-52.802 57.568-52.875Q57.641-52.948 57.758-52.963L57.929-52.963Q58.051-52.948 58.124-52.875Q58.197-52.802 58.212-52.685L58.212-47.021L58.822-47.021Q59.071-46.991 59.101-46.742L59.101-46.655Q59.071-46.401 58.822-46.371L56.869-46.371Q56.620-46.401 56.591-46.655M56.191-49.184Q56.508-49.184 56.779-49.345Q57.050-49.506 57.226-49.772Q57.402-50.038 57.480-50.351L57.480-51.093Q57.426-51.420 57.270-51.694Q57.113-51.967 56.867-52.140Q56.620-52.314 56.298-52.314Q55.888-52.314 55.551-52.096Q55.214-51.879 55.016-51.515Q54.819-51.152 54.819-50.741Q54.819-50.356 54.992-49.997Q55.165-49.638 55.483-49.411Q55.800-49.184 56.191-49.184\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-89.735 104.374)\">\u003Cpath d=\"M66.285-48.813L64.967-54.052L64.684-54.052Q64.435-54.081 64.405-54.335L64.405-54.423Q64.435-54.672 64.684-54.701L65.997-54.701Q66.246-54.672 66.276-54.423L66.276-54.335Q66.246-54.081 65.997-54.052L65.724-54.052Q65.792-53.764 66.136-52.387Q66.481-51.010 66.659-50.243Q66.837-49.477 66.837-49.325Q66.842-49.506 67.189-50.954Q67.535-52.402 67.945-54.052L67.677-54.052Q67.423-54.081 67.394-54.335L67.394-54.423Q67.423-54.672 67.677-54.701L68.986-54.701Q69.235-54.672 69.264-54.423L69.264-54.335Q69.235-54.081 68.986-54.052L68.707-54.052L67.384-48.813Q67.345-48.681 67.233-48.598Q67.120-48.515 66.993-48.515L66.676-48.515Q66.549-48.515 66.437-48.598Q66.324-48.681 66.285-48.813M71.642-47.201L71.583-47.201Q71.461-47.201 71.359-47.309Q71.256-47.416 71.256-47.543Q71.256-47.753 71.466-47.822Q71.759-47.895 71.976-48.107Q72.194-48.320 72.262-48.613L72.203-48.603L72.174-48.593L72.096-48.593Q71.822-48.593 71.634-48.781Q71.446-48.969 71.446-49.242Q71.446-49.511 71.637-49.697Q71.827-49.882 72.096-49.882Q72.345-49.882 72.543-49.736Q72.740-49.589 72.843-49.360Q72.945-49.130 72.945-48.871Q72.945-48.276 72.587-47.829Q72.228-47.382 71.642-47.201M78.194-48.593L75.294-48.593Q75.050-48.622 75.011-48.871L75.011-48.964Q75.050-49.213 75.294-49.242L76.222-49.242L76.222-52.255L75.294-52.255Q75.050-52.284 75.011-52.533L75.011-52.621Q75.050-52.875 75.294-52.905L76.671-52.905Q76.793-52.890 76.866-52.817Q76.940-52.743 76.954-52.621L76.954-52.182Q77.154-52.416 77.425-52.597Q77.696-52.778 78.014-52.870Q78.331-52.963 78.644-52.963Q79.010-52.963 79.296-52.812Q79.581-52.660 79.581-52.333Q79.581-52.143 79.459-52.009Q79.337-51.874 79.142-51.874Q78.961-51.874 78.832-51.999Q78.702-52.123 78.702-52.314L78.634-52.314Q78.155-52.314 77.770-52.055Q77.384-51.796 77.169-51.369Q76.954-50.942 76.954-50.473L76.954-49.242L78.194-49.242Q78.444-49.208 78.473-48.964L78.473-48.871Q78.444-48.627 78.194-48.593M80.172-48.871L80.172-48.964Q80.201-49.213 80.450-49.242L80.851-49.242L80.851-54.052L80.450-54.052Q80.201-54.081 80.172-54.335L80.172-54.423Q80.201-54.672 80.450-54.701L82.892-54.701Q83.326-54.701 83.712-54.496Q84.098-54.291 84.335-53.932Q84.571-53.573 84.571-53.134Q84.571-52.675 84.266-52.314Q83.961-51.952 83.502-51.791Q84.049-51.669 84.415-51.249Q84.781-50.829 84.781-50.282Q84.781-49.828 84.554-49.443Q84.327-49.057 83.942-48.825Q83.556-48.593 83.102-48.593L80.450-48.593Q80.333-48.608 80.260-48.681Q80.187-48.754 80.172-48.871M81.583-51.445L81.583-49.242L82.892-49.242Q83.190-49.242 83.458-49.377Q83.727-49.511 83.890-49.745Q84.054-49.980 84.054-50.282Q84.054-50.566 83.917-50.839Q83.780-51.113 83.541-51.279Q83.302-51.445 83.004-51.445L81.583-51.445M81.583-54.052L81.583-52.094L82.682-52.094Q82.965-52.094 83.238-52.231Q83.512-52.367 83.678-52.602Q83.844-52.836 83.844-53.134Q83.844-53.388 83.710-53.600Q83.575-53.813 83.358-53.932Q83.141-54.052 82.892-54.052\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.300\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M11.816 63.796h31.298V43.879H11.816Z\"\u002F>\u003Cg transform=\"translate(-5.43 105.008)\">\u003Cpath d=\"M28.258-49.226Q28.449-48.952 28.805-48.825Q29.160-48.698 29.543-48.698Q29.879-48.698 30.088-48.884Q30.297-49.070 30.393-49.363Q30.488-49.656 30.488-49.968Q30.488-50.292 30.391-50.587Q30.293-50.882 30.080-51.066Q29.867-51.249 29.535-51.249L28.969-51.249Q28.938-51.249 28.908-51.279Q28.879-51.308 28.879-51.335L28.879-51.417Q28.879-51.452 28.908-51.478Q28.938-51.503 28.969-51.503L29.449-51.538Q29.735-51.538 29.932-51.743Q30.129-51.948 30.225-52.243Q30.320-52.538 30.320-52.816Q30.320-53.195 30.121-53.433Q29.922-53.671 29.543-53.671Q29.223-53.671 28.934-53.564Q28.645-53.456 28.481-53.234Q28.660-53.234 28.783-53.107Q28.906-52.980 28.906-52.808Q28.906-52.636 28.781-52.511Q28.656-52.386 28.481-52.386Q28.309-52.386 28.184-52.511Q28.059-52.636 28.059-52.808Q28.059-53.175 28.283-53.423Q28.508-53.671 28.848-53.792Q29.188-53.913 29.543-53.913Q29.891-53.913 30.254-53.792Q30.617-53.671 30.865-53.421Q31.113-53.171 31.113-52.816Q31.113-52.331 30.795-51.948Q30.477-51.566 30-51.394Q30.551-51.284 30.951-50.898Q31.352-50.511 31.352-49.976Q31.352-49.519 31.088-49.163Q30.824-48.808 30.402-48.616Q29.981-48.425 29.543-48.425Q29.133-48.425 28.740-48.560Q28.348-48.695 28.082-48.980Q27.817-49.265 27.817-49.683Q27.817-49.878 27.949-50.007Q28.082-50.136 28.274-50.136Q28.399-50.136 28.502-50.077Q28.606-50.019 28.668-49.913Q28.731-49.808 28.731-49.683Q28.731-49.488 28.596-49.357Q28.461-49.226 28.258-49.226M32.430-49.058Q32.430-49.241 32.567-49.378Q32.703-49.515 32.895-49.515Q33.086-49.515 33.219-49.382Q33.352-49.249 33.352-49.058Q33.352-48.859 33.219-48.726Q33.086-48.593 32.895-48.593Q32.703-48.593 32.567-48.730Q32.430-48.866 32.430-49.058M32.430-51.585Q32.430-51.769 32.567-51.906Q32.703-52.042 32.895-52.042Q33.086-52.042 33.219-51.909Q33.352-51.777 33.352-51.585Q33.352-51.386 33.219-51.253Q33.086-51.120 32.895-51.120Q32.703-51.120 32.567-51.257Q32.430-51.394 32.430-51.585M36.192-48.425Q35.488-48.425 35.088-48.825Q34.688-49.226 34.543-49.835Q34.399-50.445 34.399-51.144Q34.399-51.667 34.469-52.130Q34.539-52.593 34.733-53.005Q34.926-53.417 35.283-53.665Q35.641-53.913 36.192-53.913Q36.742-53.913 37.100-53.665Q37.457-53.417 37.649-53.007Q37.840-52.597 37.910-52.128Q37.981-51.659 37.981-51.144Q37.981-50.445 37.838-49.837Q37.695-49.230 37.295-48.827Q36.895-48.425 36.192-48.425M36.192-48.683Q36.664-48.683 36.897-49.118Q37.129-49.554 37.184-50.093Q37.238-50.632 37.238-51.273Q37.238-52.269 37.055-52.962Q36.871-53.656 36.192-53.656Q35.824-53.656 35.604-53.417Q35.383-53.179 35.287-52.822Q35.192-52.464 35.166-52.093Q35.141-51.722 35.141-51.273Q35.141-50.632 35.195-50.093Q35.250-49.554 35.483-49.118Q35.715-48.683 36.192-48.683\" 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=\"M43.114 63.796h31.298V43.879H43.114Z\"\u002F>\u003Cg transform=\"translate(22.68 105.163)\">\u003Cpath d=\"M30.387-48.593L27.801-48.593L27.801-48.890Q28.121-48.890 28.365-48.937Q28.610-48.984 28.610-49.152L28.610-53.495Q28.610-53.667 28.365-53.714Q28.121-53.761 27.801-53.761L27.801-54.058L32.418-54.058L32.649-52.210L32.367-52.210Q32.281-52.894 32.119-53.214Q31.957-53.534 31.617-53.648Q31.277-53.761 30.586-53.761L29.777-53.761Q29.559-53.761 29.467-53.718Q29.375-53.675 29.375-53.495L29.375-51.472L29.985-51.472Q30.410-51.472 30.608-51.538Q30.805-51.605 30.887-51.798Q30.969-51.991 30.969-52.409L31.250-52.409L31.250-50.241L30.969-50.241Q30.969-50.659 30.887-50.853Q30.805-51.046 30.608-51.113Q30.410-51.179 29.985-51.179L29.375-51.179L29.375-49.152Q29.375-48.988 29.694-48.939Q30.012-48.890 30.387-48.890L30.387-48.593M33.727-49.058Q33.727-49.241 33.863-49.378Q34-49.515 34.192-49.515Q34.383-49.515 34.516-49.382Q34.649-49.249 34.649-49.058Q34.649-48.859 34.516-48.726Q34.383-48.593 34.192-48.593Q34-48.593 33.863-48.730Q33.727-48.866 33.727-49.058M33.727-51.585Q33.727-51.769 33.863-51.906Q34-52.042 34.192-52.042Q34.383-52.042 34.516-51.909Q34.649-51.777 34.649-51.585Q34.649-51.386 34.516-51.253Q34.383-51.120 34.192-51.120Q34-51.120 33.863-51.257Q33.727-51.394 33.727-51.585M37.613-48.593L35.633-48.593L35.633-48.890Q35.903-48.890 36.070-48.935Q36.238-48.980 36.238-49.152L36.238-51.288Q36.238-51.503 36.176-51.599Q36.113-51.695 35.996-51.716Q35.879-51.738 35.633-51.738L35.633-52.034L36.801-52.120L36.801-51.335Q36.879-51.546 37.031-51.732Q37.184-51.917 37.383-52.019Q37.582-52.120 37.809-52.120Q38.055-52.120 38.246-51.976Q38.438-51.831 38.438-51.601Q38.438-51.445 38.332-51.335Q38.227-51.226 38.070-51.226Q37.914-51.226 37.805-51.335Q37.695-51.445 37.695-51.601Q37.695-51.761 37.801-51.866Q37.477-51.866 37.262-51.638Q37.047-51.409 36.951-51.070Q36.856-50.730 36.856-50.425L36.856-49.152Q36.856-48.984 37.082-48.937Q37.309-48.890 37.613-48.890L37.613-48.593M42.328-48.593L39.047-48.593L39.047-48.890Q39.371-48.890 39.613-48.937Q39.856-48.984 39.856-49.152L39.856-53.495Q39.856-53.667 39.613-53.714Q39.371-53.761 39.047-53.761L39.047-54.058L42.094-54.058Q42.520-54.058 42.953-53.904Q43.387-53.749 43.682-53.441Q43.977-53.132 43.977-52.698Q43.977-52.445 43.852-52.228Q43.727-52.011 43.526-51.855Q43.324-51.698 43.092-51.599Q42.860-51.499 42.602-51.448Q42.977-51.413 43.356-51.236Q43.735-51.058 43.975-50.759Q44.215-50.460 44.215-50.066Q44.215-49.613 43.932-49.279Q43.649-48.945 43.213-48.769Q42.778-48.593 42.328-48.593M40.567-51.304L40.567-49.152Q40.567-48.980 40.658-48.935Q40.750-48.890 40.969-48.890L42.094-48.890Q42.332-48.890 42.567-48.978Q42.801-49.066 42.986-49.226Q43.172-49.386 43.274-49.599Q43.375-49.812 43.375-50.066Q43.375-50.386 43.223-50.671Q43.070-50.956 42.801-51.130Q42.531-51.304 42.215-51.304L40.567-51.304M40.567-53.495L40.567-51.562L41.856-51.562Q42.098-51.562 42.336-51.644Q42.574-51.726 42.758-51.872Q42.942-52.019 43.055-52.236Q43.168-52.452 43.168-52.698Q43.168-52.909 43.082-53.111Q42.996-53.312 42.850-53.454Q42.703-53.597 42.508-53.679Q42.313-53.761 42.094-53.761L40.969-53.761Q40.750-53.761 40.658-53.718Q40.567-53.675 40.567-53.495\" 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=\"M74.412 63.796h113.81V43.879H74.413Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(82.7 104.43)\">\u003Cpath d=\"M30.442-48.538L28.418-53.495Q28.336-53.667 28.143-53.714Q27.949-53.761 27.641-53.761L27.641-54.058L29.832-54.058L29.832-53.761Q29.207-53.761 29.207-53.546Q29.211-53.531 29.213-53.517Q29.215-53.503 29.219-53.495L30.879-49.402L32.465-53.281Q32.488-53.327 32.488-53.394Q32.488-53.577 32.319-53.669Q32.149-53.761 31.938-53.761L31.938-54.058L33.649-54.058L33.649-53.761Q33.352-53.761 33.121-53.646Q32.891-53.531 32.785-53.281L30.848-48.538Q30.809-48.425 30.680-48.425L30.610-48.425Q30.481-48.425 30.442-48.538\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(82.7 104.43)\">\u003Cpath d=\"M39.282-46.601Q38.669-47.058 38.267-47.693Q37.864-48.327 37.669-49.073Q37.474-49.820 37.474-50.593Q37.474-51.366 37.669-52.113Q37.864-52.859 38.267-53.493Q38.669-54.128 39.282-54.585Q39.294-54.589 39.302-54.591Q39.310-54.593 39.321-54.593L39.399-54.593Q39.438-54.593 39.464-54.566Q39.489-54.538 39.489-54.495Q39.489-54.445 39.458-54.425Q38.950-53.972 38.628-53.349Q38.306-52.726 38.165-52.031Q38.024-51.335 38.024-50.593Q38.024-49.859 38.163-49.159Q38.302-48.460 38.626-47.835Q38.950-47.210 39.458-46.761Q39.489-46.741 39.489-46.691Q39.489-46.648 39.464-46.620Q39.438-46.593 39.399-46.593L39.321-46.593Q39.313-46.597 39.304-46.599Q39.294-46.601 39.282-46.601M40.321-49.816Q40.321-50.312 40.647-50.677Q40.974-51.042 41.497-51.288L41.227-51.448Q40.931-51.632 40.747-51.927Q40.563-52.222 40.563-52.562Q40.563-52.956 40.782-53.267Q41.001-53.577 41.354-53.745Q41.708-53.913 42.091-53.913Q42.364-53.913 42.638-53.835Q42.911-53.757 43.128-53.609Q43.345-53.460 43.481-53.234Q43.618-53.007 43.618-52.714Q43.618-52.308 43.349-52.001Q43.079-51.695 42.657-51.480L43.106-51.210Q43.325-51.073 43.493-50.880Q43.661-50.687 43.759-50.448Q43.856-50.210 43.856-49.952Q43.856-49.613 43.706-49.325Q43.556-49.038 43.310-48.841Q43.063-48.644 42.739-48.534Q42.415-48.425 42.091-48.425Q41.661-48.425 41.255-48.587Q40.849-48.749 40.585-49.068Q40.321-49.386 40.321-49.816M40.810-49.816Q40.810-49.331 41.200-49.015Q41.591-48.698 42.091-48.698Q42.384-48.698 42.683-48.810Q42.981-48.921 43.175-49.140Q43.368-49.359 43.368-49.671Q43.368-49.902 43.227-50.113Q43.087-50.323 42.880-50.441L41.770-51.120Q41.352-50.917 41.081-50.581Q40.810-50.245 40.810-49.816M41.395-52.249L42.384-51.648Q42.731-51.831 42.958-52.101Q43.185-52.370 43.185-52.714Q43.185-52.933 43.093-53.109Q43.001-53.284 42.847-53.407Q42.692-53.531 42.491-53.601Q42.290-53.671 42.091-53.671Q41.685-53.671 41.339-53.460Q40.993-53.249 40.993-52.866Q40.993-52.683 41.104-52.521Q41.216-52.359 41.395-52.249\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(82.7 104.43)\">\u003Cpath d=\"M48.206-48.593L47.925-48.593L47.925-53.312Q47.925-53.527 47.863-53.622Q47.800-53.718 47.683-53.739Q47.566-53.761 47.320-53.761L47.320-54.058L48.542-54.144L48.542-51.656Q49.019-52.120 49.718-52.120Q50.199-52.120 50.607-51.876Q51.015-51.632 51.251-51.218Q51.488-50.804 51.488-50.320Q51.488-49.945 51.339-49.616Q51.191-49.288 50.921-49.036Q50.652-48.784 50.308-48.650Q49.964-48.515 49.605-48.515Q49.284-48.515 48.986-48.663Q48.687-48.812 48.480-49.073L48.206-48.593M48.566-51.265L48.566-49.425Q48.718-49.128 48.978-48.948Q49.238-48.769 49.550-48.769Q49.976-48.769 50.243-48.988Q50.511-49.206 50.626-49.552Q50.742-49.898 50.742-50.320Q50.742-50.968 50.493-51.417Q50.245-51.866 49.648-51.866Q49.312-51.866 49.023-51.708Q48.734-51.550 48.566-51.265\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(82.7 104.43)\">\u003Cpath d=\"M52.196-47.296Q52.310-47.218 52.485-47.218Q52.774-47.218 52.995-47.431Q53.216-47.644 53.341-47.945L53.630-48.593L52.356-51.480Q52.274-51.656 52.130-51.700Q51.985-51.745 51.716-51.745L51.716-52.042L53.435-52.042L53.435-51.745Q53.013-51.745 53.013-51.562Q53.013-51.550 53.028-51.480L53.966-49.355L54.798-51.265Q54.837-51.355 54.837-51.433Q54.837-51.573 54.735-51.659Q54.634-51.745 54.493-51.745L54.493-52.042L55.845-52.042L55.845-51.745Q55.591-51.745 55.397-51.620Q55.204-51.495 55.099-51.265L53.653-47.945Q53.540-47.691 53.374-47.468Q53.208-47.245 52.979-47.103Q52.751-46.960 52.485-46.960Q52.188-46.960 51.948-47.152Q51.708-47.343 51.708-47.632Q51.708-47.788 51.813-47.890Q51.919-47.991 52.067-47.991Q52.173-47.991 52.253-47.945Q52.333-47.898 52.380-47.820Q52.427-47.741 52.427-47.632Q52.427-47.511 52.366-47.423Q52.306-47.335 52.196-47.296M56.884-49.554L56.884-51.745L56.181-51.745L56.181-51.999Q56.536-51.999 56.778-52.232Q57.020-52.464 57.132-52.812Q57.243-53.159 57.243-53.515L57.524-53.515L57.524-52.042L58.700-52.042L58.700-51.745L57.524-51.745L57.524-49.570Q57.524-49.249 57.644-49.021Q57.763-48.792 58.044-48.792Q58.224-48.792 58.341-48.915Q58.458-49.038 58.511-49.218Q58.563-49.398 58.563-49.570L58.563-50.042L58.845-50.042L58.845-49.554Q58.845-49.300 58.739-49.060Q58.634-48.820 58.436-48.667Q58.239-48.515 57.981-48.515Q57.665-48.515 57.413-48.638Q57.161-48.761 57.022-48.995Q56.884-49.230 56.884-49.554M59.563-50.347Q59.563-50.827 59.796-51.243Q60.028-51.659 60.438-51.909Q60.849-52.159 61.325-52.159Q62.056-52.159 62.454-51.718Q62.852-51.277 62.852-50.546Q62.852-50.441 62.759-50.417L60.310-50.417L60.310-50.347Q60.310-49.937 60.431-49.581Q60.552-49.226 60.823-49.009Q61.095-48.792 61.524-48.792Q61.888-48.792 62.185-49.021Q62.481-49.249 62.583-49.601Q62.591-49.648 62.677-49.663L62.759-49.663Q62.852-49.636 62.852-49.554Q62.852-49.546 62.845-49.515Q62.782-49.288 62.644-49.105Q62.505-48.921 62.313-48.788Q62.122-48.656 61.903-48.585Q61.685-48.515 61.446-48.515Q61.075-48.515 60.737-48.652Q60.399-48.788 60.132-49.040Q59.864-49.292 59.714-49.632Q59.563-49.972 59.563-50.347M60.317-50.656L62.278-50.656Q62.278-50.960 62.177-51.251Q62.075-51.542 61.858-51.724Q61.642-51.906 61.325-51.906Q61.024-51.906 60.794-51.718Q60.563-51.531 60.440-51.239Q60.317-50.948 60.317-50.656M63.384-48.601L63.384-49.823Q63.384-49.851 63.415-49.882Q63.446-49.913 63.470-49.913L63.575-49.913Q63.645-49.913 63.661-49.851Q63.724-49.531 63.862-49.290Q64.001-49.050 64.233-48.909Q64.466-48.769 64.774-48.769Q65.013-48.769 65.222-48.829Q65.431-48.890 65.567-49.038Q65.704-49.187 65.704-49.433Q65.704-49.687 65.493-49.853Q65.282-50.019 65.013-50.073L64.392-50.187Q63.985-50.265 63.685-50.521Q63.384-50.777 63.384-51.152Q63.384-51.519 63.585-51.741Q63.786-51.964 64.110-52.062Q64.435-52.159 64.774-52.159Q65.239-52.159 65.536-51.952L65.759-52.136Q65.782-52.159 65.813-52.159L65.864-52.159Q65.895-52.159 65.923-52.132Q65.950-52.105 65.950-52.073L65.950-51.089Q65.950-51.058 65.925-51.029Q65.899-50.999 65.864-50.999L65.759-50.999Q65.724-50.999 65.696-51.027Q65.669-51.054 65.669-51.089Q65.669-51.488 65.417-51.708Q65.165-51.929 64.767-51.929Q64.411-51.929 64.128-51.806Q63.845-51.683 63.845-51.378Q63.845-51.159 64.046-51.027Q64.247-50.894 64.493-50.851L65.118-50.738Q65.548-50.648 65.856-50.351Q66.165-50.054 66.165-49.640Q66.165-49.070 65.767-48.792Q65.368-48.515 64.774-48.515Q64.224-48.515 63.872-48.851L63.575-48.538Q63.552-48.515 63.517-48.515L63.470-48.515Q63.446-48.515 63.415-48.546Q63.384-48.577 63.384-48.601M67.095-46.593L67.013-46.593Q66.977-46.593 66.952-46.622Q66.927-46.652 66.927-46.691Q66.927-46.741 66.958-46.761Q67.345-47.097 67.628-47.546Q67.911-47.995 68.077-48.495Q68.243-48.995 68.317-49.513Q68.392-50.031 68.392-50.593Q68.392-51.163 68.317-51.679Q68.243-52.195 68.077-52.691Q67.911-53.187 67.632-53.634Q67.352-54.081 66.958-54.425Q66.927-54.445 66.927-54.495Q66.927-54.534 66.952-54.564Q66.977-54.593 67.013-54.593L67.095-54.593Q67.106-54.593 67.116-54.591Q67.126-54.589 67.134-54.585Q67.747-54.128 68.149-53.493Q68.552-52.859 68.747-52.113Q68.942-51.366 68.942-50.593Q68.942-49.820 68.747-49.073Q68.552-48.327 68.149-47.693Q67.747-47.058 67.134-46.601Q67.122-46.601 67.114-46.599Q67.106-46.597 67.095-46.593\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(179.94 104.591)\">\u003Cpath d=\"M29.121-48.816L28.235-51.480L27.914-51.480Q27.715-51.503 27.664-51.722L27.664-51.808Q27.715-52.019 27.914-52.042L29.074-52.042Q29.270-52.023 29.320-51.808L29.320-51.722Q29.270-51.503 29.074-51.480L28.793-51.480L29.586-49.105L30.375-51.480L30.098-51.480Q29.899-51.503 29.848-51.722L29.848-51.808Q29.899-52.019 30.098-52.042L31.258-52.042Q31.453-52.019 31.504-51.808L31.504-51.722Q31.453-51.503 31.258-51.480L30.938-51.480L30.051-48.816Q30.008-48.702 29.906-48.628Q29.805-48.554 29.680-48.554L29.488-48.554Q29.371-48.554 29.268-48.626Q29.164-48.698 29.121-48.816M32.117-49.706Q32.117-50.152 32.531-50.409Q32.945-50.667 33.486-50.767Q34.028-50.866 34.535-50.874Q34.535-51.089 34.401-51.241Q34.266-51.394 34.059-51.470Q33.852-51.546 33.641-51.546Q33.297-51.546 33.137-51.523L33.137-51.464Q33.137-51.296 33.018-51.181Q32.899-51.066 32.735-51.066Q32.559-51.066 32.444-51.189Q32.328-51.312 32.328-51.480Q32.328-51.886 32.709-51.995Q33.090-52.105 33.649-52.105Q33.918-52.105 34.186-52.027Q34.453-51.948 34.678-51.798Q34.903-51.648 35.039-51.427Q35.176-51.206 35.176-50.929L35.176-49.210Q35.176-49.152 35.703-49.152Q35.899-49.132 35.949-48.921L35.949-48.831Q35.899-48.616 35.703-48.593L35.559-48.593Q35.215-48.593 34.986-48.640Q34.758-48.687 34.613-48.874Q34.153-48.554 33.445-48.554Q33.110-48.554 32.805-48.695Q32.500-48.835 32.309-49.097Q32.117-49.359 32.117-49.706M32.758-49.698Q32.758-49.425 33-49.269Q33.242-49.113 33.528-49.113Q33.746-49.113 33.979-49.171Q34.211-49.230 34.373-49.368Q34.535-49.507 34.535-49.730L34.535-50.320Q34.254-50.320 33.838-50.263Q33.422-50.206 33.090-50.068Q32.758-49.929 32.758-49.698M36.406-48.831L36.406-48.921Q36.457-49.128 36.653-49.152L37.758-49.152L37.758-52.921L36.653-52.921Q36.457-52.945 36.406-53.159L36.406-53.249Q36.457-53.456 36.653-53.480L38.149-53.480Q38.340-53.456 38.399-53.249L38.399-49.152L39.500-49.152Q39.699-49.128 39.750-48.921L39.750-48.831Q39.699-48.616 39.500-48.593L36.653-48.593Q36.457-48.616 36.406-48.831M40.387-48.831L40.387-48.921Q40.426-49.128 40.637-49.152L40.945-49.152L40.945-52.921L40.637-52.921Q40.426-52.945 40.387-53.159L40.387-53.249Q40.426-53.456 40.637-53.480L42.586-53.480Q42.985-53.480 43.330-53.279Q43.676-53.077 43.883-52.732Q44.090-52.386 44.090-51.984Q44.090-51.577 43.885-51.234Q43.680-50.890 43.334-50.685Q42.988-50.480 42.586-50.480L41.586-50.480L41.586-49.152L41.899-49.152Q42.110-49.128 42.149-48.921L42.149-48.831Q42.110-48.616 41.899-48.593L40.637-48.593Q40.426-48.616 40.387-48.831M41.586-52.921L41.586-51.042L42.426-51.042Q42.688-51.042 42.924-51.165Q43.160-51.288 43.305-51.503Q43.449-51.718 43.449-51.984Q43.449-52.253 43.305-52.464Q43.160-52.675 42.924-52.798Q42.688-52.921 42.426-52.921\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 104.591)\">\u003Cpath d=\"M52.787-49.570L47.474-49.570Q47.396-49.577 47.347-49.626Q47.299-49.675 47.299-49.753Q47.299-49.823 47.346-49.874Q47.392-49.925 47.474-49.937L52.787-49.937Q52.861-49.925 52.908-49.874Q52.955-49.823 52.955-49.753Q52.955-49.675 52.906-49.626Q52.857-49.577 52.787-49.570M52.787-51.257L47.474-51.257Q47.396-51.265 47.347-51.314Q47.299-51.363 47.299-51.441Q47.299-51.511 47.346-51.562Q47.392-51.613 47.474-51.624L52.787-51.624Q52.861-51.613 52.908-51.562Q52.955-51.511 52.955-51.441Q52.955-51.363 52.906-51.314Q52.857-51.265 52.787-51.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 104.591)\">\u003Cpath d=\"M55.983-48.831L55.983-48.921Q56.022-49.128 56.233-49.152L56.541-49.152L56.541-52.921L56.233-52.921Q56.022-52.945 55.983-53.159L55.983-53.249Q56.022-53.456 56.233-53.480L58.182-53.480Q58.580-53.480 58.926-53.279Q59.272-53.077 59.479-52.732Q59.686-52.386 59.686-51.984Q59.686-51.577 59.481-51.234Q59.276-50.890 58.930-50.685Q58.584-50.480 58.182-50.480L57.182-50.480L57.182-49.152L57.494-49.152Q57.705-49.128 57.744-48.921L57.744-48.831Q57.705-48.616 57.494-48.593L56.233-48.593Q56.022-48.616 55.983-48.831M57.182-52.921L57.182-51.042L58.022-51.042Q58.283-51.042 58.520-51.165Q58.756-51.288 58.901-51.503Q59.045-51.718 59.045-51.984Q59.045-52.253 58.901-52.464Q58.756-52.675 58.520-52.798Q58.283-52.921 58.022-52.921L57.182-52.921M62.311-48.515Q61.861-48.515 61.496-48.739Q61.131-48.964 60.877-49.347Q60.623-49.730 60.498-50.173Q60.373-50.616 60.373-51.042Q60.373-51.468 60.498-51.907Q60.623-52.347 60.877-52.730Q61.131-53.113 61.490-53.337Q61.850-53.562 62.311-53.562Q62.588-53.562 62.846-53.470Q63.104-53.378 63.319-53.210L63.451-53.448Q63.479-53.499 63.533-53.531Q63.588-53.562 63.647-53.562L63.725-53.562Q63.819-53.550 63.881-53.491Q63.944-53.433 63.955-53.327L63.955-51.999Q63.944-51.898 63.881-51.835Q63.819-51.773 63.725-51.761L63.557-51.761Q63.455-51.773 63.393-51.839Q63.330-51.906 63.319-51.999Q63.279-52.265 63.156-52.489Q63.033-52.714 62.830-52.857Q62.627-52.999 62.365-52.999Q62.033-52.999 61.781-52.816Q61.529-52.632 61.358-52.331Q61.186-52.031 61.100-51.689Q61.014-51.347 61.014-51.042Q61.014-50.738 61.098-50.396Q61.182-50.054 61.354-49.751Q61.526-49.448 61.783-49.261Q62.041-49.073 62.373-49.073Q62.756-49.073 63.037-49.347Q63.319-49.620 63.319-50.007Q63.346-50.218 63.557-50.241L63.725-50.241Q63.955-50.202 63.955-49.976Q63.955-49.659 63.819-49.388Q63.682-49.116 63.447-48.919Q63.213-48.722 62.922-48.618Q62.631-48.515 62.311-48.515\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 104.591)\">\u003Cpath d=\"M69.309-50.409L66.836-50.409Q66.758-50.421 66.709-50.470Q66.661-50.519 66.661-50.593Q66.661-50.667 66.709-50.716Q66.758-50.765 66.836-50.777L69.309-50.777L69.309-53.257Q69.336-53.425 69.493-53.425Q69.567-53.425 69.616-53.376Q69.665-53.327 69.676-53.257L69.676-50.777L72.149-50.777Q72.317-50.745 72.317-50.593Q72.317-50.441 72.149-50.409L69.676-50.409L69.676-47.929Q69.665-47.859 69.616-47.810Q69.567-47.761 69.493-47.761Q69.336-47.761 69.309-47.929\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 104.591)\">\u003Cpath d=\"M78.282-48.593L75.489-48.593L75.489-48.890Q76.551-48.890 76.551-49.152L76.551-53.320Q76.122-53.105 75.442-53.105L75.442-53.402Q76.461-53.402 76.977-53.913L77.122-53.913Q77.196-53.894 77.215-53.816L77.215-49.152Q77.215-48.890 78.282-48.890L78.282-48.593M81.055-48.425Q80.352-48.425 79.952-48.825Q79.551-49.226 79.407-49.835Q79.262-50.445 79.262-51.144Q79.262-51.667 79.333-52.130Q79.403-52.593 79.596-53.005Q79.790-53.417 80.147-53.665Q80.504-53.913 81.055-53.913Q81.606-53.913 81.963-53.665Q82.321-53.417 82.512-53.007Q82.704-52.597 82.774-52.128Q82.844-51.659 82.844-51.144Q82.844-50.445 82.702-49.837Q82.559-49.230 82.159-48.827Q81.758-48.425 81.055-48.425M81.055-48.683Q81.528-48.683 81.760-49.118Q81.993-49.554 82.047-50.093Q82.102-50.632 82.102-51.273Q82.102-52.269 81.918-52.962Q81.735-53.656 81.055-53.656Q80.688-53.656 80.467-53.417Q80.247-53.179 80.151-52.822Q80.055-52.464 80.030-52.093Q80.004-51.722 80.004-51.273Q80.004-50.632 80.059-50.093Q80.114-49.554 80.346-49.118Q80.579-48.683 81.055-48.683\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The four Y86-64 instruction lengths, each determined by the first byte alone. The high nibble (icode) fixes whether a register byte and an 8-byte constant follow, and hence the increment from PC to valP.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:446.110px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 334.583 93.750\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-72.07h321.516\"\u002F>\u003Cg transform=\"translate(15.015 2.444)\">\u003Cpath d=\"M-50.947-59.504L-50.947-59.594Q-50.888-59.805-50.697-59.825L-50.474-59.825L-49.521-64.008Q-49.497-64.125-49.402-64.200Q-49.306-64.274-49.193-64.274L-48.919-64.274Q-48.806-64.274-48.710-64.198Q-48.614-64.121-48.591-64.008L-47.642-59.825L-47.415-59.825Q-47.208-59.801-47.169-59.594L-47.169-59.504Q-47.220-59.289-47.415-59.266L-48.497-59.266Q-48.693-59.289-48.743-59.504L-48.743-59.594Q-48.693-59.801-48.497-59.825L-48.298-59.825Q-48.427-60.391-48.450-60.473L-49.665-60.473Q-49.708-60.289-49.818-59.825L-49.618-59.825Q-49.419-59.801-49.368-59.594L-49.368-59.504Q-49.419-59.289-49.618-59.266L-50.697-59.266Q-50.904-59.289-50.947-59.504M-49.544-61.036L-48.568-61.036Q-49.048-63.168-49.048-63.512L-49.056-63.512Q-49.056-63.328-49.197-62.645Q-49.337-61.961-49.544-61.036M-46.212-59.586Q-46.306-59.739-46.357-59.959Q-46.407-60.180-46.435-60.481Q-46.462-60.782-46.468-61.057Q-46.474-61.332-46.474-61.715Q-46.474-62.227-46.462-62.588Q-46.450-62.950-46.392-63.297Q-46.333-63.645-46.212-63.832Q-46.032-64.094-45.673-64.164Q-45.314-64.235-44.810-64.235Q-44.306-64.235-43.948-64.164Q-43.591-64.094-43.411-63.832Q-43.286-63.649-43.228-63.299Q-43.169-62.950-43.157-62.588Q-43.146-62.227-43.146-61.715Q-43.146-61.196-43.157-60.834Q-43.169-60.473-43.228-60.121Q-43.286-59.770-43.411-59.586Q-43.595-59.328-43.950-59.258Q-44.306-59.188-44.810-59.188Q-45.314-59.188-45.671-59.258Q-46.029-59.328-46.212-59.586M-45.673-60.075Q-45.572-59.868-45.347-59.807Q-45.122-59.746-44.810-59.746Q-44.497-59.746-44.275-59.807Q-44.052-59.868-43.947-60.075Q-43.841-60.289-43.814-60.727Q-43.786-61.164-43.786-61.809Q-43.786-63.082-43.947-63.379Q-44.052-63.567-44.271-63.620Q-44.489-63.672-44.810-63.672Q-45.130-63.672-45.347-63.621Q-45.564-63.571-45.673-63.379Q-45.833-63.082-45.833-61.809Q-45.833-61.500-45.831-61.332Q-45.829-61.164-45.812-60.879Q-45.794-60.594-45.761-60.393Q-45.728-60.192-45.673-60.075M-42.501-59.504L-42.501-59.594Q-42.462-59.801-42.251-59.825L-42.005-59.825L-42.005-63.594L-42.251-63.594Q-42.462-63.618-42.501-63.832L-42.501-63.922Q-42.462-64.129-42.251-64.153L-41.220-64.153Q-41.025-64.129-40.974-63.922L-40.974-63.832Q-41.025-63.618-41.220-63.594L-41.478-63.594L-41.478-61.641L-39.900-63.594Q-40.138-63.594-40.189-63.832L-40.189-63.922Q-40.138-64.129-39.943-64.153L-39.005-64.153Q-38.814-64.129-38.755-63.922L-38.755-63.832Q-38.814-63.618-39.005-63.594L-39.220-63.594L-40.419-62.114L-39.111-59.825L-38.923-59.825Q-38.728-59.801-38.677-59.594L-38.677-59.504Q-38.728-59.289-38.923-59.266L-39.755-59.266Q-39.966-59.289-40.005-59.504L-40.005-59.594Q-39.966-59.801-39.755-59.825L-39.716-59.825L-40.775-61.672L-41.478-60.801L-41.478-59.825L-41.220-59.825Q-41.025-59.801-40.974-59.594L-40.974-59.504Q-41.025-59.289-41.220-59.266L-42.251-59.266Q-42.462-59.289-42.501-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M-49.181-59.266L-50.815-59.266L-50.815-59.546Q-50.586-59.546-50.437-59.580Q-50.288-59.615-50.288-59.755L-50.288-61.604Q-50.288-61.874-50.396-61.935Q-50.504-61.997-50.815-61.997L-50.815-62.277L-49.755-62.352L-49.755-61.703Q-49.584-62.011-49.280-62.182Q-48.976-62.352-48.631-62.352Q-48.125-62.352-47.841-62.129Q-47.557-61.905-47.557-61.409L-47.557-59.755Q-47.557-59.618-47.409-59.582Q-47.260-59.546-47.034-59.546L-47.034-59.266L-48.665-59.266L-48.665-59.546Q-48.436-59.546-48.287-59.580Q-48.138-59.615-48.138-59.755L-48.138-61.395Q-48.138-61.730-48.258-61.930Q-48.378-62.130-48.692-62.130Q-48.962-62.130-49.196-61.994Q-49.430-61.857-49.569-61.623Q-49.707-61.389-49.707-61.115L-49.707-59.755Q-49.707-59.618-49.557-59.582Q-49.406-59.546-49.181-59.546L-49.181-59.266M-46.488-60.749Q-46.488-61.091-46.353-61.390Q-46.218-61.689-45.978-61.913Q-45.739-62.137-45.421-62.262Q-45.103-62.387-44.772-62.387Q-44.327-62.387-43.927-62.171Q-43.528-61.956-43.293-61.578Q-43.059-61.201-43.059-60.749Q-43.059-60.408-43.201-60.124Q-43.343-59.840-43.587-59.633Q-43.832-59.427-44.141-59.312Q-44.450-59.198-44.772-59.198Q-45.202-59.198-45.604-59.399Q-46.006-59.601-46.247-59.953Q-46.488-60.305-46.488-60.749M-44.772-59.447Q-44.170-59.447-43.946-59.825Q-43.722-60.203-43.722-60.835Q-43.722-61.447-43.957-61.806Q-44.191-62.164-44.772-62.164Q-45.824-62.164-45.824-60.835Q-45.824-60.203-45.599-59.825Q-45.373-59.447-44.772-59.447M-40.715-59.266L-42.451-59.266L-42.451-59.546Q-42.222-59.546-42.073-59.580Q-41.925-59.615-41.925-59.755L-41.925-61.604Q-41.925-61.874-42.032-61.935Q-42.140-61.997-42.451-61.997L-42.451-62.277L-41.422-62.352L-41.422-61.645Q-41.292-61.953-41.050-62.152Q-40.807-62.352-40.489-62.352Q-40.270-62.352-40.099-62.228Q-39.928-62.103-39.928-61.891Q-39.928-61.754-40.028-61.655Q-40.127-61.556-40.260-61.556Q-40.397-61.556-40.496-61.655Q-40.595-61.754-40.595-61.891Q-40.595-62.031-40.496-62.130Q-40.786-62.130-40.986-61.934Q-41.186-61.737-41.279-61.443Q-41.371-61.149-41.371-60.869L-41.371-59.755Q-41.371-59.546-40.715-59.546L-40.715-59.266M-37.662-59.266L-39.296-59.266L-39.296-59.546Q-39.067-59.546-38.918-59.580Q-38.770-59.615-38.770-59.755L-38.770-61.604Q-38.770-61.874-38.877-61.935Q-38.985-61.997-39.296-61.997L-39.296-62.277L-38.237-62.352L-38.237-61.703Q-38.066-62.011-37.761-62.182Q-37.457-62.352-37.112-62.352Q-36.712-62.352-36.435-62.212Q-36.158-62.072-36.073-61.724Q-35.906-62.017-35.606-62.185Q-35.307-62.352-34.962-62.352Q-34.456-62.352-34.173-62.129Q-33.889-61.905-33.889-61.409L-33.889-59.755Q-33.889-59.618-33.740-59.582Q-33.592-59.546-33.366-59.546L-33.366-59.266L-34.996-59.266L-34.996-59.546Q-34.771-59.546-34.620-59.582Q-34.470-59.618-34.470-59.755L-34.470-61.395Q-34.470-61.730-34.590-61.930Q-34.709-62.130-35.024-62.130Q-35.294-62.130-35.528-61.994Q-35.762-61.857-35.900-61.623Q-36.039-61.389-36.039-61.115L-36.039-59.755Q-36.039-59.618-35.890-59.582Q-35.741-59.546-35.516-59.546L-35.516-59.266L-37.146-59.266L-37.146-59.546Q-36.917-59.546-36.769-59.580Q-36.620-59.615-36.620-59.755L-36.620-61.395Q-36.620-61.730-36.739-61.930Q-36.859-62.130-37.174-62.130Q-37.444-62.130-37.678-61.994Q-37.912-61.857-38.050-61.623Q-38.189-61.389-38.189-61.115L-38.189-59.755Q-38.189-59.618-38.038-59.582Q-37.888-59.546-37.662-59.546L-37.662-59.266M-32.720-59.994Q-32.720-60.326-32.496-60.553Q-32.272-60.780-31.929-60.908Q-31.585-61.037-31.213-61.089Q-30.840-61.142-30.536-61.142L-30.536-61.395Q-30.536-61.600-30.644-61.780Q-30.751-61.959-30.932-62.062Q-31.114-62.164-31.322-62.164Q-31.729-62.164-31.965-62.072Q-31.876-62.035-31.830-61.951Q-31.783-61.867-31.783-61.765Q-31.783-61.669-31.830-61.590Q-31.876-61.512-31.956-61.467Q-32.036-61.423-32.125-61.423Q-32.276-61.423-32.376-61.520Q-32.477-61.618-32.477-61.765Q-32.477-62.387-31.322-62.387Q-31.110-62.387-30.861-62.323Q-30.611-62.260-30.409-62.141Q-30.208-62.021-30.081-61.836Q-29.955-61.652-29.955-61.409L-29.955-59.833Q-29.955-59.717-29.893-59.621Q-29.832-59.526-29.719-59.526Q-29.610-59.526-29.545-59.620Q-29.480-59.714-29.480-59.833L-29.480-60.281L-29.213-60.281L-29.213-59.833Q-29.213-59.563-29.440-59.398Q-29.668-59.232-29.948-59.232Q-30.156-59.232-30.293-59.386Q-30.430-59.539-30.454-59.755Q-30.601-59.488-30.883-59.343Q-31.165-59.198-31.489-59.198Q-31.766-59.198-32.050-59.273Q-32.334-59.348-32.527-59.527Q-32.720-59.707-32.720-59.994M-32.105-59.994Q-32.105-59.820-32.004-59.690Q-31.903-59.560-31.748-59.490Q-31.592-59.420-31.428-59.420Q-31.209-59.420-31.001-59.517Q-30.792-59.615-30.664-59.796Q-30.536-59.977-30.536-60.203L-30.536-60.931Q-30.861-60.931-31.226-60.840Q-31.592-60.749-31.848-60.537Q-32.105-60.326-32.105-59.994M-27.128-59.266L-28.731-59.266L-28.731-59.546Q-28.506-59.546-28.357-59.580Q-28.208-59.615-28.208-59.755L-28.208-63.374Q-28.208-63.644-28.316-63.706Q-28.424-63.767-28.731-63.767L-28.731-64.048L-27.655-64.123L-27.655-59.755Q-27.655-59.618-27.504-59.582Q-27.354-59.546-27.128-59.546L-27.128-59.266M-26.134-59.686Q-26.134-59.854-26.010-59.977Q-25.887-60.100-25.713-60.100Q-25.546-60.100-25.423-59.977Q-25.300-59.854-25.300-59.686Q-25.300-59.512-25.423-59.389Q-25.546-59.266-25.713-59.266Q-25.887-59.266-26.010-59.389Q-26.134-59.512-26.134-59.686M-26.134-61.870Q-26.134-62.038-26.010-62.161Q-25.887-62.284-25.713-62.284Q-25.546-62.284-25.423-62.161Q-25.300-62.038-25.300-61.870Q-25.300-61.696-25.423-61.573Q-25.546-61.450-25.713-61.450Q-25.887-61.450-26.010-61.573Q-26.134-61.696-26.134-61.870\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M-19.079-59.266L-20.631-59.266L-20.631-59.546Q-20.405-59.546-20.256-59.580Q-20.108-59.615-20.108-59.755L-20.108-61.604Q-20.108-61.792-20.156-61.876Q-20.203-61.959-20.301-61.978Q-20.398-61.997-20.610-61.997L-20.610-62.277L-19.554-62.352L-19.554-59.755Q-19.554-59.615-19.422-59.580Q-19.291-59.546-19.079-59.546L-19.079-59.266M-20.350-63.573Q-20.350-63.744-20.227-63.863Q-20.104-63.983-19.933-63.983Q-19.766-63.983-19.643-63.863Q-19.520-63.744-19.520-63.573Q-19.520-63.398-19.643-63.275Q-19.766-63.152-19.933-63.152Q-20.104-63.152-20.227-63.275Q-20.350-63.398-20.350-63.573M-18.433-60.777Q-18.433-61.105-18.298-61.406Q-18.163-61.706-17.927-61.927Q-17.691-62.147-17.387-62.267Q-17.083-62.387-16.758-62.387Q-16.252-62.387-15.904-62.284Q-15.555-62.182-15.555-61.806Q-15.555-61.659-15.652-61.558Q-15.750-61.457-15.897-61.457Q-16.051-61.457-16.150-61.556Q-16.249-61.655-16.249-61.806Q-16.249-61.994-16.109-62.086Q-16.310-62.137-16.751-62.137Q-17.107-62.137-17.336-61.941Q-17.565-61.744-17.666-61.435Q-17.766-61.125-17.766-60.777Q-17.766-60.428-17.640-60.122Q-17.513-59.816-17.259-59.632Q-17.004-59.447-16.649-59.447Q-16.427-59.447-16.242-59.531Q-16.057-59.615-15.922-59.770Q-15.787-59.926-15.729-60.134Q-15.716-60.189-15.661-60.189L-15.548-60.189Q-15.517-60.189-15.495-60.165Q-15.473-60.141-15.473-60.107L-15.473-60.086Q-15.558-59.799-15.746-59.601Q-15.934-59.403-16.199-59.300Q-16.464-59.198-16.758-59.198Q-17.189-59.198-17.577-59.404Q-17.965-59.611-18.199-59.974Q-18.433-60.336-18.433-60.777M-14.926-60.749Q-14.926-61.091-14.791-61.390Q-14.656-61.689-14.417-61.913Q-14.177-62.137-13.860-62.262Q-13.542-62.387-13.210-62.387Q-12.766-62.387-12.366-62.171Q-11.966-61.956-11.732-61.578Q-11.498-61.201-11.498-60.749Q-11.498-60.408-11.640-60.124Q-11.781-59.840-12.026-59.633Q-12.270-59.427-12.580-59.312Q-12.889-59.198-13.210-59.198Q-13.641-59.198-14.042-59.399Q-14.444-59.601-14.685-59.953Q-14.926-60.305-14.926-60.749M-13.210-59.447Q-12.609-59.447-12.385-59.825Q-12.161-60.203-12.161-60.835Q-12.161-61.447-12.395-61.806Q-12.629-62.164-13.210-62.164Q-14.263-62.164-14.263-60.835Q-14.263-60.203-14.037-59.825Q-13.812-59.447-13.210-59.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M-10.675-60.777Q-10.675-61.115-10.534-61.406Q-10.394-61.696-10.150-61.910Q-9.906-62.123-9.601-62.238Q-9.297-62.352-8.972-62.352Q-8.702-62.352-8.439-62.253Q-8.176-62.154-7.985-61.976L-7.985-63.374Q-7.985-63.644-8.092-63.706Q-8.200-63.767-8.511-63.767L-8.511-64.048L-7.434-64.123L-7.434-59.939Q-7.434-59.751-7.380-59.668Q-7.325-59.584-7.224-59.565Q-7.123-59.546-6.908-59.546L-6.908-59.266L-8.015-59.198L-8.015-59.615Q-8.432-59.198-9.058-59.198Q-9.489-59.198-9.861-59.410Q-10.234-59.621-10.454-59.982Q-10.675-60.343-10.675-60.777M-9-59.420Q-8.791-59.420-8.605-59.492Q-8.419-59.563-8.265-59.700Q-8.111-59.837-8.015-60.015L-8.015-61.624Q-8.101-61.771-8.246-61.891Q-8.391-62.011-8.561-62.070Q-8.730-62.130-8.911-62.130Q-9.471-62.130-9.740-61.741Q-10.008-61.351-10.008-60.770Q-10.008-60.199-9.774-59.809Q-9.540-59.420-9-59.420M-6.300-60.801Q-6.300-61.122-6.175-61.411Q-6.050-61.700-5.824-61.923Q-5.599-62.147-5.303-62.267Q-5.008-62.387-4.690-62.387Q-4.362-62.387-4.100-62.287Q-3.839-62.188-3.663-62.006Q-3.487-61.823-3.393-61.565Q-3.299-61.307-3.299-60.975Q-3.299-60.883-3.381-60.862L-5.636-60.862L-5.636-60.801Q-5.636-60.213-5.353-59.830Q-5.069-59.447-4.502-59.447Q-4.180-59.447-3.912-59.640Q-3.644-59.833-3.555-60.148Q-3.548-60.189-3.473-60.203L-3.381-60.203Q-3.299-60.179-3.299-60.107Q-3.299-60.100-3.305-60.073Q-3.418-59.676-3.789-59.437Q-4.160-59.198-4.584-59.198Q-5.021-59.198-5.421-59.406Q-5.821-59.615-6.060-59.982Q-6.300-60.349-6.300-60.801M-5.630-61.071L-3.815-61.071Q-3.815-61.348-3.912-61.600Q-4.010-61.853-4.208-62.009Q-4.406-62.164-4.690-62.164Q-4.967-62.164-5.180-62.006Q-5.394-61.847-5.512-61.592Q-5.630-61.337-5.630-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M1.581-59.293L0.453-61.792Q0.381-61.939 0.251-61.971Q0.121-62.004-0.108-62.004L-0.108-62.284L1.406-62.284L1.406-62.004Q1.054-62.004 1.054-61.857Q1.054-61.812 1.065-61.792L1.929-59.874L2.709-61.604Q2.743-61.672 2.743-61.751Q2.743-61.864 2.659-61.934Q2.575-62.004 2.456-62.004L2.456-62.284L3.652-62.284L3.652-62.004Q3.433-62.004 3.262-61.901Q3.092-61.799 3.003-61.604L1.967-59.293Q1.919-59.198 1.813-59.198L1.735-59.198Q1.629-59.198 1.581-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M3.821-59.994Q3.821-60.326 4.044-60.553Q4.268-60.780 4.612-60.908Q4.955-61.037 5.328-61.089Q5.700-61.142 6.005-61.142L6.005-61.395Q6.005-61.600 5.897-61.780Q5.789-61.959 5.608-62.062Q5.427-62.164 5.219-62.164Q4.812-62.164 4.576-62.072Q4.665-62.035 4.711-61.951Q4.757-61.867 4.757-61.765Q4.757-61.669 4.711-61.590Q4.665-61.512 4.584-61.467Q4.504-61.423 4.415-61.423Q4.265-61.423 4.164-61.520Q4.063-61.618 4.063-61.765Q4.063-62.387 5.219-62.387Q5.430-62.387 5.680-62.323Q5.929-62.260 6.131-62.141Q6.333-62.021 6.459-61.836Q6.586-61.652 6.586-61.409L6.586-59.833Q6.586-59.717 6.647-59.621Q6.709-59.526 6.822-59.526Q6.931-59.526 6.996-59.620Q7.061-59.714 7.061-59.833L7.061-60.281L7.327-60.281L7.327-59.833Q7.327-59.563 7.100-59.398Q6.873-59.232 6.593-59.232Q6.384-59.232 6.247-59.386Q6.111-59.539 6.087-59.755Q5.940-59.488 5.658-59.343Q5.376-59.198 5.051-59.198Q4.774-59.198 4.490-59.273Q4.207-59.348 4.014-59.527Q3.821-59.707 3.821-59.994M4.436-59.994Q4.436-59.820 4.537-59.690Q4.637-59.560 4.793-59.490Q4.948-59.420 5.113-59.420Q5.331-59.420 5.540-59.517Q5.748-59.615 5.876-59.796Q6.005-59.977 6.005-60.203L6.005-60.931Q5.680-60.931 5.314-60.840Q4.948-60.749 4.692-60.537Q4.436-60.326 4.436-59.994M9.412-59.266L7.809-59.266L7.809-59.546Q8.035-59.546 8.184-59.580Q8.332-59.615 8.332-59.755L8.332-63.374Q8.332-63.644 8.225-63.706Q8.117-63.767 7.809-63.767L7.809-64.048L8.886-64.123L8.886-59.755Q8.886-59.618 9.036-59.582Q9.187-59.546 9.412-59.546L9.412-59.266M11.624-59.266L10.072-59.266L10.072-59.546Q10.298-59.546 10.446-59.580Q10.595-59.615 10.595-59.755L10.595-61.604Q10.595-61.792 10.547-61.876Q10.499-61.959 10.402-61.978Q10.304-61.997 10.093-61.997L10.093-62.277L11.149-62.352L11.149-59.755Q11.149-59.615 11.280-59.580Q11.412-59.546 11.624-59.546L11.624-59.266M10.352-63.573Q10.352-63.744 10.475-63.863Q10.598-63.983 10.769-63.983Q10.937-63.983 11.060-63.863Q11.183-63.744 11.183-63.573Q11.183-63.398 11.060-63.275Q10.937-63.152 10.769-63.152Q10.598-63.152 10.475-63.275Q10.352-63.398 10.352-63.573M12.270-60.777Q12.270-61.115 12.410-61.406Q12.550-61.696 12.794-61.910Q13.039-62.123 13.343-62.238Q13.647-62.352 13.972-62.352Q14.242-62.352 14.505-62.253Q14.768-62.154 14.960-61.976L14.960-63.374Q14.960-63.644 14.852-63.706Q14.744-63.767 14.433-63.767L14.433-64.048L15.510-64.123L15.510-59.939Q15.510-59.751 15.565-59.668Q15.619-59.584 15.720-59.565Q15.821-59.546 16.036-59.546L16.036-59.266L14.929-59.198L14.929-59.615Q14.512-59.198 13.886-59.198Q13.456-59.198 13.083-59.410Q12.711-59.621 12.490-59.982Q12.270-60.343 12.270-60.777M13.945-59.420Q14.153-59.420 14.339-59.492Q14.526-59.563 14.679-59.700Q14.833-59.837 14.929-60.015L14.929-61.624Q14.844-61.771 14.698-61.891Q14.553-62.011 14.384-62.070Q14.215-62.130 14.033-62.130Q13.473-62.130 13.205-61.741Q12.936-61.351 12.936-60.770Q12.936-60.199 13.170-59.809Q13.405-59.420 13.945-59.420M17.185-58.036Q17.185-58.070 17.212-58.097Q17.482-58.326 17.631-58.649Q17.780-58.972 17.780-59.328L17.780-59.365Q17.670-59.266 17.506-59.266Q17.325-59.266 17.205-59.386Q17.086-59.505 17.086-59.686Q17.086-59.861 17.205-59.980Q17.325-60.100 17.506-60.100Q17.762-60.100 17.882-59.861Q18.002-59.621 18.002-59.328Q18.002-58.928 17.833-58.557Q17.663-58.186 17.366-57.930Q17.335-57.909 17.308-57.909Q17.267-57.909 17.226-57.950Q17.185-57.991 17.185-58.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M21.710-59.994Q21.710-60.326 21.933-60.553Q22.157-60.780 22.501-60.908Q22.844-61.037 23.217-61.089Q23.589-61.142 23.894-61.142L23.894-61.395Q23.894-61.600 23.786-61.780Q23.678-61.959 23.497-62.062Q23.316-62.164 23.108-62.164Q22.701-62.164 22.465-62.072Q22.554-62.035 22.600-61.951Q22.646-61.867 22.646-61.765Q22.646-61.669 22.600-61.590Q22.554-61.512 22.473-61.467Q22.393-61.423 22.304-61.423Q22.154-61.423 22.053-61.520Q21.952-61.618 21.952-61.765Q21.952-62.387 23.108-62.387Q23.319-62.387 23.569-62.323Q23.818-62.260 24.020-62.141Q24.222-62.021 24.348-61.836Q24.475-61.652 24.475-61.409L24.475-59.833Q24.475-59.717 24.536-59.621Q24.598-59.526 24.711-59.526Q24.820-59.526 24.885-59.620Q24.950-59.714 24.950-59.833L24.950-60.281L25.216-60.281L25.216-59.833Q25.216-59.563 24.989-59.398Q24.762-59.232 24.482-59.232Q24.273-59.232 24.136-59.386Q24-59.539 23.976-59.755Q23.829-59.488 23.547-59.343Q23.265-59.198 22.940-59.198Q22.663-59.198 22.379-59.273Q22.096-59.348 21.903-59.527Q21.710-59.707 21.710-59.994M22.325-59.994Q22.325-59.820 22.426-59.690Q22.526-59.560 22.682-59.490Q22.837-59.420 23.002-59.420Q23.220-59.420 23.429-59.517Q23.637-59.615 23.765-59.796Q23.894-59.977 23.894-60.203L23.894-60.931Q23.569-60.931 23.203-60.840Q22.837-60.749 22.581-60.537Q22.325-60.326 22.325-59.994M25.633-60.777Q25.633-61.115 25.774-61.406Q25.914-61.696 26.158-61.910Q26.402-62.123 26.707-62.238Q27.011-62.352 27.336-62.352Q27.606-62.352 27.869-62.253Q28.132-62.154 28.323-61.976L28.323-63.374Q28.323-63.644 28.216-63.706Q28.108-63.767 27.797-63.767L27.797-64.048L28.874-64.123L28.874-59.939Q28.874-59.751 28.928-59.668Q28.983-59.584 29.084-59.565Q29.185-59.546 29.400-59.546L29.400-59.266L28.293-59.198L28.293-59.615Q27.876-59.198 27.250-59.198Q26.819-59.198 26.447-59.410Q26.074-59.621 25.854-59.982Q25.633-60.343 25.633-60.777M27.308-59.420Q27.517-59.420 27.703-59.492Q27.889-59.563 28.043-59.700Q28.197-59.837 28.293-60.015L28.293-61.624Q28.207-61.771 28.062-61.891Q27.917-62.011 27.747-62.070Q27.578-62.130 27.397-62.130Q26.837-62.130 26.568-61.741Q26.300-61.351 26.300-60.770Q26.300-60.199 26.534-59.809Q26.768-59.420 27.308-59.420M30.049-60.777Q30.049-61.115 30.190-61.406Q30.330-61.696 30.574-61.910Q30.818-62.123 31.123-62.238Q31.427-62.352 31.752-62.352Q32.022-62.352 32.285-62.253Q32.548-62.154 32.739-61.976L32.739-63.374Q32.739-63.644 32.632-63.706Q32.524-63.767 32.213-63.767L32.213-64.048L33.290-64.123L33.290-59.939Q33.290-59.751 33.344-59.668Q33.399-59.584 33.500-59.565Q33.601-59.546 33.816-59.546L33.816-59.266L32.709-59.198L32.709-59.615Q32.292-59.198 31.666-59.198Q31.235-59.198 30.863-59.410Q30.490-59.621 30.270-59.982Q30.049-60.343 30.049-60.777M31.724-59.420Q31.933-59.420 32.119-59.492Q32.305-59.563 32.459-59.700Q32.613-59.837 32.709-60.015L32.709-61.624Q32.623-61.771 32.478-61.891Q32.333-62.011 32.163-62.070Q31.994-62.130 31.813-62.130Q31.253-62.130 30.984-61.741Q30.716-61.351 30.716-60.770Q30.716-60.199 30.950-59.809Q31.184-59.420 31.724-59.420M36.215-59.266L34.479-59.266L34.479-59.546Q34.708-59.546 34.857-59.580Q35.005-59.615 35.005-59.755L35.005-61.604Q35.005-61.874 34.898-61.935Q34.790-61.997 34.479-61.997L34.479-62.277L35.508-62.352L35.508-61.645Q35.638-61.953 35.880-62.152Q36.123-62.352 36.441-62.352Q36.660-62.352 36.831-62.228Q37.002-62.103 37.002-61.891Q37.002-61.754 36.902-61.655Q36.803-61.556 36.670-61.556Q36.533-61.556 36.434-61.655Q36.335-61.754 36.335-61.891Q36.335-62.031 36.434-62.130Q36.144-62.130 35.944-61.934Q35.744-61.737 35.651-61.443Q35.559-61.149 35.559-60.869L35.559-59.755Q35.559-59.546 36.215-59.546L36.215-59.266M37.545-60.801Q37.545-61.122 37.670-61.411Q37.795-61.700 38.020-61.923Q38.246-62.147 38.541-62.267Q38.837-62.387 39.155-62.387Q39.483-62.387 39.744-62.287Q40.006-62.188 40.182-62.006Q40.358-61.823 40.452-61.565Q40.546-61.307 40.546-60.975Q40.546-60.883 40.464-60.862L38.208-60.862L38.208-60.801Q38.208-60.213 38.492-59.830Q38.775-59.447 39.343-59.447Q39.664-59.447 39.932-59.640Q40.201-59.833 40.290-60.148Q40.296-60.189 40.372-60.203L40.464-60.203Q40.546-60.179 40.546-60.107Q40.546-60.100 40.539-60.073Q40.426-59.676 40.056-59.437Q39.685-59.198 39.261-59.198Q38.823-59.198 38.423-59.406Q38.024-59.615 37.784-59.982Q37.545-60.349 37.545-60.801M38.215-61.071L40.030-61.071Q40.030-61.348 39.932-61.600Q39.835-61.853 39.637-62.009Q39.439-62.164 39.155-62.164Q38.878-62.164 38.664-62.006Q38.451-61.847 38.333-61.592Q38.215-61.337 38.215-61.071M41.134-59.273L41.134-60.336Q41.134-60.360 41.161-60.387Q41.189-60.414 41.212-60.414L41.322-60.414Q41.387-60.414 41.400-60.356Q41.496-59.922 41.742-59.671Q41.988-59.420 42.402-59.420Q42.744-59.420 42.997-59.553Q43.250-59.686 43.250-59.994Q43.250-60.151 43.156-60.266Q43.062-60.380 42.923-60.449Q42.785-60.517 42.617-60.555L42.036-60.654Q41.681-60.722 41.407-60.943Q41.134-61.163 41.134-61.505Q41.134-61.754 41.245-61.929Q41.356-62.103 41.542-62.202Q41.729-62.301 41.944-62.344Q42.159-62.387 42.402-62.387Q42.816-62.387 43.096-62.205L43.311-62.380Q43.321-62.383 43.328-62.385Q43.335-62.387 43.345-62.387L43.397-62.387Q43.424-62.387 43.448-62.363Q43.472-62.339 43.472-62.311L43.472-61.464Q43.472-61.443 43.448-61.416Q43.424-61.389 43.397-61.389L43.284-61.389Q43.256-61.389 43.231-61.414Q43.205-61.440 43.205-61.464Q43.205-61.700 43.099-61.864Q42.993-62.028 42.810-62.110Q42.628-62.192 42.395-62.192Q42.067-62.192 41.811-62.089Q41.554-61.987 41.554-61.710Q41.554-61.515 41.737-61.406Q41.920-61.296 42.149-61.255L42.723-61.149Q42.969-61.101 43.183-60.973Q43.397-60.845 43.533-60.642Q43.670-60.438 43.670-60.189Q43.670-59.676 43.304-59.437Q42.939-59.198 42.402-59.198Q41.906-59.198 41.575-59.492L41.308-59.218Q41.288-59.198 41.260-59.198L41.212-59.198Q41.189-59.198 41.161-59.225Q41.134-59.252 41.134-59.273M44.299-59.273L44.299-60.336Q44.299-60.360 44.326-60.387Q44.354-60.414 44.378-60.414L44.487-60.414Q44.552-60.414 44.566-60.356Q44.661-59.922 44.907-59.671Q45.153-59.420 45.567-59.420Q45.909-59.420 46.162-59.553Q46.415-59.686 46.415-59.994Q46.415-60.151 46.321-60.266Q46.227-60.380 46.088-60.449Q45.950-60.517 45.782-60.555L45.201-60.654Q44.846-60.722 44.572-60.943Q44.299-61.163 44.299-61.505Q44.299-61.754 44.410-61.929Q44.521-62.103 44.707-62.202Q44.894-62.301 45.109-62.344Q45.324-62.387 45.567-62.387Q45.981-62.387 46.261-62.205L46.476-62.380Q46.486-62.383 46.493-62.385Q46.500-62.387 46.510-62.387L46.562-62.387Q46.589-62.387 46.613-62.363Q46.637-62.339 46.637-62.311L46.637-61.464Q46.637-61.443 46.613-61.416Q46.589-61.389 46.562-61.389L46.449-61.389Q46.421-61.389 46.396-61.414Q46.370-61.440 46.370-61.464Q46.370-61.700 46.264-61.864Q46.158-62.028 45.975-62.110Q45.793-62.192 45.560-62.192Q45.232-62.192 44.976-62.089Q44.719-61.987 44.719-61.710Q44.719-61.515 44.902-61.406Q45.085-61.296 45.314-61.255L45.888-61.149Q46.134-61.101 46.348-60.973Q46.562-60.845 46.698-60.642Q46.835-60.438 46.835-60.189Q46.835-59.676 46.469-59.437Q46.104-59.198 45.567-59.198Q45.071-59.198 44.740-59.492L44.473-59.218Q44.453-59.198 44.425-59.198L44.378-59.198Q44.354-59.198 44.326-59.225Q44.299-59.252 44.299-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M51.799-59.266L50.247-59.266L50.247-59.546Q50.473-59.546 50.622-59.580Q50.770-59.615 50.770-59.755L50.770-61.604Q50.770-61.792 50.722-61.876Q50.675-61.959 50.577-61.978Q50.480-61.997 50.268-61.997L50.268-62.277L51.324-62.352L51.324-59.755Q51.324-59.615 51.456-59.580Q51.587-59.546 51.799-59.546L51.799-59.266M50.528-63.573Q50.528-63.744 50.651-63.863Q50.774-63.983 50.945-63.983Q51.112-63.983 51.235-63.863Q51.358-63.744 51.358-63.573Q51.358-63.398 51.235-63.275Q51.112-63.152 50.945-63.152Q50.774-63.152 50.651-63.275Q50.528-63.398 50.528-63.573M54.127-59.266L52.493-59.266L52.493-59.546Q52.722-59.546 52.871-59.580Q53.019-59.615 53.019-59.755L53.019-61.604Q53.019-61.874 52.912-61.935Q52.804-61.997 52.493-61.997L52.493-62.277L53.553-62.352L53.553-61.703Q53.723-62.011 54.028-62.182Q54.332-62.352 54.677-62.352Q55.183-62.352 55.467-62.129Q55.750-61.905 55.750-61.409L55.750-59.755Q55.750-59.618 55.899-59.582Q56.048-59.546 56.273-59.546L56.273-59.266L54.643-59.266L54.643-59.546Q54.872-59.546 55.021-59.580Q55.169-59.615 55.169-59.755L55.169-61.395Q55.169-61.730 55.050-61.930Q54.930-62.130 54.616-62.130Q54.346-62.130 54.111-61.994Q53.877-61.857 53.739-61.623Q53.600-61.389 53.600-61.115L53.600-59.755Q53.600-59.618 53.751-59.582Q53.901-59.546 54.127-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M61.307-59.266L59.571-59.266L59.571-59.546Q59.800-59.546 59.949-59.580Q60.097-59.615 60.097-59.755L60.097-61.604Q60.097-61.874 59.990-61.935Q59.882-61.997 59.571-61.997L59.571-62.277L60.600-62.352L60.600-61.645Q60.730-61.953 60.972-62.152Q61.215-62.352 61.533-62.352Q61.752-62.352 61.923-62.228Q62.094-62.103 62.094-61.891Q62.094-61.754 61.994-61.655Q61.895-61.556 61.762-61.556Q61.625-61.556 61.526-61.655Q61.427-61.754 61.427-61.891Q61.427-62.031 61.526-62.130Q61.236-62.130 61.036-61.934Q60.836-61.737 60.743-61.443Q60.651-61.149 60.651-60.869L60.651-59.755Q60.651-59.546 61.307-59.546L61.307-59.266M62.736-59.994Q62.736-60.326 62.960-60.553Q63.184-60.780 63.527-60.908Q63.871-61.037 64.243-61.089Q64.616-61.142 64.920-61.142L64.920-61.395Q64.920-61.600 64.813-61.780Q64.705-61.959 64.524-62.062Q64.343-62.164 64.134-62.164Q63.727-62.164 63.492-62.072Q63.580-62.035 63.627-61.951Q63.673-61.867 63.673-61.765Q63.673-61.669 63.627-61.590Q63.580-61.512 63.500-61.467Q63.420-61.423 63.331-61.423Q63.181-61.423 63.080-61.520Q62.979-61.618 62.979-61.765Q62.979-62.387 64.134-62.387Q64.346-62.387 64.596-62.323Q64.845-62.260 65.047-62.141Q65.248-62.021 65.375-61.836Q65.501-61.652 65.501-61.409L65.501-59.833Q65.501-59.717 65.563-59.621Q65.624-59.526 65.737-59.526Q65.847-59.526 65.911-59.620Q65.976-59.714 65.976-59.833L65.976-60.281L66.243-60.281L66.243-59.833Q66.243-59.563 66.016-59.398Q65.788-59.232 65.508-59.232Q65.300-59.232 65.163-59.386Q65.026-59.539 65.002-59.755Q64.855-59.488 64.573-59.343Q64.291-59.198 63.967-59.198Q63.690-59.198 63.406-59.273Q63.122-59.348 62.929-59.527Q62.736-59.707 62.736-59.994M63.351-59.994Q63.351-59.820 63.452-59.690Q63.553-59.560 63.709-59.490Q63.864-59.420 64.028-59.420Q64.247-59.420 64.455-59.517Q64.664-59.615 64.792-59.796Q64.920-59.977 64.920-60.203L64.920-60.931Q64.596-60.931 64.230-60.840Q63.864-60.749 63.608-60.537Q63.351-60.326 63.351-59.994M68.342-59.266L66.708-59.266L66.708-59.546Q66.937-59.546 67.086-59.580Q67.234-59.615 67.234-59.755L67.234-61.604Q67.234-61.874 67.127-61.935Q67.019-61.997 66.708-61.997L66.708-62.277L67.767-62.352L67.767-61.703Q67.938-62.011 68.243-62.182Q68.547-62.352 68.892-62.352Q69.398-62.352 69.681-62.129Q69.965-61.905 69.965-61.409L69.965-59.755Q69.965-59.618 70.114-59.582Q70.263-59.546 70.488-59.546L70.488-59.266L68.858-59.266L68.858-59.546Q69.087-59.546 69.235-59.580Q69.384-59.615 69.384-59.755L69.384-61.395Q69.384-61.730 69.264-61.930Q69.145-62.130 68.830-62.130Q68.560-62.130 68.326-61.994Q68.092-61.857 67.954-61.623Q67.815-61.389 67.815-61.115L67.815-59.755Q67.815-59.618 67.966-59.582Q68.116-59.546 68.342-59.546L68.342-59.266M71.035-58.733Q71.035-58.979 71.232-59.163Q71.428-59.348 71.684-59.427Q71.548-59.539 71.476-59.700Q71.404-59.861 71.404-60.042Q71.404-60.363 71.616-60.609Q71.281-60.907 71.281-61.317Q71.281-61.778 71.671-62.065Q72.060-62.352 72.539-62.352Q73.011-62.352 73.346-62.106Q73.520-62.260 73.730-62.342Q73.940-62.424 74.169-62.424Q74.333-62.424 74.455-62.317Q74.576-62.209 74.576-62.045Q74.576-61.949 74.504-61.877Q74.432-61.806 74.340-61.806Q74.241-61.806 74.171-61.879Q74.101-61.953 74.101-62.052Q74.101-62.106 74.115-62.137L74.121-62.151Q74.128-62.171 74.137-62.182Q74.145-62.192 74.149-62.199Q73.793-62.199 73.506-61.976Q73.793-61.683 73.793-61.317Q73.793-61.002 73.609-60.770Q73.424-60.537 73.135-60.409Q72.847-60.281 72.539-60.281Q72.337-60.281 72.146-60.331Q71.954-60.380 71.777-60.490Q71.684-60.363 71.684-60.220Q71.684-60.038 71.813-59.903Q71.941-59.768 72.125-59.768L72.758-59.768Q73.205-59.768 73.575-59.697Q73.944-59.625 74.203-59.396Q74.463-59.167 74.463-58.733Q74.463-58.412 74.168-58.210Q73.872-58.008 73.469-57.919Q73.065-57.830 72.751-57.830Q72.433-57.830 72.030-57.919Q71.626-58.008 71.331-58.210Q71.035-58.412 71.035-58.733M71.490-58.733Q71.490-58.504 71.708-58.355Q71.927-58.206 72.219-58.138Q72.512-58.070 72.751-58.070Q72.915-58.070 73.123-58.106Q73.332-58.141 73.539-58.222Q73.745-58.302 73.877-58.430Q74.009-58.558 74.009-58.733Q74.009-59.085 73.628-59.179Q73.246-59.273 72.744-59.273L72.125-59.273Q71.886-59.273 71.688-59.122Q71.490-58.972 71.490-58.733M72.539-60.520Q73.205-60.520 73.205-61.317Q73.205-62.117 72.539-62.117Q71.869-62.117 71.869-61.317Q71.869-60.520 72.539-60.520M75.017-60.801Q75.017-61.122 75.142-61.411Q75.266-61.700 75.492-61.923Q75.718-62.147 76.013-62.267Q76.309-62.387 76.627-62.387Q76.955-62.387 77.216-62.287Q77.478-62.188 77.654-62.006Q77.830-61.823 77.924-61.565Q78.018-61.307 78.018-60.975Q78.018-60.883 77.936-60.862L75.680-60.862L75.680-60.801Q75.680-60.213 75.964-59.830Q76.247-59.447 76.815-59.447Q77.136-59.447 77.404-59.640Q77.673-59.833 77.762-60.148Q77.768-60.189 77.844-60.203L77.936-60.203Q78.018-60.179 78.018-60.107Q78.018-60.100 78.011-60.073Q77.898-59.676 77.527-59.437Q77.157-59.198 76.733-59.198Q76.295-59.198 75.895-59.406Q75.495-59.615 75.256-59.982Q75.017-60.349 75.017-60.801M75.687-61.071L77.502-61.071Q77.502-61.348 77.404-61.600Q77.307-61.853 77.109-62.009Q76.910-62.164 76.627-62.164Q76.350-62.164 76.136-62.006Q75.923-61.847 75.805-61.592Q75.687-61.337 75.687-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M84.927-61.016L81.062-61.016L81.062-61.242L84.927-61.242\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M89.646-57.909L88.016-57.909L88.016-58.189Q88.245-58.189 88.394-58.224Q88.542-58.258 88.542-58.398L88.542-61.744Q88.542-61.915 88.406-61.956Q88.269-61.997 88.016-61.997L88.016-62.277L89.096-62.352L89.096-61.946Q89.318-62.147 89.605-62.250Q89.893-62.352 90.200-62.352Q90.627-62.352 90.991-62.139Q91.355-61.925 91.569-61.561Q91.783-61.197 91.783-60.777Q91.783-60.332 91.543-59.968Q91.304-59.604 90.911-59.401Q90.518-59.198 90.074-59.198Q89.807-59.198 89.559-59.298Q89.312-59.399 89.124-59.580L89.124-58.398Q89.124-58.261 89.272-58.225Q89.421-58.189 89.646-58.189L89.646-57.909M89.124-61.597L89.124-59.987Q89.257-59.734 89.500-59.577Q89.742-59.420 90.019-59.420Q90.347-59.420 90.600-59.621Q90.853-59.823 90.986-60.141Q91.120-60.459 91.120-60.777Q91.120-61.006 91.055-61.235Q90.990-61.464 90.862-61.662Q90.733-61.860 90.539-61.980Q90.344-62.099 90.111-62.099Q89.817-62.099 89.549-61.970Q89.281-61.840 89.124-61.597M94.168-59.266L92.432-59.266L92.432-59.546Q92.661-59.546 92.810-59.580Q92.959-59.615 92.959-59.755L92.959-61.604Q92.959-61.874 92.851-61.935Q92.743-61.997 92.432-61.997L92.432-62.277L93.461-62.352L93.461-61.645Q93.591-61.953 93.834-62.152Q94.076-62.352 94.394-62.352Q94.613-62.352 94.784-62.228Q94.955-62.103 94.955-61.891Q94.955-61.754 94.855-61.655Q94.756-61.556 94.623-61.556Q94.486-61.556 94.387-61.655Q94.288-61.754 94.288-61.891Q94.288-62.031 94.387-62.130Q94.097-62.130 93.897-61.934Q93.697-61.737 93.605-61.443Q93.512-61.149 93.512-60.869L93.512-59.755Q93.512-59.546 94.168-59.546L94.168-59.266M95.498-60.749Q95.498-61.091 95.633-61.390Q95.768-61.689 96.007-61.913Q96.247-62.137 96.564-62.262Q96.882-62.387 97.214-62.387Q97.658-62.387 98.058-62.171Q98.458-61.956 98.692-61.578Q98.926-61.201 98.926-60.749Q98.926-60.408 98.784-60.124Q98.643-59.840 98.398-59.633Q98.154-59.427 97.844-59.312Q97.535-59.198 97.214-59.198Q96.783-59.198 96.382-59.399Q95.980-59.601 95.739-59.953Q95.498-60.305 95.498-60.749M97.214-59.447Q97.815-59.447 98.039-59.825Q98.263-60.203 98.263-60.835Q98.263-61.447 98.029-61.806Q97.795-62.164 97.214-62.164Q96.161-62.164 96.161-60.835Q96.161-60.203 96.387-59.825Q96.612-59.447 97.214-59.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 1.75)\">\u003Cpath d=\"M99.745-60.777Q99.745-61.105 99.880-61.406Q100.015-61.706 100.251-61.927Q100.487-62.147 100.791-62.267Q101.096-62.387 101.420-62.387Q101.926-62.387 102.275-62.284Q102.623-62.182 102.623-61.806Q102.623-61.659 102.526-61.558Q102.429-61.457 102.282-61.457Q102.128-61.457 102.029-61.556Q101.930-61.655 101.930-61.806Q101.930-61.994 102.070-62.086Q101.868-62.137 101.427-62.137Q101.072-62.137 100.843-61.941Q100.614-61.744 100.513-61.435Q100.412-61.125 100.412-60.777Q100.412-60.428 100.538-60.122Q100.665-59.816 100.920-59.632Q101.174-59.447 101.530-59.447Q101.752-59.447 101.936-59.531Q102.121-59.615 102.256-59.770Q102.391-59.926 102.449-60.134Q102.463-60.189 102.517-60.189L102.630-60.189Q102.661-60.189 102.683-60.165Q102.705-60.141 102.705-60.107L102.705-60.086Q102.620-59.799 102.432-59.601Q102.244-59.403 101.979-59.300Q101.714-59.198 101.420-59.198Q100.990-59.198 100.602-59.404Q100.214-59.611 99.980-59.974Q99.745-60.336 99.745-60.777M103.252-60.801Q103.252-61.122 103.377-61.411Q103.502-61.700 103.727-61.923Q103.953-62.147 104.249-62.267Q104.544-62.387 104.862-62.387Q105.190-62.387 105.452-62.287Q105.713-62.188 105.889-62.006Q106.065-61.823 106.159-61.565Q106.253-61.307 106.253-60.975Q106.253-60.883 106.171-60.862L103.915-60.862L103.915-60.801Q103.915-60.213 104.199-59.830Q104.483-59.447 105.050-59.447Q105.371-59.447 105.640-59.640Q105.908-59.833 105.997-60.148Q106.004-60.189 106.079-60.203L106.171-60.203Q106.253-60.179 106.253-60.107Q106.253-60.100 106.246-60.073Q106.134-59.676 105.763-59.437Q105.392-59.198 104.968-59.198Q104.531-59.198 104.131-59.406Q103.731-59.615 103.492-59.982Q103.252-60.349 103.252-60.801M103.922-61.071L105.737-61.071Q105.737-61.348 105.640-61.600Q105.542-61.853 105.344-62.009Q105.146-62.164 104.862-62.164Q104.585-62.164 104.372-62.006Q104.158-61.847 104.040-61.592Q103.922-61.337 103.922-61.071M106.800-60.801Q106.800-61.122 106.925-61.411Q107.050-61.700 107.275-61.923Q107.501-62.147 107.796-62.267Q108.092-62.387 108.410-62.387Q108.738-62.387 109-62.287Q109.261-62.188 109.437-62.006Q109.613-61.823 109.707-61.565Q109.801-61.307 109.801-60.975Q109.801-60.883 109.719-60.862L107.463-60.862L107.463-60.801Q107.463-60.213 107.747-59.830Q108.031-59.447 108.598-59.447Q108.919-59.447 109.188-59.640Q109.456-59.833 109.545-60.148Q109.552-60.189 109.627-60.203L109.719-60.203Q109.801-60.179 109.801-60.107Q109.801-60.100 109.794-60.073Q109.681-59.676 109.311-59.437Q108.940-59.198 108.516-59.198Q108.078-59.198 107.679-59.406Q107.279-59.615 107.039-59.982Q106.800-60.349 106.800-60.801M107.470-61.071L109.285-61.071Q109.285-61.348 109.188-61.600Q109.090-61.853 108.892-62.009Q108.694-62.164 108.410-62.164Q108.133-62.164 107.920-62.006Q107.706-61.847 107.588-61.592Q107.470-61.337 107.470-61.071M110.389-60.777Q110.389-61.115 110.529-61.406Q110.669-61.696 110.914-61.910Q111.158-62.123 111.462-62.238Q111.766-62.352 112.091-62.352Q112.361-62.352 112.624-62.253Q112.888-62.154 113.079-61.976L113.079-63.374Q113.079-63.644 112.971-63.706Q112.864-63.767 112.553-63.767L112.553-64.048L113.629-64.123L113.629-59.939Q113.629-59.751 113.684-59.668Q113.739-59.584 113.839-59.565Q113.940-59.546 114.156-59.546L114.156-59.266L113.048-59.198L113.048-59.615Q112.631-59.198 112.006-59.198Q111.575-59.198 111.202-59.410Q110.830-59.621 110.609-59.982Q110.389-60.343 110.389-60.777M112.064-59.420Q112.272-59.420 112.459-59.492Q112.645-59.563 112.799-59.700Q112.952-59.837 113.048-60.015L113.048-61.624Q112.963-61.771 112.817-61.891Q112.672-62.011 112.503-62.070Q112.334-62.130 112.153-62.130Q111.592-62.130 111.324-61.741Q111.056-61.351 111.056-60.770Q111.056-60.199 111.290-59.809Q111.524-59.420 112.064-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-48.739h321.516\"\u002F>\u003Cg transform=\"translate(15.015 23.784)\">\u003Cpath d=\"M-51.032-59.504L-51.032-59.594Q-50.982-59.801-50.786-59.825L-50.513-59.825L-50.513-63.594L-50.786-63.594Q-50.982-63.618-51.032-63.832L-51.032-63.922Q-50.982-64.129-50.786-64.153L-49.603-64.153Q-49.404-64.129-49.353-63.922L-49.353-63.832Q-49.404-63.618-49.603-63.594L-49.872-63.594L-49.872-62.090L-48.239-62.090L-48.239-63.594L-48.513-63.594Q-48.704-63.618-48.763-63.832L-48.763-63.922Q-48.704-64.129-48.513-64.153L-47.329-64.153Q-47.138-64.129-47.079-63.922L-47.079-63.832Q-47.138-63.618-47.329-63.594L-47.603-63.594L-47.603-59.825L-47.329-59.825Q-47.138-59.801-47.079-59.594L-47.079-59.504Q-47.138-59.289-47.329-59.266L-48.513-59.266Q-48.704-59.289-48.763-59.504L-48.763-59.594Q-48.704-59.801-48.513-59.825L-48.239-59.825L-48.239-61.532L-49.872-61.532L-49.872-59.825L-49.603-59.825Q-49.404-59.801-49.353-59.594L-49.353-59.504Q-49.404-59.289-49.603-59.266L-50.786-59.266Q-50.982-59.289-51.032-59.504M-46.708-59.504L-46.708-59.594Q-46.650-59.801-46.458-59.825L-46.091-59.825L-46.091-63.594L-46.458-63.594Q-46.650-63.618-46.708-63.832L-46.708-63.922Q-46.650-64.129-46.458-64.153L-44.931-64.153Q-44.736-64.129-44.685-63.922L-44.685-63.832Q-44.736-63.618-44.931-63.594L-45.450-63.594L-45.450-59.825L-43.618-59.825L-43.618-60.465Q-43.568-60.672-43.372-60.700L-43.228-60.700Q-43.029-60.672-42.978-60.465L-42.978-59.504Q-43.029-59.289-43.228-59.266L-46.458-59.266Q-46.650-59.289-46.708-59.504M-41.622-59.504L-41.622-59.594Q-41.564-59.801-41.372-59.825L-40.884-59.825L-40.884-63.594L-41.829-63.594L-41.829-63.082Q-41.876-62.868-42.075-62.840L-42.220-62.840Q-42.419-62.868-42.470-63.082L-42.470-63.922Q-42.419-64.129-42.220-64.153L-38.907-64.153Q-38.712-64.133-38.661-63.922L-38.661-63.082Q-38.708-62.868-38.907-62.840L-39.052-62.840Q-39.251-62.868-39.302-63.082L-39.302-63.594L-40.243-63.594L-40.243-59.825L-39.755-59.825Q-39.560-59.801-39.509-59.594L-39.509-59.504Q-39.560-59.289-39.755-59.266L-41.372-59.266Q-41.564-59.289-41.622-59.504\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M-49.181-59.266L-50.815-59.266L-50.815-59.546Q-50.586-59.546-50.437-59.580Q-50.288-59.615-50.288-59.755L-50.288-63.374Q-50.288-63.644-50.396-63.706Q-50.504-63.767-50.815-63.767L-50.815-64.048L-49.735-64.123L-49.735-61.737Q-49.629-61.922-49.451-62.064Q-49.273-62.205-49.065-62.279Q-48.856-62.352-48.631-62.352Q-48.125-62.352-47.841-62.129Q-47.557-61.905-47.557-61.409L-47.557-59.755Q-47.557-59.618-47.409-59.582Q-47.260-59.546-47.034-59.546L-47.034-59.266L-48.665-59.266L-48.665-59.546Q-48.436-59.546-48.287-59.580Q-48.138-59.615-48.138-59.755L-48.138-61.395Q-48.138-61.730-48.258-61.930Q-48.378-62.130-48.692-62.130Q-48.962-62.130-49.196-61.994Q-49.430-61.857-49.569-61.623Q-49.707-61.389-49.707-61.115L-49.707-59.755Q-49.707-59.618-49.557-59.582Q-49.406-59.546-49.181-59.546L-49.181-59.266M-46.388-59.994Q-46.388-60.326-46.165-60.553Q-45.941-60.780-45.597-60.908Q-45.254-61.037-44.881-61.089Q-44.509-61.142-44.204-61.142L-44.204-61.395Q-44.204-61.600-44.312-61.780Q-44.420-61.959-44.601-62.062Q-44.782-62.164-44.990-62.164Q-45.397-62.164-45.633-62.072Q-45.544-62.035-45.498-61.951Q-45.452-61.867-45.452-61.765Q-45.452-61.669-45.498-61.590Q-45.544-61.512-45.625-61.467Q-45.705-61.423-45.794-61.423Q-45.944-61.423-46.045-61.520Q-46.146-61.618-46.146-61.765Q-46.146-62.387-44.990-62.387Q-44.779-62.387-44.529-62.323Q-44.280-62.260-44.078-62.141Q-43.876-62.021-43.750-61.836Q-43.623-61.652-43.623-61.409L-43.623-59.833Q-43.623-59.717-43.562-59.621Q-43.500-59.526-43.387-59.526Q-43.278-59.526-43.213-59.620Q-43.148-59.714-43.148-59.833L-43.148-60.281L-42.882-60.281L-42.882-59.833Q-42.882-59.563-43.109-59.398Q-43.336-59.232-43.616-59.232Q-43.825-59.232-43.962-59.386Q-44.098-59.539-44.122-59.755Q-44.269-59.488-44.551-59.343Q-44.833-59.198-45.158-59.198Q-45.435-59.198-45.719-59.273Q-46.002-59.348-46.195-59.527Q-46.388-59.707-46.388-59.994M-45.773-59.994Q-45.773-59.820-45.672-59.690Q-45.572-59.560-45.416-59.490Q-45.260-59.420-45.096-59.420Q-44.878-59.420-44.669-59.517Q-44.461-59.615-44.333-59.796Q-44.204-59.977-44.204-60.203L-44.204-60.931Q-44.529-60.931-44.895-60.840Q-45.260-60.749-45.517-60.537Q-45.773-60.326-45.773-59.994M-40.797-59.266L-42.400-59.266L-42.400-59.546Q-42.174-59.546-42.025-59.580Q-41.877-59.615-41.877-59.755L-41.877-63.374Q-41.877-63.644-41.984-63.706Q-42.092-63.767-42.400-63.767L-42.400-64.048L-41.323-64.123L-41.323-59.755Q-41.323-59.618-41.173-59.582Q-41.022-59.546-40.797-59.546L-40.797-59.266M-39.676-60.107L-39.676-62.004L-40.315-62.004L-40.315-62.226Q-39.997-62.226-39.780-62.436Q-39.563-62.646-39.462-62.956Q-39.361-63.265-39.361-63.573L-39.094-63.573L-39.094-62.284L-38.018-62.284L-38.018-62.004L-39.094-62.004L-39.094-60.120Q-39.094-59.844-38.990-59.645Q-38.886-59.447-38.626-59.447Q-38.469-59.447-38.363-59.551Q-38.257-59.656-38.208-59.809Q-38.158-59.963-38.158-60.120L-38.158-60.534L-37.891-60.534L-37.891-60.107Q-37.891-59.881-37.990-59.671Q-38.090-59.461-38.274-59.329Q-38.459-59.198-38.688-59.198Q-39.125-59.198-39.400-59.435Q-39.676-59.673-39.676-60.107\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M-32.760-59.266L-34.312-59.266L-34.312-59.546Q-34.086-59.546-33.937-59.580Q-33.789-59.615-33.789-59.755L-33.789-61.604Q-33.789-61.792-33.837-61.876Q-33.884-61.959-33.982-61.978Q-34.079-61.997-34.291-61.997L-34.291-62.277L-33.235-62.352L-33.235-59.755Q-33.235-59.615-33.103-59.580Q-32.972-59.546-32.760-59.546L-32.760-59.266M-34.031-63.573Q-34.031-63.744-33.908-63.863Q-33.785-63.983-33.614-63.983Q-33.447-63.983-33.324-63.863Q-33.201-63.744-33.201-63.573Q-33.201-63.398-33.324-63.275Q-33.447-63.152-33.614-63.152Q-33.785-63.152-33.908-63.275Q-34.031-63.398-34.031-63.573M-30.432-59.266L-32.066-59.266L-32.066-59.546Q-31.837-59.546-31.688-59.580Q-31.540-59.615-31.540-59.755L-31.540-61.604Q-31.540-61.874-31.647-61.935Q-31.755-61.997-32.066-61.997L-32.066-62.277L-31.006-62.352L-31.006-61.703Q-30.836-62.011-30.531-62.182Q-30.227-62.352-29.882-62.352Q-29.376-62.352-29.092-62.129Q-28.809-61.905-28.809-61.409L-28.809-59.755Q-28.809-59.618-28.660-59.582Q-28.511-59.546-28.286-59.546L-28.286-59.266L-29.916-59.266L-29.916-59.546Q-29.687-59.546-29.538-59.580Q-29.390-59.615-29.390-59.755L-29.390-61.395Q-29.390-61.730-29.509-61.930Q-29.629-62.130-29.943-62.130Q-30.213-62.130-30.448-61.994Q-30.682-61.857-30.820-61.623Q-30.959-61.389-30.959-61.115L-30.959-59.755Q-30.959-59.618-30.808-59.582Q-30.658-59.546-30.432-59.546L-30.432-59.266M-27.698-59.273L-27.698-60.336Q-27.698-60.360-27.670-60.387Q-27.643-60.414-27.619-60.414L-27.510-60.414Q-27.445-60.414-27.431-60.356Q-27.336-59.922-27.089-59.671Q-26.843-59.420-26.430-59.420Q-26.088-59.420-25.835-59.553Q-25.582-59.686-25.582-59.994Q-25.582-60.151-25.676-60.266Q-25.770-60.380-25.909-60.449Q-26.047-60.517-26.214-60.555L-26.795-60.654Q-27.151-60.722-27.424-60.943Q-27.698-61.163-27.698-61.505Q-27.698-61.754-27.587-61.929Q-27.476-62.103-27.289-62.202Q-27.103-62.301-26.888-62.344Q-26.672-62.387-26.430-62.387Q-26.016-62.387-25.736-62.205L-25.521-62.380Q-25.510-62.383-25.504-62.385Q-25.497-62.387-25.486-62.387L-25.435-62.387Q-25.408-62.387-25.384-62.363Q-25.360-62.339-25.360-62.311L-25.360-61.464Q-25.360-61.443-25.384-61.416Q-25.408-61.389-25.435-61.389L-25.548-61.389Q-25.575-61.389-25.601-61.414Q-25.627-61.440-25.627-61.464Q-25.627-61.700-25.733-61.864Q-25.838-62.028-26.021-62.110Q-26.204-62.192-26.437-62.192Q-26.765-62.192-27.021-62.089Q-27.277-61.987-27.277-61.710Q-27.277-61.515-27.095-61.406Q-26.912-61.296-26.683-61.255L-26.108-61.149Q-25.862-61.101-25.649-60.973Q-25.435-60.845-25.298-60.642Q-25.162-60.438-25.162-60.189Q-25.162-59.676-25.527-59.437Q-25.893-59.198-26.430-59.198Q-26.925-59.198-27.257-59.492L-27.524-59.218Q-27.544-59.198-27.571-59.198L-27.619-59.198Q-27.643-59.198-27.670-59.225Q-27.698-59.252-27.698-59.273M-24.006-60.107L-24.006-62.004L-24.646-62.004L-24.646-62.226Q-24.328-62.226-24.111-62.436Q-23.894-62.646-23.793-62.956Q-23.692-63.265-23.692-63.573L-23.425-63.573L-23.425-62.284L-22.349-62.284L-22.349-62.004L-23.425-62.004L-23.425-60.120Q-23.425-59.844-23.321-59.645Q-23.217-59.447-22.957-59.447Q-22.800-59.447-22.694-59.551Q-22.588-59.656-22.538-59.809Q-22.489-59.963-22.489-60.120L-22.489-60.534L-22.222-60.534L-22.222-60.107Q-22.222-59.881-22.321-59.671Q-22.420-59.461-22.605-59.329Q-22.790-59.198-23.019-59.198Q-23.456-59.198-23.731-59.435Q-24.006-59.673-24.006-60.107M-19.662-59.266L-21.399-59.266L-21.399-59.546Q-21.170-59.546-21.021-59.580Q-20.872-59.615-20.872-59.755L-20.872-61.604Q-20.872-61.874-20.980-61.935Q-21.087-61.997-21.399-61.997L-21.399-62.277L-20.370-62.352L-20.370-61.645Q-20.240-61.953-19.997-62.152Q-19.754-62.352-19.437-62.352Q-19.218-62.352-19.047-62.228Q-18.876-62.103-18.876-61.891Q-18.876-61.754-18.975-61.655Q-19.074-61.556-19.208-61.556Q-19.344-61.556-19.443-61.655Q-19.543-61.754-19.543-61.891Q-19.543-62.031-19.443-62.130Q-19.734-62.130-19.934-61.934Q-20.134-61.737-20.226-61.443Q-20.318-61.149-20.318-60.869L-20.318-59.755Q-20.318-59.546-19.662-59.546L-19.662-59.266M-17.717-60.100L-17.717-61.604Q-17.717-61.874-17.825-61.935Q-17.933-61.997-18.244-61.997L-18.244-62.277L-17.136-62.352L-17.136-60.120L-17.136-60.100Q-17.136-59.820-17.085-59.676Q-17.034-59.533-16.892-59.476Q-16.750-59.420-16.463-59.420Q-16.210-59.420-16.005-59.560Q-15.800-59.700-15.684-59.926Q-15.567-60.151-15.567-60.401L-15.567-61.604Q-15.567-61.874-15.675-61.935Q-15.783-61.997-16.094-61.997L-16.094-62.277L-14.986-62.352L-14.986-59.939Q-14.986-59.748-14.933-59.666Q-14.880-59.584-14.780-59.565Q-14.679-59.546-14.463-59.546L-14.463-59.266L-15.540-59.198L-15.540-59.762Q-15.649-59.580-15.795-59.457Q-15.940-59.334-16.126-59.266Q-16.313-59.198-16.514-59.198Q-17.717-59.198-17.717-60.100M-13.876-60.777Q-13.876-61.105-13.741-61.406Q-13.606-61.706-13.370-61.927Q-13.134-62.147-12.830-62.267Q-12.525-62.387-12.201-62.387Q-11.695-62.387-11.346-62.284Q-10.998-62.182-10.998-61.806Q-10.998-61.659-11.095-61.558Q-11.192-61.457-11.339-61.457Q-11.493-61.457-11.592-61.556Q-11.691-61.655-11.691-61.806Q-11.691-61.994-11.551-62.086Q-11.753-62.137-12.194-62.137Q-12.549-62.137-12.778-61.941Q-13.007-61.744-13.108-61.435Q-13.209-61.125-13.209-60.777Q-13.209-60.428-13.083-60.122Q-12.956-59.816-12.701-59.632Q-12.447-59.447-12.091-59.447Q-11.869-59.447-11.685-59.531Q-11.500-59.615-11.365-59.770Q-11.230-59.926-11.172-60.134Q-11.158-60.189-11.104-60.189L-10.991-60.189Q-10.960-60.189-10.938-60.165Q-10.916-60.141-10.916-60.107L-10.916-60.086Q-11.001-59.799-11.189-59.601Q-11.377-59.403-11.642-59.300Q-11.907-59.198-12.201-59.198Q-12.631-59.198-13.019-59.404Q-13.407-59.611-13.641-59.974Q-13.876-60.336-13.876-60.777M-9.801-60.107L-9.801-62.004L-10.441-62.004L-10.441-62.226Q-10.123-62.226-9.906-62.436Q-9.689-62.646-9.588-62.956Q-9.487-63.265-9.487-63.573L-9.220-63.573L-9.220-62.284L-8.144-62.284L-8.144-62.004L-9.220-62.004L-9.220-60.120Q-9.220-59.844-9.116-59.645Q-9.012-59.447-8.752-59.447Q-8.595-59.447-8.489-59.551Q-8.383-59.656-8.333-59.809Q-8.284-59.963-8.284-60.120L-8.284-60.534L-8.017-60.534L-8.017-60.107Q-8.017-59.881-8.116-59.671Q-8.215-59.461-8.400-59.329Q-8.585-59.198-8.814-59.198Q-9.251-59.198-9.526-59.435Q-9.801-59.673-9.801-60.107M-5.590-59.266L-7.142-59.266L-7.142-59.546Q-6.917-59.546-6.768-59.580Q-6.619-59.615-6.619-59.755L-6.619-61.604Q-6.619-61.792-6.667-61.876Q-6.715-61.959-6.812-61.978Q-6.910-61.997-7.122-61.997L-7.122-62.277L-6.066-62.352L-6.066-59.755Q-6.066-59.615-5.934-59.580Q-5.802-59.546-5.590-59.546L-5.590-59.266M-6.862-63.573Q-6.862-63.744-6.739-63.863Q-6.616-63.983-6.445-63.983Q-6.277-63.983-6.154-63.863Q-6.031-63.744-6.031-63.573Q-6.031-63.398-6.154-63.275Q-6.277-63.152-6.445-63.152Q-6.616-63.152-6.739-63.275Q-6.862-63.398-6.862-63.573M-4.985-60.749Q-4.985-61.091-4.850-61.390Q-4.715-61.689-4.476-61.913Q-4.237-62.137-3.919-62.262Q-3.601-62.387-3.270-62.387Q-2.825-62.387-2.425-62.171Q-2.025-61.956-1.791-61.578Q-1.557-61.201-1.557-60.749Q-1.557-60.408-1.699-60.124Q-1.841-59.840-2.085-59.633Q-2.330-59.427-2.639-59.312Q-2.948-59.198-3.270-59.198Q-3.700-59.198-4.102-59.399Q-4.504-59.601-4.744-59.953Q-4.985-60.305-4.985-60.749M-3.270-59.447Q-2.668-59.447-2.444-59.825Q-2.220-60.203-2.220-60.835Q-2.220-61.447-2.454-61.806Q-2.689-62.164-3.270-62.164Q-4.322-62.164-4.322-60.835Q-4.322-60.203-4.097-59.825Q-3.871-59.447-3.270-59.447M0.719-59.266L-0.915-59.266L-0.915-59.546Q-0.686-59.546-0.537-59.580Q-0.388-59.615-0.388-59.755L-0.388-61.604Q-0.388-61.874-0.496-61.935Q-0.604-61.997-0.915-61.997L-0.915-62.277L0.145-62.352L0.145-61.703Q0.316-62.011 0.620-62.182Q0.924-62.352 1.269-62.352Q1.775-62.352 2.059-62.129Q2.343-61.905 2.343-61.409L2.343-59.755Q2.343-59.618 2.491-59.582Q2.640-59.546 2.866-59.546L2.866-59.266L1.235-59.266L1.235-59.546Q1.464-59.546 1.613-59.580Q1.762-59.615 1.762-59.755L1.762-61.395Q1.762-61.730 1.642-61.930Q1.522-62.130 1.208-62.130Q0.938-62.130 0.704-61.994Q0.470-61.857 0.331-61.623Q0.193-61.389 0.193-61.115L0.193-59.755Q0.193-59.618 0.343-59.582Q0.494-59.546 0.719-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M7.978-59.266L6.245-59.266L6.245-59.546Q6.471-59.546 6.620-59.580Q6.768-59.615 6.768-59.755L6.768-62.004L6.180-62.004L6.180-62.284L6.768-62.284L6.768-63.101Q6.768-63.419 6.946-63.667Q7.124-63.914 7.414-64.055Q7.705-64.195 8.016-64.195Q8.272-64.195 8.476-64.053Q8.679-63.911 8.679-63.668Q8.679-63.532 8.580-63.433Q8.481-63.333 8.344-63.333Q8.207-63.333 8.108-63.433Q8.009-63.532 8.009-63.668Q8.009-63.849 8.149-63.942Q8.071-63.969 7.971-63.969Q7.763-63.969 7.609-63.836Q7.455-63.703 7.375-63.499Q7.295-63.296 7.295-63.087L7.295-62.284L8.183-62.284L8.183-62.004L7.322-62.004L7.322-59.755Q7.322-59.546 7.978-59.546L7.978-59.266M8.617-60.801Q8.617-61.122 8.742-61.411Q8.867-61.700 9.093-61.923Q9.318-62.147 9.614-62.267Q9.909-62.387 10.227-62.387Q10.555-62.387 10.817-62.287Q11.078-62.188 11.254-62.006Q11.430-61.823 11.524-61.565Q11.618-61.307 11.618-60.975Q11.618-60.883 11.536-60.862L9.281-60.862L9.281-60.801Q9.281-60.213 9.564-59.830Q9.848-59.447 10.415-59.447Q10.737-59.447 11.005-59.640Q11.273-59.833 11.362-60.148Q11.369-60.189 11.444-60.203L11.536-60.203Q11.618-60.179 11.618-60.107Q11.618-60.100 11.612-60.073Q11.499-59.676 11.128-59.437Q10.757-59.198 10.333-59.198Q9.896-59.198 9.496-59.406Q9.096-59.615 8.857-59.982Q8.617-60.349 8.617-60.801M9.287-61.071L11.102-61.071Q11.102-61.348 11.005-61.600Q10.908-61.853 10.709-62.009Q10.511-62.164 10.227-62.164Q9.950-62.164 9.737-62.006Q9.523-61.847 9.405-61.592Q9.287-61.337 9.287-61.071M12.733-60.107L12.733-62.004L12.094-62.004L12.094-62.226Q12.411-62.226 12.628-62.436Q12.845-62.646 12.946-62.956Q13.047-63.265 13.047-63.573L13.314-63.573L13.314-62.284L14.390-62.284L14.390-62.004L13.314-62.004L13.314-60.120Q13.314-59.844 13.418-59.645Q13.522-59.447 13.782-59.447Q13.939-59.447 14.045-59.551Q14.151-59.656 14.201-59.809Q14.250-59.963 14.250-60.120L14.250-60.534L14.517-60.534L14.517-60.107Q14.517-59.881 14.418-59.671Q14.319-59.461 14.134-59.329Q13.949-59.198 13.720-59.198Q13.283-59.198 13.008-59.435Q12.733-59.673 12.733-60.107M15.327-60.777Q15.327-61.105 15.462-61.406Q15.597-61.706 15.833-61.927Q16.069-62.147 16.373-62.267Q16.677-62.387 17.002-62.387Q17.508-62.387 17.856-62.284Q18.205-62.182 18.205-61.806Q18.205-61.659 18.107-61.558Q18.010-61.457 17.863-61.457Q17.709-61.457 17.610-61.556Q17.511-61.655 17.511-61.806Q17.511-61.994 17.651-62.086Q17.449-62.137 17.009-62.137Q16.653-62.137 16.424-61.941Q16.195-61.744 16.094-61.435Q15.993-61.125 15.993-60.777Q15.993-60.428 16.120-60.122Q16.246-59.816 16.501-59.632Q16.756-59.447 17.111-59.447Q17.333-59.447 17.518-59.531Q17.702-59.615 17.837-59.770Q17.972-59.926 18.031-60.134Q18.044-60.189 18.099-60.189L18.212-60.189Q18.242-60.189 18.265-60.165Q18.287-60.141 18.287-60.107L18.287-60.086Q18.201-59.799 18.013-59.601Q17.825-59.403 17.561-59.300Q17.296-59.198 17.002-59.198Q16.571-59.198 16.183-59.404Q15.795-59.611 15.561-59.974Q15.327-60.336 15.327-60.777\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M20.362-59.266L18.728-59.266L18.728-59.546Q18.957-59.546 19.106-59.580Q19.255-59.615 19.255-59.755L19.255-63.374Q19.255-63.644 19.147-63.706Q19.039-63.767 18.728-63.767L18.728-64.048L19.808-64.123L19.808-61.737Q19.914-61.922 20.092-62.064Q20.270-62.205 20.478-62.279Q20.687-62.352 20.912-62.352Q21.418-62.352 21.702-62.129Q21.986-61.905 21.986-61.409L21.986-59.755Q21.986-59.618 22.134-59.582Q22.283-59.546 22.509-59.546L22.509-59.266L20.878-59.266L20.878-59.546Q21.107-59.546 21.256-59.580Q21.405-59.615 21.405-59.755L21.405-61.395Q21.405-61.730 21.285-61.930Q21.165-62.130 20.851-62.130Q20.581-62.130 20.347-61.994Q20.113-61.857 19.974-61.623Q19.836-61.389 19.836-61.115L19.836-59.755Q19.836-59.618 19.986-59.582Q20.137-59.546 20.362-59.546L20.362-59.266M23.055-60.801Q23.055-61.122 23.180-61.411Q23.305-61.700 23.531-61.923Q23.756-62.147 24.052-62.267Q24.347-62.387 24.665-62.387Q24.993-62.387 25.255-62.287Q25.516-62.188 25.692-62.006Q25.868-61.823 25.962-61.565Q26.056-61.307 26.056-60.975Q26.056-60.883 25.974-60.862L23.719-60.862L23.719-60.801Q23.719-60.213 24.002-59.830Q24.286-59.447 24.853-59.447Q25.175-59.447 25.443-59.640Q25.711-59.833 25.800-60.148Q25.807-60.189 25.882-60.203L25.974-60.203Q26.056-60.179 26.056-60.107Q26.056-60.100 26.050-60.073Q25.937-59.676 25.566-59.437Q25.195-59.198 24.771-59.198Q24.334-59.198 23.934-59.406Q23.534-59.615 23.295-59.982Q23.055-60.349 23.055-60.801M23.725-61.071L25.540-61.071Q25.540-61.348 25.443-61.600Q25.345-61.853 25.147-62.009Q24.949-62.164 24.665-62.164Q24.388-62.164 24.175-62.006Q23.961-61.847 23.843-61.592Q23.725-61.337 23.725-61.071M26.644-60.777Q26.644-61.115 26.784-61.406Q26.925-61.696 27.169-61.910Q27.413-62.123 27.718-62.238Q28.022-62.352 28.346-62.352Q28.616-62.352 28.880-62.253Q29.143-62.154 29.334-61.976L29.334-63.374Q29.334-63.644 29.227-63.706Q29.119-63.767 28.808-63.767L28.808-64.048L29.885-64.123L29.885-59.939Q29.885-59.751 29.939-59.668Q29.994-59.584 30.095-59.565Q30.196-59.546 30.411-59.546L30.411-59.266L29.303-59.198L29.303-59.615Q28.887-59.198 28.261-59.198Q27.830-59.198 27.458-59.410Q27.085-59.621 26.865-59.982Q26.644-60.343 26.644-60.777M28.319-59.420Q28.528-59.420 28.714-59.492Q28.900-59.563 29.054-59.700Q29.208-59.837 29.303-60.015L29.303-61.624Q29.218-61.771 29.073-61.891Q28.928-62.011 28.758-62.070Q28.589-62.130 28.408-62.130Q27.847-62.130 27.579-61.741Q27.311-61.351 27.311-60.770Q27.311-60.199 27.545-59.809Q27.779-59.420 28.319-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M37.370-61.016L33.505-61.016L33.505-61.242L37.370-61.242\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M42.126-59.266L40.492-59.266L40.492-59.546Q40.721-59.546 40.870-59.580Q41.019-59.615 41.019-59.755L41.019-61.604Q41.019-61.874 40.911-61.935Q40.803-61.997 40.492-61.997L40.492-62.277L41.552-62.352L41.552-61.703Q41.723-62.011 42.027-62.182Q42.331-62.352 42.676-62.352Q43.076-62.352 43.353-62.212Q43.630-62.072 43.715-61.724Q43.883-62.017 44.182-62.185Q44.481-62.352 44.826-62.352Q45.332-62.352 45.616-62.129Q45.900-61.905 45.900-61.409L45.900-59.755Q45.900-59.618 46.048-59.582Q46.197-59.546 46.422-59.546L46.422-59.266L44.792-59.266L44.792-59.546Q45.018-59.546 45.168-59.582Q45.318-59.618 45.318-59.755L45.318-61.395Q45.318-61.730 45.199-61.930Q45.079-62.130 44.765-62.130Q44.495-62.130 44.261-61.994Q44.026-61.857 43.888-61.623Q43.750-61.389 43.750-61.115L43.750-59.755Q43.750-59.618 43.898-59.582Q44.047-59.546 44.273-59.546L44.273-59.266L42.642-59.266L42.642-59.546Q42.871-59.546 43.020-59.580Q43.169-59.615 43.169-59.755L43.169-61.395Q43.169-61.730 43.049-61.930Q42.929-62.130 42.615-62.130Q42.345-62.130 42.111-61.994Q41.877-61.857 41.738-61.623Q41.600-61.389 41.600-61.115L41.600-59.755Q41.600-59.618 41.750-59.582Q41.901-59.546 42.126-59.546L42.126-59.266M47.068-59.994Q47.068-60.326 47.292-60.553Q47.516-60.780 47.860-60.908Q48.203-61.037 48.576-61.089Q48.948-61.142 49.253-61.142L49.253-61.395Q49.253-61.600 49.145-61.780Q49.037-61.959 48.856-62.062Q48.675-62.164 48.466-62.164Q48.060-62.164 47.824-62.072Q47.913-62.035 47.959-61.951Q48.005-61.867 48.005-61.765Q48.005-61.669 47.959-61.590Q47.913-61.512 47.832-61.467Q47.752-61.423 47.663-61.423Q47.513-61.423 47.412-61.520Q47.311-61.618 47.311-61.765Q47.311-62.387 48.466-62.387Q48.678-62.387 48.928-62.323Q49.177-62.260 49.379-62.141Q49.581-62.021 49.707-61.836Q49.834-61.652 49.834-61.409L49.834-59.833Q49.834-59.717 49.895-59.621Q49.957-59.526 50.069-59.526Q50.179-59.526 50.244-59.620Q50.309-59.714 50.309-59.833L50.309-60.281L50.575-60.281L50.575-59.833Q50.575-59.563 50.348-59.398Q50.121-59.232 49.840-59.232Q49.632-59.232 49.495-59.386Q49.359-59.539 49.335-59.755Q49.188-59.488 48.906-59.343Q48.624-59.198 48.299-59.198Q48.022-59.198 47.738-59.273Q47.455-59.348 47.262-59.527Q47.068-59.707 47.068-59.994M47.684-59.994Q47.684-59.820 47.785-59.690Q47.885-59.560 48.041-59.490Q48.196-59.420 48.360-59.420Q48.579-59.420 48.788-59.517Q48.996-59.615 49.124-59.796Q49.253-59.977 49.253-60.203L49.253-60.931Q48.928-60.931 48.562-60.840Q48.196-60.749 47.940-60.537Q47.684-60.326 47.684-59.994M50.992-60.777Q50.992-61.105 51.127-61.406Q51.262-61.706 51.498-61.927Q51.734-62.147 52.038-62.267Q52.342-62.387 52.667-62.387Q53.173-62.387 53.522-62.284Q53.870-62.182 53.870-61.806Q53.870-61.659 53.773-61.558Q53.675-61.457 53.528-61.457Q53.375-61.457 53.276-61.556Q53.176-61.655 53.176-61.806Q53.176-61.994 53.317-62.086Q53.115-62.137 52.674-62.137Q52.318-62.137 52.089-61.941Q51.860-61.744 51.760-61.435Q51.659-61.125 51.659-60.777Q51.659-60.428 51.785-60.122Q51.912-59.816 52.166-59.632Q52.421-59.447 52.776-59.447Q52.999-59.447 53.183-59.531Q53.368-59.615 53.503-59.770Q53.638-59.926 53.696-60.134Q53.710-60.189 53.764-60.189L53.877-60.189Q53.908-60.189 53.930-60.165Q53.952-60.141 53.952-60.107L53.952-60.086Q53.867-59.799 53.679-59.601Q53.491-59.403 53.226-59.300Q52.961-59.198 52.667-59.198Q52.236-59.198 51.849-59.404Q51.461-59.611 51.226-59.974Q50.992-60.336 50.992-60.777\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M56.022-59.266L54.388-59.266L54.388-59.546Q54.617-59.546 54.766-59.580Q54.915-59.615 54.915-59.755L54.915-63.374Q54.915-63.644 54.807-63.706Q54.699-63.767 54.388-63.767L54.388-64.048L55.468-64.123L55.468-61.737Q55.574-61.922 55.752-62.064Q55.930-62.205 56.138-62.279Q56.347-62.352 56.572-62.352Q57.078-62.352 57.362-62.129Q57.646-61.905 57.646-61.409L57.646-59.755Q57.646-59.618 57.794-59.582Q57.943-59.546 58.169-59.546L58.169-59.266L56.538-59.266L56.538-59.546Q56.767-59.546 56.916-59.580Q57.065-59.615 57.065-59.755L57.065-61.395Q57.065-61.730 56.945-61.930Q56.825-62.130 56.511-62.130Q56.241-62.130 56.007-61.994Q55.773-61.857 55.634-61.623Q55.496-61.389 55.496-61.115L55.496-59.755Q55.496-59.618 55.646-59.582Q55.797-59.546 56.022-59.546L56.022-59.266M60.373-59.266L58.821-59.266L58.821-59.546Q59.047-59.546 59.196-59.580Q59.344-59.615 59.344-59.755L59.344-61.604Q59.344-61.792 59.297-61.876Q59.249-61.959 59.151-61.978Q59.054-61.997 58.842-61.997L58.842-62.277L59.898-62.352L59.898-59.755Q59.898-59.615 60.030-59.580Q60.161-59.546 60.373-59.546L60.373-59.266M59.102-63.573Q59.102-63.744 59.225-63.863Q59.348-63.983 59.519-63.983Q59.686-63.983 59.809-63.863Q59.932-63.744 59.932-63.573Q59.932-63.398 59.809-63.275Q59.686-63.152 59.519-63.152Q59.348-63.152 59.225-63.275Q59.102-63.398 59.102-63.573M62.701-59.266L61.067-59.266L61.067-59.546Q61.296-59.546 61.445-59.580Q61.593-59.615 61.593-59.755L61.593-61.604Q61.593-61.874 61.486-61.935Q61.378-61.997 61.067-61.997L61.067-62.277L62.127-62.352L62.127-61.703Q62.297-62.011 62.602-62.182Q62.906-62.352 63.251-62.352Q63.757-62.352 64.041-62.129Q64.324-61.905 64.324-61.409L64.324-59.755Q64.324-59.618 64.473-59.582Q64.622-59.546 64.847-59.546L64.847-59.266L63.217-59.266L63.217-59.546Q63.446-59.546 63.595-59.580Q63.743-59.615 63.743-59.755L63.743-61.395Q63.743-61.730 63.624-61.930Q63.504-62.130 63.190-62.130Q62.920-62.130 62.685-61.994Q62.451-61.857 62.313-61.623Q62.174-61.389 62.174-61.115L62.174-59.755Q62.174-59.618 62.325-59.582Q62.475-59.546 62.701-59.546L62.701-59.266M65.394-60.801Q65.394-61.122 65.519-61.411Q65.644-61.700 65.869-61.923Q66.095-62.147 66.391-62.267Q66.686-62.387 67.004-62.387Q67.332-62.387 67.594-62.287Q67.855-62.188 68.031-62.006Q68.207-61.823 68.301-61.565Q68.395-61.307 68.395-60.975Q68.395-60.883 68.313-60.862L66.057-60.862L66.057-60.801Q66.057-60.213 66.341-59.830Q66.625-59.447 67.192-59.447Q67.513-59.447 67.782-59.640Q68.050-59.833 68.139-60.148Q68.146-60.189 68.221-60.203L68.313-60.203Q68.395-60.179 68.395-60.107Q68.395-60.100 68.388-60.073Q68.276-59.676 67.905-59.437Q67.534-59.198 67.110-59.198Q66.672-59.198 66.273-59.406Q65.873-59.615 65.633-59.982Q65.394-60.349 65.394-60.801M66.064-61.071L67.879-61.071Q67.879-61.348 67.782-61.600Q67.684-61.853 67.486-62.009Q67.288-62.164 67.004-62.164Q66.727-62.164 66.514-62.006Q66.300-61.847 66.182-61.592Q66.064-61.337 66.064-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M71.688-59.273L71.688-60.336Q71.688-60.360 71.716-60.387Q71.743-60.414 71.767-60.414L71.876-60.414Q71.941-60.414 71.955-60.356Q72.051-59.922 72.297-59.671Q72.543-59.420 72.957-59.420Q73.298-59.420 73.551-59.553Q73.804-59.686 73.804-59.994Q73.804-60.151 73.710-60.266Q73.616-60.380 73.478-60.449Q73.339-60.517 73.172-60.555L72.591-60.654Q72.235-60.722 71.962-60.943Q71.688-61.163 71.688-61.505Q71.688-61.754 71.800-61.929Q71.911-62.103 72.097-62.202Q72.283-62.301 72.499-62.344Q72.714-62.387 72.957-62.387Q73.370-62.387 73.650-62.205L73.866-62.380Q73.876-62.383 73.883-62.385Q73.890-62.387 73.900-62.387L73.951-62.387Q73.978-62.387 74.002-62.363Q74.026-62.339 74.026-62.311L74.026-61.464Q74.026-61.443 74.002-61.416Q73.978-61.389 73.951-61.389L73.838-61.389Q73.811-61.389 73.785-61.414Q73.760-61.440 73.760-61.464Q73.760-61.700 73.654-61.864Q73.548-62.028 73.365-62.110Q73.182-62.192 72.950-62.192Q72.622-62.192 72.365-62.089Q72.109-61.987 72.109-61.710Q72.109-61.515 72.292-61.406Q72.475-61.296 72.704-61.255L73.278-61.149Q73.524-61.101 73.738-60.973Q73.951-60.845 74.088-60.642Q74.225-60.438 74.225-60.189Q74.225-59.676 73.859-59.437Q73.493-59.198 72.957-59.198Q72.461-59.198 72.129-59.492L71.863-59.218Q71.842-59.198 71.815-59.198L71.767-59.198Q71.743-59.198 71.716-59.225Q71.688-59.252 71.688-59.273M75.380-60.107L75.380-62.004L74.741-62.004L74.741-62.226Q75.059-62.226 75.276-62.436Q75.493-62.646 75.593-62.956Q75.694-63.265 75.694-63.573L75.961-63.573L75.961-62.284L77.038-62.284L77.038-62.004L75.961-62.004L75.961-60.120Q75.961-59.844 76.065-59.645Q76.169-59.447 76.429-59.447Q76.586-59.447 76.692-59.551Q76.798-59.656 76.848-59.809Q76.897-59.963 76.897-60.120L76.897-60.534L77.164-60.534L77.164-60.107Q77.164-59.881 77.065-59.671Q76.966-59.461 76.781-59.329Q76.597-59.198 76.368-59.198Q75.930-59.198 75.655-59.435Q75.380-59.673 75.380-60.107M77.933-60.749Q77.933-61.091 78.068-61.390Q78.203-61.689 78.442-61.913Q78.682-62.137 78.999-62.262Q79.317-62.387 79.649-62.387Q80.093-62.387 80.493-62.171Q80.893-61.956 81.127-61.578Q81.361-61.201 81.361-60.749Q81.361-60.408 81.219-60.124Q81.078-59.840 80.833-59.633Q80.589-59.427 80.280-59.312Q79.970-59.198 79.649-59.198Q79.218-59.198 78.817-59.399Q78.415-59.601 78.174-59.953Q77.933-60.305 77.933-60.749M79.649-59.447Q80.250-59.447 80.474-59.825Q80.698-60.203 80.698-60.835Q80.698-61.447 80.464-61.806Q80.230-62.164 79.649-62.164Q78.596-62.164 78.596-60.835Q78.596-60.203 78.822-59.825Q79.047-59.447 79.649-59.447M83.600-57.909L81.970-57.909L81.970-58.189Q82.199-58.189 82.347-58.224Q82.496-58.258 82.496-58.398L82.496-61.744Q82.496-61.915 82.359-61.956Q82.223-61.997 81.970-61.997L81.970-62.277L83.050-62.352L83.050-61.946Q83.272-62.147 83.559-62.250Q83.846-62.352 84.154-62.352Q84.581-62.352 84.945-62.139Q85.309-61.925 85.523-61.561Q85.736-61.197 85.736-60.777Q85.736-60.332 85.497-59.968Q85.258-59.604 84.865-59.401Q84.472-59.198 84.027-59.198Q83.761-59.198 83.513-59.298Q83.265-59.399 83.077-59.580L83.077-58.398Q83.077-58.261 83.226-58.225Q83.374-58.189 83.600-58.189L83.600-57.909M83.077-61.597L83.077-59.987Q83.210-59.734 83.453-59.577Q83.696-59.420 83.973-59.420Q84.301-59.420 84.554-59.621Q84.807-59.823 84.940-60.141Q85.073-60.459 85.073-60.777Q85.073-61.006 85.008-61.235Q84.943-61.464 84.815-61.662Q84.687-61.860 84.492-61.980Q84.297-62.099 84.065-62.099Q83.771-62.099 83.503-61.970Q83.234-61.840 83.077-61.597M86.372-59.273L86.372-60.336Q86.372-60.360 86.399-60.387Q86.427-60.414 86.451-60.414L86.560-60.414Q86.625-60.414 86.639-60.356Q86.734-59.922 86.980-59.671Q87.227-59.420 87.640-59.420Q87.982-59.420 88.235-59.553Q88.488-59.686 88.488-59.994Q88.488-60.151 88.394-60.266Q88.300-60.380 88.161-60.449Q88.023-60.517 87.855-60.555L87.274-60.654Q86.919-60.722 86.645-60.943Q86.372-61.163 86.372-61.505Q86.372-61.754 86.483-61.929Q86.594-62.103 86.780-62.202Q86.967-62.301 87.182-62.344Q87.397-62.387 87.640-62.387Q88.054-62.387 88.334-62.205L88.549-62.380Q88.560-62.383 88.566-62.385Q88.573-62.387 88.583-62.387L88.635-62.387Q88.662-62.387 88.686-62.363Q88.710-62.339 88.710-62.311L88.710-61.464Q88.710-61.443 88.686-61.416Q88.662-61.389 88.635-61.389L88.522-61.389Q88.495-61.389 88.469-61.414Q88.443-61.440 88.443-61.464Q88.443-61.700 88.337-61.864Q88.231-62.028 88.049-62.110Q87.866-62.192 87.633-62.192Q87.305-62.192 87.049-62.089Q86.792-61.987 86.792-61.710Q86.792-61.515 86.975-61.406Q87.158-61.296 87.387-61.255L87.961-61.149Q88.207-61.101 88.421-60.973Q88.635-60.845 88.771-60.642Q88.908-60.438 88.908-60.189Q88.908-59.676 88.542-59.437Q88.177-59.198 87.640-59.198Q87.145-59.198 86.813-59.492L86.546-59.218Q86.526-59.198 86.499-59.198L86.451-59.198Q86.427-59.198 86.399-59.225Q86.372-59.252 86.372-59.273\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 23.09)\">\u003Cpath d=\"M92.246-60.777Q92.246-61.105 92.381-61.406Q92.516-61.706 92.752-61.927Q92.988-62.147 93.292-62.267Q93.597-62.387 93.921-62.387Q94.427-62.387 94.776-62.284Q95.124-62.182 95.124-61.806Q95.124-61.659 95.027-61.558Q94.930-61.457 94.783-61.457Q94.629-61.457 94.530-61.556Q94.431-61.655 94.431-61.806Q94.431-61.994 94.571-62.086Q94.369-62.137 93.928-62.137Q93.573-62.137 93.344-61.941Q93.115-61.744 93.014-61.435Q92.913-61.125 92.913-60.777Q92.913-60.428 93.039-60.122Q93.166-59.816 93.421-59.632Q93.675-59.447 94.031-59.447Q94.253-59.447 94.437-59.531Q94.622-59.615 94.757-59.770Q94.892-59.926 94.950-60.134Q94.964-60.189 95.018-60.189L95.131-60.189Q95.162-60.189 95.184-60.165Q95.206-60.141 95.206-60.107L95.206-60.086Q95.121-59.799 94.933-59.601Q94.745-59.403 94.480-59.300Q94.215-59.198 93.921-59.198Q93.491-59.198 93.103-59.404Q92.715-59.611 92.481-59.974Q92.246-60.336 92.246-60.777M97.462-59.266L95.859-59.266L95.859-59.546Q96.085-59.546 96.234-59.580Q96.382-59.615 96.382-59.755L96.382-63.374Q96.382-63.644 96.275-63.706Q96.167-63.767 95.859-63.767L95.859-64.048L96.936-64.123L96.936-59.755Q96.936-59.618 97.086-59.582Q97.237-59.546 97.462-59.546L97.462-59.266M98.016-60.801Q98.016-61.122 98.141-61.411Q98.265-61.700 98.491-61.923Q98.717-62.147 99.012-62.267Q99.308-62.387 99.626-62.387Q99.954-62.387 100.215-62.287Q100.477-62.188 100.653-62.006Q100.829-61.823 100.923-61.565Q101.017-61.307 101.017-60.975Q101.017-60.883 100.935-60.862L98.679-60.862L98.679-60.801Q98.679-60.213 98.963-59.830Q99.246-59.447 99.814-59.447Q100.135-59.447 100.403-59.640Q100.672-59.833 100.761-60.148Q100.767-60.189 100.843-60.203L100.935-60.203Q101.017-60.179 101.017-60.107Q101.017-60.100 101.010-60.073Q100.897-59.676 100.526-59.437Q100.156-59.198 99.732-59.198Q99.294-59.198 98.894-59.406Q98.495-59.615 98.255-59.982Q98.016-60.349 98.016-60.801M98.686-61.071L100.501-61.071Q100.501-61.348 100.403-61.600Q100.306-61.853 100.108-62.009Q99.910-62.164 99.626-62.164Q99.349-62.164 99.135-62.006Q98.922-61.847 98.804-61.592Q98.686-61.337 98.686-61.071M101.663-59.994Q101.663-60.326 101.887-60.553Q102.111-60.780 102.454-60.908Q102.798-61.037 103.170-61.089Q103.543-61.142 103.847-61.142L103.847-61.395Q103.847-61.600 103.739-61.780Q103.632-61.959 103.451-62.062Q103.269-62.164 103.061-62.164Q102.654-62.164 102.418-62.072Q102.507-62.035 102.553-61.951Q102.599-61.867 102.599-61.765Q102.599-61.669 102.553-61.590Q102.507-61.512 102.427-61.467Q102.347-61.423 102.258-61.423Q102.107-61.423 102.006-61.520Q101.906-61.618 101.906-61.765Q101.906-62.387 103.061-62.387Q103.273-62.387 103.522-62.323Q103.772-62.260 103.974-62.141Q104.175-62.021 104.302-61.836Q104.428-61.652 104.428-61.409L104.428-59.833Q104.428-59.717 104.490-59.621Q104.551-59.526 104.664-59.526Q104.773-59.526 104.838-59.620Q104.903-59.714 104.903-59.833L104.903-60.281L105.170-60.281L105.170-59.833Q105.170-59.563 104.942-59.398Q104.715-59.232 104.435-59.232Q104.226-59.232 104.090-59.386Q103.953-59.539 103.929-59.755Q103.782-59.488 103.500-59.343Q103.218-59.198 102.893-59.198Q102.617-59.198 102.333-59.273Q102.049-59.348 101.856-59.527Q101.663-59.707 101.663-59.994M102.278-59.994Q102.278-59.820 102.379-59.690Q102.480-59.560 102.635-59.490Q102.791-59.420 102.955-59.420Q103.174-59.420 103.382-59.517Q103.591-59.615 103.719-59.796Q103.847-59.977 103.847-60.203L103.847-60.931Q103.522-60.931 103.157-60.840Q102.791-60.749 102.535-60.537Q102.278-60.326 102.278-59.994M107.268-59.266L105.635-59.266L105.635-59.546Q105.864-59.546 106.012-59.580Q106.161-59.615 106.161-59.755L106.161-61.604Q106.161-61.874 106.053-61.935Q105.946-61.997 105.635-61.997L105.635-62.277L106.694-62.352L106.694-61.703Q106.865-62.011 107.169-62.182Q107.474-62.352 107.819-62.352Q108.325-62.352 108.608-62.129Q108.892-61.905 108.892-61.409L108.892-59.755Q108.892-59.618 109.041-59.582Q109.189-59.546 109.415-59.546L109.415-59.266L107.785-59.266L107.785-59.546Q108.014-59.546 108.162-59.580Q108.311-59.615 108.311-59.755L108.311-61.395Q108.311-61.730 108.191-61.930Q108.072-62.130 107.757-62.130Q107.487-62.130 107.253-61.994Q107.019-61.857 106.880-61.623Q106.742-61.389 106.742-61.115L106.742-59.755Q106.742-59.618 106.892-59.582Q107.043-59.546 107.268-59.546L107.268-59.266M111.671-59.266L110.068-59.266L110.068-59.546Q110.293-59.546 110.442-59.580Q110.591-59.615 110.591-59.755L110.591-63.374Q110.591-63.644 110.483-63.706Q110.375-63.767 110.068-63.767L110.068-64.048L111.144-64.123L111.144-59.755Q111.144-59.618 111.295-59.582Q111.445-59.546 111.671-59.546L111.671-59.266M112.600-58.131Q112.730-58.063 112.867-58.063Q113.038-58.063 113.188-58.152Q113.339-58.241 113.450-58.386Q113.561-58.531 113.640-58.699L113.903-59.266L112.734-61.792Q112.659-61.939 112.529-61.971Q112.399-62.004 112.166-62.004L112.166-62.284L113.687-62.284L113.687-62.004Q113.339-62.004 113.339-61.857Q113.342-61.836 113.344-61.819Q113.346-61.802 113.346-61.792L114.203-59.933L114.976-61.604Q115.010-61.672 115.010-61.751Q115.010-61.864 114.926-61.934Q114.843-62.004 114.730-62.004L114.730-62.284L115.926-62.284L115.926-62.004Q115.707-62.004 115.535-61.900Q115.362-61.795 115.270-61.604L113.933-58.699Q113.763-58.329 113.493-58.083Q113.223-57.837 112.867-57.837Q112.597-57.837 112.378-58.003Q112.160-58.169 112.160-58.432Q112.160-58.569 112.252-58.658Q112.344-58.746 112.484-58.746Q112.621-58.746 112.710-58.658Q112.799-58.569 112.799-58.432Q112.799-58.329 112.746-58.251Q112.693-58.172 112.600-58.131\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-27.4h321.516\"\u002F>\u003Cg transform=\"translate(15.015 45.124)\">\u003Cpath d=\"M-50.947-59.504L-50.947-59.594Q-50.888-59.805-50.697-59.825L-50.474-59.825L-49.521-64.008Q-49.497-64.125-49.402-64.200Q-49.306-64.274-49.193-64.274L-48.919-64.274Q-48.806-64.274-48.710-64.198Q-48.614-64.121-48.591-64.008L-47.642-59.825L-47.415-59.825Q-47.208-59.801-47.169-59.594L-47.169-59.504Q-47.220-59.289-47.415-59.266L-48.497-59.266Q-48.693-59.289-48.743-59.504L-48.743-59.594Q-48.693-59.801-48.497-59.825L-48.298-59.825Q-48.427-60.391-48.450-60.473L-49.665-60.473Q-49.708-60.289-49.818-59.825L-49.618-59.825Q-49.419-59.801-49.368-59.594L-49.368-59.504Q-49.419-59.289-49.618-59.266L-50.697-59.266Q-50.904-59.289-50.947-59.504M-49.544-61.036L-48.568-61.036Q-49.048-63.168-49.048-63.512L-49.056-63.512Q-49.056-63.328-49.197-62.645Q-49.337-61.961-49.544-61.036M-46.794-59.504L-46.794-59.594Q-46.755-59.801-46.548-59.825L-46.298-59.825L-46.298-63.594L-46.548-63.594Q-46.755-63.618-46.794-63.832L-46.794-63.922Q-46.755-64.129-46.548-64.153L-44.732-64.153Q-44.181-64.153-43.786-63.760Q-43.392-63.368-43.197-62.789Q-43.001-62.211-43.001-61.664Q-43.001-61.137-43.200-60.573Q-43.400-60.008-43.792-59.637Q-44.185-59.266-44.732-59.266L-46.548-59.266Q-46.755-59.289-46.794-59.504M-45.657-63.594L-45.657-59.825L-44.892-59.825Q-44.298-59.825-43.970-60.420Q-43.642-61.016-43.642-61.664Q-43.642-62.071-43.777-62.520Q-43.911-62.969-44.197-63.282Q-44.482-63.594-44.892-63.594L-45.657-63.594M-41.111-59.266L-42.294-59.266Q-42.489-59.289-42.540-59.504L-42.540-59.594Q-42.489-59.801-42.294-59.825L-42.021-59.825L-42.021-63.594L-42.294-63.594Q-42.489-63.618-42.540-63.832L-42.540-63.922Q-42.489-64.129-42.294-64.153L-40.724-64.153Q-40.337-64.153-39.982-63.983Q-39.626-63.813-39.404-63.502Q-39.181-63.192-39.181-62.793Q-39.181-62.567-39.263-62.358Q-39.345-62.149-39.488-61.981Q-39.630-61.813-39.822-61.692Q-39.626-61.539-39.511-61.323Q-39.396-61.106-39.396-60.868L-39.396-60.289Q-39.396-59.746-39.197-59.746Q-39.150-59.746-39.124-59.875Q-39.099-60.004-39.099-60.106Q-39.048-60.313-38.853-60.336L-38.708-60.336Q-38.513-60.317-38.462-60.106L-38.462-60.051Q-38.462-59.719-38.667-59.453Q-38.872-59.188-39.189-59.188Q-39.603-59.188-39.820-59.495Q-40.036-59.801-40.036-60.235L-40.036-60.809Q-40.036-61.098-40.245-61.266Q-40.454-61.434-40.739-61.434L-41.380-61.434L-41.380-59.825L-41.111-59.825Q-40.911-59.801-40.861-59.594L-40.861-59.504Q-40.911-59.289-41.111-59.266M-41.380-63.594L-41.380-61.993L-40.806-61.993Q-40.572-61.993-40.345-62.088Q-40.118-62.184-39.970-62.368Q-39.822-62.551-39.822-62.793Q-39.822-63.036-39.970-63.219Q-40.118-63.403-40.343-63.498Q-40.568-63.594-40.806-63.594\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M-49.246-59.266L-50.798-59.266L-50.798-59.546Q-50.572-59.546-50.423-59.580Q-50.275-59.615-50.275-59.755L-50.275-61.604Q-50.275-61.792-50.323-61.876Q-50.370-61.959-50.468-61.978Q-50.565-61.997-50.777-61.997L-50.777-62.277L-49.721-62.352L-49.721-59.755Q-49.721-59.615-49.589-59.580Q-49.458-59.546-49.246-59.546L-49.246-59.266M-50.517-63.573Q-50.517-63.744-50.394-63.863Q-50.271-63.983-50.100-63.983Q-49.933-63.983-49.810-63.863Q-49.687-63.744-49.687-63.573Q-49.687-63.398-49.810-63.275Q-49.933-63.152-50.100-63.152Q-50.271-63.152-50.394-63.275Q-50.517-63.398-50.517-63.573M-46.918-59.266L-48.552-59.266L-48.552-59.546Q-48.323-59.546-48.174-59.580Q-48.026-59.615-48.026-59.755L-48.026-61.604Q-48.026-61.874-48.133-61.935Q-48.241-61.997-48.552-61.997L-48.552-62.277L-47.492-62.352L-47.492-61.703Q-47.322-62.011-47.017-62.182Q-46.713-62.352-46.368-62.352Q-45.968-62.352-45.691-62.212Q-45.414-62.072-45.329-61.724Q-45.161-62.017-44.862-62.185Q-44.563-62.352-44.218-62.352Q-43.712-62.352-43.428-62.129Q-43.145-61.905-43.145-61.409L-43.145-59.755Q-43.145-59.618-42.996-59.582Q-42.847-59.546-42.622-59.546L-42.622-59.266L-44.252-59.266L-44.252-59.546Q-44.027-59.546-43.876-59.582Q-43.726-59.618-43.726-59.755L-43.726-61.395Q-43.726-61.730-43.845-61.930Q-43.965-62.130-44.280-62.130Q-44.550-62.130-44.784-61.994Q-45.018-61.857-45.156-61.623Q-45.295-61.389-45.295-61.115L-45.295-59.755Q-45.295-59.618-45.146-59.582Q-44.997-59.546-44.772-59.546L-44.772-59.266L-46.402-59.266L-46.402-59.546Q-46.173-59.546-46.024-59.580Q-45.876-59.615-45.876-59.755L-45.876-61.395Q-45.876-61.730-45.995-61.930Q-46.115-62.130-46.429-62.130Q-46.699-62.130-46.934-61.994Q-47.168-61.857-47.306-61.623Q-47.445-61.389-47.445-61.115L-47.445-59.755Q-47.445-59.618-47.294-59.582Q-47.144-59.546-46.918-59.546L-46.918-59.266M-42.075-60.801Q-42.075-61.122-41.950-61.411Q-41.825-61.700-41.600-61.923Q-41.374-62.147-41.079-62.267Q-40.783-62.387-40.465-62.387Q-40.137-62.387-39.875-62.287Q-39.614-62.188-39.438-62.006Q-39.262-61.823-39.168-61.565Q-39.074-61.307-39.074-60.975Q-39.074-60.883-39.156-60.862L-41.412-60.862L-41.412-60.801Q-41.412-60.213-41.128-59.830Q-40.844-59.447-40.277-59.447Q-39.956-59.447-39.687-59.640Q-39.419-59.833-39.330-60.148Q-39.323-60.189-39.248-60.203L-39.156-60.203Q-39.074-60.179-39.074-60.107Q-39.074-60.100-39.081-60.073Q-39.194-59.676-39.564-59.437Q-39.935-59.198-40.359-59.198Q-40.797-59.198-41.197-59.406Q-41.596-59.615-41.836-59.982Q-42.075-60.349-42.075-60.801M-41.405-61.071L-39.590-61.071Q-39.590-61.348-39.687-61.600Q-39.785-61.853-39.983-62.009Q-40.181-62.164-40.465-62.164Q-40.742-62.164-40.956-62.006Q-41.169-61.847-41.287-61.592Q-41.405-61.337-41.405-61.071M-36.804-59.266L-38.438-59.266L-38.438-59.546Q-38.209-59.546-38.061-59.580Q-37.912-59.615-37.912-59.755L-37.912-61.604Q-37.912-61.874-38.020-61.935Q-38.127-61.997-38.438-61.997L-38.438-62.277L-37.379-62.352L-37.379-61.703Q-37.208-62.011-36.904-62.182Q-36.599-62.352-36.254-62.352Q-35.854-62.352-35.577-62.212Q-35.301-62.072-35.215-61.724Q-35.048-62.017-34.749-62.185Q-34.449-62.352-34.104-62.352Q-33.598-62.352-33.315-62.129Q-33.031-61.905-33.031-61.409L-33.031-59.755Q-33.031-59.618-32.882-59.582Q-32.734-59.546-32.508-59.546L-32.508-59.266L-34.138-59.266L-34.138-59.546Q-33.913-59.546-33.762-59.582Q-33.612-59.618-33.612-59.755L-33.612-61.395Q-33.612-61.730-33.732-61.930Q-33.851-62.130-34.166-62.130Q-34.436-62.130-34.670-61.994Q-34.904-61.857-35.042-61.623Q-35.181-61.389-35.181-61.115L-35.181-59.755Q-35.181-59.618-35.032-59.582Q-34.884-59.546-34.658-59.546L-34.658-59.266L-36.288-59.266L-36.288-59.546Q-36.059-59.546-35.911-59.580Q-35.762-59.615-35.762-59.755L-35.762-61.395Q-35.762-61.730-35.882-61.930Q-36.001-62.130-36.316-62.130Q-36.586-62.130-36.820-61.994Q-37.054-61.857-37.192-61.623Q-37.331-61.389-37.331-61.115L-37.331-59.755Q-37.331-59.618-37.180-59.582Q-37.030-59.546-36.804-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath d=\"M14.472-15.237h2.392v.4h-2.392z\"\u002F>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M-29.076-60.801Q-29.076-61.122-28.951-61.411Q-28.826-61.700-28.600-61.923Q-28.375-62.147-28.079-62.267Q-27.784-62.387-27.466-62.387Q-27.138-62.387-26.876-62.287Q-26.615-62.188-26.439-62.006Q-26.263-61.823-26.169-61.565Q-26.075-61.307-26.075-60.975Q-26.075-60.883-26.157-60.862L-28.412-60.862L-28.412-60.801Q-28.412-60.213-28.129-59.830Q-27.845-59.447-27.278-59.447Q-26.956-59.447-26.688-59.640Q-26.420-59.833-26.331-60.148Q-26.324-60.189-26.249-60.203L-26.157-60.203Q-26.075-60.179-26.075-60.107Q-26.075-60.100-26.081-60.073Q-26.194-59.676-26.565-59.437Q-26.936-59.198-27.360-59.198Q-27.797-59.198-28.197-59.406Q-28.597-59.615-28.836-59.982Q-29.076-60.349-29.076-60.801M-28.406-61.071L-26.591-61.071Q-26.591-61.348-26.688-61.600Q-26.786-61.853-26.984-62.009Q-27.182-62.164-27.466-62.164Q-27.743-62.164-27.956-62.006Q-28.170-61.847-28.288-61.592Q-28.406-61.337-28.406-61.071M-23.737-59.266L-25.473-59.266L-25.473-59.546Q-25.244-59.546-25.095-59.580Q-24.947-59.615-24.947-59.755L-24.947-61.604Q-24.947-61.874-25.054-61.935Q-25.162-61.997-25.473-61.997L-25.473-62.277L-24.444-62.352L-24.444-61.645Q-24.314-61.953-24.072-62.152Q-23.829-62.352-23.511-62.352Q-23.292-62.352-23.121-62.228Q-22.951-62.103-22.951-61.891Q-22.951-61.754-23.050-61.655Q-23.149-61.556-23.282-61.556Q-23.419-61.556-23.518-61.655Q-23.617-61.754-23.617-61.891Q-23.617-62.031-23.518-62.130Q-23.808-62.130-24.008-61.934Q-24.208-61.737-24.301-61.443Q-24.393-61.149-24.393-60.869L-24.393-59.755Q-24.393-59.546-23.737-59.546L-23.737-59.266M-20.616-59.266L-22.352-59.266L-22.352-59.546Q-22.123-59.546-21.975-59.580Q-21.826-59.615-21.826-59.755L-21.826-61.604Q-21.826-61.874-21.934-61.935Q-22.041-61.997-22.352-61.997L-22.352-62.277L-21.324-62.352L-21.324-61.645Q-21.194-61.953-20.951-62.152Q-20.708-62.352-20.391-62.352Q-20.172-62.352-20.001-62.228Q-19.830-62.103-19.830-61.891Q-19.830-61.754-19.929-61.655Q-20.028-61.556-20.162-61.556Q-20.298-61.556-20.397-61.655Q-20.496-61.754-20.496-61.891Q-20.496-62.031-20.397-62.130Q-20.688-62.130-20.888-61.934Q-21.088-61.737-21.180-61.443Q-21.272-61.149-21.272-60.869L-21.272-59.755Q-21.272-59.546-20.616-59.546L-20.616-59.266M-19.287-60.749Q-19.287-61.091-19.151-61.390Q-19.016-61.689-18.777-61.913Q-18.538-62.137-18.220-62.262Q-17.902-62.387-17.571-62.387Q-17.126-62.387-16.726-62.171Q-16.327-61.956-16.092-61.578Q-15.858-61.201-15.858-60.749Q-15.858-60.408-16-60.124Q-16.142-59.840-16.386-59.633Q-16.631-59.427-16.940-59.312Q-17.249-59.198-17.571-59.198Q-18.001-59.198-18.403-59.399Q-18.805-59.601-19.046-59.953Q-19.287-60.305-19.287-60.749M-17.571-59.447Q-16.969-59.447-16.745-59.825Q-16.521-60.203-16.521-60.835Q-16.521-61.447-16.755-61.806Q-16.990-62.164-17.571-62.164Q-18.623-62.164-18.623-60.835Q-18.623-60.203-18.398-59.825Q-18.172-59.447-17.571-59.447M-13.514-59.266L-15.250-59.266L-15.250-59.546Q-15.021-59.546-14.872-59.580Q-14.724-59.615-14.724-59.755L-14.724-61.604Q-14.724-61.874-14.831-61.935Q-14.939-61.997-15.250-61.997L-15.250-62.277L-14.221-62.352L-14.221-61.645Q-14.091-61.953-13.849-62.152Q-13.606-62.352-13.288-62.352Q-13.069-62.352-12.898-62.228Q-12.727-62.103-12.727-61.891Q-12.727-61.754-12.827-61.655Q-12.926-61.556-13.059-61.556Q-13.196-61.556-13.295-61.655Q-13.394-61.754-13.394-61.891Q-13.394-62.031-13.295-62.130Q-13.585-62.130-13.785-61.934Q-13.985-61.737-14.078-61.443Q-14.170-61.149-14.170-60.869L-14.170-59.755Q-14.170-59.546-13.514-59.546L-13.514-59.266M-11.743-59.686Q-11.743-59.854-11.620-59.977Q-11.497-60.100-11.323-60.100Q-11.155-60.100-11.032-59.977Q-10.909-59.854-10.909-59.686Q-10.909-59.512-11.032-59.389Q-11.155-59.266-11.323-59.266Q-11.497-59.266-11.620-59.389Q-11.743-59.512-11.743-59.686M-11.743-61.870Q-11.743-62.038-11.620-62.161Q-11.497-62.284-11.323-62.284Q-11.155-62.284-11.032-62.161Q-10.909-62.038-10.909-61.870Q-10.909-61.696-11.032-61.573Q-11.155-61.450-11.323-61.450Q-11.497-61.450-11.620-61.573Q-11.743-61.696-11.743-61.870\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M-4.086-59.266L-6.219-59.266L-6.219-59.546Q-5.498-59.546-5.498-59.755L-5.498-63.556Q-5.498-63.767-6.219-63.767L-6.219-64.048L-3.553-64.048Q-3.143-64.048-2.722-63.894Q-2.302-63.740-2.018-63.436Q-1.735-63.132-1.735-62.718Q-1.735-62.400-1.902-62.154Q-2.070-61.908-2.346-61.742Q-2.623-61.577-2.945-61.493Q-3.266-61.409-3.553-61.409L-4.807-61.409L-4.807-59.755Q-4.807-59.546-4.086-59.546L-4.086-59.266M-4.835-63.556L-4.835-61.659L-3.748-61.659Q-3.139-61.659-2.825-61.896Q-2.510-62.134-2.510-62.718Q-2.510-63.111-2.656-63.345Q-2.801-63.579-3.073-63.673Q-3.344-63.767-3.748-63.767L-4.469-63.767Q-4.657-63.767-4.746-63.733Q-4.835-63.699-4.835-63.556M-0.754-61.659Q-0.754-62.185-0.537-62.653Q-0.320-63.121 0.063-63.467Q0.446-63.812 0.930-64Q1.413-64.188 1.943-64.188Q2.346-64.188 2.711-64.031Q3.075-63.873 3.358-63.579L3.782-64.161Q3.816-64.188 3.840-64.188L3.888-64.188Q3.919-64.188 3.943-64.164Q3.967-64.140 3.967-64.109L3.967-62.246Q3.967-62.223 3.941-62.197Q3.915-62.171 3.888-62.171L3.762-62.171Q3.700-62.171 3.686-62.246Q3.656-62.561 3.521-62.865Q3.386-63.169 3.170-63.403Q2.955-63.638 2.666-63.773Q2.377-63.908 2.049-63.908Q1.407-63.908 0.949-63.614Q0.491-63.320 0.258-62.807Q0.026-62.294 0.026-61.659Q0.026-61.187 0.156-60.778Q0.285-60.370 0.545-60.057Q0.805-59.745 1.184-59.575Q1.564-59.406 2.056-59.406Q2.384-59.406 2.678-59.522Q2.972-59.639 3.206-59.854Q3.440-60.069 3.570-60.358Q3.700-60.647 3.700-60.975Q3.700-61.002 3.727-61.026Q3.755-61.050 3.775-61.050L3.888-61.050Q3.926-61.050 3.946-61.025Q3.967-60.999 3.967-60.961Q3.967-60.565 3.801-60.228Q3.635-59.891 3.348-59.644Q3.061-59.396 2.692-59.261Q2.323-59.126 1.943-59.126Q1.424-59.126 0.931-59.316Q0.439-59.505 0.060-59.849Q-0.320-60.192-0.537-60.661Q-0.754-61.129-0.754-61.659\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M7.439-60.749Q7.439-61.091 7.574-61.390Q7.709-61.689 7.949-61.913Q8.188-62.137 8.506-62.262Q8.824-62.387 9.155-62.387Q9.600-62.387 9.999-62.171Q10.399-61.956 10.634-61.578Q10.868-61.201 10.868-60.749Q10.868-60.408 10.726-60.124Q10.584-59.840 10.340-59.633Q10.095-59.427 9.786-59.312Q9.477-59.198 9.155-59.198Q8.725-59.198 8.323-59.399Q7.921-59.601 7.680-59.953Q7.439-60.305 7.439-60.749M9.155-59.447Q9.757-59.447 9.981-59.825Q10.205-60.203 10.205-60.835Q10.205-61.447 9.970-61.806Q9.736-62.164 9.155-62.164Q8.103-62.164 8.103-60.835Q8.103-60.203 8.328-59.825Q8.554-59.447 9.155-59.447M12.037-60.100L12.037-61.604Q12.037-61.874 11.929-61.935Q11.821-61.997 11.510-61.997L11.510-62.277L12.618-62.352L12.618-60.120L12.618-60.100Q12.618-59.820 12.669-59.676Q12.720-59.533 12.862-59.476Q13.004-59.420 13.291-59.420Q13.544-59.420 13.749-59.560Q13.954-59.700 14.070-59.926Q14.187-60.151 14.187-60.401L14.187-61.604Q14.187-61.874 14.079-61.935Q13.971-61.997 13.660-61.997L13.660-62.277L14.768-62.352L14.768-59.939Q14.768-59.748 14.821-59.666Q14.874-59.584 14.974-59.565Q15.075-59.546 15.291-59.546L15.291-59.266L14.214-59.198L14.214-59.762Q14.104-59.580 13.959-59.457Q13.814-59.334 13.628-59.266Q13.441-59.198 13.240-59.198Q12.037-59.198 12.037-60.100M16.405-60.107L16.405-62.004L15.766-62.004L15.766-62.226Q16.083-62.226 16.301-62.436Q16.518-62.646 16.618-62.956Q16.719-63.265 16.719-63.573L16.986-63.573L16.986-62.284L18.062-62.284L18.062-62.004L16.986-62.004L16.986-60.120Q16.986-59.844 17.090-59.645Q17.194-59.447 17.454-59.447Q17.611-59.447 17.717-59.551Q17.823-59.656 17.873-59.809Q17.922-59.963 17.922-60.120L17.922-60.534L18.189-60.534L18.189-60.107Q18.189-59.881 18.090-59.671Q17.991-59.461 17.806-59.329Q17.622-59.198 17.393-59.198Q16.955-59.198 16.680-59.435Q16.405-59.673 16.405-60.107M18.999-59.273L18.999-60.336Q18.999-60.360 19.026-60.387Q19.054-60.414 19.078-60.414L19.187-60.414Q19.252-60.414 19.266-60.356Q19.361-59.922 19.607-59.671Q19.854-59.420 20.267-59.420Q20.609-59.420 20.862-59.553Q21.115-59.686 21.115-59.994Q21.115-60.151 21.021-60.266Q20.927-60.380 20.788-60.449Q20.650-60.517 20.482-60.555L19.901-60.654Q19.546-60.722 19.272-60.943Q18.999-61.163 18.999-61.505Q18.999-61.754 19.110-61.929Q19.221-62.103 19.407-62.202Q19.594-62.301 19.809-62.344Q20.024-62.387 20.267-62.387Q20.681-62.387 20.961-62.205L21.176-62.380Q21.187-62.383 21.193-62.385Q21.200-62.387 21.210-62.387L21.262-62.387Q21.289-62.387 21.313-62.363Q21.337-62.339 21.337-62.311L21.337-61.464Q21.337-61.443 21.313-61.416Q21.289-61.389 21.262-61.389L21.149-61.389Q21.122-61.389 21.096-61.414Q21.070-61.440 21.070-61.464Q21.070-61.700 20.964-61.864Q20.858-62.028 20.676-62.110Q20.493-62.192 20.260-62.192Q19.932-62.192 19.676-62.089Q19.419-61.987 19.419-61.710Q19.419-61.515 19.602-61.406Q19.785-61.296 20.014-61.255L20.588-61.149Q20.834-61.101 21.048-60.973Q21.262-60.845 21.398-60.642Q21.535-60.438 21.535-60.189Q21.535-59.676 21.169-59.437Q20.804-59.198 20.267-59.198Q19.771-59.198 19.440-59.492L19.173-59.218Q19.153-59.198 19.125-59.198L19.078-59.198Q19.054-59.198 19.026-59.225Q18.999-59.252 18.999-59.273M23.781-59.266L22.229-59.266L22.229-59.546Q22.455-59.546 22.603-59.580Q22.752-59.615 22.752-59.755L22.752-61.604Q22.752-61.792 22.704-61.876Q22.656-61.959 22.559-61.978Q22.461-61.997 22.249-61.997L22.249-62.277L23.306-62.352L23.306-59.755Q23.306-59.615 23.437-59.580Q23.569-59.546 23.781-59.546L23.781-59.266M22.509-63.573Q22.509-63.744 22.632-63.863Q22.755-63.983 22.926-63.983Q23.094-63.983 23.217-63.863Q23.340-63.744 23.340-63.573Q23.340-63.398 23.217-63.275Q23.094-63.152 22.926-63.152Q22.755-63.152 22.632-63.275Q22.509-63.398 22.509-63.573M24.427-60.777Q24.427-61.115 24.567-61.406Q24.707-61.696 24.951-61.910Q25.196-62.123 25.500-62.238Q25.804-62.352 26.129-62.352Q26.399-62.352 26.662-62.253Q26.925-62.154 27.117-61.976L27.117-63.374Q27.117-63.644 27.009-63.706Q26.901-63.767 26.590-63.767L26.590-64.048L27.667-64.123L27.667-59.939Q27.667-59.751 27.722-59.668Q27.776-59.584 27.877-59.565Q27.978-59.546 28.193-59.546L28.193-59.266L27.086-59.198L27.086-59.615Q26.669-59.198 26.043-59.198Q25.613-59.198 25.240-59.410Q24.868-59.621 24.647-59.982Q24.427-60.343 24.427-60.777M26.102-59.420Q26.310-59.420 26.496-59.492Q26.683-59.563 26.836-59.700Q26.990-59.837 27.086-60.015L27.086-61.624Q27-61.771 26.855-61.891Q26.710-62.011 26.541-62.070Q26.372-62.130 26.190-62.130Q25.630-62.130 25.362-61.741Q25.093-61.351 25.093-60.770Q25.093-60.199 25.327-59.809Q25.562-59.420 26.102-59.420M28.802-60.801Q28.802-61.122 28.926-61.411Q29.051-61.700 29.277-61.923Q29.502-62.147 29.798-62.267Q30.094-62.387 30.412-62.387Q30.740-62.387 31.001-62.287Q31.263-62.188 31.439-62.006Q31.615-61.823 31.709-61.565Q31.803-61.307 31.803-60.975Q31.803-60.883 31.721-60.862L29.465-60.862L29.465-60.801Q29.465-60.213 29.749-59.830Q30.032-59.447 30.600-59.447Q30.921-59.447 31.189-59.640Q31.458-59.833 31.546-60.148Q31.553-60.189 31.628-60.203L31.721-60.203Q31.803-60.179 31.803-60.107Q31.803-60.100 31.796-60.073Q31.683-59.676 31.312-59.437Q30.941-59.198 30.518-59.198Q30.080-59.198 29.680-59.406Q29.280-59.615 29.041-59.982Q28.802-60.349 28.802-60.801M29.472-61.071L31.287-61.071Q31.287-61.348 31.189-61.600Q31.092-61.853 30.894-62.009Q30.695-62.164 30.412-62.164Q30.135-62.164 29.921-62.006Q29.708-61.847 29.590-61.592Q29.472-61.337 29.472-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M36.696-59.293L35.568-61.792Q35.496-61.939 35.366-61.971Q35.236-62.004 35.007-62.004L35.007-62.284L36.521-62.284L36.521-62.004Q36.169-62.004 36.169-61.857Q36.169-61.812 36.180-61.792L37.044-59.874L37.824-61.604Q37.858-61.672 37.858-61.751Q37.858-61.864 37.774-61.934Q37.690-62.004 37.571-62.004L37.571-62.284L38.767-62.284L38.767-62.004Q38.548-62.004 38.377-61.901Q38.207-61.799 38.118-61.604L37.082-59.293Q37.034-59.198 36.928-59.198L36.850-59.198Q36.744-59.198 36.696-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M38.936-59.994Q38.936-60.326 39.159-60.553Q39.383-60.780 39.727-60.908Q40.070-61.037 40.443-61.089Q40.815-61.142 41.120-61.142L41.120-61.395Q41.120-61.600 41.012-61.780Q40.904-61.959 40.723-62.062Q40.542-62.164 40.334-62.164Q39.927-62.164 39.691-62.072Q39.780-62.035 39.826-61.951Q39.872-61.867 39.872-61.765Q39.872-61.669 39.826-61.590Q39.780-61.512 39.699-61.467Q39.619-61.423 39.530-61.423Q39.380-61.423 39.279-61.520Q39.178-61.618 39.178-61.765Q39.178-62.387 40.334-62.387Q40.545-62.387 40.795-62.323Q41.044-62.260 41.246-62.141Q41.448-62.021 41.574-61.836Q41.701-61.652 41.701-61.409L41.701-59.833Q41.701-59.717 41.762-59.621Q41.824-59.526 41.937-59.526Q42.046-59.526 42.111-59.620Q42.176-59.714 42.176-59.833L42.176-60.281L42.442-60.281L42.442-59.833Q42.442-59.563 42.215-59.398Q41.988-59.232 41.708-59.232Q41.499-59.232 41.362-59.386Q41.226-59.539 41.202-59.755Q41.055-59.488 40.773-59.343Q40.491-59.198 40.166-59.198Q39.889-59.198 39.605-59.273Q39.322-59.348 39.129-59.527Q38.936-59.707 38.936-59.994M39.551-59.994Q39.551-59.820 39.652-59.690Q39.752-59.560 39.908-59.490Q40.063-59.420 40.228-59.420Q40.446-59.420 40.655-59.517Q40.863-59.615 40.991-59.796Q41.120-59.977 41.120-60.203L41.120-60.931Q40.795-60.931 40.429-60.840Q40.063-60.749 39.807-60.537Q39.551-60.326 39.551-59.994M44.527-59.266L42.924-59.266L42.924-59.546Q43.150-59.546 43.299-59.580Q43.447-59.615 43.447-59.755L43.447-63.374Q43.447-63.644 43.340-63.706Q43.232-63.767 42.924-63.767L42.924-64.048L44.001-64.123L44.001-59.755Q44.001-59.618 44.151-59.582Q44.302-59.546 44.527-59.546L44.527-59.266M46.739-59.266L45.187-59.266L45.187-59.546Q45.413-59.546 45.561-59.580Q45.710-59.615 45.710-59.755L45.710-61.604Q45.710-61.792 45.662-61.876Q45.614-61.959 45.517-61.978Q45.419-61.997 45.208-61.997L45.208-62.277L46.264-62.352L46.264-59.755Q46.264-59.615 46.395-59.580Q46.527-59.546 46.739-59.546L46.739-59.266M45.467-63.573Q45.467-63.744 45.590-63.863Q45.713-63.983 45.884-63.983Q46.052-63.983 46.175-63.863Q46.298-63.744 46.298-63.573Q46.298-63.398 46.175-63.275Q46.052-63.152 45.884-63.152Q45.713-63.152 45.590-63.275Q45.467-63.398 45.467-63.573M47.385-60.777Q47.385-61.115 47.525-61.406Q47.665-61.696 47.909-61.910Q48.154-62.123 48.458-62.238Q48.762-62.352 49.087-62.352Q49.357-62.352 49.620-62.253Q49.883-62.154 50.075-61.976L50.075-63.374Q50.075-63.644 49.967-63.706Q49.859-63.767 49.548-63.767L49.548-64.048L50.625-64.123L50.625-59.939Q50.625-59.751 50.680-59.668Q50.734-59.584 50.835-59.565Q50.936-59.546 51.151-59.546L51.151-59.266L50.044-59.198L50.044-59.615Q49.627-59.198 49.001-59.198Q48.571-59.198 48.198-59.410Q47.826-59.621 47.605-59.982Q47.385-60.343 47.385-60.777M49.060-59.420Q49.268-59.420 49.454-59.492Q49.641-59.563 49.794-59.700Q49.948-59.837 50.044-60.015L50.044-61.624Q49.959-61.771 49.813-61.891Q49.668-62.011 49.499-62.070Q49.330-62.130 49.148-62.130Q48.588-62.130 48.320-61.741Q48.051-61.351 48.051-60.770Q48.051-60.199 48.285-59.809Q48.520-59.420 49.060-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M56.184-59.266L54.550-59.266L54.550-59.546Q54.779-59.546 54.928-59.580Q55.077-59.615 55.077-59.755L55.077-61.604Q55.077-61.874 54.969-61.935Q54.861-61.997 54.550-61.997L54.550-62.277L55.610-62.352L55.610-61.703Q55.781-62.011 56.085-62.182Q56.389-62.352 56.734-62.352Q57.134-62.352 57.411-62.212Q57.688-62.072 57.773-61.724Q57.941-62.017 58.240-62.185Q58.539-62.352 58.884-62.352Q59.390-62.352 59.674-62.129Q59.958-61.905 59.958-61.409L59.958-59.755Q59.958-59.618 60.106-59.582Q60.255-59.546 60.480-59.546L60.480-59.266L58.850-59.266L58.850-59.546Q59.076-59.546 59.226-59.582Q59.376-59.618 59.376-59.755L59.376-61.395Q59.376-61.730 59.257-61.930Q59.137-62.130 58.823-62.130Q58.553-62.130 58.319-61.994Q58.084-61.857 57.946-61.623Q57.808-61.389 57.808-61.115L57.808-59.755Q57.808-59.618 57.956-59.582Q58.105-59.546 58.331-59.546L58.331-59.266L56.700-59.266L56.700-59.546Q56.929-59.546 57.078-59.580Q57.227-59.615 57.227-59.755L57.227-61.395Q57.227-61.730 57.107-61.930Q56.987-62.130 56.673-62.130Q56.403-62.130 56.169-61.994Q55.935-61.857 55.796-61.623Q55.658-61.389 55.658-61.115L55.658-59.755Q55.658-59.618 55.808-59.582Q55.959-59.546 56.184-59.546L56.184-59.266M61.027-60.801Q61.027-61.122 61.152-61.411Q61.277-61.700 61.502-61.923Q61.728-62.147 62.024-62.267Q62.319-62.387 62.637-62.387Q62.965-62.387 63.227-62.287Q63.488-62.188 63.664-62.006Q63.840-61.823 63.934-61.565Q64.028-61.307 64.028-60.975Q64.028-60.883 63.946-60.862L61.690-60.862L61.690-60.801Q61.690-60.213 61.974-59.830Q62.258-59.447 62.825-59.447Q63.146-59.447 63.415-59.640Q63.683-59.833 63.772-60.148Q63.779-60.189 63.854-60.203L63.946-60.203Q64.028-60.179 64.028-60.107Q64.028-60.100 64.021-60.073Q63.909-59.676 63.538-59.437Q63.167-59.198 62.743-59.198Q62.306-59.198 61.906-59.406Q61.506-59.615 61.267-59.982Q61.027-60.349 61.027-60.801M61.697-61.071L63.512-61.071Q63.512-61.348 63.415-61.600Q63.317-61.853 63.119-62.009Q62.921-62.164 62.637-62.164Q62.360-62.164 62.147-62.006Q61.933-61.847 61.815-61.592Q61.697-61.337 61.697-61.071M66.298-59.266L64.664-59.266L64.664-59.546Q64.893-59.546 65.042-59.580Q65.190-59.615 65.190-59.755L65.190-61.604Q65.190-61.874 65.083-61.935Q64.975-61.997 64.664-61.997L64.664-62.277L65.724-62.352L65.724-61.703Q65.895-62.011 66.199-62.182Q66.503-62.352 66.848-62.352Q67.248-62.352 67.525-62.212Q67.802-62.072 67.887-61.724Q68.055-62.017 68.354-62.185Q68.653-62.352 68.998-62.352Q69.504-62.352 69.788-62.129Q70.071-61.905 70.071-61.409L70.071-59.755Q70.071-59.618 70.220-59.582Q70.369-59.546 70.594-59.546L70.594-59.266L68.964-59.266L68.964-59.546Q69.189-59.546 69.340-59.582Q69.490-59.618 69.490-59.755L69.490-61.395Q69.490-61.730 69.371-61.930Q69.251-62.130 68.937-62.130Q68.667-62.130 68.432-61.994Q68.198-61.857 68.060-61.623Q67.921-61.389 67.921-61.115L67.921-59.755Q67.921-59.618 68.070-59.582Q68.219-59.546 68.444-59.546L68.444-59.266L66.814-59.266L66.814-59.546Q67.043-59.546 67.192-59.580Q67.340-59.615 67.340-59.755L67.340-61.395Q67.340-61.730 67.221-61.930Q67.101-62.130 66.787-62.130Q66.517-62.130 66.282-61.994Q66.048-61.857 65.910-61.623Q65.771-61.389 65.771-61.115L65.771-59.755Q65.771-59.618 65.922-59.582Q66.072-59.546 66.298-59.546L66.298-59.266M71.141-60.749Q71.141-61.091 71.276-61.390Q71.411-61.689 71.650-61.913Q71.890-62.137 72.208-62.262Q72.525-62.387 72.857-62.387Q73.301-62.387 73.701-62.171Q74.101-61.956 74.335-61.578Q74.569-61.201 74.569-60.749Q74.569-60.408 74.428-60.124Q74.286-59.840 74.041-59.633Q73.797-59.427 73.488-59.312Q73.178-59.198 72.857-59.198Q72.426-59.198 72.025-59.399Q71.623-59.601 71.382-59.953Q71.141-60.305 71.141-60.749M72.857-59.447Q73.459-59.447 73.682-59.825Q73.906-60.203 73.906-60.835Q73.906-61.447 73.672-61.806Q73.438-62.164 72.857-62.164Q71.804-62.164 71.804-60.835Q71.804-60.203 72.030-59.825Q72.255-59.447 72.857-59.447M76.914-59.266L75.178-59.266L75.178-59.546Q75.407-59.546 75.555-59.580Q75.704-59.615 75.704-59.755L75.704-61.604Q75.704-61.874 75.596-61.935Q75.489-61.997 75.178-61.997L75.178-62.277L76.207-62.352L76.207-61.645Q76.336-61.953 76.579-62.152Q76.822-62.352 77.140-62.352Q77.358-62.352 77.529-62.228Q77.700-62.103 77.700-61.891Q77.700-61.754 77.601-61.655Q77.502-61.556 77.369-61.556Q77.232-61.556 77.133-61.655Q77.034-61.754 77.034-61.891Q77.034-62.031 77.133-62.130Q76.842-62.130 76.642-61.934Q76.442-61.737 76.350-61.443Q76.258-61.149 76.258-60.869L76.258-59.755Q76.258-59.546 76.914-59.546L76.914-59.266M78.620-58.131Q78.750-58.063 78.886-58.063Q79.057-58.063 79.208-58.152Q79.358-58.241 79.469-58.386Q79.580-58.531 79.659-58.699L79.922-59.266L78.753-61.792Q78.678-61.939 78.548-61.971Q78.418-62.004 78.186-62.004L78.186-62.284L79.707-62.284L79.707-62.004Q79.358-62.004 79.358-61.857Q79.361-61.836 79.363-61.819Q79.365-61.802 79.365-61.792L80.223-59.933L80.995-61.604Q81.029-61.672 81.029-61.751Q81.029-61.864 80.946-61.934Q80.862-62.004 80.749-62.004L80.749-62.284L81.945-62.284L81.945-62.004Q81.727-62.004 81.554-61.900Q81.381-61.795 81.289-61.604L79.953-58.699Q79.782-58.329 79.512-58.083Q79.242-57.837 78.886-57.837Q78.616-57.837 78.397-58.003Q78.179-58.169 78.179-58.432Q78.179-58.569 78.271-58.658Q78.363-58.746 78.503-58.746Q78.640-58.746 78.729-58.658Q78.818-58.569 78.818-58.432Q78.818-58.329 78.765-58.251Q78.712-58.172 78.620-58.131\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M88.810-61.016L84.945-61.016L84.945-61.242L88.810-61.242\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 44.43)\">\u003Cpath d=\"M91.884-59.273L91.884-60.336Q91.884-60.360 91.912-60.387Q91.939-60.414 91.963-60.414L92.072-60.414Q92.137-60.414 92.151-60.356Q92.247-59.922 92.493-59.671Q92.739-59.420 93.153-59.420Q93.494-59.420 93.747-59.553Q94-59.686 94-59.994Q94-60.151 93.906-60.266Q93.812-60.380 93.674-60.449Q93.535-60.517 93.368-60.555L92.787-60.654Q92.431-60.722 92.158-60.943Q91.884-61.163 91.884-61.505Q91.884-61.754 91.996-61.929Q92.107-62.103 92.293-62.202Q92.479-62.301 92.695-62.344Q92.910-62.387 93.153-62.387Q93.566-62.387 93.846-62.205L94.062-62.380Q94.072-62.383 94.079-62.385Q94.086-62.387 94.096-62.387L94.147-62.387Q94.174-62.387 94.198-62.363Q94.222-62.339 94.222-62.311L94.222-61.464Q94.222-61.443 94.198-61.416Q94.174-61.389 94.147-61.389L94.034-61.389Q94.007-61.389 93.981-61.414Q93.956-61.440 93.956-61.464Q93.956-61.700 93.850-61.864Q93.744-62.028 93.561-62.110Q93.378-62.192 93.146-62.192Q92.818-62.192 92.561-62.089Q92.305-61.987 92.305-61.710Q92.305-61.515 92.488-61.406Q92.671-61.296 92.900-61.255L93.474-61.149Q93.720-61.101 93.934-60.973Q94.147-60.845 94.284-60.642Q94.421-60.438 94.421-60.189Q94.421-59.676 94.055-59.437Q93.689-59.198 93.153-59.198Q92.657-59.198 92.325-59.492L92.059-59.218Q92.038-59.198 92.011-59.198L91.963-59.198Q91.939-59.198 91.912-59.225Q91.884-59.252 91.884-59.273M95.576-60.107L95.576-62.004L94.937-62.004L94.937-62.226Q95.255-62.226 95.472-62.436Q95.689-62.646 95.789-62.956Q95.890-63.265 95.890-63.573L96.157-63.573L96.157-62.284L97.234-62.284L97.234-62.004L96.157-62.004L96.157-60.120Q96.157-59.844 96.261-59.645Q96.365-59.447 96.625-59.447Q96.782-59.447 96.888-59.551Q96.994-59.656 97.044-59.809Q97.093-59.963 97.093-60.120L97.093-60.534L97.360-60.534L97.360-60.107Q97.360-59.881 97.261-59.671Q97.162-59.461 96.977-59.329Q96.793-59.198 96.564-59.198Q96.126-59.198 95.851-59.435Q95.576-59.673 95.576-60.107M98.129-60.749Q98.129-61.091 98.264-61.390Q98.399-61.689 98.638-61.913Q98.878-62.137 99.195-62.262Q99.513-62.387 99.845-62.387Q100.289-62.387 100.689-62.171Q101.089-61.956 101.323-61.578Q101.557-61.201 101.557-60.749Q101.557-60.408 101.415-60.124Q101.274-59.840 101.029-59.633Q100.785-59.427 100.476-59.312Q100.166-59.198 99.845-59.198Q99.414-59.198 99.013-59.399Q98.611-59.601 98.370-59.953Q98.129-60.305 98.129-60.749M99.845-59.447Q100.446-59.447 100.670-59.825Q100.894-60.203 100.894-60.835Q100.894-61.447 100.660-61.806Q100.426-62.164 99.845-62.164Q98.792-62.164 98.792-60.835Q98.792-60.203 99.018-59.825Q99.243-59.447 99.845-59.447M103.796-57.909L102.166-57.909L102.166-58.189Q102.395-58.189 102.543-58.224Q102.692-58.258 102.692-58.398L102.692-61.744Q102.692-61.915 102.555-61.956Q102.419-61.997 102.166-61.997L102.166-62.277L103.246-62.352L103.246-61.946Q103.468-62.147 103.755-62.250Q104.042-62.352 104.350-62.352Q104.777-62.352 105.141-62.139Q105.505-61.925 105.719-61.561Q105.932-61.197 105.932-60.777Q105.932-60.332 105.693-59.968Q105.454-59.604 105.061-59.401Q104.668-59.198 104.223-59.198Q103.957-59.198 103.709-59.298Q103.461-59.399 103.273-59.580L103.273-58.398Q103.273-58.261 103.422-58.225Q103.570-58.189 103.796-58.189L103.796-57.909M103.273-61.597L103.273-59.987Q103.406-59.734 103.649-59.577Q103.892-59.420 104.169-59.420Q104.497-59.420 104.750-59.621Q105.003-59.823 105.136-60.141Q105.269-60.459 105.269-60.777Q105.269-61.006 105.204-61.235Q105.139-61.464 105.011-61.662Q104.883-61.860 104.688-61.980Q104.493-62.099 104.261-62.099Q103.967-62.099 103.699-61.970Q103.430-61.840 103.273-61.597\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-6.06h321.516\"\u002F>\u003Cg transform=\"translate(15.015 66.463)\">\u003Cpath d=\"M-50.560-59.504L-50.560-59.594Q-50.509-59.801-50.314-59.825L-49.376-59.825L-49.376-63.594L-50.314-63.594Q-50.509-63.618-50.560-63.832L-50.560-63.922Q-50.509-64.129-50.314-64.153L-47.802-64.153Q-47.603-64.129-47.552-63.922L-47.552-63.832Q-47.603-63.618-47.802-63.594L-48.736-63.594L-48.736-59.825L-47.802-59.825Q-47.603-59.801-47.552-59.594L-47.552-59.504Q-47.603-59.289-47.802-59.266L-50.314-59.266Q-50.509-59.289-50.560-59.504M-46.732-59.504L-46.732-59.594Q-46.681-59.801-46.482-59.825L-46.212-59.825L-46.212-63.594L-46.482-63.594Q-46.681-63.618-46.732-63.832L-46.732-63.922Q-46.681-64.129-46.482-64.153L-45.700-64.153Q-45.572-64.153-45.466-64.078Q-45.361-64.004-45.322-63.891Q-45.044-63.102-44.884-62.653Q-44.724-62.203-44.470-61.485Q-44.216-60.766-44.077-60.356Q-43.939-59.946-43.939-59.907L-43.939-63.594L-44.212-63.594Q-44.407-63.618-44.458-63.832L-44.458-63.922Q-44.407-64.129-44.212-64.153L-43.138-64.153Q-42.943-64.129-42.892-63.922L-42.892-63.832Q-42.943-63.618-43.138-63.594L-43.411-63.594L-43.411-59.504Q-43.462-59.289-43.657-59.266L-43.923-59.266Q-44.048-59.266-44.152-59.340Q-44.255-59.414-44.298-59.532Q-44.595-60.379-44.968-61.428Q-45.341-62.477-45.511-62.965Q-45.681-63.453-45.685-63.512L-45.685-59.825L-45.411-59.825Q-45.220-59.801-45.161-59.594L-45.161-59.504Q-45.220-59.289-45.411-59.266L-46.482-59.266Q-46.681-59.289-46.732-59.504M-42.259-59.426L-42.259-60.657Q-42.232-60.868-42.021-60.891L-41.853-60.891Q-41.759-60.879-41.697-60.821Q-41.634-60.762-41.622-60.657Q-41.622-60.164-41.257-59.955Q-40.892-59.746-40.357-59.746Q-40.122-59.746-39.919-59.854Q-39.716-59.961-39.593-60.155Q-39.470-60.348-39.470-60.578Q-39.470-60.875-39.665-61.098Q-39.861-61.321-40.150-61.387L-41.157-61.618Q-41.458-61.688-41.710-61.873Q-41.962-62.059-42.111-62.327Q-42.259-62.594-42.259-62.907Q-42.259-63.286-42.050-63.590Q-41.841-63.895-41.499-64.065Q-41.157-64.235-40.782-64.235Q-40.107-64.235-39.677-63.907L-39.607-64.090Q-39.532-64.211-39.396-64.235L-39.318-64.235Q-39.220-64.223-39.157-64.161Q-39.095-64.098-39.083-64L-39.083-62.770Q-39.107-62.559-39.318-62.532L-39.486-62.532Q-39.681-62.555-39.716-62.739Q-39.779-63.192-40.046-63.432Q-40.314-63.672-40.775-63.672Q-40.982-63.672-41.189-63.584Q-41.396-63.496-41.529-63.328Q-41.661-63.161-41.661-62.946Q-41.661-62.692-41.468-62.495Q-41.275-62.297-41.005-62.235L-39.997-62.008Q-39.669-61.930-39.415-61.727Q-39.161-61.524-39.015-61.229Q-38.868-60.934-38.868-60.618Q-38.868-60.219-39.072-59.893Q-39.275-59.567-39.618-59.377Q-39.962-59.188-40.349-59.188Q-41.150-59.188-41.669-59.504L-41.739-59.328Q-41.810-59.211-41.950-59.188L-42.021-59.188Q-42.236-59.211-42.259-59.426\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M-49.246-59.266L-50.798-59.266L-50.798-59.546Q-50.572-59.546-50.423-59.580Q-50.275-59.615-50.275-59.755L-50.275-61.604Q-50.275-61.792-50.323-61.876Q-50.370-61.959-50.468-61.978Q-50.565-61.997-50.777-61.997L-50.777-62.277L-49.721-62.352L-49.721-59.755Q-49.721-59.615-49.589-59.580Q-49.458-59.546-49.246-59.546L-49.246-59.266M-50.517-63.573Q-50.517-63.744-50.394-63.863Q-50.271-63.983-50.100-63.983Q-49.933-63.983-49.810-63.863Q-49.687-63.744-49.687-63.573Q-49.687-63.398-49.810-63.275Q-49.933-63.152-50.100-63.152Q-50.271-63.152-50.394-63.275Q-50.517-63.398-50.517-63.573M-46.918-59.266L-48.552-59.266L-48.552-59.546Q-48.323-59.546-48.174-59.580Q-48.026-59.615-48.026-59.755L-48.026-61.604Q-48.026-61.874-48.133-61.935Q-48.241-61.997-48.552-61.997L-48.552-62.277L-47.492-62.352L-47.492-61.703Q-47.322-62.011-47.017-62.182Q-46.713-62.352-46.368-62.352Q-45.862-62.352-45.578-62.129Q-45.295-61.905-45.295-61.409L-45.295-59.755Q-45.295-59.618-45.146-59.582Q-44.997-59.546-44.772-59.546L-44.772-59.266L-46.402-59.266L-46.402-59.546Q-46.173-59.546-46.024-59.580Q-45.876-59.615-45.876-59.755L-45.876-61.395Q-45.876-61.730-45.995-61.930Q-46.115-62.130-46.429-62.130Q-46.699-62.130-46.934-61.994Q-47.168-61.857-47.306-61.623Q-47.445-61.389-47.445-61.115L-47.445-59.755Q-47.445-59.618-47.294-59.582Q-47.144-59.546-46.918-59.546L-46.918-59.266M-44.184-59.273L-44.184-60.336Q-44.184-60.360-44.156-60.387Q-44.129-60.414-44.105-60.414L-43.996-60.414Q-43.931-60.414-43.917-60.356Q-43.822-59.922-43.575-59.671Q-43.329-59.420-42.916-59.420Q-42.574-59.420-42.321-59.553Q-42.068-59.686-42.068-59.994Q-42.068-60.151-42.162-60.266Q-42.256-60.380-42.395-60.449Q-42.533-60.517-42.700-60.555L-43.281-60.654Q-43.637-60.722-43.910-60.943Q-44.184-61.163-44.184-61.505Q-44.184-61.754-44.073-61.929Q-43.962-62.103-43.775-62.202Q-43.589-62.301-43.374-62.344Q-43.158-62.387-42.916-62.387Q-42.502-62.387-42.222-62.205L-42.007-62.380Q-41.996-62.383-41.989-62.385Q-41.983-62.387-41.972-62.387L-41.921-62.387Q-41.894-62.387-41.870-62.363Q-41.846-62.339-41.846-62.311L-41.846-61.464Q-41.846-61.443-41.870-61.416Q-41.894-61.389-41.921-61.389L-42.034-61.389Q-42.061-61.389-42.087-61.414Q-42.113-61.440-42.113-61.464Q-42.113-61.700-42.219-61.864Q-42.324-62.028-42.507-62.110Q-42.690-62.192-42.923-62.192Q-43.251-62.192-43.507-62.089Q-43.763-61.987-43.763-61.710Q-43.763-61.515-43.581-61.406Q-43.398-61.296-43.169-61.255L-42.594-61.149Q-42.348-61.101-42.135-60.973Q-41.921-60.845-41.784-60.642Q-41.648-60.438-41.648-60.189Q-41.648-59.676-42.013-59.437Q-42.379-59.198-42.916-59.198Q-43.411-59.198-43.743-59.492L-44.010-59.218Q-44.030-59.198-44.057-59.198L-44.105-59.198Q-44.129-59.198-44.156-59.225Q-44.184-59.252-44.184-59.273M-40.492-60.107L-40.492-62.004L-41.132-62.004L-41.132-62.226Q-40.814-62.226-40.597-62.436Q-40.380-62.646-40.279-62.956Q-40.178-63.265-40.178-63.573L-39.911-63.573L-39.911-62.284L-38.835-62.284L-38.835-62.004L-39.911-62.004L-39.911-60.120Q-39.911-59.844-39.807-59.645Q-39.703-59.447-39.443-59.447Q-39.286-59.447-39.180-59.551Q-39.074-59.656-39.024-59.809Q-38.975-59.963-38.975-60.120L-38.975-60.534L-38.708-60.534L-38.708-60.107Q-38.708-59.881-38.807-59.671Q-38.906-59.461-39.091-59.329Q-39.276-59.198-39.505-59.198Q-39.942-59.198-40.217-59.435Q-40.492-59.673-40.492-60.107M-36.148-59.266L-37.885-59.266L-37.885-59.546Q-37.656-59.546-37.507-59.580Q-37.358-59.615-37.358-59.755L-37.358-61.604Q-37.358-61.874-37.466-61.935Q-37.573-61.997-37.885-61.997L-37.885-62.277L-36.856-62.352L-36.856-61.645Q-36.726-61.953-36.483-62.152Q-36.240-62.352-35.923-62.352Q-35.704-62.352-35.533-62.228Q-35.362-62.103-35.362-61.891Q-35.362-61.754-35.461-61.655Q-35.560-61.556-35.694-61.556Q-35.830-61.556-35.929-61.655Q-36.029-61.754-36.029-61.891Q-36.029-62.031-35.929-62.130Q-36.220-62.130-36.420-61.934Q-36.620-61.737-36.712-61.443Q-36.804-61.149-36.804-60.869L-36.804-59.755Q-36.804-59.546-36.148-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath d=\"M11.612 6.103h2.392v.4h-2.392z\"\u002F>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M-30.304-59.293L-31.432-61.792Q-31.504-61.939-31.634-61.971Q-31.764-62.004-31.993-62.004L-31.993-62.284L-30.479-62.284L-30.479-62.004Q-30.831-62.004-30.831-61.857Q-30.831-61.812-30.820-61.792L-29.956-59.874L-29.176-61.604Q-29.142-61.672-29.142-61.751Q-29.142-61.864-29.226-61.934Q-29.310-62.004-29.429-62.004L-29.429-62.284L-28.233-62.284L-28.233-62.004Q-28.452-62.004-28.623-61.901Q-28.793-61.799-28.882-61.604L-29.918-59.293Q-29.966-59.198-30.072-59.198L-30.150-59.198Q-30.256-59.198-30.304-59.293\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M-28.064-59.994Q-28.064-60.326-27.841-60.553Q-27.617-60.780-27.273-60.908Q-26.930-61.037-26.557-61.089Q-26.185-61.142-25.880-61.142L-25.880-61.395Q-25.880-61.600-25.988-61.780Q-26.096-61.959-26.277-62.062Q-26.458-62.164-26.666-62.164Q-27.073-62.164-27.309-62.072Q-27.220-62.035-27.174-61.951Q-27.128-61.867-27.128-61.765Q-27.128-61.669-27.174-61.590Q-27.220-61.512-27.301-61.467Q-27.381-61.423-27.470-61.423Q-27.620-61.423-27.721-61.520Q-27.822-61.618-27.822-61.765Q-27.822-62.387-26.666-62.387Q-26.455-62.387-26.205-62.323Q-25.956-62.260-25.754-62.141Q-25.552-62.021-25.426-61.836Q-25.299-61.652-25.299-61.409L-25.299-59.833Q-25.299-59.717-25.238-59.621Q-25.176-59.526-25.063-59.526Q-24.954-59.526-24.889-59.620Q-24.824-59.714-24.824-59.833L-24.824-60.281L-24.558-60.281L-24.558-59.833Q-24.558-59.563-24.785-59.398Q-25.012-59.232-25.292-59.232Q-25.501-59.232-25.638-59.386Q-25.774-59.539-25.798-59.755Q-25.945-59.488-26.227-59.343Q-26.509-59.198-26.834-59.198Q-27.111-59.198-27.395-59.273Q-27.678-59.348-27.871-59.527Q-28.064-59.707-28.064-59.994M-27.449-59.994Q-27.449-59.820-27.348-59.690Q-27.248-59.560-27.092-59.490Q-26.937-59.420-26.772-59.420Q-26.554-59.420-26.345-59.517Q-26.137-59.615-26.009-59.796Q-25.880-59.977-25.880-60.203L-25.880-60.931Q-26.205-60.931-26.571-60.840Q-26.937-60.749-27.193-60.537Q-27.449-60.326-27.449-59.994M-22.473-59.266L-24.076-59.266L-24.076-59.546Q-23.850-59.546-23.701-59.580Q-23.553-59.615-23.553-59.755L-23.553-63.374Q-23.553-63.644-23.660-63.706Q-23.768-63.767-24.076-63.767L-24.076-64.048L-22.999-64.123L-22.999-59.755Q-22.999-59.618-22.849-59.582Q-22.698-59.546-22.473-59.546L-22.473-59.266M-20.261-59.266L-21.813-59.266L-21.813-59.546Q-21.587-59.546-21.439-59.580Q-21.290-59.615-21.290-59.755L-21.290-61.604Q-21.290-61.792-21.338-61.876Q-21.386-61.959-21.483-61.978Q-21.581-61.997-21.792-61.997L-21.792-62.277L-20.736-62.352L-20.736-59.755Q-20.736-59.615-20.605-59.580Q-20.473-59.546-20.261-59.546L-20.261-59.266M-21.533-63.573Q-21.533-63.744-21.410-63.863Q-21.287-63.983-21.116-63.983Q-20.948-63.983-20.825-63.863Q-20.702-63.744-20.702-63.573Q-20.702-63.398-20.825-63.275Q-20.948-63.152-21.116-63.152Q-21.287-63.152-21.410-63.275Q-21.533-63.398-21.533-63.573M-19.615-60.777Q-19.615-61.115-19.475-61.406Q-19.335-61.696-19.091-61.910Q-18.846-62.123-18.542-62.238Q-18.238-62.352-17.913-62.352Q-17.643-62.352-17.380-62.253Q-17.117-62.154-16.925-61.976L-16.925-63.374Q-16.925-63.644-17.033-63.706Q-17.141-63.767-17.452-63.767L-17.452-64.048L-16.375-64.123L-16.375-59.939Q-16.375-59.751-16.320-59.668Q-16.266-59.584-16.165-59.565Q-16.064-59.546-15.849-59.546L-15.849-59.266L-16.956-59.198L-16.956-59.615Q-17.373-59.198-17.999-59.198Q-18.429-59.198-18.802-59.410Q-19.174-59.621-19.395-59.982Q-19.615-60.343-19.615-60.777M-17.940-59.420Q-17.732-59.420-17.546-59.492Q-17.359-59.563-17.206-59.700Q-17.052-59.837-16.956-60.015L-16.956-61.624Q-17.041-61.771-17.187-61.891Q-17.332-62.011-17.501-62.070Q-17.670-62.130-17.852-62.130Q-18.412-62.130-18.680-61.741Q-18.949-61.351-18.949-60.770Q-18.949-60.199-18.715-59.809Q-18.480-59.420-17.940-59.420\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M-10.700-59.266L-12.433-59.266L-12.433-59.546Q-12.207-59.546-12.058-59.580Q-11.910-59.615-11.910-59.755L-11.910-62.004L-12.498-62.004L-12.498-62.284L-11.910-62.284L-11.910-63.101Q-11.910-63.419-11.732-63.667Q-11.554-63.914-11.264-64.055Q-10.973-64.195-10.662-64.195Q-10.406-64.195-10.202-64.053Q-9.999-63.911-9.999-63.668Q-9.999-63.532-10.098-63.433Q-10.197-63.333-10.334-63.333Q-10.471-63.333-10.570-63.433Q-10.669-63.532-10.669-63.668Q-10.669-63.849-10.529-63.942Q-10.607-63.969-10.707-63.969Q-10.915-63.969-11.069-63.836Q-11.223-63.703-11.303-63.499Q-11.383-63.296-11.383-63.087L-11.383-62.284L-10.495-62.284L-10.495-62.004L-11.356-62.004L-11.356-59.755Q-11.356-59.546-10.700-59.546L-10.700-59.266M-9.961-59.994Q-9.961-60.326-9.738-60.553Q-9.514-60.780-9.170-60.908Q-8.827-61.037-8.454-61.089Q-8.082-61.142-7.777-61.142L-7.777-61.395Q-7.777-61.600-7.885-61.780Q-7.993-61.959-8.174-62.062Q-8.355-62.164-8.563-62.164Q-8.970-62.164-9.206-62.072Q-9.117-62.035-9.071-61.951Q-9.025-61.867-9.025-61.765Q-9.025-61.669-9.071-61.590Q-9.117-61.512-9.197-61.467Q-9.278-61.423-9.367-61.423Q-9.517-61.423-9.618-61.520Q-9.719-61.618-9.719-61.765Q-9.719-62.387-8.563-62.387Q-8.352-62.387-8.102-62.323Q-7.853-62.260-7.651-62.141Q-7.449-62.021-7.323-61.836Q-7.196-61.652-7.196-61.409L-7.196-59.833Q-7.196-59.717-7.135-59.621Q-7.073-59.526-6.960-59.526Q-6.851-59.526-6.786-59.620Q-6.721-59.714-6.721-59.833L-6.721-60.281L-6.455-60.281L-6.455-59.833Q-6.455-59.563-6.682-59.398Q-6.909-59.232-7.189-59.232Q-7.398-59.232-7.535-59.386Q-7.671-59.539-7.695-59.755Q-7.842-59.488-8.124-59.343Q-8.406-59.198-8.731-59.198Q-9.008-59.198-9.291-59.273Q-9.575-59.348-9.768-59.527Q-9.961-59.707-9.961-59.994M-9.346-59.994Q-9.346-59.820-9.245-59.690Q-9.145-59.560-8.989-59.490Q-8.833-59.420-8.669-59.420Q-8.451-59.420-8.242-59.517Q-8.034-59.615-7.906-59.796Q-7.777-59.977-7.777-60.203L-7.777-60.931Q-8.102-60.931-8.468-60.840Q-8.833-60.749-9.090-60.537Q-9.346-60.326-9.346-59.994M-4.370-59.266L-5.973-59.266L-5.973-59.546Q-5.747-59.546-5.598-59.580Q-5.450-59.615-5.450-59.755L-5.450-63.374Q-5.450-63.644-5.557-63.706Q-5.665-63.767-5.973-63.767L-5.973-64.048L-4.896-64.123L-4.896-59.755Q-4.896-59.618-4.746-59.582Q-4.595-59.546-4.370-59.546L-4.370-59.266M-3.775-59.273L-3.775-60.336Q-3.775-60.360-3.748-60.387Q-3.720-60.414-3.696-60.414L-3.587-60.414Q-3.522-60.414-3.508-60.356Q-3.413-59.922-3.166-59.671Q-2.920-59.420-2.507-59.420Q-2.165-59.420-1.912-59.553Q-1.659-59.686-1.659-59.994Q-1.659-60.151-1.753-60.266Q-1.847-60.380-1.986-60.449Q-2.124-60.517-2.291-60.555L-2.873-60.654Q-3.228-60.722-3.501-60.943Q-3.775-61.163-3.775-61.505Q-3.775-61.754-3.664-61.929Q-3.553-62.103-3.366-62.202Q-3.180-62.301-2.965-62.344Q-2.749-62.387-2.507-62.387Q-2.093-62.387-1.813-62.205L-1.598-62.380Q-1.587-62.383-1.581-62.385Q-1.574-62.387-1.563-62.387L-1.512-62.387Q-1.485-62.387-1.461-62.363Q-1.437-62.339-1.437-62.311L-1.437-61.464Q-1.437-61.443-1.461-61.416Q-1.485-61.389-1.512-61.389L-1.625-61.389Q-1.652-61.389-1.678-61.414Q-1.704-61.440-1.704-61.464Q-1.704-61.700-1.810-61.864Q-1.916-62.028-2.098-62.110Q-2.281-62.192-2.514-62.192Q-2.842-62.192-3.098-62.089Q-3.354-61.987-3.354-61.710Q-3.354-61.515-3.172-61.406Q-2.989-61.296-2.760-61.255L-2.186-61.149Q-1.939-61.101-1.726-60.973Q-1.512-60.845-1.375-60.642Q-1.239-60.438-1.239-60.189Q-1.239-59.676-1.604-59.437Q-1.970-59.198-2.507-59.198Q-3.002-59.198-3.334-59.492L-3.601-59.218Q-3.621-59.198-3.648-59.198L-3.696-59.198Q-3.720-59.198-3.748-59.225Q-3.775-59.252-3.775-59.273M-0.651-60.801Q-0.651-61.122-0.526-61.411Q-0.401-61.700-0.176-61.923Q0.050-62.147 0.345-62.267Q0.641-62.387 0.959-62.387Q1.287-62.387 1.549-62.287Q1.810-62.188 1.986-62.006Q2.162-61.823 2.256-61.565Q2.350-61.307 2.350-60.975Q2.350-60.883 2.268-60.862L0.012-60.862L0.012-60.801Q0.012-60.213 0.296-59.830Q0.580-59.447 1.147-59.447Q1.468-59.447 1.737-59.640Q2.005-59.833 2.094-60.148Q2.101-60.189 2.176-60.203L2.268-60.203Q2.350-60.179 2.350-60.107Q2.350-60.100 2.343-60.073Q2.230-59.676 1.860-59.437Q1.489-59.198 1.065-59.198Q0.627-59.198 0.228-59.406Q-0.172-59.615-0.412-59.982Q-0.651-60.349-0.651-60.801M0.019-61.071L1.834-61.071Q1.834-61.348 1.737-61.600Q1.639-61.853 1.441-62.009Q1.243-62.164 0.959-62.164Q0.682-62.164 0.469-62.006Q0.255-61.847 0.137-61.592Q0.019-61.337 0.019-61.071M3.338-59.686Q3.338-59.854 3.461-59.977Q3.584-60.100 3.758-60.100Q3.926-60.100 4.049-59.977Q4.172-59.854 4.172-59.686Q4.172-59.512 4.049-59.389Q3.926-59.266 3.758-59.266Q3.584-59.266 3.461-59.389Q3.338-59.512 3.338-59.686M3.338-61.870Q3.338-62.038 3.461-62.161Q3.584-62.284 3.758-62.284Q3.926-62.284 4.049-62.161Q4.172-62.038 4.172-61.870Q4.172-61.696 4.049-61.573Q3.926-61.450 3.758-61.450Q3.584-61.450 3.461-61.573Q3.338-61.696 3.338-61.870\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M10.391-59.266L8.839-59.266L8.839-59.546Q9.065-59.546 9.214-59.580Q9.362-59.615 9.362-59.755L9.362-61.604Q9.362-61.792 9.314-61.876Q9.267-61.959 9.169-61.978Q9.072-61.997 8.860-61.997L8.860-62.277L9.916-62.352L9.916-59.755Q9.916-59.615 10.048-59.580Q10.179-59.546 10.391-59.546L10.391-59.266M9.120-63.573Q9.120-63.744 9.243-63.863Q9.366-63.983 9.537-63.983Q9.704-63.983 9.827-63.863Q9.950-63.744 9.950-63.573Q9.950-63.398 9.827-63.275Q9.704-63.152 9.537-63.152Q9.366-63.152 9.243-63.275Q9.120-63.398 9.120-63.573M11.037-60.777Q11.037-61.105 11.172-61.406Q11.307-61.706 11.543-61.927Q11.779-62.147 12.083-62.267Q12.387-62.387 12.712-62.387Q13.218-62.387 13.566-62.284Q13.915-62.182 13.915-61.806Q13.915-61.659 13.818-61.558Q13.720-61.457 13.573-61.457Q13.419-61.457 13.320-61.556Q13.221-61.655 13.221-61.806Q13.221-61.994 13.361-62.086Q13.160-62.137 12.719-62.137Q12.363-62.137 12.134-61.941Q11.905-61.744 11.804-61.435Q11.704-61.125 11.704-60.777Q11.704-60.428 11.830-60.122Q11.957-59.816 12.211-59.632Q12.466-59.447 12.821-59.447Q13.043-59.447 13.228-59.531Q13.413-59.615 13.548-59.770Q13.683-59.926 13.741-60.134Q13.754-60.189 13.809-60.189L13.922-60.189Q13.953-60.189 13.975-60.165Q13.997-60.141 13.997-60.107L13.997-60.086Q13.912-59.799 13.724-59.601Q13.536-59.403 13.271-59.300Q13.006-59.198 12.712-59.198Q12.281-59.198 11.893-59.404Q11.505-59.611 11.271-59.974Q11.037-60.336 11.037-60.777M14.544-60.749Q14.544-61.091 14.679-61.390Q14.814-61.689 15.053-61.913Q15.293-62.137 15.610-62.262Q15.928-62.387 16.260-62.387Q16.704-62.387 17.104-62.171Q17.504-61.956 17.738-61.578Q17.972-61.201 17.972-60.749Q17.972-60.408 17.830-60.124Q17.689-59.840 17.444-59.633Q17.200-59.427 16.890-59.312Q16.581-59.198 16.260-59.198Q15.829-59.198 15.428-59.399Q15.026-59.601 14.785-59.953Q14.544-60.305 14.544-60.749M16.260-59.447Q16.861-59.447 17.085-59.825Q17.309-60.203 17.309-60.835Q17.309-61.447 17.075-61.806Q16.841-62.164 16.260-62.164Q15.207-62.164 15.207-60.835Q15.207-60.203 15.433-59.825Q15.658-59.447 16.260-59.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M18.795-60.777Q18.795-61.115 18.936-61.406Q19.076-61.696 19.320-61.910Q19.564-62.123 19.869-62.238Q20.173-62.352 20.498-62.352Q20.768-62.352 21.031-62.253Q21.294-62.154 21.485-61.976L21.485-63.374Q21.485-63.644 21.378-63.706Q21.270-63.767 20.959-63.767L20.959-64.048L22.036-64.123L22.036-59.939Q22.036-59.751 22.090-59.668Q22.145-59.584 22.246-59.565Q22.347-59.546 22.562-59.546L22.562-59.266L21.455-59.198L21.455-59.615Q21.038-59.198 20.412-59.198Q19.981-59.198 19.609-59.410Q19.236-59.621 19.016-59.982Q18.795-60.343 18.795-60.777M20.470-59.420Q20.679-59.420 20.865-59.492Q21.051-59.563 21.205-59.700Q21.359-59.837 21.455-60.015L21.455-61.624Q21.369-61.771 21.224-61.891Q21.079-62.011 20.909-62.070Q20.740-62.130 20.559-62.130Q19.999-62.130 19.730-61.741Q19.462-61.351 19.462-60.770Q19.462-60.199 19.696-59.809Q19.930-59.420 20.470-59.420M23.170-60.801Q23.170-61.122 23.295-61.411Q23.420-61.700 23.646-61.923Q23.871-62.147 24.167-62.267Q24.462-62.387 24.780-62.387Q25.108-62.387 25.370-62.287Q25.631-62.188 25.807-62.006Q25.983-61.823 26.077-61.565Q26.171-61.307 26.171-60.975Q26.171-60.883 26.089-60.862L23.834-60.862L23.834-60.801Q23.834-60.213 24.117-59.830Q24.401-59.447 24.968-59.447Q25.290-59.447 25.558-59.640Q25.826-59.833 25.915-60.148Q25.922-60.189 25.997-60.203L26.089-60.203Q26.171-60.179 26.171-60.107Q26.171-60.100 26.165-60.073Q26.052-59.676 25.681-59.437Q25.310-59.198 24.886-59.198Q24.449-59.198 24.049-59.406Q23.649-59.615 23.410-59.982Q23.170-60.349 23.170-60.801M23.840-61.071L25.655-61.071Q25.655-61.348 25.558-61.600Q25.460-61.853 25.262-62.009Q25.064-62.164 24.780-62.164Q24.503-62.164 24.290-62.006Q24.076-61.847 23.958-61.592Q23.840-61.337 23.840-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M31.144-59.266L29.510-59.266L29.510-59.546Q29.739-59.546 29.888-59.580Q30.037-59.615 30.037-59.755L30.037-61.604Q30.037-61.874 29.929-61.935Q29.821-61.997 29.510-61.997L29.510-62.277L30.570-62.352L30.570-61.703Q30.741-62.011 31.045-62.182Q31.349-62.352 31.694-62.352Q32.200-62.352 32.484-62.129Q32.768-61.905 32.768-61.409L32.768-59.755Q32.768-59.618 32.916-59.582Q33.065-59.546 33.291-59.546L33.291-59.266L31.660-59.266L31.660-59.546Q31.889-59.546 32.038-59.580Q32.187-59.615 32.187-59.755L32.187-61.395Q32.187-61.730 32.067-61.930Q31.947-62.130 31.633-62.130Q31.363-62.130 31.129-61.994Q30.895-61.857 30.756-61.623Q30.618-61.389 30.618-61.115L30.618-59.755Q30.618-59.618 30.768-59.582Q30.919-59.546 31.144-59.546L31.144-59.266M33.837-60.749Q33.837-61.091 33.972-61.390Q34.107-61.689 34.347-61.913Q34.586-62.137 34.904-62.262Q35.222-62.387 35.553-62.387Q35.998-62.387 36.398-62.171Q36.797-61.956 37.032-61.578Q37.266-61.201 37.266-60.749Q37.266-60.408 37.124-60.124Q36.982-59.840 36.738-59.633Q36.493-59.427 36.184-59.312Q35.875-59.198 35.553-59.198Q35.123-59.198 34.721-59.399Q34.319-59.601 34.078-59.953Q33.837-60.305 33.837-60.749M35.553-59.447Q36.155-59.447 36.379-59.825Q36.603-60.203 36.603-60.835Q36.603-61.447 36.368-61.806Q36.134-62.164 35.553-62.164Q34.501-62.164 34.501-60.835Q34.501-60.203 34.726-59.825Q34.952-59.447 35.553-59.447M38.387-60.107L38.387-62.004L37.748-62.004L37.748-62.226Q38.065-62.226 38.283-62.436Q38.500-62.646 38.600-62.956Q38.701-63.265 38.701-63.573L38.968-63.573L38.968-62.284L40.044-62.284L40.044-62.004L38.968-62.004L38.968-60.120Q38.968-59.844 39.072-59.645Q39.176-59.447 39.436-59.447Q39.593-59.447 39.699-59.551Q39.805-59.656 39.855-59.809Q39.904-59.963 39.904-60.120L39.904-60.534L40.171-60.534L40.171-60.107Q40.171-59.881 40.072-59.671Q39.973-59.461 39.788-59.329Q39.604-59.198 39.375-59.198Q38.937-59.198 38.662-59.435Q38.387-59.673 38.387-60.107\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M43.743-59.994Q43.743-60.326 43.966-60.553Q44.190-60.780 44.534-60.908Q44.877-61.037 45.250-61.089Q45.622-61.142 45.927-61.142L45.927-61.395Q45.927-61.600 45.819-61.780Q45.711-61.959 45.530-62.062Q45.349-62.164 45.141-62.164Q44.734-62.164 44.498-62.072Q44.587-62.035 44.633-61.951Q44.679-61.867 44.679-61.765Q44.679-61.669 44.633-61.590Q44.587-61.512 44.506-61.467Q44.426-61.423 44.337-61.423Q44.187-61.423 44.086-61.520Q43.985-61.618 43.985-61.765Q43.985-62.387 45.141-62.387Q45.352-62.387 45.602-62.323Q45.851-62.260 46.053-62.141Q46.255-62.021 46.381-61.836Q46.508-61.652 46.508-61.409L46.508-59.833Q46.508-59.717 46.569-59.621Q46.631-59.526 46.744-59.526Q46.853-59.526 46.918-59.620Q46.983-59.714 46.983-59.833L46.983-60.281L47.249-60.281L47.249-59.833Q47.249-59.563 47.022-59.398Q46.795-59.232 46.515-59.232Q46.306-59.232 46.169-59.386Q46.033-59.539 46.009-59.755Q45.862-59.488 45.580-59.343Q45.298-59.198 44.973-59.198Q44.696-59.198 44.412-59.273Q44.129-59.348 43.936-59.527Q43.743-59.707 43.743-59.994M44.358-59.994Q44.358-59.820 44.459-59.690Q44.559-59.560 44.715-59.490Q44.870-59.420 45.035-59.420Q45.253-59.420 45.462-59.517Q45.670-59.615 45.798-59.796Q45.927-59.977 45.927-60.203L45.927-60.931Q45.602-60.931 45.236-60.840Q44.870-60.749 44.614-60.537Q44.358-60.326 44.358-59.994\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M52.115-59.266L50.379-59.266L50.379-59.546Q50.608-59.546 50.757-59.580Q50.905-59.615 50.905-59.755L50.905-61.604Q50.905-61.874 50.798-61.935Q50.690-61.997 50.379-61.997L50.379-62.277L51.408-62.352L51.408-61.645Q51.538-61.953 51.780-62.152Q52.023-62.352 52.341-62.352Q52.560-62.352 52.731-62.228Q52.902-62.103 52.902-61.891Q52.902-61.754 52.802-61.655Q52.703-61.556 52.570-61.556Q52.433-61.556 52.334-61.655Q52.235-61.754 52.235-61.891Q52.235-62.031 52.334-62.130Q52.044-62.130 51.844-61.934Q51.644-61.737 51.551-61.443Q51.459-61.149 51.459-60.869L51.459-59.755Q51.459-59.546 52.115-59.546L52.115-59.266M53.445-60.801Q53.445-61.122 53.570-61.411Q53.695-61.700 53.920-61.923Q54.146-62.147 54.441-62.267Q54.737-62.387 55.055-62.387Q55.383-62.387 55.645-62.287Q55.906-62.188 56.082-62.006Q56.258-61.823 56.352-61.565Q56.446-61.307 56.446-60.975Q56.446-60.883 56.364-60.862L54.108-60.862L54.108-60.801Q54.108-60.213 54.392-59.830Q54.676-59.447 55.243-59.447Q55.564-59.447 55.832-59.640Q56.101-59.833 56.190-60.148Q56.197-60.189 56.272-60.203L56.364-60.203Q56.446-60.179 56.446-60.107Q56.446-60.100 56.439-60.073Q56.326-59.676 55.956-59.437Q55.585-59.198 55.161-59.198Q54.723-59.198 54.323-59.406Q53.924-59.615 53.684-59.982Q53.445-60.349 53.445-60.801M54.115-61.071L55.930-61.071Q55.930-61.348 55.832-61.600Q55.735-61.853 55.537-62.009Q55.339-62.164 55.055-62.164Q54.778-62.164 54.564-62.006Q54.351-61.847 54.233-61.592Q54.115-61.337 54.115-61.071M57.092-59.994Q57.092-60.326 57.316-60.553Q57.540-60.780 57.883-60.908Q58.227-61.037 58.599-61.089Q58.972-61.142 59.276-61.142L59.276-61.395Q59.276-61.600 59.168-61.780Q59.061-61.959 58.880-62.062Q58.698-62.164 58.490-62.164Q58.083-62.164 57.847-62.072Q57.936-62.035 57.982-61.951Q58.029-61.867 58.029-61.765Q58.029-61.669 57.982-61.590Q57.936-61.512 57.856-61.467Q57.776-61.423 57.687-61.423Q57.536-61.423 57.436-61.520Q57.335-61.618 57.335-61.765Q57.335-62.387 58.490-62.387Q58.702-62.387 58.951-62.323Q59.201-62.260 59.403-62.141Q59.604-62.021 59.731-61.836Q59.857-61.652 59.857-61.409L59.857-59.833Q59.857-59.717 59.919-59.621Q59.980-59.526 60.093-59.526Q60.202-59.526 60.267-59.620Q60.332-59.714 60.332-59.833L60.332-60.281L60.599-60.281L60.599-59.833Q60.599-59.563 60.372-59.398Q60.144-59.232 59.864-59.232Q59.655-59.232 59.519-59.386Q59.382-59.539 59.358-59.755Q59.211-59.488 58.929-59.343Q58.647-59.198 58.322-59.198Q58.046-59.198 57.762-59.273Q57.478-59.348 57.285-59.527Q57.092-59.707 57.092-59.994M57.707-59.994Q57.707-59.820 57.808-59.690Q57.909-59.560 58.064-59.490Q58.220-59.420 58.384-59.420Q58.603-59.420 58.811-59.517Q59.020-59.615 59.148-59.796Q59.276-59.977 59.276-60.203L59.276-60.931Q58.951-60.931 58.586-60.840Q58.220-60.749 57.964-60.537Q57.707-60.326 57.707-59.994M62.684-59.266L61.081-59.266L61.081-59.546Q61.306-59.546 61.455-59.580Q61.604-59.615 61.604-59.755L61.604-63.374Q61.604-63.644 61.496-63.706Q61.388-63.767 61.081-63.767L61.081-64.048L62.157-64.123L62.157-59.755Q62.157-59.618 62.308-59.582Q62.458-59.546 62.684-59.546\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M65.949-60.749Q65.949-61.091 66.084-61.390Q66.219-61.689 66.459-61.913Q66.698-62.137 67.016-62.262Q67.334-62.387 67.665-62.387Q68.110-62.387 68.509-62.171Q68.909-61.956 69.144-61.578Q69.378-61.201 69.378-60.749Q69.378-60.408 69.236-60.124Q69.094-59.840 68.850-59.633Q68.605-59.427 68.296-59.312Q67.987-59.198 67.665-59.198Q67.235-59.198 66.833-59.399Q66.431-59.601 66.190-59.953Q65.949-60.305 65.949-60.749M67.665-59.447Q68.267-59.447 68.491-59.825Q68.715-60.203 68.715-60.835Q68.715-61.447 68.480-61.806Q68.246-62.164 67.665-62.164Q66.613-62.164 66.613-60.835Q66.613-60.203 66.838-59.825Q67.064-59.447 67.665-59.447M71.616-57.909L69.986-57.909L69.986-58.189Q70.215-58.189 70.364-58.224Q70.512-58.258 70.512-58.398L70.512-61.744Q70.512-61.915 70.376-61.956Q70.239-61.997 69.986-61.997L69.986-62.277L71.066-62.352L71.066-61.946Q71.288-62.147 71.575-62.250Q71.863-62.352 72.170-62.352Q72.597-62.352 72.961-62.139Q73.325-61.925 73.539-61.561Q73.753-61.197 73.753-60.777Q73.753-60.332 73.513-59.968Q73.274-59.604 72.881-59.401Q72.488-59.198 72.044-59.198Q71.777-59.198 71.529-59.298Q71.281-59.399 71.093-59.580L71.093-58.398Q71.093-58.261 71.242-58.225Q71.391-58.189 71.616-58.189L71.616-57.909M71.093-61.597L71.093-59.987Q71.227-59.734 71.469-59.577Q71.712-59.420 71.989-59.420Q72.317-59.420 72.570-59.621Q72.823-59.823 72.956-60.141Q73.090-60.459 73.090-60.777Q73.090-61.006 73.025-61.235Q72.960-61.464 72.832-61.662Q72.703-61.860 72.509-61.980Q72.314-62.099 72.081-62.099Q71.787-62.099 71.519-61.970Q71.251-61.840 71.093-61.597\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M74.608-60.777Q74.608-61.105 74.743-61.406Q74.878-61.706 75.114-61.927Q75.350-62.147 75.654-62.267Q75.959-62.387 76.283-62.387Q76.789-62.387 77.138-62.284Q77.486-62.182 77.486-61.806Q77.486-61.659 77.389-61.558Q77.292-61.457 77.145-61.457Q76.991-61.457 76.892-61.556Q76.793-61.655 76.793-61.806Q76.793-61.994 76.933-62.086Q76.731-62.137 76.290-62.137Q75.935-62.137 75.706-61.941Q75.477-61.744 75.376-61.435Q75.275-61.125 75.275-60.777Q75.275-60.428 75.401-60.122Q75.528-59.816 75.783-59.632Q76.037-59.447 76.393-59.447Q76.615-59.447 76.799-59.531Q76.984-59.615 77.119-59.770Q77.254-59.926 77.312-60.134Q77.326-60.189 77.380-60.189L77.493-60.189Q77.524-60.189 77.546-60.165Q77.568-60.141 77.568-60.107L77.568-60.086Q77.483-59.799 77.295-59.601Q77.107-59.403 76.842-59.300Q76.577-59.198 76.283-59.198Q75.853-59.198 75.465-59.404Q75.077-59.611 74.843-59.974Q74.608-60.336 74.608-60.777M78.115-60.749Q78.115-61.091 78.250-61.390Q78.385-61.689 78.625-61.913Q78.864-62.137 79.182-62.262Q79.500-62.387 79.831-62.387Q80.275-62.387 80.675-62.171Q81.075-61.956 81.309-61.578Q81.544-61.201 81.544-60.749Q81.544-60.408 81.402-60.124Q81.260-59.840 81.015-59.633Q80.771-59.427 80.462-59.312Q80.152-59.198 79.831-59.198Q79.400-59.198 78.999-59.399Q78.597-59.601 78.356-59.953Q78.115-60.305 78.115-60.749M79.831-59.447Q80.433-59.447 80.657-59.825Q80.880-60.203 80.880-60.835Q80.880-61.447 80.646-61.806Q80.412-62.164 79.831-62.164Q78.778-62.164 78.778-60.835Q78.778-60.203 79.004-59.825Q79.230-59.447 79.831-59.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M82.365-60.777Q82.365-61.115 82.506-61.406Q82.646-61.696 82.890-61.910Q83.134-62.123 83.439-62.238Q83.743-62.352 84.068-62.352Q84.338-62.352 84.601-62.253Q84.864-62.154 85.055-61.976L85.055-63.374Q85.055-63.644 84.948-63.706Q84.840-63.767 84.529-63.767L84.529-64.048L85.606-64.123L85.606-59.939Q85.606-59.751 85.660-59.668Q85.715-59.584 85.816-59.565Q85.917-59.546 86.132-59.546L86.132-59.266L85.025-59.198L85.025-59.615Q84.608-59.198 83.982-59.198Q83.551-59.198 83.179-59.410Q82.806-59.621 82.586-59.982Q82.365-60.343 82.365-60.777M84.040-59.420Q84.249-59.420 84.435-59.492Q84.621-59.563 84.775-59.700Q84.929-59.837 85.025-60.015L85.025-61.624Q84.939-61.771 84.794-61.891Q84.649-62.011 84.479-62.070Q84.310-62.130 84.129-62.130Q83.569-62.130 83.300-61.741Q83.032-61.351 83.032-60.770Q83.032-60.199 83.266-59.809Q83.500-59.420 84.040-59.420M86.740-60.801Q86.740-61.122 86.865-61.411Q86.990-61.700 87.216-61.923Q87.441-62.147 87.737-62.267Q88.032-62.387 88.350-62.387Q88.678-62.387 88.940-62.287Q89.201-62.188 89.377-62.006Q89.553-61.823 89.647-61.565Q89.741-61.307 89.741-60.975Q89.741-60.883 89.659-60.862L87.404-60.862L87.404-60.801Q87.404-60.213 87.687-59.830Q87.971-59.447 88.538-59.447Q88.860-59.447 89.128-59.640Q89.396-59.833 89.485-60.148Q89.492-60.189 89.567-60.203L89.659-60.203Q89.741-60.179 89.741-60.107Q89.741-60.100 89.735-60.073Q89.622-59.676 89.251-59.437Q88.880-59.198 88.456-59.198Q88.019-59.198 87.619-59.406Q87.219-59.615 86.980-59.982Q86.740-60.349 86.740-60.801M87.410-61.071L89.225-61.071Q89.225-61.348 89.128-61.600Q89.030-61.853 88.832-62.009Q88.634-62.164 88.350-62.164Q88.073-62.164 87.860-62.006Q87.646-61.847 87.528-61.592Q87.410-61.337 87.410-61.071\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M96.637-61.016L92.772-61.016L92.772-61.242L96.637-61.242\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.212 65.769)\">\u003Cpath d=\"M99.712-59.273L99.712-60.336Q99.712-60.360 99.740-60.387Q99.767-60.414 99.791-60.414L99.900-60.414Q99.965-60.414 99.979-60.356Q100.075-59.922 100.321-59.671Q100.567-59.420 100.981-59.420Q101.322-59.420 101.575-59.553Q101.828-59.686 101.828-59.994Q101.828-60.151 101.734-60.266Q101.640-60.380 101.502-60.449Q101.363-60.517 101.196-60.555L100.615-60.654Q100.259-60.722 99.986-60.943Q99.712-61.163 99.712-61.505Q99.712-61.754 99.824-61.929Q99.935-62.103 100.121-62.202Q100.307-62.301 100.523-62.344Q100.738-62.387 100.981-62.387Q101.394-62.387 101.674-62.205L101.890-62.380Q101.900-62.383 101.907-62.385Q101.914-62.387 101.924-62.387L101.975-62.387Q102.002-62.387 102.026-62.363Q102.050-62.339 102.050-62.311L102.050-61.464Q102.050-61.443 102.026-61.416Q102.002-61.389 101.975-61.389L101.862-61.389Q101.835-61.389 101.809-61.414Q101.784-61.440 101.784-61.464Q101.784-61.700 101.678-61.864Q101.572-62.028 101.389-62.110Q101.206-62.192 100.974-62.192Q100.646-62.192 100.389-62.089Q100.133-61.987 100.133-61.710Q100.133-61.515 100.316-61.406Q100.499-61.296 100.728-61.255L101.302-61.149Q101.548-61.101 101.762-60.973Q101.975-60.845 102.112-60.642Q102.249-60.438 102.249-60.189Q102.249-59.676 101.883-59.437Q101.517-59.198 100.981-59.198Q100.485-59.198 100.153-59.492L99.887-59.218Q99.866-59.198 99.839-59.198L99.791-59.198Q99.767-59.198 99.740-59.225Q99.712-59.252 99.712-59.273M103.404-60.107L103.404-62.004L102.765-62.004L102.765-62.226Q103.083-62.226 103.300-62.436Q103.517-62.646 103.617-62.956Q103.718-63.265 103.718-63.573L103.985-63.573L103.985-62.284L105.062-62.284L105.062-62.004L103.985-62.004L103.985-60.120Q103.985-59.844 104.089-59.645Q104.193-59.447 104.453-59.447Q104.610-59.447 104.716-59.551Q104.822-59.656 104.872-59.809Q104.921-59.963 104.921-60.120L104.921-60.534L105.188-60.534L105.188-60.107Q105.188-59.881 105.089-59.671Q104.990-59.461 104.805-59.329Q104.621-59.198 104.392-59.198Q103.954-59.198 103.679-59.435Q103.404-59.673 103.404-60.107M105.957-60.749Q105.957-61.091 106.092-61.390Q106.227-61.689 106.466-61.913Q106.706-62.137 107.023-62.262Q107.341-62.387 107.673-62.387Q108.117-62.387 108.517-62.171Q108.917-61.956 109.151-61.578Q109.385-61.201 109.385-60.749Q109.385-60.408 109.243-60.124Q109.102-59.840 108.857-59.633Q108.613-59.427 108.304-59.312Q107.994-59.198 107.673-59.198Q107.242-59.198 106.841-59.399Q106.439-59.601 106.198-59.953Q105.957-60.305 105.957-60.749M107.673-59.447Q108.274-59.447 108.498-59.825Q108.722-60.203 108.722-60.835Q108.722-61.447 108.488-61.806Q108.254-62.164 107.673-62.164Q106.620-62.164 106.620-60.835Q106.620-60.203 106.846-59.825Q107.071-59.447 107.673-59.447M111.624-57.909L109.994-57.909L109.994-58.189Q110.223-58.189 110.371-58.224Q110.520-58.258 110.520-58.398L110.520-61.744Q110.520-61.915 110.383-61.956Q110.247-61.997 109.994-61.997L109.994-62.277L111.074-62.352L111.074-61.946Q111.296-62.147 111.583-62.250Q111.870-62.352 112.178-62.352Q112.605-62.352 112.969-62.139Q113.333-61.925 113.547-61.561Q113.760-61.197 113.760-60.777Q113.760-60.332 113.521-59.968Q113.282-59.604 112.889-59.401Q112.496-59.198 112.051-59.198Q111.785-59.198 111.537-59.298Q111.289-59.399 111.101-59.580L111.101-58.398Q111.101-58.261 111.250-58.225Q111.398-58.189 111.624-58.189L111.624-57.909M111.101-61.597L111.101-59.987Q111.234-59.734 111.477-59.577Q111.720-59.420 111.997-59.420Q112.325-59.420 112.578-59.621Q112.831-59.823 112.964-60.141Q113.097-60.459 113.097-60.777Q113.097-61.006 113.032-61.235Q112.967-61.464 112.839-61.662Q112.711-61.860 112.516-61.980Q112.321-62.099 112.089-62.099Q111.795-62.099 111.527-61.970Q111.258-61.840 111.101-61.597\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 15.28h321.516\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The four status codes fetch can raise, from the first instruction byte and the fetch address. AOK proceeds; HLT, ADR, and INS each stop the machine. Stat rides alongside the instruction so a later stage can act on it.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:559.254px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 419.441 132.076\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 10.727h39.833v-28.452h-39.833Z\"\u002F>\u003Cg transform=\"translate(-5.96 2.733)\">\u003Cpath d=\"M-42.752-3.499L-45.134-3.499L-45.134-3.796Q-44.810-3.796-44.568-3.843Q-44.326-3.890-44.326-4.058L-44.326-8.401Q-44.326-8.573-44.568-8.620Q-44.810-8.667-45.134-8.667L-45.134-8.964L-42.189-8.964Q-41.845-8.964-41.490-8.864Q-41.134-8.765-40.840-8.573Q-40.545-8.382-40.363-8.097Q-40.181-7.812-40.181-7.452Q-40.181-6.979-40.492-6.644Q-40.802-6.308-41.267-6.136Q-41.732-5.964-42.189-5.964L-43.556-5.964L-43.556-4.058Q-43.556-3.890-43.314-3.843Q-43.072-3.796-42.752-3.796L-42.752-3.499M-43.584-8.401L-43.584-6.233L-42.408-6.233Q-41.720-6.233-41.382-6.509Q-41.045-6.784-41.045-7.452Q-41.045-8.116-41.382-8.392Q-41.720-8.667-42.408-8.667L-43.181-8.667Q-43.400-8.667-43.492-8.624Q-43.584-8.581-43.584-8.401M-39.236-6.233Q-39.236-6.827-39.004-7.358Q-38.771-7.890-38.355-8.290Q-37.939-8.690-37.406-8.911Q-36.873-9.132-36.267-9.132Q-35.830-9.132-35.431-8.950Q-35.033-8.769-34.724-8.437L-34.252-9.101Q-34.220-9.132-34.189-9.132L-34.142-9.132Q-34.115-9.132-34.084-9.101Q-34.052-9.069-34.052-9.042L-34.052-6.905Q-34.052-6.882-34.084-6.851Q-34.115-6.819-34.142-6.819L-34.259-6.819Q-34.287-6.819-34.318-6.851Q-34.349-6.882-34.349-6.905Q-34.349-7.171-34.492-7.524Q-34.634-7.878-34.814-8.116Q-35.068-8.448-35.418-8.642Q-35.767-8.835-36.173-8.835Q-36.677-8.835-37.131-8.616Q-37.584-8.397-37.877-8.003Q-38.373-7.335-38.373-6.233Q-38.373-5.702-38.236-5.235Q-38.099-4.769-37.824-4.403Q-37.548-4.038-37.129-3.833Q-36.709-3.628-36.166-3.628Q-35.677-3.628-35.254-3.872Q-34.830-4.116-34.582-4.536Q-34.334-4.956-34.334-5.452Q-34.334-5.487-34.304-5.513Q-34.275-5.538-34.244-5.538L-34.142-5.538Q-34.099-5.538-34.076-5.509Q-34.052-5.479-34.052-5.437Q-34.052-4.999-34.228-4.610Q-34.404-4.222-34.715-3.938Q-35.025-3.655-35.435-3.493Q-35.845-3.331-36.267-3.331Q-36.857-3.331-37.398-3.552Q-37.939-3.772-38.355-4.177Q-38.771-4.581-39.004-5.110Q-39.236-5.640-39.236-6.233\" 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=\"M11.419 14.995h68.287v-36.988H11.419Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(70.602 6.706)\">\u003Cpath d=\"M-42.724-12.999L-45.189-12.999L-45.189-13.296Q-44.857-13.296-44.599-13.343Q-44.341-13.390-44.341-13.558L-44.341-17.901Q-44.341-18.167-45.189-18.167L-45.189-18.464L-42.724-18.464L-42.724-18.167Q-43.576-18.167-43.576-17.901L-43.576-13.558Q-43.576-13.296-42.724-13.296L-42.724-12.999M-40.263-12.999L-42.119-12.999L-42.119-13.296Q-41.845-13.296-41.677-13.343Q-41.509-13.390-41.509-13.558L-41.509-15.694Q-41.509-15.909-41.572-16.005Q-41.634-16.101-41.754-16.122Q-41.873-16.144-42.119-16.144L-42.119-16.440L-40.927-16.526L-40.927-15.792Q-40.814-16.007-40.621-16.175Q-40.427-16.343-40.189-16.435Q-39.951-16.526-39.697-16.526Q-38.529-16.526-38.529-15.448L-38.529-13.558Q-38.529-13.390-38.359-13.343Q-38.189-13.296-37.920-13.296L-37.920-12.999L-39.775-12.999L-39.775-13.296Q-39.502-13.296-39.334-13.343Q-39.166-13.390-39.166-13.558L-39.166-15.433Q-39.166-15.815-39.287-16.044Q-39.408-16.272-39.759-16.272Q-40.072-16.272-40.326-16.110Q-40.580-15.948-40.726-15.679Q-40.873-15.409-40.873-15.112L-40.873-13.558Q-40.873-13.390-40.703-13.343Q-40.533-13.296-40.263-13.296L-40.263-12.999M-37.431-13.007L-37.431-14.229Q-37.431-14.257-37.400-14.288Q-37.369-14.319-37.345-14.319L-37.240-14.319Q-37.170-14.319-37.154-14.257Q-37.091-13.937-36.953-13.696Q-36.814-13.456-36.582-13.315Q-36.349-13.175-36.041-13.175Q-35.802-13.175-35.593-13.235Q-35.384-13.296-35.248-13.444Q-35.111-13.593-35.111-13.839Q-35.111-14.093-35.322-14.259Q-35.533-14.425-35.802-14.479L-36.423-14.593Q-36.830-14.671-37.131-14.927Q-37.431-15.183-37.431-15.558Q-37.431-15.925-37.230-16.147Q-37.029-16.370-36.705-16.468Q-36.381-16.565-36.041-16.565Q-35.576-16.565-35.279-16.358L-35.056-16.542Q-35.033-16.565-35.002-16.565L-34.951-16.565Q-34.920-16.565-34.892-16.538Q-34.865-16.511-34.865-16.479L-34.865-15.495Q-34.865-15.464-34.890-15.435Q-34.916-15.405-34.951-15.405L-35.056-15.405Q-35.091-15.405-35.119-15.433Q-35.146-15.460-35.146-15.495Q-35.146-15.894-35.398-16.114Q-35.650-16.335-36.048-16.335Q-36.404-16.335-36.687-16.212Q-36.970-16.089-36.970-15.784Q-36.970-15.565-36.769-15.433Q-36.568-15.300-36.322-15.257L-35.697-15.144Q-35.267-15.054-34.959-14.757Q-34.650-14.460-34.650-14.046Q-34.650-13.476-35.048-13.198Q-35.447-12.921-36.041-12.921Q-36.591-12.921-36.943-13.257L-37.240-12.944Q-37.263-12.921-37.298-12.921L-37.345-12.921Q-37.369-12.921-37.400-12.952Q-37.431-12.983-37.431-13.007M-33.498-13.960L-33.498-16.151L-34.201-16.151L-34.201-16.405Q-33.845-16.405-33.603-16.638Q-33.361-16.870-33.250-17.218Q-33.138-17.565-33.138-17.921L-32.857-17.921L-32.857-16.448L-31.681-16.448L-31.681-16.151L-32.857-16.151L-32.857-13.976Q-32.857-13.655-32.738-13.427Q-32.619-13.198-32.338-13.198Q-32.158-13.198-32.041-13.321Q-31.923-13.444-31.871-13.624Q-31.818-13.804-31.818-13.976L-31.818-14.448L-31.537-14.448L-31.537-13.960Q-31.537-13.706-31.642-13.466Q-31.748-13.226-31.945-13.073Q-32.142-12.921-32.400-12.921Q-32.716-12.921-32.968-13.044Q-33.220-13.167-33.359-13.401Q-33.498-13.636-33.498-13.960M-28.810-12.999L-30.791-12.999L-30.791-13.296Q-30.521-13.296-30.353-13.341Q-30.185-13.386-30.185-13.558L-30.185-15.694Q-30.185-15.909-30.248-16.005Q-30.310-16.101-30.427-16.122Q-30.545-16.144-30.791-16.144L-30.791-16.440L-29.623-16.526L-29.623-15.741Q-29.545-15.952-29.392-16.138Q-29.240-16.323-29.041-16.425Q-28.841-16.526-28.615-16.526Q-28.369-16.526-28.177-16.382Q-27.986-16.237-27.986-16.007Q-27.986-15.851-28.091-15.741Q-28.197-15.632-28.353-15.632Q-28.509-15.632-28.619-15.741Q-28.728-15.851-28.728-16.007Q-28.728-16.167-28.623-16.272Q-28.947-16.272-29.162-16.044Q-29.377-15.815-29.472-15.476Q-29.568-15.136-29.568-14.831L-29.568-13.558Q-29.568-13.390-29.341-13.343Q-29.115-13.296-28.810-13.296L-28.810-12.999M-26.822-13.952L-26.822-15.694Q-26.822-15.909-26.884-16.005Q-26.947-16.101-27.066-16.122Q-27.185-16.144-27.431-16.144L-27.431-16.440L-26.185-16.526L-26.185-13.976L-26.185-13.952Q-26.185-13.640-26.131-13.478Q-26.076-13.315-25.925-13.245Q-25.775-13.175-25.455-13.175Q-25.025-13.175-24.752-13.513Q-24.478-13.851-24.478-14.296L-24.478-15.694Q-24.478-15.909-24.541-16.005Q-24.603-16.101-24.722-16.122Q-24.841-16.144-25.088-16.144L-25.088-16.440L-23.841-16.526L-23.841-13.741Q-23.841-13.530-23.779-13.435Q-23.716-13.339-23.597-13.317Q-23.478-13.296-23.232-13.296L-23.232-12.999L-24.455-12.921L-24.455-13.542Q-24.623-13.253-24.904-13.087Q-25.185-12.921-25.506-12.921Q-26.822-12.921-26.822-13.952M-22.744-14.726Q-22.744-15.222-22.494-15.647Q-22.244-16.073-21.824-16.319Q-21.404-16.565-20.904-16.565Q-20.365-16.565-19.974-16.440Q-19.584-16.315-19.584-15.901Q-19.584-15.796-19.634-15.704Q-19.685-15.612-19.777-15.562Q-19.869-15.511-19.978-15.511Q-20.084-15.511-20.175-15.562Q-20.267-15.612-20.318-15.704Q-20.369-15.796-20.369-15.901Q-20.369-16.124-20.201-16.229Q-20.423-16.288-20.896-16.288Q-21.193-16.288-21.408-16.149Q-21.623-16.011-21.754-15.780Q-21.884-15.550-21.943-15.280Q-22.002-15.011-22.002-14.726Q-22.002-14.331-21.869-13.981Q-21.736-13.632-21.465-13.415Q-21.193-13.198-20.795-13.198Q-20.420-13.198-20.144-13.415Q-19.869-13.632-19.767-13.991Q-19.752-14.054-19.689-14.054L-19.584-14.054Q-19.548-14.054-19.523-14.026Q-19.498-13.999-19.498-13.960L-19.498-13.937Q-19.631-13.456-20.015-13.188Q-20.400-12.921-20.904-12.921Q-21.267-12.921-21.601-13.058Q-21.935-13.194-22.195-13.444Q-22.455-13.694-22.599-14.030Q-22.744-14.366-22.744-14.726M-18.384-13.960L-18.384-16.151L-19.088-16.151L-19.088-16.405Q-18.732-16.405-18.490-16.638Q-18.248-16.870-18.136-17.218Q-18.025-17.565-18.025-17.921L-17.744-17.921L-17.744-16.448L-16.568-16.448L-16.568-16.151L-17.744-16.151L-17.744-13.976Q-17.744-13.655-17.625-13.427Q-17.506-13.198-17.224-13.198Q-17.045-13.198-16.927-13.321Q-16.810-13.444-16.757-13.624Q-16.705-13.804-16.705-13.976L-16.705-14.448L-16.423-14.448L-16.423-13.960Q-16.423-13.706-16.529-13.466Q-16.634-13.226-16.832-13.073Q-17.029-12.921-17.287-12.921Q-17.603-12.921-17.855-13.044Q-18.107-13.167-18.246-13.401Q-18.384-13.636-18.384-13.960M-13.845-12.999L-15.623-12.999L-15.623-13.296Q-15.349-13.296-15.181-13.343Q-15.013-13.390-15.013-13.558L-15.013-15.694Q-15.013-15.909-15.070-16.005Q-15.127-16.101-15.240-16.122Q-15.353-16.144-15.599-16.144L-15.599-16.440L-14.400-16.526L-14.400-13.558Q-14.400-13.390-14.254-13.343Q-14.107-13.296-13.845-13.296L-13.845-12.999M-15.287-17.921Q-15.287-18.112-15.152-18.243Q-15.017-18.374-14.822-18.374Q-14.701-18.374-14.597-18.312Q-14.494-18.249-14.431-18.145Q-14.369-18.042-14.369-17.921Q-14.369-17.726-14.500-17.591Q-14.631-17.456-14.822-17.456Q-15.021-17.456-15.154-17.589Q-15.287-17.722-15.287-17.921M-13.345-14.694Q-13.345-15.198-13.090-15.630Q-12.834-16.062-12.398-16.313Q-11.963-16.565-11.463-16.565Q-11.076-16.565-10.734-16.421Q-10.392-16.276-10.131-16.015Q-9.869-15.753-9.726-15.417Q-9.584-15.081-9.584-14.694Q-9.584-14.202-9.847-13.792Q-10.111-13.382-10.541-13.151Q-10.970-12.921-11.463-12.921Q-11.955-12.921-12.388-13.153Q-12.822-13.386-13.084-13.794Q-13.345-14.202-13.345-14.694M-11.463-13.198Q-11.006-13.198-10.754-13.421Q-10.502-13.644-10.414-13.995Q-10.326-14.347-10.326-14.792Q-10.326-15.222-10.420-15.560Q-10.513-15.897-10.767-16.104Q-11.021-16.312-11.463-16.312Q-12.111-16.312-12.355-15.895Q-12.599-15.479-12.599-14.792Q-12.599-14.347-12.511-13.995Q-12.423-13.644-12.172-13.421Q-11.920-13.198-11.463-13.198M-7.170-12.999L-9.025-12.999L-9.025-13.296Q-8.752-13.296-8.584-13.343Q-8.416-13.390-8.416-13.558L-8.416-15.694Q-8.416-15.909-8.478-16.005Q-8.541-16.101-8.660-16.122Q-8.779-16.144-9.025-16.144L-9.025-16.440L-7.834-16.526L-7.834-15.792Q-7.720-16.007-7.527-16.175Q-7.334-16.343-7.095-16.435Q-6.857-16.526-6.603-16.526Q-5.435-16.526-5.435-15.448L-5.435-13.558Q-5.435-13.390-5.265-13.343Q-5.095-13.296-4.826-13.296L-4.826-12.999L-6.681-12.999L-6.681-13.296Q-6.408-13.296-6.240-13.343Q-6.072-13.390-6.072-13.558L-6.072-15.433Q-6.072-15.815-6.193-16.044Q-6.314-16.272-6.666-16.272Q-6.978-16.272-7.232-16.110Q-7.486-15.948-7.632-15.679Q-7.779-15.409-7.779-15.112L-7.779-13.558Q-7.779-13.390-7.609-13.343Q-7.439-13.296-7.170-13.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(70.602 6.706)\">\u003Cpath d=\"M-37.868-3.499L-39.724-3.499L-39.724-3.796Q-39.450-3.796-39.282-3.843Q-39.114-3.890-39.114-4.058L-39.114-6.194Q-39.114-6.409-39.177-6.505Q-39.239-6.601-39.358-6.622Q-39.477-6.644-39.724-6.644L-39.724-6.940L-38.532-7.026L-38.532-6.292Q-38.419-6.507-38.225-6.675Q-38.032-6.843-37.794-6.935Q-37.556-7.026-37.302-7.026Q-36.341-7.026-36.165-6.315Q-35.981-6.644-35.653-6.835Q-35.325-7.026-34.946-7.026Q-33.770-7.026-33.770-5.948L-33.770-4.058Q-33.770-3.890-33.602-3.843Q-33.434-3.796-33.165-3.796L-33.165-3.499L-35.020-3.499L-35.020-3.796Q-34.747-3.796-34.579-3.841Q-34.411-3.886-34.411-4.058L-34.411-5.933Q-34.411-6.319-34.536-6.546Q-34.661-6.772-35.013-6.772Q-35.317-6.772-35.573-6.610Q-35.829-6.448-35.977-6.179Q-36.126-5.909-36.126-5.612L-36.126-4.058Q-36.126-3.890-35.956-3.843Q-35.786-3.796-35.516-3.796L-35.516-3.499L-37.372-3.499L-37.372-3.796Q-37.099-3.796-36.931-3.843Q-36.763-3.890-36.763-4.058L-36.763-5.933Q-36.763-6.319-36.888-6.546Q-37.013-6.772-37.364-6.772Q-37.669-6.772-37.925-6.610Q-38.181-6.448-38.329-6.179Q-38.477-5.909-38.477-5.612L-38.477-4.058Q-38.477-3.890-38.307-3.843Q-38.138-3.796-37.868-3.796L-37.868-3.499M-32.720-5.253Q-32.720-5.733-32.487-6.149Q-32.255-6.565-31.845-6.815Q-31.434-7.065-30.958-7.065Q-30.227-7.065-29.829-6.624Q-29.431-6.183-29.431-5.452Q-29.431-5.347-29.524-5.323L-31.974-5.323L-31.974-5.253Q-31.974-4.843-31.852-4.487Q-31.731-4.132-31.460-3.915Q-31.188-3.698-30.759-3.698Q-30.395-3.698-30.099-3.927Q-29.802-4.155-29.700-4.507Q-29.692-4.554-29.606-4.569L-29.524-4.569Q-29.431-4.542-29.431-4.460Q-29.431-4.452-29.438-4.421Q-29.501-4.194-29.640-4.011Q-29.778-3.827-29.970-3.694Q-30.161-3.562-30.380-3.491Q-30.599-3.421-30.837-3.421Q-31.208-3.421-31.546-3.558Q-31.884-3.694-32.151-3.946Q-32.419-4.198-32.569-4.538Q-32.720-4.878-32.720-5.253M-31.966-5.562L-30.005-5.562Q-30.005-5.866-30.106-6.157Q-30.208-6.448-30.425-6.630Q-30.641-6.812-30.958-6.812Q-31.259-6.812-31.489-6.624Q-31.720-6.437-31.843-6.145Q-31.966-5.854-31.966-5.562M-27.013-3.499L-28.868-3.499L-28.868-3.796Q-28.595-3.796-28.427-3.843Q-28.259-3.890-28.259-4.058L-28.259-6.194Q-28.259-6.409-28.321-6.505Q-28.384-6.601-28.503-6.622Q-28.622-6.644-28.868-6.644L-28.868-6.940L-27.677-7.026L-27.677-6.292Q-27.563-6.507-27.370-6.675Q-27.177-6.843-26.938-6.935Q-26.700-7.026-26.446-7.026Q-25.485-7.026-25.309-6.315Q-25.126-6.644-24.798-6.835Q-24.470-7.026-24.091-7.026Q-22.915-7.026-22.915-5.948L-22.915-4.058Q-22.915-3.890-22.747-3.843Q-22.579-3.796-22.309-3.796L-22.309-3.499L-24.165-3.499L-24.165-3.796Q-23.891-3.796-23.724-3.841Q-23.556-3.886-23.556-4.058L-23.556-5.933Q-23.556-6.319-23.681-6.546Q-23.806-6.772-24.157-6.772Q-24.462-6.772-24.718-6.610Q-24.974-6.448-25.122-6.179Q-25.270-5.909-25.270-5.612L-25.270-4.058Q-25.270-3.890-25.100-3.843Q-24.931-3.796-24.661-3.796L-24.661-3.499L-26.516-3.499L-26.516-3.796Q-26.243-3.796-26.075-3.843Q-25.907-3.890-25.907-4.058L-25.907-5.933Q-25.907-6.319-26.032-6.546Q-26.157-6.772-26.509-6.772Q-26.813-6.772-27.069-6.610Q-27.325-6.448-27.474-6.179Q-27.622-5.909-27.622-5.612L-27.622-4.058Q-27.622-3.890-27.452-3.843Q-27.282-3.796-27.013-3.796L-27.013-3.499M-21.864-5.194Q-21.864-5.698-21.608-6.130Q-21.352-6.562-20.917-6.813Q-20.481-7.065-19.981-7.065Q-19.595-7.065-19.253-6.921Q-18.911-6.776-18.649-6.515Q-18.388-6.253-18.245-5.917Q-18.102-5.581-18.102-5.194Q-18.102-4.702-18.366-4.292Q-18.630-3.882-19.059-3.651Q-19.489-3.421-19.981-3.421Q-20.474-3.421-20.907-3.653Q-21.341-3.886-21.602-4.294Q-21.864-4.702-21.864-5.194M-19.981-3.698Q-19.524-3.698-19.272-3.921Q-19.020-4.144-18.932-4.495Q-18.845-4.847-18.845-5.292Q-18.845-5.722-18.938-6.060Q-19.032-6.397-19.286-6.604Q-19.540-6.812-19.981-6.812Q-20.630-6.812-20.874-6.395Q-21.118-5.979-21.118-5.292Q-21.118-4.847-21.030-4.495Q-20.942-4.144-20.690-3.921Q-20.438-3.698-19.981-3.698M-15.610-3.499L-17.591-3.499L-17.591-3.796Q-17.321-3.796-17.153-3.841Q-16.985-3.886-16.985-4.058L-16.985-6.194Q-16.985-6.409-17.048-6.505Q-17.110-6.601-17.227-6.622Q-17.345-6.644-17.591-6.644L-17.591-6.940L-16.423-7.026L-16.423-6.241Q-16.345-6.452-16.192-6.638Q-16.040-6.823-15.841-6.925Q-15.641-7.026-15.415-7.026Q-15.169-7.026-14.977-6.882Q-14.786-6.737-14.786-6.507Q-14.786-6.351-14.891-6.241Q-14.997-6.132-15.153-6.132Q-15.309-6.132-15.419-6.241Q-15.528-6.351-15.528-6.507Q-15.528-6.667-15.423-6.772Q-15.747-6.772-15.962-6.544Q-16.177-6.315-16.272-5.976Q-16.368-5.636-16.368-5.331L-16.368-4.058Q-16.368-3.890-16.141-3.843Q-15.915-3.796-15.610-3.796L-15.610-3.499M-13.888-2.202Q-13.774-2.124-13.599-2.124Q-13.309-2.124-13.089-2.337Q-12.868-2.550-12.743-2.851L-12.454-3.499L-13.727-6.386Q-13.809-6.562-13.954-6.606Q-14.099-6.651-14.368-6.651L-14.368-6.948L-12.649-6.948L-12.649-6.651Q-13.071-6.651-13.071-6.468Q-13.071-6.456-13.056-6.386L-12.118-4.261L-11.286-6.171Q-11.247-6.261-11.247-6.339Q-11.247-6.479-11.349-6.565Q-11.450-6.651-11.591-6.651L-11.591-6.948L-10.239-6.948L-10.239-6.651Q-10.493-6.651-10.686-6.526Q-10.880-6.401-10.985-6.171L-12.431-2.851Q-12.544-2.597-12.710-2.374Q-12.876-2.151-13.104-2.009Q-13.333-1.866-13.599-1.866Q-13.895-1.866-14.136-2.058Q-14.376-2.249-14.376-2.538Q-14.376-2.694-14.270-2.796Q-14.165-2.897-14.016-2.897Q-13.911-2.897-13.831-2.851Q-13.751-2.804-13.704-2.726Q-13.657-2.647-13.657-2.538Q-13.657-2.417-13.718-2.329Q-13.778-2.241-13.888-2.202\" 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=\"M128.075-14.88h51.215v-28.453h-51.215Z\"\u002F>\u003Cg transform=\"translate(190.433 -23.607)\">\u003Cpath d=\"M-45.013-3.421L-45.013-5.226Q-45.013-5.253-44.982-5.284Q-44.951-5.315-44.927-5.315L-44.822-5.315Q-44.791-5.315-44.761-5.286Q-44.732-5.257-44.732-5.226Q-44.732-4.444-44.216-4.036Q-43.701-3.628-42.892-3.628Q-42.595-3.628-42.340-3.778Q-42.084-3.929-41.933-4.185Q-41.783-4.440-41.783-4.737Q-41.783-5.136-42.029-5.440Q-42.275-5.745-42.646-5.827L-43.767-6.085Q-44.107-6.159-44.394-6.380Q-44.681-6.601-44.847-6.919Q-45.013-7.237-45.013-7.589Q-45.013-8.019-44.783-8.374Q-44.552-8.729-44.172-8.931Q-43.791-9.132-43.365-9.132Q-43.115-9.132-42.869-9.073Q-42.623-9.015-42.404-8.892Q-42.185-8.769-42.021-8.589L-41.693-9.085Q-41.662-9.132-41.623-9.132L-41.576-9.132Q-41.548-9.132-41.517-9.101Q-41.486-9.069-41.486-9.042L-41.486-7.233Q-41.486-7.210-41.517-7.179Q-41.548-7.147-41.576-7.147L-41.677-7.147Q-41.709-7.147-41.738-7.177Q-41.767-7.206-41.767-7.233Q-41.767-7.366-41.810-7.552Q-41.853-7.737-41.918-7.892Q-41.982-8.046-42.082-8.204Q-42.181-8.362-42.271-8.452Q-42.701-8.858-43.365-8.858Q-43.642-8.858-43.902-8.726Q-44.162-8.593-44.320-8.358Q-44.478-8.124-44.478-7.843Q-44.478-7.487-44.238-7.216Q-43.998-6.944-43.631-6.858L-42.517-6.604Q-42.240-6.538-42.007-6.384Q-41.775-6.229-41.605-6.011Q-41.435-5.792-41.341-5.534Q-41.248-5.276-41.248-4.987Q-41.248-4.659-41.373-4.356Q-41.498-4.054-41.732-3.817Q-41.966-3.581-42.259-3.456Q-42.552-3.331-42.892-3.331Q-43.908-3.331-44.478-3.874L-44.806-3.378Q-44.838-3.331-44.877-3.331L-44.927-3.331Q-44.951-3.331-44.982-3.362Q-45.013-3.394-45.013-3.421M-38.646-1.948L-40.502-1.948L-40.502-2.241Q-40.232-2.241-40.064-2.286Q-39.896-2.331-39.896-2.507L-39.896-6.331Q-39.896-6.538-40.052-6.591Q-40.209-6.644-40.502-6.644L-40.502-6.940L-39.279-7.026L-39.279-6.562Q-39.048-6.784-38.734-6.905Q-38.420-7.026-38.080-7.026Q-37.607-7.026-37.203-6.780Q-36.798-6.534-36.566-6.118Q-36.334-5.702-36.334-5.226Q-36.334-4.851-36.482-4.522Q-36.631-4.194-36.900-3.942Q-37.170-3.690-37.513-3.556Q-37.857-3.421-38.216-3.421Q-38.506-3.421-38.777-3.542Q-39.048-3.663-39.256-3.874L-39.256-2.507Q-39.256-2.331-39.088-2.286Q-38.920-2.241-38.646-2.241L-38.646-1.948M-39.256-6.163L-39.256-4.323Q-39.103-4.034-38.841-3.854Q-38.580-3.675-38.271-3.675Q-37.986-3.675-37.763-3.813Q-37.541-3.952-37.388-4.183Q-37.236-4.413-37.158-4.685Q-37.080-4.956-37.080-5.226Q-37.080-5.558-37.205-5.915Q-37.330-6.272-37.578-6.509Q-37.826-6.745-38.173-6.745Q-38.498-6.745-38.793-6.589Q-39.088-6.433-39.256-6.163M-33.896-3.499L-35.728-3.499L-35.728-3.796Q-35.455-3.796-35.287-3.843Q-35.119-3.890-35.119-4.058L-35.119-8.218Q-35.119-8.433-35.181-8.528Q-35.244-8.624-35.363-8.645Q-35.482-8.667-35.728-8.667L-35.728-8.964L-34.506-9.050L-34.506-4.058Q-34.506-3.890-34.338-3.843Q-34.170-3.796-33.896-3.796L-33.896-3.499M-31.591-3.499L-33.369-3.499L-33.369-3.796Q-33.095-3.796-32.927-3.843Q-32.759-3.890-32.759-4.058L-32.759-6.194Q-32.759-6.409-32.816-6.505Q-32.873-6.601-32.986-6.622Q-33.099-6.644-33.345-6.644L-33.345-6.940L-32.146-7.026L-32.146-4.058Q-32.146-3.890-32-3.843Q-31.853-3.796-31.591-3.796L-31.591-3.499M-33.033-8.421Q-33.033-8.612-32.898-8.743Q-32.763-8.874-32.568-8.874Q-32.447-8.874-32.343-8.812Q-32.240-8.749-32.177-8.645Q-32.115-8.542-32.115-8.421Q-32.115-8.226-32.246-8.091Q-32.377-7.956-32.568-7.956Q-32.767-7.956-32.900-8.089Q-33.033-8.222-33.033-8.421M-30.466-4.460L-30.466-6.651L-31.170-6.651L-31.170-6.905Q-30.814-6.905-30.572-7.138Q-30.330-7.370-30.218-7.718Q-30.107-8.065-30.107-8.421L-29.826-8.421L-29.826-6.948L-28.650-6.948L-28.650-6.651L-29.826-6.651L-29.826-4.476Q-29.826-4.155-29.707-3.927Q-29.588-3.698-29.306-3.698Q-29.127-3.698-29.009-3.821Q-28.892-3.944-28.840-4.124Q-28.787-4.304-28.787-4.476L-28.787-4.948L-28.506-4.948L-28.506-4.460Q-28.506-4.206-28.611-3.966Q-28.716-3.726-28.914-3.573Q-29.111-3.421-29.369-3.421Q-29.685-3.421-29.937-3.544Q-30.189-3.667-30.328-3.901Q-30.466-4.136-30.466-4.460\" 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=\"M128.075 36.335h51.215V7.882h-51.215Z\"\u002F>\u003Cg transform=\"translate(189.138 27.607)\">\u003Cpath d=\"M-43.447-3.499L-45.197-3.499L-45.197-3.796Q-44.498-3.796-44.310-4.276L-42.509-9.101Q-42.455-9.210-42.341-9.210L-42.271-9.210Q-42.158-9.210-42.103-9.101L-40.213-4.058Q-40.134-3.890-39.931-3.843Q-39.728-3.796-39.416-3.796L-39.416-3.499L-41.638-3.499L-41.638-3.796Q-40.998-3.796-40.998-4.011Q-40.998-4.030-41-4.040Q-41.002-4.050-41.006-4.058L-41.470-5.292L-43.615-5.292L-43.998-4.276Q-44.002-4.261-44.007-4.231Q-44.013-4.202-44.013-4.179Q-44.013-4.038-43.923-3.954Q-43.834-3.870-43.701-3.833Q-43.568-3.796-43.447-3.796L-43.447-3.499M-42.541-8.155L-43.509-5.589L-41.584-5.589L-42.541-8.155M-36.974-3.499L-38.806-3.499L-38.806-3.796Q-38.533-3.796-38.365-3.843Q-38.197-3.890-38.197-4.058L-38.197-8.218Q-38.197-8.433-38.259-8.528Q-38.322-8.624-38.441-8.645Q-38.560-8.667-38.806-8.667L-38.806-8.964L-37.584-9.050L-37.584-4.058Q-37.584-3.890-37.416-3.843Q-37.248-3.796-36.974-3.796L-36.974-3.499M-34.670-3.499L-36.447-3.499L-36.447-3.796Q-36.173-3.796-36.006-3.843Q-35.838-3.890-35.838-4.058L-35.838-6.194Q-35.838-6.409-35.894-6.505Q-35.951-6.601-36.064-6.622Q-36.177-6.644-36.423-6.644L-36.423-6.940L-35.224-7.026L-35.224-4.058Q-35.224-3.890-35.078-3.843Q-34.931-3.796-34.670-3.796L-34.670-3.499M-36.111-8.421Q-36.111-8.612-35.976-8.743Q-35.841-8.874-35.646-8.874Q-35.525-8.874-35.422-8.812Q-35.318-8.749-35.256-8.645Q-35.193-8.542-35.193-8.421Q-35.193-8.226-35.324-8.091Q-35.455-7.956-35.646-7.956Q-35.845-7.956-35.978-8.089Q-36.111-8.222-36.111-8.421M-34.170-2.890Q-34.170-3.171-33.959-3.382Q-33.748-3.593-33.463-3.683Q-33.619-3.808-33.697-3.997Q-33.775-4.187-33.775-4.386Q-33.775-4.741-33.545-5.034Q-33.912-5.374-33.912-5.843Q-33.912-6.194-33.709-6.464Q-33.506-6.733-33.185-6.880Q-32.865-7.026-32.521-7.026Q-32.002-7.026-31.631-6.745Q-31.267-7.116-30.720-7.116Q-30.541-7.116-30.414-6.989Q-30.287-6.862-30.287-6.683Q-30.287-6.577-30.365-6.499Q-30.443-6.421-30.552-6.421Q-30.662-6.421-30.738-6.497Q-30.814-6.573-30.814-6.683Q-30.814-6.784-30.775-6.835Q-30.767-6.843-30.763-6.849Q-30.759-6.854-30.759-6.858Q-31.134-6.858-31.455-6.604Q-31.134-6.265-31.134-5.843Q-31.134-5.573-31.252-5.356Q-31.369-5.140-31.574-4.981Q-31.779-4.823-32.021-4.741Q-32.263-4.659-32.521-4.659Q-32.740-4.659-32.953-4.718Q-33.166-4.776-33.361-4.897Q-33.455-4.757-33.455-4.577Q-33.455-4.370-33.318-4.218Q-33.181-4.065-32.974-4.065L-32.279-4.065Q-31.791-4.065-31.379-3.981Q-30.966-3.897-30.687-3.640Q-30.408-3.382-30.408-2.890Q-30.408-2.526-30.728-2.294Q-31.048-2.062-31.490-1.960Q-31.931-1.858-32.287-1.858Q-32.642-1.858-33.086-1.960Q-33.529-2.062-33.849-2.294Q-34.170-2.526-34.170-2.890M-33.666-2.890Q-33.666-2.694-33.521-2.546Q-33.377-2.397-33.164-2.308Q-32.951-2.218-32.711-2.171Q-32.470-2.124-32.287-2.124Q-32.045-2.124-31.715-2.202Q-31.384-2.280-31.148-2.454Q-30.912-2.628-30.912-2.890Q-30.912-3.296-31.322-3.405Q-31.732-3.515-32.295-3.515L-32.974-3.515Q-33.244-3.515-33.455-3.337Q-33.666-3.159-33.666-2.890M-32.521-4.925Q-31.798-4.925-31.798-5.843Q-31.798-6.765-32.521-6.765Q-33.248-6.765-33.248-5.843Q-33.248-4.925-32.521-4.925M-27.994-3.499L-29.849-3.499L-29.849-3.796Q-29.576-3.796-29.408-3.843Q-29.240-3.890-29.240-4.058L-29.240-6.194Q-29.240-6.409-29.302-6.505Q-29.365-6.601-29.484-6.622Q-29.603-6.644-29.849-6.644L-29.849-6.940L-28.658-7.026L-28.658-6.292Q-28.545-6.507-28.351-6.675Q-28.158-6.843-27.920-6.935Q-27.681-7.026-27.427-7.026Q-26.259-7.026-26.259-5.948L-26.259-4.058Q-26.259-3.890-26.090-3.843Q-25.920-3.796-25.650-3.796L-25.650-3.499L-27.506-3.499L-27.506-3.796Q-27.232-3.796-27.064-3.843Q-26.896-3.890-26.896-4.058L-26.896-5.933Q-26.896-6.315-27.017-6.544Q-27.138-6.772-27.490-6.772Q-27.802-6.772-28.056-6.610Q-28.310-6.448-28.457-6.179Q-28.603-5.909-28.603-5.612L-28.603-4.058Q-28.603-3.890-28.433-3.843Q-28.263-3.796-27.994-3.796\" 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=\"M227.66-14.88h68.287v-28.453H227.66Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(281.61 -18.124)\">\u003Cpath d=\"M-42.752-12.999L-45.134-12.999L-45.134-13.296Q-44.810-13.296-44.568-13.343Q-44.326-13.390-44.326-13.558L-44.326-17.901Q-44.326-18.073-44.568-18.120Q-44.810-18.167-45.134-18.167L-45.134-18.464L-42.189-18.464Q-41.845-18.464-41.490-18.364Q-41.134-18.265-40.840-18.073Q-40.545-17.882-40.363-17.597Q-40.181-17.312-40.181-16.952Q-40.181-16.479-40.492-16.144Q-40.802-15.808-41.267-15.636Q-41.732-15.464-42.189-15.464L-43.556-15.464L-43.556-13.558Q-43.556-13.390-43.314-13.343Q-43.072-13.296-42.752-13.296L-42.752-12.999M-43.584-17.901L-43.584-15.733L-42.408-15.733Q-41.720-15.733-41.382-16.009Q-41.045-16.284-41.045-16.952Q-41.045-17.616-41.382-17.892Q-41.720-18.167-42.408-18.167L-43.181-18.167Q-43.400-18.167-43.492-18.124Q-43.584-18.081-43.584-17.901M-39.236-15.733Q-39.236-16.327-39.004-16.858Q-38.771-17.390-38.355-17.790Q-37.939-18.190-37.406-18.411Q-36.873-18.632-36.267-18.632Q-35.830-18.632-35.431-18.450Q-35.033-18.269-34.724-17.937L-34.252-18.601Q-34.220-18.632-34.189-18.632L-34.142-18.632Q-34.115-18.632-34.084-18.601Q-34.052-18.569-34.052-18.542L-34.052-16.405Q-34.052-16.382-34.084-16.351Q-34.115-16.319-34.142-16.319L-34.259-16.319Q-34.287-16.319-34.318-16.351Q-34.349-16.382-34.349-16.405Q-34.349-16.671-34.492-17.024Q-34.634-17.378-34.814-17.616Q-35.068-17.948-35.418-18.142Q-35.767-18.335-36.173-18.335Q-36.677-18.335-37.131-18.116Q-37.584-17.897-37.877-17.503Q-38.373-16.835-38.373-15.733Q-38.373-15.202-38.236-14.735Q-38.099-14.269-37.824-13.903Q-37.548-13.538-37.129-13.333Q-36.709-13.128-36.166-13.128Q-35.677-13.128-35.254-13.372Q-34.830-13.616-34.582-14.036Q-34.334-14.456-34.334-14.952Q-34.334-14.987-34.304-15.013Q-34.275-15.038-34.244-15.038L-34.142-15.038Q-34.099-15.038-34.076-15.009Q-34.052-14.979-34.052-14.937Q-34.052-14.499-34.228-14.110Q-34.404-13.722-34.715-13.438Q-35.025-13.155-35.435-12.993Q-35.845-12.831-36.267-12.831Q-36.857-12.831-37.398-13.052Q-37.939-13.272-38.355-13.677Q-38.771-14.081-39.004-14.610Q-39.236-15.140-39.236-15.733\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(281.61 -18.124)\">\u003Cpath d=\"M-28.635-12.999L-30.413-12.999L-30.413-13.296Q-30.139-13.296-29.971-13.343Q-29.803-13.390-29.803-13.558L-29.803-15.694Q-29.803-15.909-29.860-16.005Q-29.917-16.101-30.030-16.122Q-30.143-16.144-30.389-16.144L-30.389-16.440L-29.190-16.526L-29.190-13.558Q-29.190-13.390-29.044-13.343Q-28.897-13.296-28.635-13.296L-28.635-12.999M-30.077-17.921Q-30.077-18.112-29.942-18.243Q-29.807-18.374-29.612-18.374Q-29.491-18.374-29.387-18.312Q-29.284-18.249-29.221-18.145Q-29.159-18.042-29.159-17.921Q-29.159-17.726-29.290-17.591Q-29.421-17.456-29.612-17.456Q-29.811-17.456-29.944-17.589Q-30.077-17.722-30.077-17.921M-26.206-12.999L-28.061-12.999L-28.061-13.296Q-27.788-13.296-27.620-13.343Q-27.452-13.390-27.452-13.558L-27.452-15.694Q-27.452-15.909-27.514-16.005Q-27.577-16.101-27.696-16.122Q-27.815-16.144-28.061-16.144L-28.061-16.440L-26.870-16.526L-26.870-15.792Q-26.756-16.007-26.563-16.175Q-26.370-16.343-26.131-16.435Q-25.893-16.526-25.639-16.526Q-24.471-16.526-24.471-15.448L-24.471-13.558Q-24.471-13.390-24.301-13.343Q-24.131-13.296-23.862-13.296L-23.862-12.999L-25.717-12.999L-25.717-13.296Q-25.444-13.296-25.276-13.343Q-25.108-13.390-25.108-13.558L-25.108-15.433Q-25.108-15.815-25.229-16.044Q-25.350-16.272-25.702-16.272Q-26.014-16.272-26.268-16.110Q-26.522-15.948-26.669-15.679Q-26.815-15.409-26.815-15.112L-26.815-13.558Q-26.815-13.390-26.645-13.343Q-26.475-13.296-26.206-13.296L-26.206-12.999M-23.374-14.726Q-23.374-15.222-23.124-15.647Q-22.874-16.073-22.454-16.319Q-22.034-16.565-21.534-16.565Q-20.995-16.565-20.604-16.440Q-20.213-16.315-20.213-15.901Q-20.213-15.796-20.264-15.704Q-20.315-15.612-20.407-15.562Q-20.499-15.511-20.608-15.511Q-20.713-15.511-20.805-15.562Q-20.897-15.612-20.948-15.704Q-20.999-15.796-20.999-15.901Q-20.999-16.124-20.831-16.229Q-21.053-16.288-21.526-16.288Q-21.823-16.288-22.038-16.149Q-22.253-16.011-22.383-15.780Q-22.514-15.550-22.573-15.280Q-22.631-15.011-22.631-14.726Q-22.631-14.331-22.499-13.981Q-22.366-13.632-22.094-13.415Q-21.823-13.198-21.424-13.198Q-21.049-13.198-20.774-13.415Q-20.499-13.632-20.397-13.991Q-20.381-14.054-20.319-14.054L-20.213-14.054Q-20.178-14.054-20.153-14.026Q-20.128-13.999-20.128-13.960L-20.128-13.937Q-20.260-13.456-20.645-13.188Q-21.030-12.921-21.534-12.921Q-21.897-12.921-22.231-13.058Q-22.565-13.194-22.825-13.444Q-23.085-13.694-23.229-14.030Q-23.374-14.366-23.374-14.726M-17.631-12.999L-19.612-12.999L-19.612-13.296Q-19.342-13.296-19.174-13.341Q-19.006-13.386-19.006-13.558L-19.006-15.694Q-19.006-15.909-19.069-16.005Q-19.131-16.101-19.249-16.122Q-19.366-16.144-19.612-16.144L-19.612-16.440L-18.444-16.526L-18.444-15.741Q-18.366-15.952-18.213-16.138Q-18.061-16.323-17.862-16.425Q-17.663-16.526-17.436-16.526Q-17.190-16.526-16.999-16.382Q-16.807-16.237-16.807-16.007Q-16.807-15.851-16.913-15.741Q-17.018-15.632-17.174-15.632Q-17.331-15.632-17.440-15.741Q-17.549-15.851-17.549-16.007Q-17.549-16.167-17.444-16.272Q-17.768-16.272-17.983-16.044Q-18.198-15.815-18.294-15.476Q-18.389-15.136-18.389-14.831L-18.389-13.558Q-18.389-13.390-18.163-13.343Q-17.936-13.296-17.631-13.296L-17.631-12.999M-16.327-14.753Q-16.327-15.233-16.094-15.649Q-15.862-16.065-15.452-16.315Q-15.042-16.565-14.565-16.565Q-13.835-16.565-13.436-16.124Q-13.038-15.683-13.038-14.952Q-13.038-14.847-13.131-14.823L-15.581-14.823L-15.581-14.753Q-15.581-14.343-15.460-13.987Q-15.338-13.632-15.067-13.415Q-14.796-13.198-14.366-13.198Q-14.003-13.198-13.706-13.427Q-13.409-13.655-13.307-14.007Q-13.299-14.054-13.213-14.069L-13.131-14.069Q-13.038-14.042-13.038-13.960Q-13.038-13.952-13.046-13.921Q-13.108-13.694-13.247-13.511Q-13.385-13.327-13.577-13.194Q-13.768-13.062-13.987-12.991Q-14.206-12.921-14.444-12.921Q-14.815-12.921-15.153-13.058Q-15.491-13.194-15.758-13.446Q-16.026-13.698-16.176-14.038Q-16.327-14.378-16.327-14.753M-15.573-15.062L-13.612-15.062Q-13.612-15.366-13.713-15.657Q-13.815-15.948-14.032-16.130Q-14.249-16.312-14.565-16.312Q-14.866-16.312-15.096-16.124Q-15.327-15.937-15.450-15.645Q-15.573-15.354-15.573-15.062M-10.620-12.999L-12.475-12.999L-12.475-13.296Q-12.202-13.296-12.034-13.343Q-11.866-13.390-11.866-13.558L-11.866-15.694Q-11.866-15.909-11.928-16.005Q-11.991-16.101-12.110-16.122Q-12.229-16.144-12.475-16.144L-12.475-16.440L-11.284-16.526L-11.284-15.792Q-11.171-16.007-10.977-16.175Q-10.784-16.343-10.546-16.435Q-10.307-16.526-10.053-16.526Q-9.092-16.526-8.917-15.815Q-8.733-16.144-8.405-16.335Q-8.077-16.526-7.698-16.526Q-6.522-16.526-6.522-15.448L-6.522-13.558Q-6.522-13.390-6.354-13.343Q-6.186-13.296-5.917-13.296L-5.917-12.999L-7.772-12.999L-7.772-13.296Q-7.499-13.296-7.331-13.341Q-7.163-13.386-7.163-13.558L-7.163-15.433Q-7.163-15.819-7.288-16.046Q-7.413-16.272-7.764-16.272Q-8.069-16.272-8.325-16.110Q-8.581-15.948-8.729-15.679Q-8.878-15.409-8.878-15.112L-8.878-13.558Q-8.878-13.390-8.708-13.343Q-8.538-13.296-8.268-13.296L-8.268-12.999L-10.124-12.999L-10.124-13.296Q-9.850-13.296-9.682-13.343Q-9.514-13.390-9.514-13.558L-9.514-15.433Q-9.514-15.819-9.639-16.046Q-9.764-16.272-10.116-16.272Q-10.421-16.272-10.676-16.110Q-10.932-15.948-11.081-15.679Q-11.229-15.409-11.229-15.112L-11.229-13.558Q-11.229-13.390-11.059-13.343Q-10.889-13.296-10.620-13.296L-10.620-12.999M-5.471-14.753Q-5.471-15.233-5.239-15.649Q-5.006-16.065-4.596-16.315Q-4.186-16.565-3.710-16.565Q-2.979-16.565-2.581-16.124Q-2.182-15.683-2.182-14.952Q-2.182-14.847-2.276-14.823L-4.725-14.823L-4.725-14.753Q-4.725-14.343-4.604-13.987Q-4.483-13.632-4.212-13.415Q-3.940-13.198-3.510-13.198Q-3.147-13.198-2.850-13.427Q-2.553-13.655-2.452-14.007Q-2.444-14.054-2.358-14.069L-2.276-14.069Q-2.182-14.042-2.182-13.960Q-2.182-13.952-2.190-13.921Q-2.253-13.694-2.391-13.511Q-2.530-13.327-2.721-13.194Q-2.913-13.062-3.131-12.991Q-3.350-12.921-3.588-12.921Q-3.960-12.921-4.297-13.058Q-4.635-13.194-4.903-13.446Q-5.171-13.698-5.321-14.038Q-5.471-14.378-5.471-14.753M-4.717-15.062L-2.756-15.062Q-2.756-15.366-2.858-15.657Q-2.960-15.948-3.176-16.130Q-3.393-16.312-3.710-16.312Q-4.010-16.312-4.241-16.124Q-4.471-15.937-4.594-15.645Q-4.717-15.354-4.717-15.062M0.236-12.999L-1.620-12.999L-1.620-13.296Q-1.346-13.296-1.178-13.343Q-1.010-13.390-1.010-13.558L-1.010-15.694Q-1.010-15.909-1.073-16.005Q-1.135-16.101-1.254-16.122Q-1.374-16.144-1.620-16.144L-1.620-16.440L-0.428-16.526L-0.428-15.792Q-0.315-16.007-0.122-16.175Q0.072-16.343 0.310-16.435Q0.548-16.526 0.802-16.526Q1.970-16.526 1.970-15.448L1.970-13.558Q1.970-13.390 2.140-13.343Q2.310-13.296 2.579-13.296L2.579-12.999L0.724-12.999L0.724-13.296Q0.997-13.296 1.165-13.343Q1.333-13.390 1.333-13.558L1.333-15.433Q1.333-15.815 1.212-16.044Q1.091-16.272 0.740-16.272Q0.427-16.272 0.173-16.110Q-0.081-15.948-0.227-15.679Q-0.374-15.409-0.374-15.112L-0.374-13.558Q-0.374-13.390-0.204-13.343Q-0.034-13.296 0.236-13.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(281.61 -18.124)\">\u003Cpath d=\"M3.429-13.960L3.429-16.151L2.726-16.151L2.726-16.405Q3.082-16.405 3.324-16.638Q3.566-16.870 3.677-17.218Q3.789-17.565 3.789-17.921L4.070-17.921L4.070-16.448L5.246-16.448L5.246-16.151L4.070-16.151L4.070-13.976Q4.070-13.655 4.189-13.427Q4.308-13.198 4.589-13.198Q4.769-13.198 4.886-13.321Q5.003-13.444 5.056-13.624Q5.109-13.804 5.109-13.976L5.109-14.448L5.390-14.448L5.390-13.960Q5.390-13.706 5.285-13.466Q5.179-13.226 4.982-13.073Q4.785-12.921 4.527-12.921Q4.211-12.921 3.959-13.044Q3.707-13.167 3.568-13.401Q3.429-13.636 3.429-13.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(281.61 -18.124)\">\u003Cpath d=\"M-29.864-4.331Q-29.864-4.815-29.462-5.110Q-29.059-5.405-28.509-5.524Q-27.958-5.644-27.466-5.644L-27.466-5.933Q-27.466-6.159-27.581-6.366Q-27.696-6.573-27.893-6.692Q-28.091-6.812-28.321-6.812Q-28.747-6.812-29.032-6.706Q-28.962-6.679-28.915-6.624Q-28.868-6.569-28.843-6.499Q-28.817-6.429-28.817-6.354Q-28.817-6.249-28.868-6.157Q-28.919-6.065-29.011-6.015Q-29.102-5.964-29.208-5.964Q-29.313-5.964-29.405-6.015Q-29.497-6.065-29.548-6.157Q-29.598-6.249-29.598-6.354Q-29.598-6.772-29.210-6.919Q-28.821-7.065-28.321-7.065Q-27.989-7.065-27.636-6.935Q-27.282-6.804-27.054-6.550Q-26.825-6.296-26.825-5.948L-26.825-4.147Q-26.825-4.015-26.753-3.905Q-26.680-3.796-26.552-3.796Q-26.427-3.796-26.358-3.901Q-26.290-4.007-26.290-4.147L-26.290-4.659L-26.009-4.659L-26.009-4.147Q-26.009-3.944-26.126-3.786Q-26.243-3.628-26.425-3.544Q-26.606-3.460-26.809-3.460Q-27.040-3.460-27.192-3.632Q-27.345-3.804-27.376-4.034Q-27.536-3.753-27.845-3.587Q-28.153-3.421-28.505-3.421Q-29.016-3.421-29.440-3.644Q-29.864-3.866-29.864-4.331M-29.177-4.331Q-29.177-4.046-28.950-3.860Q-28.723-3.675-28.430-3.675Q-28.184-3.675-27.960-3.792Q-27.735-3.909-27.600-4.112Q-27.466-4.315-27.466-4.569L-27.466-5.401Q-27.731-5.401-28.016-5.347Q-28.302-5.292-28.573-5.163Q-28.845-5.034-29.011-4.827Q-29.177-4.620-29.177-4.331M-23.899-3.421Q-24.380-3.421-24.788-3.665Q-25.196-3.909-25.434-4.323Q-25.673-4.737-25.673-5.226Q-25.673-5.718-25.415-6.134Q-25.157-6.550-24.725-6.788Q-24.294-7.026-23.802-7.026Q-23.180-7.026-22.731-6.589L-22.731-8.218Q-22.731-8.433-22.794-8.528Q-22.856-8.624-22.973-8.645Q-23.091-8.667-23.337-8.667L-23.337-8.964L-22.114-9.050L-22.114-4.241Q-22.114-4.030-22.052-3.935Q-21.989-3.839-21.872-3.817Q-21.755-3.796-21.505-3.796L-21.505-3.499L-22.755-3.421L-22.755-3.905Q-23.220-3.421-23.899-3.421M-23.833-3.675Q-23.493-3.675-23.200-3.866Q-22.907-4.058-22.755-4.354L-22.755-6.187Q-22.903-6.460-23.165-6.616Q-23.427-6.772-23.739-6.772Q-24.364-6.772-24.647-6.325Q-24.930-5.878-24.930-5.218Q-24.930-4.573-24.679-4.124Q-24.427-3.675-23.833-3.675M-19.180-3.421Q-19.661-3.421-20.069-3.665Q-20.477-3.909-20.716-4.323Q-20.954-4.737-20.954-5.226Q-20.954-5.718-20.696-6.134Q-20.438-6.550-20.007-6.788Q-19.575-7.026-19.083-7.026Q-18.462-7.026-18.012-6.589L-18.012-8.218Q-18.012-8.433-18.075-8.528Q-18.137-8.624-18.255-8.645Q-18.372-8.667-18.618-8.667L-18.618-8.964L-17.395-9.050L-17.395-4.241Q-17.395-4.030-17.333-3.935Q-17.270-3.839-17.153-3.817Q-17.036-3.796-16.786-3.796L-16.786-3.499L-18.036-3.421L-18.036-3.905Q-18.501-3.421-19.180-3.421M-19.114-3.675Q-18.774-3.675-18.481-3.866Q-18.188-4.058-18.036-4.354L-18.036-6.187Q-18.184-6.460-18.446-6.616Q-18.708-6.772-19.020-6.772Q-19.645-6.772-19.929-6.325Q-20.212-5.878-20.212-5.218Q-20.212-4.573-19.960-4.124Q-19.708-3.675-19.114-3.675M-16.278-5.253Q-16.278-5.733-16.046-6.149Q-15.813-6.565-15.403-6.815Q-14.993-7.065-14.516-7.065Q-13.786-7.065-13.387-6.624Q-12.989-6.183-12.989-5.452Q-12.989-5.347-13.083-5.323L-15.532-5.323L-15.532-5.253Q-15.532-4.843-15.411-4.487Q-15.290-4.132-15.018-3.915Q-14.747-3.698-14.317-3.698Q-13.954-3.698-13.657-3.927Q-13.360-4.155-13.259-4.507Q-13.251-4.554-13.165-4.569L-13.083-4.569Q-12.989-4.542-12.989-4.460Q-12.989-4.452-12.997-4.421Q-13.059-4.194-13.198-4.011Q-13.337-3.827-13.528-3.694Q-13.720-3.562-13.938-3.491Q-14.157-3.421-14.395-3.421Q-14.766-3.421-15.104-3.558Q-15.442-3.694-15.710-3.946Q-15.977-4.198-16.128-4.538Q-16.278-4.878-16.278-5.253M-15.524-5.562L-13.563-5.562Q-13.563-5.866-13.665-6.157Q-13.766-6.448-13.983-6.630Q-14.200-6.812-14.516-6.812Q-14.817-6.812-15.048-6.624Q-15.278-6.437-15.401-6.145Q-15.524-5.854-15.524-5.562M-10.493-3.499L-12.473-3.499L-12.473-3.796Q-12.204-3.796-12.036-3.841Q-11.868-3.886-11.868-4.058L-11.868-6.194Q-11.868-6.409-11.930-6.505Q-11.993-6.601-12.110-6.622Q-12.227-6.644-12.473-6.644L-12.473-6.940L-11.305-7.026L-11.305-6.241Q-11.227-6.452-11.075-6.638Q-10.923-6.823-10.723-6.925Q-10.524-7.026-10.298-7.026Q-10.052-7.026-9.860-6.882Q-9.669-6.737-9.669-6.507Q-9.669-6.351-9.774-6.241Q-9.880-6.132-10.036-6.132Q-10.192-6.132-10.302-6.241Q-10.411-6.351-10.411-6.507Q-10.411-6.667-10.305-6.772Q-10.630-6.772-10.845-6.544Q-11.059-6.315-11.155-5.976Q-11.251-5.636-11.251-5.331L-11.251-4.058Q-11.251-3.890-11.024-3.843Q-10.798-3.796-10.493-3.796\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-25.37-3.5H9.22\"\u002F>\u003Cpath stroke=\"none\" d=\"m11.219-3.5-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg transform=\"translate(30.439 -3.533)\">\u003Cpath d=\"M-45.113-4.227Q-45.113-4.559-44.890-4.786Q-44.666-5.013-44.322-5.141Q-43.979-5.270-43.606-5.322Q-43.234-5.375-42.929-5.375L-42.929-5.628Q-42.929-5.833-43.037-6.013Q-43.145-6.192-43.326-6.295Q-43.507-6.397-43.715-6.397Q-44.122-6.397-44.358-6.305Q-44.269-6.268-44.223-6.184Q-44.177-6.100-44.177-5.998Q-44.177-5.902-44.223-5.823Q-44.269-5.745-44.350-5.700Q-44.430-5.656-44.519-5.656Q-44.669-5.656-44.770-5.753Q-44.871-5.851-44.871-5.998Q-44.871-6.620-43.715-6.620Q-43.504-6.620-43.254-6.556Q-43.005-6.493-42.803-6.374Q-42.601-6.254-42.475-6.069Q-42.348-5.885-42.348-5.642L-42.348-4.066Q-42.348-3.950-42.287-3.854Q-42.225-3.759-42.112-3.759Q-42.003-3.759-41.938-3.853Q-41.873-3.947-41.873-4.066L-41.873-4.514L-41.607-4.514L-41.607-4.066Q-41.607-3.796-41.834-3.631Q-42.061-3.465-42.341-3.465Q-42.550-3.465-42.687-3.619Q-42.823-3.772-42.847-3.988Q-42.994-3.721-43.276-3.576Q-43.558-3.431-43.883-3.431Q-44.160-3.431-44.444-3.506Q-44.727-3.581-44.920-3.760Q-45.113-3.940-45.113-4.227M-44.498-4.227Q-44.498-4.053-44.397-3.923Q-44.297-3.793-44.141-3.723Q-43.986-3.653-43.821-3.653Q-43.603-3.653-43.394-3.750Q-43.186-3.848-43.058-4.029Q-42.929-4.210-42.929-4.436L-42.929-5.164Q-43.254-5.164-43.620-5.073Q-43.986-4.982-44.242-4.770Q-44.498-4.559-44.498-4.227M-41.190-5.010Q-41.190-5.348-41.049-5.639Q-40.909-5.929-40.665-6.143Q-40.421-6.356-40.116-6.471Q-39.812-6.585-39.487-6.585Q-39.217-6.585-38.954-6.486Q-38.691-6.387-38.500-6.209L-38.500-7.607Q-38.500-7.877-38.607-7.939Q-38.715-8-39.026-8L-39.026-8.281L-37.949-8.356L-37.949-4.172Q-37.949-3.984-37.895-3.901Q-37.840-3.817-37.739-3.798Q-37.638-3.779-37.423-3.779L-37.423-3.499L-38.530-3.431L-38.530-3.848Q-38.947-3.431-39.573-3.431Q-40.004-3.431-40.376-3.643Q-40.749-3.854-40.969-4.215Q-41.190-4.576-41.190-5.010M-39.515-3.653Q-39.306-3.653-39.120-3.725Q-38.934-3.796-38.780-3.933Q-38.626-4.070-38.530-4.248L-38.530-5.857Q-38.616-6.004-38.761-6.124Q-38.906-6.244-39.076-6.303Q-39.245-6.363-39.426-6.363Q-39.986-6.363-40.255-5.974Q-40.523-5.584-40.523-5.003Q-40.523-4.432-40.289-4.042Q-40.055-3.653-39.515-3.653M-36.774-5.010Q-36.774-5.348-36.633-5.639Q-36.493-5.929-36.249-6.143Q-36.005-6.356-35.700-6.471Q-35.396-6.585-35.071-6.585Q-34.801-6.585-34.538-6.486Q-34.275-6.387-34.084-6.209L-34.084-7.607Q-34.084-7.877-34.191-7.939Q-34.299-8-34.610-8L-34.610-8.281L-33.533-8.356L-33.533-4.172Q-33.533-3.984-33.479-3.901Q-33.424-3.817-33.323-3.798Q-33.222-3.779-33.007-3.779L-33.007-3.499L-34.114-3.431L-34.114-3.848Q-34.531-3.431-35.157-3.431Q-35.588-3.431-35.960-3.643Q-36.333-3.854-36.553-4.215Q-36.774-4.576-36.774-5.010M-35.099-3.653Q-34.890-3.653-34.704-3.725Q-34.518-3.796-34.364-3.933Q-34.210-4.070-34.114-4.248L-34.114-5.857Q-34.200-6.004-34.345-6.124Q-34.490-6.244-34.660-6.303Q-34.829-6.363-35.010-6.363Q-35.570-6.363-35.839-5.974Q-36.107-5.584-36.107-5.003Q-36.107-4.432-35.873-4.042Q-35.639-3.653-35.099-3.653M-30.608-3.499L-32.344-3.499L-32.344-3.779Q-32.115-3.779-31.966-3.813Q-31.818-3.848-31.818-3.988L-31.818-5.837Q-31.818-6.107-31.925-6.168Q-32.033-6.230-32.344-6.230L-32.344-6.510L-31.315-6.585L-31.315-5.878Q-31.185-6.186-30.943-6.385Q-30.700-6.585-30.382-6.585Q-30.163-6.585-29.992-6.461Q-29.821-6.336-29.821-6.124Q-29.821-5.987-29.921-5.888Q-30.020-5.789-30.153-5.789Q-30.290-5.789-30.389-5.888Q-30.488-5.987-30.488-6.124Q-30.488-6.264-30.389-6.363Q-30.679-6.363-30.879-6.167Q-31.079-5.970-31.172-5.676Q-31.264-5.382-31.264-5.102L-31.264-3.988Q-31.264-3.779-30.608-3.779\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.906-10.612h14.226v-18.494h31.743\"\u002F>\u003Cpath stroke=\"none\" d=\"m127.875-29.106-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(145.608 -30.501)\">\u003Cpath d=\"M-44.365-3.499L-44.632-3.499L-44.632-7.607Q-44.632-7.877-44.739-7.939Q-44.847-8-45.158-8L-45.158-8.281L-44.078-8.356L-44.078-6.186Q-43.869-6.377-43.584-6.481Q-43.298-6.585-43.001-6.585Q-42.683-6.585-42.386-6.464Q-42.089-6.343-41.866-6.127Q-41.644-5.912-41.518-5.627Q-41.391-5.341-41.391-5.010Q-41.391-4.565-41.631-4.201Q-41.870-3.837-42.263-3.634Q-42.656-3.431-43.100-3.431Q-43.295-3.431-43.485-3.487Q-43.674-3.543-43.835-3.648Q-43.996-3.752-44.136-3.913L-44.365-3.499M-44.050-5.844L-44.050-4.227Q-43.914-3.967-43.673-3.810Q-43.432-3.653-43.155-3.653Q-42.861-3.653-42.649-3.760Q-42.437-3.868-42.304-4.060Q-42.171-4.251-42.112-4.490Q-42.054-4.729-42.054-5.010Q-42.054-5.369-42.148-5.673Q-42.242-5.977-42.470-6.170Q-42.697-6.363-43.063-6.363Q-43.363-6.363-43.630-6.227Q-43.897-6.090-44.050-5.844\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.608 -30.501)\">\u003Cpath d=\"M-40.636-2.364Q-40.506-2.296-40.369-2.296Q-40.198-2.296-40.048-2.385Q-39.897-2.474-39.786-2.619Q-39.675-2.764-39.597-2.932L-39.333-3.499L-40.502-6.025Q-40.577-6.172-40.707-6.204Q-40.837-6.237-41.070-6.237L-41.070-6.517L-39.549-6.517L-39.549-6.237Q-39.897-6.237-39.897-6.090Q-39.894-6.069-39.892-6.052Q-39.890-6.035-39.890-6.025L-39.033-4.166L-38.260-5.837Q-38.226-5.905-38.226-5.984Q-38.226-6.097-38.310-6.167Q-38.393-6.237-38.506-6.237L-38.506-6.517L-37.310-6.517L-37.310-6.237Q-37.529-6.237-37.701-6.133Q-37.874-6.028-37.966-5.837L-39.303-2.932Q-39.473-2.562-39.743-2.316Q-40.014-2.070-40.369-2.070Q-40.639-2.070-40.858-2.236Q-41.077-2.402-41.077-2.665Q-41.077-2.802-40.984-2.891Q-40.892-2.979-40.752-2.979Q-40.615-2.979-40.526-2.891Q-40.437-2.802-40.437-2.665Q-40.437-2.562-40.490-2.484Q-40.543-2.405-40.636-2.364M-36.243-4.340L-36.243-6.237L-36.883-6.237L-36.883-6.459Q-36.565-6.459-36.348-6.669Q-36.131-6.879-36.030-7.189Q-35.929-7.498-35.929-7.806L-35.662-7.806L-35.662-6.517L-34.586-6.517L-34.586-6.237L-35.662-6.237L-35.662-4.353Q-35.662-4.077-35.558-3.878Q-35.454-3.680-35.194-3.680Q-35.037-3.680-34.931-3.784Q-34.825-3.889-34.775-4.042Q-34.726-4.196-34.726-4.353L-34.726-4.767L-34.459-4.767L-34.459-4.340Q-34.459-4.114-34.558-3.904Q-34.658-3.694-34.842-3.562Q-35.027-3.431-35.256-3.431Q-35.693-3.431-35.968-3.668Q-36.243-3.906-36.243-4.340M-33.690-5.034Q-33.690-5.355-33.566-5.644Q-33.441-5.933-33.215-6.156Q-32.990-6.380-32.694-6.500Q-32.398-6.620-32.080-6.620Q-31.752-6.620-31.491-6.520Q-31.229-6.421-31.053-6.239Q-30.877-6.056-30.783-5.798Q-30.689-5.540-30.689-5.208Q-30.689-5.116-30.771-5.095L-33.027-5.095L-33.027-5.034Q-33.027-4.446-32.743-4.063Q-32.460-3.680-31.892-3.680Q-31.571-3.680-31.303-3.873Q-31.035-4.066-30.946-4.381Q-30.939-4.422-30.864-4.436L-30.771-4.436Q-30.689-4.412-30.689-4.340Q-30.689-4.333-30.696-4.306Q-30.809-3.909-31.180-3.670Q-31.551-3.431-31.974-3.431Q-32.412-3.431-32.812-3.639Q-33.212-3.848-33.451-4.215Q-33.690-4.582-33.690-5.034M-33.020-5.304L-31.205-5.304Q-31.205-5.581-31.303-5.833Q-31.400-6.086-31.598-6.242Q-31.797-6.397-32.080-6.397Q-32.357-6.397-32.571-6.239Q-32.785-6.080-32.902-5.825Q-33.020-5.570-33.020-5.304\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(145.608 -30.501)\">\u003Cpath d=\"M-25.720-3.359Q-26.355-3.359-26.719-3.704Q-27.084-4.049-27.219-4.574Q-27.354-5.099-27.354-5.724Q-27.354-6.749-26.998-7.448Q-26.643-8.147-25.720-8.147Q-24.793-8.147-24.441-7.448Q-24.089-6.749-24.089-5.724Q-24.089-5.099-24.224-4.574Q-24.359-4.049-24.722-3.704Q-25.084-3.359-25.720-3.359M-25.720-3.584Q-25.282-3.584-25.069-3.959Q-24.855-4.333-24.805-4.800Q-24.756-5.266-24.756-5.844Q-24.756-6.397-24.805-6.825Q-24.855-7.252-25.067-7.587Q-25.279-7.922-25.720-7.922Q-26.062-7.922-26.265-7.715Q-26.468-7.508-26.555-7.196Q-26.643-6.883-26.665-6.567Q-26.687-6.250-26.687-5.844Q-26.687-5.427-26.665-5.085Q-26.643-4.743-26.554-4.395Q-26.465-4.046-26.260-3.815Q-26.055-3.584-25.720-3.584\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.906 3.614h11.38v18.494h34.59\"\u002F>\u003Cpath stroke=\"none\" d=\"m127.875 22.108-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(132.148 38.27)\">\u003Cpath d=\"M-44.365-3.499L-44.632-3.499L-44.632-7.607Q-44.632-7.877-44.739-7.939Q-44.847-8-45.158-8L-45.158-8.281L-44.078-8.356L-44.078-6.186Q-43.869-6.377-43.584-6.481Q-43.298-6.585-43.001-6.585Q-42.683-6.585-42.386-6.464Q-42.089-6.343-41.866-6.127Q-41.644-5.912-41.518-5.627Q-41.391-5.341-41.391-5.010Q-41.391-4.565-41.631-4.201Q-41.870-3.837-42.263-3.634Q-42.656-3.431-43.100-3.431Q-43.295-3.431-43.485-3.487Q-43.674-3.543-43.835-3.648Q-43.996-3.752-44.136-3.913L-44.365-3.499M-44.050-5.844L-44.050-4.227Q-43.914-3.967-43.673-3.810Q-43.432-3.653-43.155-3.653Q-42.861-3.653-42.649-3.760Q-42.437-3.868-42.304-4.060Q-42.171-4.251-42.112-4.490Q-42.054-4.729-42.054-5.010Q-42.054-5.369-42.148-5.673Q-42.242-5.977-42.470-6.170Q-42.697-6.363-43.063-6.363Q-43.363-6.363-43.630-6.227Q-43.897-6.090-44.050-5.844\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(132.148 38.27)\">\u003Cpath d=\"M-40.636-2.364Q-40.506-2.296-40.369-2.296Q-40.198-2.296-40.048-2.385Q-39.897-2.474-39.786-2.619Q-39.675-2.764-39.597-2.932L-39.333-3.499L-40.502-6.025Q-40.577-6.172-40.707-6.204Q-40.837-6.237-41.070-6.237L-41.070-6.517L-39.549-6.517L-39.549-6.237Q-39.897-6.237-39.897-6.090Q-39.894-6.069-39.892-6.052Q-39.890-6.035-39.890-6.025L-39.033-4.166L-38.260-5.837Q-38.226-5.905-38.226-5.984Q-38.226-6.097-38.310-6.167Q-38.393-6.237-38.506-6.237L-38.506-6.517L-37.310-6.517L-37.310-6.237Q-37.529-6.237-37.701-6.133Q-37.874-6.028-37.966-5.837L-39.303-2.932Q-39.473-2.562-39.743-2.316Q-40.014-2.070-40.369-2.070Q-40.639-2.070-40.858-2.236Q-41.077-2.402-41.077-2.665Q-41.077-2.802-40.984-2.891Q-40.892-2.979-40.752-2.979Q-40.615-2.979-40.526-2.891Q-40.437-2.802-40.437-2.665Q-40.437-2.562-40.490-2.484Q-40.543-2.405-40.636-2.364M-36.243-4.340L-36.243-6.237L-36.883-6.237L-36.883-6.459Q-36.565-6.459-36.348-6.669Q-36.131-6.879-36.030-7.189Q-35.929-7.498-35.929-7.806L-35.662-7.806L-35.662-6.517L-34.586-6.517L-34.586-6.237L-35.662-6.237L-35.662-4.353Q-35.662-4.077-35.558-3.878Q-35.454-3.680-35.194-3.680Q-35.037-3.680-34.931-3.784Q-34.825-3.889-34.775-4.042Q-34.726-4.196-34.726-4.353L-34.726-4.767L-34.459-4.767L-34.459-4.340Q-34.459-4.114-34.558-3.904Q-34.658-3.694-34.842-3.562Q-35.027-3.431-35.256-3.431Q-35.693-3.431-35.968-3.668Q-36.243-3.906-36.243-4.340M-33.690-5.034Q-33.690-5.355-33.566-5.644Q-33.441-5.933-33.215-6.156Q-32.990-6.380-32.694-6.500Q-32.398-6.620-32.080-6.620Q-31.752-6.620-31.491-6.520Q-31.229-6.421-31.053-6.239Q-30.877-6.056-30.783-5.798Q-30.689-5.540-30.689-5.208Q-30.689-5.116-30.771-5.095L-33.027-5.095L-33.027-5.034Q-33.027-4.446-32.743-4.063Q-32.460-3.680-31.892-3.680Q-31.571-3.680-31.303-3.873Q-31.035-4.066-30.946-4.381Q-30.939-4.422-30.864-4.436L-30.771-4.436Q-30.689-4.412-30.689-4.340Q-30.689-4.333-30.696-4.306Q-30.809-3.909-31.180-3.670Q-31.551-3.431-31.974-3.431Q-32.412-3.431-32.812-3.639Q-33.212-3.848-33.451-4.215Q-33.690-4.582-33.690-5.034M-33.020-5.304L-31.205-5.304Q-31.205-5.581-31.303-5.833Q-31.400-6.086-31.598-6.242Q-31.797-6.397-32.080-6.397Q-32.357-6.397-32.571-6.239Q-32.785-6.080-32.902-5.825Q-33.020-5.570-33.020-5.304M-30.101-3.506L-30.101-4.569Q-30.101-4.593-30.074-4.620Q-30.047-4.647-30.023-4.647L-29.913-4.647Q-29.848-4.647-29.835-4.589Q-29.739-4.155-29.493-3.904Q-29.247-3.653-28.833-3.653Q-28.492-3.653-28.239-3.786Q-27.986-3.919-27.986-4.227Q-27.986-4.384-28.080-4.499Q-28.174-4.613-28.312-4.682Q-28.451-4.750-28.618-4.788L-29.199-4.887Q-29.555-4.955-29.828-5.176Q-30.101-5.396-30.101-5.738Q-30.101-5.987-29.990-6.162Q-29.879-6.336-29.693-6.435Q-29.507-6.534-29.291-6.577Q-29.076-6.620-28.833-6.620Q-28.420-6.620-28.139-6.438L-27.924-6.613Q-27.914-6.616-27.907-6.618Q-27.900-6.620-27.890-6.620L-27.839-6.620Q-27.811-6.620-27.787-6.596Q-27.764-6.572-27.764-6.544L-27.764-5.697Q-27.764-5.676-27.787-5.649Q-27.811-5.622-27.839-5.622L-27.952-5.622Q-27.979-5.622-28.004-5.647Q-28.030-5.673-28.030-5.697Q-28.030-5.933-28.136-6.097Q-28.242-6.261-28.425-6.343Q-28.608-6.425-28.840-6.425Q-29.168-6.425-29.425-6.322Q-29.681-6.220-29.681-5.943Q-29.681-5.748-29.498-5.639Q-29.315-5.529-29.086-5.488L-28.512-5.382Q-28.266-5.334-28.052-5.206Q-27.839-5.078-27.702-4.875Q-27.565-4.671-27.565-4.422Q-27.565-3.909-27.931-3.670Q-28.297-3.431-28.833-3.431Q-29.329-3.431-29.660-3.725L-29.927-3.451Q-29.948-3.431-29.975-3.431L-30.023-3.431Q-30.047-3.431-30.074-3.458Q-30.101-3.485-30.101-3.506\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(132.148 38.27)\">\u003Cpath d=\"M-21.214-3.499L-23.744-3.499L-23.744-3.779Q-22.776-3.779-22.776-3.988L-22.776-7.607Q-23.169-7.419-23.791-7.419L-23.791-7.700Q-23.374-7.700-23.010-7.801Q-22.646-7.901-22.390-8.147L-22.264-8.147Q-22.199-8.130-22.182-8.062L-22.182-3.988Q-22.182-3.779-21.214-3.779L-21.214-3.499M-18.360-4.753L-20.418-4.753L-20.418-5.256L-18.360-5.256L-18.360-4.753M-16.897-3.813Q-16.778-3.697-16.600-3.655Q-16.422-3.612-16.207-3.612Q-15.968-3.612-15.758-3.721Q-15.547-3.831-15.394-4.013Q-15.240-4.196-15.141-4.429Q-14.973-4.856-14.973-5.676Q-15.123-5.382-15.387-5.203Q-15.650-5.023-15.968-5.023Q-16.402-5.023-16.749-5.232Q-17.096-5.440-17.294-5.801Q-17.492-6.162-17.492-6.585Q-17.492-6.920-17.362-7.209Q-17.232-7.498-17.002-7.712Q-16.771-7.925-16.472-8.036Q-16.173-8.147-15.841-8.147Q-14.983-8.147-14.628-7.433Q-14.272-6.719-14.272-5.762Q-14.272-5.345-14.401-4.917Q-14.529-4.490-14.785-4.135Q-15.041-3.779-15.404-3.569Q-15.766-3.359-16.207-3.359Q-16.662-3.359-16.979-3.547Q-17.297-3.735-17.297-4.159Q-17.297-4.309-17.198-4.408Q-17.099-4.507-16.949-4.507Q-16.880-4.507-16.814-4.480Q-16.747-4.453-16.703-4.408Q-16.658-4.364-16.631-4.297Q-16.603-4.230-16.603-4.159Q-16.603-4.029-16.684-3.931Q-16.764-3.834-16.897-3.813M-15.927-5.249Q-15.633-5.249-15.417-5.427Q-15.202-5.604-15.094-5.880Q-14.987-6.155-14.987-6.445Q-14.987-6.490-14.988-6.517Q-14.990-6.544-14.994-6.579Q-14.990-6.589-14.988-6.596Q-14.987-6.603-14.987-6.613Q-14.987-7.115-15.185-7.515Q-15.383-7.915-15.841-7.915Q-16.409-7.915-16.602-7.556Q-16.795-7.197-16.795-6.585Q-16.795-6.199-16.740-5.916Q-16.686-5.632-16.491-5.440Q-16.296-5.249-15.927-5.249\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M153.683-43.533v-13.649\"\u002F>\u003Cpath stroke=\"none\" d=\"m153.683-59.182-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(180.905 -60.577)\">\u003Cpath d=\"M-43.555-3.499L-45.107-3.499L-45.107-3.779Q-44.881-3.779-44.732-3.813Q-44.584-3.848-44.584-3.988L-44.584-5.837Q-44.584-6.025-44.632-6.109Q-44.679-6.192-44.777-6.211Q-44.874-6.230-45.086-6.230L-45.086-6.510L-44.030-6.585L-44.030-3.988Q-44.030-3.848-43.898-3.813Q-43.767-3.779-43.555-3.779L-43.555-3.499M-44.826-7.806Q-44.826-7.977-44.703-8.096Q-44.580-8.216-44.409-8.216Q-44.242-8.216-44.119-8.096Q-43.996-7.977-43.996-7.806Q-43.996-7.631-44.119-7.508Q-44.242-7.385-44.409-7.385Q-44.580-7.385-44.703-7.508Q-44.826-7.631-44.826-7.806M-42.909-5.010Q-42.909-5.338-42.774-5.639Q-42.639-5.939-42.403-6.160Q-42.167-6.380-41.863-6.500Q-41.559-6.620-41.234-6.620Q-40.728-6.620-40.380-6.517Q-40.031-6.415-40.031-6.039Q-40.031-5.892-40.128-5.791Q-40.226-5.690-40.373-5.690Q-40.527-5.690-40.626-5.789Q-40.725-5.888-40.725-6.039Q-40.725-6.227-40.585-6.319Q-40.786-6.370-41.227-6.370Q-41.583-6.370-41.812-6.174Q-42.041-5.977-42.142-5.668Q-42.242-5.358-42.242-5.010Q-42.242-4.661-42.116-4.355Q-41.989-4.049-41.735-3.865Q-41.480-3.680-41.125-3.680Q-40.903-3.680-40.718-3.764Q-40.533-3.848-40.398-4.003Q-40.263-4.159-40.205-4.367Q-40.192-4.422-40.137-4.422L-40.024-4.422Q-39.993-4.422-39.971-4.398Q-39.949-4.374-39.949-4.340L-39.949-4.319Q-40.034-4.032-40.222-3.834Q-40.410-3.636-40.675-3.533Q-40.940-3.431-41.234-3.431Q-41.665-3.431-42.053-3.637Q-42.441-3.844-42.675-4.207Q-42.909-4.569-42.909-5.010M-39.402-4.982Q-39.402-5.324-39.267-5.623Q-39.132-5.922-38.893-6.146Q-38.653-6.370-38.336-6.495Q-38.018-6.620-37.686-6.620Q-37.242-6.620-36.842-6.404Q-36.442-6.189-36.208-5.811Q-35.974-5.434-35.974-4.982Q-35.974-4.641-36.116-4.357Q-36.257-4.073-36.502-3.866Q-36.746-3.660-37.056-3.545Q-37.365-3.431-37.686-3.431Q-38.117-3.431-38.518-3.632Q-38.920-3.834-39.161-4.186Q-39.402-4.538-39.402-4.982M-37.686-3.680Q-37.085-3.680-36.861-4.058Q-36.637-4.436-36.637-5.068Q-36.637-5.680-36.871-6.039Q-37.105-6.397-37.686-6.397Q-38.739-6.397-38.739-5.068Q-38.739-4.436-38.513-4.058Q-38.288-3.680-37.686-3.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(180.905 -60.577)\">\u003Cpath d=\"M-35.152-5.010Q-35.152-5.348-35.011-5.639Q-34.871-5.929-34.627-6.143Q-34.383-6.356-34.078-6.471Q-33.774-6.585-33.449-6.585Q-33.179-6.585-32.916-6.486Q-32.653-6.387-32.462-6.209L-32.462-7.607Q-32.462-7.877-32.569-7.939Q-32.677-8-32.988-8L-32.988-8.281L-31.911-8.356L-31.911-4.172Q-31.911-3.984-31.857-3.901Q-31.802-3.817-31.701-3.798Q-31.600-3.779-31.385-3.779L-31.385-3.499L-32.492-3.431L-32.492-3.848Q-32.909-3.431-33.535-3.431Q-33.966-3.431-34.338-3.643Q-34.711-3.854-34.931-4.215Q-35.152-4.576-35.152-5.010M-33.477-3.653Q-33.268-3.653-33.082-3.725Q-32.896-3.796-32.742-3.933Q-32.588-4.070-32.492-4.248L-32.492-5.857Q-32.578-6.004-32.723-6.124Q-32.868-6.244-33.038-6.303Q-33.207-6.363-33.388-6.363Q-33.948-6.363-34.217-5.974Q-34.485-5.584-34.485-5.003Q-34.485-4.432-34.251-4.042Q-34.017-3.653-33.477-3.653M-30.777-5.034Q-30.777-5.355-30.652-5.644Q-30.527-5.933-30.301-6.156Q-30.076-6.380-29.780-6.500Q-29.485-6.620-29.167-6.620Q-28.839-6.620-28.577-6.520Q-28.316-6.421-28.140-6.239Q-27.964-6.056-27.870-5.798Q-27.776-5.540-27.776-5.208Q-27.776-5.116-27.858-5.095L-30.113-5.095L-30.113-5.034Q-30.113-4.446-29.830-4.063Q-29.546-3.680-28.979-3.680Q-28.657-3.680-28.389-3.873Q-28.121-4.066-28.032-4.381Q-28.025-4.422-27.950-4.436L-27.858-4.436Q-27.776-4.412-27.776-4.340Q-27.776-4.333-27.782-4.306Q-27.895-3.909-28.266-3.670Q-28.637-3.431-29.061-3.431Q-29.498-3.431-29.898-3.639Q-30.298-3.848-30.537-4.215Q-30.777-4.582-30.777-5.034M-30.107-5.304L-28.292-5.304Q-28.292-5.581-28.389-5.833Q-28.487-6.086-28.685-6.242Q-28.883-6.397-29.167-6.397Q-29.444-6.397-29.657-6.239Q-29.871-6.080-29.989-5.825Q-30.107-5.570-30.107-5.304M-26.689-2.269Q-26.689-2.303-26.661-2.330Q-26.391-2.559-26.243-2.882Q-26.094-3.205-26.094-3.561L-26.094-3.598Q-26.203-3.499-26.367-3.499Q-26.549-3.499-26.668-3.619Q-26.788-3.738-26.788-3.919Q-26.788-4.094-26.668-4.213Q-26.549-4.333-26.367-4.333Q-26.111-4.333-25.991-4.094Q-25.872-3.854-25.872-3.561Q-25.872-3.161-26.041-2.790Q-26.210-2.419-26.508-2.163Q-26.538-2.142-26.566-2.142Q-26.607-2.142-26.648-2.183Q-26.689-2.224-26.689-2.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(180.905 -60.577)\">\u003Cpath d=\"M-20.604-3.499L-22.156-3.499L-22.156-3.779Q-21.930-3.779-21.781-3.813Q-21.633-3.848-21.633-3.988L-21.633-5.837Q-21.633-6.025-21.681-6.109Q-21.728-6.192-21.826-6.211Q-21.923-6.230-22.135-6.230L-22.135-6.510L-21.079-6.585L-21.079-3.988Q-21.079-3.848-20.947-3.813Q-20.816-3.779-20.604-3.779L-20.604-3.499M-21.875-7.806Q-21.875-7.977-21.752-8.096Q-21.629-8.216-21.458-8.216Q-21.291-8.216-21.168-8.096Q-21.045-7.977-21.045-7.806Q-21.045-7.631-21.168-7.508Q-21.291-7.385-21.458-7.385Q-21.629-7.385-21.752-7.508Q-21.875-7.631-21.875-7.806M-18.160-3.499L-19.893-3.499L-19.893-3.779Q-19.667-3.779-19.519-3.813Q-19.370-3.848-19.370-3.988L-19.370-6.237L-19.958-6.237L-19.958-6.517L-19.370-6.517L-19.370-7.334Q-19.370-7.652-19.192-7.900Q-19.014-8.147-18.724-8.288Q-18.433-8.428-18.122-8.428Q-17.866-8.428-17.663-8.286Q-17.459-8.144-17.459-7.901Q-17.459-7.765-17.558-7.666Q-17.658-7.566-17.794-7.566Q-17.931-7.566-18.030-7.666Q-18.129-7.765-18.129-7.901Q-18.129-8.082-17.989-8.175Q-18.068-8.202-18.167-8.202Q-18.375-8.202-18.529-8.069Q-18.683-7.936-18.763-7.732Q-18.844-7.529-18.844-7.320L-18.844-6.517L-17.955-6.517L-17.955-6.237L-18.816-6.237L-18.816-3.988Q-18.816-3.779-18.160-3.779L-18.160-3.499M-16.906-4.333L-16.906-5.837Q-16.906-6.107-17.013-6.168Q-17.121-6.230-17.432-6.230L-17.432-6.510L-16.325-6.585L-16.325-4.353L-16.325-4.333Q-16.325-4.053-16.273-3.909Q-16.222-3.766-16.080-3.709Q-15.938-3.653-15.651-3.653Q-15.398-3.653-15.193-3.793Q-14.988-3.933-14.872-4.159Q-14.756-4.384-14.756-4.634L-14.756-5.837Q-14.756-6.107-14.863-6.168Q-14.971-6.230-15.282-6.230L-15.282-6.510L-14.175-6.585L-14.175-4.172Q-14.175-3.981-14.122-3.899Q-14.069-3.817-13.968-3.798Q-13.867-3.779-13.652-3.779L-13.652-3.499L-14.728-3.431L-14.728-3.995Q-14.838-3.813-14.983-3.690Q-15.128-3.567-15.315-3.499Q-15.501-3.431-15.702-3.431Q-16.906-3.431-16.906-4.333M-11.382-3.499L-13.016-3.499L-13.016-3.779Q-12.787-3.779-12.638-3.813Q-12.490-3.848-12.490-3.988L-12.490-5.837Q-12.490-6.107-12.597-6.168Q-12.705-6.230-13.016-6.230L-13.016-6.510L-11.956-6.585L-11.956-5.936Q-11.785-6.244-11.481-6.415Q-11.177-6.585-10.832-6.585Q-10.326-6.585-10.042-6.362Q-9.759-6.138-9.759-5.642L-9.759-3.988Q-9.759-3.851-9.610-3.815Q-9.461-3.779-9.236-3.779L-9.236-3.499L-10.866-3.499L-10.866-3.779Q-10.637-3.779-10.488-3.813Q-10.340-3.848-10.340-3.988L-10.340-5.628Q-10.340-5.963-10.459-6.163Q-10.579-6.363-10.893-6.363Q-11.163-6.363-11.398-6.227Q-11.632-6.090-11.770-5.856Q-11.909-5.622-11.909-5.348L-11.909-3.988Q-11.909-3.851-11.758-3.815Q-11.608-3.779-11.382-3.779\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M179.49 22.108h26.453\"\u002F>\u003Cpath stroke=\"none\" d=\"m207.943 22.108-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(256.962 27.357)\">\u003Cpath d=\"M-43.422-3.499L-45.158-3.499L-45.158-3.779Q-44.929-3.779-44.780-3.813Q-44.632-3.848-44.632-3.988L-44.632-5.837Q-44.632-6.107-44.739-6.168Q-44.847-6.230-45.158-6.230L-45.158-6.510L-44.129-6.585L-44.129-5.878Q-43.999-6.186-43.757-6.385Q-43.514-6.585-43.196-6.585Q-42.977-6.585-42.806-6.461Q-42.635-6.336-42.635-6.124Q-42.635-5.987-42.735-5.888Q-42.834-5.789-42.967-5.789Q-43.104-5.789-43.203-5.888Q-43.302-5.987-43.302-6.124Q-43.302-6.264-43.203-6.363Q-43.493-6.363-43.693-6.167Q-43.893-5.970-43.986-5.676Q-44.078-5.382-44.078-5.102L-44.078-3.988Q-44.078-3.779-43.422-3.779L-43.422-3.499M-40.462-3.499L-42.051-3.499L-42.051-3.779Q-41.408-3.779-41.251-4.179L-39.607-8.394Q-39.573-8.489-39.460-8.489L-39.378-8.489Q-39.269-8.489-39.228-8.394L-37.508-3.988Q-37.440-3.848-37.250-3.813Q-37.061-3.779-36.787-3.779L-36.787-3.499L-38.787-3.499L-38.787-3.779Q-38.223-3.779-38.223-3.954Q-38.223-3.971-38.225-3.978Q-38.226-3.984-38.230-3.988L-38.650-5.054L-40.609-5.054L-40.950-4.179Q-40.964-4.179-40.964-4.101Q-40.964-3.940-40.802-3.860Q-40.639-3.779-40.462-3.779L-40.462-3.499M-39.628-7.573L-40.496-5.334L-38.753-5.334L-39.628-7.573M-35.653-2.269Q-35.653-2.303-35.625-2.330Q-35.355-2.559-35.206-2.882Q-35.058-3.205-35.058-3.561L-35.058-3.598Q-35.167-3.499-35.331-3.499Q-35.512-3.499-35.632-3.619Q-35.752-3.738-35.752-3.919Q-35.752-4.094-35.632-4.213Q-35.512-4.333-35.331-4.333Q-35.075-4.333-34.955-4.094Q-34.836-3.854-34.836-3.561Q-34.836-3.161-35.005-2.790Q-35.174-2.419-35.471-2.163Q-35.502-2.142-35.529-2.142Q-35.570-2.142-35.611-2.183Q-35.653-2.224-35.653-2.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(256.962 27.357)\">\u003Cpath d=\"M-29.436-3.499L-31.172-3.499L-31.172-3.779Q-30.943-3.779-30.794-3.813Q-30.646-3.848-30.646-3.988L-30.646-5.837Q-30.646-6.107-30.753-6.168Q-30.861-6.230-31.172-6.230L-31.172-6.510L-30.143-6.585L-30.143-5.878Q-30.013-6.186-29.771-6.385Q-29.528-6.585-29.210-6.585Q-28.991-6.585-28.820-6.461Q-28.649-6.336-28.649-6.124Q-28.649-5.987-28.749-5.888Q-28.848-5.789-28.981-5.789Q-29.118-5.789-29.217-5.888Q-29.316-5.987-29.316-6.124Q-29.316-6.264-29.217-6.363Q-29.507-6.363-29.707-6.167Q-29.907-5.970-30-5.676Q-30.092-5.382-30.092-5.102L-30.092-3.988Q-30.092-3.779-29.436-3.779L-29.436-3.499M-24.999-3.499L-27.973-3.499L-27.973-3.779Q-27.251-3.779-27.251-3.988L-27.251-7.789Q-27.251-8-27.973-8L-27.973-8.281L-25.214-8.281Q-24.948-8.281-24.642-8.206Q-24.336-8.130-24.076-7.983Q-23.816-7.836-23.654-7.607Q-23.492-7.378-23.492-7.084Q-23.492-6.654-23.878-6.372Q-24.264-6.090-24.746-5.998Q-24.438-5.998-24.090-5.833Q-23.741-5.669-23.512-5.391Q-23.283-5.112-23.283-4.794Q-23.283-4.388-23.546-4.094Q-23.810-3.800-24.208-3.649Q-24.606-3.499-24.999-3.499M-26.609-5.871L-26.609-3.988Q-26.609-3.848-26.520-3.813Q-26.431-3.779-26.243-3.779L-25.214-3.779Q-24.927-3.779-24.650-3.906Q-24.374-4.032-24.203-4.266Q-24.032-4.500-24.032-4.794Q-24.032-5.010-24.114-5.206Q-24.196-5.403-24.346-5.553Q-24.497-5.704-24.693-5.787Q-24.890-5.871-25.105-5.871L-26.609-5.871M-26.609-7.789L-26.609-6.097L-25.426-6.097Q-25.139-6.097-24.859-6.216Q-24.579-6.336-24.399-6.563Q-24.220-6.791-24.220-7.084Q-24.220-7.334-24.358-7.548Q-24.497-7.761-24.726-7.881Q-24.955-8-25.214-8L-26.243-8Q-26.431-8-26.520-7.966Q-26.609-7.932-26.609-7.789M-21.981-2.269Q-21.981-2.303-21.954-2.330Q-21.684-2.559-21.535-2.882Q-21.386-3.205-21.386-3.561L-21.386-3.598Q-21.496-3.499-21.660-3.499Q-21.841-3.499-21.960-3.619Q-22.080-3.738-22.080-3.919Q-22.080-4.094-21.960-4.213Q-21.841-4.333-21.660-4.333Q-21.403-4.333-21.284-4.094Q-21.164-3.854-21.164-3.561Q-21.164-3.161-21.333-2.790Q-21.502-2.419-21.800-2.163Q-21.831-2.142-21.858-2.142Q-21.899-2.142-21.940-2.183Q-21.981-2.224-21.981-2.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(256.962 27.357)\">\u003Cpath d=\"M-15.923-3.526L-17.051-6.025Q-17.123-6.172-17.253-6.204Q-17.383-6.237-17.612-6.237L-17.612-6.517L-16.098-6.517L-16.098-6.237Q-16.450-6.237-16.450-6.090Q-16.450-6.045-16.439-6.025L-15.575-4.107L-14.795-5.837Q-14.761-5.905-14.761-5.984Q-14.761-6.097-14.845-6.167Q-14.929-6.237-15.048-6.237L-15.048-6.517L-13.852-6.517L-13.852-6.237Q-14.071-6.237-14.242-6.134Q-14.412-6.032-14.501-5.837L-15.537-3.526Q-15.585-3.431-15.691-3.431L-15.769-3.431Q-15.875-3.431-15.923-3.526\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(256.962 27.357)\">\u003Cpath d=\"M-13.683-4.227Q-13.683-4.559-13.460-4.786Q-13.236-5.013-12.892-5.141Q-12.549-5.270-12.176-5.322Q-11.804-5.375-11.499-5.375L-11.499-5.628Q-11.499-5.833-11.607-6.013Q-11.715-6.192-11.896-6.295Q-12.077-6.397-12.285-6.397Q-12.692-6.397-12.928-6.305Q-12.839-6.268-12.793-6.184Q-12.747-6.100-12.747-5.998Q-12.747-5.902-12.793-5.823Q-12.839-5.745-12.920-5.700Q-13-5.656-13.089-5.656Q-13.239-5.656-13.340-5.753Q-13.441-5.851-13.441-5.998Q-13.441-6.620-12.285-6.620Q-12.074-6.620-11.824-6.556Q-11.575-6.493-11.373-6.374Q-11.171-6.254-11.045-6.069Q-10.918-5.885-10.918-5.642L-10.918-4.066Q-10.918-3.950-10.857-3.854Q-10.795-3.759-10.682-3.759Q-10.573-3.759-10.508-3.853Q-10.443-3.947-10.443-4.066L-10.443-4.514L-10.177-4.514L-10.177-4.066Q-10.177-3.796-10.404-3.631Q-10.631-3.465-10.911-3.465Q-11.120-3.465-11.257-3.619Q-11.393-3.772-11.417-3.988Q-11.564-3.721-11.846-3.576Q-12.128-3.431-12.453-3.431Q-12.730-3.431-13.014-3.506Q-13.297-3.581-13.490-3.760Q-13.683-3.940-13.683-4.227M-13.068-4.227Q-13.068-4.053-12.967-3.923Q-12.867-3.793-12.711-3.723Q-12.556-3.653-12.391-3.653Q-12.173-3.653-11.964-3.750Q-11.756-3.848-11.628-4.029Q-11.499-4.210-11.499-4.436L-11.499-5.164Q-11.824-5.164-12.190-5.073Q-12.556-4.982-12.812-4.770Q-13.068-4.559-13.068-4.227M-8.092-3.499L-9.695-3.499L-9.695-3.779Q-9.469-3.779-9.320-3.813Q-9.172-3.848-9.172-3.988L-9.172-7.607Q-9.172-7.877-9.279-7.939Q-9.387-8-9.695-8L-9.695-8.281L-8.618-8.356L-8.618-3.988Q-8.618-3.851-8.468-3.815Q-8.317-3.779-8.092-3.779L-8.092-3.499M-7.323-5.892Q-7.323-6.418-7.106-6.886Q-6.889-7.354-6.506-7.700Q-6.123-8.045-5.639-8.233Q-5.156-8.421-4.626-8.421Q-4.223-8.421-3.858-8.264Q-3.494-8.106-3.211-7.812L-2.787-8.394Q-2.753-8.421-2.729-8.421L-2.681-8.421Q-2.650-8.421-2.626-8.397Q-2.602-8.373-2.602-8.342L-2.602-6.479Q-2.602-6.456-2.628-6.430Q-2.654-6.404-2.681-6.404L-2.807-6.404Q-2.869-6.404-2.883-6.479Q-2.913-6.794-3.048-7.098Q-3.183-7.402-3.399-7.636Q-3.614-7.871-3.903-8.006Q-4.192-8.141-4.520-8.141Q-5.162-8.141-5.620-7.847Q-6.078-7.553-6.311-7.040Q-6.543-6.527-6.543-5.892Q-6.543-5.420-6.413-5.011Q-6.284-4.603-6.024-4.290Q-5.764-3.978-5.385-3.808Q-5.005-3.639-4.513-3.639Q-4.185-3.639-3.891-3.755Q-3.597-3.872-3.363-4.087Q-3.129-4.302-2.999-4.591Q-2.869-4.880-2.869-5.208Q-2.869-5.235-2.842-5.259Q-2.814-5.283-2.794-5.283L-2.681-5.283Q-2.643-5.283-2.623-5.258Q-2.602-5.232-2.602-5.194Q-2.602-4.798-2.768-4.461Q-2.934-4.124-3.221-3.877Q-3.508-3.629-3.877-3.494Q-4.246-3.359-4.626-3.359Q-5.145-3.359-5.638-3.549Q-6.130-3.738-6.509-4.082Q-6.889-4.425-7.106-4.894Q-7.323-5.362-7.323-5.892\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M179.49-29.106h45.97\"\u002F>\u003Cpath stroke=\"none\" d=\"m227.46-29.106-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(243.142 -30.501)\">\u003Cpath d=\"M-43.422-3.499L-45.158-3.499L-45.158-3.779Q-44.929-3.779-44.780-3.813Q-44.632-3.848-44.632-3.988L-44.632-5.837Q-44.632-6.107-44.739-6.168Q-44.847-6.230-45.158-6.230L-45.158-6.510L-44.129-6.585L-44.129-5.878Q-43.999-6.186-43.757-6.385Q-43.514-6.585-43.196-6.585Q-42.977-6.585-42.806-6.461Q-42.635-6.336-42.635-6.124Q-42.635-5.987-42.735-5.888Q-42.834-5.789-42.967-5.789Q-43.104-5.789-43.203-5.888Q-43.302-5.987-43.302-6.124Q-43.302-6.264-43.203-6.363Q-43.493-6.363-43.693-6.167Q-43.893-5.970-43.986-5.676Q-44.078-5.382-44.078-5.102L-44.078-3.988Q-44.078-3.779-43.422-3.779L-43.422-3.499M-41.552-2.269Q-41.552-2.303-41.525-2.330Q-41.255-2.559-41.106-2.882Q-40.957-3.205-40.957-3.561L-40.957-3.598Q-41.067-3.499-41.231-3.499Q-41.412-3.499-41.531-3.619Q-41.651-3.738-41.651-3.919Q-41.651-4.094-41.531-4.213Q-41.412-4.333-41.231-4.333Q-40.974-4.333-40.855-4.094Q-40.735-3.854-40.735-3.561Q-40.735-3.161-40.904-2.790Q-41.073-2.419-41.371-2.163Q-41.402-2.142-41.429-2.142Q-41.470-2.142-41.511-2.183Q-41.552-2.224-41.552-2.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(243.142 -30.501)\">\u003Cpath d=\"M-37.089-5.010Q-37.089-5.338-36.954-5.639Q-36.819-5.939-36.583-6.160Q-36.347-6.380-36.043-6.500Q-35.738-6.620-35.414-6.620Q-34.908-6.620-34.559-6.517Q-34.211-6.415-34.211-6.039Q-34.211-5.892-34.308-5.791Q-34.405-5.690-34.552-5.690Q-34.706-5.690-34.805-5.789Q-34.904-5.888-34.904-6.039Q-34.904-6.227-34.764-6.319Q-34.966-6.370-35.407-6.370Q-35.762-6.370-35.991-6.174Q-36.220-5.977-36.321-5.668Q-36.422-5.358-36.422-5.010Q-36.422-4.661-36.296-4.355Q-36.169-4.049-35.914-3.865Q-35.660-3.680-35.304-3.680Q-35.082-3.680-34.898-3.764Q-34.713-3.848-34.578-4.003Q-34.443-4.159-34.385-4.367Q-34.371-4.422-34.317-4.422L-34.204-4.422Q-34.173-4.422-34.151-4.398Q-34.129-4.374-34.129-4.340L-34.129-4.319Q-34.214-4.032-34.402-3.834Q-34.590-3.636-34.855-3.533Q-35.120-3.431-35.414-3.431Q-35.844-3.431-36.232-3.637Q-36.620-3.844-36.854-4.207Q-37.089-4.569-37.089-5.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-45.486 10.927v42.68h307.29V-12.68\"\u002F>\u003Cpath stroke=\"none\" d=\"m261.803-14.68-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M296.147-29.106h20.762\"\u002F>\u003Cpath stroke=\"none\" d=\"m318.909-29.106-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(367.928 -23.177)\">\u003Cpath d=\"M-43.582-3.526L-44.710-6.025Q-44.782-6.172-44.912-6.204Q-45.042-6.237-45.271-6.237L-45.271-6.517L-43.757-6.517L-43.757-6.237Q-44.109-6.237-44.109-6.090Q-44.109-6.045-44.098-6.025L-43.234-4.107L-42.454-5.837Q-42.420-5.905-42.420-5.984Q-42.420-6.097-42.504-6.167Q-42.588-6.237-42.707-6.237L-42.707-6.517L-41.511-6.517L-41.511-6.237Q-41.730-6.237-41.901-6.134Q-42.071-6.032-42.160-5.837L-43.196-3.526Q-43.244-3.431-43.350-3.431L-43.428-3.431Q-43.534-3.431-43.582-3.526\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(367.928 -23.177)\">\u003Cpath d=\"M-41.343-4.227Q-41.343-4.559-41.120-4.786Q-40.896-5.013-40.552-5.141Q-40.209-5.270-39.836-5.322Q-39.464-5.375-39.159-5.375L-39.159-5.628Q-39.159-5.833-39.267-6.013Q-39.375-6.192-39.556-6.295Q-39.737-6.397-39.945-6.397Q-40.352-6.397-40.588-6.305Q-40.499-6.268-40.453-6.184Q-40.407-6.100-40.407-5.998Q-40.407-5.902-40.453-5.823Q-40.499-5.745-40.580-5.700Q-40.660-5.656-40.749-5.656Q-40.899-5.656-41-5.753Q-41.101-5.851-41.101-5.998Q-41.101-6.620-39.945-6.620Q-39.734-6.620-39.484-6.556Q-39.235-6.493-39.033-6.374Q-38.831-6.254-38.705-6.069Q-38.578-5.885-38.578-5.642L-38.578-4.066Q-38.578-3.950-38.517-3.854Q-38.455-3.759-38.342-3.759Q-38.233-3.759-38.168-3.853Q-38.103-3.947-38.103-4.066L-38.103-4.514L-37.837-4.514L-37.837-4.066Q-37.837-3.796-38.064-3.631Q-38.291-3.465-38.571-3.465Q-38.780-3.465-38.917-3.619Q-39.053-3.772-39.077-3.988Q-39.224-3.721-39.506-3.576Q-39.788-3.431-40.113-3.431Q-40.390-3.431-40.674-3.506Q-40.957-3.581-41.150-3.760Q-41.343-3.940-41.343-4.227M-40.728-4.227Q-40.728-4.053-40.627-3.923Q-40.527-3.793-40.371-3.723Q-40.216-3.653-40.051-3.653Q-39.833-3.653-39.624-3.750Q-39.416-3.848-39.288-4.029Q-39.159-4.210-39.159-4.436L-39.159-5.164Q-39.484-5.164-39.850-5.073Q-40.216-4.982-40.472-4.770Q-40.728-4.559-40.728-4.227M-35.752-3.499L-37.355-3.499L-37.355-3.779Q-37.129-3.779-36.980-3.813Q-36.832-3.848-36.832-3.988L-36.832-7.607Q-36.832-7.877-36.939-7.939Q-37.047-8-37.355-8L-37.355-8.281L-36.278-8.356L-36.278-3.988Q-36.278-3.851-36.128-3.815Q-35.977-3.779-35.752-3.779L-35.752-3.499M-32.945-3.499L-35.078-3.499L-35.078-3.779Q-34.357-3.779-34.357-3.988L-34.357-7.789Q-34.357-8-35.078-8L-35.078-8.281L-32.412-8.281Q-32.002-8.281-31.582-8.127Q-31.161-7.973-30.878-7.669Q-30.594-7.365-30.594-6.951Q-30.594-6.633-30.761-6.387Q-30.929-6.141-31.206-5.975Q-31.483-5.810-31.804-5.726Q-32.125-5.642-32.412-5.642L-33.667-5.642L-33.667-3.988Q-33.667-3.779-32.945-3.779L-32.945-3.499M-33.694-7.789L-33.694-5.892L-32.607-5.892Q-31.999-5.892-31.684-6.129Q-31.370-6.367-31.370-6.951Q-31.370-7.344-31.515-7.578Q-31.660-7.812-31.932-7.906Q-32.204-8-32.607-8L-33.328-8Q-33.516-8-33.605-7.966Q-33.694-7.932-33.694-7.789\" 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 fetch stage as a mini-datapath. Instruction memory yields ten bytes at the PC; Split divides byte 0 into icode and ifun; Align routes bytes 1-9 into rA, rB, and valC; a dedicated adder computes valP = PC + 1 + r + 8c, with r and c derived from icode.\u003C\u002Ffigcaption>",1785117687287]