[{"data":1,"prerenderedAt":7318},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":304,"course-wordcounts":1867,"ref-card-index":2779,"tikz:eee4a959e25b661cc988d8dcda407ced14d9ba813c32c2434a6ce1a9034ee7bc":7313,"tikz:1ba9de0c5fde072ed39ec055c2697b62520d4b1a847458bd1f032adf3a220661":7314,"tikz:603cf8d61a12ebdaeaff40431e4cfcd79fa3f3e89a906e526d8b995a73f1f68e":7315,"tikz:b8f754875e3a067cbd44aca84a5bcab31385cc11ee2dfd07a1b9b32678bfca46":7316,"tikz:04008190ce4ee22f1c5dfeeff4382a45c5f0d4f76dcbb6e8b4416b8bb689ae95":7317},[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":84,"blurb":306,"body":307,"brief":1840,"category":1841,"description":1842,"draft":1843,"extension":1844,"meta":1845,"module":80,"navigation":1847,"path":85,"practice":1848,"rawbody":1849,"readingTime":1850,"seo":1855,"sources":1856,"status":1863,"stem":1864,"summary":87,"topics":1865,"__hash__":1866},"course\u002F03.computer-architecture\u002F02.instruction-set-architecture\u002F01.what-an-isa-is.md","",{"type":308,"value":309,"toc":1831},"minimark",[310,319,324,327,331,338,702,712,727,731,742,750,769,784,795,884,1003,1010,1013,1017,1028,1031,1046,1049,1053,1056,1334,1585,1603,1606,1610,1621,1631,1634,1637,1691,1694,1697,1701,1704,1728,1758,1773,1780],[311,312,313,314,318],"p",{},"A compiler team and a chip team can ship a working product without ever speaking,\nand the reason is a single document neither of them is free to change on a whim:\nthe ",[315,316,317],"strong",{},"instruction set architecture",". The ISA is the agreed-upon vocabulary: the\nexact set of instructions, their encodings, the registers and memory they touch,\nand the effect each one has. The compiler emits only words from that vocabulary;\nthe hardware promises to understand every one of them. Pin the vocabulary down and\nthe two halves of the system can evolve independently for decades. This module\nbuilds an ISA from the ground up, and this first lesson says what kind of object\nan ISA is and what its designers are really arguing about.",[320,321,323],"h2",{"id":322},"the-contract-between-hardware-and-software","The contract between hardware and software",[311,325,326],{},"The computing stack is a tower: applications on top, then a\nlanguage runtime, an operating system, the compiler's output, and at the bottom\nthe silicon. Most of those layers can be swapped freely. The one fixed seam\nwhere hardware and software meet is the ISA. It is the\nonly interface in the system that both a piece of software and a piece of hardware\nare written directly against.",[328,329],"tikz-figure",{"hash":330},"eee4a959e25b661cc988d8dcda407ced14d9ba813c32c2434a6ce1a9034ee7bc",[311,332,333,334,337],{},"The payoff of this arrangement is ",[315,335,336],{},"binary compatibility",". A program compiled to\nx86-64 in 2005 still runs on an x86-64 chip built today, even though the two\nprocessors share almost no internal structure: different pipelines, different\ncache sizes, different transistor counts by orders of magnitude. They agree only\nwhere they must, at the ISA. Conversely, a chip vendor can redesign the entire\ninternals of a processor and the entire planet's worth of existing software keeps\nrunning, untouched, because the contract held.",[311,339,340,341,421,422,438,439,442,443,569,570,573,574,696,697,701],{},"Compatibility is asymmetric. Let ",[342,343,346],"span",{"className":344},[345],"katex",[342,347,351],{"className":348,"ariaHidden":350},[349],"katex-html","true",[342,352,355,360],{"className":353},[354],"base",[342,356],{"className":357,"style":359},[358],"strut","height:0.8333em;vertical-align:-0.15em;",[342,361,364,370],{"className":362},[363],"mord",[342,365,369],{"className":366,"style":368},[363,367],"mathnormal","margin-right:0.0785em;","I",[342,371,374],{"className":372},[373],"msupsub",[342,375,379,412],{"className":376},[377,378],"vlist-t","vlist-t2",[342,380,383,407],{"className":381},[382],"vlist-r",[342,384,388],{"className":385,"style":387},[386],"vlist","height:0.2806em;",[342,389,391,396],{"style":390},"top:-2.55em;margin-left:-0.0785em;margin-right:0.05em;",[342,392],{"className":393,"style":395},[394],"pstrut","height:2.7em;",[342,397,403],{"className":398},[399,400,401,402],"sizing","reset-size6","size3","mtight",[342,404,406],{"className":405},[363,367,402],"t",[342,408,411],{"className":409},[410],"vlist-s","​",[342,413,415],{"className":414},[382],[342,416,419],{"className":417,"style":418},[386],"height:0.15em;",[342,420],{}," be the instruction set a chip generation\n",[342,423,425],{"className":424},[345],[342,426,428],{"className":427,"ariaHidden":350},[349],[342,429,431,435],{"className":430},[354],[342,432],{"className":433,"style":434},[358],"height:0.6151em;",[342,436,406],{"className":437},[363,367]," decodes. ",[315,440,441],{},"Backward"," compatibility — new hardware running old binaries —\nrequires ",[342,444,446],{"className":445},[345],[342,447,449,523],{"className":448,"ariaHidden":350},[349],[342,450,452,456,510,515,520],{"className":451},[354],[342,453],{"className":454,"style":455},[358],"height:0.8917em;vertical-align:-0.2083em;",[342,457,459,462],{"className":458},[363],[342,460,369],{"className":461,"style":368},[363,367],[342,463,465],{"className":464},[373],[342,466,468,501],{"className":467},[377,378],[342,469,471,498],{"className":470},[382],[342,472,475],{"className":473,"style":474},[386],"height:0.3011em;",[342,476,477,480],{"style":390},[342,478],{"className":479,"style":395},[394],[342,481,483],{"className":482},[399,400,401,402],[342,484,486,489,494],{"className":485},[363,402],[342,487,406],{"className":488},[363,367,402],[342,490,493],{"className":491},[492,402],"mbin","−",[342,495,497],{"className":496},[363,402],"1",[342,499,411],{"className":500},[410],[342,502,504],{"className":503},[382],[342,505,508],{"className":506,"style":507},[386],"height:0.2083em;",[342,509],{},[342,511],{"className":512,"style":514},[513],"mspace","margin-right:0.2778em;",[342,516,519],{"className":517},[518],"mrel","⊆",[342,521],{"className":522,"style":514},[513],[342,524,526,529],{"className":525},[354],[342,527],{"className":528,"style":359},[358],[342,530,532,535],{"className":531},[363],[342,533,369],{"className":534,"style":368},[363,367],[342,536,538],{"className":537},[373],[342,539,541,561],{"className":540},[377,378],[342,542,544,558],{"className":543},[382],[342,545,547],{"className":546,"style":387},[386],[342,548,549,552],{"style":390},[342,550],{"className":551,"style":395},[394],[342,553,555],{"className":554},[399,400,401,402],[342,556,406],{"className":557},[363,367,402],[342,559,411],{"className":560},[410],[342,562,564],{"className":563},[382],[342,565,567],{"className":566,"style":418},[386],[342,568],{},", and every vendor must keep it, because the\ninstalled software predates the chip and cannot be recompiled to suit it.\n",[315,571,572],{},"Forward"," compatibility — old hardware running binaries built for a newer chip —\nis not promised: a 2005 processor faults on an instruction in ",[342,575,577],{"className":576},[345],[342,578,580,641],{"className":579,"ariaHidden":350},[349],[342,581,583,587,630,634,638],{"className":582},[354],[342,584],{"className":585,"style":586},[358],"height:1em;vertical-align:-0.25em;",[342,588,590,593],{"className":589},[363],[342,591,369],{"className":592,"style":368},[363,367],[342,594,596],{"className":595},[373],[342,597,599,622],{"className":598},[377,378],[342,600,602,619],{"className":601},[382],[342,603,605],{"className":604,"style":387},[386],[342,606,607,610],{"style":390},[342,608],{"className":609,"style":395},[394],[342,611,613],{"className":612},[399,400,401,402],[342,614,616],{"className":615},[363,402],[342,617,406],{"className":618},[363,367,402],[342,620,411],{"className":621},[410],[342,623,625],{"className":624},[382],[342,626,628],{"className":627,"style":418},[386],[342,629],{},[342,631],{"className":632,"style":633},[513],"margin-right:0.2222em;",[342,635,637],{"className":636},[492],"∖",[342,639],{"className":640,"style":633},[513],[342,642,644,647],{"className":643},[354],[342,645],{"className":646,"style":455},[358],[342,648,650,653],{"className":649},[363],[342,651,369],{"className":652,"style":368},[363,367],[342,654,656],{"className":655},[373],[342,657,659,688],{"className":658},[377,378],[342,660,662,685],{"className":661},[382],[342,663,665],{"className":664,"style":474},[386],[342,666,667,670],{"style":390},[342,668],{"className":669,"style":395},[394],[342,671,673],{"className":672},[399,400,401,402],[342,674,676,679,682],{"className":675},[363,402],[342,677,406],{"className":678},[363,367,402],[342,680,493],{"className":681},[492,402],[342,683,497],{"className":684},[363,402],[342,686,411],{"className":687},[410],[342,689,691],{"className":690},[382],[342,692,694],{"className":693,"style":507},[386],[342,695],{}," (say an AVX vector op added in 2013) because its decoder was never taught\nthe encoding. Hence the contract can ",[698,699,700],"em",{},"grow"," but never shrink: encodings may be\nappended, old software simply never uses them, but no encoding that shipping\nsoftware depends on may be withdrawn — which is how forty-year-old corners of x86\nsurvive into every new part. The contract can only grow.",[703,704,706],"callout",{"type":705},"definition",[311,707,708,711],{},[315,709,710],{},"Definition (Instruction set architecture)."," The programmer-visible model of a\nprocessor: the set of instructions it executes, their binary encodings, and the\nregisters, condition codes, and memory they read and write. The ISA is the\nabstraction a compiler targets and a hardware designer is obligated to implement.",[311,713,714,715,718,719,722,723,726],{},"What lives ",[698,716,717],{},"in"," the contract is what software is allowed to depend on: the\ninstructions and their meanings, the registers and their widths, the addressing\nmodes, the byte ordering, how exceptions and interrupts behave. What lives\n",[698,720,721],{},"outside"," it is everything about ",[698,724,725],{},"how"," the work gets done. The contract also cuts\nboth ways in time: once software ships that depends on some corner of the ISA,\neven an awkward one, every future implementation must honor it. x86-64 still\nexecutes encodings whose design decisions date to the 8086 of 1978, not because\nanyone likes them, but because dropping them would break binaries nobody can\nrecompile.",[320,728,730],{"id":729},"architecture-versus-microarchitecture","Architecture versus microarchitecture",[311,732,733,734,738,739],{},"It is tempting to use ",[735,736,737],"q",{},"architecture"," loosely, but the field draws a hard line, and\nkeeping it straight clears up most confusion about what a processor ",[735,740,741],{},"is.",[703,743,744],{"type":705},[311,745,746,749],{},[315,747,748],{},"Definition (Microarchitecture)."," A specific hardware implementation of an ISA:\nthe pipeline depth, the number and kind of functional units, the cache geometry,\nthe branch predictor, the register-renaming machinery — every internal choice\nthat affects speed or power but not the visible result of running a program.",[311,751,752,753,755,756,759,760,764,765,768],{},"The ",[315,754,737],{}," is the contract; the ",[315,757,758],{},"microarchitecture"," is one way of\nhonoring it. Two processors implement the same architecture if a program cannot\ntell them apart by its results, only by how long it takes. Intel's Skylake and a\nbudget Atom core are the same architecture (x86-64) and wildly different\nmicroarchitectures. This separation is what lets the later modules in this course\nbuild a complete processor twice over: first as a simple sequential machine, then\nas a ",[761,762,763],"a",{"href":172},"pipelined"," one, both\nimplementing the ",[698,766,767],{},"same"," Y86-64 ISA we are about to define.",[311,770,771,772,774,775,778,779,783],{},"For example, take the register file. x86-64 the ",[698,773,737],{}," names sixteen\ngeneral-purpose registers, because its encodings carry 4-bit register fields. A\nhigh-end implementation actually contains a few hundred physical registers and\n",[315,776,777],{},"renames"," the sixteen architectural names onto them on the fly, so that\nindependent uses of ",[780,781,782],"code",{},"%rax"," in nearby instructions can execute in parallel. No\nprogram can detect the extra registers; it can only run faster. The sixteen names\nare architecture; the hundreds of slots and the renaming table are\nmicroarchitecture. The same split recurs everywhere: the ISA says a load returns\nthe last value stored, and says nothing about the three levels of cache that make\nmost loads fast; the ISA says instructions execute in program order as far as\nresults are concerned, and says nothing about the out-of-order engine reordering\nthem internally.",[311,785,786,787,790,791,794],{},"The line matters for a working programmer too. The architecture tells you ",[698,788,789],{},"what","\nyour code computes; the microarchitecture tells you ",[698,792,793],{},"how fast",". Cache misses,\nbranch mispredictions, and pipeline stalls are microarchitectural facts:\ninvisible to correctness, decisive for performance.",[311,796,797,798,816,817,819,820,822,823,883],{},"To see the two axes vary independently, run one program on three chips that share\nthe architecture. The program is a tight loop summing an array of ",[342,799,801],{"className":800},[345],[342,802,804],{"className":803,"ariaHidden":350},[349],[342,805,807,811],{"className":806},[354],[342,808],{"className":809,"style":810},[358],"height:0.6833em;",[342,812,815],{"className":813,"style":814},[363,367],"margin-right:0.1389em;","W"," instructions.\nAll three are x86-64, so they fetch the ",[698,818,767],{}," bytes and produce the ",[698,821,767],{}," sum —\nthe architecture holding. Only the cycle count ",[342,824,826],{"className":825},[345],[342,827,829,850,874],{"className":828,"ariaHidden":350},[349],[342,830,832,835,840,843,847],{"className":831},[354],[342,833],{"className":834,"style":810},[358],[342,836,839],{"className":837,"style":838},[363,367],"margin-right:0.0715em;","C",[342,841],{"className":842,"style":514},[513],[342,844,846],{"className":845},[518],"=",[342,848],{"className":849,"style":514},[513],[342,851,853,856,864,867,871],{"className":852},[354],[342,854],{"className":855,"style":810},[358],[342,857,860],{"className":858},[363,859],"text",[342,861,863],{"className":862},[363],"CPI",[342,865],{"className":866,"style":633},[513],[342,868,870],{"className":869},[492],"⋅",[342,872],{"className":873,"style":633},[513],[342,875,877,880],{"className":876},[354],[342,878],{"className":879,"style":810},[358],[342,881,815],{"className":882,"style":814},[363,367]," differs.\nSuppose the array overflows the first-level cache, so each iteration risks a memory\nstall.",[885,886,887,903],"table",{},[888,889,890],"thead",{},[891,892,893,897,900],"tr",{},[894,895,896],"th",{},"Chip",[894,898,899],{},"Microarchitecture",[894,901,902],{},"Cycles",[904,905,906,940,972],"tbody",{},[891,907,908,912,915],{},[909,910,911],"td",{},"A",[909,913,914],{},"in-order, two-level cache",[909,916,917],{},[342,918,920],{"className":919},[345],[342,921,923],{"className":922,"ariaHidden":350},[349],[342,924,926,929,933,937],{"className":925},[354],[342,927],{"className":928,"style":810},[358],[342,930,932],{"className":931},[363],"3.1",[342,934],{"className":935,"style":936},[513],"margin-right:0.1667em;",[342,938,815],{"className":939,"style":814},[363,367],[891,941,942,945,948],{},[909,943,944],{},"B",[909,946,947],{},"out-of-order, wide issue",[909,949,950],{},[342,951,953],{"className":952},[345],[342,954,956],{"className":955,"ariaHidden":350},[349],[342,957,959,962,966,969],{"className":958},[354],[342,960],{"className":961,"style":810},[358],[342,963,965],{"className":964},[363],"1.2",[342,967],{"className":968,"style":936},[513],[342,970,815],{"className":971,"style":814},[363,367],[891,973,974,976,979],{},[909,975,839],{},[909,977,978],{},"out-of-order, larger LLC",[909,980,981],{},[342,982,984],{"className":983},[345],[342,985,987],{"className":986,"ariaHidden":350},[349],[342,988,990,993,997,1000],{"className":989},[354],[342,991],{"className":992,"style":810},[358],[342,994,996],{"className":995},[363],"0.9",[342,998],{"className":999,"style":936},[513],[342,1001,815],{"className":1002,"style":814},[363,367],[311,1004,1005,1006,1009],{},"Chip A stalls often; chip B keeps dozens of iterations in flight and hides most\nstalls behind independent work; chip C keeps more of the array warm. A better than\nthreefold spread in time, one architecture, three microarchitectures. No line of\nthe program changed, and no line ",[698,1007,1008],{},"could"," have changed to reveal which chip it ran\non — only a stopwatch tells them apart.",[328,1011],{"hash":1012},"1ba9de0c5fde072ed39ec055c2697b62520d4b1a847458bd1f032adf3a220661",[320,1014,1016],{"id":1015},"two-philosophies-risc-and-cisc","Two philosophies: RISC and CISC",[311,1018,1019,1020,1023,1024,1027],{},"Designing an ISA forces one central question: when should the hardware do something\ncomplicated, and when should it make the compiler do it instead? Two schools\nanswered oppositely, and the names stuck — ",[315,1021,1022],{},"CISC"," (Complex Instruction Set\nComputer) and ",[315,1025,1026],{},"RISC"," (Reduced Instruction Set Computer).",[311,1029,1030],{},"CISC, the older style, grew up when memory was scarce and compilers were weak.\nIts approach is to make each instruction do a lot: a single instruction might load\ntwo operands from memory, multiply them, and store the result, all at once.\nInstructions vary in length so that common operations stay compact. x86 is the\ncanonical CISC: it has hundreds of instructions and encodings from 1 to 15 bytes\nlong.",[311,1032,1033,1034,1037,1038,1041,1042,1045],{},"RISC took the opposite bet, made once compilers improved and memory grew cheap.\nKeep the instruction set small and uniform: every instruction is the ",[315,1035,1036],{},"same\nlength"," (typically 4 bytes), most run in a single cycle, and — the defining rule —\nonly explicit ",[780,1039,1040],{},"load"," and ",[780,1043,1044],{},"store"," instructions touch memory, while all arithmetic\nhappens register-to-register. The hardware stays simple and fast; the compiler\ntakes on the job of stitching simple instructions into complex behavior.",[328,1047],{"hash":1048},"603cf8d61a12ebdaeaff40431e4cfcd79fa3f3e89a906e526d8b995a73f1f68e",[320,1050,1052],{"id":1051},"what-each-choice-costs","What each choice costs",[311,1054,1055],{},"The table reads like a matter of taste until you price the rows out in hardware\nand in bytes. Three consequences carry most of the weight.",[311,1057,1058,1061,1062,1078,1079,1097,1098,1116,1117,1134,1135,1150,1151,1177,1178,1285,1286,1313,1314,1329,1330,1333],{},[315,1059,1060],{},"Decode complexity."," With a fixed instruction length ",[342,1063,1065],{"className":1064},[345],[342,1066,1068],{"className":1067,"ariaHidden":350},[349],[342,1069,1071,1074],{"className":1070},[354],[342,1072],{"className":1073,"style":810},[358],[342,1075,1077],{"className":1076},[363,367],"L",", instruction ",[342,1080,1082],{"className":1081},[345],[342,1083,1085],{"className":1084,"ariaHidden":350},[349],[342,1086,1088,1092],{"className":1087},[354],[342,1089],{"className":1090,"style":1091},[358],"height:0.6944em;",[342,1093,1096],{"className":1094,"style":1095},[363,367],"margin-right:0.0315em;","k"," of a\nfetched block starts at byte ",[342,1099,1101],{"className":1100},[345],[342,1102,1104],{"className":1103,"ariaHidden":350},[349],[342,1105,1107,1110,1113],{"className":1106},[354],[342,1108],{"className":1109,"style":1091},[358],[342,1111,1077],{"className":1112},[363,367],[342,1114,1096],{"className":1115,"style":1095},[363,367]," — the boundaries are known before a single\nopcode is read, so a block of ",[342,1118,1120],{"className":1119},[345],[342,1121,1123],{"className":1122,"ariaHidden":350},[349],[342,1124,1126,1130],{"className":1125},[354],[342,1127],{"className":1128,"style":1129},[358],"height:0.4306em;",[342,1131,1133],{"className":1132},[363,367],"n"," instructions feeds ",[342,1136,1138],{"className":1137},[345],[342,1139,1141],{"className":1140,"ariaHidden":350},[349],[342,1142,1144,1147],{"className":1143},[354],[342,1145],{"className":1146,"style":1129},[358],[342,1148,1133],{"className":1149},[363,367]," decoders in parallel.\nVariable length destroys this: the start of instruction ",[342,1152,1154],{"className":1153},[345],[342,1155,1157],{"className":1156,"ariaHidden":350},[349],[342,1158,1160,1164,1167,1174],{"className":1159},[354],[342,1161],{"className":1162,"style":1163},[358],"height:0.7778em;vertical-align:-0.0833em;",[342,1165,1096],{"className":1166,"style":1095},[363,367],[342,1168,1170],{"className":1169},[363],[342,1171,1173],{"className":1172},[363],"+",[342,1175,497],{"className":1176},[363]," is\n",[342,1179,1181],{"className":1180},[345],[342,1182,1184,1228,1258],{"className":1183,"ariaHidden":350},[349],[342,1185,1187,1190,1197,1202,1205,1211,1214,1219,1222,1225],{"className":1186},[354],[342,1188],{"className":1189,"style":586},[358],[342,1191,1193],{"className":1192},[363,859],[342,1194,1196],{"className":1195},[363],"start",[342,1198,1201],{"className":1199},[1200],"mopen","(",[342,1203,1096],{"className":1204,"style":1095},[363,367],[342,1206,1208],{"className":1207},[363],[342,1209,1173],{"className":1210},[363],[342,1212,497],{"className":1213},[363],[342,1215,1218],{"className":1216},[1217],"mclose",")",[342,1220],{"className":1221,"style":514},[513],[342,1223,846],{"className":1224},[518],[342,1226],{"className":1227,"style":514},[513],[342,1229,1231,1234,1240,1243,1246,1249,1252,1255],{"className":1230},[354],[342,1232],{"className":1233,"style":586},[358],[342,1235,1237],{"className":1236},[363,859],[342,1238,1196],{"className":1239},[363],[342,1241,1201],{"className":1242},[1200],[342,1244,1096],{"className":1245,"style":1095},[363,367],[342,1247,1218],{"className":1248},[1217],[342,1250],{"className":1251,"style":633},[513],[342,1253,1173],{"className":1254},[492],[342,1256],{"className":1257,"style":633},[513],[342,1259,1261,1264,1271,1274,1277,1280],{"className":1260},[354],[342,1262],{"className":1263,"style":586},[358],[342,1265,1267],{"className":1266},[363,859],[342,1268,1270],{"className":1269},[363],"len",[342,1272,1201],{"className":1273},[1200],[342,1275,1096],{"className":1276,"style":1095},[363,367],[342,1278,1218],{"className":1279},[1217],[342,1281,1284],{"className":1282},[1283],"mpunct",",","\nand on x86 ",[342,1287,1289],{"className":1288},[345],[342,1290,1292],{"className":1291,"ariaHidden":350},[349],[342,1293,1295,1298,1304,1307,1310],{"className":1294},[354],[342,1296],{"className":1297,"style":586},[358],[342,1299,1301],{"className":1300},[363,859],[342,1302,1270],{"className":1303},[363],[342,1305,1201],{"className":1306},[1200],[342,1308,1096],{"className":1309,"style":1095},[363,367],[342,1311,1218],{"className":1312},[1217]," depends on optional prefixes, the opcode, and the\naddressing-mode byte, so it is not known until instruction ",[342,1315,1317],{"className":1316},[345],[342,1318,1320],{"className":1319,"ariaHidden":350},[349],[342,1321,1323,1326],{"className":1322},[354],[342,1324],{"className":1325,"style":1091},[358],[342,1327,1096],{"className":1328,"style":1095},[363,367]," is itself decoded.\nBoundary-finding is inherently serial. To decode four instructions per cycle from a\n16-byte block anyway, a wide x86 front end speculatively starts a decoder at ",[698,1331,1332],{},"every","\nbyte offset — up to 15 candidate starts — and discards those that land\nmid-instruction. That parallel-guess-and-discard is silicon and power spent\nrecovering length information a fixed-length encoding hands over for free.",[311,1335,1336,1339,1340,1343,1344,1347,1348,1478,1479,1584],{},[315,1337,1338],{},"Code density."," Variable length's advantage is bytes. The x86-64 encoding of\n",[780,1341,1342],{},"pushq %rbp"," is one byte (",[780,1345,1346],{},"55","); a register-to-register add is three; only\ninstructions hauling large constants stretch toward the maximum. Compiled x86-64\naverages ",[342,1349,1351],{"className":1350},[345],[342,1352,1354,1456],{"className":1353,"ariaHidden":350},[349],[342,1355,1357,1361,1446,1449,1453],{"className":1356},[354],[342,1358],{"className":1359,"style":1360},[358],"height:0.9812em;vertical-align:-0.15em;",[342,1362,1364,1404],{"className":1363},[363],[342,1365,1368],{"className":1366},[363,1367],"accent",[342,1369,1371],{"className":1370},[377],[342,1372,1374],{"className":1373},[382],[342,1375,1378,1389],{"className":1376,"style":1377},[386],"height:0.8312em;",[342,1379,1381,1385],{"style":1380},"top:-3em;",[342,1382],{"className":1383,"style":1384},[394],"height:3em;",[342,1386,1388],{"className":1387},[363,367],"b",[342,1390,1392,1395],{"style":1391},"top:-3.2634em;",[342,1393],{"className":1394,"style":1384},[394],[342,1396,1400],{"className":1397,"style":1399},[1398],"accent-body","left:-0.25em;",[342,1401,1403],{"className":1402},[363],"ˉ",[342,1405,1407],{"className":1406},[373],[342,1408,1410,1438],{"className":1409},[377,378],[342,1411,1413,1435],{"className":1412},[382],[342,1414,1416],{"className":1415,"style":474},[386],[342,1417,1419,1422],{"style":1418},"top:-2.55em;margin-left:0em;margin-right:0.05em;",[342,1420],{"className":1421,"style":395},[394],[342,1423,1425],{"className":1424},[399,400,401,402],[342,1426,1428],{"className":1427},[363,402],[342,1429,1431],{"className":1430},[363,859,402],[342,1432,1434],{"className":1433},[363,402],"x86",[342,1436,411],{"className":1437},[410],[342,1439,1441],{"className":1440},[382],[342,1442,1444],{"className":1443,"style":418},[386],[342,1445],{},[342,1447],{"className":1448,"style":514},[513],[342,1450,1452],{"className":1451},[518],"≈",[342,1454],{"className":1455,"style":514},[513],[342,1457,1459,1463,1467,1474],{"className":1458},[354],[342,1460],{"className":1461,"style":1462},[358],"height:0.6444em;",[342,1464,1466],{"className":1465},[363],"3",[342,1468,1470],{"className":1469},[363,859],[342,1471,1473],{"className":1472},[363],"–",[342,1475,1477],{"className":1476},[363],"4"," bytes per instruction against a\nflat ",[342,1480,1482],{"className":1481},[345],[342,1483,1485,1575],{"className":1484,"ariaHidden":350},[349],[342,1486,1488,1491,1566,1569,1572],{"className":1487},[354],[342,1489],{"className":1490,"style":1360},[358],[342,1492,1494,1525],{"className":1493},[363],[342,1495,1497],{"className":1496},[363,1367],[342,1498,1500],{"className":1499},[377],[342,1501,1503],{"className":1502},[382],[342,1504,1506,1514],{"className":1505,"style":1377},[386],[342,1507,1508,1511],{"style":1380},[342,1509],{"className":1510,"style":1384},[394],[342,1512,1388],{"className":1513},[363,367],[342,1515,1516,1519],{"style":1391},[342,1517],{"className":1518,"style":1384},[394],[342,1520,1522],{"className":1521,"style":1399},[1398],[342,1523,1403],{"className":1524},[363],[342,1526,1528],{"className":1527},[373],[342,1529,1531,1558],{"className":1530},[377,378],[342,1532,1534,1555],{"className":1533},[382],[342,1535,1538],{"className":1536,"style":1537},[386],"height:0.3283em;",[342,1539,1540,1543],{"style":1418},[342,1541],{"className":1542,"style":395},[394],[342,1544,1546],{"className":1545},[399,400,401,402],[342,1547,1549],{"className":1548},[363,402],[342,1550,1552],{"className":1551},[363,859,402],[342,1553,1026],{"className":1554},[363,402],[342,1556,411],{"className":1557},[410],[342,1559,1561],{"className":1560},[382],[342,1562,1564],{"className":1563,"style":418},[386],[342,1565],{},[342,1567],{"className":1568,"style":514},[513],[342,1570,846],{"className":1571},[518],[342,1573],{"className":1574,"style":514},[513],[342,1576,1578,1581],{"className":1577},[354],[342,1579],{"className":1580,"style":1462},[358],[342,1582,1477],{"className":1583},[363],", so the same program occupies fewer bytes and more\nof it fits in the instruction cache — a performance asset, not just a storage\nsaving. The RISC camp\nconceded the point in its own way: ARM's Thumb and RISC-V's compressed extension\nadd 2-byte forms of the most common instructions, trading back a little decode\nsimplicity for density.",[311,1586,1587,1590,1591,1594,1595,1598,1599,1602],{},[315,1588,1589],{},"Pipeline friendliness."," The load\u002Fstore rule is the most consequential entry in\nthe RISC column. If arithmetic never touches memory, then every instruction needs the same\nshort list of resources in the same order — fetch, decode, read registers,\nexecute, maybe one memory access, write back — and the pipeline can be one clean\nfive-stage structure. A CISC instruction like ",[780,1592,1593],{},"addq (%rbx), %rax"," needs a memory\nread ",[698,1596,1597],{},"and"," an ALU operation, and a memory-to-memory instruction would need even\nmore, so either the pipeline grows extra stages that most instructions waste, or\nthe control logic becomes a thicket of special cases. When this course builds a\n",[761,1600,1601],{"href":172},"pipelined processor",",\nthe regularity of its RISC-flavored ISA is precisely what makes the design fit in\na lesson.",[328,1604],{"hash":1605},"b8f754875e3a067cbd44aca84a5bcab31385cc11ee2dfd07a1b9b32678bfca46",[320,1607,1609],{"id":1608},"why-x86-64-survives","Why x86-64 survives",[311,1611,1612,1613,1616,1617,1620],{},"By the pricing above, x86-64 should have lost: it drags four decades'-worth of\naccumulated encodings behind it and pays the full decode tax on every fetch. It\nsurvives because modern implementations stopped executing x86 directly. The\ndecoder at the front of every high-end x86 chip ",[315,1614,1615],{},"translates"," each incoming\ninstruction into one or more simple, fixed-format internal operations called\n",[315,1618,1619],{},"micro-ops",", and everything past the decoder is a RISC-style machine executing\nthose.",[311,1622,1623,1624,1627,1628,1630],{},"The translation is easy to picture on a real instruction. ",[780,1625,1626],{},"addq 8(%rbx), %rax","\nis one x86-64 instruction that reads memory and adds; the decoder splits it into a\nload micro-op that fetches the memory operand into an internal temporary, and an\nadd micro-op that combines the temporary with ",[780,1629,782],{},". Simple instructions map one\nto one; the baroque ones fall back to a lookup ROM that emits longer micro-op\nsequences. Decoded micro-ops are even cached, so a hot loop skips the x86 decode\ntax entirely on repeat passes.",[328,1632],{"hash":1633},"04008190ce4ee22f1c5dfeeff4382a45c5f0d4f76dcbb6e8b4416b8bb689ae95",[311,1635,1636],{},"Count the work to see the split pay off. A four-instruction x86-64 loop body\nexpands to fixed-format micro-ops:",[885,1638,1639,1649],{},[888,1640,1641],{},[891,1642,1643,1646],{},[894,1644,1645],{},"x86-64 instruction",[894,1647,1648],{},"Micro-ops",[904,1650,1651,1661,1671,1681],{},[891,1652,1653,1658],{},[909,1654,1655],{},[780,1656,1657],{},"movq (%rsi,%rcx,8), %rax",[909,1659,1660],{},"address-compute + load",[891,1662,1663,1668],{},[909,1664,1665],{},[780,1666,1667],{},"addq %rax, %rdx",[909,1669,1670],{},"add",[891,1672,1673,1678],{},[909,1674,1675],{},[780,1676,1677],{},"decq %rcx",[909,1679,1680],{},"dec",[891,1682,1683,1688],{},[909,1684,1685],{},[780,1686,1687],{},"jne",[909,1689,1690],{},"branch",[311,1692,1693],{},"Four architectural instructions become six micro-ops, each doing exactly one\nregister-to-register operation, one memory access, or one branch — the shape a\nfive-stage RISC pipeline was built for. The CISC encoding lives only long enough to\nbe translated; from the micro-op queue onward the machine does RISC work, and on\nthe loop's second pass even translation is skipped, the micro-ops having been cached\nthe first pass.",[311,1695,1696],{},"So the contract is CISC and the machine underneath is essentially RISC, which is\nthe neatest possible demonstration of the architecture\u002Fmicroarchitecture split:\nthe entire translation layer is microarchitecture, invisible to every program ever\ncompiled. The reason vendors pay for that layer rather than switching contracts is\neconomic, not technical. The installed base of x86-64 binaries — operating\nsystems, decades of commercial software nobody can recompile — is worth more than\nthe silicon the decoder costs. Pure RISC designs, meanwhile, dominate phones and\nembedded systems and have moved into laptops and servers, where fixed-length\ndecoding saves power and no comparable binary legacy holds the door shut.",[320,1698,1700],{"id":1699},"the-risc-resurgence-and-an-open-isa","The RISC resurgence and an open ISA",[311,1702,1703],{},"CS:APP presents the RISC\u002FCISC debate as settled history — the x86-64 it\ntargets won the desktop, and the argument moved inside the decoder. The decade\nsince has reopened the question at both ends of the market, and in a way the pricing\nabove predicts exactly.",[311,1705,1706,1709,1710,1719,1720,1723,1724,1727],{},[315,1707,1708],{},"Apple Silicon."," In 2020 Apple replaced Intel x86-64 in its laptops with the M1,\na chip built on the ARM architecture — fixed-length, load\u002Fstore, the RISC column of\nthe table.",[1711,1712,1713],"sup",{},[761,1714,497],{"href":1715,"ariaDescribedBy":1716,"dataFootnoteRef":306,"id":1718},"#user-content-fn-m1",[1717],"footnote-label","user-content-fnref-m1"," The pricing predicts why this was possible now and not before. Fixed\n4-byte instructions let the M1's front end decode ",[315,1721,1722],{},"eight"," instructions per cycle\nwithout the speculative boundary-guessing an x86 front end pays for, a width that is\nbrutally expensive on variable-length code and nearly free on fixed-length. The one\nthing that had held ARM off the laptop for years was the binary legacy — decades of\nx86 software — and Apple bridged it with ",[315,1725,1726],{},"Rosetta 2",", which translates x86-64\nbinaries to ARM ahead of time. That is the same move x86 makes internally\n(translate one ISA into another), lifted up into software and run once at install\ntime rather than continuously in hardware.",[311,1729,1730,1733,1734,1737,1738,1741,1742,1744,1745,1753,1754,1757],{},[315,1731,1732],{},"RISC-V."," The other development is that the RISC idea became an ",[698,1735,1736],{},"open standard","\nanyone may implement without a license. RISC-V, whose base integer ISA was ratified\nin 2019, is a clean modern take on the RISC column: fixed 4-byte instructions, a\nload\u002Fstore discipline, a small base set, and — conceding exactly the density point\npriced above — an optional ",[315,1739,1740],{},"compressed extension"," (",[735,1743,839],{},") adding 2-byte forms of the\ncommonest instructions.",[1711,1746,1747],{},[761,1748,1752],{"href":1749,"ariaDescribedBy":1750,"dataFootnoteRef":306,"id":1751},"#user-content-fn-riscv",[1717],"user-content-fnref-riscv","2"," The compressed extension is the design space diagram\nmade real: RISC-V starts at classic-RISC decode simplicity and buys back some density\nby adding a second instruction length, landing where ",[735,1755,1756],{},"compressed RISC"," sits on the\nplot. That an ISA can be a public specification with dozens of independent\nimplementations, rather than one company's product, is the architecture\u002F\nmicroarchitecture split taken to its limit — the contract belongs to no one, and the\nimplementations compete freely beneath it.",[703,1759,1761],{"type":1760},"note",[311,1762,1763,1766,1767,1769,1770,1772],{},[315,1764,1765],{},"Takeaway."," An ISA is the stable contract between software and hardware: the\ninstructions, encodings, and state a program may depend on. The ",[698,1768,737],{}," is\nthat contract; a ",[698,1771,758],{}," is one implementation of it, free to differ\nin everything but visible results. RISC and CISC are opposite answers to where\ncomplexity should live, and the price list is concrete: variable length buys\ncode density and pays in decode hardware; fixed length and load\u002Fstore buy cheap\ndecode and a clean pipeline. x86-64 survives by translating its CISC contract\ninto RISC micro-ops internally — while Apple Silicon and the open RISC-V\nstandard show the fixed-length side of the same ledger paying off in new markets.",[311,1774,1775,1776,1779],{},"With the idea of a contract in hand, the next lesson opens it up: how an\ninstruction actually encodes an operation and its operands, and how many operands\na machine even names, in\n",[761,1777,1778],{"href":90},"instruction formats and operands",".",[1781,1782,1785,1790],"section",{"className":1783,"dataFootnotes":306},[1784],"footnotes",[320,1786,1789],{"className":1787,"id":1717},[1788],"sr-only","Footnotes",[1791,1792,1793,1812],"ol",{},[1794,1795,1797,1798,1801,1802,1804,1805],"li",{"id":1796},"user-content-fn-m1","The Apple M1 (2020) implements the ",[315,1799,1800],{},"ARMv8-A"," architecture, a fixed-length\nload\u002Fstore (RISC) ISA; its wide instruction decoder and the ",[315,1803,1726],{}," x86-64\ntranslation layer are documented in Apple's platform materials and analyzed in\ndetail by Johlin and others in the trade press. The general point — that\nfixed-length encoding enables very wide decode cheaply — is the code-density\u002F\ndecode-complexity trade of CS:APP §4.1 applied to a modern part. ",[761,1806,1811],{"href":1807,"ariaLabel":1808,"className":1809,"dataFootnoteBackref":306},"#user-content-fnref-m1","Back to reference 1",[1810],"data-footnote-backref","↩",[1794,1813,1815,1818,1819,1822,1823,1825,1826],{"id":1814},"user-content-fn-riscv",[315,1816,1817],{},"A. Waterman and K. Asanović, eds.",", ",[698,1820,1821],{},"The RISC-V Instruction Set Manual,\nVolume I: Unprivileged ISA"," (RISC-V International). The base integer ISA (RV32I\u002F\nRV64I) was ratified in 2019; the ",[735,1824,839],{}," compressed extension adds 16-bit encodings of\ncommon instructions, trading a second instruction length for code density exactly\nas ARM's Thumb does. ",[761,1827,1811],{"href":1828,"ariaLabel":1829,"className":1830,"dataFootnoteBackref":306},"#user-content-fnref-riscv","Back to reference 2",[1810],{"title":306,"searchDepth":17,"depth":17,"links":1832},[1833,1834,1835,1836,1837,1838,1839],{"id":322,"depth":17,"text":323},{"id":729,"depth":17,"text":730},{"id":1015,"depth":17,"text":1016},{"id":1051,"depth":17,"text":1052},{"id":1608,"depth":17,"text":1609},{"id":1699,"depth":17,"text":1700},{"id":1717,"depth":17,"text":1789},[],"computer-science","A compiler team and a chip team can ship a working product without ever speaking,\nand the reason is a single document neither of them is free to change on a whim:\nthe instruction set architecture. The ISA is the agreed-upon vocabulary: the\nexact set of instructions, their encodings, the registers and memory they touch,\nand the effect each one has. The compiler emits only words from that vocabulary;\nthe hardware promises to understand every one of them. Pin the vocabulary down and\nthe two halves of the system can evolve independently for decades. This module\nbuilds an ISA from the ground up, and this first lesson says what kind of object\nan ISA is and what its designers are really arguing about.",false,"md",{"moduleNumber":17,"lessonNumber":6,"order":1846},201,true,[],"---\ntitle: What an ISA Is\nmodule: Instruction Set Architecture\nmoduleNumber: 2\nlessonNumber: 1\norder: 201\nsummary: >\n  The instruction set architecture is the contract that lets a compiler and a chip\n  be written by people who never meet: the stable interface software targets and\n  hardware implements. We separate architecture from microarchitecture, read RISC\n  and CISC as opposite answers to where complexity should live, price out what each\n  choice costs in decode hardware, code density, and pipeline friendliness, and see\n  how x86-64 endures by translating its instructions into RISC-like operations\n  on the fly.\ntopics: [Instruction Set Architecture]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4.1 The Y86-64 Instruction Set Architecture\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §3 Instruction Set Design\"\n---\n\nA compiler team and a chip team can ship a working product without ever speaking,\nand the reason is a single document neither of them is free to change on a whim:\nthe **instruction set architecture**. The ISA is the agreed-upon vocabulary: the\nexact set of instructions, their encodings, the registers and memory they touch,\nand the effect each one has. The compiler emits only words from that vocabulary;\nthe hardware promises to understand every one of them. Pin the vocabulary down and\nthe two halves of the system can evolve independently for decades. This module\nbuilds an ISA from the ground up, and this first lesson says what kind of object\nan ISA is and what its designers are really arguing about.\n\n## The contract between hardware and software\n\nThe computing stack is a tower: applications on top, then a\nlanguage runtime, an operating system, the compiler's output, and at the bottom\nthe silicon. Most of those layers can be swapped freely. The one fixed seam\nwhere hardware and software meet is the ISA. It is the\nonly interface in the system that both a piece of software and a piece of hardware\nare written directly against.\n\n$$\n% caption: The ISA as a horizontal contract. Everything above it — applications,\n% caption: compilers, operating systems — is written to target the ISA; every\n% caption: microarchitecture below it is one hardware implementation of the same\n% caption: contract, free to differ in speed, power, and internal cleverness.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  sw\u002F.style={draw, minimum width=52mm, minimum height=7mm, align=center},\n  hw\u002F.style={draw, minimum width=24mm, minimum height=9mm, align=center,\n             fill=acc!8}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % software stack\n  \\node[sw] (app) at (0,2.7) {applications};\n  \\node[sw] (cmp) at (0,1.8) {compilers, runtimes, OS};\n  % the contract bar\n  \\node[draw=acc, thick, text=acc, fill=acc!8,\n        minimum width=58mm, minimum height=8mm, align=center] (isa) at (0,0.6)\n        {\\textbf{instruction set architecture}};\n  % microarchitectures\n  \\node[hw] (m1) at (-2.0,-1.0) {in-order\\\\core};\n  \\node[hw] (m2) at ( 0.0,-1.0) {out-of-order\\\\core};\n  \\node[hw] (m3) at ( 2.0,-1.0) {low-power\\\\core};\n  % connect software down to the bar, bar down to hardware\n  \\draw[->] (cmp) -- (isa) node[midway, right, text=acc, font=\\scriptsize] {targets};\n  \\draw[->] (isa.south) -- (m1.north);\n  \\draw[->] (isa.south) -- (m2.north);\n  \\draw[->] (isa.south) -- (m3.north);\n  \\node[text=acc, font=\\scriptsize] at (3.6,-1.0) {implement};\n\\end{tikzpicture}\n$$\n\nThe payoff of this arrangement is **binary compatibility**. A program compiled to\nx86-64 in 2005 still runs on an x86-64 chip built today, even though the two\nprocessors share almost no internal structure: different pipelines, different\ncache sizes, different transistor counts by orders of magnitude. They agree only\nwhere they must, at the ISA. Conversely, a chip vendor can redesign the entire\ninternals of a processor and the entire planet's worth of existing software keeps\nrunning, untouched, because the contract held.\n\nCompatibility is asymmetric. Let $I_t$ be the instruction set a chip generation\n$t$ decodes. **Backward** compatibility — new hardware running old binaries —\nrequires $I_{t-1} \\subseteq I_t$, and every vendor must keep it, because the\ninstalled software predates the chip and cannot be recompiled to suit it.\n**Forward** compatibility — old hardware running binaries built for a newer chip —\nis not promised: a 2005 processor faults on an instruction in $I_{t} \\setminus\nI_{t-1}$ (say an AVX vector op added in 2013) because its decoder was never taught\nthe encoding. Hence the contract can _grow_ but never shrink: encodings may be\nappended, old software simply never uses them, but no encoding that shipping\nsoftware depends on may be withdrawn — which is how forty-year-old corners of x86\nsurvive into every new part. The contract can only grow.\n\n> **Definition (Instruction set architecture).** The programmer-visible model of a\n> processor: the set of instructions it executes, their binary encodings, and the\n> registers, condition codes, and memory they read and write. The ISA is the\n> abstraction a compiler targets and a hardware designer is obligated to implement.\n\nWhat lives _in_ the contract is what software is allowed to depend on: the\ninstructions and their meanings, the registers and their widths, the addressing\nmodes, the byte ordering, how exceptions and interrupts behave. What lives\n_outside_ it is everything about _how_ the work gets done. The contract also cuts\nboth ways in time: once software ships that depends on some corner of the ISA,\neven an awkward one, every future implementation must honor it. x86-64 still\nexecutes encodings whose design decisions date to the 8086 of 1978, not because\nanyone likes them, but because dropping them would break binaries nobody can\nrecompile.\n\n## Architecture versus microarchitecture\n\nIt is tempting to use \"architecture\" loosely, but the field draws a hard line, and\nkeeping it straight clears up most confusion about what a processor \"is.\"\n\n> **Definition (Microarchitecture).** A specific hardware implementation of an ISA:\n> the pipeline depth, the number and kind of functional units, the cache geometry,\n> the branch predictor, the register-renaming machinery — every internal choice\n> that affects speed or power but not the visible result of running a program.\n\nThe **architecture** is the contract; the **microarchitecture** is one way of\nhonoring it. Two processors implement the same architecture if a program cannot\ntell them apart by its results, only by how long it takes. Intel's Skylake and a\nbudget Atom core are the same architecture (x86-64) and wildly different\nmicroarchitectures. This separation is what lets the later modules in this course\nbuild a complete processor twice over: first as a simple sequential machine, then\nas a [pipelined](\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles) one, both\nimplementing the _same_ Y86-64 ISA we are about to define.\n\nFor example, take the register file. x86-64 the _architecture_ names sixteen\ngeneral-purpose registers, because its encodings carry 4-bit register fields. A\nhigh-end implementation actually contains a few hundred physical registers and\n**renames** the sixteen architectural names onto them on the fly, so that\nindependent uses of `%rax` in nearby instructions can execute in parallel. No\nprogram can detect the extra registers; it can only run faster. The sixteen names\nare architecture; the hundreds of slots and the renaming table are\nmicroarchitecture. The same split recurs everywhere: the ISA says a load returns\nthe last value stored, and says nothing about the three levels of cache that make\nmost loads fast; the ISA says instructions execute in program order as far as\nresults are concerned, and says nothing about the out-of-order engine reordering\nthem internally.\n\nThe line matters for a working programmer too. The architecture tells you _what_\nyour code computes; the microarchitecture tells you _how fast_. Cache misses,\nbranch mispredictions, and pipeline stalls are microarchitectural facts:\ninvisible to correctness, decisive for performance.\n\nTo see the two axes vary independently, run one program on three chips that share\nthe architecture. The program is a tight loop summing an array of $W$ instructions.\nAll three are x86-64, so they fetch the _same_ bytes and produce the _same_ sum —\nthe architecture holding. Only the cycle count $C = \\text{CPI} \\cdot W$ differs.\nSuppose the array overflows the first-level cache, so each iteration risks a memory\nstall.\n\n| Chip | Microarchitecture | Cycles |\n| --- | --- | --- |\n| A | in-order, two-level cache | $3.1\\,W$ |\n| B | out-of-order, wide issue | $1.2\\,W$ |\n| C | out-of-order, larger LLC | $0.9\\,W$ |\n\nChip A stalls often; chip B keeps dozens of iterations in flight and hides most\nstalls behind independent work; chip C keeps more of the array warm. A better than\nthreefold spread in time, one architecture, three microarchitectures. No line of\nthe program changed, and no line _could_ have changed to reveal which chip it ran\non — only a stopwatch tells them apart.\n\n$$\n% caption: One architecture, three microarchitectures. The same x86-64 program (W\n% caption: instructions) produces the same result on all three chips, so the\n% caption: architecture is fixed. Only the running time differs — in-order with a\n% caption: small cache is slowest, out-of-order faster, out-of-order with a big\n% caption: cache faster still — and the program cannot tell which one it ran on.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  chip\u002F.style={draw, minimum width=40mm, minimum height=8mm, align=center},\n  bar\u002F.style={fill=acc!8, draw=acc, thick}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[chip] (a) at (0,0)    {chip A: in-order,\\\\small cache};\n  \\node[chip] (b) at (0,-1.2) {chip B: out-of-order};\n  \\node[chip] (c) at (0,-2.4) {chip C: out-of-order,\\\\big cache};\n  % bars, length proportional to cycles\n  \\draw[bar] (2.5,-0.25) rectangle (8.7,0.25);\n  \\draw[bar] (2.5,-1.45) rectangle (5.4,-0.95);\n  \\draw[bar] (2.5,-2.65) rectangle (4.5,-2.15);\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (8.85,0)    {slowest};\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (5.55,-1.2) {faster};\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (4.65,-2.4) {fastest};\n  \\node[anchor=north, font=\\scriptsize] at (5.6,-3.1)\n        {same $W$ instructions, same result, di\\\u002Ff\\\u002Fferent time};\n\\end{tikzpicture}\n$$\n\n## Two philosophies: RISC and CISC\n\nDesigning an ISA forces one central question: when should the hardware do something\ncomplicated, and when should it make the compiler do it instead? Two schools\nanswered oppositely, and the names stuck — **CISC** (Complex Instruction Set\nComputer) and **RISC** (Reduced Instruction Set Computer).\n\nCISC, the older style, grew up when memory was scarce and compilers were weak.\nIts approach is to make each instruction do a lot: a single instruction might load\ntwo operands from memory, multiply them, and store the result, all at once.\nInstructions vary in length so that common operations stay compact. x86 is the\ncanonical CISC: it has hundreds of instructions and encodings from 1 to 15 bytes\nlong.\n\nRISC took the opposite bet, made once compilers improved and memory grew cheap.\nKeep the instruction set small and uniform: every instruction is the **same\nlength** (typically 4 bytes), most run in a single cycle, and — the defining rule —\nonly explicit `load` and `store` instructions touch memory, while all arithmetic\nhappens register-to-register. The hardware stays simple and fast; the compiler\ntakes on the job of stitching simple instructions into complex behavior.\n\n$$\n% caption: RISC versus CISC as opposite answers to one question — where complexity\n% caption: lives. RISC pushes it up into the compiler and keeps instructions short,\n% caption: fixed-length, and register-only; CISC pushes it down into rich,\n% caption: variable-length instructions that can compute on memory directly.\n\\begin{tikzpicture}[font=\\footnotesize,\n  hd\u002F.style={draw, minimum width=40mm, minimum height=7mm, align=center,\n             fill=acc!8, text=acc, thick},\n  row\u002F.style={align=left, text width=38mm}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[hd] (r) at (0,0)   {RISC};\n  \\node[hd] (c) at (5.2,0) {CISC};\n  \\foreach \\y\u002F\\rt\u002F\\ct in {\n    -0.95\u002F{f\\\u002Fixed length (4 B)}\u002F{variable length (1-15 B)},\n    -1.70\u002F{few, simple ops}\u002F{many, complex ops},\n    -2.45\u002F{load\u002Fstore only}\u002F{ops compute on memory},\n    -3.20\u002F{many registers}\u002F{fewer registers},\n    -3.95\u002F{complexity in compiler}\u002F{complexity in hardware}} {\n    \\node[row] at (0,\\y) {\\rt};\n    \\node[row] at (5.2,\\y) {\\ct};\n  }\n  \\draw (-2.1,-0.5) -- (7.3,-0.5);\n  \\draw (2.55,0.45) -- (2.55,-4.35);\n\\end{tikzpicture}\n$$\n\n## What each choice costs\n\nThe table reads like a matter of taste until you price the rows out in hardware\nand in bytes. Three consequences carry most of the weight.\n\n**Decode complexity.** With a fixed instruction length $L$, instruction $k$ of a\nfetched block starts at byte $L k$ — the boundaries are known before a single\nopcode is read, so a block of $n$ instructions feeds $n$ decoders in parallel.\nVariable length destroys this: the start of instruction $k{+}1$ is\n$$\\text{start}(k{+}1) = \\text{start}(k) + \\text{len}(k),$$\nand on x86 $\\text{len}(k)$ depends on optional prefixes, the opcode, and the\naddressing-mode byte, so it is not known until instruction $k$ is itself decoded.\nBoundary-finding is inherently serial. To decode four instructions per cycle from a\n16-byte block anyway, a wide x86 front end speculatively starts a decoder at _every_\nbyte offset — up to 15 candidate starts — and discards those that land\nmid-instruction. That parallel-guess-and-discard is silicon and power spent\nrecovering length information a fixed-length encoding hands over for free.\n\n**Code density.** Variable length's advantage is bytes. The x86-64 encoding of\n`pushq %rbp` is one byte (`55`); a register-to-register add is three; only\ninstructions hauling large constants stretch toward the maximum. Compiled x86-64\naverages $\\bar{b}_{\\text{x86}} \\approx 3\\text{–}4$ bytes per instruction against a\nflat $\\bar{b}_{\\text{RISC}} = 4$, so the same program occupies fewer bytes and more\nof it fits in the instruction cache — a performance asset, not just a storage\nsaving. The RISC camp\nconceded the point in its own way: ARM's Thumb and RISC-V's compressed extension\nadd 2-byte forms of the most common instructions, trading back a little decode\nsimplicity for density.\n\n**Pipeline friendliness.** The load\u002Fstore rule is the most consequential entry in\nthe RISC column. If arithmetic never touches memory, then every instruction needs the same\nshort list of resources in the same order — fetch, decode, read registers,\nexecute, maybe one memory access, write back — and the pipeline can be one clean\nfive-stage structure. A CISC instruction like `addq (%rbx), %rax` needs a memory\nread _and_ an ALU operation, and a memory-to-memory instruction would need even\nmore, so either the pipeline grows extra stages that most instructions waste, or\nthe control logic becomes a thicket of special cases. When this course builds a\n[pipelined processor](\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles),\nthe regularity of its RISC-flavored ISA is precisely what makes the design fit in\na lesson.\n\n$$\n% caption: The design space, qualitatively. Fixed-length RISC buys cheap decode at\n% caption: a cost in bytes; variable-length CISC packs code tighter and pays in\n% caption: decode hardware. Compressed RISC variants (Thumb, RVC) split the\n% caption: difference. Y86-64's variable-length bytes cost it slightly more decode\n% caption: than classic RISC, and it spends bytes freely.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth]\n  \\definecolor{acc}{HTML}{2348F2}\n  % axes\n  \\draw[->] (0,0) -- (8.6,0);\n  \\draw[->] (0,0) -- (0,5.2);\n  \\node[anchor=north] at (4.3,-0.15) {decode complexit\\\u002Fy};\n  \\node[anchor=south, rotate=90] at (-0.25,2.6) {code density};\n  % points\n  \\fill[acc] (2.1,1.1) circle (2pt);\n  \\node[anchor=west] at (2.35,1.1) {Y86-64};\n  \\fill[acc] (1.9,2.6) circle (2pt);\n  \\node[anchor=west] at (2.15,2.6) {classic RISC (4 B f\\\u002Fixed)};\n  \\fill[acc] (3.4,3.7) circle (2pt);\n  \\node[anchor=west] at (3.65,3.7) {compressed RISC (\\texttt{Thumb,} RVC)};\n  \\fill[acc] (7.0,4.5) circle (2pt);\n  \\node[anchor=east] at (6.75,4.5) {x86-64};\n\\end{tikzpicture}\n$$\n\n## Why x86-64 survives\n\nBy the pricing above, x86-64 should have lost: it drags four decades'-worth of\naccumulated encodings behind it and pays the full decode tax on every fetch. It\nsurvives because modern implementations stopped executing x86 directly. The\ndecoder at the front of every high-end x86 chip **translates** each incoming\ninstruction into one or more simple, fixed-format internal operations called\n**micro-ops**, and everything past the decoder is a RISC-style machine executing\nthose.\n\nThe translation is easy to picture on a real instruction. `addq 8(%rbx), %rax`\nis one x86-64 instruction that reads memory and adds; the decoder splits it into a\nload micro-op that fetches the memory operand into an internal temporary, and an\nadd micro-op that combines the temporary with `%rax`. Simple instructions map one\nto one; the baroque ones fall back to a lookup ROM that emits longer micro-op\nsequences. Decoded micro-ops are even cached, so a hot loop skips the x86 decode\ntax entirely on repeat passes.\n\n$$\n% caption: How x86-64 survives. The visible ISA stays CISC, but the decoder\n% caption: translates each instruction into fixed-format micro-ops, and everything\n% caption: past the front end is a RISC-style engine. addq 8(%rbx),%rax becomes a\n% caption: load micro-op feeding an add micro-op.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  box\u002F.style={draw, minimum width=30mm, minimum height=10mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box] (ins) at (0,0) {\\texttt{addq 8(\\%rbx),\\%rax}\\\\CISC instruction};\n  \\node[box, fill=acc!8, text=acc, thick, minimum width=20mm] (dec) at (4.4,0)\n       {decoder};\n  \\node[box] (u1) at (8.6,0.9) {load: $T = M[8 + \\mathtt{rbx}]$};\n  \\node[box] (u2) at (8.6,-0.9) {add: $\\mathtt{rax} = \\mathtt{rax} + T$};\n  \\node[box, fill=acc!8, minimum width=22mm, minimum height=14mm] (core)\n       at (12.9,0) {RISC-style\\\\execution core};\n  \\draw[->] (ins) -- (dec);\n  \\draw[->] (dec.east) -- (u1.west);\n  \\draw[->] (dec.east) -- (u2.west);\n  \\draw[->] (u1.east) -- (core.west);\n  \\draw[->] (u2.east) -- (core.west);\n  \\node[text=acc, font=\\scriptsize, anchor=south] at (8.6,1.75) {micro-ops};\n\\end{tikzpicture}\n$$\n\nCount the work to see the split pay off. A four-instruction x86-64 loop body\nexpands to fixed-format micro-ops:\n\n| x86-64 instruction | Micro-ops |\n| --- | --- |\n| `movq (%rsi,%rcx,8), %rax` | address-compute + load |\n| `addq %rax, %rdx` | add |\n| `decq %rcx` | dec |\n| `jne` | branch |\n\nFour architectural instructions become six micro-ops, each doing exactly one\nregister-to-register operation, one memory access, or one branch — the shape a\nfive-stage RISC pipeline was built for. The CISC encoding lives only long enough to\nbe translated; from the micro-op queue onward the machine does RISC work, and on\nthe loop's second pass even translation is skipped, the micro-ops having been cached\nthe first pass.\n\nSo the contract is CISC and the machine underneath is essentially RISC, which is\nthe neatest possible demonstration of the architecture\u002Fmicroarchitecture split:\nthe entire translation layer is microarchitecture, invisible to every program ever\ncompiled. The reason vendors pay for that layer rather than switching contracts is\neconomic, not technical. The installed base of x86-64 binaries — operating\nsystems, decades of commercial software nobody can recompile — is worth more than\nthe silicon the decoder costs. Pure RISC designs, meanwhile, dominate phones and\nembedded systems and have moved into laptops and servers, where fixed-length\ndecoding saves power and no comparable binary legacy holds the door shut.\n\n## The RISC resurgence and an open ISA\n\nCS:APP presents the RISC\u002FCISC debate as settled history — the x86-64 it\ntargets won the desktop, and the argument moved inside the decoder. The decade\nsince has reopened the question at both ends of the market, and in a way the pricing\nabove predicts exactly.\n\n**Apple Silicon.** In 2020 Apple replaced Intel x86-64 in its laptops with the M1,\na chip built on the ARM architecture — fixed-length, load\u002Fstore, the RISC column of\nthe table.[^m1] The pricing predicts why this was possible now and not before. Fixed\n4-byte instructions let the M1's front end decode **eight** instructions per cycle\nwithout the speculative boundary-guessing an x86 front end pays for, a width that is\nbrutally expensive on variable-length code and nearly free on fixed-length. The one\nthing that had held ARM off the laptop for years was the binary legacy — decades of\nx86 software — and Apple bridged it with **Rosetta 2**, which translates x86-64\nbinaries to ARM ahead of time. That is the same move x86 makes internally\n(translate one ISA into another), lifted up into software and run once at install\ntime rather than continuously in hardware.\n\n**RISC-V.** The other development is that the RISC idea became an _open standard_\nanyone may implement without a license. RISC-V, whose base integer ISA was ratified\nin 2019, is a clean modern take on the RISC column: fixed 4-byte instructions, a\nload\u002Fstore discipline, a small base set, and — conceding exactly the density point\npriced above — an optional **compressed extension** (\"C\") adding 2-byte forms of the\ncommonest instructions.[^riscv] The compressed extension is the design space diagram\nmade real: RISC-V starts at classic-RISC decode simplicity and buys back some density\nby adding a second instruction length, landing where \"compressed RISC\" sits on the\nplot. That an ISA can be a public specification with dozens of independent\nimplementations, rather than one company's product, is the architecture\u002F\nmicroarchitecture split taken to its limit — the contract belongs to no one, and the\nimplementations compete freely beneath it.\n\n> **Takeaway.** An ISA is the stable contract between software and hardware: the\n> instructions, encodings, and state a program may depend on. The _architecture_ is\n> that contract; a _microarchitecture_ is one implementation of it, free to differ\n> in everything but visible results. RISC and CISC are opposite answers to where\n> complexity should live, and the price list is concrete: variable length buys\n> code density and pays in decode hardware; fixed length and load\u002Fstore buy cheap\n> decode and a clean pipeline. x86-64 survives by translating its CISC contract\n> into RISC micro-ops internally — while Apple Silicon and the open RISC-V\n> standard show the fixed-length side of the same ledger paying off in new markets.\n\n[^m1]: The Apple M1 (2020) implements the **ARMv8-A** architecture, a fixed-length\n    load\u002Fstore (RISC) ISA; its wide instruction decoder and the **Rosetta 2** x86-64\n    translation layer are documented in Apple's platform materials and analyzed in\n    detail by Johlin and others in the trade press. The general point — that\n    fixed-length encoding enables very wide decode cheaply — is the code-density\u002F\n    decode-complexity trade of CS:APP §4.1 applied to a modern part.\n[^riscv]: **A. Waterman and K. Asanović, eds.**, _The RISC-V Instruction Set Manual,\n    Volume I: Unprivileged ISA_ (RISC-V International). The base integer ISA (RV32I\u002F\n    RV64I) was ratified in 2019; the \"C\" compressed extension adds 16-bit encodings of\n    common instructions, trading a second instruction length for code density exactly\n    as ARM's Thumb does.\n\nWith the idea of a contract in hand, the next lesson opens it up: how an\ninstruction actually encodes an operation and its operands, and how many operands\na machine even names, in\n[instruction formats and operands](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands).\n",{"text":1851,"minutes":1852,"time":1853,"words":1854},"13 min read",12.555,753300,2511,{"title":84,"description":1842},[1857,1860],{"book":1858,"ref":1859},"Bryant & O'Hallaron","CS:APP — §4.1 The Y86-64 Instruction Set Architecture",{"book":1861,"ref":1862},"Bistriceanu","Computer Architecture Notes — §3 Instruction Set Design","available","03.computer-architecture\u002F02.instruction-set-architecture\u002F01.what-an-isa-is",[80],"BTz_LK5IiTY3A0oKFYJxpHZZRkXm6gZGM7oDKIs_UfQ",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":1868,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":1869,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":1870,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":1871,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":1872,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":1873,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":1874,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":1875,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":1876,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":1877,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":1878,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":1879,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":1880,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":1881,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":1882,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":1883,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":1884,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":1885,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":1886,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":1887,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":1888,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":1889,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":1890,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":1891,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":1892,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":1893,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":1894,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":1895,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":1896,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":1897,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":1898,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":1899,"\u002Falgorithms\u002Fsequences\u002Ftries":1900,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":1901,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":1902,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":1903,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":1904,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":1905,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":1906,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":1907,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":1908,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":1909,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":1910,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":1911,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":1912,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":1913,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":1914,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":1915,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":1916,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":1917,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":1918,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":1919,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":1920,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":1921,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":1922,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":1923,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":1924,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":1925,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":1926,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":1927,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":1928,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":1929,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":1930,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":1931,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":1932,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":1933,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":1934,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":1935,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":1936,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":1937,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":1938,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":1939,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":1940,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":1941,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":1942,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":1943,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":1944,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":1945,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":1946,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":1947,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":1948,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":1949,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":1950,"\u002Falgorithms":1951,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":1952,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":1953,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":1954,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":1955,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":1956,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":1957,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":1958,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":1959,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":1960,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":1961,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":1962,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":1963,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":1964,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":1965,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":1966,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":1967,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":1968,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":1969,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":1970,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":1971,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":1972,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":1973,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":1974,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":1975,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":1976,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":1977,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":1978,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":1979,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":1980,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":1981,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":1982,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":1983,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":1984,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":1985,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":1966,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":1986,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":1987,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":1988,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":1956,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":1989,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":1990,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":1991,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":1992,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":1993,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":1994,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":1995,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":1996,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":1997,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":1998,"\u002Fcalculus":1999,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2000,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2001,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2002,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2003,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2004,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2005,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2006,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2007,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2008,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2009,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2010,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2011,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2012,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2013,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2014,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2015,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2016,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2017,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2018,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2019,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2020,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2021,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2022,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2023,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2024,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2025,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2026,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2027,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2028,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2029,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2030,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2031,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2032,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2033,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2034,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2035,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2036,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2037,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2038,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2039,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2040,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2041,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2042,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2043,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2044,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2045,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2046,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2047,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2048,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2049,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2050,"\u002Fmechanics":2051,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2052,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2053,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2054,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2055,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2056,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2057,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2058,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2059,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2060,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2061,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2062,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2063,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2040,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2064,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2065,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2066,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2036,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":1901,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2067,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2027,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2068,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2069,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2070,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2071,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2072,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2073,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2074,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2075,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2076,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2001,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2077,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2078,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2079,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2080,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2081,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2082,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2083,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2084,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2019,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2018,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2085,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2086,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2087,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2088,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2089,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2090,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2091,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2092,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2093,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2045,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2043,"\u002Felectricity-and-magnetism":2094,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2095,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2096,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2097,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2098,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2099,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2100,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2101,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2102,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2103,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":1953,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2104,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2105,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":1957,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2106,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2107,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2108,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2109,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2110,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2111,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2112,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2113,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2114,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2115,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2116,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2117,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2118,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2119,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2120,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2121,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2122,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2123,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2124,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2125,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":1992,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2126,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2127,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2128,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2129,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2130,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2131,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2132,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2133,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2134,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2135,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2136,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2137,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2138,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2139,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2140,"\u002Flinear-algebra":2141,"\u002Ftheory-of-computation":2142,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2143,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2144,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2145,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2146,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2147,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2148,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2149,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2150,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2151,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2152,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2153,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2154,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":1854,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2155,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2156,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2157,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2158,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2159,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2160,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2161,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2162,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2163,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2164,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2165,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2166,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2167,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2168,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2169,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2170,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2171,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2172,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2173,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2174,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2175,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2176,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2177,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2178,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2179,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2180,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2181,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2182,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2183,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2184,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2185,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2186,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2187,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2188,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2189,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2190,"\u002Fcomputer-architecture":2142,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2191,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2192,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2193,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":1957,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2194,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":1956,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":1963,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2195,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2196,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":1997,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2197,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2198,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2199,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2200,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2201,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2202,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2203,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2204,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2205,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2206,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2207,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2208,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2203,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2209,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2210,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2211,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2212,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2213,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2214,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2215,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2216,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2217,"\u002Fdifferential-equations":2218,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2219,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2220,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2221,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2222,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2102,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2223,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2224,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2225,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2226,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2227,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2228,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":1972,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2229,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2230,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2231,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2232,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2233,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2234,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2235,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2236,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2237,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2238,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2193,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2239,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2240,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2241,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2242,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2243,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2123,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2244,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2245,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2133,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2246,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2247,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2248,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2249,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2250,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2251,"\u002Frelativity":2252,"\u002Fphysical-computing":2142,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2253,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2232,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2254,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2255,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2256,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2257,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2258,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2259,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2260,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2208,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2133,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2261,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2262,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2263,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2264,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2260,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2265,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2240,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":1994,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2266,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2267,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":1974,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2268,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2269,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2270,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2271,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2272,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2273,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2274,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2275,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2276,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2232,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2277,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2278,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2279,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2266,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":1955,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2280,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2281,"\u002Fquantum-mechanics":2282,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2216,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2283,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2284,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2106,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2285,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":1992,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2286,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2287,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2129,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2238,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2288,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2289,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2290,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2291,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2292,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2265,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2293,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2099,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2294,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2295,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":1953,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2296,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2297,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2254,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":1982,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2133,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2298,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2299,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2118,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2242,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2300,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2301,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2302,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2138,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2303,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2304,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2305,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2305,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2306,"\u002Freal-analysis":2307,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2308,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2309,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2310,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2311,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2312,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2313,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2314,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2315,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2316,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2317,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2281,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2318,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2310,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2227,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2319,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2320,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2321,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2322,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2323,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2324,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2325,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2326,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2320,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2327,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2296,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2328,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2329,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2330,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2331,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2332,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2333,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2334,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2335,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2336,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2337,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":1971,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2338,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2339,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2212,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2340,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2341,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2269,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2341,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2342,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2343,"\u002Fabstract-algebra":2344,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2345,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2346,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2347,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2348,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2349,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2261,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2350,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2351,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2352,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2353,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2354,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2355,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2356,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2096,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2224,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":1971,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2357,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":1955,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2358,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2359,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":1993,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2286,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2360,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2361,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2362,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2363,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2364,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2365,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2366,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2367,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2368,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2369,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2370,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2371,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2372,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2373,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2317,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2374,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2375,"\u002Fatomic-physics":2376,"\u002Fdatabases":2142,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2377,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2378,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2379,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2308,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2380,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2381,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2382,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2383,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2384,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2385,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2386,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2387,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2388,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2389,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2390,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2391,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2392,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2393,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2394,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2395,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2396,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2397,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2398,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2399,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2390,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2400,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2401,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2402,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2403,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2404,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2349,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2405,"\u002Fcategory-theory":2406,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2407,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2408,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2409,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2410,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2411,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2412,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2371,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2413,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2414,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2415,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2416,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2417,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2418,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2419,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2420,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2421,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2422,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2423,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2424,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2425,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2426,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2427,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2428,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2429,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2430,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2431,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2432,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2433,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2434,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2435,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2436,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2437,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2438,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2439,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2383,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2440,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2441,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2442,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2443,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2444,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2445,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2446,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":1936,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2447,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2448,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2171,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2449,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2450,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2451,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2452,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2453,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2454,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2455,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2456,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2457,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2458,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2459,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2460,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2145,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2461,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2462,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2463,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2464,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2181,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2465,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2466,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2467,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2468,"\u002Fdeep-learning":2142,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2469,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2266,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2470,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2471,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2472,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2473,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2474,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2475,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2476,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2477,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2313,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2478,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2479,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2480,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2200,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":1994,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2481,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2482,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2483,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2128,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2484,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2485,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2205,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2133,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2486,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2102,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":1972,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":1988,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2487,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2488,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2489,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2120,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":2490,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":1982,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":2491,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":2492,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2493,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":2494,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2315,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":2495,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":2496,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":2497,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":2498,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2261,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":2499,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2239,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":2500,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2101,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":2501,"\u002Fstatistical-mechanics":2502,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":2503,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":1967,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2226,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":2504,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":2505,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":2506,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":2507,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":2508,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":2509,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2100,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":2510,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":2511,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":2512,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":2513,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2242,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":2514,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":2515,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":2516,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":2517,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":2518,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2297,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2241,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":2519,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":2520,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":2521,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":2522,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2232,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":2523,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":2524,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2469,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2369,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2097,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":2525,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":1963,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":2526,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":2527,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2108,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":2528,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2362,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":2529,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":1955,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":2530,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":1966,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":2531,"\u002Fcondensed-matter":2282,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":2532,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":2533,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":2534,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":2535,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":1980,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":2536,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":2537,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":1980,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":2538,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2392,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":2539,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":2540,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":2541,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":2539,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":2542,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":2543,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":2544,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":2545,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":2546,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":2547,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":2548,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":2549,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2470,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":2550,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":2543,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":2551,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":2552,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2185,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":2553,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2370,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":2554,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":2555,"\u002Flogic":2556,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":2557,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":2558,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2171,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":2559,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":2560,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":2561,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":2562,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":2552,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":2563,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":2564,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":2565,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2463,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":2566,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":2567,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":2568,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":2569,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":2570,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2188,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":2571,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":2572,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":2573,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":2574,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2379,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":2575,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":2551,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":2576,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":2577,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":2578,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2199,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":2579,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2329,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":2580,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":2581,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2161,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":2582,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":2583,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":2584,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":2585,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":2586,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2439,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":2587,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":2588,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":2589,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2474,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":2590,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":2591,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":2592,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2188,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2255,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":2593,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":2594,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":2595,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":2596,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":2597,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":2598,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":2599,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":2600,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":2601,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":2602,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":2603,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":2604,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":2605,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":2606,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":2607,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":2608,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":2609,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":2610,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":2611,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":2612,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":2613,"\u002Freinforcement-learning":2142,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":2614,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":2615,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":2616,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":2617,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":2618,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":2619,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":2620,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":2621,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":2622,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":2623,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":2624,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":2625,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":2626,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2468,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2323,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":2627,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":2628,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":2629,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":2630,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":2631,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":2632,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2450,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":2633,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":2634,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":2635,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":2636,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":2637,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":2638,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":2639,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":2640,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":2641,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":2642,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":2643,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":2644,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2382,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":2634,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":2645,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":1923,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":2646,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":2647,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":2648,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":2649,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":2650,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2431,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":2651,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":2652,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":2653,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":2654,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":2655,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":2656,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":2657,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":2658,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":2659,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":2660,"\u002Fartificial-intelligence":2142,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2398,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":2661,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":1959,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":1957,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":2492,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":2662,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":1985,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2294,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":2663,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":2664,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":2665,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2354,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":2666,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":2667,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":2668,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":2553,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":2669,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":2670,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":1969,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2197,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":2671,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2298,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":2672,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":2673,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2193,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2281,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":2674,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":2675,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":2676,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":1964,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2338,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2200,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":2677,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2248,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2312,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":2678,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":2679,"\u002Fnuclear-physics":2680,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":2681,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":2682,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2319,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":2683,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":2684,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":2685,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2167,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":2686,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":2687,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2464,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":2688,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":2633,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":2689,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":2690,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":2691,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":2692,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":2693,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":2694,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":2695,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2146,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":2696,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":2697,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":2639,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":2698,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":2699,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":2700,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":2701,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":2702,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":2703,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":2704,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":2705,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":2563,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":2706,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":2707,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":2708,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":2709,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":2710,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":2711,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":2712,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":2713,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":2714,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":2715,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":2716,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":2717,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2417,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":2584,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2173,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":2718,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":2719,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":2720,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":2721,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2431,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":2722,"\u002Fnatural-language-processing":2142,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":2723,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2339,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":2724,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2484,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":2725,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":2726,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":2674,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":2727,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":2728,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2289,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":1992,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":2729,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2243,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":2730,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2276,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":2731,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":2530,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":2732,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":2733,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":2499,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":2734,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":1963,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":2735,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":2736,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":2737,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2280,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":2496,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":2738,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":2739,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2355,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":2740,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2400,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":2741,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":2742,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2289,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2322,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":2743,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":2744,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":2745,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2378,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":2746,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2120,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":2747,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2222,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":2748,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":2749,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":2546,"\u002Fparticle-physics":2750,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2340,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":2494,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":2751,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2279,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":2752,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2339,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2251,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":2753,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":2754,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":2755,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":2756,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":2757,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":2545,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2476,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":2758,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":2759,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":2760,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":2761,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":2673,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":2762,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2235,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2298,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2280,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":2763,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2364,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":1981,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2764,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":2765,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":2495,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":2766,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":2767,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":2768,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":2769,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":1962,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":2770,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":2771,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2222,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":2772,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":2773,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2488,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2144,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":2774,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":2775,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2400,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2386,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2398,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":2495,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":2776,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":1961,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2153,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":2777,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2239,"\u002Fastrophysics-cosmology":2344,"\u002Fcolophon":2778,"\u002F":2142},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,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2780,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2784,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2788,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2792,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2796,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2800,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2804,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2809,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2813,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2817,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2821,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2826,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2830,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2834,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2838,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2843,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2847,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2851,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2855,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2859,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2863,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2867,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2871,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2875,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2879,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2883,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2887,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2892,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2896,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2900,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2904,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2908,"\u002Falgorithms\u002Fsequences\u002Ftries":2912,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2916,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2920,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2925,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2929,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2933,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2937,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2941,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2945,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2949,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2953,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2957,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2961,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2965,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2969,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2973,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2977,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2982,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2986,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2990,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2994,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2998,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3003,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3007,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3011,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3015,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3019,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3023,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3027,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3031,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3035,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3039,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3043,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3048,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3052,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3056,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3060,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3065,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3069,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3073,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3077,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3081,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3085,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3089,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3094,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3098,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3102,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3106,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3111,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3115,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3119,"\u002Falgorithms":3123,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3126,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3131,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3135,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3139,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3143,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3148,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3152,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3156,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3160,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3165,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3169,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3173,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3177,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3182,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3186,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3190,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3195,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3199,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3203,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3208,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3212,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3216,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3221,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3225,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3229,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3233,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3238,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3242,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3246,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3251,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3255,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3259,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3263,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3267,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3272,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3276,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3280,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3284,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3288,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3293,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3296,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3300,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3304,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3308,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3313,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3317,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3321,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3325,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3329,"\u002Fcalculus":3333,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3336,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3340,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3344,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3349,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3353,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3357,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3361,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3365,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3370,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3374,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3378,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3382,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3386,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3391,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3395,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3399,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3403,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3407,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3412,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3416,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3420,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3425,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3429,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3433,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3437,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3441,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3445,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3450,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3454,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3458,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3462,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3466,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3470,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3474,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3479,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3483,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3487,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3491,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3495,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3499,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3503,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3507,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3511,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3515,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3519,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3523,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3528,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3532,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3536,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3540,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3544,"\u002Fmechanics":3548,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3551,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3556,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3560,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3564,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3568,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3572,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3577,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3581,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3586,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3590,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3594,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3598,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3602,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3607,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3611,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3615,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3619,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3624,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3628,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3632,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3637,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3641,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3645,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3649,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3653,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3658,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3662,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3666,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3670,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3674,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3678,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3683,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3687,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3691,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3695,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3699,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3703,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3707,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3711,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3716,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3720,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3724,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3728,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3732,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3737,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3741,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3745,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3749,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3753,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3758,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3762,"\u002Felectricity-and-magnetism":3766,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":3769,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":3774,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":3778,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":3782,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":3786,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":3790,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":3795,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":3799,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":3803,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":3807,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":3811,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":3816,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":3820,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":3824,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":3829,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":3833,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":3837,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":3841,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":3845,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":3849,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":3853,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":3858,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":3862,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":3866,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":3870,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":3874,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":3878,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":3882,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":3887,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":3891,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":3895,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":3899,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":3903,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":3907,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":3912,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":3916,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":3920,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":3924,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":3928,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":3933,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":3937,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":3941,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":3945,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":3949,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":3953,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":3958,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":3962,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":3966,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":3970,"\u002Flinear-algebra":3974,"\u002Ftheory-of-computation":3977,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":3980,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":3981,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":3982,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":3983,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":3984,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":3985,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":3986,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":3987,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":3988,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":3989,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":3990,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":3991,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":3992,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":3993,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":3994,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":3995,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":3996,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":3997,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":3998,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":3999,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4000,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4001,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4002,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4003,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4004,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4005,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4006,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4007,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4008,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4009,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4010,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4011,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4012,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4013,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4014,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4015,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4016,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4017,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4018,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4019,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4020,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4021,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4022,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4023,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4024,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4025,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4026,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4027,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4028,"\u002Fcomputer-architecture":4029,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4032,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4036,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4040,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4045,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4049,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4053,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4057,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4061,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4065,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4070,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4074,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4078,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4082,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4086,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4090,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4095,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4099,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4103,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4108,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4112,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4117,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4121,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4125,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4130,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4134,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4139,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4143,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4147,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4152,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4156,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4160,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4165,"\u002Fdifferential-equations":4169,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4172,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4177,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4181,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4185,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4189,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4193,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4198,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4202,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4206,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4210,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4215,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4219,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4223,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4227,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4232,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4236,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4240,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4244,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4249,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4253,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4257,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4261,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4265,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4269,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4274,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4278,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4282,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4287,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4291,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4295,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4299,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4304,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4308,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4312,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4317,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4321,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4325,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4330,"\u002Frelativity":4334,"\u002Fphysical-computing":4337,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4340,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4345,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4349,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4353,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4357,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4362,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4366,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4370,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4375,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4379,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4383,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4387,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4391,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4395,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4400,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4404,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4408,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4412,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4416,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4420,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4425,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4429,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4433,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4437,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4441,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4445,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4449,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4454,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4458,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4462,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4467,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4471,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4475,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4480,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4484,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4489,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4493,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4497,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4501,"\u002Fquantum-mechanics":4505,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4508,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4513,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4517,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4521,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4525,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4530,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4534,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4538,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4542,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4546,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4550,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4555,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4559,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4563,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4567,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4571,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4575,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4579,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4583,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4587,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4591,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4595,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4600,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4604,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4608,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4612,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4617,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4621,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4625,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4628,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4632,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4637,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4641,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4645,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4649,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4654,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4658,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4662,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4666,"\u002Freal-analysis":4670,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4673,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4677,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4681,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4686,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4690,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4694,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4698,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4703,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4707,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4711,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4715,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4719,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4723,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4728,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4732,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4736,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4740,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4745,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4749,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4753,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4757,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4762,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4766,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4770,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4775,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4779,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4783,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4787,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4792,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4796,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4800,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4804,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4809,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4813,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4817,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4822,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4826,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4830,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4834,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":4839,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":4843,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":4847,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":4851,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":4855,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":4860,"\u002Fabstract-algebra":4864,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":4867,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":4872,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":4876,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":4880,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":4884,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":4888,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":4893,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":4897,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":4901,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":4905,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":4909,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":4913,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":4917,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":4922,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":4926,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":4930,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":4934,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":4939,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":4943,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":4947,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":4952,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":4956,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":4960,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":4964,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":4968,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":4972,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":4977,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":4981,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":4985,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":4990,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":4994,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":4998,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5002,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5007,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5011,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5015,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5020,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5024,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5028,"\u002Fatomic-physics":5032,"\u002Fdatabases":5035,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5038,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5042,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5046,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5050,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5054,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5058,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5062,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5067,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5071,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5075,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5080,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5084,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5088,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5093,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5097,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5101,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5105,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5109,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5114,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5118,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5122,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5126,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5131,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5135,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5139,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5143,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5148,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5152,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5156,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5160,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5165,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5169,"\u002Fcategory-theory":5173,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5176,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5180,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5184,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5188,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5191,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5195,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5199,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5203,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5208,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5212,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5216,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5220,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5224,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5229,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5233,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5237,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5241,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5245,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5250,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5254,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5258,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5262,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5267,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5271,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5275,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5279,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5283,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5287,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5291,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5295,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5299,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5304,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5308,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5312,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5316,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5320,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5325,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5329,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5333,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5337,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5341,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5345,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5349,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5354,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5358,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5362,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5367,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5371,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5375,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5379,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5383,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5387,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5391,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5396,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5400,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5404,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5408,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5412,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5416,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5420,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5424,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5428,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5432,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5436,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5441,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5445,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5449,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5453,"\u002Fdeep-learning":5457,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5460,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5464,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5468,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5472,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5476,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5480,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5485,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5489,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5493,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5497,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5502,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5506,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5510,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5514,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5519,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5523,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5527,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5531,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5535,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5540,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5544,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5548,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5553,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5557,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5561,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5566,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5570,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5574,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5578,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5583,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5587,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5591,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5595,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5599,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5603,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5608,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5612,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5616,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5620,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5625,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5629,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5633,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5638,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5642,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5646,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5650,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5654,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5659,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5663,"\u002Fstatistical-mechanics":5667,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5670,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5675,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5679,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5683,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5687,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5692,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5696,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5700,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5704,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5709,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5713,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5717,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5721,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5726,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5730,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5734,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5738,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5743,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5747,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5751,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5755,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5760,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5764,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":5768,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":5772,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":5777,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":5781,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":5785,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":5789,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":5793,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":5798,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5802,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":5807,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5811,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":5815,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":5819,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5824,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":5828,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":5832,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":5836,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":5840,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":5845,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":5849,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":5853,"\u002Fcondensed-matter":5857,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":5860,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":5864,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":5869,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":5873,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":5877,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":5881,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":5885,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":5889,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":5893,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":5898,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":5902,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":5906,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":5910,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":5915,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":5919,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":5923,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":5927,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":5932,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":5936,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":5940,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":5944,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":5949,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":5953,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":5957,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":5961,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":5966,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":5970,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":5974,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":5979,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":5983,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":5988,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":5992,"\u002Flogic":5996,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":5999,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6003,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6007,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6011,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6015,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6019,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6023,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6027,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6031,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6035,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6039,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6043,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6047,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6051,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6055,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6059,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6063,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6067,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6071,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6076,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6080,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6084,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6088,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6092,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6096,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6100,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6104,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6108,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6112,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6116,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6120,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6124,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6128,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6132,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6136,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6140,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6144,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6148,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6152,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6156,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6160,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6165,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6169,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6173,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6177,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6181,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6185,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6189,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6193,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6197,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6201,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6205,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6209,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6213,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6217,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6221,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6225,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6229,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6233,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6237,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6241,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6245,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6249,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6254,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6258,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6262,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6266,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6270,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6274,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6278,"\u002Freinforcement-learning":6282,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6284,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6288,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6292,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6296,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6300,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6305,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6309,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6313,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6317,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6321,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6325,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6329,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6333,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6337,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6341,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6345,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6349,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6354,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6358,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6362,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6366,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6370,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6374,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6378,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6382,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6386,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6390,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6394,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6398,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6403,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6407,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6411,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6415,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6419,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6423,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6427,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6430,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6434,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6438,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6443,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6447,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6451,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6455,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6458,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6462,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6466,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6470,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6475,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6479,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6483,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6487,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6491,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6495,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6499,"\u002Fartificial-intelligence":6503,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6506,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6511,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6515,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6519,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6523,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6527,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6532,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6536,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6540,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6544,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6549,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6553,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6557,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6561,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6566,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6570,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6575,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6579,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6584,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6588,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6592,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6596,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6601,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6605,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6609,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6614,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6618,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6622,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6627,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6631,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6636,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6640,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6644,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6649,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6653,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6657,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6661,"\u002Fnuclear-physics":6665,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6668,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6672,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6676,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6680,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6684,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6688,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6693,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6697,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6701,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6705,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6710,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6714,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6718,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6722,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6726,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6730,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6734,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6737,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6740,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6744,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6748,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6752,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6757,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6761,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6765,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6769,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6773,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6777,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6781,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6785,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6789,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6793,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6797,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6801,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6805,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6809,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6813,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6817,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6821,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6825,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6829,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6833,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":6837,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":6841,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":6845,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":6849,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":6853,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":6857,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":6861,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":6865,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":6870,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":6874,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":6878,"\u002Fnatural-language-processing":6882,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":6885,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":6889,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":6893,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":6897,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":6902,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":6906,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":6910,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":6914,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":6919,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":6923,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":6927,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":6931,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":6936,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":6940,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":6944,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":6948,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":6953,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":6957,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":6961,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":6966,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":6970,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":6974,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":6978,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":6983,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":6987,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":6991,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":6995,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7000,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7004,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7008,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7012,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7017,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7021,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7025,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7029,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7033,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7038,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7042,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7046,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7051,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7055,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7059,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7063,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7067,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7071,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7075,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7079,"\u002Fparticle-physics":7083,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7086,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7091,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7095,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7099,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7104,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7108,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7112,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7116,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7121,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7125,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7129,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7133,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7138,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7142,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7146,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7150,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7155,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7159,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7163,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7167,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7172,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7176,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7180,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7185,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7189,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7193,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7197,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7201,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7205,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7209,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7213,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7217,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7222,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7226,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7230,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7234,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7239,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7243,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7247,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7251,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7255,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7260,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7264,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7267,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7271,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7275,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7280,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7284,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7288,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7292,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7296,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7300,"\u002Fastrophysics-cosmology":7304,"\u002Fcolophon":7307,"\u002F":7310},{"path":2781,"title":2782,"module":5,"summary":2783},"\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":2785,"title":2786,"module":5,"summary":2787},"\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":2789,"title":2790,"module":5,"summary":2791},"\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":2793,"title":2794,"module":5,"summary":2795},"\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":2797,"title":2798,"module":5,"summary":2799},"\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":2801,"title":2802,"module":5,"summary":2803},"\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":2805,"title":2806,"module":2807,"summary":2808},"\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":2810,"title":2811,"module":2807,"summary":2812},"\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":2814,"title":2815,"module":2807,"summary":2816},"\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":2818,"title":2819,"module":2807,"summary":2820},"\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":2822,"title":2823,"module":2824,"summary":2825},"\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":2827,"title":2828,"module":2824,"summary":2829},"\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":2831,"title":2832,"module":2824,"summary":2833},"\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":2835,"title":2836,"module":2824,"summary":2837},"\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":2839,"title":2840,"module":2841,"summary":2842},"\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":2844,"title":2845,"module":2841,"summary":2846},"\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":2848,"title":2849,"module":2841,"summary":2850},"\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":2852,"title":2853,"module":2841,"summary":2854},"\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":2856,"title":2857,"module":2841,"summary":2858},"\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":2860,"title":2861,"module":2841,"summary":2862},"\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":2864,"title":2865,"module":2841,"summary":2866},"\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":2868,"title":2869,"module":2841,"summary":2870},"\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":2872,"title":2873,"module":2841,"summary":2874},"\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":2876,"title":2877,"module":2841,"summary":2878},"\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":2880,"title":2881,"module":2841,"summary":2882},"\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":2884,"title":2885,"module":2841,"summary":2886},"\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":2888,"title":2889,"module":2890,"summary":2891},"\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":2893,"title":2894,"module":2890,"summary":2895},"\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":2897,"title":2898,"module":2890,"summary":2899},"\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":2901,"title":2902,"module":2890,"summary":2903},"\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":2905,"title":2906,"module":2890,"summary":2907},"\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":2909,"title":2910,"module":2890,"summary":2911},"\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":2913,"title":2914,"module":2890,"summary":2915},"\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":2917,"title":2918,"module":2890,"summary":2919},"\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":2921,"title":2922,"module":2923,"summary":2924},"\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":2926,"title":2927,"module":2923,"summary":2928},"\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":2930,"title":2931,"module":2923,"summary":2932},"\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":2934,"title":2935,"module":2923,"summary":2936},"\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":2938,"title":2939,"module":2923,"summary":2940},"\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":2942,"title":2943,"module":2923,"summary":2944},"\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":2946,"title":2947,"module":2923,"summary":2948},"\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":2950,"title":2951,"module":2923,"summary":2952},"\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":2954,"title":2955,"module":2923,"summary":2956},"\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":2958,"title":2959,"module":2923,"summary":2960},"\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":2962,"title":2963,"module":2923,"summary":2964},"\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":2966,"title":2967,"module":2923,"summary":2968},"\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":2970,"title":2971,"module":2923,"summary":2972},"\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":2974,"title":2975,"module":2923,"summary":2976},"\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":2978,"title":2979,"module":2980,"summary":2981},"\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":2983,"title":2984,"module":2980,"summary":2985},"\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":2987,"title":2988,"module":2980,"summary":2989},"\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":2991,"title":2992,"module":2980,"summary":2993},"\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":2995,"title":2996,"module":2980,"summary":2997},"\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":2999,"title":3000,"module":3001,"summary":3002},"\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":3004,"title":3005,"module":3001,"summary":3006},"\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":3008,"title":3009,"module":3001,"summary":3010},"\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":3012,"title":3013,"module":3001,"summary":3014},"\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":3016,"title":3017,"module":3001,"summary":3018},"\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":3020,"title":3021,"module":3001,"summary":3022},"\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":3024,"title":3025,"module":3001,"summary":3026},"\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":3028,"title":3029,"module":3001,"summary":3030},"\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":3032,"title":3033,"module":3001,"summary":3034},"\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":3036,"title":3037,"module":3001,"summary":3038},"\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":3040,"title":3041,"module":3001,"summary":3042},"\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":3044,"title":3045,"module":3046,"summary":3047},"\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":3049,"title":3050,"module":3046,"summary":3051},"\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":3053,"title":3054,"module":3046,"summary":3055},"\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":3057,"title":3058,"module":3046,"summary":3059},"\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":3061,"title":3062,"module":3063,"summary":3064},"\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":3066,"title":3067,"module":3063,"summary":3068},"\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":3070,"title":3071,"module":3063,"summary":3072},"\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":3074,"title":3075,"module":3063,"summary":3076},"\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":3078,"title":3079,"module":3063,"summary":3080},"\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":3082,"title":3083,"module":3063,"summary":3084},"\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":3086,"title":3087,"module":3063,"summary":3088},"\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":3090,"title":3091,"module":3092,"summary":3093},"\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":3095,"title":3096,"module":3092,"summary":3097},"\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":3099,"title":3100,"module":3092,"summary":3101},"\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":3103,"title":3104,"module":3092,"summary":3105},"\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":3107,"title":3108,"module":3109,"summary":3110},"\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":3112,"title":3113,"module":3109,"summary":3114},"\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":3116,"title":3117,"module":3109,"summary":3118},"\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":3120,"title":3121,"module":3109,"summary":3122},"\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":3124,"title":3125,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3127,"title":3128,"module":3129,"summary":3130},"\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":3132,"title":3133,"module":3129,"summary":3134},"\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":3136,"title":3137,"module":3129,"summary":3138},"\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":3140,"title":3141,"module":3129,"summary":3142},"\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":3144,"title":3145,"module":3146,"summary":3147},"\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":3149,"title":3150,"module":3146,"summary":3151},"\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":3153,"title":3154,"module":3146,"summary":3155},"\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":3157,"title":3158,"module":3146,"summary":3159},"\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":3161,"title":3162,"module":3163,"summary":3164},"\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":3166,"title":3167,"module":3163,"summary":3168},"\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":3170,"title":3171,"module":3163,"summary":3172},"\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":3174,"title":3175,"module":3163,"summary":3176},"\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":3178,"title":3179,"module":3180,"summary":3181},"\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":3183,"title":3184,"module":3180,"summary":3185},"\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":3187,"title":3188,"module":3180,"summary":3189},"\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":3191,"title":3192,"module":3193,"summary":3194},"\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":3196,"title":3197,"module":3193,"summary":3198},"\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":3200,"title":3201,"module":3193,"summary":3202},"\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":3204,"title":3205,"module":3206,"summary":3207},"\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":3209,"title":3210,"module":3206,"summary":3211},"\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":3213,"title":3214,"module":3206,"summary":3215},"\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":3217,"title":3218,"module":3219,"summary":3220},"\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":3222,"title":3223,"module":3219,"summary":3224},"\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":3226,"title":3227,"module":3219,"summary":3228},"\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":3230,"title":3231,"module":3219,"summary":3232},"\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":3234,"title":3235,"module":3236,"summary":3237},"\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":3239,"title":3240,"module":3236,"summary":3241},"\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":3243,"title":3244,"module":3236,"summary":3245},"\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":3247,"title":3248,"module":3249,"summary":3250},"\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":3252,"title":3253,"module":3249,"summary":3254},"\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":3256,"title":3257,"module":3249,"summary":3258},"\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":3260,"title":3261,"module":3249,"summary":3262},"\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":3264,"title":3265,"module":3249,"summary":3266},"\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":3268,"title":3269,"module":3270,"summary":3271},"\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":3273,"title":3274,"module":3270,"summary":3275},"\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":3277,"title":3278,"module":3270,"summary":3279},"\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":3281,"title":3282,"module":3270,"summary":3283},"\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":3285,"title":3286,"module":3270,"summary":3287},"\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":3289,"title":3290,"module":3291,"summary":3292},"\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":3294,"title":3291,"module":3291,"summary":3295},"\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":3297,"title":3298,"module":3291,"summary":3299},"\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":3301,"title":3302,"module":3291,"summary":3303},"\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":3305,"title":3306,"module":3291,"summary":3307},"\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":3309,"title":3310,"module":3311,"summary":3312},"\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":3314,"title":3315,"module":3311,"summary":3316},"\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":3318,"title":3319,"module":3311,"summary":3320},"\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":3322,"title":3323,"module":3311,"summary":3324},"\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":3326,"title":3327,"module":3311,"summary":3328},"\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":3330,"title":3331,"module":3311,"summary":3332},"\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":3334,"title":3335,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3337,"title":3338,"module":5,"summary":3339},"\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":3341,"title":3342,"module":5,"summary":3343},"\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":3345,"title":3346,"module":3347,"summary":3348},"\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":3350,"title":3351,"module":3347,"summary":3352},"\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":3354,"title":3355,"module":3347,"summary":3356},"\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":3358,"title":3359,"module":3347,"summary":3360},"\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":3362,"title":3363,"module":3347,"summary":3364},"\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":3366,"title":3367,"module":3368,"summary":3369},"\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":3371,"title":3372,"module":3368,"summary":3373},"\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":3375,"title":3376,"module":3368,"summary":3377},"\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":3379,"title":3380,"module":3368,"summary":3381},"\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":3383,"title":3384,"module":3368,"summary":3385},"\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":3387,"title":3388,"module":3389,"summary":3390},"\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":3392,"title":3393,"module":3389,"summary":3394},"\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":3396,"title":3397,"module":3389,"summary":3398},"\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":3400,"title":3401,"module":3389,"summary":3402},"\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":3404,"title":3405,"module":3389,"summary":3406},"\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":3408,"title":3409,"module":3410,"summary":3411},"\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":3413,"title":3414,"module":3410,"summary":3415},"\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":3417,"title":3418,"module":3410,"summary":3419},"\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":3421,"title":3422,"module":3423,"summary":3424},"\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":3426,"title":3427,"module":3423,"summary":3428},"\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":3430,"title":3431,"module":3423,"summary":3432},"\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":3434,"title":3435,"module":3423,"summary":3436},"\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":3438,"title":3439,"module":3423,"summary":3440},"\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":3442,"title":3443,"module":3423,"summary":3444},"\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":3446,"title":3447,"module":3448,"summary":3449},"\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":3451,"title":3452,"module":3448,"summary":3453},"\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":3455,"title":3456,"module":3448,"summary":3457},"\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":3459,"title":3460,"module":3448,"summary":3461},"\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":3463,"title":3464,"module":3448,"summary":3465},"\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":3467,"title":3468,"module":3448,"summary":3469},"\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":3471,"title":3472,"module":3448,"summary":3473},"\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":3475,"title":3476,"module":3477,"summary":3478},"\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":3480,"title":3481,"module":3477,"summary":3482},"\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":3484,"title":3485,"module":3477,"summary":3486},"\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":3488,"title":3489,"module":3477,"summary":3490},"\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":3492,"title":3493,"module":3477,"summary":3494},"\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":3496,"title":3497,"module":3477,"summary":3498},"\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":3500,"title":3501,"module":3477,"summary":3502},"\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":3504,"title":3505,"module":3477,"summary":3506},"\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":3508,"title":3509,"module":3477,"summary":3510},"\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":3512,"title":3513,"module":3477,"summary":3514},"\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":3516,"title":3517,"module":3477,"summary":3518},"\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":3520,"title":3521,"module":3477,"summary":3522},"\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":3524,"title":3525,"module":3526,"summary":3527},"\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":3529,"title":3530,"module":3526,"summary":3531},"\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":3533,"title":3534,"module":3526,"summary":3535},"\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":3537,"title":3538,"module":3526,"summary":3539},"\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":3541,"title":3542,"module":3526,"summary":3543},"\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":3545,"title":3546,"module":3526,"summary":3547},"\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":3549,"title":3550,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3552,"title":3553,"module":3554,"summary":3555},"\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":3557,"title":3558,"module":3554,"summary":3559},"\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":3561,"title":3562,"module":3554,"summary":3563},"\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":3565,"title":3566,"module":3554,"summary":3567},"\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":3569,"title":3570,"module":3554,"summary":3571},"\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":3573,"title":3574,"module":3575,"summary":3576},"\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":3578,"title":3579,"module":3575,"summary":3580},"\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":3582,"title":3583,"module":3584,"summary":3585},"\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":3587,"title":3588,"module":3584,"summary":3589},"\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":3591,"title":3592,"module":3584,"summary":3593},"\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":3595,"title":3596,"module":3584,"summary":3597},"\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":3599,"title":3600,"module":3584,"summary":3601},"\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":3603,"title":3604,"module":3605,"summary":3606},"\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":3608,"title":3609,"module":3605,"summary":3610},"\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":3612,"title":3613,"module":3605,"summary":3614},"\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":3616,"title":3617,"module":3605,"summary":3618},"\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":3620,"title":3621,"module":3622,"summary":3623},"\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":3625,"title":3626,"module":3622,"summary":3627},"\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":3629,"title":3630,"module":3622,"summary":3631},"\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":3633,"title":3634,"module":3635,"summary":3636},"\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":3638,"title":3639,"module":3635,"summary":3640},"\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":3642,"title":3643,"module":3635,"summary":3644},"\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":3646,"title":3647,"module":3635,"summary":3648},"\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":3650,"title":3651,"module":3635,"summary":3652},"\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":3654,"title":3655,"module":3656,"summary":3657},"\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":3659,"title":3660,"module":3656,"summary":3661},"\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":3663,"title":3664,"module":3656,"summary":3665},"\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":3667,"title":3668,"module":3656,"summary":3669},"\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":3671,"title":3672,"module":3656,"summary":3673},"\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":3675,"title":3676,"module":3656,"summary":3677},"\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":3679,"title":3680,"module":3681,"summary":3682},"\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":3684,"title":3685,"module":3681,"summary":3686},"\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":3688,"title":3689,"module":3681,"summary":3690},"\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":3692,"title":3693,"module":3681,"summary":3694},"\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":3696,"title":3697,"module":3681,"summary":3698},"\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":3700,"title":3701,"module":3681,"summary":3702},"\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":3704,"title":3705,"module":3681,"summary":3706},"\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":3708,"title":3709,"module":3681,"summary":3710},"\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":3712,"title":3713,"module":3714,"summary":3715},"\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":3717,"title":3718,"module":3714,"summary":3719},"\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":3721,"title":3722,"module":3714,"summary":3723},"\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":3725,"title":3726,"module":3714,"summary":3727},"\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":3729,"title":3730,"module":3714,"summary":3731},"\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":3733,"title":3734,"module":3735,"summary":3736},"\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":3738,"title":3739,"module":3735,"summary":3740},"\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":3742,"title":3743,"module":3735,"summary":3744},"\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":3746,"title":3747,"module":3735,"summary":3748},"\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":3750,"title":3751,"module":3735,"summary":3752},"\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":3754,"title":3755,"module":3756,"summary":3757},"\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":3759,"title":3760,"module":3756,"summary":3761},"\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":3763,"title":3764,"module":3756,"summary":3765},"\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":3767,"title":3768,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":3770,"title":3771,"module":3772,"summary":3773},"\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":3775,"title":3776,"module":3772,"summary":3777},"\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":3779,"title":3780,"module":3772,"summary":3781},"\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":3783,"title":3784,"module":3772,"summary":3785},"\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":3787,"title":3788,"module":3772,"summary":3789},"\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":3791,"title":3792,"module":3793,"summary":3794},"\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":3796,"title":3797,"module":3793,"summary":3798},"\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":3800,"title":3801,"module":3793,"summary":3802},"\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":3804,"title":3805,"module":3793,"summary":3806},"\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":3808,"title":3809,"module":3793,"summary":3810},"\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":3812,"title":3813,"module":3814,"summary":3815},"\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":3817,"title":3818,"module":3814,"summary":3819},"\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":3821,"title":3822,"module":3814,"summary":3823},"\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":3825,"title":3826,"module":3827,"summary":3828},"\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":3830,"title":3831,"module":3827,"summary":3832},"\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":3834,"title":3835,"module":3827,"summary":3836},"\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":3838,"title":3839,"module":3827,"summary":3840},"\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":3842,"title":3843,"module":3827,"summary":3844},"\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":3846,"title":3847,"module":3827,"summary":3848},"\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":3850,"title":3851,"module":3827,"summary":3852},"\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":3854,"title":3855,"module":3856,"summary":3857},"\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":3859,"title":3860,"module":3856,"summary":3861},"\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":3863,"title":3864,"module":3856,"summary":3865},"\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":3867,"title":3868,"module":3856,"summary":3869},"\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":3871,"title":3872,"module":3856,"summary":3873},"\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":3875,"title":3876,"module":3856,"summary":3877},"\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":3879,"title":3880,"module":3856,"summary":3881},"\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":3883,"title":3884,"module":3885,"summary":3886},"\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":3888,"title":3889,"module":3885,"summary":3890},"\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":3892,"title":3893,"module":3885,"summary":3894},"\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":3896,"title":3897,"module":3885,"summary":3898},"\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":3900,"title":3901,"module":3885,"summary":3902},"\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":3904,"title":3905,"module":3885,"summary":3906},"\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":3908,"title":3909,"module":3910,"summary":3911},"\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":3913,"title":3914,"module":3910,"summary":3915},"\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":3917,"title":3918,"module":3910,"summary":3919},"\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":3921,"title":3922,"module":3910,"summary":3923},"\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":3925,"title":3926,"module":3910,"summary":3927},"\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":3929,"title":3930,"module":3931,"summary":3932},"\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":3934,"title":3935,"module":3931,"summary":3936},"\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":3938,"title":3939,"module":3931,"summary":3940},"\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":3942,"title":3943,"module":3931,"summary":3944},"\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":3946,"title":3947,"module":3931,"summary":3948},"\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":3950,"title":3951,"module":3931,"summary":3952},"\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":3954,"title":3955,"module":3956,"summary":3957},"\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":3959,"title":3960,"module":3956,"summary":3961},"\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":3963,"title":3964,"module":3956,"summary":3965},"\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":3967,"title":3968,"module":3956,"summary":3969},"\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":3971,"title":3972,"module":3956,"summary":3973},"\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":3975,"title":3976,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":3978,"title":3979,"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":4030,"title":4031,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4033,"title":4034,"module":5,"summary":4035},"\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":4037,"title":4038,"module":5,"summary":4039},"\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":4041,"title":4042,"module":4043,"summary":4044},"\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":4046,"title":4047,"module":4043,"summary":4048},"\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":4050,"title":4051,"module":4043,"summary":4052},"\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":4054,"title":4055,"module":4043,"summary":4056},"\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":4058,"title":4059,"module":4043,"summary":4060},"\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":4062,"title":4063,"module":4043,"summary":4064},"\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":4066,"title":4067,"module":4068,"summary":4069},"\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":4071,"title":4072,"module":4068,"summary":4073},"\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":4075,"title":4076,"module":4068,"summary":4077},"\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":4079,"title":4080,"module":4068,"summary":4081},"\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":4083,"title":4084,"module":4068,"summary":4085},"\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":4087,"title":4088,"module":4068,"summary":4089},"\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":4091,"title":4092,"module":4093,"summary":4094},"\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":4096,"title":4097,"module":4093,"summary":4098},"\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":4100,"title":4101,"module":4093,"summary":4102},"\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":4104,"title":4105,"module":4106,"summary":4107},"\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":4109,"title":4110,"module":4106,"summary":4111},"\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":4113,"title":4114,"module":4115,"summary":4116},"\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":4118,"title":4119,"module":4115,"summary":4120},"\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":4122,"title":4123,"module":4115,"summary":4124},"\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":4126,"title":4127,"module":4128,"summary":4129},"\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":4131,"title":4132,"module":4128,"summary":4133},"\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":4135,"title":4136,"module":4137,"summary":4138},"\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":4140,"title":4141,"module":4137,"summary":4142},"\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":4144,"title":4145,"module":4137,"summary":4146},"\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":4148,"title":4149,"module":4150,"summary":4151},"\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":4153,"title":4154,"module":4150,"summary":4155},"\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":4157,"title":4158,"module":4150,"summary":4159},"\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":4161,"title":4162,"module":4163,"summary":4164},"\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":4166,"title":4167,"module":4163,"summary":4168},"\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":4170,"title":4171,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4173,"title":4174,"module":4175,"summary":4176},"\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":4178,"title":4179,"module":4175,"summary":4180},"\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":4182,"title":4183,"module":4175,"summary":4184},"\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":4186,"title":4187,"module":4175,"summary":4188},"\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":4190,"title":4191,"module":4175,"summary":4192},"\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":4194,"title":4195,"module":4196,"summary":4197},"\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":4199,"title":4200,"module":4196,"summary":4201},"\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":4203,"title":4204,"module":4196,"summary":4205},"\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":4207,"title":4208,"module":4196,"summary":4209},"\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":4211,"title":4212,"module":4213,"summary":4214},"\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":4216,"title":4217,"module":4213,"summary":4218},"\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":4220,"title":4221,"module":4213,"summary":4222},"\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":4224,"title":4225,"module":4213,"summary":4226},"\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":4228,"title":4229,"module":4230,"summary":4231},"\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":4233,"title":4234,"module":4230,"summary":4235},"\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":4237,"title":4238,"module":4230,"summary":4239},"\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":4241,"title":4242,"module":4230,"summary":4243},"\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":4245,"title":4246,"module":4247,"summary":4248},"\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":4250,"title":4251,"module":4247,"summary":4252},"\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":4254,"title":4255,"module":4247,"summary":4256},"\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":4258,"title":4259,"module":4247,"summary":4260},"\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":4262,"title":4263,"module":4247,"summary":4264},"\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":4266,"title":4267,"module":4247,"summary":4268},"\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":4270,"title":4271,"module":4272,"summary":4273},"\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":4275,"title":4276,"module":4272,"summary":4277},"\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":4279,"title":4280,"module":4272,"summary":4281},"\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":4283,"title":4284,"module":4285,"summary":4286},"\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":4288,"title":4289,"module":4285,"summary":4290},"\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":4292,"title":4293,"module":4285,"summary":4294},"\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":4296,"title":4297,"module":4285,"summary":4298},"\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":4300,"title":4301,"module":4302,"summary":4303},"\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":4305,"title":4306,"module":4302,"summary":4307},"\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":4309,"title":4310,"module":4302,"summary":4311},"\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":4313,"title":4314,"module":4315,"summary":4316},"\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":4318,"title":4319,"module":4315,"summary":4320},"\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":4322,"title":4323,"module":4315,"summary":4324},"\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":4326,"title":4327,"module":4328,"summary":4329},"\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":4331,"title":4332,"module":4328,"summary":4333},"\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":4335,"title":4336,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4338,"title":4339,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4341,"title":4342,"module":4343,"summary":4344},"\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":4346,"title":4347,"module":4343,"summary":4348},"\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":4350,"title":4351,"module":4343,"summary":4352},"\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":4354,"title":4355,"module":4343,"summary":4356},"\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":4358,"title":4359,"module":4360,"summary":4361},"\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":4363,"title":4364,"module":4360,"summary":4365},"\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":4367,"title":4368,"module":4360,"summary":4369},"\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":4371,"title":4372,"module":4373,"summary":4374},"\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":4376,"title":4377,"module":4373,"summary":4378},"\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":4380,"title":4381,"module":4373,"summary":4382},"\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":4384,"title":4385,"module":4373,"summary":4386},"\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":4388,"title":4389,"module":4373,"summary":4390},"\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":4392,"title":4393,"module":4373,"summary":4394},"\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":4396,"title":4397,"module":4398,"summary":4399},"\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":4401,"title":4402,"module":4398,"summary":4403},"\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":4405,"title":4406,"module":4398,"summary":4407},"\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":4409,"title":4410,"module":4398,"summary":4411},"\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":4413,"title":4414,"module":4398,"summary":4415},"\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":4417,"title":4418,"module":4398,"summary":4419},"\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":4421,"title":4422,"module":4423,"summary":4424},"\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":4426,"title":4427,"module":4423,"summary":4428},"\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":4430,"title":4431,"module":4423,"summary":4432},"\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":4434,"title":4435,"module":4423,"summary":4436},"\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":4438,"title":4439,"module":3435,"summary":4440},"\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":4442,"title":4443,"module":3435,"summary":4444},"\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":4446,"title":4447,"module":3435,"summary":4448},"\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":4450,"title":4451,"module":4452,"summary":4453},"\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":4455,"title":4456,"module":4452,"summary":4457},"\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":4459,"title":4460,"module":4452,"summary":4461},"\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":4463,"title":4464,"module":4465,"summary":4466},"\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":4468,"title":4469,"module":4465,"summary":4470},"\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":4472,"title":4473,"module":4465,"summary":4474},"\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":4476,"title":4477,"module":4478,"summary":4479},"\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":4481,"title":4482,"module":4478,"summary":4483},"\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":4485,"title":4486,"module":4487,"summary":4488},"\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":4490,"title":4491,"module":4487,"summary":4492},"\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":4494,"title":4495,"module":4487,"summary":4496},"\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":4498,"title":4499,"module":4487,"summary":4500},"\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":4502,"title":4503,"module":4487,"summary":4504},"\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":4506,"title":4507,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4509,"title":4510,"module":4511,"summary":4512},"\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":4514,"title":4515,"module":4511,"summary":4516},"\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":4518,"title":4519,"module":4511,"summary":4520},"\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":4522,"title":4523,"module":4511,"summary":4524},"\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":4526,"title":4527,"module":4528,"summary":4529},"\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":4531,"title":4532,"module":4528,"summary":4533},"\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":4535,"title":4536,"module":4528,"summary":4537},"\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":4539,"title":4540,"module":4528,"summary":4541},"\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":4543,"title":4544,"module":4528,"summary":4545},"\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":4547,"title":4548,"module":4528,"summary":4549},"\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":4551,"title":4552,"module":4553,"summary":4554},"\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":4556,"title":4557,"module":4553,"summary":4558},"\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":4560,"title":4561,"module":4553,"summary":4562},"\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":4564,"title":4565,"module":4553,"summary":4566},"\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":4568,"title":4569,"module":4553,"summary":4570},"\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":4572,"title":4573,"module":3129,"summary":4574},"\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":4576,"title":4577,"module":3129,"summary":4578},"\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":4580,"title":4581,"module":3129,"summary":4582},"\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":4584,"title":4585,"module":3129,"summary":4586},"\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":4588,"title":4589,"module":3129,"summary":4590},"\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":4592,"title":4593,"module":3129,"summary":4594},"\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":4596,"title":4597,"module":4598,"summary":4599},"\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":4601,"title":4602,"module":4598,"summary":4603},"\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":4605,"title":4606,"module":4598,"summary":4607},"\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":4609,"title":4610,"module":4598,"summary":4611},"\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":4613,"title":4614,"module":4615,"summary":4616},"\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":4618,"title":4619,"module":4615,"summary":4620},"\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":4622,"title":4623,"module":4615,"summary":4624},"\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":4626,"title":3184,"module":4615,"summary":4627},"\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":4629,"title":4630,"module":4615,"summary":4631},"\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":4633,"title":4634,"module":4635,"summary":4636},"\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":4638,"title":4639,"module":4635,"summary":4640},"\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":4642,"title":4643,"module":4635,"summary":4644},"\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":4646,"title":4647,"module":4635,"summary":4648},"\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":4650,"title":4651,"module":4652,"summary":4653},"\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":4655,"title":4656,"module":4652,"summary":4657},"\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":4659,"title":4660,"module":4652,"summary":4661},"\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":4663,"title":4664,"module":4652,"summary":4665},"\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":4667,"title":4668,"module":4652,"summary":4669},"\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":4671,"title":4672,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4674,"title":4675,"module":5,"summary":4676},"\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":4678,"title":4679,"module":5,"summary":4680},"\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":4682,"title":4683,"module":4684,"summary":4685},"\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":4687,"title":4688,"module":4684,"summary":4689},"\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":4691,"title":4692,"module":4684,"summary":4693},"\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":4695,"title":4696,"module":4684,"summary":4697},"\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":4699,"title":4700,"module":4701,"summary":4702},"\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":4704,"title":4705,"module":4701,"summary":4706},"\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":4708,"title":4709,"module":4701,"summary":4710},"\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":4712,"title":4713,"module":4701,"summary":4714},"\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":4716,"title":4717,"module":4701,"summary":4718},"\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":4720,"title":4721,"module":4701,"summary":4722},"\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":4724,"title":4725,"module":4726,"summary":4727},"\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":4729,"title":4730,"module":4726,"summary":4731},"\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":4733,"title":4734,"module":4726,"summary":4735},"\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":4737,"title":4738,"module":4726,"summary":4739},"\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":4741,"title":4742,"module":4743,"summary":4744},"\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":4746,"title":4747,"module":4743,"summary":4748},"\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":4750,"title":4751,"module":4743,"summary":4752},"\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":4754,"title":4755,"module":4743,"summary":4756},"\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":4758,"title":4759,"module":4760,"summary":4761},"\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":4763,"title":4764,"module":4760,"summary":4765},"\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":4767,"title":4768,"module":4760,"summary":4769},"\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":4771,"title":4772,"module":4773,"summary":4774},"\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":4776,"title":4777,"module":4773,"summary":4778},"\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":4780,"title":4781,"module":4773,"summary":4782},"\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":4784,"title":4785,"module":4773,"summary":4786},"\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":4788,"title":4789,"module":4790,"summary":4791},"\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":4793,"title":4794,"module":4790,"summary":4795},"\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":4797,"title":4798,"module":4790,"summary":4799},"\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":4801,"title":4802,"module":4790,"summary":4803},"\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":4805,"title":4806,"module":4807,"summary":4808},"\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":4810,"title":4811,"module":4807,"summary":4812},"\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":4814,"title":4815,"module":4807,"summary":4816},"\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":4818,"title":4819,"module":4820,"summary":4821},"\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":4823,"title":4824,"module":4820,"summary":4825},"\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":4827,"title":4828,"module":4820,"summary":4829},"\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":4831,"title":4832,"module":4820,"summary":4833},"\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":4835,"title":4836,"module":4837,"summary":4838},"\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":4840,"title":4841,"module":4837,"summary":4842},"\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":4844,"title":4845,"module":4837,"summary":4846},"\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":4848,"title":4849,"module":4837,"summary":4850},"\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":4852,"title":4853,"module":4837,"summary":4854},"\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":4856,"title":4857,"module":4858,"summary":4859},"\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":4861,"title":4862,"module":4858,"summary":4863},"\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":4865,"title":4866,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":4868,"title":4869,"module":4870,"summary":4871},"\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":4873,"title":4874,"module":4870,"summary":4875},"\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":4877,"title":4878,"module":4870,"summary":4879},"\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":4881,"title":4882,"module":4870,"summary":4883},"\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":4885,"title":4886,"module":4870,"summary":4887},"\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":4889,"title":4890,"module":4891,"summary":4892},"\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":4894,"title":4895,"module":4891,"summary":4896},"\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":4898,"title":4899,"module":4891,"summary":4900},"\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":4902,"title":4903,"module":4891,"summary":4904},"\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":4906,"title":4907,"module":4891,"summary":4908},"\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":4910,"title":4911,"module":4891,"summary":4912},"\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":4914,"title":4915,"module":4891,"summary":4916},"\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":4918,"title":4919,"module":4920,"summary":4921},"\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":4923,"title":4924,"module":4920,"summary":4925},"\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":4927,"title":4928,"module":4920,"summary":4929},"\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":4931,"title":4932,"module":4920,"summary":4933},"\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":4935,"title":4936,"module":4937,"summary":4938},"\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":4940,"title":4941,"module":4937,"summary":4942},"\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":4944,"title":4945,"module":4937,"summary":4946},"\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":4948,"title":4949,"module":4950,"summary":4951},"\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":4953,"title":4954,"module":4950,"summary":4955},"\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":4957,"title":4958,"module":4950,"summary":4959},"\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":4961,"title":4962,"module":4950,"summary":4963},"\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":4965,"title":4966,"module":4950,"summary":4967},"\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":4969,"title":4970,"module":4950,"summary":4971},"\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":4973,"title":4974,"module":4975,"summary":4976},"\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":4978,"title":4979,"module":4975,"summary":4980},"\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":4982,"title":4983,"module":4975,"summary":4984},"\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":4986,"title":4987,"module":4988,"summary":4989},"\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":4991,"title":4992,"module":4988,"summary":4993},"\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":4995,"title":4996,"module":4988,"summary":4997},"\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":4999,"title":5000,"module":4988,"summary":5001},"\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":5003,"title":5004,"module":5005,"summary":5006},"\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":5008,"title":5009,"module":5005,"summary":5010},"\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":5012,"title":5013,"module":5005,"summary":5014},"\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":5016,"title":5017,"module":5018,"summary":5019},"\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":5021,"title":5022,"module":5018,"summary":5023},"\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":5025,"title":5026,"module":5018,"summary":5027},"\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":5029,"title":5030,"module":5018,"summary":5031},"\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":5033,"title":5034,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5036,"title":5037,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5039,"title":5040,"module":5,"summary":5041},"\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":5043,"title":5044,"module":5,"summary":5045},"\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":5047,"title":5048,"module":5,"summary":5049},"\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":5051,"title":5052,"module":5,"summary":5053},"\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":5055,"title":5056,"module":5,"summary":5057},"\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":5059,"title":5060,"module":5,"summary":5061},"\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":5063,"title":5064,"module":5065,"summary":5066},"\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":5068,"title":5069,"module":5065,"summary":5070},"\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":5072,"title":5073,"module":5065,"summary":5074},"\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":5076,"title":5077,"module":5078,"summary":5079},"\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":5081,"title":5082,"module":5078,"summary":5083},"\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":5085,"title":5086,"module":5078,"summary":5087},"\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":5089,"title":5090,"module":5091,"summary":5092},"\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":5094,"title":5095,"module":5091,"summary":5096},"\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":5098,"title":5099,"module":5091,"summary":5100},"\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":5102,"title":5103,"module":5091,"summary":5104},"\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":5106,"title":5107,"module":5091,"summary":5108},"\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":5110,"title":5111,"module":5112,"summary":5113},"\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":5115,"title":5116,"module":5112,"summary":5117},"\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":5119,"title":5120,"module":5112,"summary":5121},"\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":5123,"title":5124,"module":5112,"summary":5125},"\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":5127,"title":5128,"module":5129,"summary":5130},"\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":5132,"title":5133,"module":5129,"summary":5134},"\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":5136,"title":5137,"module":5129,"summary":5138},"\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":5140,"title":5141,"module":5129,"summary":5142},"\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":5144,"title":5145,"module":5146,"summary":5147},"\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":5149,"title":5150,"module":5146,"summary":5151},"\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":5153,"title":5154,"module":5146,"summary":5155},"\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":5157,"title":5158,"module":5146,"summary":5159},"\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":5161,"title":5162,"module":5163,"summary":5164},"\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":5166,"title":5167,"module":5163,"summary":5168},"\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":5170,"title":5171,"module":5163,"summary":5172},"\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":5174,"title":5175,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5177,"title":3976,"module":5178,"summary":5179},"\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":5181,"title":5182,"module":5178,"summary":5183},"\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":5185,"title":5186,"module":5178,"summary":5187},"\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":5189,"title":3335,"module":5178,"summary":5190},"\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":5192,"title":5193,"module":5,"summary":5194},"\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":5196,"title":5197,"module":5,"summary":5198},"\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":5200,"title":5201,"module":5,"summary":5202},"\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":5204,"title":5205,"module":5206,"summary":5207},"\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":5209,"title":5210,"module":5206,"summary":5211},"\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":5213,"title":5214,"module":5206,"summary":5215},"\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":5217,"title":5218,"module":5206,"summary":5219},"\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":5221,"title":5222,"module":5206,"summary":5223},"\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":5225,"title":5226,"module":5227,"summary":5228},"\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":5230,"title":5231,"module":5227,"summary":5232},"\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":5234,"title":5235,"module":5227,"summary":5236},"\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":5238,"title":5239,"module":5227,"summary":5240},"\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":5242,"title":5243,"module":5227,"summary":5244},"\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":5246,"title":5247,"module":5248,"summary":5249},"\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":5251,"title":5252,"module":5248,"summary":5253},"\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":5255,"title":5256,"module":5248,"summary":5257},"\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":5259,"title":5260,"module":5248,"summary":5261},"\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":5263,"title":5264,"module":5265,"summary":5266},"\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":5268,"title":5269,"module":5265,"summary":5270},"\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":5272,"title":5273,"module":5265,"summary":5274},"\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":5276,"title":5277,"module":5265,"summary":5278},"\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":5280,"title":5281,"module":5265,"summary":5282},"\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":5284,"title":5285,"module":5265,"summary":5286},"\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":5288,"title":5289,"module":5265,"summary":5290},"\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":5292,"title":5293,"module":5265,"summary":5294},"\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":5296,"title":5297,"module":5265,"summary":5298},"\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":5300,"title":5301,"module":5302,"summary":5303},"\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":5305,"title":5306,"module":5302,"summary":5307},"\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":5309,"title":5310,"module":5302,"summary":5311},"\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":5313,"title":5314,"module":5302,"summary":5315},"\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":5317,"title":5318,"module":5302,"summary":5319},"\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":5321,"title":5322,"module":5323,"summary":5324},"\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":5326,"title":5327,"module":5323,"summary":5328},"\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":5330,"title":5331,"module":5323,"summary":5332},"\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":5334,"title":5335,"module":5323,"summary":5336},"\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":5338,"title":5339,"module":5323,"summary":5340},"\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":5342,"title":5343,"module":5323,"summary":5344},"\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":5346,"title":5347,"module":5323,"summary":5348},"\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":5350,"title":5351,"module":5352,"summary":5353},"\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":5355,"title":5356,"module":5352,"summary":5357},"\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":5359,"title":5360,"module":5352,"summary":5361},"\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":5363,"title":5364,"module":5365,"summary":5366},"\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":5368,"title":5369,"module":5365,"summary":5370},"\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":5372,"title":5373,"module":5365,"summary":5374},"\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":5376,"title":5377,"module":5365,"summary":5378},"\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":5380,"title":5381,"module":5365,"summary":5382},"\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":5384,"title":5385,"module":5365,"summary":5386},"\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":5388,"title":5389,"module":5365,"summary":5390},"\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":5392,"title":5393,"module":5394,"summary":5395},"\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":5397,"title":5398,"module":5394,"summary":5399},"\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":5401,"title":5402,"module":5394,"summary":5403},"\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":5405,"title":5406,"module":5394,"summary":5407},"\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":5409,"title":5410,"module":5394,"summary":5411},"\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":5413,"title":5414,"module":5394,"summary":5415},"\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":5417,"title":5418,"module":5394,"summary":5419},"\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":5421,"title":5422,"module":5394,"summary":5423},"\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":5425,"title":5426,"module":5394,"summary":5427},"\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":5429,"title":5430,"module":5394,"summary":5431},"\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":5433,"title":5434,"module":5394,"summary":5435},"\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":5437,"title":5438,"module":5439,"summary":5440},"\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":5442,"title":5443,"module":5439,"summary":5444},"\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":5446,"title":5447,"module":5439,"summary":5448},"\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":5450,"title":5451,"module":5439,"summary":5452},"\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":5454,"title":5455,"module":5439,"summary":5456},"\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":5458,"title":5459,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5461,"title":5462,"module":3526,"summary":5463},"\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":5465,"title":5466,"module":3526,"summary":5467},"\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":5469,"title":5470,"module":3526,"summary":5471},"\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":5473,"title":5474,"module":3526,"summary":5475},"\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":5477,"title":5478,"module":3526,"summary":5479},"\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":5481,"title":5482,"module":5483,"summary":5484},"\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":5486,"title":5487,"module":5483,"summary":5488},"\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":5490,"title":5491,"module":5483,"summary":5492},"\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":5494,"title":5495,"module":5483,"summary":5496},"\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":5498,"title":5499,"module":5500,"summary":5501},"\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":5503,"title":5504,"module":5500,"summary":5505},"\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":5507,"title":5508,"module":5500,"summary":5509},"\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":5511,"title":5512,"module":5500,"summary":5513},"\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":5515,"title":5516,"module":5517,"summary":5518},"\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":5520,"title":5521,"module":5517,"summary":5522},"\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":5524,"title":5525,"module":5517,"summary":5526},"\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":5528,"title":5529,"module":5517,"summary":5530},"\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":5532,"title":5533,"module":5517,"summary":5534},"\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":5536,"title":5537,"module":5538,"summary":5539},"\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":5541,"title":5542,"module":5538,"summary":5543},"\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":5545,"title":5546,"module":5538,"summary":5547},"\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":5549,"title":5550,"module":5551,"summary":5552},"\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":5554,"title":5555,"module":5551,"summary":5556},"\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":5558,"title":5559,"module":5551,"summary":5560},"\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":5562,"title":5563,"module":5564,"summary":5565},"\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":5567,"title":5568,"module":5564,"summary":5569},"\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":5571,"title":5572,"module":5564,"summary":5573},"\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":5575,"title":5576,"module":5564,"summary":5577},"\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":5579,"title":5580,"module":5581,"summary":5582},"\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":5584,"title":5585,"module":5581,"summary":5586},"\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":5588,"title":5589,"module":5581,"summary":5590},"\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":5592,"title":5593,"module":5581,"summary":5594},"\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":5596,"title":5597,"module":5581,"summary":5598},"\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":5600,"title":5601,"module":5581,"summary":5602},"\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":5604,"title":5605,"module":5606,"summary":5607},"\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":5609,"title":5610,"module":5606,"summary":5611},"\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":5613,"title":5614,"module":5606,"summary":5615},"\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":5617,"title":5618,"module":5606,"summary":5619},"\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":5621,"title":5622,"module":5623,"summary":5624},"\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":5626,"title":5627,"module":5623,"summary":5628},"\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":5630,"title":5631,"module":5623,"summary":5632},"\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":5634,"title":5635,"module":5636,"summary":5637},"\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":5639,"title":5640,"module":5636,"summary":5641},"\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":5643,"title":5644,"module":5636,"summary":5645},"\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":5647,"title":5648,"module":5636,"summary":5649},"\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":5651,"title":5652,"module":5636,"summary":5653},"\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":5655,"title":5656,"module":5657,"summary":5658},"\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":5660,"title":5661,"module":5657,"summary":5662},"\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":5664,"title":5665,"module":5657,"summary":5666},"\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":5668,"title":5669,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5671,"title":5672,"module":5673,"summary":5674},"\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":5676,"title":5677,"module":5673,"summary":5678},"\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":5680,"title":5681,"module":5673,"summary":5682},"\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":5684,"title":5685,"module":5673,"summary":5686},"\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":5688,"title":5689,"module":5690,"summary":5691},"\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":5693,"title":5694,"module":5690,"summary":5695},"\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":5697,"title":5698,"module":5690,"summary":5699},"\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":5701,"title":5702,"module":5690,"summary":5703},"\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":5705,"title":5706,"module":5707,"summary":5708},"\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":5710,"title":5711,"module":5707,"summary":5712},"\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":5714,"title":5715,"module":5707,"summary":5716},"\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":5718,"title":5719,"module":5707,"summary":5720},"\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":5722,"title":5723,"module":5724,"summary":5725},"\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":5727,"title":5728,"module":5724,"summary":5729},"\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":5731,"title":5732,"module":5724,"summary":5733},"\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":5735,"title":5736,"module":5724,"summary":5737},"\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":5739,"title":5740,"module":5741,"summary":5742},"\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":5744,"title":5745,"module":5741,"summary":5746},"\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":5748,"title":5749,"module":5741,"summary":5750},"\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":5752,"title":5753,"module":5741,"summary":5754},"\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":5756,"title":5757,"module":5758,"summary":5759},"\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":5761,"title":5762,"module":5758,"summary":5763},"\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":5765,"title":5766,"module":5758,"summary":5767},"\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":5769,"title":5770,"module":5758,"summary":5771},"\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":5773,"title":5774,"module":5775,"summary":5776},"\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":5778,"title":5779,"module":5775,"summary":5780},"\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":5782,"title":5783,"module":5775,"summary":5784},"\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":5786,"title":5787,"module":5775,"summary":5788},"\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":5790,"title":5791,"module":5775,"summary":5792},"\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":5794,"title":5795,"module":5796,"summary":5797},"\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":5799,"title":5800,"module":5796,"summary":5801},"\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":5803,"title":5804,"module":5805,"summary":5806},"\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":5808,"title":5809,"module":5805,"summary":5810},"\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":5812,"title":5813,"module":5805,"summary":5814},"\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":5816,"title":5817,"module":5805,"summary":5818},"\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":5820,"title":5821,"module":5822,"summary":5823},"\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":5825,"title":5826,"module":5822,"summary":5827},"\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":5829,"title":5830,"module":5822,"summary":5831},"\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":5833,"title":5834,"module":5822,"summary":5835},"\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":5837,"title":5838,"module":5822,"summary":5839},"\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":5841,"title":5842,"module":5843,"summary":5844},"\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":5846,"title":5847,"module":5843,"summary":5848},"\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":5850,"title":5851,"module":5843,"summary":5852},"\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":5854,"title":5855,"module":5843,"summary":5856},"\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":5858,"title":5859,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":5861,"title":5862,"module":5,"summary":5863},"\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":5865,"title":5866,"module":5867,"summary":5868},"\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":5870,"title":5871,"module":5867,"summary":5872},"\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":5874,"title":5875,"module":5867,"summary":5876},"\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":5878,"title":5879,"module":5867,"summary":5880},"\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":5882,"title":5883,"module":5867,"summary":5884},"\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":5886,"title":5887,"module":5867,"summary":5888},"\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":5890,"title":5891,"module":5867,"summary":5892},"\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":5894,"title":5895,"module":5896,"summary":5897},"\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":5899,"title":5900,"module":5896,"summary":5901},"\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":5903,"title":5904,"module":5896,"summary":5905},"\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":5907,"title":5908,"module":5896,"summary":5909},"\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":5911,"title":5912,"module":5913,"summary":5914},"\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":5916,"title":5917,"module":5913,"summary":5918},"\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":5920,"title":5921,"module":5913,"summary":5922},"\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":5924,"title":5925,"module":5913,"summary":5926},"\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":5928,"title":5929,"module":5930,"summary":5931},"\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":5933,"title":5934,"module":5930,"summary":5935},"\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":5937,"title":5938,"module":5930,"summary":5939},"\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":5941,"title":5942,"module":5930,"summary":5943},"\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":5945,"title":5946,"module":5947,"summary":5948},"\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":5950,"title":5951,"module":5947,"summary":5952},"\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":5954,"title":5955,"module":5947,"summary":5956},"\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":5958,"title":5959,"module":5947,"summary":5960},"\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":5962,"title":5963,"module":5964,"summary":5965},"\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":5967,"title":5968,"module":5964,"summary":5969},"\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":5971,"title":5972,"module":5964,"summary":5973},"\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":5975,"title":5976,"module":5977,"summary":5978},"\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":5980,"title":5981,"module":5977,"summary":5982},"\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":5984,"title":5985,"module":5986,"summary":5987},"\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":5989,"title":5990,"module":5986,"summary":5991},"\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":5993,"title":5994,"module":5986,"summary":5995},"\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":5997,"title":5998,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6000,"title":6001,"module":5,"summary":6002},"\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":6004,"title":6005,"module":5,"summary":6006},"\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":6008,"title":6009,"module":5,"summary":6010},"\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":6012,"title":6013,"module":5,"summary":6014},"\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":6016,"title":6017,"module":5,"summary":6018},"\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":6020,"title":6021,"module":5,"summary":6022},"\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":6024,"title":3001,"module":6025,"summary":6026},"\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":6028,"title":6029,"module":6025,"summary":6030},"\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":6032,"title":6033,"module":6025,"summary":6034},"\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":6036,"title":6037,"module":6025,"summary":6038},"\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":6040,"title":6041,"module":6025,"summary":6042},"\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":6044,"title":6045,"module":6025,"summary":6046},"\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":6048,"title":6049,"module":6025,"summary":6050},"\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":6052,"title":6053,"module":6025,"summary":6054},"\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":6056,"title":6057,"module":6025,"summary":6058},"\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":6060,"title":6061,"module":6025,"summary":6062},"\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":6064,"title":6065,"module":6025,"summary":6066},"\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":6068,"title":6069,"module":6025,"summary":6070},"\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":6072,"title":6073,"module":6074,"summary":6075},"\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":6077,"title":6078,"module":6074,"summary":6079},"\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":6081,"title":6082,"module":6074,"summary":6083},"\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":6085,"title":6086,"module":6074,"summary":6087},"\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":6089,"title":6090,"module":6074,"summary":6091},"\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":6093,"title":6094,"module":6074,"summary":6095},"\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":6097,"title":6098,"module":6074,"summary":6099},"\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":6101,"title":6102,"module":6074,"summary":6103},"\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":6105,"title":6106,"module":6074,"summary":6107},"\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":6109,"title":6110,"module":6074,"summary":6111},"\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":6113,"title":6114,"module":6074,"summary":6115},"\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":6117,"title":6118,"module":6074,"summary":6119},"\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":6121,"title":6122,"module":6074,"summary":6123},"\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":6125,"title":6126,"module":6074,"summary":6127},"\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":6129,"title":5447,"module":6130,"summary":6131},"\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":6133,"title":6134,"module":6130,"summary":6135},"\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":6137,"title":6138,"module":6130,"summary":6139},"\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":6141,"title":6142,"module":6130,"summary":6143},"\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":6145,"title":6146,"module":6130,"summary":6147},"\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":6149,"title":6150,"module":6130,"summary":6151},"\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":6153,"title":6154,"module":6130,"summary":6155},"\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":6157,"title":6158,"module":6130,"summary":6159},"\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":6161,"title":6162,"module":6163,"summary":6164},"\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":6166,"title":6167,"module":6163,"summary":6168},"\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":6170,"title":6171,"module":6163,"summary":6172},"\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":6174,"title":6175,"module":6163,"summary":6176},"\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":6178,"title":6179,"module":6163,"summary":6180},"\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":6182,"title":6183,"module":6163,"summary":6184},"\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":6186,"title":6187,"module":6163,"summary":6188},"\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":6190,"title":6191,"module":6163,"summary":6192},"\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":6194,"title":6195,"module":6163,"summary":6196},"\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":6198,"title":6199,"module":6163,"summary":6200},"\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":6202,"title":6203,"module":6163,"summary":6204},"\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":6206,"title":6207,"module":6163,"summary":6208},"\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":6210,"title":6211,"module":6163,"summary":6212},"\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":6214,"title":6215,"module":6163,"summary":6216},"\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":6218,"title":6219,"module":6163,"summary":6220},"\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":6222,"title":6223,"module":6163,"summary":6224},"\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":6226,"title":6227,"module":6163,"summary":6228},"\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":6230,"title":6231,"module":6163,"summary":6232},"\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":6234,"title":6235,"module":6163,"summary":6236},"\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":6238,"title":6239,"module":6163,"summary":6240},"\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":6242,"title":6243,"module":6163,"summary":6244},"\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":6246,"title":6247,"module":6163,"summary":6248},"\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":6250,"title":6251,"module":6252,"summary":6253},"\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":6255,"title":6256,"module":6252,"summary":6257},"\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":6259,"title":6260,"module":6252,"summary":6261},"\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":6263,"title":6264,"module":6252,"summary":6265},"\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":6267,"title":6268,"module":6252,"summary":6269},"\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":6271,"title":6272,"module":6252,"summary":6273},"\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":6275,"title":6276,"module":6252,"summary":6277},"\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":6279,"title":6280,"module":6252,"summary":6281},"\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":6283,"title":5439,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6285,"title":6286,"module":5,"summary":6287},"\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":6289,"title":6290,"module":5,"summary":6291},"\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":6293,"title":6294,"module":5,"summary":6295},"\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":6297,"title":6298,"module":5,"summary":6299},"\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":6301,"title":6302,"module":6303,"summary":6304},"\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":6306,"title":6307,"module":6303,"summary":6308},"\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":6310,"title":6311,"module":6303,"summary":6312},"\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":6314,"title":6315,"module":6303,"summary":6316},"\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":6318,"title":6319,"module":6303,"summary":6320},"\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":6322,"title":6323,"module":6303,"summary":6324},"\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":6326,"title":6327,"module":6303,"summary":6328},"\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":6330,"title":6331,"module":6303,"summary":6332},"\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":6334,"title":6335,"module":6303,"summary":6336},"\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":6338,"title":6339,"module":6303,"summary":6340},"\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":6342,"title":6343,"module":6303,"summary":6344},"\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":6346,"title":6347,"module":6303,"summary":6348},"\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":6350,"title":6351,"module":6352,"summary":6353},"\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":6355,"title":6356,"module":6352,"summary":6357},"\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":6359,"title":6360,"module":6352,"summary":6361},"\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":6363,"title":6364,"module":6352,"summary":6365},"\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":6367,"title":6368,"module":6352,"summary":6369},"\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":6371,"title":6372,"module":6352,"summary":6373},"\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":6375,"title":6376,"module":6352,"summary":6377},"\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":6379,"title":6380,"module":6352,"summary":6381},"\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":6383,"title":6384,"module":6352,"summary":6385},"\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":6387,"title":6388,"module":6352,"summary":6389},"\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":6391,"title":6392,"module":6352,"summary":6393},"\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":6395,"title":6396,"module":6352,"summary":6397},"\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":6399,"title":6400,"module":6401,"summary":6402},"\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":6404,"title":6405,"module":6401,"summary":6406},"\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":6408,"title":6409,"module":6401,"summary":6410},"\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":6412,"title":6413,"module":6401,"summary":6414},"\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":6416,"title":6417,"module":6401,"summary":6418},"\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":6420,"title":6421,"module":6401,"summary":6422},"\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":6424,"title":6425,"module":6401,"summary":6426},"\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":6428,"title":6017,"module":6401,"summary":6429},"\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":6431,"title":6432,"module":6401,"summary":6433},"\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":6435,"title":6436,"module":6401,"summary":6437},"\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":6439,"title":6440,"module":6441,"summary":6442},"\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":6444,"title":6445,"module":6441,"summary":6446},"\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":6448,"title":6449,"module":6441,"summary":6450},"\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":6452,"title":6453,"module":6441,"summary":6454},"\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":6456,"title":5439,"module":6441,"summary":6457},"\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":6459,"title":6460,"module":6441,"summary":6461},"\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":6463,"title":6464,"module":6441,"summary":6465},"\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":6467,"title":6468,"module":6441,"summary":6469},"\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":6471,"title":6472,"module":6473,"summary":6474},"\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":6476,"title":6477,"module":6473,"summary":6478},"\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":6480,"title":6481,"module":6473,"summary":6482},"\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":6484,"title":6485,"module":6473,"summary":6486},"\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":6488,"title":6489,"module":6473,"summary":6490},"\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":6492,"title":6493,"module":6473,"summary":6494},"\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":6496,"title":6497,"module":6473,"summary":6498},"\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":6500,"title":6501,"module":6473,"summary":6502},"\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":6504,"title":6505,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6507,"title":6508,"module":6509,"summary":6510},"\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":6512,"title":6513,"module":6509,"summary":6514},"\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":6516,"title":6517,"module":6509,"summary":6518},"\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":6520,"title":6521,"module":6509,"summary":6522},"\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":6524,"title":6525,"module":6509,"summary":6526},"\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":6528,"title":6529,"module":6530,"summary":6531},"\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":6533,"title":6534,"module":6530,"summary":6535},"\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":6537,"title":6538,"module":6530,"summary":6539},"\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":6541,"title":6542,"module":6530,"summary":6543},"\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":6545,"title":6546,"module":6547,"summary":6548},"\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":6550,"title":6551,"module":6547,"summary":6552},"\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":6554,"title":6555,"module":6547,"summary":6556},"\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":6558,"title":6559,"module":6547,"summary":6560},"\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":6562,"title":6563,"module":6564,"summary":6565},"\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":6567,"title":6568,"module":6564,"summary":6569},"\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":6571,"title":6572,"module":6573,"summary":6574},"\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":6576,"title":6577,"module":6573,"summary":6578},"\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":6580,"title":6581,"module":6582,"summary":6583},"\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":6585,"title":6586,"module":6582,"summary":6587},"\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":6589,"title":6590,"module":6582,"summary":6591},"\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":6593,"title":6594,"module":6582,"summary":6595},"\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":6597,"title":6598,"module":6599,"summary":6600},"\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":6602,"title":6603,"module":6599,"summary":6604},"\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":6606,"title":6607,"module":6599,"summary":6608},"\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":6610,"title":6611,"module":6612,"summary":6613},"\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":6615,"title":6616,"module":6612,"summary":6617},"\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":6619,"title":6620,"module":6612,"summary":6621},"\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":6623,"title":6624,"module":6625,"summary":6626},"\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":6628,"title":6629,"module":6625,"summary":6630},"\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":6632,"title":6633,"module":6634,"summary":6635},"\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":6637,"title":6638,"module":6634,"summary":6639},"\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":6641,"title":6642,"module":6634,"summary":6643},"\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":6645,"title":6646,"module":6647,"summary":6648},"\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":6650,"title":6651,"module":6647,"summary":6652},"\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":6654,"title":6655,"module":6647,"summary":6656},"\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":6658,"title":6659,"module":6647,"summary":6660},"\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":6662,"title":6663,"module":6647,"summary":6664},"\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":6666,"title":6667,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6669,"title":6670,"module":5,"summary":6671},"\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":6673,"title":6674,"module":5,"summary":6675},"\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":6677,"title":6678,"module":5,"summary":6679},"\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":6681,"title":6682,"module":5,"summary":6683},"\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":6685,"title":6686,"module":5,"summary":6687},"\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":6689,"title":6690,"module":6691,"summary":6692},"\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":6694,"title":6695,"module":6691,"summary":6696},"\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":6698,"title":6699,"module":6691,"summary":6700},"\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":6702,"title":6703,"module":6691,"summary":6704},"\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":6706,"title":6707,"module":6708,"summary":6709},"\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":6711,"title":6712,"module":6708,"summary":6713},"\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":6715,"title":6716,"module":6708,"summary":6717},"\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":6719,"title":6720,"module":3248,"summary":6721},"\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":6723,"title":6724,"module":3248,"summary":6725},"\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":6727,"title":6728,"module":3248,"summary":6729},"\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":6731,"title":6732,"module":3730,"summary":6733},"\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":6735,"title":5285,"module":3730,"summary":6736},"\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":6738,"title":5393,"module":3730,"summary":6739},"\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":6741,"title":6742,"module":3730,"summary":6743},"\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":6745,"title":6746,"module":3730,"summary":6747},"\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":6749,"title":6750,"module":3730,"summary":6751},"\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":6753,"title":6754,"module":6755,"summary":6756},"\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":6758,"title":6759,"module":6755,"summary":6760},"\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":6762,"title":6763,"module":6755,"summary":6764},"\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":6766,"title":6767,"module":6755,"summary":6768},"\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":6770,"title":6771,"module":6755,"summary":6772},"\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":6774,"title":6775,"module":6755,"summary":6776},"\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":6778,"title":6779,"module":6755,"summary":6780},"\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":6782,"title":6783,"module":6755,"summary":6784},"\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":6786,"title":6787,"module":6755,"summary":6788},"\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":6790,"title":6791,"module":6755,"summary":6792},"\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":6794,"title":6795,"module":6755,"summary":6796},"\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":6798,"title":6799,"module":6755,"summary":6800},"\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":6802,"title":6803,"module":6755,"summary":6804},"\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":6806,"title":6807,"module":6755,"summary":6808},"\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":6810,"title":6811,"module":6755,"summary":6812},"\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":6814,"title":6815,"module":6755,"summary":6816},"\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":6818,"title":6819,"module":6755,"summary":6820},"\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":6822,"title":6823,"module":6755,"summary":6824},"\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":6826,"title":6827,"module":6755,"summary":6828},"\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":6830,"title":6831,"module":6755,"summary":6832},"\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":6834,"title":6835,"module":5381,"summary":6836},"\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":6838,"title":6839,"module":5381,"summary":6840},"\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":6842,"title":6843,"module":5381,"summary":6844},"\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":6846,"title":6847,"module":5381,"summary":6848},"\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":6850,"title":6851,"module":5381,"summary":6852},"\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":6854,"title":6855,"module":5381,"summary":6856},"\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":6858,"title":6859,"module":5381,"summary":6860},"\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":6862,"title":6863,"module":5381,"summary":6864},"\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":6866,"title":6867,"module":6868,"summary":6869},"\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":6871,"title":6872,"module":6868,"summary":6873},"\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":6875,"title":6876,"module":6868,"summary":6877},"\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":6879,"title":6880,"module":6868,"summary":6881},"\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":6883,"title":6884,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":6886,"title":6887,"module":5,"summary":6888},"\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":6890,"title":6891,"module":5,"summary":6892},"\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":6894,"title":6895,"module":5,"summary":6896},"\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":6898,"title":6899,"module":6900,"summary":6901},"\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":6903,"title":6904,"module":6900,"summary":6905},"\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":6907,"title":6908,"module":6900,"summary":6909},"\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":6911,"title":6912,"module":6900,"summary":6913},"\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":6915,"title":6916,"module":6917,"summary":6918},"\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":6920,"title":6921,"module":6917,"summary":6922},"\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":6924,"title":6925,"module":6917,"summary":6926},"\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":6928,"title":6929,"module":6917,"summary":6930},"\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":6932,"title":6933,"module":6934,"summary":6935},"\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":6937,"title":6938,"module":6934,"summary":6939},"\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":6941,"title":6942,"module":6934,"summary":6943},"\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":6945,"title":6946,"module":6934,"summary":6947},"\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":6949,"title":6950,"module":6951,"summary":6952},"\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":6954,"title":6955,"module":6951,"summary":6956},"\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":6958,"title":6959,"module":6951,"summary":6960},"\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":6962,"title":6963,"module":6964,"summary":6965},"\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":6967,"title":6968,"module":6964,"summary":6969},"\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":6971,"title":6972,"module":6964,"summary":6973},"\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":6975,"title":6976,"module":6964,"summary":6977},"\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":6979,"title":6980,"module":6981,"summary":6982},"\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":6984,"title":6985,"module":6981,"summary":6986},"\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":6988,"title":6989,"module":6981,"summary":6990},"\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":6992,"title":6993,"module":6981,"summary":6994},"\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":6996,"title":6997,"module":6998,"summary":6999},"\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":7001,"title":7002,"module":6998,"summary":7003},"\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":7005,"title":7006,"module":6998,"summary":7007},"\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":7009,"title":7010,"module":6998,"summary":7011},"\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":7013,"title":7014,"module":7015,"summary":7016},"\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":7018,"title":7019,"module":7015,"summary":7020},"\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":7022,"title":7023,"module":7015,"summary":7024},"\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":7026,"title":7027,"module":7015,"summary":7028},"\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":7030,"title":7031,"module":7015,"summary":7032},"\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":7034,"title":7035,"module":7036,"summary":7037},"\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":7039,"title":7040,"module":7036,"summary":7041},"\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":7043,"title":7044,"module":7036,"summary":7045},"\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":7047,"title":7048,"module":7049,"summary":7050},"\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":7052,"title":7053,"module":7049,"summary":7054},"\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":7056,"title":7057,"module":7049,"summary":7058},"\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":7060,"title":7061,"module":7061,"summary":7062},"\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":7064,"title":7065,"module":7061,"summary":7066},"\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":7068,"title":7069,"module":7061,"summary":7070},"\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":7072,"title":7073,"module":7061,"summary":7074},"\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":7076,"title":7077,"module":7061,"summary":7078},"\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":7080,"title":7081,"module":7061,"summary":7082},"\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":7084,"title":7085,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7087,"title":7088,"module":7089,"summary":7090},"\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":7092,"title":7093,"module":7089,"summary":7094},"\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":7096,"title":7097,"module":7089,"summary":7098},"\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":7100,"title":7101,"module":7102,"summary":7103},"\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":7105,"title":7106,"module":7102,"summary":7107},"\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":7109,"title":7110,"module":7102,"summary":7111},"\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":7113,"title":7114,"module":7102,"summary":7115},"\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":7117,"title":7118,"module":7119,"summary":7120},"\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":7122,"title":7123,"module":7119,"summary":7124},"\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":7126,"title":7127,"module":7119,"summary":7128},"\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":7130,"title":7131,"module":7119,"summary":7132},"\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":7134,"title":7135,"module":7136,"summary":7137},"\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":7139,"title":7140,"module":7136,"summary":7141},"\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":7143,"title":7144,"module":7136,"summary":7145},"\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":7147,"title":7148,"module":7136,"summary":7149},"\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":7151,"title":7152,"module":7153,"summary":7154},"\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":7156,"title":7157,"module":7153,"summary":7158},"\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":7160,"title":7161,"module":7153,"summary":7162},"\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":7164,"title":7165,"module":7153,"summary":7166},"\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":7168,"title":7169,"module":7170,"summary":7171},"\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":7173,"title":7174,"module":7170,"summary":7175},"\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":7177,"title":7178,"module":7170,"summary":7179},"\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":7181,"title":7182,"module":7183,"summary":7184},"\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":7186,"title":7187,"module":7183,"summary":7188},"\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":7190,"title":7191,"module":7183,"summary":7192},"\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":7194,"title":7195,"module":7183,"summary":7196},"\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":7198,"title":5614,"module":7199,"summary":7200},"\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":7202,"title":7203,"module":7199,"summary":7204},"\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":7206,"title":7207,"module":7199,"summary":7208},"\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":7210,"title":7211,"module":7199,"summary":7212},"\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":7214,"title":7215,"module":7199,"summary":7216},"\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":7218,"title":7219,"module":7220,"summary":7221},"\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":7223,"title":7224,"module":7220,"summary":7225},"\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":7227,"title":7228,"module":7220,"summary":7229},"\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":7231,"title":7232,"module":7220,"summary":7233},"\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":7235,"title":7236,"module":7237,"summary":7238},"\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":7240,"title":7241,"module":7237,"summary":7242},"\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":7244,"title":7245,"module":7237,"summary":7246},"\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":7248,"title":7249,"module":7237,"summary":7250},"\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":7252,"title":7253,"module":7237,"summary":7254},"\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":7256,"title":7257,"module":7258,"summary":7259},"\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":7261,"title":7262,"module":7258,"summary":7263},"\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":7265,"title":4332,"module":7258,"summary":7266},"\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":7268,"title":7269,"module":7258,"summary":7270},"\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":7272,"title":7273,"module":7258,"summary":7274},"\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":7276,"title":7277,"module":7278,"summary":7279},"\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":7281,"title":7282,"module":7278,"summary":7283},"\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":7285,"title":7286,"module":7278,"summary":7287},"\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":7289,"title":7290,"module":7278,"summary":7291},"\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":7293,"title":7294,"module":7278,"summary":7295},"\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":7297,"title":7298,"module":7278,"summary":7299},"\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":7301,"title":7302,"module":7278,"summary":7303},"\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":7305,"title":7306,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7308,"title":7309,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":7311,"title":7312,"module":306,"summary":306},"\u002F","Study Notes","\u003Csvg style=\"width:100%;max-width:303.919px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 227.939 134.437\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-48.332-52.153H99.623V-72.07H-48.332Z\"\u002F>\u003Cg transform=\"translate(-22.218 -74.822)\">\u003Cpath d=\"M25.981 13.879Q25.981 13.395 26.383 13.100Q26.786 12.805 27.336 12.686Q27.887 12.566 28.379 12.566L28.379 12.277Q28.379 12.051 28.264 11.844Q28.149 11.637 27.952 11.518Q27.754 11.399 27.524 11.399Q27.098 11.399 26.813 11.504Q26.883 11.531 26.930 11.586Q26.977 11.641 27.002 11.711Q27.028 11.781 27.028 11.856Q27.028 11.961 26.977 12.053Q26.926 12.145 26.834 12.195Q26.743 12.246 26.637 12.246Q26.532 12.246 26.440 12.195Q26.348 12.145 26.297 12.053Q26.247 11.961 26.247 11.856Q26.247 11.438 26.635 11.291Q27.024 11.145 27.524 11.145Q27.856 11.145 28.209 11.275Q28.563 11.406 28.791 11.660Q29.020 11.914 29.020 12.262L29.020 14.063Q29.020 14.195 29.092 14.305Q29.165 14.414 29.293 14.414Q29.418 14.414 29.487 14.309Q29.555 14.203 29.555 14.063L29.555 13.551L29.836 13.551L29.836 14.063Q29.836 14.266 29.719 14.424Q29.602 14.582 29.420 14.666Q29.239 14.750 29.036 14.750Q28.805 14.750 28.653 14.578Q28.500 14.406 28.469 14.176Q28.309 14.457 28 14.623Q27.692 14.789 27.340 14.789Q26.829 14.789 26.405 14.566Q25.981 14.344 25.981 13.879M26.668 13.879Q26.668 14.164 26.895 14.350Q27.122 14.535 27.415 14.535Q27.661 14.535 27.885 14.418Q28.110 14.301 28.245 14.098Q28.379 13.895 28.379 13.641L28.379 12.809Q28.114 12.809 27.829 12.863Q27.543 12.918 27.272 13.047Q27 13.176 26.834 13.383Q26.668 13.590 26.668 13.879M32.012 16.262L30.157 16.262L30.157 15.969Q30.426 15.969 30.594 15.924Q30.762 15.879 30.762 15.703L30.762 11.879Q30.762 11.672 30.606 11.619Q30.450 11.566 30.157 11.566L30.157 11.270L31.379 11.184L31.379 11.649Q31.610 11.426 31.924 11.305Q32.239 11.184 32.579 11.184Q33.051 11.184 33.456 11.430Q33.860 11.676 34.092 12.092Q34.325 12.508 34.325 12.984Q34.325 13.359 34.176 13.688Q34.028 14.016 33.758 14.268Q33.489 14.520 33.145 14.654Q32.801 14.789 32.442 14.789Q32.153 14.789 31.881 14.668Q31.610 14.547 31.403 14.336L31.403 15.703Q31.403 15.879 31.571 15.924Q31.739 15.969 32.012 15.969L32.012 16.262M31.403 12.047L31.403 13.887Q31.555 14.176 31.817 14.356Q32.079 14.535 32.387 14.535Q32.672 14.535 32.895 14.397Q33.118 14.258 33.270 14.027Q33.422 13.797 33.500 13.525Q33.579 13.254 33.579 12.984Q33.579 12.652 33.454 12.295Q33.329 11.938 33.081 11.701Q32.832 11.465 32.485 11.465Q32.161 11.465 31.866 11.621Q31.571 11.777 31.403 12.047M36.731 16.262L34.875 16.262L34.875 15.969Q35.145 15.969 35.313 15.924Q35.481 15.879 35.481 15.703L35.481 11.879Q35.481 11.672 35.325 11.619Q35.168 11.566 34.875 11.566L34.875 11.270L36.098 11.184L36.098 11.649Q36.329 11.426 36.643 11.305Q36.957 11.184 37.297 11.184Q37.770 11.184 38.174 11.430Q38.579 11.676 38.811 12.092Q39.043 12.508 39.043 12.984Q39.043 13.359 38.895 13.688Q38.747 14.016 38.477 14.268Q38.207 14.520 37.864 14.654Q37.520 14.789 37.161 14.789Q36.872 14.789 36.600 14.668Q36.329 14.547 36.122 14.336L36.122 15.703Q36.122 15.879 36.290 15.924Q36.457 15.969 36.731 15.969L36.731 16.262M36.122 12.047L36.122 13.887Q36.274 14.176 36.536 14.356Q36.797 14.535 37.106 14.535Q37.391 14.535 37.614 14.397Q37.836 14.258 37.989 14.027Q38.141 13.797 38.219 13.525Q38.297 13.254 38.297 12.984Q38.297 12.652 38.172 12.295Q38.047 11.938 37.799 11.701Q37.551 11.465 37.204 11.465Q36.879 11.465 36.584 11.621Q36.290 11.777 36.122 12.047M41.481 14.711L39.649 14.711L39.649 14.414Q39.922 14.414 40.090 14.367Q40.258 14.320 40.258 14.152L40.258 9.992Q40.258 9.777 40.196 9.682Q40.133 9.586 40.014 9.565Q39.895 9.543 39.649 9.543L39.649 9.246L40.872 9.160L40.872 14.152Q40.872 14.320 41.040 14.367Q41.207 14.414 41.481 14.414L41.481 14.711M43.786 14.711L42.008 14.711L42.008 14.414Q42.282 14.414 42.450 14.367Q42.618 14.320 42.618 14.152L42.618 12.016Q42.618 11.801 42.561 11.705Q42.504 11.609 42.391 11.588Q42.278 11.566 42.032 11.566L42.032 11.270L43.231 11.184L43.231 14.152Q43.231 14.320 43.377 14.367Q43.524 14.414 43.786 14.414L43.786 14.711M42.344 9.789Q42.344 9.598 42.479 9.467Q42.614 9.336 42.809 9.336Q42.930 9.336 43.034 9.399Q43.137 9.461 43.200 9.565Q43.262 9.668 43.262 9.789Q43.262 9.984 43.131 10.119Q43 10.254 42.809 10.254Q42.610 10.254 42.477 10.121Q42.344 9.988 42.344 9.789M44.329 12.984Q44.329 12.488 44.579 12.063Q44.829 11.637 45.249 11.391Q45.668 11.145 46.168 11.145Q46.707 11.145 47.098 11.270Q47.489 11.395 47.489 11.809Q47.489 11.914 47.438 12.006Q47.387 12.098 47.295 12.149Q47.204 12.199 47.094 12.199Q46.989 12.199 46.897 12.149Q46.805 12.098 46.754 12.006Q46.704 11.914 46.704 11.809Q46.704 11.586 46.872 11.481Q46.649 11.422 46.176 11.422Q45.879 11.422 45.665 11.561Q45.450 11.699 45.319 11.930Q45.188 12.160 45.129 12.430Q45.071 12.699 45.071 12.984Q45.071 13.379 45.204 13.729Q45.336 14.078 45.608 14.295Q45.879 14.512 46.278 14.512Q46.653 14.512 46.928 14.295Q47.204 14.078 47.305 13.719Q47.321 13.656 47.383 13.656L47.489 13.656Q47.524 13.656 47.549 13.684Q47.575 13.711 47.575 13.750L47.575 13.774Q47.442 14.254 47.057 14.522Q46.672 14.789 46.168 14.789Q45.805 14.789 45.471 14.652Q45.137 14.516 44.877 14.266Q44.618 14.016 44.473 13.680Q44.329 13.344 44.329 12.984M48.161 13.879Q48.161 13.395 48.563 13.100Q48.965 12.805 49.516 12.686Q50.067 12.566 50.559 12.566L50.559 12.277Q50.559 12.051 50.444 11.844Q50.329 11.637 50.131 11.518Q49.934 11.399 49.704 11.399Q49.278 11.399 48.993 11.504Q49.063 11.531 49.110 11.586Q49.157 11.641 49.182 11.711Q49.207 11.781 49.207 11.856Q49.207 11.961 49.157 12.053Q49.106 12.145 49.014 12.195Q48.922 12.246 48.817 12.246Q48.711 12.246 48.620 12.195Q48.528 12.145 48.477 12.053Q48.426 11.961 48.426 11.856Q48.426 11.438 48.815 11.291Q49.204 11.145 49.704 11.145Q50.036 11.145 50.389 11.275Q50.743 11.406 50.971 11.660Q51.200 11.914 51.200 12.262L51.200 14.063Q51.200 14.195 51.272 14.305Q51.344 14.414 51.473 14.414Q51.598 14.414 51.666 14.309Q51.735 14.203 51.735 14.063L51.735 13.551L52.016 13.551L52.016 14.063Q52.016 14.266 51.899 14.424Q51.782 14.582 51.600 14.666Q51.418 14.750 51.215 14.750Q50.985 14.750 50.832 14.578Q50.680 14.406 50.649 14.176Q50.489 14.457 50.180 14.623Q49.872 14.789 49.520 14.789Q49.008 14.789 48.584 14.566Q48.161 14.344 48.161 13.879M48.848 13.879Q48.848 14.164 49.075 14.350Q49.301 14.535 49.594 14.535Q49.840 14.535 50.065 14.418Q50.290 14.301 50.424 14.098Q50.559 13.895 50.559 13.641L50.559 12.809Q50.293 12.809 50.008 12.863Q49.723 12.918 49.452 13.047Q49.180 13.176 49.014 13.383Q48.848 13.590 48.848 13.879M52.934 13.750L52.934 11.559L52.231 11.559L52.231 11.305Q52.586 11.305 52.829 11.072Q53.071 10.840 53.182 10.492Q53.293 10.145 53.293 9.789L53.575 9.789L53.575 11.262L54.750 11.262L54.750 11.559L53.575 11.559L53.575 13.734Q53.575 14.055 53.694 14.283Q53.813 14.512 54.094 14.512Q54.274 14.512 54.391 14.389Q54.508 14.266 54.561 14.086Q54.614 13.906 54.614 13.734L54.614 13.262L54.895 13.262L54.895 13.750Q54.895 14.004 54.790 14.244Q54.684 14.484 54.487 14.637Q54.290 14.789 54.032 14.789Q53.715 14.789 53.463 14.666Q53.211 14.543 53.073 14.309Q52.934 14.074 52.934 13.750M57.473 14.711L55.696 14.711L55.696 14.414Q55.969 14.414 56.137 14.367Q56.305 14.320 56.305 14.152L56.305 12.016Q56.305 11.801 56.249 11.705Q56.192 11.609 56.079 11.588Q55.965 11.566 55.719 11.566L55.719 11.270L56.918 11.184L56.918 14.152Q56.918 14.320 57.065 14.367Q57.211 14.414 57.473 14.414L57.473 14.711M56.032 9.789Q56.032 9.598 56.166 9.467Q56.301 9.336 56.497 9.336Q56.618 9.336 56.721 9.399Q56.825 9.461 56.887 9.565Q56.950 9.668 56.950 9.789Q56.950 9.984 56.819 10.119Q56.688 10.254 56.497 10.254Q56.297 10.254 56.165 10.121Q56.032 9.988 56.032 9.789M57.973 13.016Q57.973 12.512 58.229 12.080Q58.485 11.649 58.920 11.397Q59.356 11.145 59.856 11.145Q60.243 11.145 60.584 11.289Q60.926 11.434 61.188 11.695Q61.450 11.957 61.592 12.293Q61.735 12.629 61.735 13.016Q61.735 13.508 61.471 13.918Q61.207 14.328 60.778 14.559Q60.348 14.789 59.856 14.789Q59.364 14.789 58.930 14.557Q58.497 14.324 58.235 13.916Q57.973 13.508 57.973 13.016M59.856 14.512Q60.313 14.512 60.565 14.289Q60.817 14.066 60.905 13.715Q60.993 13.363 60.993 12.918Q60.993 12.488 60.899 12.150Q60.805 11.813 60.551 11.606Q60.297 11.399 59.856 11.399Q59.207 11.399 58.963 11.815Q58.719 12.231 58.719 12.918Q58.719 13.363 58.807 13.715Q58.895 14.066 59.147 14.289Q59.399 14.512 59.856 14.512M64.149 14.711L62.293 14.711L62.293 14.414Q62.567 14.414 62.735 14.367Q62.903 14.320 62.903 14.152L62.903 12.016Q62.903 11.801 62.840 11.705Q62.778 11.609 62.659 11.588Q62.540 11.566 62.293 11.566L62.293 11.270L63.485 11.184L63.485 11.918Q63.598 11.703 63.791 11.535Q63.985 11.367 64.223 11.275Q64.461 11.184 64.715 11.184Q65.883 11.184 65.883 12.262L65.883 14.152Q65.883 14.320 66.053 14.367Q66.223 14.414 66.493 14.414L66.493 14.711L64.637 14.711L64.637 14.414Q64.911 14.414 65.079 14.367Q65.247 14.320 65.247 14.152L65.247 12.277Q65.247 11.895 65.125 11.666Q65.004 11.438 64.653 11.438Q64.340 11.438 64.086 11.600Q63.832 11.762 63.686 12.031Q63.540 12.301 63.540 12.598L63.540 14.152Q63.540 14.320 63.709 14.367Q63.879 14.414 64.149 14.414L64.149 14.711M66.981 14.703L66.981 13.481Q66.981 13.453 67.012 13.422Q67.043 13.391 67.067 13.391L67.172 13.391Q67.243 13.391 67.258 13.453Q67.321 13.774 67.459 14.014Q67.598 14.254 67.831 14.395Q68.063 14.535 68.372 14.535Q68.610 14.535 68.819 14.475Q69.028 14.414 69.165 14.266Q69.301 14.117 69.301 13.871Q69.301 13.617 69.090 13.451Q68.879 13.285 68.610 13.231L67.989 13.117Q67.582 13.039 67.282 12.783Q66.981 12.527 66.981 12.152Q66.981 11.785 67.182 11.563Q67.383 11.340 67.707 11.242Q68.032 11.145 68.372 11.145Q68.836 11.145 69.133 11.352L69.356 11.168Q69.379 11.145 69.411 11.145L69.461 11.145Q69.493 11.145 69.520 11.172Q69.547 11.199 69.547 11.231L69.547 12.215Q69.547 12.246 69.522 12.275Q69.497 12.305 69.461 12.305L69.356 12.305Q69.321 12.305 69.293 12.277Q69.266 12.250 69.266 12.215Q69.266 11.816 69.014 11.596Q68.762 11.375 68.364 11.375Q68.008 11.375 67.725 11.498Q67.442 11.621 67.442 11.926Q67.442 12.145 67.643 12.277Q67.844 12.410 68.090 12.453L68.715 12.566Q69.145 12.656 69.454 12.953Q69.762 13.250 69.762 13.664Q69.762 14.234 69.364 14.512Q68.965 14.789 68.372 14.789Q67.821 14.789 67.469 14.453L67.172 14.766Q67.149 14.789 67.114 14.789L67.067 14.789Q67.043 14.789 67.012 14.758Q66.981 14.727 66.981 14.703\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-48.332-26.546H99.623v-19.917H-48.332Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-44.562 -49.215)\">\u003Cpath d=\"M25.926 12.984Q25.926 12.488 26.176 12.063Q26.426 11.637 26.846 11.391Q27.266 11.145 27.766 11.145Q28.305 11.145 28.696 11.270Q29.086 11.395 29.086 11.809Q29.086 11.914 29.036 12.006Q28.985 12.098 28.893 12.149Q28.801 12.199 28.692 12.199Q28.586 12.199 28.495 12.149Q28.403 12.098 28.352 12.006Q28.301 11.914 28.301 11.809Q28.301 11.586 28.469 11.481Q28.247 11.422 27.774 11.422Q27.477 11.422 27.262 11.561Q27.047 11.699 26.916 11.930Q26.786 12.160 26.727 12.430Q26.668 12.699 26.668 12.984Q26.668 13.379 26.801 13.729Q26.934 14.078 27.206 14.295Q27.477 14.512 27.875 14.512Q28.250 14.512 28.526 14.295Q28.801 14.078 28.903 13.719Q28.918 13.656 28.981 13.656L29.086 13.656Q29.122 13.656 29.147 13.684Q29.172 13.711 29.172 13.750L29.172 13.774Q29.040 14.254 28.655 14.522Q28.270 14.789 27.766 14.789Q27.403 14.789 27.069 14.652Q26.735 14.516 26.475 14.266Q26.215 14.016 26.071 13.680Q25.926 13.344 25.926 12.984M29.661 13.016Q29.661 12.512 29.916 12.080Q30.172 11.649 30.608 11.397Q31.043 11.145 31.543 11.145Q31.930 11.145 32.272 11.289Q32.614 11.434 32.875 11.695Q33.137 11.957 33.280 12.293Q33.422 12.629 33.422 13.016Q33.422 13.508 33.159 13.918Q32.895 14.328 32.465 14.559Q32.036 14.789 31.543 14.789Q31.051 14.789 30.618 14.557Q30.184 14.324 29.922 13.916Q29.661 13.508 29.661 13.016M31.543 14.512Q32 14.512 32.252 14.289Q32.504 14.066 32.592 13.715Q32.680 13.363 32.680 12.918Q32.680 12.488 32.586 12.150Q32.493 11.813 32.239 11.606Q31.985 11.399 31.543 11.399Q30.895 11.399 30.651 11.815Q30.407 12.231 30.407 12.918Q30.407 13.363 30.495 13.715Q30.582 14.066 30.834 14.289Q31.086 14.512 31.543 14.512M35.836 14.711L33.981 14.711L33.981 14.414Q34.254 14.414 34.422 14.367Q34.590 14.320 34.590 14.152L34.590 12.016Q34.590 11.801 34.528 11.705Q34.465 11.609 34.346 11.588Q34.227 11.566 33.981 11.566L33.981 11.270L35.172 11.184L35.172 11.918Q35.286 11.703 35.479 11.535Q35.672 11.367 35.911 11.275Q36.149 11.184 36.403 11.184Q37.364 11.184 37.540 11.895Q37.723 11.566 38.051 11.375Q38.379 11.184 38.758 11.184Q39.934 11.184 39.934 12.262L39.934 14.152Q39.934 14.320 40.102 14.367Q40.270 14.414 40.540 14.414L40.540 14.711L38.684 14.711L38.684 14.414Q38.957 14.414 39.125 14.369Q39.293 14.324 39.293 14.152L39.293 12.277Q39.293 11.891 39.168 11.664Q39.043 11.438 38.692 11.438Q38.387 11.438 38.131 11.600Q37.875 11.762 37.727 12.031Q37.579 12.301 37.579 12.598L37.579 14.152Q37.579 14.320 37.749 14.367Q37.918 14.414 38.188 14.414L38.188 14.711L36.332 14.711L36.332 14.414Q36.606 14.414 36.774 14.367Q36.942 14.320 36.942 14.152L36.942 12.277Q36.942 11.891 36.817 11.664Q36.692 11.438 36.340 11.438Q36.036 11.438 35.780 11.600Q35.524 11.762 35.375 12.031Q35.227 12.301 35.227 12.598L35.227 14.152Q35.227 14.320 35.397 14.367Q35.567 14.414 35.836 14.414L35.836 14.711M42.868 16.262L41.012 16.262L41.012 15.969Q41.282 15.969 41.450 15.924Q41.618 15.879 41.618 15.703L41.618 11.879Q41.618 11.672 41.461 11.619Q41.305 11.566 41.012 11.566L41.012 11.270L42.235 11.184L42.235 11.649Q42.465 11.426 42.780 11.305Q43.094 11.184 43.434 11.184Q43.907 11.184 44.311 11.430Q44.715 11.676 44.948 12.092Q45.180 12.508 45.180 12.984Q45.180 13.359 45.032 13.688Q44.883 14.016 44.614 14.268Q44.344 14.520 44 14.654Q43.657 14.789 43.297 14.789Q43.008 14.789 42.737 14.668Q42.465 14.547 42.258 14.336L42.258 15.703Q42.258 15.879 42.426 15.924Q42.594 15.969 42.868 15.969L42.868 16.262M42.258 12.047L42.258 13.887Q42.411 14.176 42.672 14.356Q42.934 14.535 43.243 14.535Q43.528 14.535 43.750 14.397Q43.973 14.258 44.125 14.027Q44.278 13.797 44.356 13.525Q44.434 13.254 44.434 12.984Q44.434 12.652 44.309 12.295Q44.184 11.938 43.936 11.701Q43.688 11.465 43.340 11.465Q43.016 11.465 42.721 11.621Q42.426 11.777 42.258 12.047M47.563 14.711L45.786 14.711L45.786 14.414Q46.059 14.414 46.227 14.367Q46.395 14.320 46.395 14.152L46.395 12.016Q46.395 11.801 46.338 11.705Q46.282 11.609 46.168 11.588Q46.055 11.566 45.809 11.566L45.809 11.270L47.008 11.184L47.008 14.152Q47.008 14.320 47.155 14.367Q47.301 14.414 47.563 14.414L47.563 14.711M46.122 9.789Q46.122 9.598 46.256 9.467Q46.391 9.336 46.586 9.336Q46.707 9.336 46.811 9.399Q46.915 9.461 46.977 9.565Q47.040 9.668 47.040 9.789Q47.040 9.984 46.909 10.119Q46.778 10.254 46.586 10.254Q46.387 10.254 46.254 10.121Q46.122 9.988 46.122 9.789M49.977 14.711L48.145 14.711L48.145 14.414Q48.418 14.414 48.586 14.367Q48.754 14.320 48.754 14.152L48.754 9.992Q48.754 9.777 48.692 9.682Q48.629 9.586 48.510 9.565Q48.391 9.543 48.145 9.543L48.145 9.246L49.368 9.160L49.368 14.152Q49.368 14.320 49.536 14.367Q49.704 14.414 49.977 14.414L49.977 14.711M50.422 12.957Q50.422 12.477 50.655 12.061Q50.887 11.645 51.297 11.395Q51.707 11.145 52.184 11.145Q52.915 11.145 53.313 11.586Q53.711 12.027 53.711 12.758Q53.711 12.863 53.618 12.887L51.168 12.887L51.168 12.957Q51.168 13.367 51.290 13.723Q51.411 14.078 51.682 14.295Q51.954 14.512 52.383 14.512Q52.747 14.512 53.043 14.283Q53.340 14.055 53.442 13.703Q53.450 13.656 53.536 13.641L53.618 13.641Q53.711 13.668 53.711 13.750Q53.711 13.758 53.704 13.789Q53.641 14.016 53.502 14.199Q53.364 14.383 53.172 14.516Q52.981 14.649 52.762 14.719Q52.543 14.789 52.305 14.789Q51.934 14.789 51.596 14.652Q51.258 14.516 50.991 14.264Q50.723 14.012 50.573 13.672Q50.422 13.332 50.422 12.957M51.176 12.649L53.137 12.649Q53.137 12.344 53.036 12.053Q52.934 11.762 52.717 11.580Q52.500 11.399 52.184 11.399Q51.883 11.399 51.653 11.586Q51.422 11.774 51.299 12.065Q51.176 12.356 51.176 12.649M56.207 14.711L54.227 14.711L54.227 14.414Q54.497 14.414 54.665 14.369Q54.832 14.324 54.832 14.152L54.832 12.016Q54.832 11.801 54.770 11.705Q54.707 11.609 54.590 11.588Q54.473 11.566 54.227 11.566L54.227 11.270L55.395 11.184L55.395 11.969Q55.473 11.758 55.625 11.572Q55.778 11.387 55.977 11.285Q56.176 11.184 56.403 11.184Q56.649 11.184 56.840 11.328Q57.032 11.473 57.032 11.703Q57.032 11.859 56.926 11.969Q56.821 12.078 56.665 12.078Q56.508 12.078 56.399 11.969Q56.290 11.859 56.290 11.703Q56.290 11.543 56.395 11.438Q56.071 11.438 55.856 11.666Q55.641 11.895 55.545 12.234Q55.450 12.574 55.450 12.879L55.450 14.152Q55.450 14.320 55.676 14.367Q55.903 14.414 56.207 14.414L56.207 14.711M57.555 14.703L57.555 13.481Q57.555 13.453 57.586 13.422Q57.618 13.391 57.641 13.391L57.747 13.391Q57.817 13.391 57.832 13.453Q57.895 13.774 58.034 14.014Q58.172 14.254 58.405 14.395Q58.637 14.535 58.946 14.535Q59.184 14.535 59.393 14.475Q59.602 14.414 59.739 14.266Q59.875 14.117 59.875 13.871Q59.875 13.617 59.665 13.451Q59.454 13.285 59.184 13.231L58.563 13.117Q58.157 13.039 57.856 12.783Q57.555 12.527 57.555 12.152Q57.555 11.785 57.756 11.563Q57.957 11.340 58.282 11.242Q58.606 11.145 58.946 11.145Q59.411 11.145 59.707 11.352L59.930 11.168Q59.954 11.145 59.985 11.145L60.036 11.145Q60.067 11.145 60.094 11.172Q60.122 11.199 60.122 11.231L60.122 12.215Q60.122 12.246 60.096 12.275Q60.071 12.305 60.036 12.305L59.930 12.305Q59.895 12.305 59.868 12.277Q59.840 12.250 59.840 12.215Q59.840 11.816 59.588 11.596Q59.336 11.375 58.938 11.375Q58.582 11.375 58.299 11.498Q58.016 11.621 58.016 11.926Q58.016 12.145 58.217 12.277Q58.418 12.410 58.665 12.453L59.290 12.566Q59.719 12.656 60.028 12.953Q60.336 13.250 60.336 13.664Q60.336 14.234 59.938 14.512Q59.540 14.789 58.946 14.789Q58.395 14.789 58.043 14.453L57.747 14.766Q57.723 14.789 57.688 14.789L57.641 14.789Q57.618 14.789 57.586 14.758Q57.555 14.727 57.555 14.703M61.450 16.117Q61.450 16.094 61.481 16.047Q61.774 15.785 61.940 15.418Q62.106 15.051 62.106 14.664L62.106 14.606Q61.977 14.711 61.809 14.711Q61.618 14.711 61.481 14.578Q61.344 14.445 61.344 14.246Q61.344 14.055 61.481 13.922Q61.618 13.789 61.809 13.789Q62.110 13.789 62.235 14.059Q62.360 14.328 62.360 14.664Q62.360 15.113 62.178 15.527Q61.997 15.941 61.657 16.238Q61.633 16.262 61.594 16.262Q61.547 16.262 61.499 16.217Q61.450 16.172 61.450 16.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.562 -49.215)\">\u003Cpath d=\"M68.085 14.711L66.105 14.711L66.105 14.414Q66.374 14.414 66.542 14.369Q66.710 14.324 66.710 14.152L66.710 12.016Q66.710 11.801 66.648 11.705Q66.585 11.609 66.468 11.588Q66.351 11.566 66.105 11.566L66.105 11.270L67.273 11.184L67.273 11.969Q67.351 11.758 67.503 11.572Q67.655 11.387 67.855 11.285Q68.054 11.184 68.280 11.184Q68.526 11.184 68.718 11.328Q68.909 11.473 68.909 11.703Q68.909 11.859 68.804 11.969Q68.698 12.078 68.542 12.078Q68.386 12.078 68.276 11.969Q68.167 11.859 68.167 11.703Q68.167 11.543 68.273 11.438Q67.948 11.438 67.734 11.666Q67.519 11.895 67.423 12.234Q67.327 12.574 67.327 12.879L67.327 14.152Q67.327 14.320 67.554 14.367Q67.780 14.414 68.085 14.414L68.085 14.711M70.073 13.758L70.073 12.016Q70.073 11.801 70.011 11.705Q69.948 11.609 69.829 11.588Q69.710 11.566 69.464 11.566L69.464 11.270L70.710 11.184L70.710 13.734L70.710 13.758Q70.710 14.070 70.765 14.232Q70.819 14.395 70.970 14.465Q71.120 14.535 71.441 14.535Q71.870 14.535 72.144 14.197Q72.417 13.859 72.417 13.414L72.417 12.016Q72.417 11.801 72.355 11.705Q72.292 11.609 72.173 11.588Q72.054 11.566 71.808 11.566L71.808 11.270L73.054 11.184L73.054 13.969Q73.054 14.180 73.116 14.275Q73.179 14.371 73.298 14.393Q73.417 14.414 73.663 14.414L73.663 14.711L72.441 14.789L72.441 14.168Q72.273 14.457 71.991 14.623Q71.710 14.789 71.390 14.789Q70.073 14.789 70.073 13.758M76.038 14.711L74.183 14.711L74.183 14.414Q74.456 14.414 74.624 14.367Q74.792 14.320 74.792 14.152L74.792 12.016Q74.792 11.801 74.730 11.705Q74.667 11.609 74.548 11.588Q74.429 11.566 74.183 11.566L74.183 11.270L75.374 11.184L75.374 11.918Q75.487 11.703 75.681 11.535Q75.874 11.367 76.112 11.275Q76.351 11.184 76.605 11.184Q77.773 11.184 77.773 12.262L77.773 14.152Q77.773 14.320 77.943 14.367Q78.112 14.414 78.382 14.414L78.382 14.711L76.526 14.711L76.526 14.414Q76.800 14.414 76.968 14.367Q77.136 14.320 77.136 14.152L77.136 12.277Q77.136 11.895 77.015 11.666Q76.894 11.438 76.542 11.438Q76.230 11.438 75.976 11.600Q75.722 11.762 75.575 12.031Q75.429 12.301 75.429 12.598L75.429 14.152Q75.429 14.320 75.599 14.367Q75.769 14.414 76.038 14.414\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.562 -49.215)\">\u003Cpath d=\"M79.223 13.750L79.223 11.559L78.520 11.559L78.520 11.305Q78.876 11.305 79.118 11.072Q79.360 10.840 79.471 10.492Q79.583 10.145 79.583 9.789L79.864 9.789L79.864 11.262L81.040 11.262L81.040 11.559L79.864 11.559L79.864 13.734Q79.864 14.055 79.983 14.283Q80.102 14.512 80.383 14.512Q80.563 14.512 80.680 14.389Q80.797 14.266 80.850 14.086Q80.903 13.906 80.903 13.734L80.903 13.262L81.184 13.262L81.184 13.750Q81.184 14.004 81.079 14.244Q80.973 14.484 80.776 14.637Q80.579 14.789 80.321 14.789Q80.005 14.789 79.753 14.666Q79.501 14.543 79.362 14.309Q79.223 14.074 79.223 13.750M83.762 14.711L81.985 14.711L81.985 14.414Q82.258 14.414 82.426 14.367Q82.594 14.320 82.594 14.152L82.594 12.016Q82.594 11.801 82.538 11.705Q82.481 11.609 82.368 11.588Q82.255 11.566 82.008 11.566L82.008 11.270L83.208 11.184L83.208 14.152Q83.208 14.320 83.354 14.367Q83.501 14.414 83.762 14.414L83.762 14.711M82.321 9.789Q82.321 9.598 82.456 9.467Q82.590 9.336 82.786 9.336Q82.907 9.336 83.010 9.399Q83.114 9.461 83.176 9.565Q83.239 9.668 83.239 9.789Q83.239 9.984 83.108 10.119Q82.977 10.254 82.786 10.254Q82.587 10.254 82.454 10.121Q82.321 9.988 82.321 9.789M86.192 14.711L84.337 14.711L84.337 14.414Q84.610 14.414 84.778 14.367Q84.946 14.320 84.946 14.152L84.946 12.016Q84.946 11.801 84.883 11.705Q84.821 11.609 84.702 11.588Q84.583 11.566 84.337 11.566L84.337 11.270L85.528 11.184L85.528 11.918Q85.641 11.703 85.835 11.535Q86.028 11.367 86.266 11.275Q86.505 11.184 86.758 11.184Q87.719 11.184 87.895 11.895Q88.079 11.566 88.407 11.375Q88.735 11.184 89.114 11.184Q90.290 11.184 90.290 12.262L90.290 14.152Q90.290 14.320 90.458 14.367Q90.626 14.414 90.895 14.414L90.895 14.711L89.040 14.711L89.040 14.414Q89.313 14.414 89.481 14.369Q89.649 14.324 89.649 14.152L89.649 12.277Q89.649 11.891 89.524 11.664Q89.399 11.438 89.047 11.438Q88.743 11.438 88.487 11.600Q88.231 11.762 88.083 12.031Q87.934 12.301 87.934 12.598L87.934 14.152Q87.934 14.320 88.104 14.367Q88.274 14.414 88.544 14.414L88.544 14.711L86.688 14.711L86.688 14.414Q86.962 14.414 87.130 14.367Q87.297 14.320 87.297 14.152L87.297 12.277Q87.297 11.891 87.172 11.664Q87.047 11.438 86.696 11.438Q86.391 11.438 86.135 11.600Q85.880 11.762 85.731 12.031Q85.583 12.301 85.583 12.598L85.583 14.152Q85.583 14.320 85.753 14.367Q85.922 14.414 86.192 14.414L86.192 14.711M91.340 12.957Q91.340 12.477 91.573 12.061Q91.805 11.645 92.215 11.395Q92.626 11.145 93.102 11.145Q93.833 11.145 94.231 11.586Q94.630 12.027 94.630 12.758Q94.630 12.863 94.536 12.887L92.087 12.887L92.087 12.957Q92.087 13.367 92.208 13.723Q92.329 14.078 92.600 14.295Q92.872 14.512 93.301 14.512Q93.665 14.512 93.962 14.283Q94.258 14.055 94.360 13.703Q94.368 13.656 94.454 13.641L94.536 13.641Q94.630 13.668 94.630 13.750Q94.630 13.758 94.622 13.789Q94.559 14.016 94.421 14.199Q94.282 14.383 94.090 14.516Q93.899 14.649 93.680 14.719Q93.462 14.789 93.223 14.789Q92.852 14.789 92.514 14.652Q92.176 14.516 91.909 14.264Q91.641 14.012 91.491 13.672Q91.340 13.332 91.340 12.957M92.094 12.649L94.055 12.649Q94.055 12.344 93.954 12.053Q93.852 11.762 93.635 11.580Q93.419 11.399 93.102 11.399Q92.801 11.399 92.571 11.586Q92.340 11.774 92.217 12.065Q92.094 12.356 92.094 12.649M95.161 14.703L95.161 13.481Q95.161 13.453 95.192 13.422Q95.223 13.391 95.247 13.391L95.352 13.391Q95.422 13.391 95.438 13.453Q95.501 13.774 95.639 14.014Q95.778 14.254 96.010 14.395Q96.243 14.535 96.551 14.535Q96.790 14.535 96.999 14.475Q97.208 14.414 97.344 14.266Q97.481 14.117 97.481 13.871Q97.481 13.617 97.270 13.451Q97.059 13.285 96.790 13.231L96.169 13.117Q95.762 13.039 95.462 12.783Q95.161 12.527 95.161 12.152Q95.161 11.785 95.362 11.563Q95.563 11.340 95.887 11.242Q96.212 11.145 96.551 11.145Q97.016 11.145 97.313 11.352L97.536 11.168Q97.559 11.145 97.590 11.145L97.641 11.145Q97.672 11.145 97.700 11.172Q97.727 11.199 97.727 11.231L97.727 12.215Q97.727 12.246 97.702 12.275Q97.676 12.305 97.641 12.305L97.536 12.305Q97.501 12.305 97.473 12.277Q97.446 12.250 97.446 12.215Q97.446 11.816 97.194 11.596Q96.942 11.375 96.544 11.375Q96.188 11.375 95.905 11.498Q95.622 11.621 95.622 11.926Q95.622 12.145 95.823 12.277Q96.024 12.410 96.270 12.453L96.895 12.566Q97.325 12.656 97.633 12.953Q97.942 13.250 97.942 13.664Q97.942 14.234 97.544 14.512Q97.145 14.789 96.551 14.789Q96.001 14.789 95.649 14.453L95.352 14.766Q95.329 14.789 95.294 14.789L95.247 14.789Q95.223 14.789 95.192 14.758Q95.161 14.727 95.161 14.703M99.055 16.117Q99.055 16.094 99.087 16.047Q99.380 15.785 99.546 15.418Q99.712 15.051 99.712 14.664L99.712 14.606Q99.583 14.711 99.415 14.711Q99.223 14.711 99.087 14.578Q98.950 14.445 98.950 14.246Q98.950 14.055 99.087 13.922Q99.223 13.789 99.415 13.789Q99.715 13.789 99.840 14.059Q99.965 14.328 99.965 14.664Q99.965 15.113 99.784 15.527Q99.602 15.941 99.262 16.238Q99.239 16.262 99.200 16.262Q99.153 16.262 99.104 16.217Q99.055 16.172 99.055 16.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.562 -49.215)\">\u003Cpath d=\"M106.740 14.879Q106.158 14.879 105.640 14.652Q105.123 14.426 104.734 14.027Q104.345 13.629 104.126 13.104Q103.908 12.578 103.908 12.008Q103.908 11.238 104.283 10.561Q104.658 9.883 105.308 9.481Q105.958 9.078 106.740 9.078Q107.513 9.078 108.164 9.481Q108.814 9.883 109.189 10.561Q109.564 11.238 109.564 12.008Q109.564 12.578 109.343 13.109Q109.123 13.641 108.738 14.033Q108.353 14.426 107.835 14.652Q107.318 14.879 106.740 14.879M105.298 13.809Q105.462 14.039 105.693 14.215Q105.923 14.391 106.191 14.486Q106.458 14.582 106.740 14.582Q107.158 14.582 107.539 14.371Q107.919 14.160 108.169 13.809Q108.701 13.090 108.701 11.871Q108.701 11.242 108.486 10.664Q108.271 10.086 107.830 9.723Q107.388 9.359 106.740 9.359Q106.087 9.359 105.644 9.723Q105.201 10.086 104.986 10.664Q104.771 11.242 104.771 11.871Q104.771 13.090 105.298 13.809M110.517 14.789L110.517 12.984Q110.517 12.957 110.548 12.926Q110.580 12.895 110.603 12.895L110.708 12.895Q110.740 12.895 110.769 12.924Q110.798 12.953 110.798 12.984Q110.798 13.766 111.314 14.174Q111.830 14.582 112.638 14.582Q112.935 14.582 113.191 14.432Q113.447 14.281 113.597 14.025Q113.748 13.770 113.748 13.473Q113.748 13.074 113.501 12.770Q113.255 12.465 112.884 12.383L111.763 12.125Q111.423 12.051 111.136 11.830Q110.849 11.609 110.683 11.291Q110.517 10.973 110.517 10.621Q110.517 10.191 110.748 9.836Q110.978 9.481 111.359 9.279Q111.740 9.078 112.165 9.078Q112.415 9.078 112.662 9.137Q112.908 9.195 113.126 9.318Q113.345 9.441 113.509 9.621L113.837 9.125Q113.869 9.078 113.908 9.078L113.955 9.078Q113.982 9.078 114.013 9.109Q114.044 9.141 114.044 9.168L114.044 10.977Q114.044 11 114.013 11.031Q113.982 11.063 113.955 11.063L113.853 11.063Q113.822 11.063 113.792 11.033Q113.763 11.004 113.763 10.977Q113.763 10.844 113.720 10.658Q113.677 10.473 113.613 10.318Q113.548 10.164 113.449 10.006Q113.349 9.848 113.259 9.758Q112.830 9.352 112.165 9.352Q111.888 9.352 111.628 9.484Q111.369 9.617 111.210 9.852Q111.052 10.086 111.052 10.367Q111.052 10.723 111.292 10.994Q111.533 11.266 111.900 11.352L113.013 11.606Q113.290 11.672 113.523 11.826Q113.755 11.981 113.925 12.199Q114.095 12.418 114.189 12.676Q114.283 12.934 114.283 13.223Q114.283 13.551 114.158 13.854Q114.033 14.156 113.798 14.393Q113.564 14.629 113.271 14.754Q112.978 14.879 112.638 14.879Q111.623 14.879 111.052 14.336L110.724 14.832Q110.693 14.879 110.654 14.879L110.603 14.879Q110.580 14.879 110.548 14.848Q110.517 14.816 110.517 14.789\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-56.868 9.02h165.026v-22.762H-56.868Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmbx8\" font-size=\"8\">\u003Cg transform=\"translate(-58.392 -14.294)\">\u003Cpath d=\"M28.059 14.711L26.102 14.711L26.102 14.262L26.629 14.262L26.629 11.840Q26.629 11.688 26.493 11.650Q26.356 11.613 26.125 11.613L26.125 11.168L27.590 11.102L27.590 14.262L28.059 14.262L28.059 14.711M26.348 9.809Q26.348 9.531 26.541 9.342Q26.735 9.152 27.004 9.152Q27.184 9.152 27.334 9.242Q27.485 9.332 27.573 9.479Q27.661 9.625 27.661 9.809Q27.661 10.078 27.467 10.272Q27.274 10.465 27.004 10.465Q26.731 10.465 26.540 10.274Q26.348 10.082 26.348 9.809M30.860 14.711L28.797 14.711L28.797 14.262L29.325 14.262L29.325 11.840Q29.325 11.688 29.178 11.650Q29.032 11.613 28.797 11.613L28.797 11.168L30.227 11.102L30.227 11.895Q30.375 11.649 30.610 11.469Q30.844 11.289 31.122 11.195Q31.399 11.102 31.692 11.102Q32.133 11.102 32.430 11.209Q32.727 11.316 32.889 11.576Q33.051 11.836 33.051 12.270L33.051 14.262L33.579 14.262L33.579 14.711L31.516 14.711L31.516 14.262L32.043 14.262L32.043 12.297Q32.043 11.922 31.965 11.697Q31.887 11.473 31.594 11.473Q31.082 11.473 30.707 11.807Q30.332 12.141 30.332 12.649L30.332 14.262L30.860 14.262L30.860 14.711M34.372 14.766L34.262 14.766Q34.133 14.734 34.133 14.633L34.133 13.590Q34.133 13.547 34.170 13.506Q34.207 13.465 34.262 13.465L34.485 13.465Q34.586 13.492 34.614 13.566Q34.731 13.981 35.016 14.190Q35.301 14.399 35.735 14.399Q36.122 14.399 36.403 14.289Q36.684 14.180 36.684 13.848Q36.684 13.613 36.481 13.490Q36.278 13.367 35.989 13.313L35.364 13.215Q35.145 13.172 34.928 13.090Q34.711 13.008 34.528 12.879Q34.344 12.750 34.239 12.572Q34.133 12.395 34.133 12.160Q34.133 11.738 34.368 11.496Q34.602 11.254 34.957 11.162Q35.313 11.070 35.735 11.070Q36.243 11.070 36.547 11.207L36.821 11.078Q36.829 11.074 36.838 11.072Q36.848 11.070 36.860 11.070L36.965 11.070Q37.094 11.102 37.094 11.199L37.094 12.008Q37.094 12.059 37.051 12.102Q37.008 12.145 36.965 12.145L36.743 12.145Q36.614 12.106 36.614 12.008Q36.614 11.777 36.485 11.641Q36.356 11.504 36.159 11.451Q35.961 11.399 35.727 11.399Q34.782 11.399 34.782 11.856Q34.782 12.172 35.430 12.285L36.063 12.391Q36.579 12.484 36.956 12.781Q37.332 13.078 37.332 13.566Q37.332 14.223 36.881 14.494Q36.430 14.766 35.735 14.766Q35.176 14.766 34.790 14.535L34.430 14.750Q34.399 14.766 34.372 14.766M38.524 13.789L38.524 11.606L37.852 11.606L37.852 11.238Q38.239 11.238 38.512 10.992Q38.786 10.746 38.918 10.371Q39.051 9.996 39.051 9.633L39.532 9.633L39.532 11.160L40.766 11.160L40.766 11.606L39.532 11.606L39.532 13.774Q39.532 14.359 39.989 14.359Q40.200 14.359 40.323 14.176Q40.446 13.992 40.446 13.774L40.446 13.320L40.926 13.320L40.926 13.789Q40.926 14.063 40.780 14.285Q40.633 14.508 40.393 14.637Q40.153 14.766 39.883 14.766Q39.309 14.766 38.916 14.543Q38.524 14.320 38.524 13.789M43.973 14.711L41.829 14.711L41.829 14.262L42.356 14.262L42.356 11.840Q42.356 11.688 42.209 11.650Q42.063 11.613 41.829 11.613L41.829 11.168L43.211 11.102L43.211 11.910Q43.368 11.555 43.647 11.328Q43.926 11.102 44.293 11.102Q44.657 11.102 44.952 11.289Q45.247 11.477 45.247 11.816Q45.247 11.961 45.174 12.088Q45.102 12.215 44.975 12.287Q44.848 12.359 44.700 12.359Q44.555 12.359 44.428 12.287Q44.301 12.215 44.229 12.088Q44.157 11.961 44.157 11.816Q44.157 11.602 44.270 11.473Q43.938 11.473 43.721 11.719Q43.504 11.965 43.411 12.324Q43.317 12.684 43.317 13L43.317 14.262L43.973 14.262L43.973 14.711M46.485 13.789L46.485 11.840Q46.485 11.688 46.338 11.650Q46.192 11.613 45.957 11.613L45.957 11.168L47.493 11.102L47.493 13.774L47.493 13.789Q47.493 14.024 47.526 14.141Q47.559 14.258 47.633 14.313Q47.707 14.367 47.827 14.383Q47.946 14.399 48.204 14.399Q48.461 14.399 48.692 14.277Q48.922 14.156 49.063 13.941Q49.204 13.727 49.204 13.465L49.204 11.840Q49.204 11.688 49.057 11.650Q48.911 11.613 48.676 11.613L48.676 11.168L50.211 11.102L50.211 14.039Q50.211 14.188 50.358 14.225Q50.504 14.262 50.739 14.262L50.739 14.711L49.250 14.766L49.250 14.231Q49.059 14.481 48.754 14.623Q48.450 14.766 48.118 14.766Q47.676 14.766 47.327 14.703Q46.977 14.641 46.731 14.424Q46.485 14.207 46.485 13.789M51.293 12.934Q51.293 12.488 51.459 12.139Q51.625 11.789 51.922 11.549Q52.219 11.309 52.598 11.190Q52.977 11.070 53.415 11.070Q54.008 11.070 54.467 11.236Q54.926 11.402 54.926 11.887Q54.926 12.121 54.768 12.279Q54.610 12.438 54.372 12.438Q54.137 12.438 53.975 12.275Q53.813 12.113 53.813 11.887Q53.813 11.652 53.950 11.512Q53.727 11.481 53.415 11.481Q53.004 11.481 52.784 11.684Q52.563 11.887 52.485 12.205Q52.407 12.524 52.407 12.926Q52.407 13.582 52.686 13.971Q52.965 14.359 53.606 14.359Q54.329 14.359 54.575 13.727Q54.606 13.649 54.684 13.649L54.911 13.649Q55.036 13.676 55.036 13.781L55.036 13.824Q54.907 14.160 54.666 14.369Q54.426 14.578 54.104 14.672Q53.782 14.766 53.415 14.766Q52.836 14.766 52.354 14.557Q51.872 14.348 51.582 13.934Q51.293 13.520 51.293 12.934M56.172 13.789L56.172 11.606L55.500 11.606L55.500 11.238Q55.887 11.238 56.161 10.992Q56.434 10.746 56.567 10.371Q56.700 9.996 56.700 9.633L57.180 9.633L57.180 11.160L58.415 11.160L58.415 11.606L57.180 11.606L57.180 13.774Q57.180 14.359 57.637 14.359Q57.848 14.359 57.971 14.176Q58.094 13.992 58.094 13.774L58.094 13.320L58.575 13.320L58.575 13.789Q58.575 14.063 58.428 14.285Q58.282 14.508 58.041 14.637Q57.801 14.766 57.532 14.766Q56.957 14.766 56.565 14.543Q56.172 14.320 56.172 13.789M61.540 14.711L59.582 14.711L59.582 14.262L60.110 14.262L60.110 11.840Q60.110 11.688 59.973 11.650Q59.836 11.613 59.606 11.613L59.606 11.168L61.071 11.102L61.071 14.262L61.540 14.262L61.540 14.711M59.829 9.809Q59.829 9.531 60.022 9.342Q60.215 9.152 60.485 9.152Q60.665 9.152 60.815 9.242Q60.965 9.332 61.053 9.479Q61.141 9.625 61.141 9.809Q61.141 10.078 60.948 10.272Q60.754 10.465 60.485 10.465Q60.211 10.465 60.020 10.274Q59.829 10.082 59.829 9.809M62.118 12.977Q62.118 12.512 62.288 12.152Q62.457 11.793 62.760 11.551Q63.063 11.309 63.456 11.190Q63.848 11.070 64.293 11.070Q64.739 11.070 65.129 11.188Q65.520 11.305 65.827 11.549Q66.133 11.793 66.301 12.152Q66.469 12.512 66.469 12.977Q66.469 13.426 66.291 13.764Q66.114 14.102 65.801 14.326Q65.489 14.551 65.104 14.658Q64.719 14.766 64.293 14.766Q63.872 14.766 63.483 14.658Q63.094 14.551 62.784 14.326Q62.473 14.102 62.295 13.762Q62.118 13.422 62.118 12.977M64.293 14.359Q64.774 14.359 65.006 14.168Q65.239 13.977 65.297 13.674Q65.356 13.371 65.356 12.863Q65.356 12.133 65.163 11.785Q64.969 11.438 64.293 11.438Q63.938 11.438 63.721 11.541Q63.504 11.645 63.399 11.832Q63.293 12.020 63.260 12.260Q63.227 12.500 63.227 12.863Q63.227 13.371 63.288 13.676Q63.348 13.981 63.582 14.170Q63.817 14.359 64.293 14.359M69.235 14.711L67.172 14.711L67.172 14.262L67.700 14.262L67.700 11.840Q67.700 11.688 67.553 11.650Q67.407 11.613 67.172 11.613L67.172 11.168L68.602 11.102L68.602 11.895Q68.750 11.649 68.985 11.469Q69.219 11.289 69.497 11.195Q69.774 11.102 70.067 11.102Q70.508 11.102 70.805 11.209Q71.102 11.316 71.264 11.576Q71.426 11.836 71.426 12.270L71.426 14.262L71.954 14.262L71.954 14.711L69.891 14.711L69.891 14.262L70.418 14.262L70.418 12.297Q70.418 11.922 70.340 11.697Q70.262 11.473 69.969 11.473Q69.457 11.473 69.082 11.807Q68.707 12.141 68.707 12.649L68.707 14.262L69.235 14.262\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.392 -14.294)\">\u003Cpath d=\"M76.050 14.766L75.941 14.766Q75.812 14.734 75.812 14.633L75.812 13.590Q75.812 13.547 75.849 13.506Q75.886 13.465 75.941 13.465L76.164 13.465Q76.265 13.492 76.293 13.566Q76.410 13.981 76.695 14.190Q76.980 14.399 77.414 14.399Q77.800 14.399 78.082 14.289Q78.363 14.180 78.363 13.848Q78.363 13.613 78.160 13.490Q77.957 13.367 77.668 13.313L77.043 13.215Q76.824 13.172 76.607 13.090Q76.390 13.008 76.207 12.879Q76.023 12.750 75.918 12.572Q75.812 12.395 75.812 12.160Q75.812 11.738 76.046 11.496Q76.281 11.254 76.636 11.162Q76.992 11.070 77.414 11.070Q77.921 11.070 78.226 11.207L78.500 11.078Q78.507 11.074 78.517 11.072Q78.527 11.070 78.539 11.070L78.644 11.070Q78.773 11.102 78.773 11.199L78.773 12.008Q78.773 12.059 78.730 12.102Q78.687 12.145 78.644 12.145L78.421 12.145Q78.293 12.106 78.293 12.008Q78.293 11.777 78.164 11.641Q78.035 11.504 77.838 11.451Q77.640 11.399 77.406 11.399Q76.461 11.399 76.461 11.856Q76.461 12.172 77.109 12.285L77.742 12.391Q78.257 12.484 78.634 12.781Q79.011 13.078 79.011 13.566Q79.011 14.223 78.560 14.494Q78.109 14.766 77.414 14.766Q76.855 14.766 76.468 14.535L76.109 14.750Q76.078 14.766 76.050 14.766M79.621 12.910Q79.621 12.332 79.904 11.912Q80.187 11.492 80.671 11.281Q81.156 11.070 81.722 11.070Q82.164 11.070 82.500 11.182Q82.836 11.293 83.070 11.514Q83.304 11.734 83.429 12.065Q83.554 12.395 83.554 12.832Q83.554 12.988 83.402 13.016L80.730 13.016Q80.730 14.359 81.988 14.359Q82.339 14.359 82.646 14.203Q82.953 14.047 83.074 13.750Q83.148 13.621 83.234 13.621L83.402 13.621Q83.554 13.656 83.554 13.789Q83.554 13.824 83.546 13.840Q83.363 14.316 82.898 14.541Q82.433 14.766 81.859 14.766Q81.261 14.766 80.752 14.563Q80.242 14.359 79.931 13.938Q79.621 13.516 79.621 12.910M80.730 12.672L82.738 12.672Q82.738 12.133 82.490 11.785Q82.242 11.438 81.722 11.438Q81.379 11.438 81.154 11.604Q80.929 11.770 80.830 12.047Q80.730 12.324 80.730 12.672M84.691 13.789L84.691 11.606L84.019 11.606L84.019 11.238Q84.406 11.238 84.679 10.992Q84.953 10.746 85.086 10.371Q85.218 9.996 85.218 9.633L85.699 9.633L85.699 11.160L86.933 11.160L86.933 11.606L85.699 11.606L85.699 13.774Q85.699 14.359 86.156 14.359Q86.367 14.359 86.490 14.176Q86.613 13.992 86.613 13.774L86.613 13.320L87.093 13.320L87.093 13.789Q87.093 14.063 86.947 14.285Q86.800 14.508 86.560 14.637Q86.320 14.766 86.050 14.766Q85.476 14.766 85.084 14.543Q84.691 14.320 84.691 13.789\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.392 -14.294)\">\u003Cpath d=\"M91.189 13.781Q91.189 13.410 91.484 13.158Q91.779 12.906 92.230 12.775Q92.682 12.645 93.117 12.598Q93.553 12.551 93.939 12.551L93.939 12.297Q93.939 11.899 93.709 11.668Q93.478 11.438 93.084 11.438Q92.658 11.438 92.451 11.488Q92.611 11.633 92.611 11.887Q92.611 12.121 92.453 12.279Q92.295 12.438 92.061 12.438Q91.818 12.438 91.660 12.279Q91.502 12.121 91.502 11.887Q91.502 11.375 91.967 11.223Q92.432 11.070 93.084 11.070Q93.506 11.070 93.936 11.186Q94.365 11.301 94.656 11.572Q94.947 11.844 94.947 12.277L94.947 14.137Q94.978 14.262 95.518 14.262Q95.576 14.262 95.623 14.309Q95.670 14.356 95.670 14.414L95.670 14.551Q95.670 14.617 95.623 14.664Q95.576 14.711 95.518 14.711L94.971 14.711Q94.092 14.711 94.092 14.207Q93.904 14.484 93.559 14.625Q93.213 14.766 92.846 14.766Q92.471 14.766 92.090 14.682Q91.709 14.598 91.449 14.375Q91.189 14.152 91.189 13.781M92.197 13.781Q92.197 13.969 92.309 14.109Q92.420 14.250 92.596 14.324Q92.771 14.399 92.955 14.399Q93.186 14.399 93.414 14.318Q93.643 14.238 93.791 14.078Q93.939 13.918 93.939 13.680L93.939 12.887Q93.603 12.887 93.201 12.971Q92.799 13.055 92.498 13.256Q92.197 13.457 92.197 13.781M98.174 14.711L96.029 14.711L96.029 14.262L96.557 14.262L96.557 11.840Q96.557 11.688 96.410 11.650Q96.264 11.613 96.029 11.613L96.029 11.168L97.412 11.102L97.412 11.910Q97.568 11.555 97.848 11.328Q98.127 11.102 98.494 11.102Q98.857 11.102 99.152 11.289Q99.447 11.477 99.447 11.816Q99.447 11.961 99.375 12.088Q99.303 12.215 99.176 12.287Q99.049 12.359 98.900 12.359Q98.756 12.359 98.629 12.287Q98.502 12.215 98.430 12.088Q98.357 11.961 98.357 11.816Q98.357 11.602 98.471 11.473Q98.139 11.473 97.922 11.719Q97.705 11.965 97.611 12.324Q97.518 12.684 97.518 13L97.518 14.262L98.174 14.262L98.174 14.711M100.053 12.934Q100.053 12.488 100.219 12.139Q100.385 11.789 100.682 11.549Q100.978 11.309 101.357 11.190Q101.736 11.070 102.174 11.070Q102.768 11.070 103.227 11.236Q103.686 11.402 103.686 11.887Q103.686 12.121 103.527 12.279Q103.369 12.438 103.131 12.438Q102.896 12.438 102.734 12.275Q102.572 12.113 102.572 11.887Q102.572 11.652 102.709 11.512Q102.486 11.481 102.174 11.481Q101.764 11.481 101.543 11.684Q101.322 11.887 101.244 12.205Q101.166 12.524 101.166 12.926Q101.166 13.582 101.445 13.971Q101.725 14.359 102.365 14.359Q103.088 14.359 103.334 13.727Q103.365 13.649 103.443 13.649L103.670 13.649Q103.795 13.676 103.795 13.781L103.795 13.824Q103.666 14.160 103.426 14.369Q103.186 14.578 102.863 14.672Q102.541 14.766 102.174 14.766Q101.596 14.766 101.113 14.557Q100.631 14.348 100.342 13.934Q100.053 13.520 100.053 12.934\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.392 -14.294)\">\u003Cpath d=\"M106.309 14.711L104.247 14.711L104.247 14.262L104.774 14.262L104.774 9.895Q104.774 9.746 104.627 9.709Q104.481 9.672 104.247 9.672L104.247 9.223L105.735 9.160L105.735 11.809Q105.965 11.473 106.344 11.287Q106.723 11.102 107.141 11.102Q107.583 11.102 107.879 11.209Q108.176 11.316 108.338 11.576Q108.501 11.836 108.501 12.270L108.501 14.262L109.028 14.262L109.028 14.711L106.965 14.711L106.965 14.262L107.493 14.262L107.493 12.297Q107.493 11.922 107.415 11.697Q107.336 11.473 107.043 11.473Q106.532 11.473 106.157 11.807Q105.782 12.141 105.782 12.649L105.782 14.262L106.309 14.262L106.309 14.711M111.668 14.711L109.711 14.711L109.711 14.262L110.239 14.262L110.239 11.840Q110.239 11.688 110.102 11.650Q109.965 11.613 109.735 11.613L109.735 11.168L111.200 11.102L111.200 14.262L111.668 14.262L111.668 14.711M109.958 9.809Q109.958 9.531 110.151 9.342Q110.344 9.152 110.614 9.152Q110.793 9.152 110.944 9.242Q111.094 9.332 111.182 9.479Q111.270 9.625 111.270 9.809Q111.270 10.078 111.077 10.272Q110.883 10.465 110.614 10.465Q110.340 10.465 110.149 10.274Q109.958 10.082 109.958 9.809M112.829 13.789L112.829 11.606L112.157 11.606L112.157 11.238Q112.543 11.238 112.817 10.992Q113.090 10.746 113.223 10.371Q113.356 9.996 113.356 9.633L113.836 9.633L113.836 11.160L115.071 11.160L115.071 11.606L113.836 11.606L113.836 13.774Q113.836 14.359 114.293 14.359Q114.504 14.359 114.627 14.176Q114.751 13.992 114.751 13.774L114.751 13.320L115.231 13.320L115.231 13.789Q115.231 14.063 115.084 14.285Q114.938 14.508 114.698 14.637Q114.458 14.766 114.188 14.766Q113.614 14.766 113.221 14.543Q112.829 14.320 112.829 13.789M116.055 12.910Q116.055 12.332 116.338 11.912Q116.622 11.492 117.106 11.281Q117.590 11.070 118.157 11.070Q118.598 11.070 118.934 11.182Q119.270 11.293 119.504 11.514Q119.739 11.734 119.864 12.065Q119.989 12.395 119.989 12.832Q119.989 12.988 119.836 13.016L117.165 13.016Q117.165 14.359 118.422 14.359Q118.774 14.359 119.081 14.203Q119.387 14.047 119.508 13.750Q119.583 13.621 119.668 13.621L119.836 13.621Q119.989 13.656 119.989 13.789Q119.989 13.824 119.981 13.840Q119.797 14.316 119.333 14.541Q118.868 14.766 118.293 14.766Q117.696 14.766 117.186 14.563Q116.676 14.359 116.366 13.938Q116.055 13.516 116.055 12.910M117.165 12.672L119.172 12.672Q119.172 12.133 118.924 11.785Q118.676 11.438 118.157 11.438Q117.813 11.438 117.588 11.604Q117.364 11.770 117.264 12.047Q117.165 12.324 117.165 12.672M120.598 12.934Q120.598 12.488 120.764 12.139Q120.930 11.789 121.227 11.549Q121.524 11.309 121.903 11.190Q122.282 11.070 122.719 11.070Q123.313 11.070 123.772 11.236Q124.231 11.402 124.231 11.887Q124.231 12.121 124.073 12.279Q123.915 12.438 123.676 12.438Q123.442 12.438 123.280 12.275Q123.118 12.113 123.118 11.887Q123.118 11.652 123.254 11.512Q123.032 11.481 122.719 11.481Q122.309 11.481 122.088 11.684Q121.868 11.887 121.790 12.205Q121.711 12.524 121.711 12.926Q121.711 13.582 121.991 13.971Q122.270 14.359 122.911 14.359Q123.633 14.359 123.879 13.727Q123.911 13.649 123.989 13.649L124.215 13.649Q124.340 13.676 124.340 13.781L124.340 13.824Q124.211 14.160 123.971 14.369Q123.731 14.578 123.409 14.672Q123.086 14.766 122.719 14.766Q122.141 14.766 121.659 14.557Q121.176 14.348 120.887 13.934Q120.598 13.520 120.598 12.934M125.477 13.789L125.477 11.606L124.805 11.606L124.805 11.238Q125.192 11.238 125.465 10.992Q125.739 10.746 125.872 10.371Q126.004 9.996 126.004 9.633L126.485 9.633L126.485 11.160L127.719 11.160L127.719 11.606L126.485 11.606L126.485 13.774Q126.485 14.359 126.942 14.359Q127.153 14.359 127.276 14.176Q127.399 13.992 127.399 13.774L127.399 13.320L127.879 13.320L127.879 13.789Q127.879 14.063 127.733 14.285Q127.586 14.508 127.346 14.637Q127.106 14.766 126.836 14.766Q126.262 14.766 125.870 14.543Q125.477 14.320 125.477 13.789M129.391 13.789L129.391 11.840Q129.391 11.688 129.245 11.650Q129.098 11.613 128.864 11.613L128.864 11.168L130.399 11.102L130.399 13.774L130.399 13.789Q130.399 14.024 130.432 14.141Q130.465 14.258 130.540 14.313Q130.614 14.367 130.733 14.383Q130.852 14.399 131.110 14.399Q131.368 14.399 131.598 14.277Q131.829 14.156 131.969 13.941Q132.110 13.727 132.110 13.465L132.110 11.840Q132.110 11.688 131.963 11.650Q131.817 11.613 131.583 11.613L131.583 11.168L133.118 11.102L133.118 14.039Q133.118 14.188 133.264 14.225Q133.411 14.262 133.645 14.262L133.645 14.711L132.157 14.766L132.157 14.231Q131.965 14.481 131.661 14.623Q131.356 14.766 131.024 14.766Q130.583 14.766 130.233 14.703Q129.883 14.641 129.637 14.424Q129.391 14.207 129.391 13.789M136.368 14.711L134.223 14.711L134.223 14.262L134.750 14.262L134.750 11.840Q134.750 11.688 134.604 11.650Q134.458 11.613 134.223 11.613L134.223 11.168L135.606 11.102L135.606 11.910Q135.762 11.555 136.042 11.328Q136.321 11.102 136.688 11.102Q137.051 11.102 137.346 11.289Q137.641 11.477 137.641 11.816Q137.641 11.961 137.569 12.088Q137.497 12.215 137.370 12.287Q137.243 12.359 137.094 12.359Q136.950 12.359 136.823 12.287Q136.696 12.215 136.624 12.088Q136.551 11.961 136.551 11.816Q136.551 11.602 136.665 11.473Q136.333 11.473 136.116 11.719Q135.899 11.965 135.805 12.324Q135.711 12.684 135.711 13L135.711 14.262L136.368 14.262L136.368 14.711M138.192 12.910Q138.192 12.332 138.475 11.912Q138.758 11.492 139.243 11.281Q139.727 11.070 140.293 11.070Q140.735 11.070 141.071 11.182Q141.407 11.293 141.641 11.514Q141.875 11.734 142 12.065Q142.125 12.395 142.125 12.832Q142.125 12.988 141.973 13.016L139.301 13.016Q139.301 14.359 140.559 14.359Q140.911 14.359 141.217 14.203Q141.524 14.047 141.645 13.750Q141.719 13.621 141.805 13.621L141.973 13.621Q142.125 13.656 142.125 13.789Q142.125 13.824 142.118 13.840Q141.934 14.316 141.469 14.541Q141.004 14.766 140.430 14.766Q139.833 14.766 139.323 14.563Q138.813 14.359 138.502 13.938Q138.192 13.516 138.192 12.910M139.301 12.672L141.309 12.672Q141.309 12.133 141.061 11.785Q140.813 11.438 140.293 11.438Q139.950 11.438 139.725 11.604Q139.500 11.770 139.401 12.047Q139.301 12.324 139.301 12.672\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 55.967H2.883V30.36h-68.286Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-71.552 35.98)\">\u003Cpath d=\"M27.743 5.211L25.965 5.211L25.965 4.914Q26.239 4.914 26.407 4.867Q26.575 4.820 26.575 4.652L26.575 2.516Q26.575 2.301 26.518 2.205Q26.461 2.109 26.348 2.088Q26.235 2.066 25.989 2.066L25.989 1.770L27.188 1.684L27.188 4.652Q27.188 4.820 27.334 4.867Q27.481 4.914 27.743 4.914L27.743 5.211M26.301 0.289Q26.301 0.098 26.436-0.033Q26.571-0.164 26.766-0.164Q26.887-0.164 26.991-0.101Q27.094-0.039 27.157 0.065Q27.219 0.168 27.219 0.289Q27.219 0.484 27.088 0.619Q26.957 0.754 26.766 0.754Q26.567 0.754 26.434 0.621Q26.301 0.488 26.301 0.289M30.172 5.211L28.317 5.211L28.317 4.914Q28.590 4.914 28.758 4.867Q28.926 4.820 28.926 4.652L28.926 2.516Q28.926 2.301 28.864 2.205Q28.801 2.109 28.682 2.088Q28.563 2.066 28.317 2.066L28.317 1.770L29.508 1.684L29.508 2.418Q29.622 2.203 29.815 2.035Q30.008 1.867 30.247 1.775Q30.485 1.684 30.739 1.684Q31.907 1.684 31.907 2.762L31.907 4.652Q31.907 4.820 32.077 4.867Q32.247 4.914 32.516 4.914L32.516 5.211L30.661 5.211L30.661 4.914Q30.934 4.914 31.102 4.867Q31.270 4.820 31.270 4.652L31.270 2.777Q31.270 2.395 31.149 2.166Q31.028 1.938 30.676 1.938Q30.364 1.938 30.110 2.100Q29.856 2.262 29.709 2.531Q29.563 2.801 29.563 3.098L29.563 4.652Q29.563 4.820 29.733 4.867Q29.903 4.914 30.172 4.914L30.172 5.211M35.075 3.762L32.821 3.762L32.821 3.211L35.075 3.211L35.075 3.762M35.793 3.516Q35.793 3.012 36.049 2.580Q36.305 2.149 36.741 1.897Q37.176 1.645 37.676 1.645Q38.063 1.645 38.405 1.789Q38.747 1.934 39.008 2.195Q39.270 2.457 39.413 2.793Q39.555 3.129 39.555 3.516Q39.555 4.008 39.291 4.418Q39.028 4.828 38.598 5.059Q38.168 5.289 37.676 5.289Q37.184 5.289 36.750 5.057Q36.317 4.824 36.055 4.416Q35.793 4.008 35.793 3.516M37.676 5.012Q38.133 5.012 38.385 4.789Q38.637 4.566 38.725 4.215Q38.813 3.863 38.813 3.418Q38.813 2.988 38.719 2.650Q38.625 2.313 38.372 2.106Q38.118 1.899 37.676 1.899Q37.028 1.899 36.784 2.315Q36.540 2.731 36.540 3.418Q36.540 3.863 36.627 4.215Q36.715 4.566 36.967 4.789Q37.219 5.012 37.676 5.012M42.047 5.211L40.067 5.211L40.067 4.914Q40.336 4.914 40.504 4.869Q40.672 4.824 40.672 4.652L40.672 2.516Q40.672 2.301 40.610 2.205Q40.547 2.109 40.430 2.088Q40.313 2.066 40.067 2.066L40.067 1.770L41.235 1.684L41.235 2.469Q41.313 2.258 41.465 2.072Q41.618 1.887 41.817 1.785Q42.016 1.684 42.243 1.684Q42.489 1.684 42.680 1.828Q42.872 1.973 42.872 2.203Q42.872 2.359 42.766 2.469Q42.661 2.578 42.504 2.578Q42.348 2.578 42.239 2.469Q42.129 2.359 42.129 2.203Q42.129 2.043 42.235 1.938Q41.911 1.938 41.696 2.166Q41.481 2.395 41.385 2.734Q41.290 3.074 41.290 3.379L41.290 4.652Q41.290 4.820 41.516 4.867Q41.743 4.914 42.047 4.914L42.047 5.211M45.168 5.289Q44.688 5.289 44.280 5.045Q43.872 4.801 43.633 4.387Q43.395 3.973 43.395 3.484Q43.395 2.992 43.653 2.576Q43.911 2.160 44.342 1.922Q44.774 1.684 45.266 1.684Q45.887 1.684 46.336 2.121L46.336 0.492Q46.336 0.277 46.274 0.182Q46.211 0.086 46.094 0.065Q45.977 0.043 45.731 0.043L45.731-0.254L46.954-0.340L46.954 4.469Q46.954 4.680 47.016 4.775Q47.079 4.871 47.196 4.893Q47.313 4.914 47.563 4.914L47.563 5.211L46.313 5.289L46.313 4.805Q45.848 5.289 45.168 5.289M45.235 5.035Q45.575 5.035 45.868 4.844Q46.161 4.652 46.313 4.356L46.313 2.524Q46.165 2.250 45.903 2.094Q45.641 1.938 45.329 1.938Q44.704 1.938 44.420 2.385Q44.137 2.832 44.137 3.492Q44.137 4.137 44.389 4.586Q44.641 5.035 45.235 5.035M48.071 3.457Q48.071 2.977 48.303 2.561Q48.536 2.145 48.946 1.895Q49.356 1.645 49.832 1.645Q50.563 1.645 50.961 2.086Q51.360 2.527 51.360 3.258Q51.360 3.363 51.266 3.387L48.817 3.387L48.817 3.457Q48.817 3.867 48.938 4.223Q49.059 4.578 49.331 4.795Q49.602 5.012 50.032 5.012Q50.395 5.012 50.692 4.783Q50.989 4.555 51.090 4.203Q51.098 4.156 51.184 4.141L51.266 4.141Q51.360 4.168 51.360 4.250Q51.360 4.258 51.352 4.289Q51.290 4.516 51.151 4.699Q51.012 4.883 50.821 5.016Q50.629 5.149 50.411 5.219Q50.192 5.289 49.954 5.289Q49.582 5.289 49.245 5.152Q48.907 5.016 48.639 4.764Q48.372 4.512 48.221 4.172Q48.071 3.832 48.071 3.457M48.825 3.149L50.786 3.149Q50.786 2.844 50.684 2.553Q50.582 2.262 50.366 2.080Q50.149 1.899 49.832 1.899Q49.532 1.899 49.301 2.086Q49.071 2.274 48.948 2.565Q48.825 2.856 48.825 3.149M53.856 5.211L51.875 5.211L51.875 4.914Q52.145 4.914 52.313 4.869Q52.481 4.824 52.481 4.652L52.481 2.516Q52.481 2.301 52.418 2.205Q52.356 2.109 52.239 2.088Q52.122 2.066 51.875 2.066L51.875 1.770L53.043 1.684L53.043 2.469Q53.122 2.258 53.274 2.072Q53.426 1.887 53.625 1.785Q53.825 1.684 54.051 1.684Q54.297 1.684 54.489 1.828Q54.680 1.973 54.680 2.203Q54.680 2.359 54.575 2.469Q54.469 2.578 54.313 2.578Q54.157 2.578 54.047 2.469Q53.938 2.359 53.938 2.203Q53.938 2.043 54.043 1.938Q53.719 1.938 53.504 2.166Q53.290 2.395 53.194 2.734Q53.098 3.074 53.098 3.379L53.098 4.652Q53.098 4.820 53.325 4.867Q53.551 4.914 53.856 4.914\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-71.552 35.98)\">\u003Cpath d=\"M33.013 12.984Q33.013 12.488 33.263 12.063Q33.513 11.637 33.933 11.391Q34.353 11.145 34.853 11.145Q35.392 11.145 35.783 11.270Q36.173 11.395 36.173 11.809Q36.173 11.914 36.123 12.006Q36.072 12.098 35.980 12.149Q35.888 12.199 35.779 12.199Q35.673 12.199 35.582 12.149Q35.490 12.098 35.439 12.006Q35.388 11.914 35.388 11.809Q35.388 11.586 35.556 11.481Q35.334 11.422 34.861 11.422Q34.564 11.422 34.349 11.561Q34.134 11.699 34.003 11.930Q33.873 12.160 33.814 12.430Q33.755 12.699 33.755 12.984Q33.755 13.379 33.888 13.729Q34.021 14.078 34.293 14.295Q34.564 14.512 34.962 14.512Q35.337 14.512 35.613 14.295Q35.888 14.078 35.990 13.719Q36.005 13.656 36.068 13.656L36.173 13.656Q36.209 13.656 36.234 13.684Q36.259 13.711 36.259 13.750L36.259 13.774Q36.127 14.254 35.742 14.522Q35.357 14.789 34.853 14.789Q34.490 14.789 34.156 14.652Q33.822 14.516 33.562 14.266Q33.302 14.016 33.158 13.680Q33.013 13.344 33.013 12.984M36.748 13.016Q36.748 12.512 37.003 12.080Q37.259 11.649 37.695 11.397Q38.130 11.145 38.630 11.145Q39.017 11.145 39.359 11.289Q39.701 11.434 39.962 11.695Q40.224 11.957 40.367 12.293Q40.509 12.629 40.509 13.016Q40.509 13.508 40.246 13.918Q39.982 14.328 39.552 14.559Q39.123 14.789 38.630 14.789Q38.138 14.789 37.705 14.557Q37.271 14.324 37.009 13.916Q36.748 13.508 36.748 13.016M38.630 14.512Q39.087 14.512 39.339 14.289Q39.591 14.066 39.679 13.715Q39.767 13.363 39.767 12.918Q39.767 12.488 39.673 12.150Q39.580 11.813 39.326 11.606Q39.072 11.399 38.630 11.399Q37.982 11.399 37.738 11.815Q37.494 12.231 37.494 12.918Q37.494 13.363 37.582 13.715Q37.669 14.066 37.921 14.289Q38.173 14.512 38.630 14.512M43.002 14.711L41.021 14.711L41.021 14.414Q41.291 14.414 41.459 14.369Q41.627 14.324 41.627 14.152L41.627 12.016Q41.627 11.801 41.564 11.705Q41.502 11.609 41.384 11.588Q41.267 11.566 41.021 11.566L41.021 11.270L42.189 11.184L42.189 11.969Q42.267 11.758 42.419 11.572Q42.572 11.387 42.771 11.285Q42.970 11.184 43.197 11.184Q43.443 11.184 43.634 11.328Q43.826 11.473 43.826 11.703Q43.826 11.859 43.720 11.969Q43.615 12.078 43.459 12.078Q43.302 12.078 43.193 11.969Q43.084 11.859 43.084 11.703Q43.084 11.543 43.189 11.438Q42.865 11.438 42.650 11.666Q42.435 11.895 42.339 12.234Q42.244 12.574 42.244 12.879L42.244 14.152Q42.244 14.320 42.470 14.367Q42.697 14.414 43.002 14.414L43.002 14.711M44.306 12.957Q44.306 12.477 44.539 12.061Q44.771 11.645 45.181 11.395Q45.591 11.145 46.068 11.145Q46.798 11.145 47.197 11.586Q47.595 12.027 47.595 12.758Q47.595 12.863 47.502 12.887L45.052 12.887L45.052 12.957Q45.052 13.367 45.173 13.723Q45.294 14.078 45.566 14.295Q45.837 14.512 46.267 14.512Q46.630 14.512 46.927 14.283Q47.224 14.055 47.326 13.703Q47.334 13.656 47.419 13.641L47.502 13.641Q47.595 13.668 47.595 13.750Q47.595 13.758 47.587 13.789Q47.525 14.016 47.386 14.199Q47.248 14.383 47.056 14.516Q46.865 14.649 46.646 14.719Q46.427 14.789 46.189 14.789Q45.818 14.789 45.480 14.652Q45.142 14.516 44.875 14.264Q44.607 14.012 44.457 13.672Q44.306 13.332 44.306 12.957M45.060 12.649L47.021 12.649Q47.021 12.344 46.919 12.053Q46.818 11.762 46.601 11.580Q46.384 11.399 46.068 11.399Q45.767 11.399 45.537 11.586Q45.306 11.774 45.183 12.065Q45.060 12.356 45.060 12.649\" 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.498 55.967H59.79V30.36H-8.498Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-22.084 35.98)\">\u003Cpath d=\"M25.883 3.516Q25.883 3.012 26.139 2.580Q26.395 2.149 26.831 1.897Q27.266 1.645 27.766 1.645Q28.153 1.645 28.495 1.789Q28.836 1.934 29.098 2.195Q29.360 2.457 29.502 2.793Q29.645 3.129 29.645 3.516Q29.645 4.008 29.381 4.418Q29.118 4.828 28.688 5.059Q28.258 5.289 27.766 5.289Q27.274 5.289 26.840 5.057Q26.407 4.824 26.145 4.416Q25.883 4.008 25.883 3.516M27.766 5.012Q28.223 5.012 28.475 4.789Q28.727 4.566 28.815 4.215Q28.903 3.863 28.903 3.418Q28.903 2.988 28.809 2.650Q28.715 2.313 28.461 2.106Q28.207 1.899 27.766 1.899Q27.118 1.899 26.874 2.315Q26.629 2.731 26.629 3.418Q26.629 3.863 26.717 4.215Q26.805 4.566 27.057 4.789Q27.309 5.012 27.766 5.012M30.813 4.258L30.813 2.516Q30.813 2.301 30.750 2.205Q30.688 2.109 30.569 2.088Q30.450 2.066 30.204 2.066L30.204 1.770L31.450 1.684L31.450 4.234L31.450 4.258Q31.450 4.570 31.504 4.732Q31.559 4.895 31.709 4.965Q31.860 5.035 32.180 5.035Q32.610 5.035 32.883 4.697Q33.157 4.359 33.157 3.914L33.157 2.516Q33.157 2.301 33.094 2.205Q33.032 2.109 32.913 2.088Q32.793 2.066 32.547 2.066L32.547 1.770L33.793 1.684L33.793 4.469Q33.793 4.680 33.856 4.775Q33.918 4.871 34.038 4.893Q34.157 4.914 34.403 4.914L34.403 5.211L33.180 5.289L33.180 4.668Q33.012 4.957 32.731 5.123Q32.450 5.289 32.129 5.289Q30.813 5.289 30.813 4.258M35.473 4.250L35.473 2.059L34.770 2.059L34.770 1.805Q35.125 1.805 35.368 1.572Q35.610 1.340 35.721 0.992Q35.832 0.645 35.832 0.289L36.114 0.289L36.114 1.762L37.290 1.762L37.290 2.059L36.114 2.059L36.114 4.234Q36.114 4.555 36.233 4.783Q36.352 5.012 36.633 5.012Q36.813 5.012 36.930 4.889Q37.047 4.766 37.100 4.586Q37.153 4.406 37.153 4.234L37.153 3.762L37.434 3.762L37.434 4.250Q37.434 4.504 37.329 4.744Q37.223 4.984 37.026 5.137Q36.829 5.289 36.571 5.289Q36.254 5.289 36.002 5.166Q35.750 5.043 35.612 4.809Q35.473 4.574 35.473 4.250M40.266 3.762L38.012 3.762L38.012 3.211L40.266 3.211L40.266 3.762M40.985 3.516Q40.985 3.012 41.241 2.580Q41.497 2.149 41.932 1.897Q42.368 1.645 42.868 1.645Q43.254 1.645 43.596 1.789Q43.938 1.934 44.200 2.195Q44.461 2.457 44.604 2.793Q44.747 3.129 44.747 3.516Q44.747 4.008 44.483 4.418Q44.219 4.828 43.790 5.059Q43.360 5.289 42.868 5.289Q42.375 5.289 41.942 5.057Q41.508 4.824 41.247 4.416Q40.985 4.008 40.985 3.516M42.868 5.012Q43.325 5.012 43.577 4.789Q43.829 4.566 43.916 4.215Q44.004 3.863 44.004 3.418Q44.004 2.988 43.911 2.650Q43.817 2.313 43.563 2.106Q43.309 1.899 42.868 1.899Q42.219 1.899 41.975 2.315Q41.731 2.731 41.731 3.418Q41.731 3.863 41.819 4.215Q41.907 4.566 42.159 4.789Q42.411 5.012 42.868 5.012M47.297 5.211L45.313 5.211L45.313 4.914Q45.586 4.914 45.754 4.867Q45.922 4.820 45.922 4.652L45.922 2.059L45.282 2.059L45.282 1.762L45.922 1.762L45.922 0.828Q45.922 0.563 46.040 0.326Q46.157 0.090 46.350-0.074Q46.543-0.238 46.791-0.330Q47.040-0.422 47.305-0.422Q47.590-0.422 47.815-0.264Q48.040-0.105 48.040 0.172Q48.040 0.328 47.934 0.438Q47.829 0.547 47.665 0.547Q47.508 0.547 47.399 0.438Q47.290 0.328 47.290 0.172Q47.290-0.035 47.450-0.141Q47.352-0.164 47.258-0.164Q47.028-0.164 46.856-0.008Q46.684 0.149 46.598 0.385Q46.512 0.621 46.512 0.844L46.512 1.762L47.481 1.762L47.481 2.059L46.536 2.059L46.536 4.652Q46.536 4.820 46.762 4.867Q46.989 4.914 47.297 4.914L47.297 5.211M49.938 3.762L47.684 3.762L47.684 3.211L49.938 3.211L49.938 3.762M50.657 3.516Q50.657 3.012 50.913 2.580Q51.168 2.149 51.604 1.897Q52.040 1.645 52.540 1.645Q52.926 1.645 53.268 1.789Q53.610 1.934 53.872 2.195Q54.133 2.457 54.276 2.793Q54.418 3.129 54.418 3.516Q54.418 4.008 54.155 4.418Q53.891 4.828 53.461 5.059Q53.032 5.289 52.540 5.289Q52.047 5.289 51.614 5.057Q51.180 4.824 50.918 4.416Q50.657 4.008 50.657 3.516M52.540 5.012Q52.997 5.012 53.249 4.789Q53.500 4.566 53.588 4.215Q53.676 3.863 53.676 3.418Q53.676 2.988 53.582 2.650Q53.489 2.313 53.235 2.106Q52.981 1.899 52.540 1.899Q51.891 1.899 51.647 2.315Q51.403 2.731 51.403 3.418Q51.403 3.863 51.491 4.215Q51.579 4.566 51.831 4.789Q52.082 5.012 52.540 5.012M56.911 5.211L54.930 5.211L54.930 4.914Q55.200 4.914 55.368 4.869Q55.536 4.824 55.536 4.652L55.536 2.516Q55.536 2.301 55.473 2.205Q55.411 2.109 55.293 2.088Q55.176 2.066 54.930 2.066L54.930 1.770L56.098 1.684L56.098 2.469Q56.176 2.258 56.329 2.072Q56.481 1.887 56.680 1.785Q56.879 1.684 57.106 1.684Q57.352 1.684 57.543 1.828Q57.735 1.973 57.735 2.203Q57.735 2.359 57.629 2.469Q57.524 2.578 57.368 2.578Q57.211 2.578 57.102 2.469Q56.993 2.359 56.993 2.203Q56.993 2.043 57.098 1.938Q56.774 1.938 56.559 2.166Q56.344 2.395 56.249 2.734Q56.153 3.074 56.153 3.379L56.153 4.652Q56.153 4.820 56.379 4.867Q56.606 4.914 56.911 4.914L56.911 5.211M60.032 5.289Q59.551 5.289 59.143 5.045Q58.735 4.801 58.497 4.387Q58.258 3.973 58.258 3.484Q58.258 2.992 58.516 2.576Q58.774 2.160 59.206 1.922Q59.637 1.684 60.129 1.684Q60.750 1.684 61.200 2.121L61.200 0.492Q61.200 0.277 61.137 0.182Q61.075 0.086 60.957 0.065Q60.840 0.043 60.594 0.043L60.594-0.254L61.817-0.340L61.817 4.469Q61.817 4.680 61.879 4.775Q61.942 4.871 62.059 4.893Q62.176 4.914 62.426 4.914L62.426 5.211L61.176 5.289L61.176 4.805Q60.711 5.289 60.032 5.289M60.098 5.035Q60.438 5.035 60.731 4.844Q61.024 4.652 61.176 4.356L61.176 2.524Q61.028 2.250 60.766 2.094Q60.504 1.938 60.192 1.938Q59.567 1.938 59.284 2.385Q59 2.832 59 3.492Q59 4.137 59.252 4.586Q59.504 5.035 60.098 5.035M62.934 3.457Q62.934 2.977 63.166 2.561Q63.399 2.145 63.809 1.895Q64.219 1.645 64.696 1.645Q65.426 1.645 65.825 2.086Q66.223 2.527 66.223 3.258Q66.223 3.363 66.129 3.387L63.680 3.387L63.680 3.457Q63.680 3.867 63.801 4.223Q63.922 4.578 64.194 4.795Q64.465 5.012 64.895 5.012Q65.258 5.012 65.555 4.783Q65.852 4.555 65.954 4.203Q65.961 4.156 66.047 4.141L66.129 4.141Q66.223 4.168 66.223 4.250Q66.223 4.258 66.215 4.289Q66.153 4.516 66.014 4.699Q65.875 4.883 65.684 5.016Q65.493 5.149 65.274 5.219Q65.055 5.289 64.817 5.289Q64.446 5.289 64.108 5.152Q63.770 5.016 63.502 4.764Q63.235 4.512 63.084 4.172Q62.934 3.832 62.934 3.457M63.688 3.149L65.649 3.149Q65.649 2.844 65.547 2.553Q65.446 2.262 65.229 2.080Q65.012 1.899 64.696 1.899Q64.395 1.899 64.165 2.086Q63.934 2.274 63.811 2.565Q63.688 2.856 63.688 3.149M68.719 5.211L66.739 5.211L66.739 4.914Q67.008 4.914 67.176 4.869Q67.344 4.824 67.344 4.652L67.344 2.516Q67.344 2.301 67.282 2.205Q67.219 2.109 67.102 2.088Q66.985 2.066 66.739 2.066L66.739 1.770L67.907 1.684L67.907 2.469Q67.985 2.258 68.137 2.072Q68.290 1.887 68.489 1.785Q68.688 1.684 68.915 1.684Q69.161 1.684 69.352 1.828Q69.543 1.973 69.543 2.203Q69.543 2.359 69.438 2.469Q69.332 2.578 69.176 2.578Q69.020 2.578 68.911 2.469Q68.801 2.359 68.801 2.203Q68.801 2.043 68.907 1.938Q68.582 1.938 68.368 2.166Q68.153 2.395 68.057 2.734Q67.961 3.074 67.961 3.379L67.961 4.652Q67.961 4.820 68.188 4.867Q68.415 4.914 68.719 4.914\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.084 35.98)\">\u003Cpath d=\"M40.451 12.984Q40.451 12.488 40.701 12.063Q40.951 11.637 41.371 11.391Q41.791 11.145 42.291 11.145Q42.830 11.145 43.221 11.270Q43.611 11.395 43.611 11.809Q43.611 11.914 43.561 12.006Q43.510 12.098 43.418 12.149Q43.326 12.199 43.217 12.199Q43.111 12.199 43.020 12.149Q42.928 12.098 42.877 12.006Q42.826 11.914 42.826 11.809Q42.826 11.586 42.994 11.481Q42.772 11.422 42.299 11.422Q42.002 11.422 41.787 11.561Q41.572 11.699 41.441 11.930Q41.311 12.160 41.252 12.430Q41.193 12.699 41.193 12.984Q41.193 13.379 41.326 13.729Q41.459 14.078 41.731 14.295Q42.002 14.512 42.400 14.512Q42.775 14.512 43.051 14.295Q43.326 14.078 43.428 13.719Q43.443 13.656 43.506 13.656L43.611 13.656Q43.647 13.656 43.672 13.684Q43.697 13.711 43.697 13.750L43.697 13.774Q43.565 14.254 43.180 14.522Q42.795 14.789 42.291 14.789Q41.928 14.789 41.594 14.652Q41.260 14.516 41 14.266Q40.740 14.016 40.596 13.680Q40.451 13.344 40.451 12.984M44.186 13.016Q44.186 12.512 44.441 12.080Q44.697 11.649 45.133 11.397Q45.568 11.145 46.068 11.145Q46.455 11.145 46.797 11.289Q47.139 11.434 47.400 11.695Q47.662 11.957 47.805 12.293Q47.947 12.629 47.947 13.016Q47.947 13.508 47.684 13.918Q47.420 14.328 46.990 14.559Q46.561 14.789 46.068 14.789Q45.576 14.789 45.143 14.557Q44.709 14.324 44.447 13.916Q44.186 13.508 44.186 13.016M46.068 14.512Q46.525 14.512 46.777 14.289Q47.029 14.066 47.117 13.715Q47.205 13.363 47.205 12.918Q47.205 12.488 47.111 12.150Q47.018 11.813 46.764 11.606Q46.510 11.399 46.068 11.399Q45.420 11.399 45.176 11.815Q44.932 12.231 44.932 12.918Q44.932 13.363 45.020 13.715Q45.108 14.066 45.359 14.289Q45.611 14.512 46.068 14.512M50.440 14.711L48.459 14.711L48.459 14.414Q48.729 14.414 48.897 14.369Q49.065 14.324 49.065 14.152L49.065 12.016Q49.065 11.801 49.002 11.705Q48.940 11.609 48.822 11.588Q48.705 11.566 48.459 11.566L48.459 11.270L49.627 11.184L49.627 11.969Q49.705 11.758 49.858 11.572Q50.010 11.387 50.209 11.285Q50.408 11.184 50.635 11.184Q50.881 11.184 51.072 11.328Q51.264 11.473 51.264 11.703Q51.264 11.859 51.158 11.969Q51.053 12.078 50.897 12.078Q50.740 12.078 50.631 11.969Q50.522 11.859 50.522 11.703Q50.522 11.543 50.627 11.438Q50.303 11.438 50.088 11.666Q49.873 11.895 49.777 12.234Q49.682 12.574 49.682 12.879L49.682 14.152Q49.682 14.320 49.908 14.367Q50.135 14.414 50.440 14.414L50.440 14.711M51.744 12.957Q51.744 12.477 51.977 12.061Q52.209 11.645 52.619 11.395Q53.029 11.145 53.506 11.145Q54.236 11.145 54.635 11.586Q55.033 12.027 55.033 12.758Q55.033 12.863 54.940 12.887L52.490 12.887L52.490 12.957Q52.490 13.367 52.611 13.723Q52.733 14.078 53.004 14.295Q53.275 14.512 53.705 14.512Q54.068 14.512 54.365 14.283Q54.662 14.055 54.764 13.703Q54.772 13.656 54.858 13.641L54.940 13.641Q55.033 13.668 55.033 13.750Q55.033 13.758 55.025 13.789Q54.963 14.016 54.824 14.199Q54.686 14.383 54.494 14.516Q54.303 14.649 54.084 14.719Q53.865 14.789 53.627 14.789Q53.256 14.789 52.918 14.652Q52.580 14.516 52.313 14.264Q52.045 14.012 51.895 13.672Q51.744 13.332 51.744 12.957M52.498 12.649L54.459 12.649Q54.459 12.344 54.358 12.053Q54.256 11.762 54.039 11.580Q53.822 11.399 53.506 11.399Q53.205 11.399 52.975 11.586Q52.744 11.774 52.621 12.065Q52.498 12.356 52.498 12.649\" 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=\"M48.408 55.967h68.286V30.36H48.408Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M27.797 5.211L25.965 5.211L25.965 4.914Q26.239 4.914 26.407 4.867Q26.575 4.820 26.575 4.652L26.575 0.492Q26.575 0.277 26.512 0.182Q26.450 0.086 26.331 0.065Q26.211 0.043 25.965 0.043L25.965-0.254L27.188-0.340L27.188 4.652Q27.188 4.820 27.356 4.867Q27.524 4.914 27.797 4.914L27.797 5.211M28.243 3.516Q28.243 3.012 28.499 2.580Q28.754 2.149 29.190 1.897Q29.625 1.645 30.125 1.645Q30.512 1.645 30.854 1.789Q31.196 1.934 31.457 2.195Q31.719 2.457 31.862 2.793Q32.004 3.129 32.004 3.516Q32.004 4.008 31.741 4.418Q31.477 4.828 31.047 5.059Q30.618 5.289 30.125 5.289Q29.633 5.289 29.200 5.057Q28.766 4.824 28.504 4.416Q28.243 4.008 28.243 3.516M30.125 5.012Q30.582 5.012 30.834 4.789Q31.086 4.566 31.174 4.215Q31.262 3.863 31.262 3.418Q31.262 2.988 31.168 2.650Q31.075 2.313 30.821 2.106Q30.567 1.899 30.125 1.899Q29.477 1.899 29.233 2.315Q28.989 2.731 28.989 3.418Q28.989 3.863 29.077 4.215Q29.165 4.566 29.416 4.789Q29.668 5.012 30.125 5.012\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M33.845 5.180L32.775 2.324Q32.709 2.145 32.578 2.102Q32.447 2.059 32.189 2.059L32.189 1.762L33.869 1.762L33.869 2.059Q33.419 2.059 33.419 2.258Q33.423 2.274 33.425 2.291Q33.427 2.309 33.427 2.324L34.220 4.418L34.931 2.508Q34.896 2.414 34.896 2.369Q34.896 2.324 34.861 2.324Q34.794 2.145 34.664 2.102Q34.533 2.059 34.279 2.059L34.279 1.762L35.869 1.762L35.869 2.059Q35.419 2.059 35.419 2.258Q35.423 2.277 35.425 2.295Q35.427 2.313 35.427 2.324L36.259 4.539L37.013 2.539Q37.037 2.481 37.037 2.410Q37.037 2.250 36.900 2.154Q36.763 2.059 36.595 2.059L36.595 1.762L37.982 1.762L37.982 2.059Q37.748 2.059 37.570 2.186Q37.392 2.313 37.310 2.539L36.326 5.180Q36.271 5.289 36.158 5.289L36.099 5.289Q35.986 5.289 35.943 5.180L35.084 2.906L34.228 5.180Q34.189 5.289 34.068 5.289L34.013 5.289Q33.900 5.289 33.845 5.180M40.509 3.762L38.255 3.762L38.255 3.211L40.509 3.211L40.509 3.762M43.111 6.762L41.255 6.762L41.255 6.469Q41.525 6.469 41.693 6.424Q41.861 6.379 41.861 6.203L41.861 2.379Q41.861 2.172 41.705 2.119Q41.548 2.066 41.255 2.066L41.255 1.770L42.478 1.684L42.478 2.149Q42.709 1.926 43.023 1.805Q43.337 1.684 43.677 1.684Q44.150 1.684 44.554 1.930Q44.959 2.176 45.191 2.592Q45.423 3.008 45.423 3.484Q45.423 3.859 45.275 4.188Q45.126 4.516 44.857 4.768Q44.587 5.020 44.244 5.154Q43.900 5.289 43.541 5.289Q43.251 5.289 42.980 5.168Q42.709 5.047 42.501 4.836L42.501 6.203Q42.501 6.379 42.669 6.424Q42.837 6.469 43.111 6.469L43.111 6.762M42.501 2.547L42.501 4.387Q42.654 4.676 42.916 4.856Q43.177 5.035 43.486 5.035Q43.771 5.035 43.994 4.897Q44.216 4.758 44.369 4.527Q44.521 4.297 44.599 4.025Q44.677 3.754 44.677 3.484Q44.677 3.152 44.552 2.795Q44.427 2.438 44.179 2.201Q43.931 1.965 43.584 1.965Q43.259 1.965 42.964 2.121Q42.669 2.277 42.501 2.547\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M46.189 3.516Q46.189 3.012 46.445 2.580Q46.701 2.149 47.137 1.897Q47.572 1.645 48.072 1.645Q48.459 1.645 48.801 1.789Q49.142 1.934 49.404 2.195Q49.666 2.457 49.808 2.793Q49.951 3.129 49.951 3.516Q49.951 4.008 49.687 4.418Q49.424 4.828 48.994 5.059Q48.564 5.289 48.072 5.289Q47.580 5.289 47.146 5.057Q46.713 4.824 46.451 4.416Q46.189 4.008 46.189 3.516M48.072 5.012Q48.529 5.012 48.781 4.789Q49.033 4.566 49.121 4.215Q49.209 3.863 49.209 3.418Q49.209 2.988 49.115 2.650Q49.021 2.313 48.767 2.106Q48.514 1.899 48.072 1.899Q47.424 1.899 47.180 2.315Q46.935 2.731 46.935 3.418Q46.935 3.863 47.023 4.215Q47.111 4.566 47.363 4.789Q47.615 5.012 48.072 5.012\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M51.789 5.180L50.719 2.324Q50.653 2.145 50.522 2.102Q50.391 2.059 50.133 2.059L50.133 1.762L51.813 1.762L51.813 2.059Q51.363 2.059 51.363 2.258Q51.367 2.274 51.369 2.291Q51.371 2.309 51.371 2.324L52.164 4.418L52.875 2.508Q52.840 2.414 52.840 2.369Q52.840 2.324 52.805 2.324Q52.738 2.145 52.608 2.102Q52.477 2.059 52.223 2.059L52.223 1.762L53.813 1.762L53.813 2.059Q53.363 2.059 53.363 2.258Q53.367 2.277 53.369 2.295Q53.371 2.313 53.371 2.324L54.203 4.539L54.957 2.539Q54.981 2.481 54.981 2.410Q54.981 2.250 54.844 2.154Q54.707 2.059 54.539 2.059L54.539 1.762L55.926 1.762L55.926 2.059Q55.692 2.059 55.514 2.186Q55.336 2.313 55.254 2.539L54.270 5.180Q54.215 5.289 54.102 5.289L54.043 5.289Q53.930 5.289 53.887 5.180L53.028 2.906L52.172 5.180Q52.133 5.289 52.012 5.289L51.957 5.289Q51.844 5.289 51.789 5.180\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M56.106 3.457Q56.106 2.977 56.339 2.561Q56.571 2.145 56.981 1.895Q57.391 1.645 57.868 1.645Q58.598 1.645 58.997 2.086Q59.395 2.527 59.395 3.258Q59.395 3.363 59.302 3.387L56.852 3.387L56.852 3.457Q56.852 3.867 56.973 4.223Q57.095 4.578 57.366 4.795Q57.638 5.012 58.067 5.012Q58.431 5.012 58.727 4.783Q59.024 4.555 59.126 4.203Q59.134 4.156 59.220 4.141L59.302 4.141Q59.395 4.168 59.395 4.250Q59.395 4.258 59.388 4.289Q59.325 4.516 59.186 4.699Q59.048 4.883 58.856 5.016Q58.665 5.149 58.446 5.219Q58.227 5.289 57.989 5.289Q57.618 5.289 57.280 5.152Q56.942 5.016 56.675 4.764Q56.407 4.512 56.257 4.172Q56.106 3.832 56.106 3.457M56.860 3.149L58.821 3.149Q58.821 2.844 58.720 2.553Q58.618 2.262 58.401 2.080Q58.184 1.899 57.868 1.899Q57.567 1.899 57.337 2.086Q57.106 2.274 56.983 2.565Q56.860 2.856 56.860 3.149M61.891 5.211L59.911 5.211L59.911 4.914Q60.181 4.914 60.348 4.869Q60.516 4.824 60.516 4.652L60.516 2.516Q60.516 2.301 60.454 2.205Q60.391 2.109 60.274 2.088Q60.157 2.066 59.911 2.066L59.911 1.770L61.079 1.684L61.079 2.469Q61.157 2.258 61.309 2.072Q61.462 1.887 61.661 1.785Q61.860 1.684 62.087 1.684Q62.333 1.684 62.524 1.828Q62.716 1.973 62.716 2.203Q62.716 2.359 62.610 2.469Q62.505 2.578 62.348 2.578Q62.192 2.578 62.083 2.469Q61.973 2.359 61.973 2.203Q61.973 2.043 62.079 1.938Q61.755 1.938 61.540 2.166Q61.325 2.395 61.229 2.734Q61.134 3.074 61.134 3.379L61.134 4.652Q61.134 4.820 61.360 4.867Q61.587 4.914 61.891 4.914\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(38.249 35.98)\">\u003Cpath d=\"M37.024 12.984Q37.024 12.488 37.274 12.063Q37.524 11.637 37.944 11.391Q38.364 11.145 38.864 11.145Q39.403 11.145 39.794 11.270Q40.184 11.395 40.184 11.809Q40.184 11.914 40.134 12.006Q40.083 12.098 39.991 12.149Q39.899 12.199 39.790 12.199Q39.684 12.199 39.593 12.149Q39.501 12.098 39.450 12.006Q39.399 11.914 39.399 11.809Q39.399 11.586 39.567 11.481Q39.345 11.422 38.872 11.422Q38.575 11.422 38.360 11.561Q38.145 11.699 38.014 11.930Q37.884 12.160 37.825 12.430Q37.766 12.699 37.766 12.984Q37.766 13.379 37.899 13.729Q38.032 14.078 38.304 14.295Q38.575 14.512 38.973 14.512Q39.348 14.512 39.624 14.295Q39.899 14.078 40.001 13.719Q40.016 13.656 40.079 13.656L40.184 13.656Q40.220 13.656 40.245 13.684Q40.270 13.711 40.270 13.750L40.270 13.774Q40.138 14.254 39.753 14.522Q39.368 14.789 38.864 14.789Q38.501 14.789 38.167 14.652Q37.833 14.516 37.573 14.266Q37.313 14.016 37.169 13.680Q37.024 13.344 37.024 12.984M40.759 13.016Q40.759 12.512 41.014 12.080Q41.270 11.649 41.706 11.397Q42.141 11.145 42.641 11.145Q43.028 11.145 43.370 11.289Q43.712 11.434 43.973 11.695Q44.235 11.957 44.378 12.293Q44.520 12.629 44.520 13.016Q44.520 13.508 44.257 13.918Q43.993 14.328 43.563 14.559Q43.134 14.789 42.641 14.789Q42.149 14.789 41.716 14.557Q41.282 14.324 41.020 13.916Q40.759 13.508 40.759 13.016M42.641 14.512Q43.098 14.512 43.350 14.289Q43.602 14.066 43.690 13.715Q43.778 13.363 43.778 12.918Q43.778 12.488 43.684 12.150Q43.591 11.813 43.337 11.606Q43.083 11.399 42.641 11.399Q41.993 11.399 41.749 11.815Q41.505 12.231 41.505 12.918Q41.505 13.363 41.593 13.715Q41.681 14.066 41.932 14.289Q42.184 14.512 42.641 14.512M47.013 14.711L45.032 14.711L45.032 14.414Q45.302 14.414 45.470 14.369Q45.638 14.324 45.638 14.152L45.638 12.016Q45.638 11.801 45.575 11.705Q45.513 11.609 45.395 11.588Q45.278 11.566 45.032 11.566L45.032 11.270L46.200 11.184L46.200 11.969Q46.278 11.758 46.431 11.572Q46.583 11.387 46.782 11.285Q46.981 11.184 47.208 11.184Q47.454 11.184 47.645 11.328Q47.837 11.473 47.837 11.703Q47.837 11.859 47.731 11.969Q47.626 12.078 47.470 12.078Q47.313 12.078 47.204 11.969Q47.095 11.859 47.095 11.703Q47.095 11.543 47.200 11.438Q46.876 11.438 46.661 11.666Q46.446 11.895 46.350 12.234Q46.255 12.574 46.255 12.879L46.255 14.152Q46.255 14.320 46.481 14.367Q46.708 14.414 47.013 14.414L47.013 14.711M48.317 12.957Q48.317 12.477 48.550 12.061Q48.782 11.645 49.192 11.395Q49.602 11.145 50.079 11.145Q50.809 11.145 51.208 11.586Q51.606 12.027 51.606 12.758Q51.606 12.863 51.513 12.887L49.063 12.887L49.063 12.957Q49.063 13.367 49.184 13.723Q49.306 14.078 49.577 14.295Q49.848 14.512 50.278 14.512Q50.641 14.512 50.938 14.283Q51.235 14.055 51.337 13.703Q51.345 13.656 51.431 13.641L51.513 13.641Q51.606 13.668 51.606 13.750Q51.606 13.758 51.598 13.789Q51.536 14.016 51.397 14.199Q51.259 14.383 51.067 14.516Q50.876 14.649 50.657 14.719Q50.438 14.789 50.200 14.789Q49.829 14.789 49.491 14.652Q49.153 14.516 48.886 14.264Q48.618 14.012 48.468 13.672Q48.317 13.332 48.317 12.957M49.071 12.649L51.032 12.649Q51.032 12.344 50.931 12.053Q50.829 11.762 50.612 11.580Q50.395 11.399 50.079 11.399Q49.778 11.399 49.548 11.586Q49.317 11.774 49.194 12.065Q49.071 12.356 49.071 12.649\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M25.645-26.346v10.204\"\u002F>\u003Cpath stroke=\"none\" d=\"m25.645-14.142 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg transform=\"translate(3.533 -33.483)\">\u003Cpath d=\"M26.486 13.870L26.486 11.973L25.847 11.973L25.847 11.751Q26.165 11.751 26.382 11.541Q26.599 11.331 26.699 11.021Q26.800 10.712 26.800 10.404L27.067 10.404L27.067 11.693L28.144 11.693L28.144 11.973L27.067 11.973L27.067 13.857Q27.067 14.133 27.171 14.332Q27.275 14.530 27.535 14.530Q27.692 14.530 27.798 14.426Q27.904 14.321 27.954 14.168Q28.003 14.014 28.003 13.857L28.003 13.443L28.270 13.443L28.270 13.870Q28.270 14.096 28.171 14.306Q28.072 14.516 27.887 14.648Q27.703 14.779 27.474 14.779Q27.036 14.779 26.761 14.542Q26.486 14.304 26.486 13.870M29.138 13.983Q29.138 13.651 29.362 13.424Q29.586 13.197 29.929 13.069Q30.273 12.940 30.645 12.888Q31.018 12.835 31.322 12.835L31.322 12.582Q31.322 12.377 31.215 12.197Q31.107 12.018 30.926 11.915Q30.745 11.813 30.536 11.813Q30.129 11.813 29.894 11.905Q29.982 11.942 30.029 12.026Q30.075 12.110 30.075 12.212Q30.075 12.308 30.029 12.387Q29.982 12.465 29.902 12.510Q29.822 12.554 29.733 12.554Q29.582 12.554 29.482 12.457Q29.381 12.359 29.381 12.212Q29.381 11.590 30.536 11.590Q30.748 11.590 30.998 11.654Q31.247 11.717 31.449 11.836Q31.650 11.956 31.777 12.141Q31.903 12.325 31.903 12.568L31.903 14.144Q31.903 14.260 31.965 14.356Q32.026 14.451 32.139 14.451Q32.249 14.451 32.313 14.357Q32.378 14.263 32.378 14.144L32.378 13.696L32.645 13.696L32.645 14.144Q32.645 14.414 32.418 14.579Q32.190 14.745 31.910 14.745Q31.702 14.745 31.565 14.591Q31.428 14.438 31.404 14.222Q31.257 14.489 30.975 14.634Q30.693 14.779 30.369 14.779Q30.092 14.779 29.808 14.704Q29.524 14.629 29.331 14.450Q29.138 14.270 29.138 13.983M29.753 13.983Q29.753 14.157 29.854 14.287Q29.955 14.417 30.111 14.487Q30.266 14.557 30.430 14.557Q30.649 14.557 30.857 14.460Q31.066 14.362 31.194 14.181Q31.322 14 31.322 13.774L31.322 13.046Q30.998 13.046 30.632 13.137Q30.266 13.228 30.010 13.440Q29.753 13.651 29.753 13.983M34.812 14.711L33.076 14.711L33.076 14.431Q33.305 14.431 33.453 14.397Q33.602 14.362 33.602 14.222L33.602 12.373Q33.602 12.103 33.494 12.042Q33.387 11.980 33.076 11.980L33.076 11.700L34.104 11.625L34.104 12.332Q34.234 12.024 34.477 11.825Q34.720 11.625 35.038 11.625Q35.256 11.625 35.427 11.749Q35.598 11.874 35.598 12.086Q35.598 12.223 35.499 12.322Q35.400 12.421 35.267 12.421Q35.130 12.421 35.031 12.322Q34.932 12.223 34.932 12.086Q34.932 11.946 35.031 11.847Q34.740 11.847 34.540 12.043Q34.340 12.240 34.248 12.534Q34.156 12.828 34.156 13.108L34.156 14.222Q34.156 14.431 34.812 14.431L34.812 14.711M36.142 15.244Q36.142 14.998 36.338 14.814Q36.535 14.629 36.791 14.550Q36.654 14.438 36.582 14.277Q36.511 14.116 36.511 13.935Q36.511 13.614 36.723 13.368Q36.388 13.070 36.388 12.660Q36.388 12.199 36.777 11.912Q37.167 11.625 37.645 11.625Q38.117 11.625 38.452 11.871Q38.626 11.717 38.837 11.635Q39.047 11.553 39.276 11.553Q39.440 11.553 39.561 11.660Q39.683 11.768 39.683 11.932Q39.683 12.028 39.611 12.100Q39.539 12.171 39.447 12.171Q39.348 12.171 39.278 12.098Q39.207 12.024 39.207 11.925Q39.207 11.871 39.221 11.840L39.228 11.826Q39.235 11.806 39.243 11.795Q39.252 11.785 39.255 11.778Q38.900 11.778 38.613 12.001Q38.900 12.294 38.900 12.660Q38.900 12.975 38.715 13.207Q38.531 13.440 38.242 13.568Q37.953 13.696 37.645 13.696Q37.444 13.696 37.252 13.646Q37.061 13.597 36.883 13.487Q36.791 13.614 36.791 13.757Q36.791 13.939 36.919 14.074Q37.047 14.209 37.232 14.209L37.864 14.209Q38.312 14.209 38.681 14.280Q39.050 14.352 39.310 14.581Q39.570 14.810 39.570 15.244Q39.570 15.565 39.274 15.767Q38.978 15.969 38.575 16.058Q38.172 16.147 37.857 16.147Q37.540 16.147 37.136 16.058Q36.733 15.969 36.437 15.767Q36.142 15.565 36.142 15.244M36.596 15.244Q36.596 15.473 36.815 15.622Q37.034 15.771 37.326 15.839Q37.618 15.907 37.857 15.907Q38.021 15.907 38.230 15.871Q38.438 15.836 38.645 15.755Q38.852 15.675 38.984 15.547Q39.115 15.419 39.115 15.244Q39.115 14.892 38.734 14.798Q38.353 14.704 37.851 14.704L37.232 14.704Q36.993 14.704 36.794 14.855Q36.596 15.005 36.596 15.244M37.645 13.457Q38.312 13.457 38.312 12.660Q38.312 11.860 37.645 11.860Q36.976 11.860 36.976 12.660Q36.976 13.457 37.645 13.457M40.124 13.176Q40.124 12.855 40.248 12.566Q40.373 12.277 40.599 12.054Q40.824 11.830 41.120 11.710Q41.416 11.590 41.733 11.590Q42.062 11.590 42.323 11.690Q42.584 11.789 42.760 11.971Q42.937 12.154 43.030 12.412Q43.124 12.670 43.124 13.002Q43.124 13.094 43.042 13.115L40.787 13.115L40.787 13.176Q40.787 13.764 41.070 14.147Q41.354 14.530 41.921 14.530Q42.243 14.530 42.511 14.337Q42.779 14.144 42.868 13.829Q42.875 13.788 42.950 13.774L43.042 13.774Q43.124 13.798 43.124 13.870Q43.124 13.877 43.118 13.904Q43.005 14.301 42.634 14.540Q42.263 14.779 41.839 14.779Q41.402 14.779 41.002 14.571Q40.602 14.362 40.363 13.995Q40.124 13.628 40.124 13.176M40.793 12.906L42.608 12.906Q42.608 12.629 42.511 12.377Q42.414 12.124 42.215 11.968Q42.017 11.813 41.733 11.813Q41.457 11.813 41.243 11.971Q41.029 12.130 40.911 12.385Q40.793 12.640 40.793 12.906M44.239 13.870L44.239 11.973L43.600 11.973L43.600 11.751Q43.917 11.751 44.135 11.541Q44.352 11.331 44.452 11.021Q44.553 10.712 44.553 10.404L44.820 10.404L44.820 11.693L45.896 11.693L45.896 11.973L44.820 11.973L44.820 13.857Q44.820 14.133 44.924 14.332Q45.028 14.530 45.288 14.530Q45.445 14.530 45.551 14.426Q45.657 14.321 45.707 14.168Q45.756 14.014 45.756 13.857L45.756 13.443L46.023 13.443L46.023 13.870Q46.023 14.096 45.924 14.306Q45.825 14.516 45.640 14.648Q45.456 14.779 45.227 14.779Q44.789 14.779 44.514 14.542Q44.239 14.304 44.239 13.870M46.833 14.704L46.833 13.641Q46.833 13.617 46.860 13.590Q46.888 13.563 46.912 13.563L47.021 13.563Q47.086 13.563 47.100 13.621Q47.195 14.055 47.441 14.306Q47.687 14.557 48.101 14.557Q48.443 14.557 48.696 14.424Q48.949 14.291 48.949 13.983Q48.949 13.826 48.855 13.711Q48.761 13.597 48.622 13.528Q48.484 13.460 48.316 13.422L47.735 13.323Q47.380 13.255 47.106 13.034Q46.833 12.814 46.833 12.472Q46.833 12.223 46.944 12.048Q47.055 11.874 47.241 11.775Q47.428 11.676 47.643 11.633Q47.858 11.590 48.101 11.590Q48.515 11.590 48.795 11.772L49.010 11.597Q49.020 11.594 49.027 11.592Q49.034 11.590 49.044 11.590L49.096 11.590Q49.123 11.590 49.147 11.614Q49.171 11.638 49.171 11.666L49.171 12.513Q49.171 12.534 49.147 12.561Q49.123 12.588 49.096 12.588L48.983 12.588Q48.956 12.588 48.930 12.563Q48.904 12.537 48.904 12.513Q48.904 12.277 48.798 12.113Q48.692 11.949 48.510 11.867Q48.327 11.785 48.094 11.785Q47.766 11.785 47.510 11.888Q47.253 11.990 47.253 12.267Q47.253 12.462 47.436 12.571Q47.619 12.681 47.848 12.722L48.422 12.828Q48.668 12.876 48.882 13.004Q49.096 13.132 49.232 13.335Q49.369 13.539 49.369 13.788Q49.369 14.301 49.003 14.540Q48.638 14.779 48.101 14.779Q47.605 14.779 47.274 14.485L47.007 14.759Q46.987 14.779 46.959 14.779L46.912 14.779Q46.888 14.779 46.860 14.752Q46.833 14.725 46.833 14.704\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M25.645 9.42-29.38 29.475\"\u002F>\u003Cpath stroke=\"none\" d=\"m-31.26 30.16 3.554.407-1.675-1.092.58-1.914\"\u002F>\u003Cpath fill=\"none\" d=\"M25.645 9.42v18.74\"\u002F>\u003Cpath stroke=\"none\" d=\"m25.645 30.16 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"m25.645 9.42 55.027 20.055\"\u002F>\u003Cpath stroke=\"none\" d=\"m82.55 30.16-2.458-2.6.58 1.915-1.675 1.092\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(84.17 30.203)\">\u003Cpath d=\"M27.576 14.711L26.024 14.711L26.024 14.431Q26.250 14.431 26.399 14.397Q26.547 14.362 26.547 14.222L26.547 12.373Q26.547 12.185 26.499 12.101Q26.452 12.018 26.354 11.999Q26.257 11.980 26.045 11.980L26.045 11.700L27.101 11.625L27.101 14.222Q27.101 14.362 27.233 14.397Q27.364 14.431 27.576 14.431L27.576 14.711M26.305 10.404Q26.305 10.233 26.428 10.114Q26.551 9.994 26.722 9.994Q26.889 9.994 27.012 10.114Q27.135 10.233 27.135 10.404Q27.135 10.579 27.012 10.702Q26.889 10.825 26.722 10.825Q26.551 10.825 26.428 10.702Q26.305 10.579 26.305 10.404M29.904 14.711L28.270 14.711L28.270 14.431Q28.499 14.431 28.648 14.397Q28.796 14.362 28.796 14.222L28.796 12.373Q28.796 12.103 28.689 12.042Q28.581 11.980 28.270 11.980L28.270 11.700L29.330 11.625L29.330 12.274Q29.500 11.966 29.805 11.795Q30.109 11.625 30.454 11.625Q30.854 11.625 31.131 11.765Q31.408 11.905 31.493 12.253Q31.661 11.960 31.960 11.792Q32.259 11.625 32.604 11.625Q33.110 11.625 33.394 11.848Q33.677 12.072 33.677 12.568L33.677 14.222Q33.677 14.359 33.826 14.395Q33.975 14.431 34.200 14.431L34.200 14.711L32.570 14.711L32.570 14.431Q32.795 14.431 32.946 14.395Q33.096 14.359 33.096 14.222L33.096 12.582Q33.096 12.247 32.977 12.047Q32.857 11.847 32.542 11.847Q32.272 11.847 32.038 11.983Q31.804 12.120 31.666 12.354Q31.527 12.588 31.527 12.862L31.527 14.222Q31.527 14.359 31.676 14.395Q31.825 14.431 32.050 14.431L32.050 14.711L30.420 14.711L30.420 14.431Q30.649 14.431 30.798 14.397Q30.946 14.362 30.946 14.222L30.946 12.582Q30.946 12.247 30.827 12.047Q30.707 11.847 30.393 11.847Q30.123 11.847 29.888 11.983Q29.654 12.120 29.516 12.354Q29.377 12.588 29.377 12.862L29.377 14.222Q29.377 14.359 29.528 14.395Q29.678 14.431 29.904 14.431L29.904 14.711M36.432 16.068L34.802 16.068L34.802 15.788Q35.031 15.788 35.179 15.753Q35.328 15.719 35.328 15.579L35.328 12.233Q35.328 12.062 35.191 12.021Q35.055 11.980 34.802 11.980L34.802 11.700L35.882 11.625L35.882 12.031Q36.104 11.830 36.391 11.727Q36.678 11.625 36.986 11.625Q37.413 11.625 37.777 11.838Q38.141 12.052 38.355 12.416Q38.568 12.780 38.568 13.200Q38.568 13.645 38.329 14.009Q38.090 14.373 37.697 14.576Q37.304 14.779 36.859 14.779Q36.593 14.779 36.345 14.679Q36.097 14.578 35.909 14.397L35.909 15.579Q35.909 15.716 36.058 15.752Q36.207 15.788 36.432 15.788L36.432 16.068M35.909 12.380L35.909 13.990Q36.042 14.243 36.285 14.400Q36.528 14.557 36.805 14.557Q37.133 14.557 37.386 14.356Q37.639 14.154 37.772 13.836Q37.905 13.518 37.905 13.200Q37.905 12.971 37.840 12.742Q37.775 12.513 37.647 12.315Q37.519 12.117 37.324 11.997Q37.129 11.878 36.897 11.878Q36.603 11.878 36.335 12.007Q36.066 12.137 35.909 12.380M40.872 14.711L39.269 14.711L39.269 14.431Q39.495 14.431 39.643 14.397Q39.792 14.362 39.792 14.222L39.792 10.603Q39.792 10.333 39.684 10.271Q39.577 10.210 39.269 10.210L39.269 9.929L40.346 9.854L40.346 14.222Q40.346 14.359 40.496 14.395Q40.646 14.431 40.872 14.431L40.872 14.711M41.426 13.176Q41.426 12.855 41.551 12.566Q41.675 12.277 41.901 12.054Q42.126 11.830 42.422 11.710Q42.718 11.590 43.036 11.590Q43.364 11.590 43.625 11.690Q43.887 11.789 44.063 11.971Q44.239 12.154 44.333 12.412Q44.427 12.670 44.427 13.002Q44.427 13.094 44.345 13.115L42.089 13.115L42.089 13.176Q42.089 13.764 42.373 14.147Q42.656 14.530 43.224 14.530Q43.545 14.530 43.813 14.337Q44.082 14.144 44.170 13.829Q44.177 13.788 44.252 13.774L44.345 13.774Q44.427 13.798 44.427 13.870Q44.427 13.877 44.420 13.904Q44.307 14.301 43.936 14.540Q43.565 14.779 43.142 14.779Q42.704 14.779 42.304 14.571Q41.904 14.362 41.665 13.995Q41.426 13.628 41.426 13.176M42.096 12.906L43.911 12.906Q43.911 12.629 43.813 12.377Q43.716 12.124 43.518 11.968Q43.319 11.813 43.036 11.813Q42.759 11.813 42.545 11.971Q42.332 12.130 42.214 12.385Q42.096 12.640 42.096 12.906M46.696 14.711L45.062 14.711L45.062 14.431Q45.291 14.431 45.440 14.397Q45.589 14.362 45.589 14.222L45.589 12.373Q45.589 12.103 45.481 12.042Q45.374 11.980 45.062 11.980L45.062 11.700L46.122 11.625L46.122 12.274Q46.293 11.966 46.597 11.795Q46.901 11.625 47.247 11.625Q47.646 11.625 47.923 11.765Q48.200 11.905 48.286 12.253Q48.453 11.960 48.752 11.792Q49.051 11.625 49.396 11.625Q49.902 11.625 50.186 11.848Q50.470 12.072 50.470 12.568L50.470 14.222Q50.470 14.359 50.618 14.395Q50.767 14.431 50.993 14.431L50.993 14.711L49.362 14.711L49.362 14.431Q49.588 14.431 49.738 14.395Q49.889 14.359 49.889 14.222L49.889 12.582Q49.889 12.247 49.769 12.047Q49.649 11.847 49.335 11.847Q49.065 11.847 48.831 11.983Q48.597 12.120 48.458 12.354Q48.320 12.588 48.320 12.862L48.320 14.222Q48.320 14.359 48.468 14.395Q48.617 14.431 48.843 14.431L48.843 14.711L47.212 14.711L47.212 14.431Q47.441 14.431 47.590 14.397Q47.739 14.362 47.739 14.222L47.739 12.582Q47.739 12.247 47.619 12.047Q47.499 11.847 47.185 11.847Q46.915 11.847 46.681 11.983Q46.447 12.120 46.308 12.354Q46.170 12.588 46.170 12.862L46.170 14.222Q46.170 14.359 46.320 14.395Q46.471 14.431 46.696 14.431L46.696 14.711M51.540 13.176Q51.540 12.855 51.664 12.566Q51.789 12.277 52.015 12.054Q52.240 11.830 52.536 11.710Q52.832 11.590 53.149 11.590Q53.478 11.590 53.739 11.690Q54 11.789 54.176 11.971Q54.353 12.154 54.447 12.412Q54.541 12.670 54.541 13.002Q54.541 13.094 54.458 13.115L52.203 13.115L52.203 13.176Q52.203 13.764 52.486 14.147Q52.770 14.530 53.337 14.530Q53.659 14.530 53.927 14.337Q54.195 14.144 54.284 13.829Q54.291 13.788 54.366 13.774L54.458 13.774Q54.541 13.798 54.541 13.870Q54.541 13.877 54.534 13.904Q54.421 14.301 54.050 14.540Q53.679 14.779 53.255 14.779Q52.818 14.779 52.418 14.571Q52.018 14.362 51.779 13.995Q51.540 13.628 51.540 13.176M52.209 12.906L54.024 12.906Q54.024 12.629 53.927 12.377Q53.830 12.124 53.631 11.968Q53.433 11.813 53.149 11.813Q52.873 11.813 52.659 11.971Q52.445 12.130 52.327 12.385Q52.209 12.640 52.209 12.906M56.810 14.711L55.176 14.711L55.176 14.431Q55.405 14.431 55.554 14.397Q55.703 14.362 55.703 14.222L55.703 12.373Q55.703 12.103 55.595 12.042Q55.487 11.980 55.176 11.980L55.176 11.700L56.236 11.625L56.236 12.274Q56.407 11.966 56.711 11.795Q57.015 11.625 57.360 11.625Q57.866 11.625 58.150 11.848Q58.434 12.072 58.434 12.568L58.434 14.222Q58.434 14.359 58.582 14.395Q58.731 14.431 58.957 14.431L58.957 14.711L57.326 14.711L57.326 14.431Q57.555 14.431 57.704 14.397Q57.853 14.362 57.853 14.222L57.853 12.582Q57.853 12.247 57.733 12.047Q57.613 11.847 57.299 11.847Q57.029 11.847 56.795 11.983Q56.561 12.120 56.422 12.354Q56.284 12.588 56.284 12.862L56.284 14.222Q56.284 14.359 56.434 14.395Q56.584 14.431 56.810 14.431\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(84.17 30.203)\">\u003Cpath d=\"M59.882 13.870L59.882 11.973L59.243 11.973L59.243 11.751Q59.561 11.751 59.778 11.541Q59.995 11.331 60.095 11.021Q60.196 10.712 60.196 10.404L60.463 10.404L60.463 11.693L61.540 11.693L61.540 11.973L60.463 11.973L60.463 13.857Q60.463 14.133 60.567 14.332Q60.671 14.530 60.931 14.530Q61.088 14.530 61.194 14.426Q61.300 14.321 61.350 14.168Q61.399 14.014 61.399 13.857L61.399 13.443L61.666 13.443L61.666 13.870Q61.666 14.096 61.567 14.306Q61.468 14.516 61.283 14.648Q61.099 14.779 60.870 14.779Q60.432 14.779 60.157 14.542Q59.882 14.304 59.882 13.870\" 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 ISA as a horizontal contract. Everything above it — applications, compilers, operating systems — is written to target the ISA; every microarchitecture below it is one hardware implementation of the same contract, free to differ in speed, power, and internal cleverness.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:470.653px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 352.990 118.873\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-49.308h113.81V-72.07h-113.81Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M-8.217-71.916Q-8.217-72.412-7.967-72.837Q-7.717-73.263-7.297-73.509Q-6.877-73.755-6.377-73.755Q-5.838-73.755-5.447-73.630Q-5.057-73.505-5.057-73.091Q-5.057-72.986-5.107-72.894Q-5.158-72.802-5.250-72.751Q-5.342-72.701-5.451-72.701Q-5.557-72.701-5.648-72.751Q-5.740-72.802-5.791-72.894Q-5.842-72.986-5.842-73.091Q-5.842-73.314-5.674-73.419Q-5.896-73.478-6.369-73.478Q-6.666-73.478-6.881-73.339Q-7.096-73.201-7.227-72.970Q-7.357-72.740-7.416-72.470Q-7.475-72.201-7.475-71.916Q-7.475-71.521-7.342-71.171Q-7.209-70.822-6.937-70.605Q-6.666-70.388-6.268-70.388Q-5.893-70.388-5.617-70.605Q-5.342-70.822-5.240-71.181Q-5.225-71.244-5.162-71.244L-5.057-71.244Q-5.021-71.244-4.996-71.216Q-4.971-71.189-4.971-71.150L-4.971-71.126Q-5.103-70.646-5.488-70.378Q-5.873-70.111-6.377-70.111Q-6.740-70.111-7.074-70.248Q-7.408-70.384-7.668-70.634Q-7.928-70.884-8.072-71.220Q-8.217-71.556-8.217-71.916\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M-2.788-70.189L-4.644-70.189L-4.644-70.486Q-4.370-70.486-4.202-70.533Q-4.034-70.580-4.034-70.748L-4.034-74.908Q-4.034-75.123-4.097-75.218Q-4.159-75.314-4.278-75.335Q-4.397-75.357-4.644-75.357L-4.644-75.654L-3.421-75.740L-3.421-73.037Q-3.296-73.248-3.108-73.398Q-2.921-73.548-2.694-73.632Q-2.468-73.716-2.222-73.716Q-1.054-73.716-1.054-72.638L-1.054-70.748Q-1.054-70.580-0.884-70.533Q-0.714-70.486-0.444-70.486L-0.444-70.189L-2.300-70.189L-2.300-70.486Q-2.026-70.486-1.858-70.533Q-1.690-70.580-1.690-70.748L-1.690-72.623Q-1.690-73.005-1.811-73.234Q-1.933-73.462-2.284-73.462Q-2.597-73.462-2.851-73.300Q-3.104-73.138-3.251-72.869Q-3.397-72.599-3.397-72.302L-3.397-70.748Q-3.397-70.580-3.227-70.533Q-3.058-70.486-2.788-70.486L-2.788-70.189M1.860-70.189L0.083-70.189L0.083-70.486Q0.356-70.486 0.524-70.533Q0.692-70.580 0.692-70.748L0.692-72.884Q0.692-73.099 0.636-73.195Q0.579-73.291 0.466-73.312Q0.353-73.334 0.106-73.334L0.106-73.630L1.306-73.716L1.306-70.748Q1.306-70.580 1.452-70.533Q1.599-70.486 1.860-70.486L1.860-70.189M0.419-75.111Q0.419-75.302 0.554-75.433Q0.689-75.564 0.884-75.564Q1.005-75.564 1.108-75.501Q1.212-75.439 1.274-75.335Q1.337-75.232 1.337-75.111Q1.337-74.916 1.206-74.781Q1.075-74.646 0.884-74.646Q0.685-74.646 0.552-74.779Q0.419-74.912 0.419-75.111M4.243-68.638L2.388-68.638L2.388-68.931Q2.657-68.931 2.825-68.976Q2.993-69.021 2.993-69.197L2.993-73.021Q2.993-73.228 2.837-73.281Q2.681-73.334 2.388-73.334L2.388-73.630L3.610-73.716L3.610-73.251Q3.841-73.474 4.155-73.595Q4.470-73.716 4.810-73.716Q5.282-73.716 5.687-73.470Q6.091-73.224 6.323-72.808Q6.556-72.392 6.556-71.916Q6.556-71.541 6.407-71.212Q6.259-70.884 5.989-70.632Q5.720-70.380 5.376-70.246Q5.032-70.111 4.673-70.111Q4.384-70.111 4.112-70.232Q3.841-70.353 3.634-70.564L3.634-69.197Q3.634-69.021 3.802-68.976Q3.970-68.931 4.243-68.931L4.243-68.638M3.634-72.853L3.634-71.013Q3.786-70.724 4.048-70.544Q4.310-70.365 4.618-70.365Q4.903-70.365 5.126-70.503Q5.349-70.642 5.501-70.873Q5.653-71.103 5.731-71.375Q5.810-71.646 5.810-71.916Q5.810-72.248 5.685-72.605Q5.560-72.962 5.312-73.199Q5.064-73.435 4.716-73.435Q4.392-73.435 4.097-73.279Q3.802-73.123 3.634-72.853\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M11.722-70.189L9.972-70.189L9.972-70.486Q10.671-70.486 10.859-70.966L12.660-75.791Q12.714-75.900 12.828-75.900L12.898-75.900Q13.011-75.900 13.066-75.791L14.956-70.748Q15.035-70.580 15.238-70.533Q15.441-70.486 15.753-70.486L15.753-70.189L13.531-70.189L13.531-70.486Q14.171-70.486 14.171-70.701Q14.171-70.720 14.169-70.730Q14.167-70.740 14.163-70.748L13.699-71.982L11.554-71.982L11.171-70.966Q11.167-70.951 11.162-70.921Q11.156-70.892 11.156-70.869Q11.156-70.728 11.245-70.644Q11.335-70.560 11.468-70.523Q11.601-70.486 11.722-70.486L11.722-70.189M12.628-74.845L11.660-72.279L13.585-72.279L12.628-74.845M16.761-70.654Q16.761-70.837 16.898-70.974Q17.035-71.111 17.226-71.111Q17.417-71.111 17.550-70.978Q17.683-70.845 17.683-70.654Q17.683-70.455 17.550-70.322Q17.417-70.189 17.226-70.189Q17.035-70.189 16.898-70.326Q16.761-70.462 16.761-70.654M16.761-73.181Q16.761-73.365 16.898-73.501Q17.035-73.638 17.226-73.638Q17.417-73.638 17.550-73.505Q17.683-73.373 17.683-73.181Q17.683-72.982 17.550-72.849Q17.417-72.716 17.226-72.716Q17.035-72.716 16.898-72.853Q16.761-72.990 16.761-73.181\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M23.342-70.189L21.564-70.189L21.564-70.486Q21.838-70.486 22.006-70.533Q22.174-70.580 22.174-70.748L22.174-72.884Q22.174-73.099 22.117-73.195Q22.060-73.291 21.947-73.312Q21.834-73.334 21.588-73.334L21.588-73.630L22.787-73.716L22.787-70.748Q22.787-70.580 22.933-70.533Q23.080-70.486 23.342-70.486L23.342-70.189M21.900-75.111Q21.900-75.302 22.035-75.433Q22.170-75.564 22.365-75.564Q22.486-75.564 22.590-75.501Q22.693-75.439 22.756-75.335Q22.818-75.232 22.818-75.111Q22.818-74.916 22.687-74.781Q22.556-74.646 22.365-74.646Q22.166-74.646 22.033-74.779Q21.900-74.912 21.900-75.111M25.771-70.189L23.916-70.189L23.916-70.486Q24.189-70.486 24.357-70.533Q24.525-70.580 24.525-70.748L24.525-72.884Q24.525-73.099 24.463-73.195Q24.400-73.291 24.281-73.312Q24.162-73.334 23.916-73.334L23.916-73.630L25.107-73.716L25.107-72.982Q25.221-73.197 25.414-73.365Q25.607-73.533 25.846-73.625Q26.084-73.716 26.338-73.716Q27.506-73.716 27.506-72.638L27.506-70.748Q27.506-70.580 27.676-70.533Q27.846-70.486 28.115-70.486L28.115-70.189L26.260-70.189L26.260-70.486Q26.533-70.486 26.701-70.533Q26.869-70.580 26.869-70.748L26.869-72.623Q26.869-73.005 26.748-73.234Q26.627-73.462 26.275-73.462Q25.963-73.462 25.709-73.300Q25.455-73.138 25.308-72.869Q25.162-72.599 25.162-72.302L25.162-70.748Q25.162-70.580 25.332-70.533Q25.502-70.486 25.771-70.486L25.771-70.189M30.674-71.638L28.420-71.638L28.420-72.189L30.674-72.189L30.674-71.638M31.392-71.884Q31.392-72.388 31.648-72.820Q31.904-73.251 32.340-73.503Q32.775-73.755 33.275-73.755Q33.662-73.755 34.004-73.611Q34.346-73.466 34.607-73.205Q34.869-72.943 35.012-72.607Q35.154-72.271 35.154-71.884Q35.154-71.392 34.890-70.982Q34.627-70.572 34.197-70.341Q33.767-70.111 33.275-70.111Q32.783-70.111 32.349-70.343Q31.916-70.576 31.654-70.984Q31.392-71.392 31.392-71.884M33.275-70.388Q33.732-70.388 33.984-70.611Q34.236-70.834 34.324-71.185Q34.412-71.537 34.412-71.982Q34.412-72.412 34.318-72.750Q34.224-73.087 33.971-73.294Q33.717-73.501 33.275-73.501Q32.627-73.501 32.383-73.085Q32.139-72.669 32.139-71.982Q32.139-71.537 32.226-71.185Q32.314-70.834 32.566-70.611Q32.818-70.388 33.275-70.388M37.646-70.189L35.666-70.189L35.666-70.486Q35.935-70.486 36.103-70.531Q36.271-70.576 36.271-70.748L36.271-72.884Q36.271-73.099 36.209-73.195Q36.146-73.291 36.029-73.312Q35.912-73.334 35.666-73.334L35.666-73.630L36.834-73.716L36.834-72.931Q36.912-73.142 37.064-73.328Q37.217-73.513 37.416-73.615Q37.615-73.716 37.842-73.716Q38.088-73.716 38.279-73.572Q38.471-73.427 38.471-73.197Q38.471-73.041 38.365-72.931Q38.260-72.822 38.103-72.822Q37.947-72.822 37.838-72.931Q37.728-73.041 37.728-73.197Q37.728-73.357 37.834-73.462Q37.510-73.462 37.295-73.234Q37.080-73.005 36.984-72.666Q36.889-72.326 36.889-72.021L36.889-70.748Q36.889-70.580 37.115-70.533Q37.342-70.486 37.646-70.486L37.646-70.189M40.767-70.111Q40.287-70.111 39.879-70.355Q39.471-70.599 39.232-71.013Q38.994-71.427 38.994-71.916Q38.994-72.408 39.252-72.824Q39.510-73.240 39.941-73.478Q40.373-73.716 40.865-73.716Q41.486-73.716 41.935-73.279L41.935-74.908Q41.935-75.123 41.873-75.218Q41.810-75.314 41.693-75.335Q41.576-75.357 41.330-75.357L41.330-75.654L42.553-75.740L42.553-70.931Q42.553-70.720 42.615-70.625Q42.678-70.529 42.795-70.507Q42.912-70.486 43.162-70.486L43.162-70.189L41.912-70.111L41.912-70.595Q41.447-70.111 40.767-70.111M40.834-70.365Q41.174-70.365 41.467-70.556Q41.760-70.748 41.912-71.044L41.912-72.876Q41.764-73.150 41.502-73.306Q41.240-73.462 40.928-73.462Q40.303-73.462 40.019-73.015Q39.736-72.568 39.736-71.908Q39.736-71.263 39.988-70.814Q40.240-70.365 40.834-70.365M43.670-71.943Q43.670-72.423 43.902-72.839Q44.135-73.255 44.545-73.505Q44.955-73.755 45.431-73.755Q46.162-73.755 46.560-73.314Q46.959-72.873 46.959-72.142Q46.959-72.037 46.865-72.013L44.416-72.013L44.416-71.943Q44.416-71.533 44.537-71.177Q44.658-70.822 44.930-70.605Q45.201-70.388 45.631-70.388Q45.994-70.388 46.291-70.617Q46.588-70.845 46.689-71.197Q46.697-71.244 46.783-71.259L46.865-71.259Q46.959-71.232 46.959-71.150Q46.959-71.142 46.951-71.111Q46.889-70.884 46.750-70.701Q46.611-70.517 46.420-70.384Q46.228-70.251 46.010-70.181Q45.791-70.111 45.553-70.111Q45.181-70.111 44.844-70.248Q44.506-70.384 44.238-70.636Q43.971-70.888 43.820-71.228Q43.670-71.568 43.670-71.943M44.424-72.251L46.385-72.251Q46.385-72.556 46.283-72.847Q46.181-73.138 45.965-73.320Q45.748-73.501 45.431-73.501Q45.131-73.501 44.900-73.314Q44.670-73.126 44.547-72.835Q44.424-72.544 44.424-72.251M49.455-70.189L47.474-70.189L47.474-70.486Q47.744-70.486 47.912-70.531Q48.080-70.576 48.080-70.748L48.080-72.884Q48.080-73.099 48.017-73.195Q47.955-73.291 47.838-73.312Q47.721-73.334 47.474-73.334L47.474-73.630L48.642-73.716L48.642-72.931Q48.721-73.142 48.873-73.328Q49.025-73.513 49.224-73.615Q49.424-73.716 49.650-73.716Q49.896-73.716 50.088-73.572Q50.279-73.427 50.279-73.197Q50.279-73.041 50.174-72.931Q50.068-72.822 49.912-72.822Q49.756-72.822 49.646-72.931Q49.537-73.041 49.537-73.197Q49.537-73.357 49.642-73.462Q49.318-73.462 49.103-73.234Q48.889-73.005 48.793-72.666Q48.697-72.326 48.697-72.021L48.697-70.748Q48.697-70.580 48.924-70.533Q49.150-70.486 49.455-70.486L49.455-70.189M51.346-68.783Q51.346-68.806 51.377-68.853Q51.670-69.115 51.836-69.482Q52.002-69.849 52.002-70.236L52.002-70.294Q51.873-70.189 51.705-70.189Q51.514-70.189 51.377-70.322Q51.240-70.455 51.240-70.654Q51.240-70.845 51.377-70.978Q51.514-71.111 51.705-71.111Q52.006-71.111 52.131-70.841Q52.256-70.572 52.256-70.236Q52.256-69.787 52.074-69.373Q51.892-68.959 51.553-68.662Q51.529-68.638 51.490-68.638Q51.443-68.638 51.394-68.683Q51.346-68.728 51.346-68.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M1.325-60.697L1.325-61.919Q1.325-61.947 1.357-61.978Q1.388-62.009 1.411-62.009L1.517-62.009Q1.587-62.009 1.603-61.947Q1.665-61.627 1.804-61.386Q1.942-61.146 2.175-61.005Q2.407-60.865 2.716-60.865Q2.954-60.865 3.163-60.925Q3.372-60.986 3.509-61.134Q3.646-61.283 3.646-61.529Q3.646-61.783 3.435-61.949Q3.224-62.115 2.954-62.169L2.333-62.283Q1.927-62.361 1.626-62.617Q1.325-62.873 1.325-63.248Q1.325-63.615 1.526-63.837Q1.728-64.060 2.052-64.158Q2.376-64.255 2.716-64.255Q3.181-64.255 3.478-64.048L3.700-64.232Q3.724-64.255 3.755-64.255L3.806-64.255Q3.837-64.255 3.864-64.228Q3.892-64.201 3.892-64.169L3.892-63.185Q3.892-63.154 3.866-63.125Q3.841-63.095 3.806-63.095L3.700-63.095Q3.665-63.095 3.638-63.123Q3.610-63.150 3.610-63.185Q3.610-63.584 3.358-63.804Q3.107-64.025 2.708-64.025Q2.353-64.025 2.069-63.902Q1.786-63.779 1.786-63.474Q1.786-63.255 1.987-63.123Q2.189-62.990 2.435-62.947L3.060-62.834Q3.489-62.744 3.798-62.447Q4.107-62.150 4.107-61.736Q4.107-61.166 3.708-60.888Q3.310-60.611 2.716-60.611Q2.165-60.611 1.814-60.947L1.517-60.634Q1.493-60.611 1.458-60.611L1.411-60.611Q1.388-60.611 1.357-60.642Q1.325-60.673 1.325-60.697M6.564-60.689L4.708-60.689L4.708-60.986Q4.982-60.986 5.149-61.033Q5.317-61.080 5.317-61.248L5.317-63.384Q5.317-63.599 5.255-63.695Q5.192-63.791 5.073-63.812Q4.954-63.834 4.708-63.834L4.708-64.130L5.899-64.216L5.899-63.482Q6.013-63.697 6.206-63.865Q6.399-64.033 6.638-64.125Q6.876-64.216 7.130-64.216Q8.091-64.216 8.267-63.505Q8.450-63.834 8.778-64.025Q9.107-64.216 9.485-64.216Q10.661-64.216 10.661-63.138L10.661-61.248Q10.661-61.080 10.829-61.033Q10.997-60.986 11.267-60.986L11.267-60.689L9.411-60.689L9.411-60.986Q9.685-60.986 9.853-61.031Q10.021-61.076 10.021-61.248L10.021-63.123Q10.021-63.509 9.896-63.736Q9.771-63.962 9.419-63.962Q9.114-63.962 8.858-63.800Q8.603-63.638 8.454-63.369Q8.306-63.099 8.306-62.802L8.306-61.248Q8.306-61.080 8.476-61.033Q8.646-60.986 8.915-60.986L8.915-60.689L7.060-60.689L7.060-60.986Q7.333-60.986 7.501-61.033Q7.669-61.080 7.669-61.248L7.669-63.123Q7.669-63.509 7.544-63.736Q7.419-63.962 7.067-63.962Q6.763-63.962 6.507-63.800Q6.251-63.638 6.103-63.369Q5.954-63.099 5.954-62.802L5.954-61.248Q5.954-61.080 6.124-61.033Q6.294-60.986 6.564-60.986L6.564-60.689M11.810-61.521Q11.810-62.005 12.212-62.300Q12.614-62.595 13.165-62.714Q13.716-62.834 14.208-62.834L14.208-63.123Q14.208-63.349 14.093-63.556Q13.978-63.763 13.780-63.882Q13.583-64.001 13.353-64.001Q12.927-64.001 12.642-63.896Q12.712-63.869 12.759-63.814Q12.806-63.759 12.831-63.689Q12.857-63.619 12.857-63.544Q12.857-63.439 12.806-63.347Q12.755-63.255 12.663-63.205Q12.571-63.154 12.466-63.154Q12.360-63.154 12.269-63.205Q12.177-63.255 12.126-63.347Q12.075-63.439 12.075-63.544Q12.075-63.962 12.464-64.109Q12.853-64.255 13.353-64.255Q13.685-64.255 14.038-64.125Q14.392-63.994 14.620-63.740Q14.849-63.486 14.849-63.138L14.849-61.337Q14.849-61.205 14.921-61.095Q14.993-60.986 15.122-60.986Q15.247-60.986 15.315-61.091Q15.384-61.197 15.384-61.337L15.384-61.849L15.665-61.849L15.665-61.337Q15.665-61.134 15.548-60.976Q15.431-60.818 15.249-60.734Q15.067-60.650 14.864-60.650Q14.634-60.650 14.482-60.822Q14.329-60.994 14.298-61.224Q14.138-60.943 13.829-60.777Q13.521-60.611 13.169-60.611Q12.657-60.611 12.233-60.834Q11.810-61.056 11.810-61.521M12.497-61.521Q12.497-61.236 12.724-61.050Q12.950-60.865 13.243-60.865Q13.489-60.865 13.714-60.982Q13.939-61.099 14.073-61.302Q14.208-61.505 14.208-61.759L14.208-62.591Q13.942-62.591 13.657-62.537Q13.372-62.482 13.101-62.353Q12.829-62.224 12.663-62.017Q12.497-61.810 12.497-61.521M17.872-60.689L16.040-60.689L16.040-60.986Q16.314-60.986 16.482-61.033Q16.649-61.080 16.649-61.248L16.649-65.408Q16.649-65.623 16.587-65.718Q16.524-65.814 16.405-65.835Q16.286-65.857 16.040-65.857L16.040-66.154L17.263-66.240L17.263-61.248Q17.263-61.080 17.431-61.033Q17.599-60.986 17.872-60.986L17.872-60.689M20.232-60.689L18.399-60.689L18.399-60.986Q18.673-60.986 18.841-61.033Q19.009-61.080 19.009-61.248L19.009-65.408Q19.009-65.623 18.946-65.718Q18.884-65.814 18.765-65.835Q18.646-65.857 18.399-65.857L18.399-66.154L19.622-66.240L19.622-61.248Q19.622-61.080 19.790-61.033Q19.958-60.986 20.232-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M23.567-62.416Q23.567-62.912 23.817-63.337Q24.067-63.763 24.487-64.009Q24.907-64.255 25.407-64.255Q25.946-64.255 26.337-64.130Q26.727-64.005 26.727-63.591Q26.727-63.486 26.677-63.394Q26.626-63.302 26.534-63.252Q26.442-63.201 26.333-63.201Q26.227-63.201 26.136-63.252Q26.044-63.302 25.993-63.394Q25.942-63.486 25.942-63.591Q25.942-63.814 26.110-63.919Q25.888-63.978 25.415-63.978Q25.118-63.978 24.903-63.839Q24.688-63.701 24.557-63.470Q24.427-63.240 24.368-62.970Q24.309-62.701 24.309-62.416Q24.309-62.021 24.442-61.671Q24.575-61.322 24.847-61.105Q25.118-60.888 25.516-60.888Q25.891-60.888 26.167-61.105Q26.442-61.322 26.544-61.681Q26.559-61.744 26.622-61.744L26.727-61.744Q26.763-61.744 26.788-61.716Q26.813-61.689 26.813-61.650L26.813-61.627Q26.681-61.146 26.296-60.878Q25.911-60.611 25.407-60.611Q25.044-60.611 24.710-60.748Q24.376-60.884 24.116-61.134Q23.856-61.384 23.712-61.720Q23.567-62.056 23.567-62.416M27.399-61.521Q27.399-62.005 27.802-62.300Q28.204-62.595 28.755-62.714Q29.306-62.834 29.798-62.834L29.798-63.123Q29.798-63.349 29.682-63.556Q29.567-63.763 29.370-63.882Q29.173-64.001 28.942-64.001Q28.516-64.001 28.231-63.896Q28.302-63.869 28.349-63.814Q28.395-63.759 28.421-63.689Q28.446-63.619 28.446-63.544Q28.446-63.439 28.395-63.347Q28.345-63.255 28.253-63.205Q28.161-63.154 28.056-63.154Q27.950-63.154 27.858-63.205Q27.766-63.255 27.716-63.347Q27.665-63.439 27.665-63.544Q27.665-63.962 28.054-64.109Q28.442-64.255 28.942-64.255Q29.274-64.255 29.628-64.125Q29.981-63.994 30.210-63.740Q30.438-63.486 30.438-63.138L30.438-61.337Q30.438-61.205 30.511-61.095Q30.583-60.986 30.712-60.986Q30.837-60.986 30.905-61.091Q30.974-61.197 30.974-61.337L30.974-61.849L31.255-61.849L31.255-61.337Q31.255-61.134 31.138-60.976Q31.020-60.818 30.839-60.734Q30.657-60.650 30.454-60.650Q30.224-60.650 30.071-60.822Q29.919-60.994 29.888-61.224Q29.727-60.943 29.419-60.777Q29.110-60.611 28.759-60.611Q28.247-60.611 27.823-60.834Q27.399-61.056 27.399-61.521M28.087-61.521Q28.087-61.236 28.313-61.050Q28.540-60.865 28.833-60.865Q29.079-60.865 29.304-60.982Q29.528-61.099 29.663-61.302Q29.798-61.505 29.798-61.759L29.798-62.591Q29.532-62.591 29.247-62.537Q28.962-62.482 28.690-62.353Q28.419-62.224 28.253-62.017Q28.087-61.810 28.087-61.521M31.591-62.416Q31.591-62.912 31.841-63.337Q32.091-63.763 32.511-64.009Q32.931-64.255 33.431-64.255Q33.970-64.255 34.360-64.130Q34.751-64.005 34.751-63.591Q34.751-63.486 34.700-63.394Q34.649-63.302 34.557-63.252Q34.466-63.201 34.356-63.201Q34.251-63.201 34.159-63.252Q34.067-63.302 34.016-63.394Q33.966-63.486 33.966-63.591Q33.966-63.814 34.134-63.919Q33.911-63.978 33.438-63.978Q33.141-63.978 32.927-63.839Q32.712-63.701 32.581-63.470Q32.450-63.240 32.391-62.970Q32.333-62.701 32.333-62.416Q32.333-62.021 32.466-61.671Q32.599-61.322 32.870-61.105Q33.141-60.888 33.540-60.888Q33.915-60.888 34.190-61.105Q34.466-61.322 34.567-61.681Q34.583-61.744 34.645-61.744L34.751-61.744Q34.786-61.744 34.811-61.716Q34.837-61.689 34.837-61.650L34.837-61.627Q34.704-61.146 34.319-60.878Q33.934-60.611 33.431-60.611Q33.067-60.611 32.733-60.748Q32.399-60.884 32.140-61.134Q31.880-61.384 31.735-61.720Q31.591-62.056 31.591-62.416\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-30.698 7.528)\">\u003Cpath d=\"M37.024-60.689L35.169-60.689L35.169-60.986Q35.442-60.986 35.610-61.033Q35.778-61.080 35.778-61.248L35.778-65.408Q35.778-65.623 35.715-65.718Q35.653-65.814 35.534-65.835Q35.415-65.857 35.169-65.857L35.169-66.154L36.391-66.240L36.391-63.537Q36.516-63.748 36.704-63.898Q36.891-64.048 37.118-64.132Q37.344-64.216 37.590-64.216Q38.758-64.216 38.758-63.138L38.758-61.248Q38.758-61.080 38.928-61.033Q39.098-60.986 39.368-60.986L39.368-60.689L37.512-60.689L37.512-60.986Q37.786-60.986 37.954-61.033Q38.122-61.080 38.122-61.248L38.122-63.123Q38.122-63.505 38.001-63.734Q37.879-63.962 37.528-63.962Q37.215-63.962 36.961-63.800Q36.708-63.638 36.561-63.369Q36.415-63.099 36.415-62.802L36.415-61.248Q36.415-61.080 36.585-61.033Q36.754-60.986 37.024-60.986L37.024-60.689M39.813-62.443Q39.813-62.923 40.045-63.339Q40.278-63.755 40.688-64.005Q41.098-64.255 41.575-64.255Q42.305-64.255 42.704-63.814Q43.102-63.373 43.102-62.642Q43.102-62.537 43.008-62.513L40.559-62.513L40.559-62.443Q40.559-62.033 40.680-61.677Q40.801-61.322 41.073-61.105Q41.344-60.888 41.774-60.888Q42.137-60.888 42.434-61.117Q42.731-61.345 42.833-61.697Q42.840-61.744 42.926-61.759L43.008-61.759Q43.102-61.732 43.102-61.650Q43.102-61.642 43.094-61.611Q43.032-61.384 42.893-61.201Q42.754-61.017 42.563-60.884Q42.372-60.752 42.153-60.681Q41.934-60.611 41.696-60.611Q41.325-60.611 40.987-60.748Q40.649-60.884 40.381-61.136Q40.114-61.388 39.963-61.728Q39.813-62.068 39.813-62.443M40.567-62.752L42.528-62.752Q42.528-63.056 42.426-63.347Q42.325-63.638 42.108-63.820Q41.891-64.001 41.575-64.001Q41.274-64.001 41.044-63.814Q40.813-63.627 40.690-63.335Q40.567-63.044 40.567-62.752\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-15.165h113.81v-22.762h-113.81Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-36.78 36.143)\">\u003Cpath d=\"M-8.217-62.416Q-8.217-62.912-7.967-63.337Q-7.717-63.763-7.297-64.009Q-6.877-64.255-6.377-64.255Q-5.838-64.255-5.447-64.130Q-5.057-64.005-5.057-63.591Q-5.057-63.486-5.107-63.394Q-5.158-63.302-5.250-63.252Q-5.342-63.201-5.451-63.201Q-5.557-63.201-5.648-63.252Q-5.740-63.302-5.791-63.394Q-5.842-63.486-5.842-63.591Q-5.842-63.814-5.674-63.919Q-5.896-63.978-6.369-63.978Q-6.666-63.978-6.881-63.839Q-7.096-63.701-7.227-63.470Q-7.357-63.240-7.416-62.970Q-7.475-62.701-7.475-62.416Q-7.475-62.021-7.342-61.671Q-7.209-61.322-6.937-61.105Q-6.666-60.888-6.268-60.888Q-5.893-60.888-5.617-61.105Q-5.342-61.322-5.240-61.681Q-5.225-61.744-5.162-61.744L-5.057-61.744Q-5.021-61.744-4.996-61.716Q-4.971-61.689-4.971-61.650L-4.971-61.627Q-5.103-61.146-5.488-60.878Q-5.873-60.611-6.377-60.611Q-6.740-60.611-7.074-60.748Q-7.408-60.884-7.668-61.134Q-7.928-61.384-8.072-61.720Q-8.217-62.056-8.217-62.416\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.78 36.143)\">\u003Cpath d=\"M-2.788-60.689L-4.644-60.689L-4.644-60.986Q-4.370-60.986-4.202-61.033Q-4.034-61.080-4.034-61.248L-4.034-65.408Q-4.034-65.623-4.097-65.718Q-4.159-65.814-4.278-65.835Q-4.397-65.857-4.644-65.857L-4.644-66.154L-3.421-66.240L-3.421-63.537Q-3.296-63.748-3.108-63.898Q-2.921-64.048-2.694-64.132Q-2.468-64.216-2.222-64.216Q-1.054-64.216-1.054-63.138L-1.054-61.248Q-1.054-61.080-0.884-61.033Q-0.714-60.986-0.444-60.986L-0.444-60.689L-2.300-60.689L-2.300-60.986Q-2.026-60.986-1.858-61.033Q-1.690-61.080-1.690-61.248L-1.690-63.123Q-1.690-63.505-1.811-63.734Q-1.933-63.962-2.284-63.962Q-2.597-63.962-2.851-63.800Q-3.104-63.638-3.251-63.369Q-3.397-63.099-3.397-62.802L-3.397-61.248Q-3.397-61.080-3.227-61.033Q-3.058-60.986-2.788-60.986L-2.788-60.689M1.860-60.689L0.083-60.689L0.083-60.986Q0.356-60.986 0.524-61.033Q0.692-61.080 0.692-61.248L0.692-63.384Q0.692-63.599 0.636-63.695Q0.579-63.791 0.466-63.812Q0.353-63.834 0.106-63.834L0.106-64.130L1.306-64.216L1.306-61.248Q1.306-61.080 1.452-61.033Q1.599-60.986 1.860-60.986L1.860-60.689M0.419-65.611Q0.419-65.802 0.554-65.933Q0.689-66.064 0.884-66.064Q1.005-66.064 1.108-66.001Q1.212-65.939 1.274-65.835Q1.337-65.732 1.337-65.611Q1.337-65.416 1.206-65.281Q1.075-65.146 0.884-65.146Q0.685-65.146 0.552-65.279Q0.419-65.412 0.419-65.611M4.243-59.138L2.388-59.138L2.388-59.431Q2.657-59.431 2.825-59.476Q2.993-59.521 2.993-59.697L2.993-63.521Q2.993-63.728 2.837-63.781Q2.681-63.834 2.388-63.834L2.388-64.130L3.610-64.216L3.610-63.752Q3.841-63.974 4.155-64.095Q4.470-64.216 4.810-64.216Q5.282-64.216 5.687-63.970Q6.091-63.724 6.323-63.308Q6.556-62.892 6.556-62.416Q6.556-62.041 6.407-61.712Q6.259-61.384 5.989-61.132Q5.720-60.880 5.376-60.746Q5.032-60.611 4.673-60.611Q4.384-60.611 4.112-60.732Q3.841-60.853 3.634-61.064L3.634-59.697Q3.634-59.521 3.802-59.476Q3.970-59.431 4.243-59.431L4.243-59.138M3.634-63.353L3.634-61.513Q3.786-61.224 4.048-61.044Q4.310-60.865 4.618-60.865Q4.903-60.865 5.126-61.003Q5.349-61.142 5.501-61.373Q5.653-61.603 5.731-61.875Q5.810-62.146 5.810-62.416Q5.810-62.748 5.685-63.105Q5.560-63.462 5.312-63.699Q5.064-63.935 4.716-63.935Q4.392-63.935 4.097-63.779Q3.802-63.623 3.634-63.353\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.78 36.143)\">\u003Cpath d=\"M13.331-60.689L10.050-60.689L10.050-60.986Q10.374-60.986 10.617-61.033Q10.859-61.080 10.859-61.248L10.859-65.591Q10.859-65.763 10.617-65.810Q10.374-65.857 10.050-65.857L10.050-66.154L13.097-66.154Q13.523-66.154 13.956-66Q14.390-65.845 14.685-65.537Q14.980-65.228 14.980-64.794Q14.980-64.541 14.855-64.324Q14.730-64.107 14.529-63.951Q14.328-63.794 14.095-63.695Q13.863-63.595 13.605-63.544Q13.980-63.509 14.359-63.332Q14.738-63.154 14.978-62.855Q15.218-62.556 15.218-62.162Q15.218-61.709 14.935-61.375Q14.652-61.041 14.216-60.865Q13.781-60.689 13.331-60.689M11.570-63.400L11.570-61.248Q11.570-61.076 11.662-61.031Q11.753-60.986 11.972-60.986L13.097-60.986Q13.335-60.986 13.570-61.074Q13.804-61.162 13.990-61.322Q14.175-61.482 14.277-61.695Q14.378-61.908 14.378-62.162Q14.378-62.482 14.226-62.767Q14.074-63.052 13.804-63.226Q13.535-63.400 13.218-63.400L11.570-63.400M11.570-65.591L11.570-63.658L12.859-63.658Q13.101-63.658 13.339-63.740Q13.578-63.822 13.761-63.968Q13.945-64.115 14.058-64.332Q14.171-64.548 14.171-64.794Q14.171-65.005 14.085-65.207Q13.999-65.408 13.853-65.550Q13.706-65.693 13.511-65.775Q13.316-65.857 13.097-65.857L11.972-65.857Q11.753-65.857 11.662-65.814Q11.570-65.771 11.570-65.591M16.417-61.154Q16.417-61.337 16.554-61.474Q16.691-61.611 16.882-61.611Q17.074-61.611 17.206-61.478Q17.339-61.345 17.339-61.154Q17.339-60.955 17.206-60.822Q17.074-60.689 16.882-60.689Q16.691-60.689 16.554-60.826Q16.417-60.962 16.417-61.154M16.417-63.681Q16.417-63.865 16.554-64.001Q16.691-64.138 16.882-64.138Q17.074-64.138 17.206-64.005Q17.339-63.873 17.339-63.681Q17.339-63.482 17.206-63.349Q17.074-63.216 16.882-63.216Q16.691-63.216 16.554-63.353Q16.417-63.490 16.417-63.681\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.78 36.143)\">\u003Cpath d=\"M21.132-62.384Q21.132-62.888 21.388-63.320Q21.644-63.752 22.080-64.003Q22.515-64.255 23.015-64.255Q23.402-64.255 23.744-64.111Q24.085-63.966 24.347-63.705Q24.609-63.443 24.751-63.107Q24.894-62.771 24.894-62.384Q24.894-61.892 24.630-61.482Q24.367-61.072 23.937-60.841Q23.507-60.611 23.015-60.611Q22.523-60.611 22.089-60.843Q21.656-61.076 21.394-61.484Q21.132-61.892 21.132-62.384M23.015-60.888Q23.472-60.888 23.724-61.111Q23.976-61.334 24.064-61.685Q24.152-62.037 24.152-62.482Q24.152-62.912 24.058-63.250Q23.964-63.587 23.710-63.794Q23.456-64.001 23.015-64.001Q22.367-64.001 22.123-63.585Q21.878-63.169 21.878-62.482Q21.878-62.037 21.966-61.685Q22.054-61.334 22.306-61.111Q22.558-60.888 23.015-60.888M26.062-61.642L26.062-63.384Q26.062-63.599 25.999-63.695Q25.937-63.791 25.818-63.812Q25.699-63.834 25.453-63.834L25.453-64.130L26.699-64.216L26.699-61.666L26.699-61.642Q26.699-61.330 26.753-61.168Q26.808-61.005 26.958-60.935Q27.109-60.865 27.429-60.865Q27.859-60.865 28.132-61.203Q28.406-61.541 28.406-61.986L28.406-63.384Q28.406-63.599 28.343-63.695Q28.281-63.791 28.162-63.812Q28.042-63.834 27.796-63.834L27.796-64.130L29.042-64.216L29.042-61.431Q29.042-61.220 29.105-61.125Q29.167-61.029 29.287-61.007Q29.406-60.986 29.652-60.986L29.652-60.689L28.429-60.611L28.429-61.232Q28.261-60.943 27.980-60.777Q27.699-60.611 27.378-60.611Q26.062-60.611 26.062-61.642M30.722-61.650L30.722-63.841L30.019-63.841L30.019-64.095Q30.374-64.095 30.617-64.328Q30.859-64.560 30.970-64.908Q31.081-65.255 31.081-65.611L31.363-65.611L31.363-64.138L32.539-64.138L32.539-63.841L31.363-63.841L31.363-61.666Q31.363-61.345 31.482-61.117Q31.601-60.888 31.882-60.888Q32.062-60.888 32.179-61.011Q32.296-61.134 32.349-61.314Q32.402-61.494 32.402-61.666L32.402-62.138L32.683-62.138L32.683-61.650Q32.683-61.396 32.578-61.156Q32.472-60.916 32.275-60.763Q32.078-60.611 31.820-60.611Q31.503-60.611 31.251-60.734Q30.999-60.857 30.861-61.091Q30.722-61.326 30.722-61.650M35.515-62.138L33.261-62.138L33.261-62.689L35.515-62.689L35.515-62.138M36.234-62.384Q36.234-62.888 36.490-63.320Q36.746-63.752 37.181-64.003Q37.617-64.255 38.117-64.255Q38.503-64.255 38.845-64.111Q39.187-63.966 39.449-63.705Q39.710-63.443 39.853-63.107Q39.996-62.771 39.996-62.384Q39.996-61.892 39.732-61.482Q39.468-61.072 39.039-60.841Q38.609-60.611 38.117-60.611Q37.624-60.611 37.191-60.843Q36.757-61.076 36.496-61.484Q36.234-61.892 36.234-62.384M38.117-60.888Q38.574-60.888 38.826-61.111Q39.078-61.334 39.165-61.685Q39.253-62.037 39.253-62.482Q39.253-62.912 39.160-63.250Q39.066-63.587 38.812-63.794Q38.558-64.001 38.117-64.001Q37.468-64.001 37.224-63.585Q36.980-63.169 36.980-62.482Q36.980-62.037 37.068-61.685Q37.156-61.334 37.408-61.111Q37.660-60.888 38.117-60.888M42.546-60.689L40.562-60.689L40.562-60.986Q40.835-60.986 41.003-61.033Q41.171-61.080 41.171-61.248L41.171-63.841L40.531-63.841L40.531-64.138L41.171-64.138L41.171-65.072Q41.171-65.337 41.289-65.574Q41.406-65.810 41.599-65.974Q41.792-66.138 42.040-66.230Q42.289-66.322 42.554-66.322Q42.839-66.322 43.064-66.164Q43.289-66.005 43.289-65.728Q43.289-65.572 43.183-65.462Q43.078-65.353 42.914-65.353Q42.757-65.353 42.648-65.462Q42.539-65.572 42.539-65.728Q42.539-65.935 42.699-66.041Q42.601-66.064 42.507-66.064Q42.277-66.064 42.105-65.908Q41.933-65.751 41.847-65.515Q41.761-65.279 41.761-65.056L41.761-64.138L42.730-64.138L42.730-63.841L41.785-63.841L41.785-61.248Q41.785-61.080 42.011-61.033Q42.238-60.986 42.546-60.986L42.546-60.689M45.187-62.138L42.933-62.138L42.933-62.689L45.187-62.689L45.187-62.138M45.906-62.384Q45.906-62.888 46.162-63.320Q46.417-63.752 46.853-64.003Q47.289-64.255 47.789-64.255Q48.175-64.255 48.517-64.111Q48.859-63.966 49.121-63.705Q49.382-63.443 49.525-63.107Q49.667-62.771 49.667-62.384Q49.667-61.892 49.404-61.482Q49.140-61.072 48.710-60.841Q48.281-60.611 47.789-60.611Q47.296-60.611 46.863-60.843Q46.429-61.076 46.167-61.484Q45.906-61.892 45.906-62.384M47.789-60.888Q48.246-60.888 48.498-61.111Q48.749-61.334 48.837-61.685Q48.925-62.037 48.925-62.482Q48.925-62.912 48.831-63.250Q48.738-63.587 48.484-63.794Q48.230-64.001 47.789-64.001Q47.140-64.001 46.896-63.585Q46.652-63.169 46.652-62.482Q46.652-62.037 46.740-61.685Q46.828-61.334 47.080-61.111Q47.331-60.888 47.789-60.888M52.160-60.689L50.179-60.689L50.179-60.986Q50.449-60.986 50.617-61.031Q50.785-61.076 50.785-61.248L50.785-63.384Q50.785-63.599 50.722-63.695Q50.660-63.791 50.542-63.812Q50.425-63.834 50.179-63.834L50.179-64.130L51.347-64.216L51.347-63.431Q51.425-63.642 51.578-63.828Q51.730-64.013 51.929-64.115Q52.128-64.216 52.355-64.216Q52.601-64.216 52.792-64.072Q52.984-63.927 52.984-63.697Q52.984-63.541 52.878-63.431Q52.773-63.322 52.617-63.322Q52.460-63.322 52.351-63.431Q52.242-63.541 52.242-63.697Q52.242-63.857 52.347-63.962Q52.023-63.962 51.808-63.734Q51.593-63.505 51.498-63.166Q51.402-62.826 51.402-62.521L51.402-61.248Q51.402-61.080 51.628-61.033Q51.855-60.986 52.160-60.986L52.160-60.689M55.281-60.611Q54.800-60.611 54.392-60.855Q53.984-61.099 53.746-61.513Q53.507-61.927 53.507-62.416Q53.507-62.908 53.765-63.324Q54.023-63.740 54.455-63.978Q54.886-64.216 55.378-64.216Q55.999-64.216 56.449-63.779L56.449-65.408Q56.449-65.623 56.386-65.718Q56.324-65.814 56.206-65.835Q56.089-65.857 55.843-65.857L55.843-66.154L57.066-66.240L57.066-61.431Q57.066-61.220 57.128-61.125Q57.191-61.029 57.308-61.007Q57.425-60.986 57.675-60.986L57.675-60.689L56.425-60.611L56.425-61.095Q55.960-60.611 55.281-60.611M55.347-60.865Q55.687-60.865 55.980-61.056Q56.273-61.248 56.425-61.544L56.425-63.377Q56.277-63.650 56.015-63.806Q55.753-63.962 55.441-63.962Q54.816-63.962 54.533-63.515Q54.249-63.068 54.249-62.408Q54.249-61.763 54.501-61.314Q54.753-60.865 55.347-60.865M58.183-62.443Q58.183-62.923 58.415-63.339Q58.648-63.755 59.058-64.005Q59.468-64.255 59.945-64.255Q60.675-64.255 61.074-63.814Q61.472-63.373 61.472-62.642Q61.472-62.537 61.378-62.513L58.929-62.513L58.929-62.443Q58.929-62.033 59.050-61.677Q59.171-61.322 59.443-61.105Q59.714-60.888 60.144-60.888Q60.507-60.888 60.804-61.117Q61.101-61.345 61.203-61.697Q61.210-61.744 61.296-61.759L61.378-61.759Q61.472-61.732 61.472-61.650Q61.472-61.642 61.464-61.611Q61.402-61.384 61.263-61.201Q61.124-61.017 60.933-60.884Q60.742-60.752 60.523-60.681Q60.304-60.611 60.066-60.611Q59.695-60.611 59.357-60.748Q59.019-60.884 58.751-61.136Q58.484-61.388 58.333-61.728Q58.183-62.068 58.183-62.443M58.937-62.752L60.898-62.752Q60.898-63.056 60.796-63.347Q60.695-63.638 60.478-63.820Q60.261-64.001 59.945-64.001Q59.644-64.001 59.414-63.814Q59.183-63.627 59.060-63.335Q58.937-63.044 58.937-62.752M63.968-60.689L61.988-60.689L61.988-60.986Q62.257-60.986 62.425-61.031Q62.593-61.076 62.593-61.248L62.593-63.384Q62.593-63.599 62.531-63.695Q62.468-63.791 62.351-63.812Q62.234-63.834 61.988-63.834L61.988-64.130L63.156-64.216L63.156-63.431Q63.234-63.642 63.386-63.828Q63.539-64.013 63.738-64.115Q63.937-64.216 64.164-64.216Q64.410-64.216 64.601-64.072Q64.792-63.927 64.792-63.697Q64.792-63.541 64.687-63.431Q64.582-63.322 64.425-63.322Q64.269-63.322 64.160-63.431Q64.050-63.541 64.050-63.697Q64.050-63.857 64.156-63.962Q63.831-63.962 63.617-63.734Q63.402-63.505 63.306-63.166Q63.210-62.826 63.210-62.521L63.210-61.248Q63.210-61.080 63.437-61.033Q63.664-60.986 63.968-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403 19.236h113.81V-4.041h-113.81Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M-8.217-71.916Q-8.217-72.412-7.967-72.837Q-7.717-73.263-7.297-73.509Q-6.877-73.755-6.377-73.755Q-5.838-73.755-5.447-73.630Q-5.057-73.505-5.057-73.091Q-5.057-72.986-5.107-72.894Q-5.158-72.802-5.250-72.751Q-5.342-72.701-5.451-72.701Q-5.557-72.701-5.648-72.751Q-5.740-72.802-5.791-72.894Q-5.842-72.986-5.842-73.091Q-5.842-73.314-5.674-73.419Q-5.896-73.478-6.369-73.478Q-6.666-73.478-6.881-73.339Q-7.096-73.201-7.227-72.970Q-7.357-72.740-7.416-72.470Q-7.475-72.201-7.475-71.916Q-7.475-71.521-7.342-71.171Q-7.209-70.822-6.937-70.605Q-6.666-70.388-6.268-70.388Q-5.893-70.388-5.617-70.605Q-5.342-70.822-5.240-71.181Q-5.225-71.244-5.162-71.244L-5.057-71.244Q-5.021-71.244-4.996-71.216Q-4.971-71.189-4.971-71.150L-4.971-71.126Q-5.103-70.646-5.488-70.378Q-5.873-70.111-6.377-70.111Q-6.740-70.111-7.074-70.248Q-7.408-70.384-7.668-70.634Q-7.928-70.884-8.072-71.220Q-8.217-71.556-8.217-71.916\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M-2.788-70.189L-4.644-70.189L-4.644-70.486Q-4.370-70.486-4.202-70.533Q-4.034-70.580-4.034-70.748L-4.034-74.908Q-4.034-75.123-4.097-75.218Q-4.159-75.314-4.278-75.335Q-4.397-75.357-4.644-75.357L-4.644-75.654L-3.421-75.740L-3.421-73.037Q-3.296-73.248-3.108-73.398Q-2.921-73.548-2.694-73.632Q-2.468-73.716-2.222-73.716Q-1.054-73.716-1.054-72.638L-1.054-70.748Q-1.054-70.580-0.884-70.533Q-0.714-70.486-0.444-70.486L-0.444-70.189L-2.300-70.189L-2.300-70.486Q-2.026-70.486-1.858-70.533Q-1.690-70.580-1.690-70.748L-1.690-72.623Q-1.690-73.005-1.811-73.234Q-1.933-73.462-2.284-73.462Q-2.597-73.462-2.851-73.300Q-3.104-73.138-3.251-72.869Q-3.397-72.599-3.397-72.302L-3.397-70.748Q-3.397-70.580-3.227-70.533Q-3.058-70.486-2.788-70.486L-2.788-70.189M1.860-70.189L0.083-70.189L0.083-70.486Q0.356-70.486 0.524-70.533Q0.692-70.580 0.692-70.748L0.692-72.884Q0.692-73.099 0.636-73.195Q0.579-73.291 0.466-73.312Q0.353-73.334 0.106-73.334L0.106-73.630L1.306-73.716L1.306-70.748Q1.306-70.580 1.452-70.533Q1.599-70.486 1.860-70.486L1.860-70.189M0.419-75.111Q0.419-75.302 0.554-75.433Q0.689-75.564 0.884-75.564Q1.005-75.564 1.108-75.501Q1.212-75.439 1.274-75.335Q1.337-75.232 1.337-75.111Q1.337-74.916 1.206-74.781Q1.075-74.646 0.884-74.646Q0.685-74.646 0.552-74.779Q0.419-74.912 0.419-75.111M4.243-68.638L2.388-68.638L2.388-68.931Q2.657-68.931 2.825-68.976Q2.993-69.021 2.993-69.197L2.993-73.021Q2.993-73.228 2.837-73.281Q2.681-73.334 2.388-73.334L2.388-73.630L3.610-73.716L3.610-73.251Q3.841-73.474 4.155-73.595Q4.470-73.716 4.810-73.716Q5.282-73.716 5.687-73.470Q6.091-73.224 6.323-72.808Q6.556-72.392 6.556-71.916Q6.556-71.541 6.407-71.212Q6.259-70.884 5.989-70.632Q5.720-70.380 5.376-70.246Q5.032-70.111 4.673-70.111Q4.384-70.111 4.112-70.232Q3.841-70.353 3.634-70.564L3.634-69.197Q3.634-69.021 3.802-68.976Q3.970-68.931 4.243-68.931L4.243-68.638M3.634-72.853L3.634-71.013Q3.786-70.724 4.048-70.544Q4.310-70.365 4.618-70.365Q4.903-70.365 5.126-70.503Q5.349-70.642 5.501-70.873Q5.653-71.103 5.731-71.375Q5.810-71.646 5.810-71.916Q5.810-72.248 5.685-72.605Q5.560-72.962 5.312-73.199Q5.064-73.435 4.716-73.435Q4.392-73.435 4.097-73.279Q3.802-73.123 3.634-72.853\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M10.156-72.923Q10.156-73.517 10.388-74.048Q10.620-74.580 11.037-74.980Q11.453-75.380 11.986-75.601Q12.519-75.822 13.124-75.822Q13.562-75.822 13.960-75.640Q14.359-75.459 14.667-75.126L15.140-75.791Q15.171-75.822 15.203-75.822L15.249-75.822Q15.277-75.822 15.308-75.791Q15.339-75.759 15.339-75.732L15.339-73.595Q15.339-73.572 15.308-73.541Q15.277-73.509 15.249-73.509L15.132-73.509Q15.105-73.509 15.074-73.541Q15.042-73.572 15.042-73.595Q15.042-73.861 14.900-74.214Q14.757-74.568 14.578-74.806Q14.324-75.138 13.974-75.332Q13.624-75.525 13.218-75.525Q12.714-75.525 12.261-75.306Q11.808-75.087 11.515-74.693Q11.019-74.025 11.019-72.923Q11.019-72.392 11.156-71.925Q11.292-71.459 11.568-71.093Q11.843-70.728 12.263-70.523Q12.683-70.318 13.226-70.318Q13.714-70.318 14.138-70.562Q14.562-70.806 14.810-71.226Q15.058-71.646 15.058-72.142Q15.058-72.177 15.087-72.203Q15.117-72.228 15.148-72.228L15.249-72.228Q15.292-72.228 15.316-72.199Q15.339-72.169 15.339-72.126Q15.339-71.689 15.163-71.300Q14.988-70.912 14.677-70.628Q14.367-70.345 13.956-70.183Q13.546-70.021 13.124-70.021Q12.535-70.021 11.994-70.242Q11.453-70.462 11.037-70.867Q10.620-71.271 10.388-71.800Q10.156-72.330 10.156-72.923M16.538-70.654Q16.538-70.837 16.675-70.974Q16.812-71.111 17.003-71.111Q17.195-71.111 17.328-70.978Q17.460-70.845 17.460-70.654Q17.460-70.455 17.328-70.322Q17.195-70.189 17.003-70.189Q16.812-70.189 16.675-70.326Q16.538-70.462 16.538-70.654M16.538-73.181Q16.538-73.365 16.675-73.501Q16.812-73.638 17.003-73.638Q17.195-73.638 17.328-73.505Q17.460-73.373 17.460-73.181Q17.460-72.982 17.328-72.849Q17.195-72.716 17.003-72.716Q16.812-72.716 16.675-72.853Q16.538-72.990 16.538-73.181\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M21.254-71.884Q21.254-72.388 21.510-72.820Q21.766-73.251 22.202-73.503Q22.637-73.755 23.137-73.755Q23.524-73.755 23.866-73.611Q24.207-73.466 24.469-73.205Q24.731-72.943 24.873-72.607Q25.016-72.271 25.016-71.884Q25.016-71.392 24.752-70.982Q24.489-70.572 24.059-70.341Q23.629-70.111 23.137-70.111Q22.645-70.111 22.211-70.343Q21.778-70.576 21.516-70.984Q21.254-71.392 21.254-71.884M23.137-70.388Q23.594-70.388 23.846-70.611Q24.098-70.834 24.186-71.185Q24.274-71.537 24.274-71.982Q24.274-72.412 24.180-72.750Q24.086-73.087 23.832-73.294Q23.578-73.501 23.137-73.501Q22.489-73.501 22.245-73.085Q22-72.669 22-71.982Q22-71.537 22.088-71.185Q22.176-70.834 22.428-70.611Q22.680-70.388 23.137-70.388M26.184-71.142L26.184-72.884Q26.184-73.099 26.121-73.195Q26.059-73.291 25.940-73.312Q25.821-73.334 25.575-73.334L25.575-73.630L26.821-73.716L26.821-71.166L26.821-71.142Q26.821-70.830 26.875-70.668Q26.930-70.505 27.080-70.435Q27.231-70.365 27.551-70.365Q27.981-70.365 28.254-70.703Q28.528-71.041 28.528-71.486L28.528-72.884Q28.528-73.099 28.465-73.195Q28.403-73.291 28.284-73.312Q28.164-73.334 27.918-73.334L27.918-73.630L29.164-73.716L29.164-70.931Q29.164-70.720 29.227-70.625Q29.289-70.529 29.409-70.507Q29.528-70.486 29.774-70.486L29.774-70.189L28.551-70.111L28.551-70.732Q28.383-70.443 28.102-70.277Q27.821-70.111 27.500-70.111Q26.184-70.111 26.184-71.142M30.844-71.150L30.844-73.341L30.141-73.341L30.141-73.595Q30.496-73.595 30.739-73.828Q30.981-74.060 31.092-74.408Q31.203-74.755 31.203-75.111L31.485-75.111L31.485-73.638L32.661-73.638L32.661-73.341L31.485-73.341L31.485-71.166Q31.485-70.845 31.604-70.617Q31.723-70.388 32.004-70.388Q32.184-70.388 32.301-70.511Q32.418-70.634 32.471-70.814Q32.524-70.994 32.524-71.166L32.524-71.638L32.805-71.638L32.805-71.150Q32.805-70.896 32.700-70.656Q32.594-70.416 32.397-70.263Q32.200-70.111 31.942-70.111Q31.625-70.111 31.373-70.234Q31.121-70.357 30.983-70.591Q30.844-70.826 30.844-71.150M35.637-71.638L33.383-71.638L33.383-72.189L35.637-72.189L35.637-71.638M36.356-71.884Q36.356-72.388 36.612-72.820Q36.868-73.251 37.303-73.503Q37.739-73.755 38.239-73.755Q38.625-73.755 38.967-73.611Q39.309-73.466 39.571-73.205Q39.832-72.943 39.975-72.607Q40.118-72.271 40.118-71.884Q40.118-71.392 39.854-70.982Q39.590-70.572 39.161-70.341Q38.731-70.111 38.239-70.111Q37.746-70.111 37.313-70.343Q36.879-70.576 36.618-70.984Q36.356-71.392 36.356-71.884M38.239-70.388Q38.696-70.388 38.948-70.611Q39.200-70.834 39.287-71.185Q39.375-71.537 39.375-71.982Q39.375-72.412 39.282-72.750Q39.188-73.087 38.934-73.294Q38.680-73.501 38.239-73.501Q37.590-73.501 37.346-73.085Q37.102-72.669 37.102-71.982Q37.102-71.537 37.190-71.185Q37.278-70.834 37.530-70.611Q37.782-70.388 38.239-70.388M42.668-70.189L40.684-70.189L40.684-70.486Q40.957-70.486 41.125-70.533Q41.293-70.580 41.293-70.748L41.293-73.341L40.653-73.341L40.653-73.638L41.293-73.638L41.293-74.572Q41.293-74.837 41.411-75.074Q41.528-75.310 41.721-75.474Q41.914-75.638 42.162-75.730Q42.411-75.822 42.676-75.822Q42.961-75.822 43.186-75.664Q43.411-75.505 43.411-75.228Q43.411-75.072 43.305-74.962Q43.200-74.853 43.036-74.853Q42.879-74.853 42.770-74.962Q42.661-75.072 42.661-75.228Q42.661-75.435 42.821-75.541Q42.723-75.564 42.629-75.564Q42.399-75.564 42.227-75.408Q42.055-75.251 41.969-75.015Q41.883-74.779 41.883-74.556L41.883-73.638L42.852-73.638L42.852-73.341L41.907-73.341L41.907-70.748Q41.907-70.580 42.133-70.533Q42.360-70.486 42.668-70.486L42.668-70.189M45.309-71.638L43.055-71.638L43.055-72.189L45.309-72.189L45.309-71.638M46.028-71.884Q46.028-72.388 46.284-72.820Q46.539-73.251 46.975-73.503Q47.411-73.755 47.911-73.755Q48.297-73.755 48.639-73.611Q48.981-73.466 49.243-73.205Q49.504-72.943 49.647-72.607Q49.789-72.271 49.789-71.884Q49.789-71.392 49.526-70.982Q49.262-70.572 48.832-70.341Q48.403-70.111 47.911-70.111Q47.418-70.111 46.985-70.343Q46.551-70.576 46.289-70.984Q46.028-71.392 46.028-71.884M47.911-70.388Q48.368-70.388 48.620-70.611Q48.871-70.834 48.959-71.185Q49.047-71.537 49.047-71.982Q49.047-72.412 48.953-72.750Q48.860-73.087 48.606-73.294Q48.352-73.501 47.911-73.501Q47.262-73.501 47.018-73.085Q46.774-72.669 46.774-71.982Q46.774-71.537 46.862-71.185Q46.950-70.834 47.202-70.611Q47.453-70.388 47.911-70.388M52.282-70.189L50.301-70.189L50.301-70.486Q50.571-70.486 50.739-70.531Q50.907-70.576 50.907-70.748L50.907-72.884Q50.907-73.099 50.844-73.195Q50.782-73.291 50.664-73.312Q50.547-73.334 50.301-73.334L50.301-73.630L51.469-73.716L51.469-72.931Q51.547-73.142 51.700-73.328Q51.852-73.513 52.051-73.615Q52.250-73.716 52.477-73.716Q52.723-73.716 52.914-73.572Q53.106-73.427 53.106-73.197Q53.106-73.041 53-72.931Q52.895-72.822 52.739-72.822Q52.582-72.822 52.473-72.931Q52.364-73.041 52.364-73.197Q52.364-73.357 52.469-73.462Q52.145-73.462 51.930-73.234Q51.715-73.005 51.620-72.666Q51.524-72.326 51.524-72.021L51.524-70.748Q51.524-70.580 51.750-70.533Q51.977-70.486 52.282-70.486L52.282-70.189M55.403-70.111Q54.922-70.111 54.514-70.355Q54.106-70.599 53.868-71.013Q53.629-71.427 53.629-71.916Q53.629-72.408 53.887-72.824Q54.145-73.240 54.577-73.478Q55.008-73.716 55.500-73.716Q56.121-73.716 56.571-73.279L56.571-74.908Q56.571-75.123 56.508-75.218Q56.446-75.314 56.328-75.335Q56.211-75.357 55.965-75.357L55.965-75.654L57.188-75.740L57.188-70.931Q57.188-70.720 57.250-70.625Q57.313-70.529 57.430-70.507Q57.547-70.486 57.797-70.486L57.797-70.189L56.547-70.111L56.547-70.595Q56.082-70.111 55.403-70.111M55.469-70.365Q55.809-70.365 56.102-70.556Q56.395-70.748 56.547-71.044L56.547-72.876Q56.399-73.150 56.137-73.306Q55.875-73.462 55.563-73.462Q54.938-73.462 54.655-73.015Q54.371-72.568 54.371-71.908Q54.371-71.263 54.623-70.814Q54.875-70.365 55.469-70.365M58.305-71.943Q58.305-72.423 58.537-72.839Q58.770-73.255 59.180-73.505Q59.590-73.755 60.067-73.755Q60.797-73.755 61.196-73.314Q61.594-72.873 61.594-72.142Q61.594-72.037 61.500-72.013L59.051-72.013L59.051-71.943Q59.051-71.533 59.172-71.177Q59.293-70.822 59.565-70.605Q59.836-70.388 60.266-70.388Q60.629-70.388 60.926-70.617Q61.223-70.845 61.325-71.197Q61.332-71.244 61.418-71.259L61.500-71.259Q61.594-71.232 61.594-71.150Q61.594-71.142 61.586-71.111Q61.524-70.884 61.385-70.701Q61.246-70.517 61.055-70.384Q60.864-70.251 60.645-70.181Q60.426-70.111 60.188-70.111Q59.817-70.111 59.479-70.248Q59.141-70.384 58.873-70.636Q58.606-70.888 58.455-71.228Q58.305-71.568 58.305-71.943M59.059-72.251L61.020-72.251Q61.020-72.556 60.918-72.847Q60.817-73.138 60.600-73.320Q60.383-73.501 60.067-73.501Q59.766-73.501 59.536-73.314Q59.305-73.126 59.182-72.835Q59.059-72.544 59.059-72.251M64.090-70.189L62.110-70.189L62.110-70.486Q62.379-70.486 62.547-70.531Q62.715-70.576 62.715-70.748L62.715-72.884Q62.715-73.099 62.653-73.195Q62.590-73.291 62.473-73.312Q62.356-73.334 62.110-73.334L62.110-73.630L63.278-73.716L63.278-72.931Q63.356-73.142 63.508-73.328Q63.661-73.513 63.860-73.615Q64.059-73.716 64.286-73.716Q64.532-73.716 64.723-73.572Q64.914-73.427 64.914-73.197Q64.914-73.041 64.809-72.931Q64.703-72.822 64.547-72.822Q64.391-72.822 64.282-72.931Q64.172-73.041 64.172-73.197Q64.172-73.357 64.278-73.462Q63.953-73.462 63.739-73.234Q63.524-73.005 63.428-72.666Q63.332-72.326 63.332-72.021L63.332-70.748Q63.332-70.580 63.559-70.533Q63.786-70.486 64.090-70.486L64.090-70.189M65.981-68.783Q65.981-68.806 66.012-68.853Q66.305-69.115 66.471-69.482Q66.637-69.849 66.637-70.236L66.637-70.294Q66.508-70.189 66.340-70.189Q66.149-70.189 66.012-70.322Q65.875-70.455 65.875-70.654Q65.875-70.845 66.012-70.978Q66.149-71.111 66.340-71.111Q66.641-71.111 66.766-70.841Q66.891-70.572 66.891-70.236Q66.891-69.787 66.709-69.373Q66.528-68.959 66.188-68.662Q66.164-68.638 66.125-68.638Q66.078-68.638 66.030-68.683Q65.981-68.728 65.981-68.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M13.557-60.689L13.276-60.689L13.276-65.408Q13.276-65.623 13.214-65.718Q13.151-65.814 13.034-65.835Q12.917-65.857 12.671-65.857L12.671-66.154L13.893-66.240L13.893-63.752Q14.370-64.216 15.069-64.216Q15.550-64.216 15.958-63.972Q16.366-63.728 16.602-63.314Q16.839-62.900 16.839-62.416Q16.839-62.041 16.690-61.712Q16.542-61.384 16.272-61.132Q16.003-60.880 15.659-60.746Q15.315-60.611 14.956-60.611Q14.635-60.611 14.337-60.759Q14.038-60.908 13.831-61.169L13.557-60.689M13.917-63.361L13.917-61.521Q14.069-61.224 14.329-61.044Q14.589-60.865 14.901-60.865Q15.327-60.865 15.594-61.084Q15.862-61.302 15.977-61.648Q16.093-61.994 16.093-62.416Q16.093-63.064 15.844-63.513Q15.596-63.962 14.999-63.962Q14.663-63.962 14.374-63.804Q14.085-63.646 13.917-63.361M19.221-60.689L17.444-60.689L17.444-60.986Q17.718-60.986 17.885-61.033Q18.053-61.080 18.053-61.248L18.053-63.384Q18.053-63.599 17.997-63.695Q17.940-63.791 17.827-63.812Q17.714-63.834 17.468-63.834L17.468-64.130L18.667-64.216L18.667-61.248Q18.667-61.080 18.813-61.033Q18.960-60.986 19.221-60.986L19.221-60.689M17.780-65.611Q17.780-65.802 17.915-65.933Q18.050-66.064 18.245-66.064Q18.366-66.064 18.469-66.001Q18.573-65.939 18.635-65.835Q18.698-65.732 18.698-65.611Q18.698-65.416 18.567-65.281Q18.436-65.146 18.245-65.146Q18.046-65.146 17.913-65.279Q17.780-65.412 17.780-65.611M19.721-60.080Q19.721-60.361 19.932-60.572Q20.143-60.783 20.428-60.873Q20.272-60.998 20.194-61.187Q20.116-61.377 20.116-61.576Q20.116-61.931 20.346-62.224Q19.979-62.564 19.979-63.033Q19.979-63.384 20.182-63.654Q20.385-63.923 20.706-64.070Q21.026-64.216 21.370-64.216Q21.889-64.216 22.260-63.935Q22.624-64.306 23.171-64.306Q23.350-64.306 23.477-64.179Q23.604-64.052 23.604-63.873Q23.604-63.767 23.526-63.689Q23.448-63.611 23.339-63.611Q23.229-63.611 23.153-63.687Q23.077-63.763 23.077-63.873Q23.077-63.974 23.116-64.025Q23.124-64.033 23.128-64.039Q23.132-64.044 23.132-64.048Q22.757-64.048 22.436-63.794Q22.757-63.455 22.757-63.033Q22.757-62.763 22.639-62.546Q22.522-62.330 22.317-62.171Q22.112-62.013 21.870-61.931Q21.628-61.849 21.370-61.849Q21.151-61.849 20.938-61.908Q20.725-61.966 20.530-62.087Q20.436-61.947 20.436-61.767Q20.436-61.560 20.573-61.408Q20.710-61.255 20.917-61.255L21.612-61.255Q22.100-61.255 22.512-61.171Q22.925-61.087 23.204-60.830Q23.483-60.572 23.483-60.080Q23.483-59.716 23.163-59.484Q22.843-59.252 22.401-59.150Q21.960-59.048 21.604-59.048Q21.249-59.048 20.805-59.150Q20.362-59.252 20.042-59.484Q19.721-59.716 19.721-60.080M20.225-60.080Q20.225-59.884 20.370-59.736Q20.514-59.587 20.727-59.498Q20.940-59.408 21.180-59.361Q21.421-59.314 21.604-59.314Q21.846-59.314 22.176-59.392Q22.507-59.470 22.743-59.644Q22.979-59.818 22.979-60.080Q22.979-60.486 22.569-60.595Q22.159-60.705 21.596-60.705L20.917-60.705Q20.647-60.705 20.436-60.527Q20.225-60.349 20.225-60.080M21.370-62.115Q22.093-62.115 22.093-63.033Q22.093-63.955 21.370-63.955Q20.643-63.955 20.643-63.033Q20.643-62.115 21.370-62.115\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M26.853-62.416Q26.853-62.912 27.103-63.337Q27.353-63.763 27.773-64.009Q28.193-64.255 28.693-64.255Q29.232-64.255 29.623-64.130Q30.013-64.005 30.013-63.591Q30.013-63.486 29.963-63.394Q29.912-63.302 29.820-63.252Q29.728-63.201 29.619-63.201Q29.513-63.201 29.422-63.252Q29.330-63.302 29.279-63.394Q29.228-63.486 29.228-63.591Q29.228-63.814 29.396-63.919Q29.174-63.978 28.701-63.978Q28.404-63.978 28.189-63.839Q27.974-63.701 27.843-63.470Q27.713-63.240 27.654-62.970Q27.595-62.701 27.595-62.416Q27.595-62.021 27.728-61.671Q27.861-61.322 28.133-61.105Q28.404-60.888 28.802-60.888Q29.177-60.888 29.453-61.105Q29.728-61.322 29.830-61.681Q29.845-61.744 29.908-61.744L30.013-61.744Q30.049-61.744 30.074-61.716Q30.099-61.689 30.099-61.650L30.099-61.627Q29.967-61.146 29.582-60.878Q29.197-60.611 28.693-60.611Q28.330-60.611 27.996-60.748Q27.662-60.884 27.402-61.134Q27.142-61.384 26.998-61.720Q26.853-62.056 26.853-62.416M30.685-61.521Q30.685-62.005 31.088-62.300Q31.490-62.595 32.041-62.714Q32.592-62.834 33.084-62.834L33.084-63.123Q33.084-63.349 32.968-63.556Q32.853-63.763 32.656-63.882Q32.459-64.001 32.228-64.001Q31.802-64.001 31.517-63.896Q31.588-63.869 31.634-63.814Q31.681-63.759 31.707-63.689Q31.732-63.619 31.732-63.544Q31.732-63.439 31.681-63.347Q31.631-63.255 31.539-63.205Q31.447-63.154 31.342-63.154Q31.236-63.154 31.144-63.205Q31.052-63.255 31.002-63.347Q30.951-63.439 30.951-63.544Q30.951-63.962 31.340-64.109Q31.728-64.255 32.228-64.255Q32.560-64.255 32.914-64.125Q33.267-63.994 33.496-63.740Q33.724-63.486 33.724-63.138L33.724-61.337Q33.724-61.205 33.797-61.095Q33.869-60.986 33.998-60.986Q34.123-60.986 34.191-61.091Q34.260-61.197 34.260-61.337L34.260-61.849L34.541-61.849L34.541-61.337Q34.541-61.134 34.424-60.976Q34.306-60.818 34.125-60.734Q33.943-60.650 33.740-60.650Q33.510-60.650 33.357-60.822Q33.205-60.994 33.174-61.224Q33.013-60.943 32.705-60.777Q32.396-60.611 32.045-60.611Q31.533-60.611 31.109-60.834Q30.685-61.056 30.685-61.521M31.373-61.521Q31.373-61.236 31.599-61.050Q31.826-60.865 32.119-60.865Q32.365-60.865 32.590-60.982Q32.814-61.099 32.949-61.302Q33.084-61.505 33.084-61.759L33.084-62.591Q32.818-62.591 32.533-62.537Q32.248-62.482 31.976-62.353Q31.705-62.224 31.539-62.017Q31.373-61.810 31.373-61.521M34.877-62.416Q34.877-62.912 35.127-63.337Q35.377-63.763 35.797-64.009Q36.217-64.255 36.717-64.255Q37.256-64.255 37.646-64.130Q38.037-64.005 38.037-63.591Q38.037-63.486 37.986-63.394Q37.935-63.302 37.843-63.252Q37.752-63.201 37.642-63.201Q37.537-63.201 37.445-63.252Q37.353-63.302 37.302-63.394Q37.252-63.486 37.252-63.591Q37.252-63.814 37.420-63.919Q37.197-63.978 36.724-63.978Q36.427-63.978 36.213-63.839Q35.998-63.701 35.867-63.470Q35.736-63.240 35.677-62.970Q35.619-62.701 35.619-62.416Q35.619-62.021 35.752-61.671Q35.885-61.322 36.156-61.105Q36.427-60.888 36.826-60.888Q37.201-60.888 37.476-61.105Q37.752-61.322 37.853-61.681Q37.869-61.744 37.931-61.744L38.037-61.744Q38.072-61.744 38.097-61.716Q38.123-61.689 38.123-61.650L38.123-61.627Q37.990-61.146 37.605-60.878Q37.220-60.611 36.717-60.611Q36.353-60.611 36.019-60.748Q35.685-60.884 35.426-61.134Q35.166-61.384 35.021-61.720Q34.877-62.056 34.877-62.416\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.021 75.036)\">\u003Cpath d=\"M40.310-60.689L38.455-60.689L38.455-60.986Q38.728-60.986 38.896-61.033Q39.064-61.080 39.064-61.248L39.064-65.408Q39.064-65.623 39.001-65.718Q38.939-65.814 38.820-65.835Q38.701-65.857 38.455-65.857L38.455-66.154L39.677-66.240L39.677-63.537Q39.802-63.748 39.990-63.898Q40.177-64.048 40.404-64.132Q40.630-64.216 40.876-64.216Q42.044-64.216 42.044-63.138L42.044-61.248Q42.044-61.080 42.214-61.033Q42.384-60.986 42.654-60.986L42.654-60.689L40.798-60.689L40.798-60.986Q41.072-60.986 41.240-61.033Q41.408-61.080 41.408-61.248L41.408-63.123Q41.408-63.505 41.287-63.734Q41.165-63.962 40.814-63.962Q40.501-63.962 40.247-63.800Q39.994-63.638 39.847-63.369Q39.701-63.099 39.701-62.802L39.701-61.248Q39.701-61.080 39.871-61.033Q40.040-60.986 40.310-60.986L40.310-60.689M43.099-62.443Q43.099-62.923 43.331-63.339Q43.564-63.755 43.974-64.005Q44.384-64.255 44.861-64.255Q45.591-64.255 45.990-63.814Q46.388-63.373 46.388-62.642Q46.388-62.537 46.294-62.513L43.845-62.513L43.845-62.443Q43.845-62.033 43.966-61.677Q44.087-61.322 44.359-61.105Q44.630-60.888 45.060-60.888Q45.423-60.888 45.720-61.117Q46.017-61.345 46.119-61.697Q46.126-61.744 46.212-61.759L46.294-61.759Q46.388-61.732 46.388-61.650Q46.388-61.642 46.380-61.611Q46.318-61.384 46.179-61.201Q46.040-61.017 45.849-60.884Q45.658-60.752 45.439-60.681Q45.220-60.611 44.982-60.611Q44.611-60.611 44.273-60.748Q43.935-60.884 43.667-61.136Q43.400-61.388 43.249-61.728Q43.099-62.068 43.099-62.443M43.853-62.752L45.814-62.752Q45.814-63.056 45.712-63.347Q45.611-63.638 45.394-63.820Q45.177-64.001 44.861-64.001Q44.560-64.001 44.330-63.814Q44.099-63.627 43.976-63.335Q43.853-63.044 43.853-62.752\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\" d=\"M62.634-53.576v-14.226h176.407v14.226ZM62.634-19.433v-14.226h82.513v14.226ZM62.634 14.71V.485h56.905v14.227ZM119.539.485\" style=\"stroke-width:.8\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(255.34 2.43)\">\u003Cpath d=\"M-8.184-60.696L-8.184-61.759Q-8.184-61.783-8.156-61.810Q-8.129-61.837-8.105-61.837L-7.996-61.837Q-7.931-61.837-7.917-61.779Q-7.821-61.345-7.575-61.094Q-7.329-60.843-6.915-60.843Q-6.574-60.843-6.321-60.976Q-6.068-61.109-6.068-61.417Q-6.068-61.574-6.162-61.689Q-6.256-61.803-6.394-61.872Q-6.533-61.940-6.700-61.978L-7.281-62.077Q-7.637-62.145-7.910-62.366Q-8.184-62.586-8.184-62.928Q-8.184-63.177-8.072-63.352Q-7.961-63.526-7.775-63.625Q-7.589-63.724-7.373-63.767Q-7.158-63.810-6.915-63.810Q-6.502-63.810-6.222-63.628L-6.006-63.803Q-5.996-63.806-5.989-63.808Q-5.982-63.810-5.972-63.810L-5.921-63.810Q-5.894-63.810-5.870-63.786Q-5.846-63.762-5.846-63.734L-5.846-62.887Q-5.846-62.866-5.870-62.839Q-5.894-62.812-5.921-62.812L-6.034-62.812Q-6.061-62.812-6.087-62.837Q-6.112-62.863-6.112-62.887Q-6.112-63.123-6.218-63.287Q-6.324-63.451-6.507-63.533Q-6.690-63.615-6.922-63.615Q-7.250-63.615-7.507-63.512Q-7.763-63.410-7.763-63.133Q-7.763-62.938-7.580-62.829Q-7.397-62.719-7.168-62.678L-6.594-62.572Q-6.348-62.524-6.134-62.396Q-5.921-62.268-5.784-62.065Q-5.647-61.861-5.647-61.612Q-5.647-61.099-6.013-60.860Q-6.379-60.621-6.915-60.621Q-7.411-60.621-7.743-60.915L-8.009-60.641Q-8.030-60.621-8.057-60.621L-8.105-60.621Q-8.129-60.621-8.156-60.648Q-8.184-60.675-8.184-60.696M-3.351-60.689L-4.954-60.689L-4.954-60.969Q-4.728-60.969-4.579-61.003Q-4.431-61.038-4.431-61.178L-4.431-64.797Q-4.431-65.067-4.538-65.129Q-4.646-65.190-4.954-65.190L-4.954-65.471L-3.877-65.546L-3.877-61.178Q-3.877-61.041-3.727-61.005Q-3.576-60.969-3.351-60.969L-3.351-60.689M-2.797-62.172Q-2.797-62.514-2.662-62.813Q-2.527-63.112-2.288-63.336Q-2.048-63.560-1.730-63.685Q-1.413-63.810-1.081-63.810Q-0.637-63.810-0.237-63.594Q0.163-63.379 0.397-63.001Q0.631-62.624 0.631-62.172Q0.631-61.831 0.490-61.547Q0.348-61.263 0.103-61.056Q-0.141-60.850-0.450-60.735Q-0.760-60.621-1.081-60.621Q-1.512-60.621-1.913-60.822Q-2.315-61.024-2.556-61.376Q-2.797-61.728-2.797-62.172M-1.081-60.870Q-0.479-60.870-0.256-61.248Q-0.032-61.626-0.032-62.258Q-0.032-62.870-0.266-63.229Q-0.500-63.587-1.081-63.587Q-2.134-63.587-2.134-62.258Q-2.134-61.626-1.908-61.248Q-1.683-60.870-1.081-60.870\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(255.34 2.43)\">\u003Cpath d=\"M2.407-60.716L1.426-63.215Q1.365-63.358 1.247-63.393Q1.129-63.427 0.913-63.427L0.913-63.707L2.393-63.707L2.393-63.427Q2.014-63.427 2.014-63.266Q2.014-63.256 2.028-63.215L2.742-61.383L3.415-63.088Q3.385-63.160 3.385-63.188Q3.385-63.215 3.357-63.215Q3.296-63.362 3.178-63.394Q3.060-63.427 2.848-63.427L2.848-63.707L4.246-63.707L4.246-63.427Q3.870-63.427 3.870-63.266Q3.870-63.235 3.877-63.215L4.632-61.277L5.319-63.027Q5.340-63.078 5.340-63.133Q5.340-63.273 5.227-63.350Q5.114-63.427 4.974-63.427L4.974-63.707L6.194-63.707L6.194-63.427Q5.989-63.427 5.834-63.321Q5.678-63.215 5.606-63.027L4.701-60.716Q4.666-60.621 4.554-60.621L4.485-60.621Q4.376-60.621 4.338-60.716L3.556-62.719L2.769-60.716Q2.735-60.621 2.622-60.621L2.554-60.621Q2.445-60.621 2.407-60.716\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(255.34 2.43)\">\u003Cpath d=\"M6.471-62.224Q6.471-62.545 6.596-62.834Q6.721-63.123 6.947-63.346Q7.172-63.570 7.468-63.690Q7.763-63.810 8.081-63.810Q8.409-63.810 8.671-63.710Q8.932-63.611 9.108-63.429Q9.284-63.246 9.378-62.988Q9.472-62.730 9.472-62.398Q9.472-62.306 9.390-62.285L7.135-62.285L7.135-62.224Q7.135-61.636 7.418-61.253Q7.702-60.870 8.269-60.870Q8.591-60.870 8.859-61.063Q9.127-61.256 9.216-61.571Q9.223-61.612 9.298-61.626L9.390-61.626Q9.472-61.602 9.472-61.530Q9.472-61.523 9.466-61.496Q9.353-61.099 8.982-60.860Q8.611-60.621 8.187-60.621Q7.750-60.621 7.350-60.829Q6.950-61.038 6.711-61.405Q6.471-61.772 6.471-62.224M7.141-62.494L8.956-62.494Q8.956-62.771 8.859-63.023Q8.761-63.276 8.563-63.432Q8.365-63.587 8.081-63.587Q7.804-63.587 7.591-63.429Q7.377-63.270 7.259-63.015Q7.141-62.760 7.141-62.494M10.060-60.696L10.060-61.759Q10.060-61.783 10.088-61.810Q10.115-61.837 10.139-61.837L10.248-61.837Q10.313-61.837 10.327-61.779Q10.423-61.345 10.669-61.094Q10.915-60.843 11.328-60.843Q11.670-60.843 11.923-60.976Q12.176-61.109 12.176-61.417Q12.176-61.574 12.082-61.689Q11.988-61.803 11.850-61.872Q11.711-61.940 11.544-61.978L10.963-62.077Q10.607-62.145 10.334-62.366Q10.060-62.586 10.060-62.928Q10.060-63.177 10.171-63.352Q10.282-63.526 10.469-63.625Q10.655-63.724 10.870-63.767Q11.086-63.810 11.328-63.810Q11.742-63.810 12.022-63.628L12.238-63.803Q12.248-63.806 12.255-63.808Q12.261-63.810 12.272-63.810L12.323-63.810Q12.350-63.810 12.374-63.786Q12.398-63.762 12.398-63.734L12.398-62.887Q12.398-62.866 12.374-62.839Q12.350-62.812 12.323-62.812L12.210-62.812Q12.183-62.812 12.157-62.837Q12.132-62.863 12.132-62.887Q12.132-63.123 12.026-63.287Q11.920-63.451 11.737-63.533Q11.554-63.615 11.322-63.615Q10.993-63.615 10.737-63.512Q10.481-63.410 10.481-63.133Q10.481-62.938 10.664-62.829Q10.846-62.719 11.075-62.678L11.650-62.572Q11.896-62.524 12.109-62.396Q12.323-62.268 12.460-62.065Q12.596-61.861 12.596-61.612Q12.596-61.099 12.231-60.860Q11.865-60.621 11.328-60.621Q10.833-60.621 10.501-60.915L10.235-60.641Q10.214-60.621 10.187-60.621L10.139-60.621Q10.115-60.621 10.088-60.648Q10.060-60.675 10.060-60.696M13.752-61.530L13.752-63.427L13.113-63.427L13.113-63.649Q13.430-63.649 13.647-63.859Q13.865-64.069 13.965-64.379Q14.066-64.688 14.066-64.996L14.333-64.996L14.333-63.707L15.409-63.707L15.409-63.427L14.333-63.427L14.333-61.543Q14.333-61.267 14.437-61.068Q14.541-60.870 14.801-60.870Q14.958-60.870 15.064-60.974Q15.170-61.079 15.220-61.232Q15.269-61.386 15.269-61.543L15.269-61.957L15.536-61.957L15.536-61.530Q15.536-61.304 15.437-61.094Q15.338-60.884 15.153-60.752Q14.969-60.621 14.740-60.621Q14.302-60.621 14.027-60.858Q13.752-61.096 13.752-61.530\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(161.446 36.574)\">\u003Cpath d=\"M-6.386-60.689L-8.119-60.689L-8.119-60.969Q-7.893-60.969-7.744-61.003Q-7.596-61.038-7.596-61.178L-7.596-63.427L-8.184-63.427L-8.184-63.707L-7.596-63.707L-7.596-64.524Q-7.596-64.842-7.418-65.090Q-7.240-65.337-6.950-65.478Q-6.659-65.618-6.348-65.618Q-6.092-65.618-5.888-65.476Q-5.685-65.334-5.685-65.091Q-5.685-64.955-5.784-64.856Q-5.883-64.756-6.020-64.756Q-6.157-64.756-6.256-64.856Q-6.355-64.955-6.355-65.091Q-6.355-65.272-6.215-65.365Q-6.293-65.392-6.393-65.392Q-6.601-65.392-6.755-65.259Q-6.909-65.126-6.989-64.922Q-7.069-64.719-7.069-64.510L-7.069-63.707L-6.181-63.707L-6.181-63.427L-7.042-63.427L-7.042-61.178Q-7.042-60.969-6.386-60.969L-6.386-60.689M-5.647-61.417Q-5.647-61.749-5.424-61.976Q-5.200-62.203-4.856-62.331Q-4.513-62.460-4.140-62.512Q-3.768-62.565-3.463-62.565L-3.463-62.818Q-3.463-63.023-3.571-63.203Q-3.679-63.382-3.860-63.485Q-4.041-63.587-4.249-63.587Q-4.656-63.587-4.892-63.495Q-4.803-63.458-4.757-63.374Q-4.711-63.290-4.711-63.188Q-4.711-63.092-4.757-63.013Q-4.803-62.935-4.883-62.890Q-4.964-62.846-5.053-62.846Q-5.203-62.846-5.304-62.943Q-5.405-63.041-5.405-63.188Q-5.405-63.810-4.249-63.810Q-4.038-63.810-3.788-63.746Q-3.539-63.683-3.337-63.564Q-3.135-63.444-3.009-63.259Q-2.882-63.075-2.882-62.832L-2.882-61.256Q-2.882-61.140-2.821-61.044Q-2.759-60.949-2.646-60.949Q-2.537-60.949-2.472-61.043Q-2.407-61.137-2.407-61.256L-2.407-61.704L-2.141-61.704L-2.141-61.256Q-2.141-60.986-2.368-60.821Q-2.595-60.655-2.875-60.655Q-3.084-60.655-3.221-60.809Q-3.357-60.962-3.381-61.178Q-3.528-60.911-3.810-60.766Q-4.092-60.621-4.417-60.621Q-4.694-60.621-4.977-60.696Q-5.261-60.771-5.454-60.950Q-5.647-61.130-5.647-61.417M-5.032-61.417Q-5.032-61.243-4.931-61.113Q-4.831-60.983-4.675-60.913Q-4.519-60.843-4.355-60.843Q-4.137-60.843-3.928-60.940Q-3.720-61.038-3.592-61.219Q-3.463-61.400-3.463-61.626L-3.463-62.354Q-3.788-62.354-4.154-62.263Q-4.519-62.172-4.776-61.960Q-5.032-61.749-5.032-61.417M-1.724-60.696L-1.724-61.759Q-1.724-61.783-1.696-61.810Q-1.669-61.837-1.645-61.837L-1.536-61.837Q-1.471-61.837-1.457-61.779Q-1.361-61.345-1.115-61.094Q-0.869-60.843-0.456-60.843Q-0.114-60.843 0.139-60.976Q0.392-61.109 0.392-61.417Q0.392-61.574 0.298-61.689Q0.204-61.803 0.066-61.872Q-0.073-61.940-0.240-61.978L-0.821-62.077Q-1.177-62.145-1.450-62.366Q-1.724-62.586-1.724-62.928Q-1.724-63.177-1.613-63.352Q-1.501-63.526-1.315-63.625Q-1.129-63.724-0.914-63.767Q-0.698-63.810-0.456-63.810Q-0.042-63.810 0.238-63.628L0.454-63.803Q0.464-63.806 0.471-63.808Q0.478-63.810 0.488-63.810L0.539-63.810Q0.566-63.810 0.590-63.786Q0.614-63.762 0.614-63.734L0.614-62.887Q0.614-62.866 0.590-62.839Q0.566-62.812 0.539-62.812L0.426-62.812Q0.399-62.812 0.373-62.837Q0.348-62.863 0.348-62.887Q0.348-63.123 0.242-63.287Q0.136-63.451-0.047-63.533Q-0.230-63.615-0.462-63.615Q-0.790-63.615-1.047-63.512Q-1.303-63.410-1.303-63.133Q-1.303-62.938-1.120-62.829Q-0.937-62.719-0.708-62.678L-0.134-62.572Q0.112-62.524 0.325-62.396Q0.539-62.268 0.676-62.065Q0.813-61.861 0.813-61.612Q0.813-61.099 0.447-60.860Q0.081-60.621-0.456-60.621Q-0.951-60.621-1.283-60.915L-1.549-60.641Q-1.570-60.621-1.597-60.621L-1.645-60.621Q-1.669-60.621-1.696-60.648Q-1.724-60.675-1.724-60.696M1.968-61.530L1.968-63.427L1.329-63.427L1.329-63.649Q1.647-63.649 1.864-63.859Q2.081-64.069 2.181-64.379Q2.282-64.688 2.282-64.996L2.549-64.996L2.549-63.707L3.626-63.707L3.626-63.427L2.549-63.427L2.549-61.543Q2.549-61.267 2.653-61.068Q2.757-60.870 3.017-60.870Q3.174-60.870 3.280-60.974Q3.386-61.079 3.436-61.232Q3.485-61.386 3.485-61.543L3.485-61.957L3.752-61.957L3.752-61.530Q3.752-61.304 3.653-61.094Q3.554-60.884 3.369-60.752Q3.185-60.621 2.956-60.621Q2.518-60.621 2.243-60.858Q1.968-61.096 1.968-61.530M4.521-62.224Q4.521-62.545 4.646-62.834Q4.771-63.123 4.996-63.346Q5.222-63.570 5.517-63.690Q5.813-63.810 6.131-63.810Q6.459-63.810 6.721-63.710Q6.982-63.611 7.158-63.429Q7.334-63.246 7.428-62.988Q7.522-62.730 7.522-62.398Q7.522-62.306 7.440-62.285L5.184-62.285L5.184-62.224Q5.184-61.636 5.468-61.253Q5.752-60.870 6.319-60.870Q6.640-60.870 6.908-61.063Q7.177-61.256 7.266-61.571Q7.273-61.612 7.348-61.626L7.440-61.626Q7.522-61.602 7.522-61.530Q7.522-61.523 7.515-61.496Q7.402-61.099 7.032-60.860Q6.661-60.621 6.237-60.621Q5.799-60.621 5.399-60.829Q5-61.038 4.760-61.405Q4.521-61.772 4.521-62.224M5.191-62.494L7.006-62.494Q7.006-62.771 6.908-63.023Q6.811-63.276 6.613-63.432Q6.415-63.587 6.131-63.587Q5.854-63.587 5.640-63.429Q5.427-63.270 5.309-63.015Q5.191-62.760 5.191-62.494M9.860-60.689L8.124-60.689L8.124-60.969Q8.353-60.969 8.501-61.003Q8.650-61.038 8.650-61.178L8.650-63.027Q8.650-63.297 8.542-63.358Q8.435-63.420 8.124-63.420L8.124-63.700L9.152-63.775L9.152-63.068Q9.282-63.376 9.525-63.575Q9.768-63.775 10.085-63.775Q10.304-63.775 10.475-63.651Q10.646-63.526 10.646-63.314Q10.646-63.177 10.547-63.078Q10.448-62.979 10.315-62.979Q10.178-62.979 10.079-63.078Q9.980-63.177 9.980-63.314Q9.980-63.454 10.079-63.553Q9.788-63.553 9.588-63.357Q9.388-63.160 9.296-62.866Q9.204-62.572 9.204-62.292L9.204-61.178Q9.204-60.969 9.860-60.969\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(135.838 70.717)\">\u003Cpath d=\"M-6.386-60.689L-8.119-60.689L-8.119-60.969Q-7.893-60.969-7.744-61.003Q-7.596-61.038-7.596-61.178L-7.596-63.427L-8.184-63.427L-8.184-63.707L-7.596-63.707L-7.596-64.524Q-7.596-64.842-7.418-65.090Q-7.240-65.337-6.950-65.478Q-6.659-65.618-6.348-65.618Q-6.092-65.618-5.888-65.476Q-5.685-65.334-5.685-65.091Q-5.685-64.955-5.784-64.856Q-5.883-64.756-6.020-64.756Q-6.157-64.756-6.256-64.856Q-6.355-64.955-6.355-65.091Q-6.355-65.272-6.215-65.365Q-6.293-65.392-6.393-65.392Q-6.601-65.392-6.755-65.259Q-6.909-65.126-6.989-64.922Q-7.069-64.719-7.069-64.510L-7.069-63.707L-6.181-63.707L-6.181-63.427L-7.042-63.427L-7.042-61.178Q-7.042-60.969-6.386-60.969L-6.386-60.689M-5.647-61.417Q-5.647-61.749-5.424-61.976Q-5.200-62.203-4.856-62.331Q-4.513-62.460-4.140-62.512Q-3.768-62.565-3.463-62.565L-3.463-62.818Q-3.463-63.023-3.571-63.203Q-3.679-63.382-3.860-63.485Q-4.041-63.587-4.249-63.587Q-4.656-63.587-4.892-63.495Q-4.803-63.458-4.757-63.374Q-4.711-63.290-4.711-63.188Q-4.711-63.092-4.757-63.013Q-4.803-62.935-4.883-62.890Q-4.964-62.846-5.053-62.846Q-5.203-62.846-5.304-62.943Q-5.405-63.041-5.405-63.188Q-5.405-63.810-4.249-63.810Q-4.038-63.810-3.788-63.746Q-3.539-63.683-3.337-63.564Q-3.135-63.444-3.009-63.259Q-2.882-63.075-2.882-62.832L-2.882-61.256Q-2.882-61.140-2.821-61.044Q-2.759-60.949-2.646-60.949Q-2.537-60.949-2.472-61.043Q-2.407-61.137-2.407-61.256L-2.407-61.704L-2.141-61.704L-2.141-61.256Q-2.141-60.986-2.368-60.821Q-2.595-60.655-2.875-60.655Q-3.084-60.655-3.221-60.809Q-3.357-60.962-3.381-61.178Q-3.528-60.911-3.810-60.766Q-4.092-60.621-4.417-60.621Q-4.694-60.621-4.977-60.696Q-5.261-60.771-5.454-60.950Q-5.647-61.130-5.647-61.417M-5.032-61.417Q-5.032-61.243-4.931-61.113Q-4.831-60.983-4.675-60.913Q-4.519-60.843-4.355-60.843Q-4.137-60.843-3.928-60.940Q-3.720-61.038-3.592-61.219Q-3.463-61.400-3.463-61.626L-3.463-62.354Q-3.788-62.354-4.154-62.263Q-4.519-62.172-4.776-61.960Q-5.032-61.749-5.032-61.417M-1.724-60.696L-1.724-61.759Q-1.724-61.783-1.696-61.810Q-1.669-61.837-1.645-61.837L-1.536-61.837Q-1.471-61.837-1.457-61.779Q-1.361-61.345-1.115-61.094Q-0.869-60.843-0.456-60.843Q-0.114-60.843 0.139-60.976Q0.392-61.109 0.392-61.417Q0.392-61.574 0.298-61.689Q0.204-61.803 0.066-61.872Q-0.073-61.940-0.240-61.978L-0.821-62.077Q-1.177-62.145-1.450-62.366Q-1.724-62.586-1.724-62.928Q-1.724-63.177-1.613-63.352Q-1.501-63.526-1.315-63.625Q-1.129-63.724-0.914-63.767Q-0.698-63.810-0.456-63.810Q-0.042-63.810 0.238-63.628L0.454-63.803Q0.464-63.806 0.471-63.808Q0.478-63.810 0.488-63.810L0.539-63.810Q0.566-63.810 0.590-63.786Q0.614-63.762 0.614-63.734L0.614-62.887Q0.614-62.866 0.590-62.839Q0.566-62.812 0.539-62.812L0.426-62.812Q0.399-62.812 0.373-62.837Q0.348-62.863 0.348-62.887Q0.348-63.123 0.242-63.287Q0.136-63.451-0.047-63.533Q-0.230-63.615-0.462-63.615Q-0.790-63.615-1.047-63.512Q-1.303-63.410-1.303-63.133Q-1.303-62.938-1.120-62.829Q-0.937-62.719-0.708-62.678L-0.134-62.572Q0.112-62.524 0.325-62.396Q0.539-62.268 0.676-62.065Q0.813-61.861 0.813-61.612Q0.813-61.099 0.447-60.860Q0.081-60.621-0.456-60.621Q-0.951-60.621-1.283-60.915L-1.549-60.641Q-1.570-60.621-1.597-60.621L-1.645-60.621Q-1.669-60.621-1.696-60.648Q-1.724-60.675-1.724-60.696M1.968-61.530L1.968-63.427L1.329-63.427L1.329-63.649Q1.647-63.649 1.864-63.859Q2.081-64.069 2.181-64.379Q2.282-64.688 2.282-64.996L2.549-64.996L2.549-63.707L3.626-63.707L3.626-63.427L2.549-63.427L2.549-61.543Q2.549-61.267 2.653-61.068Q2.757-60.870 3.017-60.870Q3.174-60.870 3.280-60.974Q3.386-61.079 3.436-61.232Q3.485-61.386 3.485-61.543L3.485-61.957L3.752-61.957L3.752-61.530Q3.752-61.304 3.653-61.094Q3.554-60.884 3.369-60.752Q3.185-60.621 2.956-60.621Q2.518-60.621 2.243-60.858Q1.968-61.096 1.968-61.530M4.521-62.224Q4.521-62.545 4.646-62.834Q4.771-63.123 4.996-63.346Q5.222-63.570 5.517-63.690Q5.813-63.810 6.131-63.810Q6.459-63.810 6.721-63.710Q6.982-63.611 7.158-63.429Q7.334-63.246 7.428-62.988Q7.522-62.730 7.522-62.398Q7.522-62.306 7.440-62.285L5.184-62.285L5.184-62.224Q5.184-61.636 5.468-61.253Q5.752-60.870 6.319-60.870Q6.640-60.870 6.908-61.063Q7.177-61.256 7.266-61.571Q7.273-61.612 7.348-61.626L7.440-61.626Q7.522-61.602 7.522-61.530Q7.522-61.523 7.515-61.496Q7.402-61.099 7.032-60.860Q6.661-60.621 6.237-60.621Q5.799-60.621 5.399-60.829Q5-61.038 4.760-61.405Q4.521-61.772 4.521-62.224M5.191-62.494L7.006-62.494Q7.006-62.771 6.908-63.023Q6.811-63.276 6.613-63.432Q6.415-63.587 6.131-63.587Q5.854-63.587 5.640-63.429Q5.427-63.270 5.309-63.015Q5.191-62.760 5.191-62.494M8.110-60.696L8.110-61.759Q8.110-61.783 8.137-61.810Q8.165-61.837 8.189-61.837L8.298-61.837Q8.363-61.837 8.377-61.779Q8.472-61.345 8.718-61.094Q8.964-60.843 9.378-60.843Q9.720-60.843 9.973-60.976Q10.226-61.109 10.226-61.417Q10.226-61.574 10.132-61.689Q10.038-61.803 9.899-61.872Q9.761-61.940 9.593-61.978L9.012-62.077Q8.657-62.145 8.383-62.366Q8.110-62.586 8.110-62.928Q8.110-63.177 8.221-63.352Q8.332-63.526 8.518-63.625Q8.705-63.724 8.920-63.767Q9.135-63.810 9.378-63.810Q9.792-63.810 10.072-63.628L10.287-63.803Q10.297-63.806 10.304-63.808Q10.311-63.810 10.321-63.810L10.373-63.810Q10.400-63.810 10.424-63.786Q10.448-63.762 10.448-63.734L10.448-62.887Q10.448-62.866 10.424-62.839Q10.400-62.812 10.373-62.812L10.260-62.812Q10.232-62.812 10.207-62.837Q10.181-62.863 10.181-62.887Q10.181-63.123 10.075-63.287Q9.969-63.451 9.786-63.533Q9.604-63.615 9.371-63.615Q9.043-63.615 8.787-63.512Q8.530-63.410 8.530-63.133Q8.530-62.938 8.713-62.829Q8.896-62.719 9.125-62.678L9.699-62.572Q9.945-62.524 10.159-62.396Q10.373-62.268 10.509-62.065Q10.646-61.861 10.646-61.612Q10.646-61.099 10.280-60.860Q9.915-60.621 9.378-60.621Q8.882-60.621 8.551-60.915L8.284-60.641Q8.264-60.621 8.236-60.621L8.189-60.621Q8.165-60.621 8.137-60.648Q8.110-60.675 8.110-60.696M11.801-61.530L11.801-63.427L11.162-63.427L11.162-63.649Q11.480-63.649 11.697-63.859Q11.914-64.069 12.015-64.379Q12.116-64.688 12.116-64.996L12.382-64.996L12.382-63.707L13.459-63.707L13.459-63.427L12.382-63.427L12.382-61.543Q12.382-61.267 12.487-61.068Q12.591-60.870 12.851-60.870Q13.008-60.870 13.114-60.974Q13.220-61.079 13.269-61.232Q13.319-61.386 13.319-61.543L13.319-61.957L13.585-61.957L13.585-61.530Q13.585-61.304 13.486-61.094Q13.387-60.884 13.203-60.752Q13.018-60.621 12.789-60.621Q12.352-60.621 12.076-60.858Q11.801-61.096 11.801-61.530\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M-8.184-60.696L-8.184-61.759Q-8.184-61.783-8.156-61.810Q-8.129-61.837-8.105-61.837L-7.996-61.837Q-7.931-61.837-7.917-61.779Q-7.821-61.345-7.575-61.094Q-7.329-60.843-6.915-60.843Q-6.574-60.843-6.321-60.976Q-6.068-61.109-6.068-61.417Q-6.068-61.574-6.162-61.689Q-6.256-61.803-6.394-61.872Q-6.533-61.940-6.700-61.978L-7.281-62.077Q-7.637-62.145-7.910-62.366Q-8.184-62.586-8.184-62.928Q-8.184-63.177-8.072-63.352Q-7.961-63.526-7.775-63.625Q-7.589-63.724-7.373-63.767Q-7.158-63.810-6.915-63.810Q-6.502-63.810-6.222-63.628L-6.006-63.803Q-5.996-63.806-5.989-63.808Q-5.982-63.810-5.972-63.810L-5.921-63.810Q-5.894-63.810-5.870-63.786Q-5.846-63.762-5.846-63.734L-5.846-62.887Q-5.846-62.866-5.870-62.839Q-5.894-62.812-5.921-62.812L-6.034-62.812Q-6.061-62.812-6.087-62.837Q-6.112-62.863-6.112-62.887Q-6.112-63.123-6.218-63.287Q-6.324-63.451-6.507-63.533Q-6.690-63.615-6.922-63.615Q-7.250-63.615-7.507-63.512Q-7.763-63.410-7.763-63.133Q-7.763-62.938-7.580-62.829Q-7.397-62.719-7.168-62.678L-6.594-62.572Q-6.348-62.524-6.134-62.396Q-5.921-62.268-5.784-62.065Q-5.647-61.861-5.647-61.612Q-5.647-61.099-6.013-60.860Q-6.379-60.621-6.915-60.621Q-7.411-60.621-7.743-60.915L-8.009-60.641Q-8.030-60.621-8.057-60.621L-8.105-60.621Q-8.129-60.621-8.156-60.648Q-8.184-60.675-8.184-60.696M-4.960-61.417Q-4.960-61.749-4.737-61.976Q-4.513-62.203-4.169-62.331Q-3.826-62.460-3.453-62.512Q-3.081-62.565-2.776-62.565L-2.776-62.818Q-2.776-63.023-2.884-63.203Q-2.992-63.382-3.173-63.485Q-3.354-63.587-3.562-63.587Q-3.969-63.587-4.205-63.495Q-4.116-63.458-4.070-63.374Q-4.024-63.290-4.024-63.188Q-4.024-63.092-4.070-63.013Q-4.116-62.935-4.196-62.890Q-4.277-62.846-4.366-62.846Q-4.516-62.846-4.617-62.943Q-4.718-63.041-4.718-63.188Q-4.718-63.810-3.562-63.810Q-3.351-63.810-3.101-63.746Q-2.852-63.683-2.650-63.564Q-2.448-63.444-2.322-63.259Q-2.195-63.075-2.195-62.832L-2.195-61.256Q-2.195-61.140-2.134-61.044Q-2.072-60.949-1.959-60.949Q-1.850-60.949-1.785-61.043Q-1.720-61.137-1.720-61.256L-1.720-61.704L-1.454-61.704L-1.454-61.256Q-1.454-60.986-1.681-60.821Q-1.908-60.655-2.188-60.655Q-2.397-60.655-2.534-60.809Q-2.670-60.962-2.694-61.178Q-2.841-60.911-3.123-60.766Q-3.405-60.621-3.730-60.621Q-4.007-60.621-4.290-60.696Q-4.574-60.771-4.767-60.950Q-4.960-61.130-4.960-61.417M-4.345-61.417Q-4.345-61.243-4.244-61.113Q-4.144-60.983-3.988-60.913Q-3.832-60.843-3.668-60.843Q-3.450-60.843-3.241-60.940Q-3.033-61.038-2.904-61.219Q-2.776-61.400-2.776-61.626L-2.776-62.354Q-3.101-62.354-3.467-62.263Q-3.832-62.172-4.089-61.960Q-4.345-61.749-4.345-61.417M0.645-60.689L-0.989-60.689L-0.989-60.969Q-0.760-60.969-0.611-61.003Q-0.462-61.038-0.462-61.178L-0.462-63.027Q-0.462-63.297-0.570-63.358Q-0.678-63.420-0.989-63.420L-0.989-63.700L0.071-63.775L0.071-63.126Q0.242-63.434 0.546-63.605Q0.850-63.775 1.195-63.775Q1.595-63.775 1.872-63.635Q2.149-63.495 2.234-63.147Q2.402-63.440 2.701-63.608Q3-63.775 3.345-63.775Q3.851-63.775 4.135-63.552Q4.419-63.328 4.419-62.832L4.419-61.178Q4.419-61.041 4.567-61.005Q4.716-60.969 4.941-60.969L4.941-60.689L3.311-60.689L3.311-60.969Q3.537-60.969 3.687-61.005Q3.837-61.041 3.837-61.178L3.837-62.818Q3.837-63.153 3.718-63.353Q3.598-63.553 3.284-63.553Q3.014-63.553 2.780-63.417Q2.545-63.280 2.407-63.046Q2.269-62.812 2.269-62.538L2.269-61.178Q2.269-61.041 2.417-61.005Q2.566-60.969 2.792-60.969L2.792-60.689L1.161-60.689L1.161-60.969Q1.390-60.969 1.539-61.003Q1.688-61.038 1.688-61.178L1.688-62.818Q1.688-63.153 1.568-63.353Q1.448-63.553 1.134-63.553Q0.864-63.553 0.630-63.417Q0.396-63.280 0.257-63.046Q0.119-62.812 0.119-62.538L0.119-61.178Q0.119-61.041 0.269-61.005Q0.419-60.969 0.645-60.969L0.645-60.689M5.488-62.224Q5.488-62.545 5.613-62.834Q5.738-63.123 5.963-63.346Q6.189-63.570 6.485-63.690Q6.780-63.810 7.098-63.810Q7.426-63.810 7.688-63.710Q7.949-63.611 8.125-63.429Q8.301-63.246 8.395-62.988Q8.489-62.730 8.489-62.398Q8.489-62.306 8.407-62.285L6.151-62.285L6.151-62.224Q6.151-61.636 6.435-61.253Q6.719-60.870 7.286-60.870Q7.607-60.870 7.876-61.063Q8.144-61.256 8.233-61.571Q8.240-61.612 8.315-61.626L8.407-61.626Q8.489-61.602 8.489-61.530Q8.489-61.523 8.482-61.496Q8.370-61.099 7.999-60.860Q7.628-60.621 7.204-60.621Q6.767-60.621 6.367-60.829Q5.967-61.038 5.728-61.405Q5.488-61.772 5.488-62.224M6.158-62.494L7.973-62.494Q7.973-62.771 7.876-63.023Q7.778-63.276 7.580-63.432Q7.382-63.587 7.098-63.587Q6.821-63.587 6.608-63.429Q6.394-63.270 6.276-63.015Q6.158-62.760 6.158-62.494\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M13.038-60.648L12.559-65.071Q12.518-65.190 12.098-65.190Q12.009-65.214 12.009-65.303L12.037-65.413Q12.074-65.464 12.119-65.471L13.855-65.471Q13.893-65.471 13.916-65.438Q13.940-65.406 13.940-65.365L13.913-65.252Q13.886-65.201 13.834-65.190Q13.325-65.190 13.260-65.023L13.640-61.523L15.530-64.630L15.478-65.071Q15.431-65.190 15.010-65.190Q14.928-65.218 14.928-65.303L14.955-65.413Q14.983-65.460 15.031-65.471L16.774-65.471Q16.811-65.471 16.835-65.438Q16.859-65.406 16.859-65.365L16.832-65.252Q16.805-65.201 16.747-65.190Q16.237-65.190 16.179-65.023L16.186-64.979L16.552-61.523L18.544-64.797Q18.551-64.818 18.565-64.850Q18.579-64.883 18.587-64.907Q18.596-64.931 18.596-64.958Q18.596-65.190 18.168-65.190Q18.083-65.218 18.083-65.303L18.114-65.413Q18.141-65.464 18.189-65.471L19.590-65.471Q19.624-65.471 19.648-65.438Q19.672-65.406 19.672-65.365L19.645-65.252Q19.618-65.201 19.566-65.190Q19.078-65.190 18.790-64.722L18.770-64.709L16.306-60.648Q16.247-60.549 16.145-60.549L16.066-60.549Q16.029-60.549 15.993-60.574Q15.957-60.600 15.957-60.648L15.571-64.237L13.387-60.648Q13.339-60.549 13.226-60.549L13.147-60.549Q13.048-60.549 13.038-60.648\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M24.699-60.689L23.147-60.689L23.147-60.969Q23.373-60.969 23.522-61.003Q23.670-61.038 23.670-61.178L23.670-63.027Q23.670-63.215 23.622-63.299Q23.575-63.382 23.477-63.401Q23.380-63.420 23.168-63.420L23.168-63.700L24.224-63.775L24.224-61.178Q24.224-61.038 24.356-61.003Q24.487-60.969 24.699-60.969L24.699-60.689M23.428-64.996Q23.428-65.167 23.551-65.286Q23.674-65.406 23.845-65.406Q24.012-65.406 24.135-65.286Q24.258-65.167 24.258-64.996Q24.258-64.821 24.135-64.698Q24.012-64.575 23.845-64.575Q23.674-64.575 23.551-64.698Q23.428-64.821 23.428-64.996M27.027-60.689L25.393-60.689L25.393-60.969Q25.622-60.969 25.771-61.003Q25.919-61.038 25.919-61.178L25.919-63.027Q25.919-63.297 25.812-63.358Q25.704-63.420 25.393-63.420L25.393-63.700L26.453-63.775L26.453-63.126Q26.623-63.434 26.928-63.605Q27.232-63.775 27.577-63.775Q28.083-63.775 28.367-63.552Q28.650-63.328 28.650-62.832L28.650-61.178Q28.650-61.041 28.799-61.005Q28.948-60.969 29.173-60.969L29.173-60.689L27.543-60.689L27.543-60.969Q27.772-60.969 27.921-61.003Q28.069-61.038 28.069-61.178L28.069-62.818Q28.069-63.153 27.950-63.353Q27.830-63.553 27.516-63.553Q27.246-63.553 27.011-63.417Q26.777-63.280 26.639-63.046Q26.500-62.812 26.500-62.538L26.500-61.178Q26.500-61.041 26.651-61.005Q26.801-60.969 27.027-60.969L27.027-60.689M29.761-60.696L29.761-61.759Q29.761-61.783 29.789-61.810Q29.816-61.837 29.840-61.837L29.949-61.837Q30.014-61.837 30.028-61.779Q30.123-61.345 30.370-61.094Q30.616-60.843 31.029-60.843Q31.371-60.843 31.624-60.976Q31.877-61.109 31.877-61.417Q31.877-61.574 31.783-61.689Q31.689-61.803 31.550-61.872Q31.412-61.940 31.245-61.978L30.664-62.077Q30.308-62.145 30.035-62.366Q29.761-62.586 29.761-62.928Q29.761-63.177 29.872-63.352Q29.983-63.526 30.170-63.625Q30.356-63.724 30.571-63.767Q30.787-63.810 31.029-63.810Q31.443-63.810 31.723-63.628L31.938-63.803Q31.949-63.806 31.956-63.808Q31.962-63.810 31.973-63.810L32.024-63.810Q32.051-63.810 32.075-63.786Q32.099-63.762 32.099-63.734L32.099-62.887Q32.099-62.866 32.075-62.839Q32.051-62.812 32.024-62.812L31.911-62.812Q31.884-62.812 31.858-62.837Q31.832-62.863 31.832-62.887Q31.832-63.123 31.726-63.287Q31.621-63.451 31.438-63.533Q31.255-63.615 31.022-63.615Q30.694-63.615 30.438-63.512Q30.182-63.410 30.182-63.133Q30.182-62.938 30.364-62.829Q30.547-62.719 30.776-62.678L31.351-62.572Q31.597-62.524 31.810-62.396Q32.024-62.268 32.161-62.065Q32.297-61.861 32.297-61.612Q32.297-61.099 31.932-60.860Q31.566-60.621 31.029-60.621Q30.534-60.621 30.202-60.915L29.935-60.641Q29.915-60.621 29.888-60.621L29.840-60.621Q29.816-60.621 29.789-60.648Q29.761-60.675 29.761-60.696M33.453-61.530L33.453-63.427L32.813-63.427L32.813-63.649Q33.131-63.649 33.348-63.859Q33.565-64.069 33.666-64.379Q33.767-64.688 33.767-64.996L34.034-64.996L34.034-63.707L35.110-63.707L35.110-63.427L34.034-63.427L34.034-61.543Q34.034-61.267 34.138-61.068Q34.242-60.870 34.502-60.870Q34.659-60.870 34.765-60.974Q34.871-61.079 34.921-61.232Q34.970-61.386 34.970-61.543L34.970-61.957L35.237-61.957L35.237-61.530Q35.237-61.304 35.138-61.094Q35.039-60.884 34.854-60.752Q34.669-60.621 34.440-60.621Q34.003-60.621 33.728-60.858Q33.453-61.096 33.453-61.530M37.797-60.689L36.060-60.689L36.060-60.969Q36.289-60.969 36.438-61.003Q36.587-61.038 36.587-61.178L36.587-63.027Q36.587-63.297 36.479-63.358Q36.372-63.420 36.060-63.420L36.060-63.700L37.089-63.775L37.089-63.068Q37.219-63.376 37.462-63.575Q37.705-63.775 38.022-63.775Q38.241-63.775 38.412-63.651Q38.583-63.526 38.583-63.314Q38.583-63.177 38.484-63.078Q38.385-62.979 38.251-62.979Q38.115-62.979 38.016-63.078Q37.916-63.177 37.916-63.314Q37.916-63.454 38.016-63.553Q37.725-63.553 37.525-63.357Q37.325-63.160 37.233-62.866Q37.141-62.572 37.141-62.292L37.141-61.178Q37.141-60.969 37.797-60.969L37.797-60.689M39.742-61.523L39.742-63.027Q39.742-63.297 39.634-63.358Q39.526-63.420 39.215-63.420L39.215-63.700L40.323-63.775L40.323-61.543L40.323-61.523Q40.323-61.243 40.374-61.099Q40.425-60.956 40.567-60.899Q40.709-60.843 40.996-60.843Q41.249-60.843 41.454-60.983Q41.659-61.123 41.775-61.349Q41.892-61.574 41.892-61.824L41.892-63.027Q41.892-63.297 41.784-63.358Q41.676-63.420 41.365-63.420L41.365-63.700L42.473-63.775L42.473-61.362Q42.473-61.171 42.526-61.089Q42.579-61.007 42.679-60.988Q42.780-60.969 42.996-60.969L42.996-60.689L41.919-60.621L41.919-61.185Q41.810-61.003 41.664-60.880Q41.519-60.757 41.333-60.689Q41.146-60.621 40.945-60.621Q39.742-60.621 39.742-61.523M43.583-62.200Q43.583-62.528 43.718-62.829Q43.853-63.129 44.089-63.350Q44.325-63.570 44.629-63.690Q44.934-63.810 45.258-63.810Q45.764-63.810 46.113-63.707Q46.461-63.605 46.461-63.229Q46.461-63.082 46.364-62.981Q46.267-62.880 46.120-62.880Q45.966-62.880 45.867-62.979Q45.768-63.078 45.768-63.229Q45.768-63.417 45.908-63.509Q45.706-63.560 45.265-63.560Q44.910-63.560 44.681-63.364Q44.452-63.167 44.351-62.858Q44.250-62.548 44.250-62.200Q44.250-61.851 44.376-61.545Q44.503-61.239 44.758-61.055Q45.012-60.870 45.368-60.870Q45.590-60.870 45.774-60.954Q45.959-61.038 46.094-61.193Q46.229-61.349 46.287-61.557Q46.301-61.612 46.355-61.612L46.468-61.612Q46.499-61.612 46.521-61.588Q46.543-61.564 46.543-61.530L46.543-61.509Q46.458-61.222 46.270-61.024Q46.082-60.826 45.817-60.723Q45.552-60.621 45.258-60.621Q44.828-60.621 44.440-60.827Q44.052-61.034 43.818-61.397Q43.583-61.759 43.583-62.200M47.658-61.530L47.658-63.427L47.018-63.427L47.018-63.649Q47.336-63.649 47.553-63.859Q47.770-64.069 47.871-64.379Q47.972-64.688 47.972-64.996L48.239-64.996L48.239-63.707L49.315-63.707L49.315-63.427L48.239-63.427L48.239-61.543Q48.239-61.267 48.343-61.068Q48.447-60.870 48.707-60.870Q48.864-60.870 48.970-60.974Q49.076-61.079 49.126-61.232Q49.175-61.386 49.175-61.543L49.175-61.957L49.442-61.957L49.442-61.530Q49.442-61.304 49.343-61.094Q49.244-60.884 49.059-60.752Q48.874-60.621 48.645-60.621Q48.208-60.621 47.933-60.858Q47.658-61.096 47.658-61.530M51.869-60.689L50.317-60.689L50.317-60.969Q50.542-60.969 50.691-61.003Q50.840-61.038 50.840-61.178L50.840-63.027Q50.840-63.215 50.792-63.299Q50.744-63.382 50.647-63.401Q50.549-63.420 50.337-63.420L50.337-63.700L51.393-63.775L51.393-61.178Q51.393-61.038 51.525-61.003Q51.657-60.969 51.869-60.969L51.869-60.689M50.597-64.996Q50.597-65.167 50.720-65.286Q50.843-65.406 51.014-65.406Q51.182-65.406 51.305-65.286Q51.428-65.167 51.428-64.996Q51.428-64.821 51.305-64.698Q51.182-64.575 51.014-64.575Q50.843-64.575 50.720-64.698Q50.597-64.821 50.597-64.996M52.474-62.172Q52.474-62.514 52.609-62.813Q52.744-63.112 52.983-63.336Q53.222-63.560 53.540-63.685Q53.858-63.810 54.189-63.810Q54.634-63.810 55.034-63.594Q55.434-63.379 55.668-63.001Q55.902-62.624 55.902-62.172Q55.902-61.831 55.760-61.547Q55.618-61.263 55.374-61.056Q55.129-60.850 54.820-60.735Q54.511-60.621 54.189-60.621Q53.759-60.621 53.357-60.822Q52.956-61.024 52.715-61.376Q52.474-61.728 52.474-62.172M54.189-60.870Q54.791-60.870 55.015-61.248Q55.239-61.626 55.239-62.258Q55.239-62.870 55.005-63.229Q54.770-63.587 54.189-63.587Q53.137-63.587 53.137-62.258Q53.137-61.626 53.362-61.248Q53.588-60.870 54.189-60.870M58.178-60.689L56.544-60.689L56.544-60.969Q56.773-60.969 56.922-61.003Q57.071-61.038 57.071-61.178L57.071-63.027Q57.071-63.297 56.963-63.358Q56.855-63.420 56.544-63.420L56.544-63.700L57.604-63.775L57.604-63.126Q57.775-63.434 58.079-63.605Q58.383-63.775 58.728-63.775Q59.234-63.775 59.518-63.552Q59.802-63.328 59.802-62.832L59.802-61.178Q59.802-61.041 59.950-61.005Q60.099-60.969 60.325-60.969L60.325-60.689L58.694-60.689L58.694-60.969Q58.923-60.969 59.072-61.003Q59.221-61.038 59.221-61.178L59.221-62.818Q59.221-63.153 59.101-63.353Q58.981-63.553 58.667-63.553Q58.397-63.553 58.163-63.417Q57.929-63.280 57.790-63.046Q57.652-62.812 57.652-62.538L57.652-61.178Q57.652-61.041 57.802-61.005Q57.953-60.969 58.178-60.969L58.178-60.689M60.913-60.696L60.913-61.759Q60.913-61.783 60.940-61.810Q60.967-61.837 60.991-61.837L61.101-61.837Q61.165-61.837 61.179-61.779Q61.275-61.345 61.521-61.094Q61.767-60.843 62.181-60.843Q62.522-60.843 62.775-60.976Q63.028-61.109 63.028-61.417Q63.028-61.574 62.934-61.689Q62.840-61.803 62.702-61.872Q62.563-61.940 62.396-61.978L61.815-62.077Q61.459-62.145 61.186-62.366Q60.913-62.586 60.913-62.928Q60.913-63.177 61.024-63.352Q61.135-63.526 61.321-63.625Q61.507-63.724 61.723-63.767Q61.938-63.810 62.181-63.810Q62.594-63.810 62.874-63.628L63.090-63.803Q63.100-63.806 63.107-63.808Q63.114-63.810 63.124-63.810L63.175-63.810Q63.203-63.810 63.226-63.786Q63.250-63.762 63.250-63.734L63.250-62.887Q63.250-62.866 63.226-62.839Q63.203-62.812 63.175-62.812L63.062-62.812Q63.035-62.812 63.009-62.837Q62.984-62.863 62.984-62.887Q62.984-63.123 62.878-63.287Q62.772-63.451 62.589-63.533Q62.406-63.615 62.174-63.615Q61.846-63.615 61.589-63.512Q61.333-63.410 61.333-63.133Q61.333-62.938 61.516-62.829Q61.699-62.719 61.928-62.678L62.502-62.572Q62.748-62.524 62.962-62.396Q63.175-62.268 63.312-62.065Q63.449-61.861 63.449-61.612Q63.449-61.099 63.083-60.860Q62.717-60.621 62.181-60.621Q61.685-60.621 61.353-60.915L61.087-60.641Q61.066-60.621 61.039-60.621L60.991-60.621Q60.967-60.621 60.940-60.648Q60.913-60.675 60.913-60.696M64.577-59.459Q64.577-59.493 64.604-59.520Q64.874-59.749 65.023-60.072Q65.171-60.395 65.171-60.751L65.171-60.788Q65.062-60.689 64.898-60.689Q64.717-60.689 64.597-60.809Q64.477-60.928 64.477-61.109Q64.477-61.284 64.597-61.403Q64.717-61.523 64.898-61.523Q65.154-61.523 65.274-61.284Q65.393-61.044 65.393-60.751Q65.393-60.351 65.224-59.980Q65.055-59.609 64.758-59.353Q64.727-59.332 64.700-59.332Q64.659-59.332 64.618-59.373Q64.577-59.414 64.577-59.459\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M69.071-60.696L69.071-61.759Q69.071-61.783 69.099-61.810Q69.126-61.837 69.150-61.837L69.259-61.837Q69.324-61.837 69.338-61.779Q69.434-61.345 69.680-61.094Q69.926-60.843 70.340-60.843Q70.681-60.843 70.934-60.976Q71.187-61.109 71.187-61.417Q71.187-61.574 71.093-61.689Q70.999-61.803 70.861-61.872Q70.722-61.940 70.555-61.978L69.974-62.077Q69.618-62.145 69.345-62.366Q69.071-62.586 69.071-62.928Q69.071-63.177 69.183-63.352Q69.294-63.526 69.480-63.625Q69.666-63.724 69.882-63.767Q70.097-63.810 70.340-63.810Q70.753-63.810 71.033-63.628L71.249-63.803Q71.259-63.806 71.266-63.808Q71.273-63.810 71.283-63.810L71.334-63.810Q71.361-63.810 71.385-63.786Q71.409-63.762 71.409-63.734L71.409-62.887Q71.409-62.866 71.385-62.839Q71.361-62.812 71.334-62.812L71.221-62.812Q71.194-62.812 71.168-62.837Q71.143-62.863 71.143-62.887Q71.143-63.123 71.037-63.287Q70.931-63.451 70.748-63.533Q70.565-63.615 70.333-63.615Q70.005-63.615 69.748-63.512Q69.492-63.410 69.492-63.133Q69.492-62.938 69.675-62.829Q69.858-62.719 70.087-62.678L70.661-62.572Q70.907-62.524 71.121-62.396Q71.334-62.268 71.471-62.065Q71.608-61.861 71.608-61.612Q71.608-61.099 71.242-60.860Q70.876-60.621 70.340-60.621Q69.844-60.621 69.512-60.915L69.246-60.641Q69.225-60.621 69.198-60.621L69.150-60.621Q69.126-60.621 69.099-60.648Q69.071-60.675 69.071-60.696M72.295-61.417Q72.295-61.749 72.518-61.976Q72.742-62.203 73.086-62.331Q73.429-62.460 73.802-62.512Q74.174-62.565 74.479-62.565L74.479-62.818Q74.479-63.023 74.371-63.203Q74.263-63.382 74.082-63.485Q73.901-63.587 73.693-63.587Q73.286-63.587 73.050-63.495Q73.139-63.458 73.185-63.374Q73.231-63.290 73.231-63.188Q73.231-63.092 73.185-63.013Q73.139-62.935 73.059-62.890Q72.978-62.846 72.889-62.846Q72.739-62.846 72.638-62.943Q72.537-63.041 72.537-63.188Q72.537-63.810 73.693-63.810Q73.904-63.810 74.154-63.746Q74.403-63.683 74.605-63.564Q74.807-63.444 74.933-63.259Q75.060-63.075 75.060-62.832L75.060-61.256Q75.060-61.140 75.121-61.044Q75.183-60.949 75.296-60.949Q75.405-60.949 75.470-61.043Q75.535-61.137 75.535-61.256L75.535-61.704L75.801-61.704L75.801-61.256Q75.801-60.986 75.574-60.821Q75.347-60.655 75.067-60.655Q74.858-60.655 74.721-60.809Q74.585-60.962 74.561-61.178Q74.414-60.911 74.132-60.766Q73.850-60.621 73.525-60.621Q73.248-60.621 72.965-60.696Q72.681-60.771 72.488-60.950Q72.295-61.130 72.295-61.417M72.910-61.417Q72.910-61.243 73.011-61.113Q73.111-60.983 73.267-60.913Q73.423-60.843 73.587-60.843Q73.805-60.843 74.014-60.940Q74.222-61.038 74.351-61.219Q74.479-61.400 74.479-61.626L74.479-62.354Q74.154-62.354 73.788-62.263Q73.423-62.172 73.166-61.960Q72.910-61.749 72.910-61.417M77.900-60.689L76.266-60.689L76.266-60.969Q76.495-60.969 76.644-61.003Q76.793-61.038 76.793-61.178L76.793-63.027Q76.793-63.297 76.685-63.358Q76.577-63.420 76.266-63.420L76.266-63.700L77.326-63.775L77.326-63.126Q77.497-63.434 77.801-63.605Q78.105-63.775 78.450-63.775Q78.850-63.775 79.127-63.635Q79.404-63.495 79.489-63.147Q79.657-63.440 79.956-63.608Q80.255-63.775 80.600-63.775Q81.106-63.775 81.390-63.552Q81.674-63.328 81.674-62.832L81.674-61.178Q81.674-61.041 81.822-61.005Q81.971-60.969 82.196-60.969L82.196-60.689L80.566-60.689L80.566-60.969Q80.792-60.969 80.942-61.005Q81.092-61.041 81.092-61.178L81.092-62.818Q81.092-63.153 80.973-63.353Q80.853-63.553 80.539-63.553Q80.269-63.553 80.035-63.417Q79.800-63.280 79.662-63.046Q79.524-62.812 79.524-62.538L79.524-61.178Q79.524-61.041 79.672-61.005Q79.821-60.969 80.047-60.969L80.047-60.689L78.416-60.689L78.416-60.969Q78.645-60.969 78.794-61.003Q78.943-61.038 78.943-61.178L78.943-62.818Q78.943-63.153 78.823-63.353Q78.703-63.553 78.389-63.553Q78.119-63.553 77.885-63.417Q77.651-63.280 77.512-63.046Q77.374-62.812 77.374-62.538L77.374-61.178Q77.374-61.041 77.524-61.005Q77.674-60.969 77.900-60.969L77.900-60.689M82.743-62.224Q82.743-62.545 82.868-62.834Q82.993-63.123 83.218-63.346Q83.444-63.570 83.740-63.690Q84.035-63.810 84.353-63.810Q84.681-63.810 84.943-63.710Q85.204-63.611 85.380-63.429Q85.556-63.246 85.650-62.988Q85.744-62.730 85.744-62.398Q85.744-62.306 85.662-62.285L83.406-62.285L83.406-62.224Q83.406-61.636 83.690-61.253Q83.974-60.870 84.541-60.870Q84.862-60.870 85.131-61.063Q85.399-61.256 85.488-61.571Q85.495-61.612 85.570-61.626L85.662-61.626Q85.744-61.602 85.744-61.530Q85.744-61.523 85.737-61.496Q85.625-61.099 85.254-60.860Q84.883-60.621 84.459-60.621Q84.022-60.621 83.622-60.829Q83.222-61.038 82.983-61.405Q82.743-61.772 82.743-62.224M83.413-62.494L85.228-62.494Q85.228-62.771 85.131-63.023Q85.033-63.276 84.835-63.432Q84.637-63.587 84.353-63.587Q84.076-63.587 83.863-63.429Q83.649-63.270 83.531-63.015Q83.413-62.760 83.413-62.494\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M90.794-60.689L89.058-60.689L89.058-60.969Q89.287-60.969 89.436-61.003Q89.584-61.038 89.584-61.178L89.584-63.027Q89.584-63.297 89.477-63.358Q89.369-63.420 89.058-63.420L89.058-63.700L90.087-63.775L90.087-63.068Q90.217-63.376 90.459-63.575Q90.702-63.775 91.020-63.775Q91.239-63.775 91.410-63.651Q91.581-63.526 91.581-63.314Q91.581-63.177 91.481-63.078Q91.382-62.979 91.249-62.979Q91.112-62.979 91.013-63.078Q90.914-63.177 90.914-63.314Q90.914-63.454 91.013-63.553Q90.723-63.553 90.523-63.357Q90.323-63.160 90.230-62.866Q90.138-62.572 90.138-62.292L90.138-61.178Q90.138-60.969 90.794-60.969L90.794-60.689M92.124-62.224Q92.124-62.545 92.249-62.834Q92.374-63.123 92.599-63.346Q92.825-63.570 93.120-63.690Q93.416-63.810 93.734-63.810Q94.062-63.810 94.324-63.710Q94.585-63.611 94.761-63.429Q94.937-63.246 95.031-62.988Q95.125-62.730 95.125-62.398Q95.125-62.306 95.043-62.285L92.787-62.285L92.787-62.224Q92.787-61.636 93.071-61.253Q93.355-60.870 93.922-60.870Q94.243-60.870 94.511-61.063Q94.780-61.256 94.869-61.571Q94.876-61.612 94.951-61.626L95.043-61.626Q95.125-61.602 95.125-61.530Q95.125-61.523 95.118-61.496Q95.005-61.099 94.635-60.860Q94.264-60.621 93.840-60.621Q93.402-60.621 93.002-60.829Q92.603-61.038 92.363-61.405Q92.124-61.772 92.124-62.224M92.794-62.494L94.609-62.494Q94.609-62.771 94.511-63.023Q94.414-63.276 94.216-63.432Q94.018-63.587 93.734-63.587Q93.457-63.587 93.243-63.429Q93.030-63.270 92.912-63.015Q92.794-62.760 92.794-62.494M95.713-60.696L95.713-61.759Q95.713-61.783 95.740-61.810Q95.768-61.837 95.792-61.837L95.901-61.837Q95.966-61.837 95.980-61.779Q96.075-61.345 96.321-61.094Q96.567-60.843 96.981-60.843Q97.323-60.843 97.576-60.976Q97.829-61.109 97.829-61.417Q97.829-61.574 97.735-61.689Q97.641-61.803 97.502-61.872Q97.364-61.940 97.196-61.978L96.615-62.077Q96.260-62.145 95.986-62.366Q95.713-62.586 95.713-62.928Q95.713-63.177 95.824-63.352Q95.935-63.526 96.121-63.625Q96.308-63.724 96.523-63.767Q96.738-63.810 96.981-63.810Q97.395-63.810 97.675-63.628L97.890-63.803Q97.900-63.806 97.907-63.808Q97.914-63.810 97.924-63.810L97.976-63.810Q98.003-63.810 98.027-63.786Q98.051-63.762 98.051-63.734L98.051-62.887Q98.051-62.866 98.027-62.839Q98.003-62.812 97.976-62.812L97.863-62.812Q97.835-62.812 97.810-62.837Q97.784-62.863 97.784-62.887Q97.784-63.123 97.678-63.287Q97.572-63.451 97.389-63.533Q97.207-63.615 96.974-63.615Q96.646-63.615 96.390-63.512Q96.133-63.410 96.133-63.133Q96.133-62.938 96.316-62.829Q96.499-62.719 96.728-62.678L97.302-62.572Q97.548-62.524 97.762-62.396Q97.976-62.268 98.112-62.065Q98.249-61.861 98.249-61.612Q98.249-61.099 97.883-60.860Q97.518-60.621 96.981-60.621Q96.485-60.621 96.154-60.915L95.887-60.641Q95.867-60.621 95.839-60.621L95.792-60.621Q95.768-60.621 95.740-60.648Q95.713-60.675 95.713-60.696M99.452-61.523L99.452-63.027Q99.452-63.297 99.345-63.358Q99.237-63.420 98.926-63.420L98.926-63.700L100.033-63.775L100.033-61.543L100.033-61.523Q100.033-61.243 100.084-61.099Q100.136-60.956 100.278-60.899Q100.419-60.843 100.707-60.843Q100.959-60.843 101.165-60.983Q101.370-61.123 101.486-61.349Q101.602-61.574 101.602-61.824L101.602-63.027Q101.602-63.297 101.494-63.358Q101.387-63.420 101.076-63.420L101.076-63.700L102.183-63.775L102.183-61.362Q102.183-61.171 102.236-61.089Q102.289-61.007 102.390-60.988Q102.491-60.969 102.706-60.969L102.706-60.689L101.629-60.621L101.629-61.185Q101.520-61.003 101.375-60.880Q101.230-60.757 101.043-60.689Q100.857-60.621 100.655-60.621Q99.452-60.621 99.452-61.523M104.962-60.689L103.359-60.689L103.359-60.969Q103.584-60.969 103.733-61.003Q103.882-61.038 103.882-61.178L103.882-64.797Q103.882-65.067 103.774-65.129Q103.667-65.190 103.359-65.190L103.359-65.471L104.436-65.546L104.436-61.178Q104.436-61.041 104.586-61.005Q104.736-60.969 104.962-60.969L104.962-60.689M106.083-61.530L106.083-63.427L105.444-63.427L105.444-63.649Q105.762-63.649 105.979-63.859Q106.196-64.069 106.297-64.379Q106.397-64.688 106.397-64.996L106.664-64.996L106.664-63.707L107.741-63.707L107.741-63.427L106.664-63.427L106.664-61.543Q106.664-61.267 106.768-61.068Q106.873-60.870 107.132-60.870Q107.290-60.870 107.396-60.974Q107.501-61.079 107.551-61.232Q107.601-61.386 107.601-61.543L107.601-61.957L107.867-61.957L107.867-61.530Q107.867-61.304 107.768-61.094Q107.669-60.884 107.484-60.752Q107.300-60.621 107.071-60.621Q106.633-60.621 106.358-60.858Q106.083-61.096 106.083-61.530M109.176-59.459Q109.176-59.493 109.204-59.520Q109.474-59.749 109.622-60.072Q109.771-60.395 109.771-60.751L109.771-60.788Q109.662-60.689 109.498-60.689Q109.316-60.689 109.197-60.809Q109.077-60.928 109.077-61.109Q109.077-61.284 109.197-61.403Q109.316-61.523 109.498-61.523Q109.754-61.523 109.874-61.284Q109.993-61.044 109.993-60.751Q109.993-60.351 109.824-59.980Q109.655-59.609 109.357-59.353Q109.327-59.332 109.299-59.332Q109.258-59.332 109.217-59.373Q109.176-59.414 109.176-59.459\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M113.657-62.200Q113.657-62.538 113.798-62.829Q113.938-63.119 114.182-63.333Q114.426-63.546 114.731-63.661Q115.035-63.775 115.360-63.775Q115.630-63.775 115.893-63.676Q116.156-63.577 116.347-63.399L116.347-64.797Q116.347-65.067 116.240-65.129Q116.132-65.190 115.821-65.190L115.821-65.471L116.898-65.546L116.898-61.362Q116.898-61.174 116.952-61.091Q117.007-61.007 117.108-60.988Q117.209-60.969 117.424-60.969L117.424-60.689L116.317-60.621L116.317-61.038Q115.900-60.621 115.274-60.621Q114.843-60.621 114.471-60.833Q114.098-61.044 113.878-61.405Q113.657-61.766 113.657-62.200M115.332-60.843Q115.541-60.843 115.727-60.915Q115.913-60.986 116.067-61.123Q116.221-61.260 116.317-61.438L116.317-63.047Q116.231-63.194 116.086-63.314Q115.941-63.434 115.771-63.493Q115.602-63.553 115.421-63.553Q114.861-63.553 114.592-63.164Q114.324-62.774 114.324-62.193Q114.324-61.622 114.558-61.232Q114.792-60.843 115.332-60.843M119.690-60.689L118.138-60.689L118.138-60.969Q118.364-60.969 118.513-61.003Q118.661-61.038 118.661-61.178L118.661-63.027Q118.661-63.215 118.614-63.299Q118.566-63.382 118.468-63.401Q118.371-63.420 118.159-63.420L118.159-63.700L119.215-63.775L119.215-61.178Q119.215-61.038 119.347-61.003Q119.478-60.969 119.690-60.969L119.690-60.689M118.419-64.996Q118.419-65.167 118.542-65.286Q118.665-65.406 118.836-65.406Q119.003-65.406 119.126-65.286Q119.249-65.167 119.249-64.996Q119.249-64.821 119.126-64.698Q119.003-64.575 118.836-64.575Q118.665-64.575 118.542-64.698Q118.419-64.821 118.419-64.996M122.134-60.689L120.401-60.689L120.401-60.969Q120.627-60.969 120.775-61.003Q120.924-61.038 120.924-61.178L120.924-63.427L120.336-63.427L120.336-63.707L120.924-63.707L120.924-64.524Q120.924-64.842 121.102-65.090Q121.280-65.337 121.570-65.478Q121.861-65.618 122.172-65.618Q122.428-65.618 122.631-65.476Q122.835-65.334 122.835-65.091Q122.835-64.955 122.736-64.856Q122.636-64.756 122.500-64.756Q122.363-64.756 122.264-64.856Q122.165-64.955 122.165-65.091Q122.165-65.272 122.305-65.365Q122.226-65.392 122.127-65.392Q121.919-65.392 121.765-65.259Q121.611-65.126 121.531-64.922Q121.450-64.719 121.450-64.510L121.450-63.707L122.339-63.707L122.339-63.427L121.478-63.427L121.478-61.178Q121.478-60.969 122.134-60.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M125.174-60.689L123.441-60.689L123.441-60.969Q123.667-60.969 123.816-61.003Q123.964-61.038 123.964-61.178L123.964-63.427L123.376-63.427L123.376-63.707L123.964-63.707L123.964-64.524Q123.964-64.842 124.142-65.090Q124.320-65.337 124.610-65.478Q124.901-65.618 125.212-65.618Q125.468-65.618 125.672-65.476Q125.875-65.334 125.875-65.091Q125.875-64.955 125.776-64.856Q125.677-64.756 125.540-64.756Q125.403-64.756 125.304-64.856Q125.205-64.955 125.205-65.091Q125.205-65.272 125.345-65.365Q125.267-65.392 125.167-65.392Q124.959-65.392 124.805-65.259Q124.651-65.126 124.571-64.922Q124.491-64.719 124.491-64.510L124.491-63.707L125.379-63.707L125.379-63.427L124.518-63.427L124.518-61.178Q124.518-60.969 125.174-60.969L125.174-60.689M125.813-62.224Q125.813-62.545 125.938-62.834Q126.063-63.123 126.289-63.346Q126.514-63.570 126.810-63.690Q127.105-63.810 127.423-63.810Q127.751-63.810 128.013-63.710Q128.274-63.611 128.450-63.429Q128.626-63.246 128.720-62.988Q128.814-62.730 128.814-62.398Q128.814-62.306 128.732-62.285L126.477-62.285L126.477-62.224Q126.477-61.636 126.760-61.253Q127.044-60.870 127.611-60.870Q127.933-60.870 128.201-61.063Q128.469-61.256 128.558-61.571Q128.565-61.612 128.640-61.626L128.732-61.626Q128.814-61.602 128.814-61.530Q128.814-61.523 128.808-61.496Q128.695-61.099 128.324-60.860Q127.953-60.621 127.529-60.621Q127.092-60.621 126.692-60.829Q126.292-61.038 126.053-61.405Q125.813-61.772 125.813-62.224M126.483-62.494L128.298-62.494Q128.298-62.771 128.201-63.023Q128.104-63.276 127.905-63.432Q127.707-63.587 127.423-63.587Q127.146-63.587 126.933-63.429Q126.719-63.270 126.601-63.015Q126.483-62.760 126.483-62.494M131.152-60.689L129.416-60.689L129.416-60.969Q129.645-60.969 129.794-61.003Q129.942-61.038 129.942-61.178L129.942-63.027Q129.942-63.297 129.835-63.358Q129.727-63.420 129.416-63.420L129.416-63.700L130.445-63.775L130.445-63.068Q130.575-63.376 130.817-63.575Q131.060-63.775 131.378-63.775Q131.597-63.775 131.768-63.651Q131.938-63.526 131.938-63.314Q131.938-63.177 131.839-63.078Q131.740-62.979 131.607-62.979Q131.470-62.979 131.371-63.078Q131.272-63.177 131.272-63.314Q131.272-63.454 131.371-63.553Q131.081-63.553 130.881-63.357Q130.681-63.160 130.588-62.866Q130.496-62.572 130.496-62.292L130.496-61.178Q130.496-60.969 131.152-60.969L131.152-60.689M132.482-62.224Q132.482-62.545 132.607-62.834Q132.731-63.123 132.957-63.346Q133.183-63.570 133.478-63.690Q133.774-63.810 134.092-63.810Q134.420-63.810 134.681-63.710Q134.943-63.611 135.119-63.429Q135.295-63.246 135.389-62.988Q135.483-62.730 135.483-62.398Q135.483-62.306 135.401-62.285L133.145-62.285L133.145-62.224Q133.145-61.636 133.429-61.253Q133.712-60.870 134.280-60.870Q134.601-60.870 134.869-61.063Q135.138-61.256 135.227-61.571Q135.233-61.612 135.309-61.626L135.401-61.626Q135.483-61.602 135.483-61.530Q135.483-61.523 135.476-61.496Q135.363-61.099 134.992-60.860Q134.622-60.621 134.198-60.621Q133.760-60.621 133.360-60.829Q132.960-61.038 132.721-61.405Q132.482-61.772 132.482-62.224M133.152-62.494L134.967-62.494Q134.967-62.771 134.869-63.023Q134.772-63.276 134.574-63.432Q134.375-63.587 134.092-63.587Q133.815-63.587 133.601-63.429Q133.388-63.270 133.270-63.015Q133.152-62.760 133.152-62.494M137.752-60.689L136.119-60.689L136.119-60.969Q136.348-60.969 136.496-61.003Q136.645-61.038 136.645-61.178L136.645-63.027Q136.645-63.297 136.537-63.358Q136.430-63.420 136.119-63.420L136.119-63.700L137.178-63.775L137.178-63.126Q137.349-63.434 137.653-63.605Q137.958-63.775 138.303-63.775Q138.809-63.775 139.092-63.552Q139.376-63.328 139.376-62.832L139.376-61.178Q139.376-61.041 139.525-61.005Q139.673-60.969 139.899-60.969L139.899-60.689L138.269-60.689L138.269-60.969Q138.498-60.969 138.646-61.003Q138.795-61.038 138.795-61.178L138.795-62.818Q138.795-63.153 138.675-63.353Q138.556-63.553 138.241-63.553Q137.971-63.553 137.737-63.417Q137.503-63.280 137.364-63.046Q137.226-62.812 137.226-62.538L137.226-61.178Q137.226-61.041 137.376-61.005Q137.527-60.969 137.752-60.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M140.820-61.530L140.820-63.427L140.181-63.427L140.181-63.649Q140.499-63.649 140.716-63.859Q140.933-64.069 141.033-64.379Q141.134-64.688 141.134-64.996L141.401-64.996L141.401-63.707L142.478-63.707L142.478-63.427L141.401-63.427L141.401-61.543Q141.401-61.267 141.505-61.068Q141.609-60.870 141.869-60.870Q142.026-60.870 142.132-60.974Q142.238-61.079 142.288-61.232Q142.337-61.386 142.337-61.543L142.337-61.957L142.604-61.957L142.604-61.530Q142.604-61.304 142.505-61.094Q142.406-60.884 142.221-60.752Q142.037-60.621 141.808-60.621Q141.370-60.621 141.095-60.858Q140.820-61.096 140.820-61.530\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(74.43 96.598)\">\u003Cpath d=\"M146.639-61.530L146.639-63.427L146-63.427L146-63.649Q146.318-63.649 146.535-63.859Q146.752-64.069 146.852-64.379Q146.953-64.688 146.953-64.996L147.220-64.996L147.220-63.707L148.297-63.707L148.297-63.427L147.220-63.427L147.220-61.543Q147.220-61.267 147.324-61.068Q147.428-60.870 147.688-60.870Q147.845-60.870 147.951-60.974Q148.057-61.079 148.107-61.232Q148.156-61.386 148.156-61.543L148.156-61.957L148.423-61.957L148.423-61.530Q148.423-61.304 148.324-61.094Q148.225-60.884 148.040-60.752Q147.856-60.621 147.627-60.621Q147.189-60.621 146.914-60.858Q146.639-61.096 146.639-61.530M150.850-60.689L149.298-60.689L149.298-60.969Q149.524-60.969 149.672-61.003Q149.821-61.038 149.821-61.178L149.821-63.027Q149.821-63.215 149.773-63.299Q149.725-63.382 149.628-63.401Q149.530-63.420 149.319-63.420L149.319-63.700L150.375-63.775L150.375-61.178Q150.375-61.038 150.506-61.003Q150.638-60.969 150.850-60.969L150.850-60.689M149.578-64.996Q149.578-65.167 149.701-65.286Q149.824-65.406 149.995-65.406Q150.163-65.406 150.286-65.286Q150.409-65.167 150.409-64.996Q150.409-64.821 150.286-64.698Q150.163-64.575 149.995-64.575Q149.824-64.575 149.701-64.698Q149.578-64.821 149.578-64.996M153.177-60.689L151.544-60.689L151.544-60.969Q151.773-60.969 151.921-61.003Q152.070-61.038 152.070-61.178L152.070-63.027Q152.070-63.297 151.962-63.358Q151.855-63.420 151.544-63.420L151.544-63.700L152.603-63.775L152.603-63.126Q152.774-63.434 153.078-63.605Q153.382-63.775 153.728-63.775Q154.128-63.775 154.404-63.635Q154.681-63.495 154.767-63.147Q154.934-63.440 155.233-63.608Q155.532-63.775 155.878-63.775Q156.383-63.775 156.667-63.552Q156.951-63.328 156.951-62.832L156.951-61.178Q156.951-61.041 157.100-61.005Q157.248-60.969 157.474-60.969L157.474-60.689L155.843-60.689L155.843-60.969Q156.069-60.969 156.219-61.005Q156.370-61.041 156.370-61.178L156.370-62.818Q156.370-63.153 156.250-63.353Q156.131-63.553 155.816-63.553Q155.546-63.553 155.312-63.417Q155.078-63.280 154.939-63.046Q154.801-62.812 154.801-62.538L154.801-61.178Q154.801-61.041 154.950-61.005Q155.098-60.969 155.324-60.969L155.324-60.689L153.694-60.689L153.694-60.969Q153.923-60.969 154.071-61.003Q154.220-61.038 154.220-61.178L154.220-62.818Q154.220-63.153 154.100-63.353Q153.981-63.553 153.666-63.553Q153.396-63.553 153.162-63.417Q152.928-63.280 152.789-63.046Q152.651-62.812 152.651-62.538L152.651-61.178Q152.651-61.041 152.801-61.005Q152.952-60.969 153.177-60.969L153.177-60.689M158.021-62.224Q158.021-62.545 158.145-62.834Q158.270-63.123 158.496-63.346Q158.721-63.570 159.017-63.690Q159.313-63.810 159.631-63.810Q159.959-63.810 160.220-63.710Q160.482-63.611 160.658-63.429Q160.834-63.246 160.928-62.988Q161.022-62.730 161.022-62.398Q161.022-62.306 160.940-62.285L158.684-62.285L158.684-62.224Q158.684-61.636 158.967-61.253Q159.251-60.870 159.819-60.870Q160.140-60.870 160.408-61.063Q160.676-61.256 160.765-61.571Q160.772-61.612 160.847-61.626L160.940-61.626Q161.022-61.602 161.022-61.530Q161.022-61.523 161.015-61.496Q160.902-61.099 160.531-60.860Q160.160-60.621 159.736-60.621Q159.299-60.621 158.899-60.829Q158.499-61.038 158.260-61.405Q158.021-61.772 158.021-62.224M158.691-62.494L160.506-62.494Q160.506-62.771 160.408-63.023Q160.311-63.276 160.112-63.432Q159.914-63.587 159.631-63.587Q159.354-63.587 159.140-63.429Q158.926-63.270 158.808-63.015Q158.691-62.760 158.691-62.494\" 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\">One architecture, three microarchitectures. The same x86-64 program (W instructions) produces the same result on all three chips, so the architecture is fixed. Only the running time differs — in-order with a small cache is slowest, out-of-order faster, out-of-order with a big cache faster still — and the program cannot tell which one it ran on.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:374.030px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 280.523 142.973\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M-62.558-49.308H51.253v-19.917h-113.81Z\"\u002F>\u003Cg transform=\"translate(-10.088 2.733)\">\u003Cpath d=\"M-2.941-59.266L-5.300-59.266L-5.300-59.563Q-4.976-59.563-4.734-59.610Q-4.492-59.657-4.492-59.825L-4.492-64.168Q-4.492-64.340-4.734-64.387Q-4.976-64.434-5.300-64.434L-5.300-64.731L-2.707-64.731Q-2.375-64.731-1.988-64.645Q-1.601-64.559-1.254-64.385Q-0.906-64.211-0.687-63.930Q-0.468-63.649-0.468-63.282Q-0.468-62.957-0.670-62.692Q-0.871-62.426-1.177-62.250Q-1.484-62.075-1.812-61.985Q-1.445-61.864-1.185-61.594Q-0.925-61.325-0.875-60.961L-0.781-60.266Q-0.711-59.817-0.613-59.586Q-0.515-59.356-0.218-59.356Q0.028-59.356 0.160-59.573Q0.293-59.789 0.293-60.051Q0.313-60.125 0.395-60.145L0.477-60.145Q0.571-60.121 0.571-60.028Q0.571-59.797 0.473-59.582Q0.375-59.368 0.198-59.233Q0.020-59.098-0.211-59.098Q-0.808-59.098-1.226-59.385Q-1.644-59.672-1.644-60.243L-1.644-60.938Q-1.644-61.219-1.797-61.434Q-1.949-61.649-2.199-61.762Q-2.449-61.875-2.722-61.875L-3.750-61.875L-3.750-59.825Q-3.750-59.661-3.506-59.612Q-3.261-59.563-2.941-59.563L-2.941-59.266M-3.750-64.168L-3.750-62.129L-2.820-62.129Q-2.500-62.129-2.232-62.182Q-1.965-62.235-1.765-62.362Q-1.566-62.489-1.449-62.721Q-1.332-62.953-1.332-63.282Q-1.332-63.934-1.728-64.184Q-2.125-64.434-2.820-64.434L-3.347-64.434Q-3.566-64.434-3.658-64.391Q-3.750-64.348-3.750-64.168M3.356-59.266L0.891-59.266L0.891-59.563Q1.223-59.563 1.481-59.610Q1.739-59.657 1.739-59.825L1.739-64.168Q1.739-64.434 0.891-64.434L0.891-64.731L3.356-64.731L3.356-64.434Q2.504-64.434 2.504-64.168L2.504-59.825Q2.504-59.563 3.356-59.563L3.356-59.266M4.121-59.188L4.121-60.993Q4.121-61.020 4.153-61.051Q4.184-61.082 4.207-61.082L4.313-61.082Q4.344-61.082 4.373-61.053Q4.403-61.024 4.403-60.993Q4.403-60.211 4.918-59.803Q5.434-59.395 6.243-59.395Q6.539-59.395 6.795-59.545Q7.051-59.696 7.202-59.952Q7.352-60.207 7.352-60.504Q7.352-60.903 7.106-61.207Q6.860-61.512 6.489-61.594L5.368-61.852Q5.028-61.926 4.741-62.147Q4.453-62.368 4.287-62.686Q4.121-63.004 4.121-63.356Q4.121-63.786 4.352-64.141Q4.582-64.496 4.963-64.698Q5.344-64.899 5.770-64.899Q6.020-64.899 6.266-64.840Q6.512-64.782 6.731-64.659Q6.950-64.536 7.114-64.356L7.442-64.852Q7.473-64.899 7.512-64.899L7.559-64.899Q7.586-64.899 7.618-64.868Q7.649-64.836 7.649-64.809L7.649-63Q7.649-62.977 7.618-62.946Q7.586-62.914 7.559-62.914L7.457-62.914Q7.426-62.914 7.397-62.944Q7.368-62.973 7.368-63Q7.368-63.133 7.325-63.319Q7.282-63.504 7.217-63.659Q7.153-63.813 7.053-63.971Q6.953-64.129 6.864-64.219Q6.434-64.625 5.770-64.625Q5.493-64.625 5.233-64.493Q4.973-64.360 4.815-64.125Q4.657-63.891 4.657-63.610Q4.657-63.254 4.897-62.983Q5.137-62.711 5.504-62.625L6.618-62.371Q6.895-62.305 7.127-62.151Q7.360-61.996 7.530-61.778Q7.700-61.559 7.793-61.301Q7.887-61.043 7.887-60.754Q7.887-60.426 7.762-60.123Q7.637-59.821 7.403-59.584Q7.168-59.348 6.875-59.223Q6.582-59.098 6.243-59.098Q5.227-59.098 4.657-59.641L4.328-59.145Q4.297-59.098 4.258-59.098L4.207-59.098Q4.184-59.098 4.153-59.129Q4.121-59.161 4.121-59.188M8.840-62Q8.840-62.594 9.073-63.125Q9.305-63.657 9.721-64.057Q10.137-64.457 10.670-64.678Q11.203-64.899 11.809-64.899Q12.246-64.899 12.645-64.717Q13.043-64.536 13.352-64.203L13.825-64.868Q13.856-64.899 13.887-64.899L13.934-64.899Q13.961-64.899 13.993-64.868Q14.024-64.836 14.024-64.809L14.024-62.672Q14.024-62.649 13.993-62.618Q13.961-62.586 13.934-62.586L13.817-62.586Q13.789-62.586 13.758-62.618Q13.727-62.649 13.727-62.672Q13.727-62.938 13.584-63.291Q13.442-63.645 13.262-63.883Q13.008-64.215 12.659-64.409Q12.309-64.602 11.903-64.602Q11.399-64.602 10.946-64.383Q10.493-64.164 10.200-63.770Q9.703-63.102 9.703-62Q9.703-61.469 9.840-61.002Q9.977-60.536 10.252-60.170Q10.528-59.805 10.948-59.600Q11.368-59.395 11.910-59.395Q12.399-59.395 12.823-59.639Q13.246-59.883 13.494-60.303Q13.743-60.723 13.743-61.219Q13.743-61.254 13.772-61.280Q13.801-61.305 13.832-61.305L13.934-61.305Q13.977-61.305 14-61.276Q14.024-61.246 14.024-61.203Q14.024-60.766 13.848-60.377Q13.672-59.989 13.362-59.705Q13.051-59.422 12.641-59.260Q12.231-59.098 11.809-59.098Q11.219-59.098 10.678-59.319Q10.137-59.539 9.721-59.944Q9.305-60.348 9.073-60.877Q8.840-61.407 8.840-62\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M85.396-49.308h113.811v-19.917H85.397Z\"\u002F>\u003Cg transform=\"translate(137.923 2.733)\">\u003Cpath d=\"M-5.179-62Q-5.179-62.594-4.947-63.125Q-4.715-63.657-4.298-64.057Q-3.882-64.457-3.349-64.678Q-2.816-64.899-2.211-64.899Q-1.773-64.899-1.375-64.717Q-0.976-64.536-0.668-64.203L-0.195-64.868Q-0.164-64.899-0.132-64.899L-0.086-64.899Q-0.058-64.899-0.027-64.868Q0.004-64.836 0.004-64.809L0.004-62.672Q0.004-62.649-0.027-62.618Q-0.058-62.586-0.086-62.586L-0.203-62.586Q-0.230-62.586-0.261-62.618Q-0.293-62.649-0.293-62.672Q-0.293-62.938-0.435-63.291Q-0.578-63.645-0.757-63.883Q-1.011-64.215-1.361-64.409Q-1.711-64.602-2.117-64.602Q-2.621-64.602-3.074-64.383Q-3.527-64.164-3.820-63.770Q-4.316-63.102-4.316-62Q-4.316-61.469-4.179-61.002Q-4.043-60.536-3.767-60.170Q-3.492-59.805-3.072-59.600Q-2.652-59.395-2.109-59.395Q-1.621-59.395-1.197-59.639Q-0.773-59.883-0.525-60.303Q-0.277-60.723-0.277-61.219Q-0.277-61.254-0.248-61.280Q-0.218-61.305-0.187-61.305L-0.086-61.305Q-0.043-61.305-0.019-61.276Q0.004-61.246 0.004-61.203Q0.004-60.766-0.172-60.377Q-0.347-59.989-0.658-59.705Q-0.968-59.422-1.379-59.260Q-1.789-59.098-2.211-59.098Q-2.800-59.098-3.341-59.319Q-3.882-59.539-4.298-59.944Q-4.715-60.348-4.947-60.877Q-5.179-61.407-5.179-62M3.246-59.266L0.782-59.266L0.782-59.563Q1.114-59.563 1.371-59.610Q1.629-59.657 1.629-59.825L1.629-64.168Q1.629-64.434 0.782-64.434L0.782-64.731L3.246-64.731L3.246-64.434Q2.395-64.434 2.395-64.168L2.395-59.825Q2.395-59.563 3.246-59.563L3.246-59.266M4.012-59.188L4.012-60.993Q4.012-61.020 4.043-61.051Q4.075-61.082 4.098-61.082L4.203-61.082Q4.235-61.082 4.264-61.053Q4.293-61.024 4.293-60.993Q4.293-60.211 4.809-59.803Q5.325-59.395 6.133-59.395Q6.430-59.395 6.686-59.545Q6.942-59.696 7.092-59.952Q7.243-60.207 7.243-60.504Q7.243-60.903 6.996-61.207Q6.750-61.512 6.379-61.594L5.258-61.852Q4.918-61.926 4.631-62.147Q4.344-62.368 4.178-62.686Q4.012-63.004 4.012-63.356Q4.012-63.786 4.243-64.141Q4.473-64.496 4.854-64.698Q5.235-64.899 5.660-64.899Q5.910-64.899 6.157-64.840Q6.403-64.782 6.621-64.659Q6.840-64.536 7.004-64.356L7.332-64.852Q7.364-64.899 7.403-64.899L7.450-64.899Q7.477-64.899 7.508-64.868Q7.539-64.836 7.539-64.809L7.539-63Q7.539-62.977 7.508-62.946Q7.477-62.914 7.450-62.914L7.348-62.914Q7.317-62.914 7.287-62.944Q7.258-62.973 7.258-63Q7.258-63.133 7.215-63.319Q7.172-63.504 7.108-63.659Q7.043-63.813 6.944-63.971Q6.844-64.129 6.754-64.219Q6.325-64.625 5.660-64.625Q5.383-64.625 5.123-64.493Q4.864-64.360 4.705-64.125Q4.547-63.891 4.547-63.610Q4.547-63.254 4.787-62.983Q5.028-62.711 5.395-62.625L6.508-62.371Q6.785-62.305 7.018-62.151Q7.250-61.996 7.420-61.778Q7.590-61.559 7.684-61.301Q7.778-61.043 7.778-60.754Q7.778-60.426 7.653-60.123Q7.528-59.821 7.293-59.584Q7.059-59.348 6.766-59.223Q6.473-59.098 6.133-59.098Q5.118-59.098 4.547-59.641L4.219-59.145Q4.188-59.098 4.149-59.098L4.098-59.098Q4.075-59.098 4.043-59.129Q4.012-59.161 4.012-59.188M8.731-62Q8.731-62.594 8.963-63.125Q9.196-63.657 9.612-64.057Q10.028-64.457 10.561-64.678Q11.094-64.899 11.700-64.899Q12.137-64.899 12.535-64.717Q12.934-64.536 13.243-64.203L13.715-64.868Q13.746-64.899 13.778-64.899L13.825-64.899Q13.852-64.899 13.883-64.868Q13.914-64.836 13.914-64.809L13.914-62.672Q13.914-62.649 13.883-62.618Q13.852-62.586 13.825-62.586L13.707-62.586Q13.680-62.586 13.649-62.618Q13.618-62.649 13.618-62.672Q13.618-62.938 13.475-63.291Q13.332-63.645 13.153-63.883Q12.899-64.215 12.549-64.409Q12.200-64.602 11.793-64.602Q11.289-64.602 10.836-64.383Q10.383-64.164 10.090-63.770Q9.594-63.102 9.594-62Q9.594-61.469 9.731-61.002Q9.868-60.536 10.143-60.170Q10.418-59.805 10.838-59.600Q11.258-59.395 11.801-59.395Q12.289-59.395 12.713-59.639Q13.137-59.883 13.385-60.303Q13.633-60.723 13.633-61.219Q13.633-61.254 13.662-61.280Q13.692-61.305 13.723-61.305L13.825-61.305Q13.868-61.305 13.891-61.276Q13.914-61.246 13.914-61.203Q13.914-60.766 13.739-60.377Q13.563-59.989 13.252-59.705Q12.942-59.422 12.532-59.260Q12.121-59.098 11.700-59.098Q11.110-59.098 10.569-59.319Q10.028-59.539 9.612-59.944Q9.196-60.348 8.963-60.877Q8.731-61.407 8.731-62\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.06 29.03)\">\u003Cpath d=\"M-3.347-59.266L-5.332-59.266L-5.332-59.563Q-5.058-59.563-4.890-59.610Q-4.722-59.657-4.722-59.825L-4.722-62.418L-5.363-62.418L-5.363-62.715L-4.722-62.715L-4.722-63.649Q-4.722-63.914-4.605-64.151Q-4.488-64.387-4.295-64.551Q-4.101-64.715-3.853-64.807Q-3.605-64.899-3.340-64.899Q-3.054-64.899-2.830-64.741Q-2.605-64.582-2.605-64.305Q-2.605-64.149-2.711-64.039Q-2.816-63.930-2.980-63.930Q-3.136-63.930-3.246-64.039Q-3.355-64.149-3.355-64.305Q-3.355-64.512-3.195-64.618Q-3.293-64.641-3.386-64.641Q-3.617-64.641-3.789-64.485Q-3.961-64.328-4.047-64.092Q-4.132-63.856-4.132-63.633L-4.132-62.715L-3.164-62.715L-3.164-62.418L-4.109-62.418L-4.109-59.825Q-4.109-59.657-3.882-59.610Q-3.656-59.563-3.347-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 29.03)\">\u003Cpath d=\"M-0.325-59.266L-2.103-59.266L-2.103-59.563Q-1.829-59.563-1.661-59.610Q-1.493-59.657-1.493-59.825L-1.493-61.961Q-1.493-62.176-1.550-62.272Q-1.607-62.368-1.720-62.389Q-1.833-62.411-2.079-62.411L-2.079-62.707L-0.880-62.793L-0.880-59.825Q-0.880-59.657-0.734-59.610Q-0.587-59.563-0.325-59.563L-0.325-59.266M-1.767-64.188Q-1.767-64.379-1.632-64.510Q-1.497-64.641-1.302-64.641Q-1.181-64.641-1.077-64.578Q-0.974-64.516-0.911-64.412Q-0.849-64.309-0.849-64.188Q-0.849-63.993-0.980-63.858Q-1.110-63.723-1.302-63.723Q-1.501-63.723-1.634-63.856Q-1.767-63.989-1.767-64.188M1.561-59.266L0.065-59.266L0.065-59.563Q0.698-59.563 1.120-60.043L1.890-60.953L0.897-62.153Q0.741-62.332 0.579-62.375Q0.417-62.418 0.112-62.418L0.112-62.715L1.800-62.715L1.800-62.418Q1.706-62.418 1.630-62.375Q1.554-62.332 1.554-62.243Q1.554-62.200 1.585-62.153L2.241-61.364L2.722-61.938Q2.839-62.075 2.839-62.211Q2.839-62.301 2.788-62.360Q2.737-62.418 2.655-62.418L2.655-62.715L4.143-62.715L4.143-62.418Q3.507-62.418 3.097-61.938L2.417-61.137L3.503-59.825Q3.663-59.649 3.823-59.606Q3.983-59.563 4.288-59.563L4.288-59.266L2.600-59.266L2.600-59.563Q2.690-59.563 2.768-59.606Q2.847-59.649 2.847-59.739Q2.847-59.762 2.815-59.825L2.073-60.731L1.487-60.043Q1.370-59.907 1.370-59.770Q1.370-59.684 1.421-59.623Q1.472-59.563 1.561-59.563L1.561-59.266M4.655-61.020Q4.655-61.500 4.888-61.916Q5.120-62.332 5.530-62.582Q5.940-62.832 6.417-62.832Q7.147-62.832 7.546-62.391Q7.944-61.950 7.944-61.219Q7.944-61.114 7.850-61.090L5.401-61.090L5.401-61.020Q5.401-60.610 5.522-60.254Q5.643-59.899 5.915-59.682Q6.186-59.465 6.616-59.465Q6.979-59.465 7.276-59.694Q7.573-59.922 7.675-60.274Q7.682-60.321 7.768-60.336L7.850-60.336Q7.944-60.309 7.944-60.227Q7.944-60.219 7.936-60.188Q7.874-59.961 7.735-59.778Q7.597-59.594 7.405-59.461Q7.214-59.328 6.995-59.258Q6.776-59.188 6.538-59.188Q6.167-59.188 5.829-59.325Q5.491-59.461 5.223-59.713Q4.956-59.965 4.806-60.305Q4.655-60.645 4.655-61.020M5.409-61.328L7.370-61.328Q7.370-61.633 7.268-61.924Q7.167-62.215 6.950-62.397Q6.733-62.578 6.417-62.578Q6.116-62.578 5.886-62.391Q5.655-62.203 5.532-61.912Q5.409-61.621 5.409-61.328M10.249-59.188Q9.768-59.188 9.360-59.432Q8.952-59.676 8.714-60.090Q8.475-60.504 8.475-60.993Q8.475-61.485 8.733-61.901Q8.991-62.317 9.423-62.555Q9.854-62.793 10.347-62.793Q10.968-62.793 11.417-62.356L11.417-63.985Q11.417-64.200 11.354-64.295Q11.292-64.391 11.175-64.412Q11.057-64.434 10.811-64.434L10.811-64.731L12.034-64.817L12.034-60.008Q12.034-59.797 12.097-59.702Q12.159-59.606 12.276-59.584Q12.393-59.563 12.643-59.563L12.643-59.266L11.393-59.188L11.393-59.672Q10.929-59.188 10.249-59.188M10.315-59.442Q10.655-59.442 10.948-59.633Q11.241-59.825 11.393-60.121L11.393-61.953Q11.245-62.227 10.983-62.383Q10.722-62.539 10.409-62.539Q9.784-62.539 9.501-62.092Q9.218-61.645 9.218-60.985Q9.218-60.340 9.470-59.891Q9.722-59.442 10.315-59.442\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 29.03)\">\u003Cpath d=\"M17.909-59.266L16.077-59.266L16.077-59.563Q16.351-59.563 16.519-59.610Q16.687-59.657 16.687-59.825L16.687-63.985Q16.687-64.200 16.624-64.295Q16.562-64.391 16.443-64.412Q16.323-64.434 16.077-64.434L16.077-64.731L17.300-64.817L17.300-59.825Q17.300-59.657 17.468-59.610Q17.636-59.563 17.909-59.563L17.909-59.266M18.355-61.020Q18.355-61.500 18.587-61.916Q18.819-62.332 19.230-62.582Q19.640-62.832 20.116-62.832Q20.847-62.832 21.245-62.391Q21.644-61.950 21.644-61.219Q21.644-61.114 21.550-61.090L19.101-61.090L19.101-61.020Q19.101-60.610 19.222-60.254Q19.343-59.899 19.614-59.682Q19.886-59.465 20.316-59.465Q20.679-59.465 20.976-59.694Q21.273-59.922 21.374-60.274Q21.382-60.321 21.468-60.336L21.550-60.336Q21.644-60.309 21.644-60.227Q21.644-60.219 21.636-60.188Q21.573-59.961 21.435-59.778Q21.296-59.594 21.105-59.461Q20.913-59.328 20.694-59.258Q20.476-59.188 20.237-59.188Q19.866-59.188 19.528-59.325Q19.191-59.461 18.923-59.713Q18.655-59.965 18.505-60.305Q18.355-60.645 18.355-61.020M19.109-61.328L21.069-61.328Q21.069-61.633 20.968-61.924Q20.866-62.215 20.650-62.397Q20.433-62.578 20.116-62.578Q19.816-62.578 19.585-62.391Q19.355-62.203 19.232-61.912Q19.109-61.621 19.109-61.328M24.062-59.266L22.206-59.266L22.206-59.563Q22.480-59.563 22.648-59.610Q22.816-59.657 22.816-59.825L22.816-61.961Q22.816-62.176 22.753-62.272Q22.691-62.368 22.571-62.389Q22.452-62.411 22.206-62.411L22.206-62.707L23.398-62.793L23.398-62.059Q23.511-62.274 23.704-62.442Q23.898-62.610 24.136-62.702Q24.374-62.793 24.628-62.793Q25.796-62.793 25.796-61.715L25.796-59.825Q25.796-59.657 25.966-59.610Q26.136-59.563 26.405-59.563L26.405-59.266L24.550-59.266L24.550-59.563Q24.823-59.563 24.991-59.610Q25.159-59.657 25.159-59.825L25.159-61.700Q25.159-62.082 25.038-62.311Q24.917-62.539 24.566-62.539Q24.253-62.539 23.999-62.377Q23.745-62.215 23.599-61.946Q23.452-61.676 23.452-61.379L23.452-59.825Q23.452-59.657 23.622-59.610Q23.792-59.563 24.062-59.563L24.062-59.266M26.851-58.657Q26.851-58.938 27.062-59.149Q27.273-59.360 27.558-59.450Q27.402-59.575 27.323-59.764Q27.245-59.953 27.245-60.153Q27.245-60.508 27.476-60.801Q27.109-61.141 27.109-61.610Q27.109-61.961 27.312-62.231Q27.515-62.500 27.835-62.647Q28.155-62.793 28.499-62.793Q29.019-62.793 29.390-62.512Q29.753-62.883 30.300-62.883Q30.480-62.883 30.607-62.756Q30.734-62.629 30.734-62.450Q30.734-62.344 30.655-62.266Q30.577-62.188 30.468-62.188Q30.359-62.188 30.282-62.264Q30.206-62.340 30.206-62.450Q30.206-62.551 30.245-62.602Q30.253-62.610 30.257-62.616Q30.261-62.621 30.261-62.625Q29.886-62.625 29.566-62.371Q29.886-62.032 29.886-61.610Q29.886-61.340 29.769-61.123Q29.652-60.907 29.446-60.748Q29.241-60.590 28.999-60.508Q28.757-60.426 28.499-60.426Q28.280-60.426 28.068-60.485Q27.855-60.543 27.659-60.664Q27.566-60.524 27.566-60.344Q27.566-60.137 27.702-59.985Q27.839-59.832 28.046-59.832L28.741-59.832Q29.230-59.832 29.642-59.748Q30.054-59.664 30.333-59.407Q30.612-59.149 30.612-58.657Q30.612-58.293 30.292-58.061Q29.972-57.828 29.530-57.727Q29.089-57.625 28.734-57.625Q28.378-57.625 27.935-57.727Q27.491-57.828 27.171-58.061Q26.851-58.293 26.851-58.657M27.355-58.657Q27.355-58.461 27.499-58.313Q27.644-58.164 27.857-58.075Q28.069-57.985 28.310-57.938Q28.550-57.891 28.734-57.891Q28.976-57.891 29.306-57.969Q29.636-58.047 29.872-58.221Q30.109-58.395 30.109-58.657Q30.109-59.063 29.698-59.172Q29.288-59.282 28.726-59.282L28.046-59.282Q27.777-59.282 27.566-59.104Q27.355-58.926 27.355-58.657M28.499-60.692Q29.222-60.692 29.222-61.610Q29.222-62.532 28.499-62.532Q27.773-62.532 27.773-61.610Q27.773-60.692 28.499-60.692M31.722-60.227L31.722-62.418L31.019-62.418L31.019-62.672Q31.374-62.672 31.616-62.905Q31.859-63.137 31.970-63.485Q32.081-63.832 32.081-64.188L32.362-64.188L32.362-62.715L33.538-62.715L33.538-62.418L32.362-62.418L32.362-60.243Q32.362-59.922 32.482-59.694Q32.601-59.465 32.882-59.465Q33.062-59.465 33.179-59.588Q33.296-59.711 33.349-59.891Q33.402-60.071 33.402-60.243L33.402-60.715L33.683-60.715L33.683-60.227Q33.683-59.973 33.577-59.733Q33.472-59.493 33.275-59.340Q33.077-59.188 32.819-59.188Q32.503-59.188 32.251-59.311Q31.999-59.434 31.861-59.668Q31.722-59.903 31.722-60.227M36.331-59.266L34.476-59.266L34.476-59.563Q34.749-59.563 34.917-59.610Q35.085-59.657 35.085-59.825L35.085-63.985Q35.085-64.200 35.023-64.295Q34.960-64.391 34.841-64.412Q34.722-64.434 34.476-64.434L34.476-64.731L35.698-64.817L35.698-62.114Q35.823-62.325 36.011-62.475Q36.198-62.625 36.425-62.709Q36.652-62.793 36.898-62.793Q38.066-62.793 38.066-61.715L38.066-59.825Q38.066-59.657 38.236-59.610Q38.405-59.563 38.675-59.563L38.675-59.266L36.819-59.266L36.819-59.563Q37.093-59.563 37.261-59.610Q37.429-59.657 37.429-59.825L37.429-61.700Q37.429-62.082 37.308-62.311Q37.187-62.539 36.835-62.539Q36.523-62.539 36.269-62.377Q36.015-62.215 35.868-61.946Q35.722-61.676 35.722-61.379L35.722-59.825Q35.722-59.657 35.892-59.610Q36.062-59.563 36.331-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 29.03)\">\u003Cpath d=\"M44.347-57.274Q43.734-57.731 43.332-58.366Q42.929-59 42.734-59.746Q42.539-60.493 42.539-61.266Q42.539-62.039 42.734-62.786Q42.929-63.532 43.332-64.166Q43.734-64.801 44.347-65.258Q44.359-65.262 44.367-65.264Q44.375-65.266 44.386-65.266L44.464-65.266Q44.503-65.266 44.529-65.239Q44.554-65.211 44.554-65.168Q44.554-65.118 44.523-65.098Q44.015-64.645 43.693-64.022Q43.371-63.399 43.230-62.703Q43.089-62.008 43.089-61.266Q43.089-60.532 43.228-59.832Q43.367-59.133 43.691-58.508Q44.015-57.883 44.523-57.434Q44.554-57.414 44.554-57.364Q44.554-57.321 44.529-57.293Q44.503-57.266 44.464-57.266L44.386-57.266Q44.378-57.270 44.369-57.272Q44.359-57.274 44.347-57.274M47.515-60.578L45.273-60.578L45.273-60.875L47.843-64.532Q47.882-64.586 47.945-64.586L48.089-64.586Q48.140-64.586 48.171-64.555Q48.203-64.524 48.203-64.473L48.203-60.875L49.035-60.875L49.035-60.578L48.203-60.578L48.203-59.825Q48.203-59.563 49.027-59.563L49.027-59.266L46.691-59.266L46.691-59.563Q47.515-59.563 47.515-59.825L47.515-60.578M47.570-63.680L45.601-60.875L47.570-60.875\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 29.03)\">\u003Cpath d=\"M55.766-59.266L52.485-59.266L52.485-59.563Q52.809-59.563 53.052-59.610Q53.294-59.657 53.294-59.825L53.294-64.168Q53.294-64.340 53.052-64.387Q52.809-64.434 52.485-64.434L52.485-64.731L55.532-64.731Q55.958-64.731 56.391-64.577Q56.825-64.422 57.120-64.114Q57.415-63.805 57.415-63.371Q57.415-63.118 57.290-62.901Q57.165-62.684 56.964-62.528Q56.763-62.371 56.530-62.272Q56.298-62.172 56.040-62.121Q56.415-62.086 56.794-61.909Q57.173-61.731 57.413-61.432Q57.653-61.133 57.653-60.739Q57.653-60.286 57.370-59.952Q57.087-59.618 56.651-59.442Q56.216-59.266 55.766-59.266M54.005-61.977L54.005-59.825Q54.005-59.653 54.097-59.608Q54.188-59.563 54.407-59.563L55.532-59.563Q55.770-59.563 56.005-59.651Q56.239-59.739 56.425-59.899Q56.610-60.059 56.712-60.272Q56.813-60.485 56.813-60.739Q56.813-61.059 56.661-61.344Q56.509-61.629 56.239-61.803Q55.970-61.977 55.653-61.977L54.005-61.977M54.005-64.168L54.005-62.235L55.294-62.235Q55.536-62.235 55.774-62.317Q56.013-62.399 56.196-62.545Q56.380-62.692 56.493-62.909Q56.606-63.125 56.606-63.371Q56.606-63.582 56.520-63.784Q56.434-63.985 56.288-64.127Q56.141-64.270 55.946-64.352Q55.751-64.434 55.532-64.434L54.407-64.434Q54.188-64.434 54.097-64.391Q54.005-64.348 54.005-64.168M58.774-57.266L58.692-57.266Q58.657-57.266 58.632-57.295Q58.606-57.325 58.606-57.364Q58.606-57.414 58.638-57.434Q59.024-57.770 59.307-58.219Q59.591-58.668 59.757-59.168Q59.923-59.668 59.997-60.186Q60.071-60.703 60.071-61.266Q60.071-61.836 59.997-62.352Q59.923-62.868 59.757-63.364Q59.591-63.860 59.311-64.307Q59.032-64.754 58.638-65.098Q58.606-65.118 58.606-65.168Q58.606-65.207 58.632-65.237Q58.657-65.266 58.692-65.266L58.774-65.266Q58.786-65.266 58.796-65.264Q58.806-65.262 58.813-65.258Q59.427-64.801 59.829-64.166Q60.231-63.532 60.427-62.786Q60.622-62.039 60.622-61.266Q60.622-60.493 60.427-59.746Q60.231-59 59.829-58.366Q59.427-57.731 58.813-57.274Q58.802-57.274 58.794-57.272Q58.786-57.270 58.774-57.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(93.894 29.03)\">\u003Cpath d=\"M-3.613-59.297L-4.836-62.153Q-4.918-62.328-5.062-62.373Q-5.207-62.418-5.476-62.418L-5.476-62.715L-3.765-62.715L-3.765-62.418Q-4.187-62.418-4.187-62.235Q-4.187-62.200-4.172-62.153L-3.226-59.961L-2.386-61.938Q-2.347-62.016-2.347-62.106Q-2.347-62.246-2.453-62.332Q-2.558-62.418-2.699-62.418L-2.699-62.715L-1.347-62.715L-1.347-62.418Q-1.871-62.418-2.086-61.938L-3.211-59.297Q-3.273-59.188-3.379-59.188L-3.445-59.188Q-3.558-59.188-3.613-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 29.03)\">\u003Cpath d=\"M-1.302-60.098Q-1.302-60.582-0.900-60.877Q-0.497-61.172 0.053-61.291Q0.604-61.411 1.096-61.411L1.096-61.700Q1.096-61.926 0.981-62.133Q0.866-62.340 0.669-62.459Q0.471-62.578 0.241-62.578Q-0.185-62.578-0.470-62.473Q-0.400-62.446-0.353-62.391Q-0.306-62.336-0.281-62.266Q-0.255-62.196-0.255-62.121Q-0.255-62.016-0.306-61.924Q-0.357-61.832-0.449-61.782Q-0.540-61.731-0.646-61.731Q-0.751-61.731-0.843-61.782Q-0.935-61.832-0.986-61.924Q-1.036-62.016-1.036-62.121Q-1.036-62.539-0.648-62.686Q-0.259-62.832 0.241-62.832Q0.573-62.832 0.926-62.702Q1.280-62.571 1.508-62.317Q1.737-62.063 1.737-61.715L1.737-59.914Q1.737-59.782 1.809-59.672Q1.882-59.563 2.010-59.563Q2.135-59.563 2.204-59.668Q2.272-59.774 2.272-59.914L2.272-60.426L2.553-60.426L2.553-59.914Q2.553-59.711 2.436-59.553Q2.319-59.395 2.137-59.311Q1.956-59.227 1.753-59.227Q1.522-59.227 1.370-59.399Q1.217-59.571 1.186-59.801Q1.026-59.520 0.717-59.354Q0.409-59.188 0.057-59.188Q-0.454-59.188-0.878-59.411Q-1.302-59.633-1.302-60.098M-0.615-60.098Q-0.615-59.813-0.388-59.627Q-0.161-59.442 0.132-59.442Q0.378-59.442 0.602-59.559Q0.827-59.676 0.962-59.879Q1.096-60.082 1.096-60.336L1.096-61.168Q0.831-61.168 0.546-61.114Q0.260-61.059-0.011-60.930Q-0.283-60.801-0.449-60.594Q-0.615-60.387-0.615-60.098M4.854-59.266L2.874-59.266L2.874-59.563Q3.143-59.563 3.311-59.608Q3.479-59.653 3.479-59.825L3.479-61.961Q3.479-62.176 3.417-62.272Q3.354-62.368 3.237-62.389Q3.120-62.411 2.874-62.411L2.874-62.707L4.042-62.793L4.042-62.008Q4.120-62.219 4.272-62.405Q4.425-62.590 4.624-62.692Q4.823-62.793 5.050-62.793Q5.296-62.793 5.487-62.649Q5.678-62.504 5.678-62.274Q5.678-62.118 5.573-62.008Q5.467-61.899 5.311-61.899Q5.155-61.899 5.046-62.008Q4.936-62.118 4.936-62.274Q4.936-62.434 5.042-62.539Q4.717-62.539 4.503-62.311Q4.288-62.082 4.192-61.743Q4.096-61.403 4.096-61.098L4.096-59.825Q4.096-59.657 4.323-59.610Q4.550-59.563 4.854-59.563L4.854-59.266M8.018-59.266L6.241-59.266L6.241-59.563Q6.514-59.563 6.682-59.610Q6.850-59.657 6.850-59.825L6.850-61.961Q6.850-62.176 6.794-62.272Q6.737-62.368 6.624-62.389Q6.510-62.411 6.264-62.411L6.264-62.707L7.464-62.793L7.464-59.825Q7.464-59.657 7.610-59.610Q7.757-59.563 8.018-59.563L8.018-59.266M6.577-64.188Q6.577-64.379 6.712-64.510Q6.846-64.641 7.042-64.641Q7.163-64.641 7.266-64.578Q7.370-64.516 7.432-64.412Q7.495-64.309 7.495-64.188Q7.495-63.993 7.364-63.858Q7.233-63.723 7.042-63.723Q6.842-63.723 6.710-63.856Q6.577-63.989 6.577-64.188M8.616-60.098Q8.616-60.582 9.018-60.877Q9.421-61.172 9.971-61.291Q10.522-61.411 11.014-61.411L11.014-61.700Q11.014-61.926 10.899-62.133Q10.784-62.340 10.587-62.459Q10.389-62.578 10.159-62.578Q9.733-62.578 9.448-62.473Q9.518-62.446 9.565-62.391Q9.612-62.336 9.637-62.266Q9.663-62.196 9.663-62.121Q9.663-62.016 9.612-61.924Q9.561-61.832 9.469-61.782Q9.378-61.731 9.272-61.731Q9.167-61.731 9.075-61.782Q8.983-61.832 8.932-61.924Q8.882-62.016 8.882-62.121Q8.882-62.539 9.270-62.686Q9.659-62.832 10.159-62.832Q10.491-62.832 10.844-62.702Q11.198-62.571 11.426-62.317Q11.655-62.063 11.655-61.715L11.655-59.914Q11.655-59.782 11.727-59.672Q11.800-59.563 11.928-59.563Q12.053-59.563 12.122-59.668Q12.190-59.774 12.190-59.914L12.190-60.426L12.471-60.426L12.471-59.914Q12.471-59.711 12.354-59.553Q12.237-59.395 12.055-59.311Q11.874-59.227 11.671-59.227Q11.440-59.227 11.288-59.399Q11.135-59.571 11.104-59.801Q10.944-59.520 10.635-59.354Q10.327-59.188 9.975-59.188Q9.464-59.188 9.040-59.411Q8.616-59.633 8.616-60.098M9.303-60.098Q9.303-59.813 9.530-59.627Q9.757-59.442 10.050-59.442Q10.296-59.442 10.520-59.559Q10.745-59.676 10.880-59.879Q11.014-60.082 11.014-60.336L11.014-61.168Q10.749-61.168 10.464-61.114Q10.178-61.059 9.907-60.930Q9.635-60.801 9.469-60.594Q9.303-60.387 9.303-60.098M13.678-59.266L13.397-59.266L13.397-63.985Q13.397-64.200 13.335-64.295Q13.272-64.391 13.155-64.412Q13.038-64.434 12.792-64.434L12.792-64.731L14.014-64.817L14.014-62.328Q14.491-62.793 15.190-62.793Q15.671-62.793 16.079-62.549Q16.487-62.305 16.723-61.891Q16.960-61.477 16.960-60.993Q16.960-60.618 16.811-60.289Q16.663-59.961 16.393-59.709Q16.124-59.457 15.780-59.323Q15.436-59.188 15.077-59.188Q14.757-59.188 14.458-59.336Q14.159-59.485 13.952-59.746L13.678-59.266M14.038-61.938L14.038-60.098Q14.190-59.801 14.450-59.621Q14.710-59.442 15.022-59.442Q15.448-59.442 15.716-59.661Q15.983-59.879 16.098-60.225Q16.214-60.571 16.214-60.993Q16.214-61.641 15.966-62.090Q15.717-62.539 15.120-62.539Q14.784-62.539 14.495-62.381Q14.206-62.223 14.038-61.938M19.397-59.266L17.565-59.266L17.565-59.563Q17.839-59.563 18.007-59.610Q18.175-59.657 18.175-59.825L18.175-63.985Q18.175-64.200 18.112-64.295Q18.050-64.391 17.930-64.412Q17.811-64.434 17.565-64.434L17.565-64.731L18.788-64.817L18.788-59.825Q18.788-59.657 18.956-59.610Q19.124-59.563 19.397-59.563L19.397-59.266M19.842-61.020Q19.842-61.500 20.075-61.916Q20.307-62.332 20.717-62.582Q21.128-62.832 21.604-62.832Q22.335-62.832 22.733-62.391Q23.132-61.950 23.132-61.219Q23.132-61.114 23.038-61.090L20.589-61.090L20.589-61.020Q20.589-60.610 20.710-60.254Q20.831-59.899 21.102-59.682Q21.374-59.465 21.803-59.465Q22.167-59.465 22.464-59.694Q22.760-59.922 22.862-60.274Q22.870-60.321 22.956-60.336L23.038-60.336Q23.132-60.309 23.132-60.227Q23.132-60.219 23.124-60.188Q23.061-59.961 22.923-59.778Q22.784-59.594 22.592-59.461Q22.401-59.328 22.182-59.258Q21.964-59.188 21.725-59.188Q21.354-59.188 21.016-59.325Q20.678-59.461 20.411-59.713Q20.143-59.965 19.993-60.305Q19.842-60.645 19.842-61.020M20.596-61.328L22.557-61.328Q22.557-61.633 22.456-61.924Q22.354-62.215 22.137-62.397Q21.921-62.578 21.604-62.578Q21.303-62.578 21.073-62.391Q20.842-62.203 20.719-61.912Q20.596-61.621 20.596-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 29.03)\">\u003Cpath d=\"M28.382-59.266L26.550-59.266L26.550-59.563Q26.824-59.563 26.992-59.610Q27.160-59.657 27.160-59.825L27.160-63.985Q27.160-64.200 27.097-64.295Q27.035-64.391 26.916-64.412Q26.796-64.434 26.550-64.434L26.550-64.731L27.773-64.817L27.773-59.825Q27.773-59.657 27.941-59.610Q28.109-59.563 28.382-59.563L28.382-59.266M28.828-61.020Q28.828-61.500 29.060-61.916Q29.293-62.332 29.703-62.582Q30.113-62.832 30.589-62.832Q31.320-62.832 31.718-62.391Q32.117-61.950 32.117-61.219Q32.117-61.114 32.023-61.090L29.574-61.090L29.574-61.020Q29.574-60.610 29.695-60.254Q29.816-59.899 30.087-59.682Q30.359-59.465 30.789-59.465Q31.152-59.465 31.449-59.694Q31.746-59.922 31.847-60.274Q31.855-60.321 31.941-60.336L32.023-60.336Q32.117-60.309 32.117-60.227Q32.117-60.219 32.109-60.188Q32.046-59.961 31.908-59.778Q31.769-59.594 31.578-59.461Q31.386-59.328 31.168-59.258Q30.949-59.188 30.710-59.188Q30.339-59.188 30.001-59.325Q29.664-59.461 29.396-59.713Q29.128-59.965 28.978-60.305Q28.828-60.645 28.828-61.020M29.582-61.328L31.543-61.328Q31.543-61.633 31.441-61.924Q31.339-62.215 31.123-62.397Q30.906-62.578 30.589-62.578Q30.289-62.578 30.058-62.391Q29.828-62.203 29.705-61.912Q29.582-61.621 29.582-61.328M34.535-59.266L32.679-59.266L32.679-59.563Q32.953-59.563 33.121-59.610Q33.289-59.657 33.289-59.825L33.289-61.961Q33.289-62.176 33.226-62.272Q33.164-62.368 33.044-62.389Q32.925-62.411 32.679-62.411L32.679-62.707L33.871-62.793L33.871-62.059Q33.984-62.274 34.177-62.442Q34.371-62.610 34.609-62.702Q34.847-62.793 35.101-62.793Q36.269-62.793 36.269-61.715L36.269-59.825Q36.269-59.657 36.439-59.610Q36.609-59.563 36.878-59.563L36.878-59.266L35.023-59.266L35.023-59.563Q35.296-59.563 35.464-59.610Q35.632-59.657 35.632-59.825L35.632-61.700Q35.632-62.082 35.511-62.311Q35.390-62.539 35.039-62.539Q34.726-62.539 34.472-62.377Q34.218-62.215 34.072-61.946Q33.925-61.676 33.925-61.379L33.925-59.825Q33.925-59.657 34.095-59.610Q34.265-59.563 34.535-59.563L34.535-59.266M37.324-58.657Q37.324-58.938 37.535-59.149Q37.746-59.360 38.031-59.450Q37.875-59.575 37.796-59.764Q37.718-59.953 37.718-60.153Q37.718-60.508 37.949-60.801Q37.582-61.141 37.582-61.610Q37.582-61.961 37.785-62.231Q37.988-62.500 38.308-62.647Q38.628-62.793 38.972-62.793Q39.492-62.793 39.863-62.512Q40.226-62.883 40.773-62.883Q40.953-62.883 41.080-62.756Q41.207-62.629 41.207-62.450Q41.207-62.344 41.128-62.266Q41.050-62.188 40.941-62.188Q40.832-62.188 40.755-62.264Q40.679-62.340 40.679-62.450Q40.679-62.551 40.718-62.602Q40.726-62.610 40.730-62.616Q40.734-62.621 40.734-62.625Q40.359-62.625 40.039-62.371Q40.359-62.032 40.359-61.610Q40.359-61.340 40.242-61.123Q40.125-60.907 39.919-60.748Q39.714-60.590 39.472-60.508Q39.230-60.426 38.972-60.426Q38.753-60.426 38.541-60.485Q38.328-60.543 38.132-60.664Q38.039-60.524 38.039-60.344Q38.039-60.137 38.175-59.985Q38.312-59.832 38.519-59.832L39.214-59.832Q39.703-59.832 40.115-59.748Q40.527-59.664 40.806-59.407Q41.085-59.149 41.085-58.657Q41.085-58.293 40.765-58.061Q40.445-57.828 40.003-57.727Q39.562-57.625 39.207-57.625Q38.851-57.625 38.408-57.727Q37.964-57.828 37.644-58.061Q37.324-58.293 37.324-58.657M37.828-58.657Q37.828-58.461 37.972-58.313Q38.117-58.164 38.330-58.075Q38.543-57.985 38.783-57.938Q39.023-57.891 39.207-57.891Q39.449-57.891 39.779-57.969Q40.109-58.047 40.345-58.221Q40.582-58.395 40.582-58.657Q40.582-59.063 40.171-59.172Q39.761-59.282 39.199-59.282L38.519-59.282Q38.250-59.282 38.039-59.104Q37.828-58.926 37.828-58.657M38.972-60.692Q39.695-60.692 39.695-61.610Q39.695-62.532 38.972-62.532Q38.246-62.532 38.246-61.610Q38.246-60.692 38.972-60.692M42.195-60.227L42.195-62.418L41.492-62.418L41.492-62.672Q41.847-62.672 42.089-62.905Q42.332-63.137 42.443-63.485Q42.554-63.832 42.554-64.188L42.835-64.188L42.835-62.715L44.011-62.715L44.011-62.418L42.835-62.418L42.835-60.243Q42.835-59.922 42.955-59.694Q43.074-59.465 43.355-59.465Q43.535-59.465 43.652-59.588Q43.769-59.711 43.822-59.891Q43.875-60.071 43.875-60.243L43.875-60.715L44.156-60.715L44.156-60.227Q44.156-59.973 44.050-59.733Q43.945-59.493 43.748-59.340Q43.550-59.188 43.293-59.188Q42.976-59.188 42.724-59.311Q42.472-59.434 42.334-59.668Q42.195-59.903 42.195-60.227M46.804-59.266L44.949-59.266L44.949-59.563Q45.222-59.563 45.390-59.610Q45.558-59.657 45.558-59.825L45.558-63.985Q45.558-64.200 45.496-64.295Q45.433-64.391 45.314-64.412Q45.195-64.434 44.949-64.434L44.949-64.731L46.171-64.817L46.171-62.114Q46.296-62.325 46.484-62.475Q46.671-62.625 46.898-62.709Q47.125-62.793 47.371-62.793Q48.539-62.793 48.539-61.715L48.539-59.825Q48.539-59.657 48.709-59.610Q48.878-59.563 49.148-59.563L49.148-59.266L47.293-59.266L47.293-59.563Q47.566-59.563 47.734-59.610Q47.902-59.657 47.902-59.825L47.902-61.700Q47.902-62.082 47.781-62.311Q47.660-62.539 47.308-62.539Q46.996-62.539 46.742-62.377Q46.488-62.215 46.341-61.946Q46.195-61.676 46.195-61.379L46.195-59.825Q46.195-59.657 46.365-59.610Q46.535-59.563 46.804-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 29.03)\">\u003Cpath d=\"M54.819-57.274Q54.206-57.731 53.804-58.366Q53.401-59 53.206-59.746Q53.011-60.493 53.011-61.266Q53.011-62.039 53.206-62.786Q53.401-63.532 53.804-64.166Q54.206-64.801 54.819-65.258Q54.831-65.262 54.839-65.264Q54.847-65.266 54.858-65.266L54.936-65.266Q54.975-65.266 55.001-65.239Q55.026-65.211 55.026-65.168Q55.026-65.118 54.995-65.098Q54.487-64.645 54.165-64.022Q53.843-63.399 53.702-62.703Q53.561-62.008 53.561-61.266Q53.561-60.532 53.700-59.832Q53.839-59.133 54.163-58.508Q54.487-57.883 54.995-57.434Q55.026-57.414 55.026-57.364Q55.026-57.321 55.001-57.293Q54.975-57.266 54.936-57.266L54.858-57.266Q54.850-57.270 54.841-57.272Q54.831-57.274 54.819-57.274M59.100-59.266L56.307-59.266L56.307-59.563Q57.370-59.563 57.370-59.825L57.370-63.993Q56.940-63.778 56.261-63.778L56.261-64.075Q57.280-64.075 57.796-64.586L57.940-64.586Q58.014-64.567 58.034-64.489L58.034-59.825Q58.034-59.563 59.100-59.563L59.100-59.266M62.104-60.715L59.850-60.715L59.850-61.266L62.104-61.266L62.104-60.715M66.179-59.266L63.386-59.266L63.386-59.563Q64.448-59.563 64.448-59.825L64.448-63.993Q64.018-63.778 63.339-63.778L63.339-64.075Q64.358-64.075 64.874-64.586L65.018-64.586Q65.093-64.567 65.112-64.489L65.112-59.825Q65.112-59.563 66.179-59.563L66.179-59.266M67.671-60.145L67.608-60.145Q67.749-59.793 68.073-59.582Q68.397-59.371 68.784-59.371Q69.378-59.371 69.628-59.805Q69.878-60.239 69.878-60.875Q69.878-61.469 69.708-61.916Q69.538-62.364 69.038-62.364Q68.741-62.364 68.536-62.284Q68.331-62.203 68.229-62.112Q68.128-62.020 68.013-61.887Q67.897-61.754 67.847-61.739L67.776-61.739Q67.690-61.762 67.671-61.840L67.671-64.489Q67.702-64.586 67.776-64.586Q67.792-64.586 67.800-64.584Q67.807-64.582 67.815-64.578Q68.401-64.328 68.999-64.328Q69.581-64.328 70.198-64.586L70.222-64.586Q70.264-64.586 70.292-64.561Q70.319-64.536 70.319-64.496L70.319-64.418Q70.319-64.387 70.296-64.364Q69.999-64.012 69.577-63.815Q69.155-63.618 68.694-63.618Q68.347-63.618 67.968-63.723L67.968-62.227Q68.186-62.422 68.462-62.520Q68.737-62.618 69.038-62.618Q69.495-62.618 69.864-62.370Q70.233-62.121 70.440-61.717Q70.647-61.313 70.647-60.868Q70.647-60.379 70.391-59.971Q70.136-59.563 69.704-59.330Q69.272-59.098 68.784-59.098Q68.389-59.098 68.034-59.289Q67.679-59.481 67.468-59.815Q67.257-60.149 67.257-60.563Q67.257-60.743 67.374-60.856Q67.491-60.969 67.671-60.969Q67.788-60.969 67.880-60.916Q67.972-60.864 68.024-60.772Q68.077-60.680 68.077-60.563Q68.077-60.379 67.964-60.262Q67.850-60.145 67.671-60.145\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 29.03)\">\u003Cpath d=\"M77.572-59.266L74.291-59.266L74.291-59.563Q74.615-59.563 74.858-59.610Q75.100-59.657 75.100-59.825L75.100-64.168Q75.100-64.340 74.858-64.387Q74.615-64.434 74.291-64.434L74.291-64.731L77.338-64.731Q77.764-64.731 78.197-64.577Q78.631-64.422 78.926-64.114Q79.221-63.805 79.221-63.371Q79.221-63.118 79.096-62.901Q78.971-62.684 78.770-62.528Q78.569-62.371 78.336-62.272Q78.104-62.172 77.846-62.121Q78.221-62.086 78.600-61.909Q78.979-61.731 79.219-61.432Q79.459-61.133 79.459-60.739Q79.459-60.286 79.176-59.952Q78.893-59.618 78.457-59.442Q78.022-59.266 77.572-59.266M75.811-61.977L75.811-59.825Q75.811-59.653 75.903-59.608Q75.994-59.563 76.213-59.563L77.338-59.563Q77.576-59.563 77.811-59.651Q78.045-59.739 78.231-59.899Q78.416-60.059 78.518-60.272Q78.619-60.485 78.619-60.739Q78.619-61.059 78.467-61.344Q78.315-61.629 78.045-61.803Q77.776-61.977 77.459-61.977L75.811-61.977M75.811-64.168L75.811-62.235L77.100-62.235Q77.342-62.235 77.580-62.317Q77.819-62.399 78.002-62.545Q78.186-62.692 78.299-62.909Q78.412-63.125 78.412-63.371Q78.412-63.582 78.326-63.784Q78.240-63.985 78.094-64.127Q77.947-64.270 77.752-64.352Q77.557-64.434 77.338-64.434L76.213-64.434Q75.994-64.434 75.903-64.391Q75.811-64.348 75.811-64.168M80.580-57.266L80.498-57.266Q80.463-57.266 80.438-57.295Q80.412-57.325 80.412-57.364Q80.412-57.414 80.444-57.434Q80.830-57.770 81.113-58.219Q81.397-58.668 81.563-59.168Q81.729-59.668 81.803-60.186Q81.877-60.703 81.877-61.266Q81.877-61.836 81.803-62.352Q81.729-62.868 81.563-63.364Q81.397-63.860 81.117-64.307Q80.838-64.754 80.444-65.098Q80.412-65.118 80.412-65.168Q80.412-65.207 80.438-65.237Q80.463-65.266 80.498-65.266L80.580-65.266Q80.592-65.266 80.602-65.264Q80.612-65.262 80.619-65.258Q81.233-64.801 81.635-64.166Q82.037-63.532 82.233-62.786Q82.428-62.039 82.428-61.266Q82.428-60.493 82.233-59.746Q82.037-59 81.635-58.366Q81.233-57.731 80.619-57.274Q80.608-57.274 80.600-57.272Q80.592-57.270 80.580-57.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.06 50.37)\">\u003Cpath d=\"M-3.347-59.266L-5.332-59.266L-5.332-59.563Q-5.058-59.563-4.890-59.610Q-4.722-59.657-4.722-59.825L-4.722-62.418L-5.363-62.418L-5.363-62.715L-4.722-62.715L-4.722-63.649Q-4.722-63.914-4.605-64.151Q-4.488-64.387-4.295-64.551Q-4.101-64.715-3.853-64.807Q-3.605-64.899-3.340-64.899Q-3.054-64.899-2.830-64.741Q-2.605-64.582-2.605-64.305Q-2.605-64.149-2.711-64.039Q-2.816-63.930-2.980-63.930Q-3.136-63.930-3.246-64.039Q-3.355-64.149-3.355-64.305Q-3.355-64.512-3.195-64.618Q-3.293-64.641-3.386-64.641Q-3.617-64.641-3.789-64.485Q-3.961-64.328-4.047-64.092Q-4.132-63.856-4.132-63.633L-4.132-62.715L-3.164-62.715L-3.164-62.418L-4.109-62.418L-4.109-59.825Q-4.109-59.657-3.882-59.610Q-3.656-59.563-3.347-59.563L-3.347-59.266M-2.820-61.020Q-2.820-61.500-2.588-61.916Q-2.355-62.332-1.945-62.582Q-1.535-62.832-1.058-62.832Q-0.328-62.832 0.071-62.391Q0.469-61.950 0.469-61.219Q0.469-61.114 0.375-61.090L-2.074-61.090L-2.074-61.020Q-2.074-60.610-1.953-60.254Q-1.832-59.899-1.560-59.682Q-1.289-59.465-0.859-59.465Q-0.496-59.465-0.199-59.694Q0.098-59.922 0.200-60.274Q0.207-60.321 0.293-60.336L0.375-60.336Q0.469-60.309 0.469-60.227Q0.469-60.219 0.461-60.188Q0.399-59.961 0.260-59.778Q0.121-59.594-0.070-59.461Q-0.261-59.328-0.480-59.258Q-0.699-59.188-0.937-59.188Q-1.308-59.188-1.646-59.325Q-1.984-59.461-2.252-59.713Q-2.519-59.965-2.670-60.305Q-2.820-60.645-2.820-61.020M-2.066-61.328L-0.105-61.328Q-0.105-61.633-0.207-61.924Q-0.308-62.215-0.525-62.397Q-0.742-62.578-1.058-62.578Q-1.359-62.578-1.590-62.391Q-1.820-62.203-1.943-61.912Q-2.066-61.621-2.066-61.328M2.543-59.297L1.473-62.153Q1.407-62.332 1.276-62.375Q1.145-62.418 0.887-62.418L0.887-62.715L2.567-62.715L2.567-62.418Q2.118-62.418 2.118-62.219Q2.121-62.203 2.123-62.186Q2.125-62.168 2.125-62.153L2.918-60.059L3.629-61.969Q3.594-62.063 3.594-62.108Q3.594-62.153 3.559-62.153Q3.493-62.332 3.362-62.375Q3.231-62.418 2.977-62.418L2.977-62.715L4.567-62.715L4.567-62.418Q4.118-62.418 4.118-62.219Q4.121-62.200 4.123-62.182Q4.125-62.164 4.125-62.153L4.957-59.938L5.711-61.938Q5.735-61.996 5.735-62.067Q5.735-62.227 5.598-62.323Q5.461-62.418 5.293-62.418L5.293-62.715L6.680-62.715L6.680-62.418Q6.446-62.418 6.268-62.291Q6.090-62.164 6.008-61.938L5.024-59.297Q4.969-59.188 4.856-59.188L4.797-59.188Q4.684-59.188 4.641-59.297L3.782-61.571L2.926-59.297Q2.887-59.188 2.766-59.188L2.711-59.188Q2.598-59.188 2.543-59.297M7.680-57.860Q7.680-57.883 7.711-57.930Q8.004-58.192 8.170-58.559Q8.336-58.926 8.336-59.313L8.336-59.371Q8.207-59.266 8.039-59.266Q7.848-59.266 7.711-59.399Q7.575-59.532 7.575-59.731Q7.575-59.922 7.711-60.055Q7.848-60.188 8.039-60.188Q8.340-60.188 8.465-59.918Q8.590-59.649 8.590-59.313Q8.590-58.864 8.409-58.450Q8.227-58.036 7.887-57.739Q7.864-57.715 7.825-57.715Q7.778-57.715 7.729-57.760Q7.680-57.805 7.680-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 50.37)\">\u003Cpath d=\"M12.337-59.274L12.337-60.496Q12.337-60.524 12.368-60.555Q12.400-60.586 12.423-60.586L12.529-60.586Q12.599-60.586 12.615-60.524Q12.677-60.203 12.816-59.963Q12.954-59.723 13.187-59.582Q13.419-59.442 13.728-59.442Q13.966-59.442 14.175-59.502Q14.384-59.563 14.521-59.711Q14.658-59.860 14.658-60.106Q14.658-60.360 14.447-60.526Q14.236-60.692 13.966-60.746L13.345-60.860Q12.939-60.938 12.638-61.194Q12.337-61.450 12.337-61.825Q12.337-62.192 12.538-62.414Q12.740-62.637 13.064-62.735Q13.388-62.832 13.728-62.832Q14.193-62.832 14.490-62.625L14.712-62.809Q14.736-62.832 14.767-62.832L14.818-62.832Q14.849-62.832 14.876-62.805Q14.904-62.778 14.904-62.746L14.904-61.762Q14.904-61.731 14.878-61.702Q14.853-61.672 14.818-61.672L14.712-61.672Q14.677-61.672 14.650-61.700Q14.622-61.727 14.622-61.762Q14.622-62.161 14.370-62.381Q14.118-62.602 13.720-62.602Q13.365-62.602 13.081-62.479Q12.798-62.356 12.798-62.051Q12.798-61.832 12.999-61.700Q13.201-61.567 13.447-61.524L14.072-61.411Q14.501-61.321 14.810-61.024Q15.118-60.727 15.118-60.313Q15.118-59.743 14.720-59.465Q14.322-59.188 13.728-59.188Q13.177-59.188 12.826-59.524L12.529-59.211Q12.505-59.188 12.470-59.188L12.423-59.188Q12.400-59.188 12.368-59.219Q12.337-59.250 12.337-59.274M17.505-59.266L15.728-59.266L15.728-59.563Q16.001-59.563 16.169-59.610Q16.337-59.657 16.337-59.825L16.337-61.961Q16.337-62.176 16.281-62.272Q16.224-62.368 16.111-62.389Q15.997-62.411 15.751-62.411L15.751-62.707L16.951-62.793L16.951-59.825Q16.951-59.657 17.097-59.610Q17.243-59.563 17.505-59.563L17.505-59.266M16.064-64.188Q16.064-64.379 16.199-64.510Q16.333-64.641 16.529-64.641Q16.650-64.641 16.753-64.578Q16.857-64.516 16.919-64.412Q16.982-64.309 16.982-64.188Q16.982-63.993 16.851-63.858Q16.720-63.723 16.529-63.723Q16.329-63.723 16.197-63.856Q16.064-63.989 16.064-64.188M19.935-59.266L18.079-59.266L18.079-59.563Q18.353-59.563 18.521-59.610Q18.689-59.657 18.689-59.825L18.689-61.961Q18.689-62.176 18.626-62.272Q18.564-62.368 18.445-62.389Q18.326-62.411 18.079-62.411L18.079-62.707L19.271-62.793L19.271-62.059Q19.384-62.274 19.577-62.442Q19.771-62.610 20.009-62.702Q20.247-62.793 20.501-62.793Q21.462-62.793 21.638-62.082Q21.822-62.411 22.150-62.602Q22.478-62.793 22.857-62.793Q24.033-62.793 24.033-61.715L24.033-59.825Q24.033-59.657 24.201-59.610Q24.368-59.563 24.638-59.563L24.638-59.266L22.783-59.266L22.783-59.563Q23.056-59.563 23.224-59.608Q23.392-59.653 23.392-59.825L23.392-61.700Q23.392-62.086 23.267-62.313Q23.142-62.539 22.790-62.539Q22.486-62.539 22.230-62.377Q21.974-62.215 21.826-61.946Q21.677-61.676 21.677-61.379L21.677-59.825Q21.677-59.657 21.847-59.610Q22.017-59.563 22.286-59.563L22.286-59.266L20.431-59.266L20.431-59.563Q20.704-59.563 20.872-59.610Q21.040-59.657 21.040-59.825L21.040-61.700Q21.040-62.086 20.915-62.313Q20.790-62.539 20.439-62.539Q20.134-62.539 19.878-62.377Q19.622-62.215 19.474-61.946Q19.326-61.676 19.326-61.379L19.326-59.825Q19.326-59.657 19.495-59.610Q19.665-59.563 19.935-59.563L19.935-59.266M26.966-57.715L25.111-57.715L25.111-58.008Q25.380-58.008 25.548-58.053Q25.716-58.098 25.716-58.274L25.716-62.098Q25.716-62.305 25.560-62.358Q25.404-62.411 25.111-62.411L25.111-62.707L26.333-62.793L26.333-62.328Q26.564-62.551 26.878-62.672Q27.193-62.793 27.533-62.793Q28.005-62.793 28.410-62.547Q28.814-62.301 29.046-61.885Q29.279-61.469 29.279-60.993Q29.279-60.618 29.130-60.289Q28.982-59.961 28.712-59.709Q28.443-59.457 28.099-59.323Q27.755-59.188 27.396-59.188Q27.107-59.188 26.835-59.309Q26.564-59.430 26.357-59.641L26.357-58.274Q26.357-58.098 26.525-58.053Q26.693-58.008 26.966-58.008L26.966-57.715M26.357-61.930L26.357-60.090Q26.509-59.801 26.771-59.621Q27.033-59.442 27.341-59.442Q27.626-59.442 27.849-59.580Q28.072-59.719 28.224-59.950Q28.376-60.180 28.454-60.452Q28.533-60.723 28.533-60.993Q28.533-61.325 28.408-61.682Q28.283-62.039 28.035-62.276Q27.786-62.512 27.439-62.512Q27.115-62.512 26.820-62.356Q26.525-62.200 26.357-61.930M31.716-59.266L29.884-59.266L29.884-59.563Q30.158-59.563 30.326-59.610Q30.493-59.657 30.493-59.825L30.493-63.985Q30.493-64.200 30.431-64.295Q30.368-64.391 30.249-64.412Q30.130-64.434 29.884-64.434L29.884-64.731L31.107-64.817L31.107-59.825Q31.107-59.657 31.275-59.610Q31.443-59.563 31.716-59.563L31.716-59.266M32.161-61.020Q32.161-61.500 32.394-61.916Q32.626-62.332 33.036-62.582Q33.447-62.832 33.923-62.832Q34.654-62.832 35.052-62.391Q35.451-61.950 35.451-61.219Q35.451-61.114 35.357-61.090L32.908-61.090L32.908-61.020Q32.908-60.610 33.029-60.254Q33.150-59.899 33.421-59.682Q33.693-59.465 34.122-59.465Q34.486-59.465 34.783-59.694Q35.079-59.922 35.181-60.274Q35.189-60.321 35.275-60.336L35.357-60.336Q35.451-60.309 35.451-60.227Q35.451-60.219 35.443-60.188Q35.380-59.961 35.242-59.778Q35.103-59.594 34.911-59.461Q34.720-59.328 34.501-59.258Q34.283-59.188 34.044-59.188Q33.673-59.188 33.335-59.325Q32.997-59.461 32.730-59.713Q32.462-59.965 32.312-60.305Q32.161-60.645 32.161-61.020M32.915-61.328L34.876-61.328Q34.876-61.633 34.775-61.924Q34.673-62.215 34.456-62.397Q34.240-62.578 33.923-62.578Q33.622-62.578 33.392-62.391Q33.161-62.203 33.038-61.912Q32.915-61.621 32.915-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 50.37)\">\u003Cpath d=\"M38.786-60.961Q38.786-61.465 39.042-61.897Q39.298-62.328 39.734-62.580Q40.169-62.832 40.669-62.832Q41.056-62.832 41.398-62.688Q41.739-62.543 42.001-62.282Q42.263-62.020 42.405-61.684Q42.548-61.348 42.548-60.961Q42.548-60.469 42.284-60.059Q42.021-59.649 41.591-59.418Q41.161-59.188 40.669-59.188Q40.177-59.188 39.743-59.420Q39.310-59.653 39.048-60.061Q38.786-60.469 38.786-60.961M40.669-59.465Q41.126-59.465 41.378-59.688Q41.630-59.911 41.718-60.262Q41.806-60.614 41.806-61.059Q41.806-61.489 41.712-61.827Q41.618-62.164 41.364-62.371Q41.111-62.578 40.669-62.578Q40.021-62.578 39.777-62.162Q39.532-61.746 39.532-61.059Q39.532-60.614 39.620-60.262Q39.708-59.911 39.960-59.688Q40.212-59.465 40.669-59.465M44.915-57.715L43.060-57.715L43.060-58.008Q43.329-58.008 43.497-58.053Q43.665-58.098 43.665-58.274L43.665-62.098Q43.665-62.305 43.509-62.358Q43.353-62.411 43.060-62.411L43.060-62.707L44.282-62.793L44.282-62.328Q44.513-62.551 44.827-62.672Q45.142-62.793 45.482-62.793Q45.954-62.793 46.359-62.547Q46.763-62.301 46.995-61.885Q47.228-61.469 47.228-60.993Q47.228-60.618 47.079-60.289Q46.931-59.961 46.661-59.709Q46.392-59.457 46.048-59.323Q45.704-59.188 45.345-59.188Q45.056-59.188 44.784-59.309Q44.513-59.430 44.306-59.641L44.306-58.274Q44.306-58.098 44.474-58.053Q44.642-58.008 44.915-58.008L44.915-57.715M44.306-61.930L44.306-60.090Q44.458-59.801 44.720-59.621Q44.982-59.442 45.290-59.442Q45.575-59.442 45.798-59.580Q46.021-59.719 46.173-59.950Q46.325-60.180 46.403-60.452Q46.482-60.723 46.482-60.993Q46.482-61.325 46.357-61.682Q46.232-62.039 45.984-62.276Q45.736-62.512 45.388-62.512Q45.064-62.512 44.769-62.356Q44.474-62.200 44.306-61.930M47.794-59.274L47.794-60.496Q47.794-60.524 47.825-60.555Q47.857-60.586 47.880-60.586L47.986-60.586Q48.056-60.586 48.071-60.524Q48.134-60.203 48.273-59.963Q48.411-59.723 48.644-59.582Q48.876-59.442 49.185-59.442Q49.423-59.442 49.632-59.502Q49.841-59.563 49.978-59.711Q50.114-59.860 50.114-60.106Q50.114-60.360 49.903-60.526Q49.693-60.692 49.423-60.746L48.802-60.860Q48.396-60.938 48.095-61.194Q47.794-61.450 47.794-61.825Q47.794-62.192 47.995-62.414Q48.196-62.637 48.521-62.735Q48.845-62.832 49.185-62.832Q49.650-62.832 49.946-62.625L50.169-62.809Q50.193-62.832 50.224-62.832L50.275-62.832Q50.306-62.832 50.333-62.805Q50.361-62.778 50.361-62.746L50.361-61.762Q50.361-61.731 50.335-61.702Q50.310-61.672 50.275-61.672L50.169-61.672Q50.134-61.672 50.107-61.700Q50.079-61.727 50.079-61.762Q50.079-62.161 49.827-62.381Q49.575-62.602 49.177-62.602Q48.821-62.602 48.538-62.479Q48.255-62.356 48.255-62.051Q48.255-61.832 48.456-61.700Q48.657-61.567 48.903-61.524L49.528-61.411Q49.958-61.321 50.267-61.024Q50.575-60.727 50.575-60.313Q50.575-59.743 50.177-59.465Q49.778-59.188 49.185-59.188Q48.634-59.188 48.282-59.524L47.986-59.211Q47.962-59.188 47.927-59.188L47.880-59.188Q47.857-59.188 47.825-59.219Q47.794-59.250 47.794-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(93.894 50.37)\">\u003Cpath d=\"M-3.484-59.266L-5.340-59.266L-5.340-59.563Q-5.066-59.563-4.898-59.610Q-4.730-59.657-4.730-59.825L-4.730-61.961Q-4.730-62.176-4.793-62.272Q-4.855-62.368-4.974-62.389Q-5.093-62.411-5.340-62.411L-5.340-62.707L-4.148-62.793L-4.148-62.059Q-4.035-62.274-3.841-62.442Q-3.648-62.610-3.410-62.702Q-3.172-62.793-2.918-62.793Q-1.957-62.793-1.781-62.082Q-1.597-62.411-1.269-62.602Q-0.941-62.793-0.562-62.793Q0.614-62.793 0.614-61.715L0.614-59.825Q0.614-59.657 0.782-59.610Q0.950-59.563 1.219-59.563L1.219-59.266L-0.636-59.266L-0.636-59.563Q-0.363-59.563-0.195-59.608Q-0.027-59.653-0.027-59.825L-0.027-61.700Q-0.027-62.086-0.152-62.313Q-0.277-62.539-0.629-62.539Q-0.933-62.539-1.189-62.377Q-1.445-62.215-1.593-61.946Q-1.742-61.676-1.742-61.379L-1.742-59.825Q-1.742-59.657-1.572-59.610Q-1.402-59.563-1.132-59.563L-1.132-59.266L-2.988-59.266L-2.988-59.563Q-2.715-59.563-2.547-59.610Q-2.379-59.657-2.379-59.825L-2.379-61.700Q-2.379-62.086-2.504-62.313Q-2.629-62.539-2.980-62.539Q-3.285-62.539-3.541-62.377Q-3.797-62.215-3.945-61.946Q-4.093-61.676-4.093-61.379L-4.093-59.825Q-4.093-59.657-3.923-59.610Q-3.754-59.563-3.484-59.563L-3.484-59.266M1.762-60.098Q1.762-60.582 2.164-60.877Q2.567-61.172 3.118-61.291Q3.668-61.411 4.160-61.411L4.160-61.700Q4.160-61.926 4.045-62.133Q3.930-62.340 3.733-62.459Q3.535-62.578 3.305-62.578Q2.879-62.578 2.594-62.473Q2.664-62.446 2.711-62.391Q2.758-62.336 2.784-62.266Q2.809-62.196 2.809-62.121Q2.809-62.016 2.758-61.924Q2.707-61.832 2.616-61.782Q2.524-61.731 2.418-61.731Q2.313-61.731 2.221-61.782Q2.129-61.832 2.078-61.924Q2.028-62.016 2.028-62.121Q2.028-62.539 2.416-62.686Q2.805-62.832 3.305-62.832Q3.637-62.832 3.991-62.702Q4.344-62.571 4.573-62.317Q4.801-62.063 4.801-61.715L4.801-59.914Q4.801-59.782 4.873-59.672Q4.946-59.563 5.075-59.563Q5.200-59.563 5.268-59.668Q5.336-59.774 5.336-59.914L5.336-60.426L5.618-60.426L5.618-59.914Q5.618-59.711 5.500-59.553Q5.383-59.395 5.202-59.311Q5.020-59.227 4.817-59.227Q4.586-59.227 4.434-59.399Q4.282-59.571 4.250-59.801Q4.090-59.520 3.782-59.354Q3.473-59.188 3.121-59.188Q2.610-59.188 2.186-59.411Q1.762-59.633 1.762-60.098M2.450-60.098Q2.450-59.813 2.676-59.627Q2.903-59.442 3.196-59.442Q3.442-59.442 3.666-59.559Q3.891-59.676 4.026-59.879Q4.160-60.082 4.160-60.336L4.160-61.168Q3.895-61.168 3.610-61.114Q3.325-61.059 3.053-60.930Q2.782-60.801 2.616-60.594Q2.450-60.387 2.450-60.098M7.840-59.266L5.985-59.266L5.985-59.563Q6.258-59.563 6.426-59.610Q6.594-59.657 6.594-59.825L6.594-61.961Q6.594-62.176 6.532-62.272Q6.469-62.368 6.350-62.389Q6.231-62.411 5.985-62.411L5.985-62.707L7.176-62.793L7.176-62.059Q7.289-62.274 7.483-62.442Q7.676-62.610 7.914-62.702Q8.153-62.793 8.407-62.793Q9.575-62.793 9.575-61.715L9.575-59.825Q9.575-59.657 9.744-59.610Q9.914-59.563 10.184-59.563L10.184-59.266L8.328-59.266L8.328-59.563Q8.602-59.563 8.770-59.610Q8.938-59.657 8.938-59.825L8.938-61.700Q8.938-62.082 8.817-62.311Q8.696-62.539 8.344-62.539Q8.032-62.539 7.778-62.377Q7.524-62.215 7.377-61.946Q7.231-61.676 7.231-61.379L7.231-59.825Q7.231-59.657 7.401-59.610Q7.571-59.563 7.840-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 50.37)\">\u003Cpath d=\"M10.823-57.969Q10.937-57.891 11.112-57.891Q11.401-57.891 11.622-58.104Q11.843-58.317 11.968-58.618L12.257-59.266L10.983-62.153Q10.901-62.328 10.757-62.373Q10.612-62.418 10.343-62.418L10.343-62.715L12.062-62.715L12.062-62.418Q11.640-62.418 11.640-62.235Q11.640-62.223 11.655-62.153L12.593-60.028L13.425-61.938Q13.464-62.028 13.464-62.106Q13.464-62.246 13.362-62.332Q13.261-62.418 13.120-62.418L13.120-62.715L14.472-62.715L14.472-62.418Q14.218-62.418 14.024-62.293Q13.831-62.168 13.726-61.938L12.280-58.618Q12.167-58.364 12.001-58.141Q11.835-57.918 11.606-57.776Q11.378-57.633 11.112-57.633Q10.815-57.633 10.575-57.825Q10.335-58.016 10.335-58.305Q10.335-58.461 10.440-58.563Q10.546-58.664 10.694-58.664Q10.800-58.664 10.880-58.618Q10.960-58.571 11.007-58.493Q11.054-58.414 11.054-58.305Q11.054-58.184 10.993-58.096Q10.933-58.008 10.823-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 50.37)\">\u003Cpath d=\"M14.769-57.860Q14.769-57.883 14.800-57.930Q15.093-58.192 15.259-58.559Q15.425-58.926 15.425-59.313L15.425-59.371Q15.297-59.266 15.129-59.266Q14.937-59.266 14.800-59.399Q14.664-59.532 14.664-59.731Q14.664-59.922 14.800-60.055Q14.937-60.188 15.129-60.188Q15.429-60.188 15.554-59.918Q15.679-59.649 15.679-59.313Q15.679-58.864 15.498-58.450Q15.316-58.036 14.976-57.739Q14.953-57.715 14.914-57.715Q14.867-57.715 14.818-57.760Q14.769-57.805 14.769-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 50.37)\">\u003Cpath d=\"M19.420-60.993Q19.420-61.489 19.670-61.914Q19.920-62.340 20.340-62.586Q20.760-62.832 21.260-62.832Q21.799-62.832 22.190-62.707Q22.580-62.582 22.580-62.168Q22.580-62.063 22.530-61.971Q22.479-61.879 22.387-61.828Q22.295-61.778 22.186-61.778Q22.080-61.778 21.989-61.828Q21.897-61.879 21.846-61.971Q21.795-62.063 21.795-62.168Q21.795-62.391 21.963-62.496Q21.741-62.555 21.268-62.555Q20.971-62.555 20.756-62.416Q20.541-62.278 20.410-62.047Q20.280-61.817 20.221-61.547Q20.162-61.278 20.162-60.993Q20.162-60.598 20.295-60.248Q20.428-59.899 20.700-59.682Q20.971-59.465 21.369-59.465Q21.744-59.465 22.020-59.682Q22.295-59.899 22.397-60.258Q22.412-60.321 22.475-60.321L22.580-60.321Q22.616-60.321 22.641-60.293Q22.666-60.266 22.666-60.227L22.666-60.203Q22.534-59.723 22.149-59.455Q21.764-59.188 21.260-59.188Q20.897-59.188 20.563-59.325Q20.229-59.461 19.969-59.711Q19.709-59.961 19.565-60.297Q19.420-60.633 19.420-60.993M23.155-60.961Q23.155-61.465 23.410-61.897Q23.666-62.328 24.102-62.580Q24.537-62.832 25.037-62.832Q25.424-62.832 25.766-62.688Q26.108-62.543 26.369-62.282Q26.631-62.020 26.774-61.684Q26.916-61.348 26.916-60.961Q26.916-60.469 26.653-60.059Q26.389-59.649 25.959-59.418Q25.530-59.188 25.037-59.188Q24.545-59.188 24.112-59.420Q23.678-59.653 23.416-60.061Q23.155-60.469 23.155-60.961M25.037-59.465Q25.494-59.465 25.746-59.688Q25.998-59.911 26.086-60.262Q26.174-60.614 26.174-61.059Q26.174-61.489 26.080-61.827Q25.987-62.164 25.733-62.371Q25.479-62.578 25.037-62.578Q24.389-62.578 24.145-62.162Q23.901-61.746 23.901-61.059Q23.901-60.614 23.989-60.262Q24.076-59.911 24.328-59.688Q24.580-59.465 25.037-59.465M29.330-59.266L27.475-59.266L27.475-59.563Q27.748-59.563 27.916-59.610Q28.084-59.657 28.084-59.825L28.084-61.961Q28.084-62.176 28.022-62.272Q27.959-62.368 27.840-62.389Q27.721-62.411 27.475-62.411L27.475-62.707L28.666-62.793L28.666-62.059Q28.780-62.274 28.973-62.442Q29.166-62.610 29.405-62.702Q29.643-62.793 29.897-62.793Q30.858-62.793 31.034-62.082Q31.217-62.411 31.545-62.602Q31.873-62.793 32.252-62.793Q33.428-62.793 33.428-61.715L33.428-59.825Q33.428-59.657 33.596-59.610Q33.764-59.563 34.034-59.563L34.034-59.266L32.178-59.266L32.178-59.563Q32.451-59.563 32.619-59.608Q32.787-59.653 32.787-59.825L32.787-61.700Q32.787-62.086 32.662-62.313Q32.537-62.539 32.186-62.539Q31.881-62.539 31.625-62.377Q31.369-62.215 31.221-61.946Q31.073-61.676 31.073-61.379L31.073-59.825Q31.073-59.657 31.243-59.610Q31.412-59.563 31.682-59.563L31.682-59.266L29.826-59.266L29.826-59.563Q30.100-59.563 30.268-59.610Q30.436-59.657 30.436-59.825L30.436-61.700Q30.436-62.086 30.311-62.313Q30.186-62.539 29.834-62.539Q29.530-62.539 29.274-62.377Q29.018-62.215 28.869-61.946Q28.721-61.676 28.721-61.379L28.721-59.825Q28.721-59.657 28.891-59.610Q29.061-59.563 29.330-59.563L29.330-59.266M36.362-57.715L34.506-57.715L34.506-58.008Q34.776-58.008 34.944-58.053Q35.112-58.098 35.112-58.274L35.112-62.098Q35.112-62.305 34.955-62.358Q34.799-62.411 34.506-62.411L34.506-62.707L35.729-62.793L35.729-62.328Q35.959-62.551 36.274-62.672Q36.588-62.793 36.928-62.793Q37.401-62.793 37.805-62.547Q38.209-62.301 38.442-61.885Q38.674-61.469 38.674-60.993Q38.674-60.618 38.526-60.289Q38.377-59.961 38.108-59.709Q37.838-59.457 37.494-59.323Q37.151-59.188 36.791-59.188Q36.502-59.188 36.231-59.309Q35.959-59.430 35.752-59.641L35.752-58.274Q35.752-58.098 35.920-58.053Q36.088-58.008 36.362-58.008L36.362-57.715M35.752-61.930L35.752-60.090Q35.905-59.801 36.166-59.621Q36.428-59.442 36.737-59.442Q37.022-59.442 37.244-59.580Q37.467-59.719 37.619-59.950Q37.772-60.180 37.850-60.452Q37.928-60.723 37.928-60.993Q37.928-61.325 37.803-61.682Q37.678-62.039 37.430-62.276Q37.182-62.512 36.834-62.512Q36.510-62.512 36.215-62.356Q35.920-62.200 35.752-61.930M41.112-59.266L39.280-59.266L39.280-59.563Q39.553-59.563 39.721-59.610Q39.889-59.657 39.889-59.825L39.889-63.985Q39.889-64.200 39.826-64.295Q39.764-64.391 39.645-64.412Q39.526-64.434 39.280-64.434L39.280-64.731L40.502-64.817L40.502-59.825Q40.502-59.657 40.670-59.610Q40.838-59.563 41.112-59.563L41.112-59.266M41.557-61.020Q41.557-61.500 41.789-61.916Q42.022-62.332 42.432-62.582Q42.842-62.832 43.319-62.832Q44.049-62.832 44.448-62.391Q44.846-61.950 44.846-61.219Q44.846-61.114 44.752-61.090L42.303-61.090L42.303-61.020Q42.303-60.610 42.424-60.254Q42.545-59.899 42.817-59.682Q43.088-59.465 43.518-59.465Q43.881-59.465 44.178-59.694Q44.475-59.922 44.576-60.274Q44.584-60.321 44.670-60.336L44.752-60.336Q44.846-60.309 44.846-60.227Q44.846-60.219 44.838-60.188Q44.776-59.961 44.637-59.778Q44.498-59.594 44.307-59.461Q44.116-59.328 43.897-59.258Q43.678-59.188 43.440-59.188Q43.069-59.188 42.731-59.325Q42.393-59.461 42.125-59.713Q41.858-59.965 41.707-60.305Q41.557-60.645 41.557-61.020M42.311-61.328L44.272-61.328Q44.272-61.633 44.170-61.924Q44.069-62.215 43.852-62.397Q43.635-62.578 43.319-62.578Q43.018-62.578 42.787-62.391Q42.557-62.203 42.434-61.912Q42.311-61.621 42.311-61.328M46.721-59.266L45.225-59.266L45.225-59.563Q45.858-59.563 46.280-60.043L47.049-60.953L46.057-62.153Q45.901-62.332 45.739-62.375Q45.576-62.418 45.272-62.418L45.272-62.715L46.959-62.715L46.959-62.418Q46.866-62.418 46.789-62.375Q46.713-62.332 46.713-62.243Q46.713-62.200 46.744-62.153L47.401-61.364L47.881-61.938Q47.998-62.075 47.998-62.211Q47.998-62.301 47.948-62.360Q47.897-62.418 47.815-62.418L47.815-62.715L49.303-62.715L49.303-62.418Q48.666-62.418 48.256-61.938L47.576-61.137L48.662-59.825Q48.823-59.649 48.983-59.606Q49.143-59.563 49.448-59.563L49.448-59.266L47.760-59.266L47.760-59.563Q47.850-59.563 47.928-59.606Q48.006-59.649 48.006-59.739Q48.006-59.762 47.975-59.825L47.233-60.731L46.647-60.043Q46.530-59.907 46.530-59.770Q46.530-59.684 46.580-59.623Q46.631-59.563 46.721-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 50.37)\">\u003Cpath d=\"M52.669-60.961Q52.669-61.465 52.925-61.897Q53.181-62.328 53.617-62.580Q54.052-62.832 54.552-62.832Q54.939-62.832 55.281-62.688Q55.622-62.543 55.884-62.282Q56.146-62.020 56.288-61.684Q56.431-61.348 56.431-60.961Q56.431-60.469 56.167-60.059Q55.904-59.649 55.474-59.418Q55.044-59.188 54.552-59.188Q54.060-59.188 53.626-59.420Q53.193-59.653 52.931-60.061Q52.669-60.469 52.669-60.961M54.552-59.465Q55.009-59.465 55.261-59.688Q55.513-59.911 55.601-60.262Q55.689-60.614 55.689-61.059Q55.689-61.489 55.595-61.827Q55.501-62.164 55.247-62.371Q54.993-62.578 54.552-62.578Q53.904-62.578 53.660-62.162Q53.415-61.746 53.415-61.059Q53.415-60.614 53.503-60.262Q53.591-59.911 53.843-59.688Q54.095-59.465 54.552-59.465M58.798-57.715L56.943-57.715L56.943-58.008Q57.212-58.008 57.380-58.053Q57.548-58.098 57.548-58.274L57.548-62.098Q57.548-62.305 57.392-62.358Q57.236-62.411 56.943-62.411L56.943-62.707L58.165-62.793L58.165-62.328Q58.396-62.551 58.710-62.672Q59.025-62.793 59.365-62.793Q59.837-62.793 60.242-62.547Q60.646-62.301 60.878-61.885Q61.111-61.469 61.111-60.993Q61.111-60.618 60.962-60.289Q60.814-59.961 60.544-59.709Q60.275-59.457 59.931-59.323Q59.587-59.188 59.228-59.188Q58.939-59.188 58.667-59.309Q58.396-59.430 58.189-59.641L58.189-58.274Q58.189-58.098 58.357-58.053Q58.525-58.008 58.798-58.008L58.798-57.715M58.189-61.930L58.189-60.090Q58.341-59.801 58.603-59.621Q58.865-59.442 59.173-59.442Q59.458-59.442 59.681-59.580Q59.904-59.719 60.056-59.950Q60.208-60.180 60.286-60.452Q60.365-60.723 60.365-60.993Q60.365-61.325 60.240-61.682Q60.115-62.039 59.867-62.276Q59.618-62.512 59.271-62.512Q58.947-62.512 58.652-62.356Q58.357-62.200 58.189-61.930M61.677-59.274L61.677-60.496Q61.677-60.524 61.708-60.555Q61.740-60.586 61.763-60.586L61.868-60.586Q61.939-60.586 61.954-60.524Q62.017-60.203 62.156-59.963Q62.294-59.723 62.527-59.582Q62.759-59.442 63.068-59.442Q63.306-59.442 63.515-59.502Q63.724-59.563 63.861-59.711Q63.997-59.860 63.997-60.106Q63.997-60.360 63.786-60.526Q63.576-60.692 63.306-60.746L62.685-60.860Q62.279-60.938 61.978-61.194Q61.677-61.450 61.677-61.825Q61.677-62.192 61.878-62.414Q62.079-62.637 62.404-62.735Q62.728-62.832 63.068-62.832Q63.533-62.832 63.829-62.625L64.052-62.809Q64.076-62.832 64.107-62.832L64.158-62.832Q64.189-62.832 64.216-62.805Q64.243-62.778 64.243-62.746L64.243-61.762Q64.243-61.731 64.218-61.702Q64.193-61.672 64.158-61.672L64.052-61.672Q64.017-61.672 63.990-61.700Q63.962-61.727 63.962-61.762Q63.962-62.161 63.710-62.381Q63.458-62.602 63.060-62.602Q62.704-62.602 62.421-62.479Q62.138-62.356 62.138-62.051Q62.138-61.832 62.339-61.700Q62.540-61.567 62.786-61.524L63.411-61.411Q63.841-61.321 64.150-61.024Q64.458-60.727 64.458-60.313Q64.458-59.743 64.060-59.465Q63.661-59.188 63.068-59.188Q62.517-59.188 62.165-59.524L61.868-59.211Q61.845-59.188 61.810-59.188L61.763-59.188Q61.740-59.188 61.708-59.219Q61.677-59.250 61.677-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.06 71.71)\">\u003Cpath d=\"M-3.500-59.266L-5.332-59.266L-5.332-59.563Q-5.058-59.563-4.890-59.610Q-4.722-59.657-4.722-59.825L-4.722-63.985Q-4.722-64.200-4.785-64.295Q-4.847-64.391-4.966-64.412Q-5.086-64.434-5.332-64.434L-5.332-64.731L-4.109-64.817L-4.109-59.825Q-4.109-59.657-3.941-59.610Q-3.773-59.563-3.500-59.563L-3.500-59.266M-3.054-60.961Q-3.054-61.465-2.798-61.897Q-2.543-62.328-2.107-62.580Q-1.672-62.832-1.172-62.832Q-0.785-62.832-0.443-62.688Q-0.101-62.543 0.160-62.282Q0.422-62.020 0.565-61.684Q0.707-61.348 0.707-60.961Q0.707-60.469 0.444-60.059Q0.180-59.649-0.250-59.418Q-0.679-59.188-1.172-59.188Q-1.664-59.188-2.097-59.420Q-2.531-59.653-2.793-60.061Q-3.054-60.469-3.054-60.961M-1.172-59.465Q-0.715-59.465-0.463-59.688Q-0.211-59.911-0.123-60.262Q-0.035-60.614-0.035-61.059Q-0.035-61.489-0.129-61.827Q-0.222-62.164-0.476-62.371Q-0.730-62.578-1.172-62.578Q-1.820-62.578-2.064-62.162Q-2.308-61.746-2.308-61.059Q-2.308-60.614-2.220-60.262Q-2.132-59.911-1.881-59.688Q-1.629-59.465-1.172-59.465M1.289-60.098Q1.289-60.582 1.692-60.877Q2.094-61.172 2.645-61.291Q3.196-61.411 3.688-61.411L3.688-61.700Q3.688-61.926 3.573-62.133Q3.457-62.340 3.260-62.459Q3.063-62.578 2.832-62.578Q2.407-62.578 2.121-62.473Q2.192-62.446 2.239-62.391Q2.285-62.336 2.311-62.266Q2.336-62.196 2.336-62.121Q2.336-62.016 2.285-61.924Q2.235-61.832 2.143-61.782Q2.051-61.731 1.946-61.731Q1.840-61.731 1.748-61.782Q1.657-61.832 1.606-61.924Q1.555-62.016 1.555-62.121Q1.555-62.539 1.944-62.686Q2.332-62.832 2.832-62.832Q3.164-62.832 3.518-62.702Q3.871-62.571 4.100-62.317Q4.328-62.063 4.328-61.715L4.328-59.914Q4.328-59.782 4.401-59.672Q4.473-59.563 4.602-59.563Q4.727-59.563 4.795-59.668Q4.864-59.774 4.864-59.914L4.864-60.426L5.145-60.426L5.145-59.914Q5.145-59.711 5.028-59.553Q4.910-59.395 4.729-59.311Q4.547-59.227 4.344-59.227Q4.114-59.227 3.961-59.399Q3.809-59.571 3.778-59.801Q3.618-59.520 3.309-59.354Q3-59.188 2.649-59.188Q2.137-59.188 1.713-59.411Q1.289-59.633 1.289-60.098M1.977-60.098Q1.977-59.813 2.203-59.627Q2.430-59.442 2.723-59.442Q2.969-59.442 3.194-59.559Q3.418-59.676 3.553-59.879Q3.688-60.082 3.688-60.336L3.688-61.168Q3.422-61.168 3.137-61.114Q2.852-61.059 2.580-60.930Q2.309-60.801 2.143-60.594Q1.977-60.387 1.977-60.098M7.254-59.188Q6.774-59.188 6.366-59.432Q5.957-59.676 5.719-60.090Q5.481-60.504 5.481-60.993Q5.481-61.485 5.739-61.901Q5.996-62.317 6.428-62.555Q6.860-62.793 7.352-62.793Q7.973-62.793 8.422-62.356L8.422-63.985Q8.422-64.200 8.360-64.295Q8.297-64.391 8.180-64.412Q8.063-64.434 7.817-64.434L7.817-64.731L9.039-64.817L9.039-60.008Q9.039-59.797 9.102-59.702Q9.164-59.606 9.282-59.584Q9.399-59.563 9.649-59.563L9.649-59.266L8.399-59.188L8.399-59.672Q7.934-59.188 7.254-59.188M7.321-59.442Q7.660-59.442 7.953-59.633Q8.246-59.825 8.399-60.121L8.399-61.953Q8.250-62.227 7.989-62.383Q7.727-62.539 7.414-62.539Q6.789-62.539 6.506-62.092Q6.223-61.645 6.223-60.985Q6.223-60.340 6.475-59.891Q6.727-59.442 7.321-59.442M10.391-57.450Q10.391-57.469 10.407-57.524L13.332-65.161Q13.399-65.266 13.504-65.266Q13.582-65.266 13.635-65.213Q13.688-65.161 13.688-65.082Q13.688-65.063 13.672-65.008L10.743-57.371Q10.680-57.266 10.575-57.266Q10.500-57.266 10.446-57.321Q10.391-57.375 10.391-57.450M14.446-59.274L14.446-60.496Q14.446-60.524 14.477-60.555Q14.508-60.586 14.532-60.586L14.637-60.586Q14.707-60.586 14.723-60.524Q14.785-60.203 14.924-59.963Q15.063-59.723 15.295-59.582Q15.528-59.442 15.836-59.442Q16.075-59.442 16.284-59.502Q16.493-59.563 16.629-59.711Q16.766-59.860 16.766-60.106Q16.766-60.360 16.555-60.526Q16.344-60.692 16.075-60.746L15.453-60.860Q15.047-60.938 14.746-61.194Q14.446-61.450 14.446-61.825Q14.446-62.192 14.647-62.414Q14.848-62.637 15.172-62.735Q15.496-62.832 15.836-62.832Q16.301-62.832 16.598-62.625L16.821-62.809Q16.844-62.832 16.875-62.832L16.926-62.832Q16.957-62.832 16.985-62.805Q17.012-62.778 17.012-62.746L17.012-61.762Q17.012-61.731 16.987-61.702Q16.961-61.672 16.926-61.672L16.821-61.672Q16.785-61.672 16.758-61.700Q16.731-61.727 16.731-61.762Q16.731-62.161 16.479-62.381Q16.227-62.602 15.828-62.602Q15.473-62.602 15.190-62.479Q14.907-62.356 14.907-62.051Q14.907-61.832 15.108-61.700Q15.309-61.567 15.555-61.524L16.180-61.411Q16.610-61.321 16.918-61.024Q17.227-60.727 17.227-60.313Q17.227-59.743 16.828-59.465Q16.430-59.188 15.836-59.188Q15.285-59.188 14.934-59.524L14.637-59.211Q14.614-59.188 14.578-59.188L14.532-59.188Q14.508-59.188 14.477-59.219Q14.446-59.250 14.446-59.274M18.379-60.227L18.379-62.418L17.676-62.418L17.676-62.672Q18.032-62.672 18.274-62.905Q18.516-63.137 18.627-63.485Q18.739-63.832 18.739-64.188L19.020-64.188L19.020-62.715L20.196-62.715L20.196-62.418L19.020-62.418L19.020-60.243Q19.020-59.922 19.139-59.694Q19.258-59.465 19.539-59.465Q19.719-59.465 19.836-59.588Q19.953-59.711 20.006-59.891Q20.059-60.071 20.059-60.243L20.059-60.715L20.340-60.715L20.340-60.227Q20.340-59.973 20.235-59.733Q20.129-59.493 19.932-59.340Q19.735-59.188 19.477-59.188Q19.160-59.188 18.909-59.311Q18.657-59.434 18.518-59.668Q18.379-59.903 18.379-60.227M21.059-60.961Q21.059-61.465 21.315-61.897Q21.571-62.328 22.006-62.580Q22.442-62.832 22.942-62.832Q23.328-62.832 23.670-62.688Q24.012-62.543 24.274-62.282Q24.535-62.020 24.678-61.684Q24.821-61.348 24.821-60.961Q24.821-60.469 24.557-60.059Q24.293-59.649 23.864-59.418Q23.434-59.188 22.942-59.188Q22.450-59.188 22.016-59.420Q21.582-59.653 21.321-60.061Q21.059-60.469 21.059-60.961M22.942-59.465Q23.399-59.465 23.651-59.688Q23.903-59.911 23.991-60.262Q24.078-60.614 24.078-61.059Q24.078-61.489 23.985-61.827Q23.891-62.164 23.637-62.371Q23.383-62.578 22.942-62.578Q22.293-62.578 22.049-62.162Q21.805-61.746 21.805-61.059Q21.805-60.614 21.893-60.262Q21.981-59.911 22.233-59.688Q22.485-59.465 22.942-59.465M27.313-59.266L25.332-59.266L25.332-59.563Q25.602-59.563 25.770-59.608Q25.938-59.653 25.938-59.825L25.938-61.961Q25.938-62.176 25.875-62.272Q25.813-62.368 25.696-62.389Q25.578-62.411 25.332-62.411L25.332-62.707L26.500-62.793L26.500-62.008Q26.578-62.219 26.731-62.405Q26.883-62.590 27.082-62.692Q27.282-62.793 27.508-62.793Q27.754-62.793 27.946-62.649Q28.137-62.504 28.137-62.274Q28.137-62.118 28.032-62.008Q27.926-61.899 27.770-61.899Q27.614-61.899 27.504-62.008Q27.395-62.118 27.395-62.274Q27.395-62.434 27.500-62.539Q27.176-62.539 26.961-62.311Q26.746-62.082 26.651-61.743Q26.555-61.403 26.555-61.098L26.555-59.825Q26.555-59.657 26.782-59.610Q27.008-59.563 27.313-59.563L27.313-59.266M28.618-61.020Q28.618-61.500 28.850-61.916Q29.082-62.332 29.493-62.582Q29.903-62.832 30.379-62.832Q31.110-62.832 31.508-62.391Q31.907-61.950 31.907-61.219Q31.907-61.114 31.813-61.090L29.364-61.090L29.364-61.020Q29.364-60.610 29.485-60.254Q29.606-59.899 29.877-59.682Q30.149-59.465 30.578-59.465Q30.942-59.465 31.239-59.694Q31.535-59.922 31.637-60.274Q31.645-60.321 31.731-60.336L31.813-60.336Q31.907-60.309 31.907-60.227Q31.907-60.219 31.899-60.188Q31.836-59.961 31.698-59.778Q31.559-59.594 31.368-59.461Q31.176-59.328 30.957-59.258Q30.739-59.188 30.500-59.188Q30.129-59.188 29.791-59.325Q29.453-59.461 29.186-59.713Q28.918-59.965 28.768-60.305Q28.618-60.645 28.618-61.020M29.371-61.328L31.332-61.328Q31.332-61.633 31.231-61.924Q31.129-62.215 30.912-62.397Q30.696-62.578 30.379-62.578Q30.078-62.578 29.848-62.391Q29.618-62.203 29.494-61.912Q29.371-61.621 29.371-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 71.71)\">\u003Cpath d=\"M35.251-60.961Q35.251-61.465 35.507-61.897Q35.763-62.328 36.199-62.580Q36.634-62.832 37.134-62.832Q37.521-62.832 37.863-62.688Q38.204-62.543 38.466-62.282Q38.728-62.020 38.870-61.684Q39.013-61.348 39.013-60.961Q39.013-60.469 38.749-60.059Q38.486-59.649 38.056-59.418Q37.626-59.188 37.134-59.188Q36.642-59.188 36.208-59.420Q35.775-59.653 35.513-60.061Q35.251-60.469 35.251-60.961M37.134-59.465Q37.591-59.465 37.843-59.688Q38.095-59.911 38.183-60.262Q38.271-60.614 38.271-61.059Q38.271-61.489 38.177-61.827Q38.083-62.164 37.829-62.371Q37.575-62.578 37.134-62.578Q36.486-62.578 36.242-62.162Q35.997-61.746 35.997-61.059Q35.997-60.614 36.085-60.262Q36.173-59.911 36.425-59.688Q36.677-59.465 37.134-59.465M41.427-59.266L39.572-59.266L39.572-59.563Q39.845-59.563 40.013-59.610Q40.181-59.657 40.181-59.825L40.181-61.961Q40.181-62.176 40.118-62.272Q40.056-62.368 39.937-62.389Q39.818-62.411 39.572-62.411L39.572-62.707L40.763-62.793L40.763-62.059Q40.876-62.274 41.070-62.442Q41.263-62.610 41.501-62.702Q41.740-62.793 41.993-62.793Q43.161-62.793 43.161-61.715L43.161-59.825Q43.161-59.657 43.331-59.610Q43.501-59.563 43.771-59.563L43.771-59.266L41.915-59.266L41.915-59.563Q42.189-59.563 42.357-59.610Q42.525-59.657 42.525-59.825L42.525-61.700Q42.525-62.082 42.404-62.311Q42.283-62.539 41.931-62.539Q41.618-62.539 41.365-62.377Q41.111-62.215 40.964-61.946Q40.818-61.676 40.818-61.379L40.818-59.825Q40.818-59.657 40.988-59.610Q41.158-59.563 41.427-59.563L41.427-59.266M46.130-59.266L44.298-59.266L44.298-59.563Q44.572-59.563 44.740-59.610Q44.908-59.657 44.908-59.825L44.908-63.985Q44.908-64.200 44.845-64.295Q44.783-64.391 44.663-64.412Q44.544-64.434 44.298-64.434L44.298-64.731L45.521-64.817L45.521-59.825Q45.521-59.657 45.689-59.610Q45.857-59.563 46.130-59.563L46.130-59.266M46.993-57.969Q47.107-57.891 47.283-57.891Q47.572-57.891 47.792-58.104Q48.013-58.317 48.138-58.618L48.427-59.266L47.154-62.153Q47.072-62.328 46.927-62.373Q46.783-62.418 46.513-62.418L46.513-62.715L48.232-62.715L48.232-62.418Q47.810-62.418 47.810-62.235Q47.810-62.223 47.825-62.153L48.763-60.028L49.595-61.938Q49.634-62.028 49.634-62.106Q49.634-62.246 49.533-62.332Q49.431-62.418 49.290-62.418L49.290-62.715L50.642-62.715L50.642-62.418Q50.388-62.418 50.195-62.293Q50.001-62.168 49.896-61.938L48.450-58.618Q48.337-58.364 48.171-58.141Q48.005-57.918 47.777-57.776Q47.548-57.633 47.283-57.633Q46.986-57.633 46.745-57.825Q46.505-58.016 46.505-58.305Q46.505-58.461 46.611-58.563Q46.716-58.664 46.865-58.664Q46.970-58.664 47.050-58.618Q47.130-58.571 47.177-58.493Q47.224-58.414 47.224-58.305Q47.224-58.184 47.163-58.096Q47.103-58.008 46.993-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(93.894 71.392)\">\u003Cpath d=\"M-5.414-60.961Q-5.414-61.465-5.158-61.897Q-4.902-62.328-4.466-62.580Q-4.031-62.832-3.531-62.832Q-3.144-62.832-2.802-62.688Q-2.461-62.543-2.199-62.282Q-1.937-62.020-1.795-61.684Q-1.652-61.348-1.652-60.961Q-1.652-60.469-1.916-60.059Q-2.179-59.649-2.609-59.418Q-3.039-59.188-3.531-59.188Q-4.023-59.188-4.457-59.420Q-4.890-59.653-5.152-60.061Q-5.414-60.469-5.414-60.961M-3.531-59.465Q-3.074-59.465-2.822-59.688Q-2.570-59.911-2.482-60.262Q-2.394-60.614-2.394-61.059Q-2.394-61.489-2.488-61.827Q-2.582-62.164-2.836-62.371Q-3.090-62.578-3.531-62.578Q-4.179-62.578-4.423-62.162Q-4.668-61.746-4.668-61.059Q-4.668-60.614-4.580-60.262Q-4.492-59.911-4.240-59.688Q-3.988-59.465-3.531-59.465M0.715-57.715L-1.140-57.715L-1.140-58.008Q-0.871-58.008-0.703-58.053Q-0.535-58.098-0.535-58.274L-0.535-62.098Q-0.535-62.305-0.691-62.358Q-0.847-62.411-1.140-62.411L-1.140-62.707L0.082-62.793L0.082-62.328Q0.313-62.551 0.627-62.672Q0.942-62.793 1.282-62.793Q1.754-62.793 2.159-62.547Q2.563-62.301 2.795-61.885Q3.028-61.469 3.028-60.993Q3.028-60.618 2.879-60.289Q2.731-59.961 2.461-59.709Q2.192-59.457 1.848-59.323Q1.504-59.188 1.145-59.188Q0.856-59.188 0.584-59.309Q0.313-59.430 0.106-59.641L0.106-58.274Q0.106-58.098 0.274-58.053Q0.442-58.008 0.715-58.008L0.715-57.715M0.106-61.930L0.106-60.090Q0.258-59.801 0.520-59.621Q0.782-59.442 1.090-59.442Q1.375-59.442 1.598-59.580Q1.821-59.719 1.973-59.950Q2.125-60.180 2.203-60.452Q2.282-60.723 2.282-60.993Q2.282-61.325 2.157-61.682Q2.032-62.039 1.784-62.276Q1.535-62.512 1.188-62.512Q0.864-62.512 0.569-62.356Q0.274-62.200 0.106-61.930M3.594-59.274L3.594-60.496Q3.594-60.524 3.625-60.555Q3.657-60.586 3.680-60.586L3.785-60.586Q3.856-60.586 3.871-60.524Q3.934-60.203 4.073-59.963Q4.211-59.723 4.444-59.582Q4.676-59.442 4.985-59.442Q5.223-59.442 5.432-59.502Q5.641-59.563 5.778-59.711Q5.914-59.860 5.914-60.106Q5.914-60.360 5.703-60.526Q5.493-60.692 5.223-60.746L4.602-60.860Q4.196-60.938 3.895-61.194Q3.594-61.450 3.594-61.825Q3.594-62.192 3.795-62.414Q3.996-62.637 4.321-62.735Q4.645-62.832 4.985-62.832Q5.450-62.832 5.746-62.625L5.969-62.809Q5.993-62.832 6.024-62.832L6.075-62.832Q6.106-62.832 6.133-62.805Q6.160-62.778 6.160-62.746L6.160-61.762Q6.160-61.731 6.135-61.702Q6.110-61.672 6.075-61.672L5.969-61.672Q5.934-61.672 5.907-61.700Q5.879-61.727 5.879-61.762Q5.879-62.161 5.627-62.381Q5.375-62.602 4.977-62.602Q4.621-62.602 4.338-62.479Q4.055-62.356 4.055-62.051Q4.055-61.832 4.256-61.700Q4.457-61.567 4.703-61.524L5.328-61.411Q5.758-61.321 6.067-61.024Q6.375-60.727 6.375-60.313Q6.375-59.743 5.977-59.465Q5.578-59.188 4.985-59.188Q4.434-59.188 4.082-59.524L3.785-59.211Q3.762-59.188 3.727-59.188L3.680-59.188Q3.657-59.188 3.625-59.219Q3.594-59.250 3.594-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 71.392)\">\u003Cpath d=\"M9.787-60.993Q9.787-61.489 10.037-61.914Q10.287-62.340 10.707-62.586Q11.127-62.832 11.627-62.832Q12.166-62.832 12.557-62.707Q12.947-62.582 12.947-62.168Q12.947-62.063 12.897-61.971Q12.846-61.879 12.754-61.828Q12.662-61.778 12.553-61.778Q12.447-61.778 12.356-61.828Q12.264-61.879 12.213-61.971Q12.162-62.063 12.162-62.168Q12.162-62.391 12.330-62.496Q12.108-62.555 11.635-62.555Q11.338-62.555 11.123-62.416Q10.908-62.278 10.777-62.047Q10.647-61.817 10.588-61.547Q10.529-61.278 10.529-60.993Q10.529-60.598 10.662-60.248Q10.795-59.899 11.067-59.682Q11.338-59.465 11.736-59.465Q12.111-59.465 12.387-59.682Q12.662-59.899 12.764-60.258Q12.779-60.321 12.842-60.321L12.947-60.321Q12.983-60.321 13.008-60.293Q13.033-60.266 13.033-60.227L13.033-60.203Q12.901-59.723 12.516-59.455Q12.131-59.188 11.627-59.188Q11.264-59.188 10.930-59.325Q10.596-59.461 10.336-59.711Q10.076-59.961 9.932-60.297Q9.787-60.633 9.787-60.993M13.522-60.961Q13.522-61.465 13.777-61.897Q14.033-62.328 14.469-62.580Q14.904-62.832 15.404-62.832Q15.791-62.832 16.133-62.688Q16.475-62.543 16.736-62.282Q16.998-62.020 17.141-61.684Q17.283-61.348 17.283-60.961Q17.283-60.469 17.020-60.059Q16.756-59.649 16.326-59.418Q15.897-59.188 15.404-59.188Q14.912-59.188 14.479-59.420Q14.045-59.653 13.783-60.061Q13.522-60.469 13.522-60.961M15.404-59.465Q15.861-59.465 16.113-59.688Q16.365-59.911 16.453-60.262Q16.541-60.614 16.541-61.059Q16.541-61.489 16.447-61.827Q16.354-62.164 16.100-62.371Q15.846-62.578 15.404-62.578Q14.756-62.578 14.512-62.162Q14.268-61.746 14.268-61.059Q14.268-60.614 14.356-60.262Q14.444-59.911 14.695-59.688Q14.947-59.465 15.404-59.465M19.697-59.266L17.842-59.266L17.842-59.563Q18.115-59.563 18.283-59.610Q18.451-59.657 18.451-59.825L18.451-61.961Q18.451-62.176 18.389-62.272Q18.326-62.368 18.207-62.389Q18.088-62.411 17.842-62.411L17.842-62.707L19.033-62.793L19.033-62.059Q19.147-62.274 19.340-62.442Q19.533-62.610 19.772-62.702Q20.010-62.793 20.264-62.793Q21.225-62.793 21.401-62.082Q21.584-62.411 21.912-62.602Q22.240-62.793 22.619-62.793Q23.795-62.793 23.795-61.715L23.795-59.825Q23.795-59.657 23.963-59.610Q24.131-59.563 24.401-59.563L24.401-59.266L22.545-59.266L22.545-59.563Q22.819-59.563 22.986-59.608Q23.154-59.653 23.154-59.825L23.154-61.700Q23.154-62.086 23.029-62.313Q22.904-62.539 22.553-62.539Q22.248-62.539 21.992-62.377Q21.736-62.215 21.588-61.946Q21.440-61.676 21.440-61.379L21.440-59.825Q21.440-59.657 21.610-59.610Q21.779-59.563 22.049-59.563L22.049-59.266L20.194-59.266L20.194-59.563Q20.467-59.563 20.635-59.610Q20.803-59.657 20.803-59.825L20.803-61.700Q20.803-62.086 20.678-62.313Q20.553-62.539 20.201-62.539Q19.897-62.539 19.641-62.377Q19.385-62.215 19.236-61.946Q19.088-61.676 19.088-61.379L19.088-59.825Q19.088-59.657 19.258-59.610Q19.428-59.563 19.697-59.563L19.697-59.266M26.729-57.715L24.873-57.715L24.873-58.008Q25.143-58.008 25.311-58.053Q25.479-58.098 25.479-58.274L25.479-62.098Q25.479-62.305 25.322-62.358Q25.166-62.411 24.873-62.411L24.873-62.707L26.096-62.793L26.096-62.328Q26.326-62.551 26.641-62.672Q26.955-62.793 27.295-62.793Q27.768-62.793 28.172-62.547Q28.576-62.301 28.809-61.885Q29.041-61.469 29.041-60.993Q29.041-60.618 28.893-60.289Q28.744-59.961 28.475-59.709Q28.205-59.457 27.861-59.323Q27.518-59.188 27.158-59.188Q26.869-59.188 26.598-59.309Q26.326-59.430 26.119-59.641L26.119-58.274Q26.119-58.098 26.287-58.053Q26.455-58.008 26.729-58.008L26.729-57.715M26.119-61.930L26.119-60.090Q26.272-59.801 26.533-59.621Q26.795-59.442 27.104-59.442Q27.389-59.442 27.611-59.580Q27.834-59.719 27.986-59.950Q28.139-60.180 28.217-60.452Q28.295-60.723 28.295-60.993Q28.295-61.325 28.170-61.682Q28.045-62.039 27.797-62.276Q27.549-62.512 27.201-62.512Q26.877-62.512 26.582-62.356Q26.287-62.200 26.119-61.930M30.248-60.219L30.248-61.961Q30.248-62.176 30.186-62.272Q30.123-62.368 30.004-62.389Q29.885-62.411 29.639-62.411L29.639-62.707L30.885-62.793L30.885-60.243L30.885-60.219Q30.885-59.907 30.940-59.745Q30.994-59.582 31.145-59.512Q31.295-59.442 31.615-59.442Q32.045-59.442 32.319-59.780Q32.592-60.118 32.592-60.563L32.592-61.961Q32.592-62.176 32.529-62.272Q32.467-62.368 32.348-62.389Q32.229-62.411 31.983-62.411L31.983-62.707L33.229-62.793L33.229-60.008Q33.229-59.797 33.291-59.702Q33.354-59.606 33.473-59.584Q33.592-59.563 33.838-59.563L33.838-59.266L32.615-59.188L32.615-59.809Q32.447-59.520 32.166-59.354Q31.885-59.188 31.565-59.188Q30.248-59.188 30.248-60.219M34.908-60.227L34.908-62.418L34.205-62.418L34.205-62.672Q34.561-62.672 34.803-62.905Q35.045-63.137 35.156-63.485Q35.268-63.832 35.268-64.188L35.549-64.188L35.549-62.715L36.725-62.715L36.725-62.418L35.549-62.418L35.549-60.243Q35.549-59.922 35.668-59.694Q35.787-59.465 36.069-59.465Q36.248-59.465 36.365-59.588Q36.483-59.711 36.535-59.891Q36.588-60.071 36.588-60.243L36.588-60.715L36.869-60.715L36.869-60.227Q36.869-59.973 36.764-59.733Q36.658-59.493 36.461-59.340Q36.264-59.188 36.006-59.188Q35.690-59.188 35.438-59.311Q35.186-59.434 35.047-59.668Q34.908-59.903 34.908-60.227M37.588-61.020Q37.588-61.500 37.820-61.916Q38.053-62.332 38.463-62.582Q38.873-62.832 39.350-62.832Q40.080-62.832 40.479-62.391Q40.877-61.950 40.877-61.219Q40.877-61.114 40.783-61.090L38.334-61.090L38.334-61.020Q38.334-60.610 38.455-60.254Q38.576-59.899 38.848-59.682Q39.119-59.465 39.549-59.465Q39.912-59.465 40.209-59.694Q40.506-59.922 40.608-60.274Q40.615-60.321 40.701-60.336L40.783-60.336Q40.877-60.309 40.877-60.227Q40.877-60.219 40.869-60.188Q40.807-59.961 40.668-59.778Q40.529-59.594 40.338-59.461Q40.147-59.328 39.928-59.258Q39.709-59.188 39.471-59.188Q39.100-59.188 38.762-59.325Q38.424-59.461 38.156-59.713Q37.889-59.965 37.738-60.305Q37.588-60.645 37.588-61.020M38.342-61.328L40.303-61.328Q40.303-61.633 40.201-61.924Q40.100-62.215 39.883-62.397Q39.666-62.578 39.350-62.578Q39.049-62.578 38.819-62.391Q38.588-62.203 38.465-61.912Q38.342-61.621 38.342-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 71.392)\">\u003Cpath d=\"M44.216-60.961Q44.216-61.465 44.472-61.897Q44.728-62.328 45.164-62.580Q45.599-62.832 46.099-62.832Q46.486-62.832 46.828-62.688Q47.169-62.543 47.431-62.282Q47.693-62.020 47.835-61.684Q47.978-61.348 47.978-60.961Q47.978-60.469 47.714-60.059Q47.451-59.649 47.021-59.418Q46.591-59.188 46.099-59.188Q45.607-59.188 45.173-59.420Q44.740-59.653 44.478-60.061Q44.216-60.469 44.216-60.961M46.099-59.465Q46.556-59.465 46.808-59.688Q47.060-59.911 47.148-60.262Q47.236-60.614 47.236-61.059Q47.236-61.489 47.142-61.827Q47.048-62.164 46.794-62.371Q46.541-62.578 46.099-62.578Q45.451-62.578 45.207-62.162Q44.962-61.746 44.962-61.059Q44.962-60.614 45.050-60.262Q45.138-59.911 45.390-59.688Q45.642-59.465 46.099-59.465M50.392-59.266L48.537-59.266L48.537-59.563Q48.810-59.563 48.978-59.610Q49.146-59.657 49.146-59.825L49.146-61.961Q49.146-62.176 49.083-62.272Q49.021-62.368 48.902-62.389Q48.783-62.411 48.537-62.411L48.537-62.707L49.728-62.793L49.728-62.059Q49.841-62.274 50.035-62.442Q50.228-62.610 50.466-62.702Q50.705-62.793 50.958-62.793Q52.126-62.793 52.126-61.715L52.126-59.825Q52.126-59.657 52.296-59.610Q52.466-59.563 52.736-59.563L52.736-59.266L50.880-59.266L50.880-59.563Q51.154-59.563 51.322-59.610Q51.490-59.657 51.490-59.825L51.490-61.700Q51.490-62.082 51.369-62.311Q51.248-62.539 50.896-62.539Q50.583-62.539 50.330-62.377Q50.076-62.215 49.929-61.946Q49.783-61.676 49.783-61.379L49.783-59.825Q49.783-59.657 49.953-59.610Q50.123-59.563 50.392-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 71.392)\">\u003Cpath d=\"M57.952-59.266L56.096-59.266L56.096-59.563Q56.370-59.563 56.538-59.610Q56.706-59.657 56.706-59.825L56.706-61.961Q56.706-62.176 56.643-62.272Q56.581-62.368 56.462-62.389Q56.343-62.411 56.096-62.411L56.096-62.707L57.288-62.793L57.288-62.059Q57.401-62.274 57.595-62.442Q57.788-62.610 58.026-62.702Q58.264-62.793 58.518-62.793Q59.479-62.793 59.655-62.082Q59.839-62.411 60.167-62.602Q60.495-62.793 60.874-62.793Q62.050-62.793 62.050-61.715L62.050-59.825Q62.050-59.657 62.218-59.610Q62.386-59.563 62.655-59.563L62.655-59.266L60.800-59.266L60.800-59.563Q61.073-59.563 61.241-59.608Q61.409-59.653 61.409-59.825L61.409-61.700Q61.409-62.086 61.284-62.313Q61.159-62.539 60.807-62.539Q60.503-62.539 60.247-62.377Q59.991-62.215 59.843-61.946Q59.694-61.676 59.694-61.379L59.694-59.825Q59.694-59.657 59.864-59.610Q60.034-59.563 60.304-59.563L60.304-59.266L58.448-59.266L58.448-59.563Q58.721-59.563 58.889-59.610Q59.057-59.657 59.057-59.825L59.057-61.700Q59.057-62.086 58.932-62.313Q58.807-62.539 58.456-62.539Q58.151-62.539 57.895-62.377Q57.639-62.215 57.491-61.946Q57.343-61.676 57.343-61.379L57.343-59.825Q57.343-59.657 57.513-59.610Q57.682-59.563 57.952-59.563L57.952-59.266M63.100-61.020Q63.100-61.500 63.333-61.916Q63.565-62.332 63.975-62.582Q64.386-62.832 64.862-62.832Q65.593-62.832 65.991-62.391Q66.389-61.950 66.389-61.219Q66.389-61.114 66.296-61.090L63.846-61.090L63.846-61.020Q63.846-60.610 63.968-60.254Q64.089-59.899 64.360-59.682Q64.632-59.465 65.061-59.465Q65.425-59.465 65.721-59.694Q66.018-59.922 66.120-60.274Q66.128-60.321 66.214-60.336L66.296-60.336Q66.389-60.309 66.389-60.227Q66.389-60.219 66.382-60.188Q66.319-59.961 66.180-59.778Q66.042-59.594 65.850-59.461Q65.659-59.328 65.440-59.258Q65.221-59.188 64.983-59.188Q64.612-59.188 64.274-59.325Q63.936-59.461 63.669-59.713Q63.401-59.965 63.251-60.305Q63.100-60.645 63.100-61.020M63.854-61.328L65.815-61.328Q65.815-61.633 65.714-61.924Q65.612-62.215 65.395-62.397Q65.179-62.578 64.862-62.578Q64.561-62.578 64.331-62.391Q64.100-62.203 63.977-61.912Q63.854-61.621 63.854-61.328M68.807-59.266L66.952-59.266L66.952-59.563Q67.225-59.563 67.393-59.610Q67.561-59.657 67.561-59.825L67.561-61.961Q67.561-62.176 67.499-62.272Q67.436-62.368 67.317-62.389Q67.198-62.411 66.952-62.411L66.952-62.707L68.143-62.793L68.143-62.059Q68.257-62.274 68.450-62.442Q68.643-62.610 68.882-62.702Q69.120-62.793 69.374-62.793Q70.335-62.793 70.511-62.082Q70.694-62.411 71.022-62.602Q71.350-62.793 71.729-62.793Q72.905-62.793 72.905-61.715L72.905-59.825Q72.905-59.657 73.073-59.610Q73.241-59.563 73.511-59.563L73.511-59.266L71.655-59.266L71.655-59.563Q71.929-59.563 72.096-59.608Q72.264-59.653 72.264-59.825L72.264-61.700Q72.264-62.086 72.139-62.313Q72.014-62.539 71.663-62.539Q71.358-62.539 71.102-62.377Q70.846-62.215 70.698-61.946Q70.550-61.676 70.550-61.379L70.550-59.825Q70.550-59.657 70.720-59.610Q70.889-59.563 71.159-59.563L71.159-59.266L69.304-59.266L69.304-59.563Q69.577-59.563 69.745-59.610Q69.913-59.657 69.913-59.825L69.913-61.700Q69.913-62.086 69.788-62.313Q69.663-62.539 69.311-62.539Q69.007-62.539 68.751-62.377Q68.495-62.215 68.346-61.946Q68.198-61.676 68.198-61.379L68.198-59.825Q68.198-59.657 68.368-59.610Q68.538-59.563 68.807-59.563L68.807-59.266M73.956-60.961Q73.956-61.465 74.212-61.897Q74.468-62.328 74.903-62.580Q75.339-62.832 75.839-62.832Q76.225-62.832 76.567-62.688Q76.909-62.543 77.171-62.282Q77.432-62.020 77.575-61.684Q77.718-61.348 77.718-60.961Q77.718-60.469 77.454-60.059Q77.190-59.649 76.761-59.418Q76.331-59.188 75.839-59.188Q75.346-59.188 74.913-59.420Q74.479-59.653 74.218-60.061Q73.956-60.469 73.956-60.961M75.839-59.465Q76.296-59.465 76.548-59.688Q76.800-59.911 76.888-60.262Q76.975-60.614 76.975-61.059Q76.975-61.489 76.882-61.827Q76.788-62.164 76.534-62.371Q76.280-62.578 75.839-62.578Q75.190-62.578 74.946-62.162Q74.702-61.746 74.702-61.059Q74.702-60.614 74.790-60.262Q74.878-59.911 75.130-59.688Q75.382-59.465 75.839-59.465M80.210-59.266L78.229-59.266L78.229-59.563Q78.499-59.563 78.667-59.608Q78.835-59.653 78.835-59.825L78.835-61.961Q78.835-62.176 78.772-62.272Q78.710-62.368 78.593-62.389Q78.475-62.411 78.229-62.411L78.229-62.707L79.397-62.793L79.397-62.008Q79.475-62.219 79.628-62.405Q79.780-62.590 79.979-62.692Q80.179-62.793 80.405-62.793Q80.651-62.793 80.843-62.649Q81.034-62.504 81.034-62.274Q81.034-62.118 80.929-62.008Q80.823-61.899 80.667-61.899Q80.511-61.899 80.401-62.008Q80.292-62.118 80.292-62.274Q80.292-62.434 80.397-62.539Q80.073-62.539 79.858-62.311Q79.643-62.082 79.548-61.743Q79.452-61.403 79.452-61.098L79.452-59.825Q79.452-59.657 79.679-59.610Q79.905-59.563 80.210-59.563L80.210-59.266M81.932-57.969Q82.046-57.891 82.221-57.891Q82.511-57.891 82.731-58.104Q82.952-58.317 83.077-58.618L83.366-59.266L82.093-62.153Q82.011-62.328 81.866-62.373Q81.721-62.418 81.452-62.418L81.452-62.715L83.171-62.715L83.171-62.418Q82.749-62.418 82.749-62.235Q82.749-62.223 82.764-62.153L83.702-60.028L84.534-61.938Q84.573-62.028 84.573-62.106Q84.573-62.246 84.471-62.332Q84.370-62.418 84.229-62.418L84.229-62.715L85.581-62.715L85.581-62.418Q85.327-62.418 85.134-62.293Q84.940-62.168 84.835-61.938L83.389-58.618Q83.276-58.364 83.110-58.141Q82.944-57.918 82.716-57.776Q82.487-57.633 82.221-57.633Q81.925-57.633 81.684-57.825Q81.444-58.016 81.444-58.305Q81.444-58.461 81.550-58.563Q81.655-58.664 81.804-58.664Q81.909-58.664 81.989-58.618Q82.069-58.571 82.116-58.493Q82.163-58.414 82.163-58.305Q82.163-58.184 82.102-58.096Q82.042-58.008 81.932-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.06 92.953)\">\u003Cpath d=\"M-3.484-59.266L-5.340-59.266L-5.340-59.563Q-5.066-59.563-4.898-59.610Q-4.730-59.657-4.730-59.825L-4.730-61.961Q-4.730-62.176-4.793-62.272Q-4.855-62.368-4.974-62.389Q-5.093-62.411-5.340-62.411L-5.340-62.707L-4.148-62.793L-4.148-62.059Q-4.035-62.274-3.841-62.442Q-3.648-62.610-3.410-62.702Q-3.172-62.793-2.918-62.793Q-1.957-62.793-1.781-62.082Q-1.597-62.411-1.269-62.602Q-0.941-62.793-0.562-62.793Q0.614-62.793 0.614-61.715L0.614-59.825Q0.614-59.657 0.782-59.610Q0.950-59.563 1.219-59.563L1.219-59.266L-0.636-59.266L-0.636-59.563Q-0.363-59.563-0.195-59.608Q-0.027-59.653-0.027-59.825L-0.027-61.700Q-0.027-62.086-0.152-62.313Q-0.277-62.539-0.629-62.539Q-0.933-62.539-1.189-62.377Q-1.445-62.215-1.593-61.946Q-1.742-61.676-1.742-61.379L-1.742-59.825Q-1.742-59.657-1.572-59.610Q-1.402-59.563-1.132-59.563L-1.132-59.266L-2.988-59.266L-2.988-59.563Q-2.715-59.563-2.547-59.610Q-2.379-59.657-2.379-59.825L-2.379-61.700Q-2.379-62.086-2.504-62.313Q-2.629-62.539-2.980-62.539Q-3.285-62.539-3.541-62.377Q-3.797-62.215-3.945-61.946Q-4.093-61.676-4.093-61.379L-4.093-59.825Q-4.093-59.657-3.923-59.610Q-3.754-59.563-3.484-59.563L-3.484-59.266M1.762-60.098Q1.762-60.582 2.164-60.877Q2.567-61.172 3.118-61.291Q3.668-61.411 4.160-61.411L4.160-61.700Q4.160-61.926 4.045-62.133Q3.930-62.340 3.733-62.459Q3.535-62.578 3.305-62.578Q2.879-62.578 2.594-62.473Q2.664-62.446 2.711-62.391Q2.758-62.336 2.784-62.266Q2.809-62.196 2.809-62.121Q2.809-62.016 2.758-61.924Q2.707-61.832 2.616-61.782Q2.524-61.731 2.418-61.731Q2.313-61.731 2.221-61.782Q2.129-61.832 2.078-61.924Q2.028-62.016 2.028-62.121Q2.028-62.539 2.416-62.686Q2.805-62.832 3.305-62.832Q3.637-62.832 3.991-62.702Q4.344-62.571 4.573-62.317Q4.801-62.063 4.801-61.715L4.801-59.914Q4.801-59.782 4.873-59.672Q4.946-59.563 5.075-59.563Q5.200-59.563 5.268-59.668Q5.336-59.774 5.336-59.914L5.336-60.426L5.618-60.426L5.618-59.914Q5.618-59.711 5.500-59.553Q5.383-59.395 5.202-59.311Q5.020-59.227 4.817-59.227Q4.586-59.227 4.434-59.399Q4.282-59.571 4.250-59.801Q4.090-59.520 3.782-59.354Q3.473-59.188 3.121-59.188Q2.610-59.188 2.186-59.411Q1.762-59.633 1.762-60.098M2.450-60.098Q2.450-59.813 2.676-59.627Q2.903-59.442 3.196-59.442Q3.442-59.442 3.666-59.559Q3.891-59.676 4.026-59.879Q4.160-60.082 4.160-60.336L4.160-61.168Q3.895-61.168 3.610-61.114Q3.325-61.059 3.053-60.930Q2.782-60.801 2.616-60.594Q2.450-60.387 2.450-60.098M7.840-59.266L5.985-59.266L5.985-59.563Q6.258-59.563 6.426-59.610Q6.594-59.657 6.594-59.825L6.594-61.961Q6.594-62.176 6.532-62.272Q6.469-62.368 6.350-62.389Q6.231-62.411 5.985-62.411L5.985-62.707L7.176-62.793L7.176-62.059Q7.289-62.274 7.483-62.442Q7.676-62.610 7.914-62.702Q8.153-62.793 8.407-62.793Q9.575-62.793 9.575-61.715L9.575-59.825Q9.575-59.657 9.744-59.610Q9.914-59.563 10.184-59.563L10.184-59.266L8.328-59.266L8.328-59.563Q8.602-59.563 8.770-59.610Q8.938-59.657 8.938-59.825L8.938-61.700Q8.938-62.082 8.817-62.311Q8.696-62.539 8.344-62.539Q8.032-62.539 7.778-62.377Q7.524-62.215 7.377-61.946Q7.231-61.676 7.231-61.379L7.231-59.825Q7.231-59.657 7.401-59.610Q7.571-59.563 7.840-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 92.953)\">\u003Cpath d=\"M10.823-57.969Q10.937-57.891 11.112-57.891Q11.401-57.891 11.622-58.104Q11.843-58.317 11.968-58.618L12.257-59.266L10.983-62.153Q10.901-62.328 10.757-62.373Q10.612-62.418 10.343-62.418L10.343-62.715L12.062-62.715L12.062-62.418Q11.640-62.418 11.640-62.235Q11.640-62.223 11.655-62.153L12.593-60.028L13.425-61.938Q13.464-62.028 13.464-62.106Q13.464-62.246 13.362-62.332Q13.261-62.418 13.120-62.418L13.120-62.715L14.472-62.715L14.472-62.418Q14.218-62.418 14.024-62.293Q13.831-62.168 13.726-61.938L12.280-58.618Q12.167-58.364 12.001-58.141Q11.835-57.918 11.606-57.776Q11.378-57.633 11.112-57.633Q10.815-57.633 10.575-57.825Q10.335-58.016 10.335-58.305Q10.335-58.461 10.440-58.563Q10.546-58.664 10.694-58.664Q10.800-58.664 10.880-58.618Q10.960-58.571 11.007-58.493Q11.054-58.414 11.054-58.305Q11.054-58.184 10.993-58.096Q10.933-58.008 10.823-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 92.953)\">\u003Cpath d=\"M19.732-59.266L17.752-59.266L17.752-59.563Q18.021-59.563 18.189-59.608Q18.357-59.653 18.357-59.825L18.357-61.961Q18.357-62.176 18.295-62.272Q18.232-62.368 18.115-62.389Q17.998-62.411 17.752-62.411L17.752-62.707L18.920-62.793L18.920-62.008Q18.998-62.219 19.150-62.405Q19.302-62.590 19.502-62.692Q19.701-62.793 19.927-62.793Q20.174-62.793 20.365-62.649Q20.556-62.504 20.556-62.274Q20.556-62.118 20.451-62.008Q20.345-61.899 20.189-61.899Q20.033-61.899 19.924-62.008Q19.814-62.118 19.814-62.274Q19.814-62.434 19.920-62.539Q19.595-62.539 19.381-62.311Q19.166-62.082 19.070-61.743Q18.974-61.403 18.974-61.098L18.974-59.825Q18.974-59.657 19.201-59.610Q19.427-59.563 19.732-59.563L19.732-59.266M21.037-61.020Q21.037-61.500 21.269-61.916Q21.502-62.332 21.912-62.582Q22.322-62.832 22.799-62.832Q23.529-62.832 23.927-62.391Q24.326-61.950 24.326-61.219Q24.326-61.114 24.232-61.090L21.783-61.090L21.783-61.020Q21.783-60.610 21.904-60.254Q22.025-59.899 22.297-59.682Q22.568-59.465 22.998-59.465Q23.361-59.465 23.658-59.694Q23.955-59.922 24.056-60.274Q24.064-60.321 24.150-60.336L24.232-60.336Q24.326-60.309 24.326-60.227Q24.326-60.219 24.318-60.188Q24.256-59.961 24.117-59.778Q23.978-59.594 23.787-59.461Q23.595-59.328 23.377-59.258Q23.158-59.188 22.920-59.188Q22.549-59.188 22.211-59.325Q21.873-59.461 21.605-59.713Q21.338-59.965 21.187-60.305Q21.037-60.645 21.037-61.020M21.791-61.328L23.752-61.328Q23.752-61.633 23.650-61.924Q23.549-62.215 23.332-62.397Q23.115-62.578 22.799-62.578Q22.498-62.578 22.267-62.391Q22.037-62.203 21.914-61.912Q21.791-61.621 21.791-61.328M24.814-58.657Q24.814-58.938 25.025-59.149Q25.236-59.360 25.521-59.450Q25.365-59.575 25.287-59.764Q25.209-59.953 25.209-60.153Q25.209-60.508 25.439-60.801Q25.072-61.141 25.072-61.610Q25.072-61.961 25.275-62.231Q25.478-62.500 25.799-62.647Q26.119-62.793 26.463-62.793Q26.982-62.793 27.353-62.512Q27.716-62.883 28.263-62.883Q28.443-62.883 28.570-62.756Q28.697-62.629 28.697-62.450Q28.697-62.344 28.619-62.266Q28.541-62.188 28.431-62.188Q28.322-62.188 28.246-62.264Q28.170-62.340 28.170-62.450Q28.170-62.551 28.209-62.602Q28.216-62.610 28.220-62.616Q28.224-62.621 28.224-62.625Q27.849-62.625 27.529-62.371Q27.849-62.032 27.849-61.610Q27.849-61.340 27.732-61.123Q27.615-60.907 27.410-60.748Q27.205-60.590 26.963-60.508Q26.720-60.426 26.463-60.426Q26.244-60.426 26.031-60.485Q25.818-60.543 25.623-60.664Q25.529-60.524 25.529-60.344Q25.529-60.137 25.666-59.985Q25.802-59.832 26.009-59.832L26.705-59.832Q27.193-59.832 27.605-59.748Q28.017-59.664 28.297-59.407Q28.576-59.149 28.576-58.657Q28.576-58.293 28.256-58.061Q27.935-57.828 27.494-57.727Q27.052-57.625 26.697-57.625Q26.341-57.625 25.898-57.727Q25.455-57.828 25.134-58.061Q24.814-58.293 24.814-58.657M25.318-58.657Q25.318-58.461 25.463-58.313Q25.607-58.164 25.820-58.075Q26.033-57.985 26.273-57.938Q26.513-57.891 26.697-57.891Q26.939-57.891 27.269-57.969Q27.599-58.047 27.836-58.221Q28.072-58.395 28.072-58.657Q28.072-59.063 27.662-59.172Q27.252-59.282 26.689-59.282L26.009-59.282Q25.740-59.282 25.529-59.104Q25.318-58.926 25.318-58.657M26.463-60.692Q27.185-60.692 27.185-61.610Q27.185-62.532 26.463-62.532Q25.736-62.532 25.736-61.610Q25.736-60.692 26.463-60.692M30.920-59.266L29.142-59.266L29.142-59.563Q29.416-59.563 29.584-59.610Q29.752-59.657 29.752-59.825L29.752-61.961Q29.752-62.176 29.695-62.272Q29.638-62.368 29.525-62.389Q29.412-62.411 29.166-62.411L29.166-62.707L30.365-62.793L30.365-59.825Q30.365-59.657 30.511-59.610Q30.658-59.563 30.920-59.563L30.920-59.266M29.478-64.188Q29.478-64.379 29.613-64.510Q29.748-64.641 29.943-64.641Q30.064-64.641 30.168-64.578Q30.271-64.516 30.334-64.412Q30.396-64.309 30.396-64.188Q30.396-63.993 30.265-63.858Q30.134-63.723 29.943-63.723Q29.744-63.723 29.611-63.856Q29.478-63.989 29.478-64.188M31.463-59.274L31.463-60.496Q31.463-60.524 31.494-60.555Q31.525-60.586 31.549-60.586L31.654-60.586Q31.724-60.586 31.740-60.524Q31.802-60.203 31.941-59.963Q32.080-59.723 32.312-59.582Q32.545-59.442 32.853-59.442Q33.091-59.442 33.300-59.502Q33.509-59.563 33.646-59.711Q33.783-59.860 33.783-60.106Q33.783-60.360 33.572-60.526Q33.361-60.692 33.091-60.746L32.470-60.860Q32.064-60.938 31.763-61.194Q31.463-61.450 31.463-61.825Q31.463-62.192 31.664-62.414Q31.865-62.637 32.189-62.735Q32.513-62.832 32.853-62.832Q33.318-62.832 33.615-62.625L33.838-62.809Q33.861-62.832 33.892-62.832L33.943-62.832Q33.974-62.832 34.002-62.805Q34.029-62.778 34.029-62.746L34.029-61.762Q34.029-61.731 34.004-61.702Q33.978-61.672 33.943-61.672L33.838-61.672Q33.802-61.672 33.775-61.700Q33.748-61.727 33.748-61.762Q33.748-62.161 33.496-62.381Q33.244-62.602 32.845-62.602Q32.490-62.602 32.207-62.479Q31.924-62.356 31.924-62.051Q31.924-61.832 32.125-61.700Q32.326-61.567 32.572-61.524L33.197-61.411Q33.627-61.321 33.935-61.024Q34.244-60.727 34.244-60.313Q34.244-59.743 33.845-59.465Q33.447-59.188 32.853-59.188Q32.302-59.188 31.951-59.524L31.654-59.211Q31.631-59.188 31.595-59.188L31.549-59.188Q31.525-59.188 31.494-59.219Q31.463-59.250 31.463-59.274M35.396-60.227L35.396-62.418L34.693-62.418L34.693-62.672Q35.049-62.672 35.291-62.905Q35.533-63.137 35.644-63.485Q35.756-63.832 35.756-64.188L36.037-64.188L36.037-62.715L37.213-62.715L37.213-62.418L36.037-62.418L36.037-60.243Q36.037-59.922 36.156-59.694Q36.275-59.465 36.556-59.465Q36.736-59.465 36.853-59.588Q36.970-59.711 37.023-59.891Q37.076-60.071 37.076-60.243L37.076-60.715L37.357-60.715L37.357-60.227Q37.357-59.973 37.252-59.733Q37.146-59.493 36.949-59.340Q36.752-59.188 36.494-59.188Q36.177-59.188 35.925-59.311Q35.674-59.434 35.535-59.668Q35.396-59.903 35.396-60.227M38.076-61.020Q38.076-61.500 38.308-61.916Q38.541-62.332 38.951-62.582Q39.361-62.832 39.838-62.832Q40.568-62.832 40.966-62.391Q41.365-61.950 41.365-61.219Q41.365-61.114 41.271-61.090L38.822-61.090L38.822-61.020Q38.822-60.610 38.943-60.254Q39.064-59.899 39.336-59.682Q39.607-59.465 40.037-59.465Q40.400-59.465 40.697-59.694Q40.994-59.922 41.095-60.274Q41.103-60.321 41.189-60.336L41.271-60.336Q41.365-60.309 41.365-60.227Q41.365-60.219 41.357-60.188Q41.295-59.961 41.156-59.778Q41.017-59.594 40.826-59.461Q40.634-59.328 40.416-59.258Q40.197-59.188 39.959-59.188Q39.588-59.188 39.250-59.325Q38.912-59.461 38.644-59.713Q38.377-59.965 38.226-60.305Q38.076-60.645 38.076-61.020M38.830-61.328L40.791-61.328Q40.791-61.633 40.689-61.924Q40.588-62.215 40.371-62.397Q40.154-62.578 39.838-62.578Q39.537-62.578 39.306-62.391Q39.076-62.203 38.953-61.912Q38.830-61.621 38.830-61.328M43.861-59.266L41.881-59.266L41.881-59.563Q42.150-59.563 42.318-59.608Q42.486-59.653 42.486-59.825L42.486-61.961Q42.486-62.176 42.424-62.272Q42.361-62.368 42.244-62.389Q42.127-62.411 41.881-62.411L41.881-62.707L43.049-62.793L43.049-62.008Q43.127-62.219 43.279-62.405Q43.431-62.590 43.631-62.692Q43.830-62.793 44.056-62.793Q44.302-62.793 44.494-62.649Q44.685-62.504 44.685-62.274Q44.685-62.118 44.580-62.008Q44.474-61.899 44.318-61.899Q44.162-61.899 44.052-62.008Q43.943-62.118 43.943-62.274Q43.943-62.434 44.049-62.539Q43.724-62.539 43.509-62.311Q43.295-62.082 43.199-61.743Q43.103-61.403 43.103-61.098L43.103-59.825Q43.103-59.657 43.330-59.610Q43.556-59.563 43.861-59.563L43.861-59.266M45.209-59.274L45.209-60.496Q45.209-60.524 45.240-60.555Q45.271-60.586 45.295-60.586L45.400-60.586Q45.470-60.586 45.486-60.524Q45.549-60.203 45.687-59.963Q45.826-59.723 46.058-59.582Q46.291-59.442 46.599-59.442Q46.838-59.442 47.047-59.502Q47.256-59.563 47.392-59.711Q47.529-59.860 47.529-60.106Q47.529-60.360 47.318-60.526Q47.107-60.692 46.838-60.746L46.216-60.860Q45.810-60.938 45.509-61.194Q45.209-61.450 45.209-61.825Q45.209-62.192 45.410-62.414Q45.611-62.637 45.935-62.735Q46.259-62.832 46.599-62.832Q47.064-62.832 47.361-62.625L47.584-62.809Q47.607-62.832 47.638-62.832L47.689-62.832Q47.720-62.832 47.748-62.805Q47.775-62.778 47.775-62.746L47.775-61.762Q47.775-61.731 47.750-61.702Q47.724-61.672 47.689-61.672L47.584-61.672Q47.549-61.672 47.521-61.700Q47.494-61.727 47.494-61.762Q47.494-62.161 47.242-62.381Q46.990-62.602 46.591-62.602Q46.236-62.602 45.953-62.479Q45.670-62.356 45.670-62.051Q45.670-61.832 45.871-61.700Q46.072-61.567 46.318-61.524L46.943-61.411Q47.373-61.321 47.681-61.024Q47.990-60.727 47.990-60.313Q47.990-59.743 47.591-59.465Q47.193-59.188 46.599-59.188Q46.049-59.188 45.697-59.524L45.400-59.211Q45.377-59.188 45.341-59.188L45.295-59.188Q45.271-59.188 45.240-59.219Q45.209-59.250 45.209-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(93.894 93.049)\">\u003Cpath d=\"M-3.347-59.266L-5.332-59.266L-5.332-59.563Q-5.058-59.563-4.890-59.610Q-4.722-59.657-4.722-59.825L-4.722-62.418L-5.363-62.418L-5.363-62.715L-4.722-62.715L-4.722-63.649Q-4.722-63.914-4.605-64.151Q-4.488-64.387-4.295-64.551Q-4.101-64.715-3.853-64.807Q-3.605-64.899-3.340-64.899Q-3.054-64.899-2.830-64.741Q-2.605-64.582-2.605-64.305Q-2.605-64.149-2.711-64.039Q-2.816-63.930-2.980-63.930Q-3.136-63.930-3.246-64.039Q-3.355-64.149-3.355-64.305Q-3.355-64.512-3.195-64.618Q-3.293-64.641-3.386-64.641Q-3.617-64.641-3.789-64.485Q-3.961-64.328-4.047-64.092Q-4.132-63.856-4.132-63.633L-4.132-62.715L-3.164-62.715L-3.164-62.418L-4.109-62.418L-4.109-59.825Q-4.109-59.657-3.882-59.610Q-3.656-59.563-3.347-59.563L-3.347-59.266M-2.820-61.020Q-2.820-61.500-2.588-61.916Q-2.355-62.332-1.945-62.582Q-1.535-62.832-1.058-62.832Q-0.328-62.832 0.071-62.391Q0.469-61.950 0.469-61.219Q0.469-61.114 0.375-61.090L-2.074-61.090L-2.074-61.020Q-2.074-60.610-1.953-60.254Q-1.832-59.899-1.560-59.682Q-1.289-59.465-0.859-59.465Q-0.496-59.465-0.199-59.694Q0.098-59.922 0.200-60.274Q0.207-60.321 0.293-60.336L0.375-60.336Q0.469-60.309 0.469-60.227Q0.469-60.219 0.461-60.188Q0.399-59.961 0.260-59.778Q0.121-59.594-0.070-59.461Q-0.261-59.328-0.480-59.258Q-0.699-59.188-0.937-59.188Q-1.308-59.188-1.646-59.325Q-1.984-59.461-2.252-59.713Q-2.519-59.965-2.670-60.305Q-2.820-60.645-2.820-61.020M-2.066-61.328L-0.105-61.328Q-0.105-61.633-0.207-61.924Q-0.308-62.215-0.525-62.397Q-0.742-62.578-1.058-62.578Q-1.359-62.578-1.590-62.391Q-1.820-62.203-1.943-61.912Q-2.066-61.621-2.066-61.328M2.543-59.297L1.473-62.153Q1.407-62.332 1.276-62.375Q1.145-62.418 0.887-62.418L0.887-62.715L2.567-62.715L2.567-62.418Q2.118-62.418 2.118-62.219Q2.121-62.203 2.123-62.186Q2.125-62.168 2.125-62.153L2.918-60.059L3.629-61.969Q3.594-62.063 3.594-62.108Q3.594-62.153 3.559-62.153Q3.493-62.332 3.362-62.375Q3.231-62.418 2.977-62.418L2.977-62.715L4.567-62.715L4.567-62.418Q4.118-62.418 4.118-62.219Q4.121-62.200 4.123-62.182Q4.125-62.164 4.125-62.153L4.957-59.938L5.711-61.938Q5.735-61.996 5.735-62.067Q5.735-62.227 5.598-62.323Q5.461-62.418 5.293-62.418L5.293-62.715L6.680-62.715L6.680-62.418Q6.446-62.418 6.268-62.291Q6.090-62.164 6.008-61.938L5.024-59.297Q4.969-59.188 4.856-59.188L4.797-59.188Q4.684-59.188 4.641-59.297L3.782-61.571L2.926-59.297Q2.887-59.188 2.766-59.188L2.711-59.188Q2.598-59.188 2.543-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 93.049)\">\u003Cpath d=\"M6.864-61.020Q6.864-61.500 7.097-61.916Q7.329-62.332 7.739-62.582Q8.149-62.832 8.626-62.832Q9.356-62.832 9.755-62.391Q10.153-61.950 10.153-61.219Q10.153-61.114 10.060-61.090L7.610-61.090L7.610-61.020Q7.610-60.610 7.731-60.254Q7.853-59.899 8.124-59.682Q8.396-59.465 8.825-59.465Q9.189-59.465 9.485-59.694Q9.782-59.922 9.884-60.274Q9.892-60.321 9.978-60.336L10.060-60.336Q10.153-60.309 10.153-60.227Q10.153-60.219 10.146-60.188Q10.083-59.961 9.944-59.778Q9.806-59.594 9.614-59.461Q9.423-59.328 9.204-59.258Q8.985-59.188 8.747-59.188Q8.376-59.188 8.038-59.325Q7.700-59.461 7.433-59.713Q7.165-59.965 7.015-60.305Q6.864-60.645 6.864-61.020M7.618-61.328L9.579-61.328Q9.579-61.633 9.478-61.924Q9.376-62.215 9.159-62.397Q8.942-62.578 8.626-62.578Q8.325-62.578 8.095-62.391Q7.864-62.203 7.741-61.912Q7.618-61.621 7.618-61.328M12.649-59.266L10.669-59.266L10.669-59.563Q10.939-59.563 11.106-59.608Q11.274-59.653 11.274-59.825L11.274-61.961Q11.274-62.176 11.212-62.272Q11.149-62.368 11.032-62.389Q10.915-62.411 10.669-62.411L10.669-62.707L11.837-62.793L11.837-62.008Q11.915-62.219 12.067-62.405Q12.220-62.590 12.419-62.692Q12.618-62.793 12.845-62.793Q13.091-62.793 13.282-62.649Q13.474-62.504 13.474-62.274Q13.474-62.118 13.368-62.008Q13.263-61.899 13.106-61.899Q12.950-61.899 12.841-62.008Q12.731-62.118 12.731-62.274Q12.731-62.434 12.837-62.539Q12.513-62.539 12.298-62.311Q12.083-62.082 11.987-61.743Q11.892-61.403 11.892-61.098L11.892-59.825Q11.892-59.657 12.118-59.610Q12.345-59.563 12.649-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 93.049)\">\u003Cpath d=\"M18.795-59.266L16.815-59.266L16.815-59.563Q17.084-59.563 17.252-59.608Q17.420-59.653 17.420-59.825L17.420-61.961Q17.420-62.176 17.358-62.272Q17.295-62.368 17.178-62.389Q17.061-62.411 16.815-62.411L16.815-62.707L17.983-62.793L17.983-62.008Q18.061-62.219 18.213-62.405Q18.365-62.590 18.565-62.692Q18.764-62.793 18.990-62.793Q19.236-62.793 19.428-62.649Q19.619-62.504 19.619-62.274Q19.619-62.118 19.514-62.008Q19.408-61.899 19.252-61.899Q19.096-61.899 18.986-62.008Q18.877-62.118 18.877-62.274Q18.877-62.434 18.983-62.539Q18.658-62.539 18.444-62.311Q18.229-62.082 18.133-61.743Q18.037-61.403 18.037-61.098L18.037-59.825Q18.037-59.657 18.264-59.610Q18.490-59.563 18.795-59.563L18.795-59.266M20.100-61.020Q20.100-61.500 20.332-61.916Q20.565-62.332 20.975-62.582Q21.385-62.832 21.861-62.832Q22.592-62.832 22.990-62.391Q23.389-61.950 23.389-61.219Q23.389-61.114 23.295-61.090L20.846-61.090L20.846-61.020Q20.846-60.610 20.967-60.254Q21.088-59.899 21.360-59.682Q21.631-59.465 22.061-59.465Q22.424-59.465 22.721-59.694Q23.018-59.922 23.119-60.274Q23.127-60.321 23.213-60.336L23.295-60.336Q23.389-60.309 23.389-60.227Q23.389-60.219 23.381-60.188Q23.319-59.961 23.180-59.778Q23.041-59.594 22.850-59.461Q22.658-59.328 22.440-59.258Q22.221-59.188 21.983-59.188Q21.611-59.188 21.274-59.325Q20.936-59.461 20.668-59.713Q20.401-59.965 20.250-60.305Q20.100-60.645 20.100-61.020M20.854-61.328L22.815-61.328Q22.815-61.633 22.713-61.924Q22.611-62.215 22.395-62.397Q22.178-62.578 21.861-62.578Q21.561-62.578 21.330-62.391Q21.100-62.203 20.977-61.912Q20.854-61.621 20.854-61.328M23.877-58.657Q23.877-58.938 24.088-59.149Q24.299-59.360 24.584-59.450Q24.428-59.575 24.350-59.764Q24.272-59.953 24.272-60.153Q24.272-60.508 24.502-60.801Q24.135-61.141 24.135-61.610Q24.135-61.961 24.338-62.231Q24.541-62.500 24.861-62.647Q25.182-62.793 25.526-62.793Q26.045-62.793 26.416-62.512Q26.779-62.883 27.326-62.883Q27.506-62.883 27.633-62.756Q27.760-62.629 27.760-62.450Q27.760-62.344 27.682-62.266Q27.604-62.188 27.494-62.188Q27.385-62.188 27.309-62.264Q27.233-62.340 27.233-62.450Q27.233-62.551 27.272-62.602Q27.279-62.610 27.283-62.616Q27.287-62.621 27.287-62.625Q26.912-62.625 26.592-62.371Q26.912-62.032 26.912-61.610Q26.912-61.340 26.795-61.123Q26.678-60.907 26.473-60.748Q26.268-60.590 26.026-60.508Q25.783-60.426 25.526-60.426Q25.307-60.426 25.094-60.485Q24.881-60.543 24.686-60.664Q24.592-60.524 24.592-60.344Q24.592-60.137 24.729-59.985Q24.865-59.832 25.072-59.832L25.768-59.832Q26.256-59.832 26.668-59.748Q27.080-59.664 27.360-59.407Q27.639-59.149 27.639-58.657Q27.639-58.293 27.319-58.061Q26.998-57.828 26.557-57.727Q26.115-57.625 25.760-57.625Q25.404-57.625 24.961-57.727Q24.518-57.828 24.197-58.061Q23.877-58.293 23.877-58.657M24.381-58.657Q24.381-58.461 24.526-58.313Q24.670-58.164 24.883-58.075Q25.096-57.985 25.336-57.938Q25.576-57.891 25.760-57.891Q26.002-57.891 26.332-57.969Q26.662-58.047 26.899-58.221Q27.135-58.395 27.135-58.657Q27.135-59.063 26.725-59.172Q26.315-59.282 25.752-59.282L25.072-59.282Q24.803-59.282 24.592-59.104Q24.381-58.926 24.381-58.657M25.526-60.692Q26.248-60.692 26.248-61.610Q26.248-62.532 25.526-62.532Q24.799-62.532 24.799-61.610Q24.799-60.692 25.526-60.692M29.983-59.266L28.205-59.266L28.205-59.563Q28.479-59.563 28.647-59.610Q28.815-59.657 28.815-59.825L28.815-61.961Q28.815-62.176 28.758-62.272Q28.701-62.368 28.588-62.389Q28.475-62.411 28.229-62.411L28.229-62.707L29.428-62.793L29.428-59.825Q29.428-59.657 29.574-59.610Q29.721-59.563 29.983-59.563L29.983-59.266M28.541-64.188Q28.541-64.379 28.676-64.510Q28.811-64.641 29.006-64.641Q29.127-64.641 29.231-64.578Q29.334-64.516 29.397-64.412Q29.459-64.309 29.459-64.188Q29.459-63.993 29.328-63.858Q29.197-63.723 29.006-63.723Q28.807-63.723 28.674-63.856Q28.541-63.989 28.541-64.188M30.526-59.274L30.526-60.496Q30.526-60.524 30.557-60.555Q30.588-60.586 30.611-60.586L30.717-60.586Q30.787-60.586 30.803-60.524Q30.865-60.203 31.004-59.963Q31.143-59.723 31.375-59.582Q31.608-59.442 31.916-59.442Q32.154-59.442 32.363-59.502Q32.572-59.563 32.709-59.711Q32.846-59.860 32.846-60.106Q32.846-60.360 32.635-60.526Q32.424-60.692 32.154-60.746L31.533-60.860Q31.127-60.938 30.826-61.194Q30.526-61.450 30.526-61.825Q30.526-62.192 30.727-62.414Q30.928-62.637 31.252-62.735Q31.576-62.832 31.916-62.832Q32.381-62.832 32.678-62.625L32.901-62.809Q32.924-62.832 32.955-62.832L33.006-62.832Q33.037-62.832 33.065-62.805Q33.092-62.778 33.092-62.746L33.092-61.762Q33.092-61.731 33.067-61.702Q33.041-61.672 33.006-61.672L32.901-61.672Q32.865-61.672 32.838-61.700Q32.811-61.727 32.811-61.762Q32.811-62.161 32.559-62.381Q32.307-62.602 31.908-62.602Q31.553-62.602 31.270-62.479Q30.986-62.356 30.986-62.051Q30.986-61.832 31.188-61.700Q31.389-61.567 31.635-61.524L32.260-61.411Q32.690-61.321 32.998-61.024Q33.307-60.727 33.307-60.313Q33.307-59.743 32.908-59.465Q32.510-59.188 31.916-59.188Q31.365-59.188 31.014-59.524L30.717-59.211Q30.694-59.188 30.658-59.188L30.611-59.188Q30.588-59.188 30.557-59.219Q30.526-59.250 30.526-59.274M34.459-60.227L34.459-62.418L33.756-62.418L33.756-62.672Q34.111-62.672 34.354-62.905Q34.596-63.137 34.707-63.485Q34.819-63.832 34.819-64.188L35.100-64.188L35.100-62.715L36.276-62.715L36.276-62.418L35.100-62.418L35.100-60.243Q35.100-59.922 35.219-59.694Q35.338-59.465 35.619-59.465Q35.799-59.465 35.916-59.588Q36.033-59.711 36.086-59.891Q36.139-60.071 36.139-60.243L36.139-60.715L36.420-60.715L36.420-60.227Q36.420-59.973 36.315-59.733Q36.209-59.493 36.012-59.340Q35.815-59.188 35.557-59.188Q35.240-59.188 34.988-59.311Q34.736-59.434 34.598-59.668Q34.459-59.903 34.459-60.227M37.139-61.020Q37.139-61.500 37.371-61.916Q37.604-62.332 38.014-62.582Q38.424-62.832 38.901-62.832Q39.631-62.832 40.029-62.391Q40.428-61.950 40.428-61.219Q40.428-61.114 40.334-61.090L37.885-61.090L37.885-61.020Q37.885-60.610 38.006-60.254Q38.127-59.899 38.399-59.682Q38.670-59.465 39.100-59.465Q39.463-59.465 39.760-59.694Q40.057-59.922 40.158-60.274Q40.166-60.321 40.252-60.336L40.334-60.336Q40.428-60.309 40.428-60.227Q40.428-60.219 40.420-60.188Q40.358-59.961 40.219-59.778Q40.080-59.594 39.889-59.461Q39.697-59.328 39.479-59.258Q39.260-59.188 39.022-59.188Q38.651-59.188 38.313-59.325Q37.975-59.461 37.707-59.713Q37.440-59.965 37.289-60.305Q37.139-60.645 37.139-61.020M37.893-61.328L39.854-61.328Q39.854-61.633 39.752-61.924Q39.651-62.215 39.434-62.397Q39.217-62.578 38.901-62.578Q38.600-62.578 38.369-62.391Q38.139-62.203 38.016-61.912Q37.893-61.621 37.893-61.328M42.924-59.266L40.944-59.266L40.944-59.563Q41.213-59.563 41.381-59.608Q41.549-59.653 41.549-59.825L41.549-61.961Q41.549-62.176 41.486-62.272Q41.424-62.368 41.307-62.389Q41.190-62.411 40.944-62.411L40.944-62.707L42.111-62.793L42.111-62.008Q42.190-62.219 42.342-62.405Q42.494-62.590 42.694-62.692Q42.893-62.793 43.119-62.793Q43.365-62.793 43.557-62.649Q43.748-62.504 43.748-62.274Q43.748-62.118 43.643-62.008Q43.537-61.899 43.381-61.899Q43.225-61.899 43.115-62.008Q43.006-62.118 43.006-62.274Q43.006-62.434 43.111-62.539Q42.787-62.539 42.572-62.311Q42.358-62.082 42.262-61.743Q42.166-61.403 42.166-61.098L42.166-59.825Q42.166-59.657 42.393-59.610Q42.619-59.563 42.924-59.563L42.924-59.266M44.272-59.274L44.272-60.496Q44.272-60.524 44.303-60.555Q44.334-60.586 44.358-60.586L44.463-60.586Q44.533-60.586 44.549-60.524Q44.611-60.203 44.750-59.963Q44.889-59.723 45.121-59.582Q45.354-59.442 45.662-59.442Q45.901-59.442 46.110-59.502Q46.319-59.563 46.455-59.711Q46.592-59.860 46.592-60.106Q46.592-60.360 46.381-60.526Q46.170-60.692 45.901-60.746L45.279-60.860Q44.873-60.938 44.572-61.194Q44.272-61.450 44.272-61.825Q44.272-62.192 44.473-62.414Q44.674-62.637 44.998-62.735Q45.322-62.832 45.662-62.832Q46.127-62.832 46.424-62.625L46.647-62.809Q46.670-62.832 46.701-62.832L46.752-62.832Q46.783-62.832 46.811-62.805Q46.838-62.778 46.838-62.746L46.838-61.762Q46.838-61.731 46.813-61.702Q46.787-61.672 46.752-61.672L46.647-61.672Q46.611-61.672 46.584-61.700Q46.557-61.727 46.557-61.762Q46.557-62.161 46.305-62.381Q46.053-62.602 45.654-62.602Q45.299-62.602 45.016-62.479Q44.733-62.356 44.733-62.051Q44.733-61.832 44.934-61.700Q45.135-61.567 45.381-61.524L46.006-61.411Q46.436-61.321 46.744-61.024Q47.053-60.727 47.053-60.313Q47.053-59.743 46.654-59.465Q46.256-59.188 45.662-59.188Q45.111-59.188 44.760-59.524L44.463-59.211Q44.440-59.188 44.404-59.188L44.358-59.188Q44.334-59.188 44.303-59.219Q44.272-59.250 44.272-59.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-54.06 114.388)\">\u003Cpath d=\"M-5.371-60.993Q-5.371-61.489-5.121-61.914Q-4.871-62.340-4.451-62.586Q-4.031-62.832-3.531-62.832Q-2.992-62.832-2.601-62.707Q-2.211-62.582-2.211-62.168Q-2.211-62.063-2.261-61.971Q-2.312-61.879-2.404-61.828Q-2.496-61.778-2.605-61.778Q-2.711-61.778-2.802-61.828Q-2.894-61.879-2.945-61.971Q-2.996-62.063-2.996-62.168Q-2.996-62.391-2.828-62.496Q-3.050-62.555-3.523-62.555Q-3.820-62.555-4.035-62.416Q-4.250-62.278-4.381-62.047Q-4.511-61.817-4.570-61.547Q-4.629-61.278-4.629-60.993Q-4.629-60.598-4.496-60.248Q-4.363-59.899-4.091-59.682Q-3.820-59.465-3.422-59.465Q-3.047-59.465-2.771-59.682Q-2.496-59.899-2.394-60.258Q-2.379-60.321-2.316-60.321L-2.211-60.321Q-2.175-60.321-2.150-60.293Q-2.125-60.266-2.125-60.227L-2.125-60.203Q-2.257-59.723-2.642-59.455Q-3.027-59.188-3.531-59.188Q-3.894-59.188-4.228-59.325Q-4.562-59.461-4.822-59.711Q-5.082-59.961-5.226-60.297Q-5.371-60.633-5.371-60.993M-1.636-60.961Q-1.636-61.465-1.381-61.897Q-1.125-62.328-0.689-62.580Q-0.254-62.832 0.246-62.832Q0.633-62.832 0.975-62.688Q1.317-62.543 1.578-62.282Q1.840-62.020 1.983-61.684Q2.125-61.348 2.125-60.961Q2.125-60.469 1.862-60.059Q1.598-59.649 1.168-59.418Q0.739-59.188 0.246-59.188Q-0.246-59.188-0.679-59.420Q-1.113-59.653-1.375-60.061Q-1.636-60.469-1.636-60.961M0.246-59.465Q0.703-59.465 0.955-59.688Q1.207-59.911 1.295-60.262Q1.383-60.614 1.383-61.059Q1.383-61.489 1.289-61.827Q1.196-62.164 0.942-62.371Q0.688-62.578 0.246-62.578Q-0.402-62.578-0.646-62.162Q-0.890-61.746-0.890-61.059Q-0.890-60.614-0.802-60.262Q-0.715-59.911-0.463-59.688Q-0.211-59.465 0.246-59.465M4.539-59.266L2.684-59.266L2.684-59.563Q2.957-59.563 3.125-59.610Q3.293-59.657 3.293-59.825L3.293-61.961Q3.293-62.176 3.231-62.272Q3.168-62.368 3.049-62.389Q2.930-62.411 2.684-62.411L2.684-62.707L3.875-62.793L3.875-62.059Q3.989-62.274 4.182-62.442Q4.375-62.610 4.614-62.702Q4.852-62.793 5.106-62.793Q6.067-62.793 6.243-62.082Q6.426-62.411 6.754-62.602Q7.082-62.793 7.461-62.793Q8.637-62.793 8.637-61.715L8.637-59.825Q8.637-59.657 8.805-59.610Q8.973-59.563 9.243-59.563L9.243-59.266L7.387-59.266L7.387-59.563Q7.660-59.563 7.828-59.608Q7.996-59.653 7.996-59.825L7.996-61.700Q7.996-62.086 7.871-62.313Q7.746-62.539 7.395-62.539Q7.090-62.539 6.834-62.377Q6.578-62.215 6.430-61.946Q6.282-61.676 6.282-61.379L6.282-59.825Q6.282-59.657 6.452-59.610Q6.621-59.563 6.891-59.563L6.891-59.266L5.035-59.266L5.035-59.563Q5.309-59.563 5.477-59.610Q5.645-59.657 5.645-59.825L5.645-61.700Q5.645-62.086 5.520-62.313Q5.395-62.539 5.043-62.539Q4.739-62.539 4.483-62.377Q4.227-62.215 4.078-61.946Q3.930-61.676 3.930-61.379L3.930-59.825Q3.930-59.657 4.100-59.610Q4.270-59.563 4.539-59.563L4.539-59.266M11.571-57.715L9.715-57.715L9.715-58.008Q9.985-58.008 10.153-58.053Q10.321-58.098 10.321-58.274L10.321-62.098Q10.321-62.305 10.164-62.358Q10.008-62.411 9.715-62.411L9.715-62.707L10.938-62.793L10.938-62.328Q11.168-62.551 11.483-62.672Q11.797-62.793 12.137-62.793Q12.610-62.793 13.014-62.547Q13.418-62.301 13.651-61.885Q13.883-61.469 13.883-60.993Q13.883-60.618 13.735-60.289Q13.586-59.961 13.317-59.709Q13.047-59.457 12.703-59.323Q12.360-59.188 12-59.188Q11.711-59.188 11.440-59.309Q11.168-59.430 10.961-59.641L10.961-58.274Q10.961-58.098 11.129-58.053Q11.297-58.008 11.571-58.008L11.571-57.715M10.961-61.930L10.961-60.090Q11.114-59.801 11.375-59.621Q11.637-59.442 11.946-59.442Q12.231-59.442 12.453-59.580Q12.676-59.719 12.828-59.950Q12.981-60.180 13.059-60.452Q13.137-60.723 13.137-60.993Q13.137-61.325 13.012-61.682Q12.887-62.039 12.639-62.276Q12.391-62.512 12.043-62.512Q11.719-62.512 11.424-62.356Q11.129-62.200 10.961-61.930M16.321-59.266L14.489-59.266L14.489-59.563Q14.762-59.563 14.930-59.610Q15.098-59.657 15.098-59.825L15.098-63.985Q15.098-64.200 15.035-64.295Q14.973-64.391 14.854-64.412Q14.735-64.434 14.489-64.434L14.489-64.731L15.711-64.817L15.711-59.825Q15.711-59.657 15.879-59.610Q16.047-59.563 16.321-59.563L16.321-59.266M16.766-61.020Q16.766-61.500 16.998-61.916Q17.231-62.332 17.641-62.582Q18.051-62.832 18.528-62.832Q19.258-62.832 19.657-62.391Q20.055-61.950 20.055-61.219Q20.055-61.114 19.961-61.090L17.512-61.090L17.512-61.020Q17.512-60.610 17.633-60.254Q17.754-59.899 18.026-59.682Q18.297-59.465 18.727-59.465Q19.090-59.465 19.387-59.694Q19.684-59.922 19.785-60.274Q19.793-60.321 19.879-60.336L19.961-60.336Q20.055-60.309 20.055-60.227Q20.055-60.219 20.047-60.188Q19.985-59.961 19.846-59.778Q19.707-59.594 19.516-59.461Q19.325-59.328 19.106-59.258Q18.887-59.188 18.649-59.188Q18.278-59.188 17.940-59.325Q17.602-59.461 17.334-59.713Q17.067-59.965 16.916-60.305Q16.766-60.645 16.766-61.020M17.520-61.328L19.481-61.328Q19.481-61.633 19.379-61.924Q19.278-62.215 19.061-62.397Q18.844-62.578 18.528-62.578Q18.227-62.578 17.996-62.391Q17.766-62.203 17.643-61.912Q17.520-61.621 17.520-61.328M21.930-59.266L20.434-59.266L20.434-59.563Q21.067-59.563 21.489-60.043L22.258-60.953L21.266-62.153Q21.110-62.332 20.948-62.375Q20.785-62.418 20.481-62.418L20.481-62.715L22.168-62.715L22.168-62.418Q22.075-62.418 21.998-62.375Q21.922-62.332 21.922-62.243Q21.922-62.200 21.953-62.153L22.610-61.364L23.090-61.938Q23.207-62.075 23.207-62.211Q23.207-62.301 23.157-62.360Q23.106-62.418 23.024-62.418L23.024-62.715L24.512-62.715L24.512-62.418Q23.875-62.418 23.465-61.938L22.785-61.137L23.871-59.825Q24.032-59.649 24.192-59.606Q24.352-59.563 24.657-59.563L24.657-59.266L22.969-59.266L22.969-59.563Q23.059-59.563 23.137-59.606Q23.215-59.649 23.215-59.739Q23.215-59.762 23.184-59.825L22.442-60.731L21.856-60.043Q21.739-59.907 21.739-59.770Q21.739-59.684 21.789-59.623Q21.840-59.563 21.930-59.563L21.930-59.266M26.883-59.266L25.106-59.266L25.106-59.563Q25.379-59.563 25.547-59.610Q25.715-59.657 25.715-59.825L25.715-61.961Q25.715-62.176 25.659-62.272Q25.602-62.368 25.489-62.389Q25.375-62.411 25.129-62.411L25.129-62.707L26.328-62.793L26.328-59.825Q26.328-59.657 26.475-59.610Q26.621-59.563 26.883-59.563L26.883-59.266M25.442-64.188Q25.442-64.379 25.577-64.510Q25.711-64.641 25.907-64.641Q26.028-64.641 26.131-64.578Q26.235-64.516 26.297-64.412Q26.360-64.309 26.360-64.188Q26.360-63.993 26.229-63.858Q26.098-63.723 25.907-63.723Q25.707-63.723 25.575-63.856Q25.442-63.989 25.442-64.188M28.008-60.227L28.008-62.418L27.305-62.418L27.305-62.672Q27.660-62.672 27.903-62.905Q28.145-63.137 28.256-63.485Q28.368-63.832 28.368-64.188L28.649-64.188L28.649-62.715L29.825-62.715L29.825-62.418L28.649-62.418L28.649-60.243Q28.649-59.922 28.768-59.694Q28.887-59.465 29.168-59.465Q29.348-59.465 29.465-59.588Q29.582-59.711 29.635-59.891Q29.688-60.071 29.688-60.243L29.688-60.715L29.969-60.715L29.969-60.227Q29.969-59.973 29.864-59.733Q29.758-59.493 29.561-59.340Q29.364-59.188 29.106-59.188Q28.789-59.188 28.537-59.311Q28.285-59.434 28.147-59.668Q28.008-59.903 28.008-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 114.388)\">\u003Cpath d=\"M30.893-57.969Q31.007-57.891 31.182-57.891Q31.471-57.891 31.692-58.104Q31.913-58.317 32.038-58.618L32.327-59.266L31.053-62.153Q30.971-62.328 30.827-62.373Q30.682-62.418 30.413-62.418L30.413-62.715L32.132-62.715L32.132-62.418Q31.710-62.418 31.710-62.235Q31.710-62.223 31.725-62.153L32.663-60.028L33.495-61.938Q33.534-62.028 33.534-62.106Q33.534-62.246 33.432-62.332Q33.331-62.418 33.190-62.418L33.190-62.715L34.542-62.715L34.542-62.418Q34.288-62.418 34.094-62.293Q33.901-62.168 33.796-61.938L32.350-58.618Q32.237-58.364 32.071-58.141Q31.905-57.918 31.676-57.776Q31.448-57.633 31.182-57.633Q30.885-57.633 30.645-57.825Q30.405-58.016 30.405-58.305Q30.405-58.461 30.510-58.563Q30.616-58.664 30.764-58.664Q30.870-58.664 30.950-58.618Q31.030-58.571 31.077-58.493Q31.124-58.414 31.124-58.305Q31.124-58.184 31.063-58.096Q31.003-58.008 30.893-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 114.388)\">\u003Cpath d=\"M39.654-59.266L37.876-59.266L37.876-59.563Q38.150-59.563 38.318-59.610Q38.486-59.657 38.486-59.825L38.486-61.961Q38.486-62.176 38.429-62.272Q38.372-62.368 38.259-62.389Q38.146-62.411 37.900-62.411L37.900-62.707L39.099-62.793L39.099-59.825Q39.099-59.657 39.245-59.610Q39.392-59.563 39.654-59.563L39.654-59.266M38.212-64.188Q38.212-64.379 38.347-64.510Q38.482-64.641 38.677-64.641Q38.798-64.641 38.902-64.578Q39.005-64.516 39.068-64.412Q39.130-64.309 39.130-64.188Q39.130-63.993 38.999-63.858Q38.868-63.723 38.677-63.723Q38.478-63.723 38.345-63.856Q38.212-63.989 38.212-64.188M42.083-59.266L40.228-59.266L40.228-59.563Q40.501-59.563 40.669-59.610Q40.837-59.657 40.837-59.825L40.837-61.961Q40.837-62.176 40.775-62.272Q40.712-62.368 40.593-62.389Q40.474-62.411 40.228-62.411L40.228-62.707L41.419-62.793L41.419-62.059Q41.533-62.274 41.726-62.442Q41.919-62.610 42.158-62.702Q42.396-62.793 42.650-62.793Q43.818-62.793 43.818-61.715L43.818-59.825Q43.818-59.657 43.988-59.610Q44.158-59.563 44.427-59.563L44.427-59.266L42.572-59.266L42.572-59.563Q42.845-59.563 43.013-59.610Q43.181-59.657 43.181-59.825L43.181-61.700Q43.181-62.082 43.060-62.311Q42.939-62.539 42.587-62.539Q42.275-62.539 42.021-62.377Q41.767-62.215 41.620-61.946Q41.474-61.676 41.474-61.379L41.474-59.825Q41.474-59.657 41.644-59.610Q41.814-59.563 42.083-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-54.06 114.388)\">\u003Cpath d=\"M47.754-60.993Q47.754-61.489 48.004-61.914Q48.254-62.340 48.674-62.586Q49.094-62.832 49.594-62.832Q50.133-62.832 50.524-62.707Q50.914-62.582 50.914-62.168Q50.914-62.063 50.864-61.971Q50.813-61.879 50.721-61.828Q50.629-61.778 50.520-61.778Q50.414-61.778 50.323-61.828Q50.231-61.879 50.180-61.971Q50.129-62.063 50.129-62.168Q50.129-62.391 50.297-62.496Q50.075-62.555 49.602-62.555Q49.305-62.555 49.090-62.416Q48.875-62.278 48.744-62.047Q48.614-61.817 48.555-61.547Q48.496-61.278 48.496-60.993Q48.496-60.598 48.629-60.248Q48.762-59.899 49.034-59.682Q49.305-59.465 49.703-59.465Q50.078-59.465 50.354-59.682Q50.629-59.899 50.731-60.258Q50.746-60.321 50.809-60.321L50.914-60.321Q50.950-60.321 50.975-60.293Q51-60.266 51-60.227L51-60.203Q50.868-59.723 50.483-59.455Q50.098-59.188 49.594-59.188Q49.231-59.188 48.897-59.325Q48.563-59.461 48.303-59.711Q48.043-59.961 47.899-60.297Q47.754-60.633 47.754-60.993M51.489-60.961Q51.489-61.465 51.744-61.897Q52-62.328 52.436-62.580Q52.871-62.832 53.371-62.832Q53.758-62.832 54.100-62.688Q54.442-62.543 54.703-62.282Q54.965-62.020 55.108-61.684Q55.250-61.348 55.250-60.961Q55.250-60.469 54.987-60.059Q54.723-59.649 54.293-59.418Q53.864-59.188 53.371-59.188Q52.879-59.188 52.446-59.420Q52.012-59.653 51.750-60.061Q51.489-60.469 51.489-60.961M53.371-59.465Q53.828-59.465 54.080-59.688Q54.332-59.911 54.420-60.262Q54.508-60.614 54.508-61.059Q54.508-61.489 54.414-61.827Q54.321-62.164 54.067-62.371Q53.813-62.578 53.371-62.578Q52.723-62.578 52.479-62.162Q52.235-61.746 52.235-61.059Q52.235-60.614 52.323-60.262Q52.410-59.911 52.662-59.688Q52.914-59.465 53.371-59.465M57.664-59.266L55.809-59.266L55.809-59.563Q56.082-59.563 56.250-59.610Q56.418-59.657 56.418-59.825L56.418-61.961Q56.418-62.176 56.356-62.272Q56.293-62.368 56.174-62.389Q56.055-62.411 55.809-62.411L55.809-62.707L57-62.793L57-62.059Q57.114-62.274 57.307-62.442Q57.500-62.610 57.739-62.702Q57.977-62.793 58.231-62.793Q59.192-62.793 59.368-62.082Q59.551-62.411 59.879-62.602Q60.207-62.793 60.586-62.793Q61.762-62.793 61.762-61.715L61.762-59.825Q61.762-59.657 61.930-59.610Q62.098-59.563 62.368-59.563L62.368-59.266L60.512-59.266L60.512-59.563Q60.785-59.563 60.953-59.608Q61.121-59.653 61.121-59.825L61.121-61.700Q61.121-62.086 60.996-62.313Q60.871-62.539 60.520-62.539Q60.215-62.539 59.959-62.377Q59.703-62.215 59.555-61.946Q59.407-61.676 59.407-61.379L59.407-59.825Q59.407-59.657 59.577-59.610Q59.746-59.563 60.016-59.563L60.016-59.266L58.160-59.266L58.160-59.563Q58.434-59.563 58.602-59.610Q58.770-59.657 58.770-59.825L58.770-61.700Q58.770-62.086 58.645-62.313Q58.520-62.539 58.168-62.539Q57.864-62.539 57.608-62.377Q57.352-62.215 57.203-61.946Q57.055-61.676 57.055-61.379L57.055-59.825Q57.055-59.657 57.225-59.610Q57.395-59.563 57.664-59.563L57.664-59.266M64.696-57.715L62.840-57.715L62.840-58.008Q63.110-58.008 63.278-58.053Q63.446-58.098 63.446-58.274L63.446-62.098Q63.446-62.305 63.289-62.358Q63.133-62.411 62.840-62.411L62.840-62.707L64.063-62.793L64.063-62.328Q64.293-62.551 64.608-62.672Q64.922-62.793 65.262-62.793Q65.735-62.793 66.139-62.547Q66.543-62.301 66.776-61.885Q67.008-61.469 67.008-60.993Q67.008-60.618 66.860-60.289Q66.711-59.961 66.442-59.709Q66.172-59.457 65.828-59.323Q65.485-59.188 65.125-59.188Q64.836-59.188 64.565-59.309Q64.293-59.430 64.086-59.641L64.086-58.274Q64.086-58.098 64.254-58.053Q64.422-58.008 64.696-58.008L64.696-57.715M64.086-61.930L64.086-60.090Q64.239-59.801 64.500-59.621Q64.762-59.442 65.071-59.442Q65.356-59.442 65.578-59.580Q65.801-59.719 65.953-59.950Q66.106-60.180 66.184-60.452Q66.262-60.723 66.262-60.993Q66.262-61.325 66.137-61.682Q66.012-62.039 65.764-62.276Q65.516-62.512 65.168-62.512Q64.844-62.512 64.549-62.356Q64.254-62.200 64.086-61.930M69.391-59.266L67.614-59.266L67.614-59.563Q67.887-59.563 68.055-59.610Q68.223-59.657 68.223-59.825L68.223-61.961Q68.223-62.176 68.166-62.272Q68.110-62.368 67.996-62.389Q67.883-62.411 67.637-62.411L67.637-62.707L68.836-62.793L68.836-59.825Q68.836-59.657 68.983-59.610Q69.129-59.563 69.391-59.563L69.391-59.266M67.950-64.188Q67.950-64.379 68.084-64.510Q68.219-64.641 68.414-64.641Q68.535-64.641 68.639-64.578Q68.743-64.516 68.805-64.412Q68.868-64.309 68.868-64.188Q68.868-63.993 68.737-63.858Q68.606-63.723 68.414-63.723Q68.215-63.723 68.082-63.856Q67.950-63.989 67.950-64.188M71.805-59.266L69.973-59.266L69.973-59.563Q70.246-59.563 70.414-59.610Q70.582-59.657 70.582-59.825L70.582-63.985Q70.582-64.200 70.520-64.295Q70.457-64.391 70.338-64.412Q70.219-64.434 69.973-64.434L69.973-64.731L71.196-64.817L71.196-59.825Q71.196-59.657 71.364-59.610Q71.532-59.563 71.805-59.563L71.805-59.266M72.250-61.020Q72.250-61.500 72.483-61.916Q72.715-62.332 73.125-62.582Q73.535-62.832 74.012-62.832Q74.743-62.832 75.141-62.391Q75.539-61.950 75.539-61.219Q75.539-61.114 75.446-61.090L72.996-61.090L72.996-61.020Q72.996-60.610 73.118-60.254Q73.239-59.899 73.510-59.682Q73.782-59.465 74.211-59.465Q74.575-59.465 74.871-59.694Q75.168-59.922 75.270-60.274Q75.278-60.321 75.364-60.336L75.446-60.336Q75.539-60.309 75.539-60.227Q75.539-60.219 75.532-60.188Q75.469-59.961 75.330-59.778Q75.192-59.594 75-59.461Q74.809-59.328 74.590-59.258Q74.371-59.188 74.133-59.188Q73.762-59.188 73.424-59.325Q73.086-59.461 72.819-59.713Q72.551-59.965 72.401-60.305Q72.250-60.645 72.250-61.020M73.004-61.328L74.965-61.328Q74.965-61.633 74.864-61.924Q74.762-62.215 74.545-62.397Q74.328-62.578 74.012-62.578Q73.711-62.578 73.481-62.391Q73.250-62.203 73.127-61.912Q73.004-61.621 73.004-61.328M78.035-59.266L76.055-59.266L76.055-59.563Q76.325-59.563 76.493-59.608Q76.660-59.653 76.660-59.825L76.660-61.961Q76.660-62.176 76.598-62.272Q76.535-62.368 76.418-62.389Q76.301-62.411 76.055-62.411L76.055-62.707L77.223-62.793L77.223-62.008Q77.301-62.219 77.453-62.405Q77.606-62.590 77.805-62.692Q78.004-62.793 78.231-62.793Q78.477-62.793 78.668-62.649Q78.860-62.504 78.860-62.274Q78.860-62.118 78.754-62.008Q78.649-61.899 78.493-61.899Q78.336-61.899 78.227-62.008Q78.118-62.118 78.118-62.274Q78.118-62.434 78.223-62.539Q77.899-62.539 77.684-62.311Q77.469-62.082 77.373-61.743Q77.278-61.403 77.278-61.098L77.278-59.825Q77.278-59.657 77.504-59.610Q77.731-59.563 78.035-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(93.894 114.388)\">\u003Cpath d=\"M-5.371-60.993Q-5.371-61.489-5.121-61.914Q-4.871-62.340-4.451-62.586Q-4.031-62.832-3.531-62.832Q-2.992-62.832-2.601-62.707Q-2.211-62.582-2.211-62.168Q-2.211-62.063-2.261-61.971Q-2.312-61.879-2.404-61.828Q-2.496-61.778-2.605-61.778Q-2.711-61.778-2.802-61.828Q-2.894-61.879-2.945-61.971Q-2.996-62.063-2.996-62.168Q-2.996-62.391-2.828-62.496Q-3.050-62.555-3.523-62.555Q-3.820-62.555-4.035-62.416Q-4.250-62.278-4.381-62.047Q-4.511-61.817-4.570-61.547Q-4.629-61.278-4.629-60.993Q-4.629-60.598-4.496-60.248Q-4.363-59.899-4.091-59.682Q-3.820-59.465-3.422-59.465Q-3.047-59.465-2.771-59.682Q-2.496-59.899-2.394-60.258Q-2.379-60.321-2.316-60.321L-2.211-60.321Q-2.175-60.321-2.150-60.293Q-2.125-60.266-2.125-60.227L-2.125-60.203Q-2.257-59.723-2.642-59.455Q-3.027-59.188-3.531-59.188Q-3.894-59.188-4.228-59.325Q-4.562-59.461-4.822-59.711Q-5.082-59.961-5.226-60.297Q-5.371-60.633-5.371-60.993M-1.636-60.961Q-1.636-61.465-1.381-61.897Q-1.125-62.328-0.689-62.580Q-0.254-62.832 0.246-62.832Q0.633-62.832 0.975-62.688Q1.317-62.543 1.578-62.282Q1.840-62.020 1.983-61.684Q2.125-61.348 2.125-60.961Q2.125-60.469 1.862-60.059Q1.598-59.649 1.168-59.418Q0.739-59.188 0.246-59.188Q-0.246-59.188-0.679-59.420Q-1.113-59.653-1.375-60.061Q-1.636-60.469-1.636-60.961M0.246-59.465Q0.703-59.465 0.955-59.688Q1.207-59.911 1.295-60.262Q1.383-60.614 1.383-61.059Q1.383-61.489 1.289-61.827Q1.196-62.164 0.942-62.371Q0.688-62.578 0.246-62.578Q-0.402-62.578-0.646-62.162Q-0.890-61.746-0.890-61.059Q-0.890-60.614-0.802-60.262Q-0.715-59.911-0.463-59.688Q-0.211-59.465 0.246-59.465M4.539-59.266L2.684-59.266L2.684-59.563Q2.957-59.563 3.125-59.610Q3.293-59.657 3.293-59.825L3.293-61.961Q3.293-62.176 3.231-62.272Q3.168-62.368 3.049-62.389Q2.930-62.411 2.684-62.411L2.684-62.707L3.875-62.793L3.875-62.059Q3.989-62.274 4.182-62.442Q4.375-62.610 4.614-62.702Q4.852-62.793 5.106-62.793Q6.067-62.793 6.243-62.082Q6.426-62.411 6.754-62.602Q7.082-62.793 7.461-62.793Q8.637-62.793 8.637-61.715L8.637-59.825Q8.637-59.657 8.805-59.610Q8.973-59.563 9.243-59.563L9.243-59.266L7.387-59.266L7.387-59.563Q7.660-59.563 7.828-59.608Q7.996-59.653 7.996-59.825L7.996-61.700Q7.996-62.086 7.871-62.313Q7.746-62.539 7.395-62.539Q7.090-62.539 6.834-62.377Q6.578-62.215 6.430-61.946Q6.282-61.676 6.282-61.379L6.282-59.825Q6.282-59.657 6.452-59.610Q6.621-59.563 6.891-59.563L6.891-59.266L5.035-59.266L5.035-59.563Q5.309-59.563 5.477-59.610Q5.645-59.657 5.645-59.825L5.645-61.700Q5.645-62.086 5.520-62.313Q5.395-62.539 5.043-62.539Q4.739-62.539 4.483-62.377Q4.227-62.215 4.078-61.946Q3.930-61.676 3.930-61.379L3.930-59.825Q3.930-59.657 4.100-59.610Q4.270-59.563 4.539-59.563L4.539-59.266M11.571-57.715L9.715-57.715L9.715-58.008Q9.985-58.008 10.153-58.053Q10.321-58.098 10.321-58.274L10.321-62.098Q10.321-62.305 10.164-62.358Q10.008-62.411 9.715-62.411L9.715-62.707L10.938-62.793L10.938-62.328Q11.168-62.551 11.483-62.672Q11.797-62.793 12.137-62.793Q12.610-62.793 13.014-62.547Q13.418-62.301 13.651-61.885Q13.883-61.469 13.883-60.993Q13.883-60.618 13.735-60.289Q13.586-59.961 13.317-59.709Q13.047-59.457 12.703-59.323Q12.360-59.188 12-59.188Q11.711-59.188 11.440-59.309Q11.168-59.430 10.961-59.641L10.961-58.274Q10.961-58.098 11.129-58.053Q11.297-58.008 11.571-58.008L11.571-57.715M10.961-61.930L10.961-60.090Q11.114-59.801 11.375-59.621Q11.637-59.442 11.946-59.442Q12.231-59.442 12.453-59.580Q12.676-59.719 12.828-59.950Q12.981-60.180 13.059-60.452Q13.137-60.723 13.137-60.993Q13.137-61.325 13.012-61.682Q12.887-62.039 12.639-62.276Q12.391-62.512 12.043-62.512Q11.719-62.512 11.424-62.356Q11.129-62.200 10.961-61.930M16.321-59.266L14.489-59.266L14.489-59.563Q14.762-59.563 14.930-59.610Q15.098-59.657 15.098-59.825L15.098-63.985Q15.098-64.200 15.035-64.295Q14.973-64.391 14.854-64.412Q14.735-64.434 14.489-64.434L14.489-64.731L15.711-64.817L15.711-59.825Q15.711-59.657 15.879-59.610Q16.047-59.563 16.321-59.563L16.321-59.266M16.766-61.020Q16.766-61.500 16.998-61.916Q17.231-62.332 17.641-62.582Q18.051-62.832 18.528-62.832Q19.258-62.832 19.657-62.391Q20.055-61.950 20.055-61.219Q20.055-61.114 19.961-61.090L17.512-61.090L17.512-61.020Q17.512-60.610 17.633-60.254Q17.754-59.899 18.026-59.682Q18.297-59.465 18.727-59.465Q19.090-59.465 19.387-59.694Q19.684-59.922 19.785-60.274Q19.793-60.321 19.879-60.336L19.961-60.336Q20.055-60.309 20.055-60.227Q20.055-60.219 20.047-60.188Q19.985-59.961 19.846-59.778Q19.707-59.594 19.516-59.461Q19.325-59.328 19.106-59.258Q18.887-59.188 18.649-59.188Q18.278-59.188 17.940-59.325Q17.602-59.461 17.334-59.713Q17.067-59.965 16.916-60.305Q16.766-60.645 16.766-61.020M17.520-61.328L19.481-61.328Q19.481-61.633 19.379-61.924Q19.278-62.215 19.061-62.397Q18.844-62.578 18.528-62.578Q18.227-62.578 17.996-62.391Q17.766-62.203 17.643-61.912Q17.520-61.621 17.520-61.328M21.930-59.266L20.434-59.266L20.434-59.563Q21.067-59.563 21.489-60.043L22.258-60.953L21.266-62.153Q21.110-62.332 20.948-62.375Q20.785-62.418 20.481-62.418L20.481-62.715L22.168-62.715L22.168-62.418Q22.075-62.418 21.998-62.375Q21.922-62.332 21.922-62.243Q21.922-62.200 21.953-62.153L22.610-61.364L23.090-61.938Q23.207-62.075 23.207-62.211Q23.207-62.301 23.157-62.360Q23.106-62.418 23.024-62.418L23.024-62.715L24.512-62.715L24.512-62.418Q23.875-62.418 23.465-61.938L22.785-61.137L23.871-59.825Q24.032-59.649 24.192-59.606Q24.352-59.563 24.657-59.563L24.657-59.266L22.969-59.266L22.969-59.563Q23.059-59.563 23.137-59.606Q23.215-59.649 23.215-59.739Q23.215-59.762 23.184-59.825L22.442-60.731L21.856-60.043Q21.739-59.907 21.739-59.770Q21.739-59.684 21.789-59.623Q21.840-59.563 21.930-59.563L21.930-59.266M26.883-59.266L25.106-59.266L25.106-59.563Q25.379-59.563 25.547-59.610Q25.715-59.657 25.715-59.825L25.715-61.961Q25.715-62.176 25.659-62.272Q25.602-62.368 25.489-62.389Q25.375-62.411 25.129-62.411L25.129-62.707L26.328-62.793L26.328-59.825Q26.328-59.657 26.475-59.610Q26.621-59.563 26.883-59.563L26.883-59.266M25.442-64.188Q25.442-64.379 25.577-64.510Q25.711-64.641 25.907-64.641Q26.028-64.641 26.131-64.578Q26.235-64.516 26.297-64.412Q26.360-64.309 26.360-64.188Q26.360-63.993 26.229-63.858Q26.098-63.723 25.907-63.723Q25.707-63.723 25.575-63.856Q25.442-63.989 25.442-64.188M28.008-60.227L28.008-62.418L27.305-62.418L27.305-62.672Q27.660-62.672 27.903-62.905Q28.145-63.137 28.256-63.485Q28.368-63.832 28.368-64.188L28.649-64.188L28.649-62.715L29.825-62.715L29.825-62.418L28.649-62.418L28.649-60.243Q28.649-59.922 28.768-59.694Q28.887-59.465 29.168-59.465Q29.348-59.465 29.465-59.588Q29.582-59.711 29.635-59.891Q29.688-60.071 29.688-60.243L29.688-60.715L29.969-60.715L29.969-60.227Q29.969-59.973 29.864-59.733Q29.758-59.493 29.561-59.340Q29.364-59.188 29.106-59.188Q28.789-59.188 28.537-59.311Q28.285-59.434 28.147-59.668Q28.008-59.903 28.008-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 114.388)\">\u003Cpath d=\"M30.893-57.969Q31.007-57.891 31.182-57.891Q31.471-57.891 31.692-58.104Q31.913-58.317 32.038-58.618L32.327-59.266L31.053-62.153Q30.971-62.328 30.827-62.373Q30.682-62.418 30.413-62.418L30.413-62.715L32.132-62.715L32.132-62.418Q31.710-62.418 31.710-62.235Q31.710-62.223 31.725-62.153L32.663-60.028L33.495-61.938Q33.534-62.028 33.534-62.106Q33.534-62.246 33.432-62.332Q33.331-62.418 33.190-62.418L33.190-62.715L34.542-62.715L34.542-62.418Q34.288-62.418 34.094-62.293Q33.901-62.168 33.796-61.938L32.350-58.618Q32.237-58.364 32.071-58.141Q31.905-57.918 31.676-57.776Q31.448-57.633 31.182-57.633Q30.885-57.633 30.645-57.825Q30.405-58.016 30.405-58.305Q30.405-58.461 30.510-58.563Q30.616-58.664 30.764-58.664Q30.870-58.664 30.950-58.618Q31.030-58.571 31.077-58.493Q31.124-58.414 31.124-58.305Q31.124-58.184 31.063-58.096Q31.003-58.008 30.893-57.969\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 114.388)\">\u003Cpath d=\"M39.654-59.266L37.876-59.266L37.876-59.563Q38.150-59.563 38.318-59.610Q38.486-59.657 38.486-59.825L38.486-61.961Q38.486-62.176 38.429-62.272Q38.372-62.368 38.259-62.389Q38.146-62.411 37.900-62.411L37.900-62.707L39.099-62.793L39.099-59.825Q39.099-59.657 39.245-59.610Q39.392-59.563 39.654-59.563L39.654-59.266M38.212-64.188Q38.212-64.379 38.347-64.510Q38.482-64.641 38.677-64.641Q38.798-64.641 38.902-64.578Q39.005-64.516 39.068-64.412Q39.130-64.309 39.130-64.188Q39.130-63.993 38.999-63.858Q38.868-63.723 38.677-63.723Q38.478-63.723 38.345-63.856Q38.212-63.989 38.212-64.188M42.083-59.266L40.228-59.266L40.228-59.563Q40.501-59.563 40.669-59.610Q40.837-59.657 40.837-59.825L40.837-61.961Q40.837-62.176 40.775-62.272Q40.712-62.368 40.593-62.389Q40.474-62.411 40.228-62.411L40.228-62.707L41.419-62.793L41.419-62.059Q41.533-62.274 41.726-62.442Q41.919-62.610 42.158-62.702Q42.396-62.793 42.650-62.793Q43.818-62.793 43.818-61.715L43.818-59.825Q43.818-59.657 43.988-59.610Q44.158-59.563 44.427-59.563L44.427-59.266L42.572-59.266L42.572-59.563Q42.845-59.563 43.013-59.610Q43.181-59.657 43.181-59.825L43.181-61.700Q43.181-62.082 43.060-62.311Q42.939-62.539 42.587-62.539Q42.275-62.539 42.021-62.377Q41.767-62.215 41.620-61.946Q41.474-61.676 41.474-61.379L41.474-59.825Q41.474-59.657 41.644-59.610Q41.814-59.563 42.083-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 114.388)\">\u003Cpath d=\"M49.641-59.266L47.785-59.266L47.785-59.563Q48.059-59.563 48.227-59.610Q48.395-59.657 48.395-59.825L48.395-63.985Q48.395-64.200 48.332-64.295Q48.270-64.391 48.151-64.412Q48.032-64.434 47.785-64.434L47.785-64.731L49.008-64.817L49.008-62.114Q49.133-62.325 49.321-62.475Q49.508-62.625 49.735-62.709Q49.961-62.793 50.207-62.793Q51.375-62.793 51.375-61.715L51.375-59.825Q51.375-59.657 51.545-59.610Q51.715-59.563 51.985-59.563L51.985-59.266L50.129-59.266L50.129-59.563Q50.403-59.563 50.571-59.610Q50.739-59.657 50.739-59.825L50.739-61.700Q50.739-62.082 50.618-62.311Q50.496-62.539 50.145-62.539Q49.832-62.539 49.578-62.377Q49.325-62.215 49.178-61.946Q49.032-61.676 49.032-61.379L49.032-59.825Q49.032-59.657 49.202-59.610Q49.371-59.563 49.641-59.563L49.641-59.266M52.528-60.098Q52.528-60.582 52.930-60.877Q53.332-61.172 53.883-61.291Q54.434-61.411 54.926-61.411L54.926-61.700Q54.926-61.926 54.811-62.133Q54.696-62.340 54.498-62.459Q54.301-62.578 54.071-62.578Q53.645-62.578 53.360-62.473Q53.430-62.446 53.477-62.391Q53.524-62.336 53.549-62.266Q53.575-62.196 53.575-62.121Q53.575-62.016 53.524-61.924Q53.473-61.832 53.381-61.782Q53.289-61.731 53.184-61.731Q53.078-61.731 52.987-61.782Q52.895-61.832 52.844-61.924Q52.793-62.016 52.793-62.121Q52.793-62.539 53.182-62.686Q53.571-62.832 54.071-62.832Q54.403-62.832 54.756-62.702Q55.110-62.571 55.338-62.317Q55.567-62.063 55.567-61.715L55.567-59.914Q55.567-59.782 55.639-59.672Q55.711-59.563 55.840-59.563Q55.965-59.563 56.034-59.668Q56.102-59.774 56.102-59.914L56.102-60.426L56.383-60.426L56.383-59.914Q56.383-59.711 56.266-59.553Q56.149-59.395 55.967-59.311Q55.785-59.227 55.582-59.227Q55.352-59.227 55.200-59.399Q55.047-59.571 55.016-59.801Q54.856-59.520 54.547-59.354Q54.239-59.188 53.887-59.188Q53.375-59.188 52.952-59.411Q52.528-59.633 52.528-60.098M53.215-60.098Q53.215-59.813 53.442-59.627Q53.668-59.442 53.961-59.442Q54.207-59.442 54.432-59.559Q54.657-59.676 54.791-59.879Q54.926-60.082 54.926-60.336L54.926-61.168Q54.660-61.168 54.375-61.114Q54.090-61.059 53.819-60.930Q53.547-60.801 53.381-60.594Q53.215-60.387 53.215-60.098M58.684-59.266L56.703-59.266L56.703-59.563Q56.973-59.563 57.141-59.608Q57.309-59.653 57.309-59.825L57.309-61.961Q57.309-62.176 57.246-62.272Q57.184-62.368 57.067-62.389Q56.950-62.411 56.703-62.411L56.703-62.707L57.871-62.793L57.871-62.008Q57.950-62.219 58.102-62.405Q58.254-62.590 58.453-62.692Q58.653-62.793 58.879-62.793Q59.125-62.793 59.317-62.649Q59.508-62.504 59.508-62.274Q59.508-62.118 59.403-62.008Q59.297-61.899 59.141-61.899Q58.985-61.899 58.875-62.008Q58.766-62.118 58.766-62.274Q58.766-62.434 58.871-62.539Q58.547-62.539 58.332-62.311Q58.118-62.082 58.022-61.743Q57.926-61.403 57.926-61.098L57.926-59.825Q57.926-59.657 58.153-59.610Q58.379-59.563 58.684-59.563L58.684-59.266M61.805-59.188Q61.325-59.188 60.916-59.432Q60.508-59.676 60.270-60.090Q60.032-60.504 60.032-60.993Q60.032-61.485 60.289-61.901Q60.547-62.317 60.979-62.555Q61.410-62.793 61.903-62.793Q62.524-62.793 62.973-62.356L62.973-63.985Q62.973-64.200 62.910-64.295Q62.848-64.391 62.731-64.412Q62.614-64.434 62.368-64.434L62.368-64.731L63.590-64.817L63.590-60.008Q63.590-59.797 63.653-59.702Q63.715-59.606 63.832-59.584Q63.950-59.563 64.200-59.563L64.200-59.266L62.950-59.188L62.950-59.672Q62.485-59.188 61.805-59.188M61.871-59.442Q62.211-59.442 62.504-59.633Q62.797-59.825 62.950-60.121L62.950-61.953Q62.801-62.227 62.539-62.383Q62.278-62.539 61.965-62.539Q61.340-62.539 61.057-62.092Q60.774-61.645 60.774-60.985Q60.774-60.340 61.026-59.891Q61.278-59.442 61.871-59.442M66.293-59.297L65.223-62.153Q65.157-62.332 65.026-62.375Q64.895-62.418 64.637-62.418L64.637-62.715L66.317-62.715L66.317-62.418Q65.868-62.418 65.868-62.219Q65.871-62.203 65.873-62.186Q65.875-62.168 65.875-62.153L66.668-60.059L67.379-61.969Q67.344-62.063 67.344-62.108Q67.344-62.153 67.309-62.153Q67.243-62.332 67.112-62.375Q66.981-62.418 66.727-62.418L66.727-62.715L68.317-62.715L68.317-62.418Q67.868-62.418 67.868-62.219Q67.871-62.200 67.873-62.182Q67.875-62.164 67.875-62.153L68.707-59.938L69.461-61.938Q69.485-61.996 69.485-62.067Q69.485-62.227 69.348-62.323Q69.211-62.418 69.043-62.418L69.043-62.715L70.430-62.715L70.430-62.418Q70.196-62.418 70.018-62.291Q69.840-62.164 69.758-61.938L68.774-59.297Q68.719-59.188 68.606-59.188L68.547-59.188Q68.434-59.188 68.391-59.297L67.532-61.571L66.676-59.297Q66.637-59.188 66.516-59.188L66.461-59.188Q66.348-59.188 66.293-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(93.894 114.388)\">\u003Cpath d=\"M70.719-60.098Q70.719-60.582 71.121-60.877Q71.524-61.172 72.074-61.291Q72.625-61.411 73.117-61.411L73.117-61.700Q73.117-61.926 73.002-62.133Q72.887-62.340 72.690-62.459Q72.492-62.578 72.262-62.578Q71.836-62.578 71.551-62.473Q71.621-62.446 71.668-62.391Q71.715-62.336 71.740-62.266Q71.766-62.196 71.766-62.121Q71.766-62.016 71.715-61.924Q71.664-61.832 71.572-61.782Q71.481-61.731 71.375-61.731Q71.270-61.731 71.178-61.782Q71.086-61.832 71.035-61.924Q70.985-62.016 70.985-62.121Q70.985-62.539 71.373-62.686Q71.762-62.832 72.262-62.832Q72.594-62.832 72.947-62.702Q73.301-62.571 73.529-62.317Q73.758-62.063 73.758-61.715L73.758-59.914Q73.758-59.782 73.830-59.672Q73.903-59.563 74.031-59.563Q74.156-59.563 74.225-59.668Q74.293-59.774 74.293-59.914L74.293-60.426L74.574-60.426L74.574-59.914Q74.574-59.711 74.457-59.553Q74.340-59.395 74.158-59.311Q73.977-59.227 73.774-59.227Q73.543-59.227 73.391-59.399Q73.238-59.571 73.207-59.801Q73.047-59.520 72.738-59.354Q72.430-59.188 72.078-59.188Q71.567-59.188 71.143-59.411Q70.719-59.633 70.719-60.098M71.406-60.098Q71.406-59.813 71.633-59.627Q71.860-59.442 72.153-59.442Q72.399-59.442 72.623-59.559Q72.848-59.676 72.983-59.879Q73.117-60.082 73.117-60.336L73.117-61.168Q72.852-61.168 72.567-61.114Q72.281-61.059 72.010-60.930Q71.738-60.801 71.572-60.594Q71.406-60.387 71.406-60.098M76.875-59.266L74.895-59.266L74.895-59.563Q75.164-59.563 75.332-59.608Q75.500-59.653 75.500-59.825L75.500-61.961Q75.500-62.176 75.438-62.272Q75.375-62.368 75.258-62.389Q75.141-62.411 74.895-62.411L74.895-62.707L76.063-62.793L76.063-62.008Q76.141-62.219 76.293-62.405Q76.445-62.590 76.645-62.692Q76.844-62.793 77.070-62.793Q77.317-62.793 77.508-62.649Q77.699-62.504 77.699-62.274Q77.699-62.118 77.594-62.008Q77.488-61.899 77.332-61.899Q77.176-61.899 77.067-62.008Q76.957-62.118 76.957-62.274Q76.957-62.434 77.063-62.539Q76.738-62.539 76.524-62.311Q76.309-62.082 76.213-61.743Q76.117-61.403 76.117-61.098L76.117-59.825Q76.117-59.657 76.344-59.610Q76.570-59.563 76.875-59.563L76.875-59.266M78.180-61.020Q78.180-61.500 78.412-61.916Q78.645-62.332 79.055-62.582Q79.465-62.832 79.942-62.832Q80.672-62.832 81.070-62.391Q81.469-61.950 81.469-61.219Q81.469-61.114 81.375-61.090L78.926-61.090L78.926-61.020Q78.926-60.610 79.047-60.254Q79.168-59.899 79.440-59.682Q79.711-59.465 80.141-59.465Q80.504-59.465 80.801-59.694Q81.098-59.922 81.199-60.274Q81.207-60.321 81.293-60.336L81.375-60.336Q81.469-60.309 81.469-60.227Q81.469-60.219 81.461-60.188Q81.399-59.961 81.260-59.778Q81.121-59.594 80.930-59.461Q80.738-59.328 80.520-59.258Q80.301-59.188 80.063-59.188Q79.692-59.188 79.354-59.325Q79.016-59.461 78.748-59.713Q78.481-59.965 78.330-60.305Q78.180-60.645 78.180-61.020M78.934-61.328L80.895-61.328Q80.895-61.633 80.793-61.924Q80.692-62.215 80.475-62.397Q80.258-62.578 79.942-62.578Q79.641-62.578 79.410-62.391Q79.180-62.203 79.057-61.912Q78.934-61.621 78.934-61.328\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-45.04h267.456M66.902-72.07V64.503\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">RISC versus CISC as opposite answers to one question — where complexity lives. RISC pushes it up into the compiler and keeps instructions short, fixed-length, and register-only; CISC pushes it down into rich, variable-length instructions that can compute on memory directly.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:371.534px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 278.651 172.399\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-44.513 75.884H198.18\"\u002F>\u003Cpath stroke=\"none\" d=\"m200.18 75.884-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"M-44.513 75.884V-70.07\"\u002F>\u003Cpath stroke=\"none\" d=\"m-44.513-72.07-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(87.992 13.356)\">\u003Cpath d=\"M-42.458 75.962Q-42.939 75.962-43.347 75.718Q-43.755 75.474-43.993 75.060Q-44.232 74.646-44.232 74.157Q-44.232 73.665-43.974 73.249Q-43.716 72.833-43.284 72.595Q-42.853 72.357-42.361 72.357Q-41.740 72.357-41.290 72.794L-41.290 71.165Q-41.290 70.950-41.353 70.855Q-41.415 70.759-41.533 70.738Q-41.650 70.716-41.896 70.716L-41.896 70.419L-40.673 70.333L-40.673 75.142Q-40.673 75.353-40.611 75.448Q-40.548 75.544-40.431 75.566Q-40.314 75.587-40.064 75.587L-40.064 75.884L-41.314 75.962L-41.314 75.478Q-41.779 75.962-42.458 75.962M-42.392 75.708Q-42.052 75.708-41.759 75.517Q-41.466 75.325-41.314 75.029L-41.314 73.197Q-41.462 72.923-41.724 72.767Q-41.986 72.611-42.298 72.611Q-42.923 72.611-43.206 73.058Q-43.490 73.505-43.490 74.165Q-43.490 74.810-43.238 75.259Q-42.986 75.708-42.392 75.708M-39.556 74.130Q-39.556 73.650-39.324 73.234Q-39.091 72.818-38.681 72.568Q-38.271 72.318-37.794 72.318Q-37.064 72.318-36.665 72.759Q-36.267 73.200-36.267 73.931Q-36.267 74.036-36.361 74.060L-38.810 74.060L-38.810 74.130Q-38.810 74.540-38.689 74.896Q-38.568 75.251-38.296 75.468Q-38.025 75.685-37.595 75.685Q-37.232 75.685-36.935 75.456Q-36.638 75.228-36.536 74.876Q-36.529 74.829-36.443 74.814L-36.361 74.814Q-36.267 74.841-36.267 74.923Q-36.267 74.931-36.275 74.962Q-36.337 75.189-36.476 75.372Q-36.615 75.556-36.806 75.689Q-36.997 75.822-37.216 75.892Q-37.435 75.962-37.673 75.962Q-38.044 75.962-38.382 75.825Q-38.720 75.689-38.988 75.437Q-39.255 75.185-39.406 74.845Q-39.556 74.505-39.556 74.130M-38.802 73.822L-36.841 73.822Q-36.841 73.517-36.943 73.226Q-37.044 72.935-37.261 72.753Q-37.478 72.572-37.794 72.572Q-38.095 72.572-38.325 72.759Q-38.556 72.947-38.679 73.238Q-38.802 73.529-38.802 73.822M-35.736 74.157Q-35.736 73.661-35.486 73.236Q-35.236 72.810-34.816 72.564Q-34.396 72.318-33.896 72.318Q-33.357 72.318-32.966 72.443Q-32.575 72.568-32.575 72.982Q-32.575 73.087-32.626 73.179Q-32.677 73.271-32.769 73.322Q-32.861 73.372-32.970 73.372Q-33.075 73.372-33.167 73.322Q-33.259 73.271-33.310 73.179Q-33.361 73.087-33.361 72.982Q-33.361 72.759-33.193 72.654Q-33.415 72.595-33.888 72.595Q-34.185 72.595-34.400 72.734Q-34.615 72.872-34.745 73.103Q-34.876 73.333-34.935 73.603Q-34.993 73.872-34.993 74.157Q-34.993 74.552-34.861 74.902Q-34.728 75.251-34.456 75.468Q-34.185 75.685-33.786 75.685Q-33.411 75.685-33.136 75.468Q-32.861 75.251-32.759 74.892Q-32.743 74.829-32.681 74.829L-32.575 74.829Q-32.540 74.829-32.515 74.857Q-32.490 74.884-32.490 74.923L-32.490 74.947Q-32.622 75.427-33.007 75.695Q-33.392 75.962-33.896 75.962Q-34.259 75.962-34.593 75.825Q-34.927 75.689-35.187 75.439Q-35.447 75.189-35.591 74.853Q-35.736 74.517-35.736 74.157M-32.001 74.189Q-32.001 73.685-31.745 73.253Q-31.490 72.822-31.054 72.570Q-30.618 72.318-30.118 72.318Q-29.732 72.318-29.390 72.462Q-29.048 72.607-28.786 72.868Q-28.525 73.130-28.382 73.466Q-28.240 73.802-28.240 74.189Q-28.240 74.681-28.503 75.091Q-28.767 75.501-29.197 75.732Q-29.626 75.962-30.118 75.962Q-30.611 75.962-31.044 75.730Q-31.478 75.497-31.740 75.089Q-32.001 74.681-32.001 74.189M-30.118 75.685Q-29.661 75.685-29.409 75.462Q-29.158 75.239-29.070 74.888Q-28.982 74.536-28.982 74.091Q-28.982 73.661-29.075 73.323Q-29.169 72.986-29.423 72.779Q-29.677 72.572-30.118 72.572Q-30.767 72.572-31.011 72.988Q-31.255 73.404-31.255 74.091Q-31.255 74.536-31.167 74.888Q-31.079 75.239-30.827 75.462Q-30.575 75.685-30.118 75.685\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(87.992 13.356)\">\u003Cpath d=\"M-25.694 75.962Q-26.175 75.962-26.583 75.718Q-26.991 75.474-27.229 75.060Q-27.468 74.646-27.468 74.157Q-27.468 73.665-27.210 73.249Q-26.952 72.833-26.520 72.595Q-26.089 72.357-25.597 72.357Q-24.976 72.357-24.526 72.794L-24.526 71.165Q-24.526 70.950-24.589 70.855Q-24.651 70.759-24.769 70.738Q-24.886 70.716-25.132 70.716L-25.132 70.419L-23.909 70.333L-23.909 75.142Q-23.909 75.353-23.847 75.448Q-23.784 75.544-23.667 75.566Q-23.550 75.587-23.300 75.587L-23.300 75.884L-24.550 75.962L-24.550 75.478Q-25.015 75.962-25.694 75.962M-25.628 75.708Q-25.288 75.708-24.995 75.517Q-24.702 75.325-24.550 75.029L-24.550 73.197Q-24.698 72.923-24.960 72.767Q-25.222 72.611-25.534 72.611Q-26.159 72.611-26.442 73.058Q-26.726 73.505-26.726 74.165Q-26.726 74.810-26.474 75.259Q-26.222 75.708-25.628 75.708M-22.792 74.130Q-22.792 73.650-22.560 73.234Q-22.327 72.818-21.917 72.568Q-21.507 72.318-21.030 72.318Q-20.300 72.318-19.901 72.759Q-19.503 73.200-19.503 73.931Q-19.503 74.036-19.597 74.060L-22.046 74.060L-22.046 74.130Q-22.046 74.540-21.925 74.896Q-21.804 75.251-21.532 75.468Q-21.261 75.685-20.831 75.685Q-20.468 75.685-20.171 75.456Q-19.874 75.228-19.772 74.876Q-19.765 74.829-19.679 74.814L-19.597 74.814Q-19.503 74.841-19.503 74.923Q-19.503 74.931-19.511 74.962Q-19.573 75.189-19.712 75.372Q-19.851 75.556-20.042 75.689Q-20.233 75.822-20.452 75.892Q-20.671 75.962-20.909 75.962Q-21.280 75.962-21.618 75.825Q-21.956 75.689-22.224 75.437Q-22.491 75.185-22.642 74.845Q-22.792 74.505-22.792 74.130M-22.038 73.822L-20.077 73.822Q-20.077 73.517-20.179 73.226Q-20.280 72.935-20.497 72.753Q-20.714 72.572-21.030 72.572Q-21.331 72.572-21.561 72.759Q-21.792 72.947-21.915 73.238Q-22.038 73.529-22.038 73.822\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(87.992 13.356)\">\u003Cpath d=\"M-16.134 74.157Q-16.134 73.661-15.884 73.236Q-15.634 72.810-15.214 72.564Q-14.794 72.318-14.294 72.318Q-13.755 72.318-13.364 72.443Q-12.974 72.568-12.974 72.982Q-12.974 73.087-13.024 73.179Q-13.075 73.271-13.167 73.322Q-13.259 73.372-13.368 73.372Q-13.474 73.372-13.565 73.322Q-13.657 73.271-13.708 73.179Q-13.759 73.087-13.759 72.982Q-13.759 72.759-13.591 72.654Q-13.813 72.595-14.286 72.595Q-14.583 72.595-14.798 72.734Q-15.013 72.872-15.144 73.103Q-15.274 73.333-15.333 73.603Q-15.392 73.872-15.392 74.157Q-15.392 74.552-15.259 74.902Q-15.126 75.251-14.854 75.468Q-14.583 75.685-14.185 75.685Q-13.810 75.685-13.534 75.468Q-13.259 75.251-13.157 74.892Q-13.142 74.829-13.079 74.829L-12.974 74.829Q-12.938 74.829-12.913 74.857Q-12.888 74.884-12.888 74.923L-12.888 74.947Q-13.020 75.427-13.405 75.695Q-13.790 75.962-14.294 75.962Q-14.657 75.962-14.991 75.825Q-15.325 75.689-15.585 75.439Q-15.845 75.189-15.989 74.853Q-16.134 74.517-16.134 74.157M-12.399 74.189Q-12.399 73.685-12.144 73.253Q-11.888 72.822-11.452 72.570Q-11.017 72.318-10.517 72.318Q-10.130 72.318-9.788 72.462Q-9.446 72.607-9.185 72.868Q-8.923 73.130-8.780 73.466Q-8.638 73.802-8.638 74.189Q-8.638 74.681-8.901 75.091Q-9.165 75.501-9.595 75.732Q-10.024 75.962-10.517 75.962Q-11.009 75.962-11.442 75.730Q-11.876 75.497-12.138 75.089Q-12.399 74.681-12.399 74.189M-10.517 75.685Q-10.060 75.685-9.808 75.462Q-9.556 75.239-9.468 74.888Q-9.380 74.536-9.380 74.091Q-9.380 73.661-9.474 73.323Q-9.567 72.986-9.821 72.779Q-10.075 72.572-10.517 72.572Q-11.165 72.572-11.409 72.988Q-11.653 73.404-11.653 74.091Q-11.653 74.536-11.565 74.888Q-11.477 75.239-11.226 75.462Q-10.974 75.685-10.517 75.685M-6.224 75.884L-8.079 75.884L-8.079 75.587Q-7.806 75.587-7.638 75.540Q-7.470 75.493-7.470 75.325L-7.470 73.189Q-7.470 72.974-7.532 72.878Q-7.595 72.782-7.714 72.761Q-7.833 72.739-8.079 72.739L-8.079 72.443L-6.888 72.357L-6.888 73.091Q-6.774 72.876-6.581 72.708Q-6.388 72.540-6.149 72.448Q-5.911 72.357-5.657 72.357Q-4.696 72.357-4.520 73.068Q-4.337 72.739-4.009 72.548Q-3.681 72.357-3.302 72.357Q-2.126 72.357-2.126 73.435L-2.126 75.325Q-2.126 75.493-1.958 75.540Q-1.790 75.587-1.520 75.587L-1.520 75.884L-3.376 75.884L-3.376 75.587Q-3.102 75.587-2.935 75.542Q-2.767 75.497-2.767 75.325L-2.767 73.450Q-2.767 73.064-2.892 72.837Q-3.017 72.611-3.368 72.611Q-3.673 72.611-3.929 72.773Q-4.185 72.935-4.333 73.204Q-4.481 73.474-4.481 73.771L-4.481 75.325Q-4.481 75.493-4.311 75.540Q-4.142 75.587-3.872 75.587L-3.872 75.884L-5.727 75.884L-5.727 75.587Q-5.454 75.587-5.286 75.540Q-5.118 75.493-5.118 75.325L-5.118 73.450Q-5.118 73.064-5.243 72.837Q-5.368 72.611-5.720 72.611Q-6.024 72.611-6.280 72.773Q-6.536 72.935-6.685 73.204Q-6.833 73.474-6.833 73.771L-6.833 75.325Q-6.833 75.493-6.663 75.540Q-6.493 75.587-6.224 75.587L-6.224 75.884M0.808 77.435L-1.048 77.435L-1.048 77.142Q-0.778 77.142-0.610 77.097Q-0.442 77.052-0.442 76.876L-0.442 73.052Q-0.442 72.845-0.599 72.792Q-0.755 72.739-1.048 72.739L-1.048 72.443L0.175 72.357L0.175 72.822Q0.405 72.599 0.720 72.478Q1.034 72.357 1.374 72.357Q1.847 72.357 2.251 72.603Q2.655 72.849 2.888 73.265Q3.120 73.681 3.120 74.157Q3.120 74.532 2.972 74.861Q2.823 75.189 2.554 75.441Q2.284 75.693 1.940 75.827Q1.597 75.962 1.237 75.962Q0.948 75.962 0.677 75.841Q0.405 75.720 0.198 75.509L0.198 76.876Q0.198 77.052 0.366 77.097Q0.534 77.142 0.808 77.142L0.808 77.435M0.198 73.220L0.198 75.060Q0.351 75.349 0.612 75.529Q0.874 75.708 1.183 75.708Q1.468 75.708 1.690 75.570Q1.913 75.431 2.065 75.200Q2.218 74.970 2.296 74.698Q2.374 74.427 2.374 74.157Q2.374 73.825 2.249 73.468Q2.124 73.111 1.876 72.874Q1.628 72.638 1.280 72.638Q0.956 72.638 0.661 72.794Q0.366 72.950 0.198 73.220M5.558 75.884L3.726 75.884L3.726 75.587Q3.999 75.587 4.167 75.540Q4.335 75.493 4.335 75.325L4.335 71.165Q4.335 70.950 4.273 70.855Q4.210 70.759 4.091 70.738Q3.972 70.716 3.726 70.716L3.726 70.419L4.948 70.333L4.948 75.325Q4.948 75.493 5.116 75.540Q5.284 75.587 5.558 75.587L5.558 75.884M6.003 74.130Q6.003 73.650 6.235 73.234Q6.468 72.818 6.878 72.568Q7.288 72.318 7.765 72.318Q8.495 72.318 8.894 72.759Q9.292 73.200 9.292 73.931Q9.292 74.036 9.198 74.060L6.749 74.060L6.749 74.130Q6.749 74.540 6.870 74.896Q6.991 75.251 7.263 75.468Q7.534 75.685 7.964 75.685Q8.327 75.685 8.624 75.456Q8.921 75.228 9.023 74.876Q9.030 74.829 9.116 74.814L9.198 74.814Q9.292 74.841 9.292 74.923Q9.292 74.931 9.284 74.962Q9.222 75.189 9.083 75.372Q8.944 75.556 8.753 75.689Q8.562 75.822 8.343 75.892Q8.124 75.962 7.886 75.962Q7.515 75.962 7.177 75.825Q6.839 75.689 6.571 75.437Q6.304 75.185 6.153 74.845Q6.003 74.505 6.003 74.130M6.757 73.822L8.718 73.822Q8.718 73.517 8.616 73.226Q8.515 72.935 8.298 72.753Q8.081 72.572 7.765 72.572Q7.464 72.572 7.233 72.759Q7.003 72.947 6.880 73.238Q6.757 73.529 6.757 73.822M11.167 75.884L9.671 75.884L9.671 75.587Q10.304 75.587 10.726 75.107L11.495 74.197L10.503 72.997Q10.347 72.818 10.185 72.775Q10.023 72.732 9.718 72.732L9.718 72.435L11.405 72.435L11.405 72.732Q11.312 72.732 11.235 72.775Q11.159 72.818 11.159 72.907Q11.159 72.950 11.190 72.997L11.847 73.786L12.327 73.212Q12.444 73.075 12.444 72.939Q12.444 72.849 12.394 72.790Q12.343 72.732 12.261 72.732L12.261 72.435L13.749 72.435L13.749 72.732Q13.112 72.732 12.702 73.212L12.023 74.013L13.108 75.325Q13.269 75.501 13.429 75.544Q13.589 75.587 13.894 75.587L13.894 75.884L12.206 75.884L12.206 75.587Q12.296 75.587 12.374 75.544Q12.452 75.501 12.452 75.411Q12.452 75.388 12.421 75.325L11.679 74.419L11.093 75.107Q10.976 75.243 10.976 75.380Q10.976 75.466 11.026 75.527Q11.077 75.587 11.167 75.587L11.167 75.884M16.120 75.884L14.343 75.884L14.343 75.587Q14.616 75.587 14.784 75.540Q14.952 75.493 14.952 75.325L14.952 73.189Q14.952 72.974 14.896 72.878Q14.839 72.782 14.726 72.761Q14.612 72.739 14.366 72.739L14.366 72.443L15.565 72.357L15.565 75.325Q15.565 75.493 15.712 75.540Q15.858 75.587 16.120 75.587L16.120 75.884M14.679 70.962Q14.679 70.771 14.814 70.640Q14.948 70.509 15.144 70.509Q15.265 70.509 15.368 70.572Q15.472 70.634 15.534 70.738Q15.597 70.841 15.597 70.962Q15.597 71.157 15.466 71.292Q15.335 71.427 15.144 71.427Q14.944 71.427 14.812 71.294Q14.679 71.161 14.679 70.962M17.245 74.923L17.245 72.732L16.542 72.732L16.542 72.478Q16.898 72.478 17.140 72.245Q17.382 72.013 17.493 71.665Q17.605 71.318 17.605 70.962L17.886 70.962L17.886 72.435L19.062 72.435L19.062 72.732L17.886 72.732L17.886 74.907Q17.886 75.228 18.005 75.456Q18.124 75.685 18.405 75.685Q18.585 75.685 18.702 75.562Q18.819 75.439 18.872 75.259Q18.925 75.079 18.925 74.907L18.925 74.435L19.206 74.435L19.206 74.923Q19.206 75.177 19.101 75.417Q18.995 75.657 18.798 75.810Q18.601 75.962 18.343 75.962Q18.026 75.962 17.774 75.839Q17.523 75.716 17.384 75.482Q17.245 75.247 17.245 74.923M20.343 77.181Q20.456 77.259 20.632 77.259Q20.921 77.259 21.142 77.046Q21.362 76.833 21.487 76.532L21.776 75.884L20.503 72.997Q20.421 72.822 20.276 72.777Q20.132 72.732 19.862 72.732L19.862 72.435L21.581 72.435L21.581 72.732Q21.159 72.732 21.159 72.915Q21.159 72.927 21.175 72.997L22.112 75.122L22.944 73.212Q22.983 73.122 22.983 73.044Q22.983 72.904 22.882 72.818Q22.780 72.732 22.640 72.732L22.640 72.435L23.991 72.435L23.991 72.732Q23.737 72.732 23.544 72.857Q23.351 72.982 23.245 73.212L21.800 76.532Q21.687 76.786 21.521 77.009Q21.355 77.232 21.126 77.374Q20.898 77.517 20.632 77.517Q20.335 77.517 20.095 77.325Q19.855 77.134 19.855 76.845Q19.855 76.689 19.960 76.587Q20.065 76.486 20.214 76.486Q20.319 76.486 20.399 76.532Q20.480 76.579 20.526 76.657Q20.573 76.736 20.573 76.845Q20.573 76.966 20.513 77.054Q20.452 77.142 20.343 77.181\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 -76.08 56.519)\">\u003Cpath d=\"M-44.232 74.157Q-44.232 73.661-43.982 73.236Q-43.732 72.810-43.312 72.564Q-42.892 72.318-42.392 72.318Q-41.853 72.318-41.462 72.443Q-41.072 72.568-41.072 72.982Q-41.072 73.087-41.122 73.179Q-41.173 73.271-41.265 73.322Q-41.357 73.372-41.466 73.372Q-41.572 73.372-41.663 73.322Q-41.755 73.271-41.806 73.179Q-41.857 73.087-41.857 72.982Q-41.857 72.759-41.689 72.654Q-41.911 72.595-42.384 72.595Q-42.681 72.595-42.896 72.734Q-43.111 72.872-43.242 73.103Q-43.372 73.333-43.431 73.603Q-43.490 73.872-43.490 74.157Q-43.490 74.552-43.357 74.902Q-43.224 75.251-42.952 75.468Q-42.681 75.685-42.283 75.685Q-41.908 75.685-41.632 75.468Q-41.357 75.251-41.255 74.892Q-41.240 74.829-41.177 74.829L-41.072 74.829Q-41.036 74.829-41.011 74.857Q-40.986 74.884-40.986 74.923L-40.986 74.947Q-41.118 75.427-41.503 75.695Q-41.888 75.962-42.392 75.962Q-42.755 75.962-43.089 75.825Q-43.423 75.689-43.683 75.439Q-43.943 75.189-44.087 74.853Q-44.232 74.517-44.232 74.157M-40.497 74.189Q-40.497 73.685-40.242 73.253Q-39.986 72.822-39.550 72.570Q-39.115 72.318-38.615 72.318Q-38.228 72.318-37.886 72.462Q-37.544 72.607-37.283 72.868Q-37.021 73.130-36.878 73.466Q-36.736 73.802-36.736 74.189Q-36.736 74.681-36.999 75.091Q-37.263 75.501-37.693 75.732Q-38.122 75.962-38.615 75.962Q-39.107 75.962-39.540 75.730Q-39.974 75.497-40.236 75.089Q-40.497 74.681-40.497 74.189M-38.615 75.685Q-38.158 75.685-37.906 75.462Q-37.654 75.239-37.566 74.888Q-37.478 74.536-37.478 74.091Q-37.478 73.661-37.572 73.323Q-37.665 72.986-37.919 72.779Q-38.173 72.572-38.615 72.572Q-39.263 72.572-39.507 72.988Q-39.751 73.404-39.751 74.091Q-39.751 74.536-39.663 74.888Q-39.575 75.239-39.324 75.462Q-39.072 75.685-38.615 75.685\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -76.08 56.519)\">\u003Cpath d=\"M-34.194 75.962Q-34.675 75.962-35.083 75.718Q-35.491 75.474-35.729 75.060Q-35.968 74.646-35.968 74.157Q-35.968 73.665-35.710 73.249Q-35.452 72.833-35.020 72.595Q-34.589 72.357-34.097 72.357Q-33.476 72.357-33.026 72.794L-33.026 71.165Q-33.026 70.950-33.089 70.855Q-33.151 70.759-33.269 70.738Q-33.386 70.716-33.632 70.716L-33.632 70.419L-32.409 70.333L-32.409 75.142Q-32.409 75.353-32.347 75.448Q-32.284 75.544-32.167 75.566Q-32.050 75.587-31.800 75.587L-31.800 75.884L-33.050 75.962L-33.050 75.478Q-33.515 75.962-34.194 75.962M-34.128 75.708Q-33.788 75.708-33.495 75.517Q-33.202 75.325-33.050 75.029L-33.050 73.197Q-33.198 72.923-33.460 72.767Q-33.722 72.611-34.034 72.611Q-34.659 72.611-34.942 73.058Q-35.226 73.505-35.226 74.165Q-35.226 74.810-34.974 75.259Q-34.722 75.708-34.128 75.708M-31.292 74.130Q-31.292 73.650-31.060 73.234Q-30.827 72.818-30.417 72.568Q-30.007 72.318-29.530 72.318Q-28.800 72.318-28.401 72.759Q-28.003 73.200-28.003 73.931Q-28.003 74.036-28.097 74.060L-30.546 74.060L-30.546 74.130Q-30.546 74.540-30.425 74.896Q-30.304 75.251-30.032 75.468Q-29.761 75.685-29.331 75.685Q-28.968 75.685-28.671 75.456Q-28.374 75.228-28.272 74.876Q-28.265 74.829-28.179 74.814L-28.097 74.814Q-28.003 74.841-28.003 74.923Q-28.003 74.931-28.011 74.962Q-28.073 75.189-28.212 75.372Q-28.351 75.556-28.542 75.689Q-28.733 75.822-28.952 75.892Q-29.171 75.962-29.409 75.962Q-29.780 75.962-30.118 75.825Q-30.456 75.689-30.724 75.437Q-30.991 75.185-31.142 74.845Q-31.292 74.505-31.292 74.130M-30.538 73.822L-28.577 73.822Q-28.577 73.517-28.679 73.226Q-28.780 72.935-28.997 72.753Q-29.214 72.572-29.530 72.572Q-29.831 72.572-30.062 72.759Q-30.292 72.947-30.415 73.238Q-30.538 73.529-30.538 73.822\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -76.08 56.519)\">\u003Cpath d=\"M-22.861 75.962Q-23.342 75.962-23.750 75.718Q-24.158 75.474-24.396 75.060Q-24.635 74.646-24.635 74.157Q-24.635 73.665-24.377 73.249Q-24.119 72.833-23.687 72.595Q-23.256 72.357-22.764 72.357Q-22.143 72.357-21.693 72.794L-21.693 71.165Q-21.693 70.950-21.756 70.855Q-21.818 70.759-21.936 70.738Q-22.053 70.716-22.299 70.716L-22.299 70.419L-21.076 70.333L-21.076 75.142Q-21.076 75.353-21.014 75.448Q-20.951 75.544-20.834 75.566Q-20.717 75.587-20.467 75.587L-20.467 75.884L-21.717 75.962L-21.717 75.478Q-22.182 75.962-22.861 75.962M-22.795 75.708Q-22.455 75.708-22.162 75.517Q-21.869 75.325-21.717 75.029L-21.717 73.197Q-21.865 72.923-22.127 72.767Q-22.389 72.611-22.701 72.611Q-23.326 72.611-23.609 73.058Q-23.893 73.505-23.893 74.165Q-23.893 74.810-23.641 75.259Q-23.389 75.708-22.795 75.708M-19.959 74.130Q-19.959 73.650-19.727 73.234Q-19.494 72.818-19.084 72.568Q-18.674 72.318-18.197 72.318Q-17.467 72.318-17.068 72.759Q-16.670 73.200-16.670 73.931Q-16.670 74.036-16.764 74.060L-19.213 74.060L-19.213 74.130Q-19.213 74.540-19.092 74.896Q-18.971 75.251-18.699 75.468Q-18.428 75.685-17.998 75.685Q-17.635 75.685-17.338 75.456Q-17.041 75.228-16.939 74.876Q-16.932 74.829-16.846 74.814L-16.764 74.814Q-16.670 74.841-16.670 74.923Q-16.670 74.931-16.678 74.962Q-16.740 75.189-16.879 75.372Q-17.018 75.556-17.209 75.689Q-17.400 75.822-17.619 75.892Q-17.838 75.962-18.076 75.962Q-18.447 75.962-18.785 75.825Q-19.123 75.689-19.391 75.437Q-19.658 75.185-19.809 74.845Q-19.959 74.505-19.959 74.130M-19.205 73.822L-17.244 73.822Q-17.244 73.517-17.346 73.226Q-17.447 72.935-17.664 72.753Q-17.881 72.572-18.197 72.572Q-18.498 72.572-18.729 72.759Q-18.959 72.947-19.082 73.238Q-19.205 73.529-19.205 73.822M-14.252 75.884L-16.107 75.884L-16.107 75.587Q-15.834 75.587-15.666 75.540Q-15.498 75.493-15.498 75.325L-15.498 73.189Q-15.498 72.974-15.561 72.878Q-15.623 72.782-15.742 72.761Q-15.861 72.739-16.107 72.739L-16.107 72.443L-14.916 72.357L-14.916 73.091Q-14.803 72.876-14.609 72.708Q-14.416 72.540-14.178 72.448Q-13.939 72.357-13.686 72.357Q-12.518 72.357-12.518 73.435L-12.518 75.325Q-12.518 75.493-12.348 75.540Q-12.178 75.587-11.908 75.587L-11.908 75.884L-13.764 75.884L-13.764 75.587Q-13.490 75.587-13.322 75.540Q-13.154 75.493-13.154 75.325L-13.154 73.450Q-13.154 73.068-13.275 72.839Q-13.396 72.611-13.748 72.611Q-14.061 72.611-14.314 72.773Q-14.568 72.935-14.715 73.204Q-14.861 73.474-14.861 73.771L-14.861 75.325Q-14.861 75.493-14.691 75.540Q-14.521 75.587-14.252 75.587L-14.252 75.884M-11.420 75.876L-11.420 74.654Q-11.420 74.626-11.389 74.595Q-11.357 74.564-11.334 74.564L-11.229 74.564Q-11.158 74.564-11.143 74.626Q-11.080 74.947-10.941 75.187Q-10.803 75.427-10.570 75.568Q-10.338 75.708-10.029 75.708Q-9.791 75.708-9.582 75.648Q-9.373 75.587-9.236 75.439Q-9.100 75.290-9.100 75.044Q-9.100 74.790-9.311 74.624Q-9.521 74.458-9.791 74.404L-10.412 74.290Q-10.818 74.212-11.119 73.956Q-11.420 73.700-11.420 73.325Q-11.420 72.958-11.219 72.736Q-11.018 72.513-10.693 72.415Q-10.369 72.318-10.029 72.318Q-9.564 72.318-9.268 72.525L-9.045 72.341Q-9.021 72.318-8.990 72.318L-8.939 72.318Q-8.908 72.318-8.881 72.345Q-8.854 72.372-8.854 72.404L-8.854 73.388Q-8.854 73.419-8.879 73.448Q-8.904 73.478-8.939 73.478L-9.045 73.478Q-9.080 73.478-9.107 73.450Q-9.135 73.423-9.135 73.388Q-9.135 72.989-9.387 72.769Q-9.639 72.548-10.037 72.548Q-10.393 72.548-10.676 72.671Q-10.959 72.794-10.959 73.099Q-10.959 73.318-10.758 73.450Q-10.557 73.583-10.311 73.626L-9.686 73.739Q-9.256 73.829-8.947 74.126Q-8.639 74.423-8.639 74.837Q-8.639 75.407-9.037 75.685Q-9.436 75.962-10.029 75.962Q-10.580 75.962-10.932 75.626L-11.229 75.939Q-11.252 75.962-11.287 75.962L-11.334 75.962Q-11.357 75.962-11.389 75.931Q-11.420 75.900-11.420 75.876M-6.252 75.884L-8.029 75.884L-8.029 75.587Q-7.756 75.587-7.588 75.540Q-7.420 75.493-7.420 75.325L-7.420 73.189Q-7.420 72.974-7.477 72.878Q-7.533 72.782-7.646 72.761Q-7.760 72.739-8.006 72.739L-8.006 72.443L-6.807 72.357L-6.807 75.325Q-6.807 75.493-6.660 75.540Q-6.514 75.587-6.252 75.587L-6.252 75.884M-7.693 70.962Q-7.693 70.771-7.559 70.640Q-7.424 70.509-7.229 70.509Q-7.107 70.509-7.004 70.572Q-6.900 70.634-6.838 70.738Q-6.775 70.841-6.775 70.962Q-6.775 71.157-6.906 71.292Q-7.037 71.427-7.229 71.427Q-7.428 71.427-7.561 71.294Q-7.693 71.161-7.693 70.962M-5.127 74.923L-5.127 72.732L-5.830 72.732L-5.830 72.478Q-5.475 72.478-5.232 72.245Q-4.990 72.013-4.879 71.665Q-4.768 71.318-4.768 70.962L-4.486 70.962L-4.486 72.435L-3.311 72.435L-3.311 72.732L-4.486 72.732L-4.486 74.907Q-4.486 75.228-4.367 75.456Q-4.248 75.685-3.967 75.685Q-3.787 75.685-3.670 75.562Q-3.553 75.439-3.500 75.259Q-3.447 75.079-3.447 74.907L-3.447 74.435L-3.166 74.435L-3.166 74.923Q-3.166 75.177-3.271 75.417Q-3.377 75.657-3.574 75.810Q-3.771 75.962-4.029 75.962Q-4.346 75.962-4.598 75.839Q-4.850 75.716-4.988 75.482Q-5.127 75.247-5.127 74.923\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -76.08 56.519)\">\u003Cpath d=\"M-2.254 77.181Q-2.140 77.259-1.965 77.259Q-1.676 77.259-1.455 77.046Q-1.234 76.833-1.109 76.532L-0.820 75.884L-2.094 72.997Q-2.176 72.822-2.320 72.777Q-2.465 72.732-2.734 72.732L-2.734 72.435L-1.015 72.435L-1.015 72.732Q-1.437 72.732-1.437 72.915Q-1.437 72.927-1.422 72.997L-0.484 75.122L0.348 73.212Q0.387 73.122 0.387 73.044Q0.387 72.904 0.285 72.818Q0.184 72.732 0.043 72.732L0.043 72.435L1.395 72.435L1.395 72.732Q1.141 72.732 0.947 72.857Q0.754 72.982 0.649 73.212L-0.797 76.532Q-0.910 76.786-1.076 77.009Q-1.242 77.232-1.471 77.374Q-1.699 77.517-1.965 77.517Q-2.262 77.517-2.502 77.325Q-2.742 77.134-2.742 76.845Q-2.742 76.689-2.637 76.587Q-2.531 76.486-2.383 76.486Q-2.277 76.486-2.197 76.532Q-2.117 76.579-2.070 76.657Q-2.023 76.736-2.023 76.845Q-2.023 76.966-2.084 77.054Q-2.144 77.142-2.254 77.181\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M17.238 44.586a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-2 0\"\u002F>\u003Cg transform=\"translate(70.397 -28.565)\">\u003Cpath d=\"M-40.161 75.884L-42.513 75.884L-42.513 75.587Q-42.193 75.587-41.949 75.540Q-41.704 75.493-41.704 75.325L-41.704 73.700L-43.513 70.982Q-43.646 70.806-43.853 70.761Q-44.060 70.716-44.392 70.716L-44.392 70.419L-42.138 70.419L-42.138 70.716Q-42.650 70.716-42.650 70.892Q-42.650 70.927-42.626 70.982L-41.064 73.318L-39.658 71.197Q-39.583 71.091-39.583 70.997Q-39.583 70.849-39.706 70.782Q-39.829 70.716-39.993 70.716L-39.993 70.419L-38.275 70.419L-38.275 70.716Q-38.970 70.716-39.298 71.197L-40.962 73.700L-40.962 75.325Q-40.962 75.587-40.161 75.587L-40.161 75.884M-37.802 74.661Q-37.802 74.165-37.476 73.800Q-37.150 73.435-36.626 73.189L-36.896 73.029Q-37.193 72.845-37.376 72.550Q-37.560 72.255-37.560 71.915Q-37.560 71.521-37.341 71.210Q-37.122 70.900-36.769 70.732Q-36.415 70.564-36.033 70.564Q-35.759 70.564-35.486 70.642Q-35.212 70.720-34.995 70.868Q-34.779 71.017-34.642 71.243Q-34.505 71.470-34.505 71.763Q-34.505 72.169-34.775 72.476Q-35.044 72.782-35.466 72.997L-35.017 73.267Q-34.798 73.404-34.630 73.597Q-34.462 73.790-34.365 74.029Q-34.267 74.267-34.267 74.525Q-34.267 74.864-34.417 75.152Q-34.568 75.439-34.814 75.636Q-35.060 75.833-35.384 75.943Q-35.708 76.052-36.033 76.052Q-36.462 76.052-36.868 75.890Q-37.275 75.728-37.538 75.409Q-37.802 75.091-37.802 74.661M-37.314 74.661Q-37.314 75.146-36.923 75.462Q-36.533 75.779-36.033 75.779Q-35.740 75.779-35.441 75.667Q-35.142 75.556-34.949 75.337Q-34.755 75.118-34.755 74.806Q-34.755 74.575-34.896 74.364Q-35.036 74.154-35.243 74.036L-36.353 73.357Q-36.771 73.560-37.042 73.896Q-37.314 74.232-37.314 74.661M-36.728 72.228L-35.740 72.829Q-35.392 72.646-35.165 72.376Q-34.939 72.107-34.939 71.763Q-34.939 71.544-35.031 71.368Q-35.122 71.193-35.277 71.070Q-35.431 70.947-35.632 70.876Q-35.833 70.806-36.033 70.806Q-36.439 70.806-36.784 71.017Q-37.130 71.228-37.130 71.611Q-37.130 71.794-37.019 71.956Q-36.908 72.118-36.728 72.228M-31.786 76.052Q-32.458 76.052-32.855 75.628Q-33.251 75.204-33.404 74.585Q-33.556 73.966-33.556 73.298Q-33.556 72.638-33.284 72.005Q-33.013 71.372-32.499 70.968Q-31.986 70.564-31.314 70.564Q-31.025 70.564-30.777 70.663Q-30.529 70.763-30.382 70.964Q-30.236 71.165-30.236 71.470Q-30.236 71.575-30.286 71.667Q-30.337 71.759-30.429 71.810Q-30.521 71.861-30.626 71.861Q-30.794 71.861-30.908 71.747Q-31.021 71.634-31.021 71.470Q-31.021 71.310-30.911 71.193Q-30.802 71.075-30.634 71.075Q-30.833 70.806-31.314 70.806Q-31.732 70.806-32.064 71.083Q-32.396 71.361-32.572 71.779Q-32.771 72.279-32.771 73.181Q-32.607 72.857-32.327 72.657Q-32.048 72.458-31.700 72.458Q-31.216 72.458-30.831 72.704Q-30.447 72.950-30.234 73.359Q-30.021 73.767-30.021 74.251Q-30.021 74.743-30.251 75.155Q-30.482 75.568-30.892 75.810Q-31.302 76.052-31.786 76.052M-31.786 75.779Q-31.361 75.779-31.144 75.558Q-30.927 75.337-30.865 75.011Q-30.802 74.685-30.802 74.251Q-30.802 73.939-30.827 73.689Q-30.853 73.439-30.943 73.214Q-31.033 72.989-31.228 72.853Q-31.423 72.716-31.740 72.716Q-32.068 72.716-32.300 72.925Q-32.533 73.134-32.644 73.452Q-32.755 73.771-32.755 74.083Q-32.751 74.122-32.749 74.155Q-32.747 74.189-32.747 74.243Q-32.747 74.259-32.749 74.267Q-32.751 74.275-32.755 74.282Q-32.755 74.857-32.529 75.318Q-32.302 75.779-31.786 75.779M-27.310 74.435L-29.564 74.435L-29.564 73.884L-27.310 73.884L-27.310 74.435M-24.708 76.052Q-25.380 76.052-25.777 75.628Q-26.173 75.204-26.325 74.585Q-26.478 73.966-26.478 73.298Q-26.478 72.638-26.206 72.005Q-25.935 71.372-25.421 70.968Q-24.908 70.564-24.236 70.564Q-23.947 70.564-23.699 70.663Q-23.450 70.763-23.304 70.964Q-23.158 71.165-23.158 71.470Q-23.158 71.575-23.208 71.667Q-23.259 71.759-23.351 71.810Q-23.443 71.861-23.548 71.861Q-23.716 71.861-23.829 71.747Q-23.943 71.634-23.943 71.470Q-23.943 71.310-23.833 71.193Q-23.724 71.075-23.556 71.075Q-23.755 70.806-24.236 70.806Q-24.654 70.806-24.986 71.083Q-25.318 71.361-25.493 71.779Q-25.693 72.279-25.693 73.181Q-25.529 72.857-25.249 72.657Q-24.970 72.458-24.622 72.458Q-24.138 72.458-23.753 72.704Q-23.368 72.950-23.156 73.359Q-22.943 73.767-22.943 74.251Q-22.943 74.743-23.173 75.155Q-23.404 75.568-23.814 75.810Q-24.224 76.052-24.708 76.052M-24.708 75.779Q-24.283 75.779-24.066 75.558Q-23.849 75.337-23.786 75.011Q-23.724 74.685-23.724 74.251Q-23.724 73.939-23.749 73.689Q-23.775 73.439-23.865 73.214Q-23.954 72.989-24.150 72.853Q-24.345 72.716-24.661 72.716Q-24.990 72.716-25.222 72.925Q-25.454 73.134-25.566 73.452Q-25.677 73.771-25.677 74.083Q-25.673 74.122-25.671 74.155Q-25.669 74.189-25.669 74.243Q-25.669 74.259-25.671 74.267Q-25.673 74.275-25.677 74.282Q-25.677 74.857-25.450 75.318Q-25.224 75.779-24.708 75.779M-20.103 74.572L-22.345 74.572L-22.345 74.275L-19.775 70.618Q-19.736 70.564-19.673 70.564L-19.529 70.564Q-19.478 70.564-19.447 70.595Q-19.415 70.626-19.415 70.677L-19.415 74.275L-18.583 74.275L-18.583 74.572L-19.415 74.572L-19.415 75.325Q-19.415 75.587-18.591 75.587L-18.591 75.884L-20.927 75.884L-20.927 75.587Q-20.103 75.587-20.103 75.325L-20.103 74.572M-20.048 71.470L-22.017 74.275L-20.048 74.275\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M11.547 1.907a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-2 0\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M-44.232 74.157Q-44.232 73.661-43.982 73.236Q-43.732 72.810-43.312 72.564Q-42.892 72.318-42.392 72.318Q-41.853 72.318-41.462 72.443Q-41.072 72.568-41.072 72.982Q-41.072 73.087-41.122 73.179Q-41.173 73.271-41.265 73.322Q-41.357 73.372-41.466 73.372Q-41.572 73.372-41.663 73.322Q-41.755 73.271-41.806 73.179Q-41.857 73.087-41.857 72.982Q-41.857 72.759-41.689 72.654Q-41.911 72.595-42.384 72.595Q-42.681 72.595-42.896 72.734Q-43.111 72.872-43.242 73.103Q-43.372 73.333-43.431 73.603Q-43.490 73.872-43.490 74.157Q-43.490 74.552-43.357 74.902Q-43.224 75.251-42.952 75.468Q-42.681 75.685-42.283 75.685Q-41.908 75.685-41.632 75.468Q-41.357 75.251-41.255 74.892Q-41.240 74.829-41.177 74.829L-41.072 74.829Q-41.036 74.829-41.011 74.857Q-40.986 74.884-40.986 74.923L-40.986 74.947Q-41.118 75.427-41.503 75.695Q-41.888 75.962-42.392 75.962Q-42.755 75.962-43.089 75.825Q-43.423 75.689-43.683 75.439Q-43.943 75.189-44.087 74.853Q-44.232 74.517-44.232 74.157M-38.583 75.884L-40.415 75.884L-40.415 75.587Q-40.142 75.587-39.974 75.540Q-39.806 75.493-39.806 75.325L-39.806 71.165Q-39.806 70.950-39.868 70.855Q-39.931 70.759-40.050 70.738Q-40.169 70.716-40.415 70.716L-40.415 70.419L-39.193 70.333L-39.193 75.325Q-39.193 75.493-39.025 75.540Q-38.857 75.587-38.583 75.587L-38.583 75.884M-38.040 75.052Q-38.040 74.568-37.638 74.273Q-37.236 73.978-36.685 73.859Q-36.134 73.739-35.642 73.739L-35.642 73.450Q-35.642 73.224-35.757 73.017Q-35.872 72.810-36.070 72.691Q-36.267 72.572-36.497 72.572Q-36.923 72.572-37.208 72.677Q-37.138 72.704-37.091 72.759Q-37.044 72.814-37.019 72.884Q-36.993 72.954-36.993 73.029Q-36.993 73.134-37.044 73.226Q-37.095 73.318-37.187 73.368Q-37.279 73.419-37.384 73.419Q-37.490 73.419-37.581 73.368Q-37.673 73.318-37.724 73.226Q-37.775 73.134-37.775 73.029Q-37.775 72.611-37.386 72.464Q-36.997 72.318-36.497 72.318Q-36.165 72.318-35.812 72.448Q-35.458 72.579-35.230 72.833Q-35.001 73.087-35.001 73.435L-35.001 75.236Q-35.001 75.368-34.929 75.478Q-34.857 75.587-34.728 75.587Q-34.603 75.587-34.534 75.482Q-34.466 75.376-34.466 75.236L-34.466 74.724L-34.185 74.724L-34.185 75.236Q-34.185 75.439-34.302 75.597Q-34.419 75.755-34.601 75.839Q-34.783 75.923-34.986 75.923Q-35.216 75.923-35.368 75.751Q-35.521 75.579-35.552 75.349Q-35.712 75.630-36.021 75.796Q-36.329 75.962-36.681 75.962Q-37.193 75.962-37.617 75.739Q-38.040 75.517-38.040 75.052M-37.353 75.052Q-37.353 75.337-37.126 75.523Q-36.900 75.708-36.607 75.708Q-36.361 75.708-36.136 75.591Q-35.911 75.474-35.777 75.271Q-35.642 75.068-35.642 74.814L-35.642 73.982Q-35.908 73.982-36.193 74.036Q-36.478 74.091-36.749 74.220Q-37.021 74.349-37.187 74.556Q-37.353 74.763-37.353 75.052M-33.849 75.876L-33.849 74.654Q-33.849 74.626-33.818 74.595Q-33.786 74.564-33.763 74.564L-33.658 74.564Q-33.587 74.564-33.572 74.626Q-33.509 74.947-33.370 75.187Q-33.232 75.427-32.999 75.568Q-32.767 75.708-32.458 75.708Q-32.220 75.708-32.011 75.648Q-31.802 75.587-31.665 75.439Q-31.529 75.290-31.529 75.044Q-31.529 74.790-31.740 74.624Q-31.950 74.458-32.220 74.404L-32.841 74.290Q-33.247 74.212-33.548 73.956Q-33.849 73.700-33.849 73.325Q-33.849 72.958-33.648 72.736Q-33.447 72.513-33.122 72.415Q-32.798 72.318-32.458 72.318Q-31.993 72.318-31.697 72.525L-31.474 72.341Q-31.450 72.318-31.419 72.318L-31.368 72.318Q-31.337 72.318-31.310 72.345Q-31.283 72.372-31.283 72.404L-31.283 73.388Q-31.283 73.419-31.308 73.448Q-31.333 73.478-31.368 73.478L-31.474 73.478Q-31.509 73.478-31.536 73.450Q-31.564 73.423-31.564 73.388Q-31.564 72.989-31.816 72.769Q-32.068 72.548-32.466 72.548Q-32.822 72.548-33.105 72.671Q-33.388 72.794-33.388 73.099Q-33.388 73.318-33.187 73.450Q-32.986 73.583-32.740 73.626L-32.115 73.739Q-31.685 73.829-31.376 74.126Q-31.068 74.423-31.068 74.837Q-31.068 75.407-31.466 75.685Q-31.865 75.962-32.458 75.962Q-33.009 75.962-33.361 75.626L-33.658 75.939Q-33.681 75.962-33.716 75.962L-33.763 75.962Q-33.786 75.962-33.818 75.931Q-33.849 75.900-33.849 75.876M-30.497 75.876L-30.497 74.654Q-30.497 74.626-30.466 74.595Q-30.435 74.564-30.411 74.564L-30.306 74.564Q-30.236 74.564-30.220 74.626Q-30.158 74.947-30.019 75.187Q-29.880 75.427-29.648 75.568Q-29.415 75.708-29.107 75.708Q-28.868 75.708-28.659 75.648Q-28.450 75.587-28.314 75.439Q-28.177 75.290-28.177 75.044Q-28.177 74.790-28.388 74.624Q-28.599 74.458-28.868 74.404L-29.490 74.290Q-29.896 74.212-30.197 73.956Q-30.497 73.700-30.497 73.325Q-30.497 72.958-30.296 72.736Q-30.095 72.513-29.771 72.415Q-29.447 72.318-29.107 72.318Q-28.642 72.318-28.345 72.525L-28.122 72.341Q-28.099 72.318-28.068 72.318L-28.017 72.318Q-27.986 72.318-27.958 72.345Q-27.931 72.372-27.931 72.404L-27.931 73.388Q-27.931 73.419-27.956 73.448Q-27.982 73.478-28.017 73.478L-28.122 73.478Q-28.158 73.478-28.185 73.450Q-28.212 73.423-28.212 73.388Q-28.212 72.989-28.464 72.769Q-28.716 72.548-29.115 72.548Q-29.470 72.548-29.753 72.671Q-30.036 72.794-30.036 73.099Q-30.036 73.318-29.835 73.450Q-29.634 73.583-29.388 73.626L-28.763 73.739Q-28.333 73.829-28.025 74.126Q-27.716 74.423-27.716 74.837Q-27.716 75.407-28.115 75.685Q-28.513 75.962-29.107 75.962Q-29.658 75.962-30.009 75.626L-30.306 75.939Q-30.329 75.962-30.365 75.962L-30.411 75.962Q-30.435 75.962-30.466 75.931Q-30.497 75.900-30.497 75.876M-25.329 75.884L-27.107 75.884L-27.107 75.587Q-26.833 75.587-26.665 75.540Q-26.497 75.493-26.497 75.325L-26.497 73.189Q-26.497 72.974-26.554 72.878Q-26.611 72.782-26.724 72.761Q-26.837 72.739-27.083 72.739L-27.083 72.443L-25.884 72.357L-25.884 75.325Q-25.884 75.493-25.738 75.540Q-25.591 75.587-25.329 75.587L-25.329 75.884M-26.771 70.962Q-26.771 70.771-26.636 70.640Q-26.501 70.509-26.306 70.509Q-26.185 70.509-26.081 70.572Q-25.978 70.634-25.915 70.738Q-25.853 70.841-25.853 70.962Q-25.853 71.157-25.984 71.292Q-26.115 71.427-26.306 71.427Q-26.505 71.427-26.638 71.294Q-26.771 71.161-26.771 70.962M-24.786 74.157Q-24.786 73.661-24.536 73.236Q-24.286 72.810-23.867 72.564Q-23.447 72.318-22.947 72.318Q-22.408 72.318-22.017 72.443Q-21.626 72.568-21.626 72.982Q-21.626 73.087-21.677 73.179Q-21.728 73.271-21.820 73.322Q-21.911 73.372-22.021 73.372Q-22.126 73.372-22.218 73.322Q-22.310 73.271-22.361 73.179Q-22.411 73.087-22.411 72.982Q-22.411 72.759-22.243 72.654Q-22.466 72.595-22.939 72.595Q-23.236 72.595-23.450 72.734Q-23.665 72.872-23.796 73.103Q-23.927 73.333-23.986 73.603Q-24.044 73.872-24.044 74.157Q-24.044 74.552-23.911 74.902Q-23.779 75.251-23.507 75.468Q-23.236 75.685-22.837 75.685Q-22.462 75.685-22.187 75.468Q-21.911 75.251-21.810 74.892Q-21.794 74.829-21.732 74.829L-21.626 74.829Q-21.591 74.829-21.566 74.857Q-21.540 74.884-21.540 74.923L-21.540 74.947Q-21.673 75.427-22.058 75.695Q-22.443 75.962-22.947 75.962Q-23.310 75.962-23.644 75.825Q-23.978 75.689-24.238 75.439Q-24.497 75.189-24.642 74.853Q-24.786 74.517-24.786 74.157\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M-15.735 75.884L-18.094 75.884L-18.094 75.587Q-17.770 75.587-17.528 75.540Q-17.286 75.493-17.286 75.325L-17.286 70.982Q-17.286 70.810-17.528 70.763Q-17.770 70.716-18.094 70.716L-18.094 70.419L-15.501 70.419Q-15.169 70.419-14.782 70.505Q-14.395 70.591-14.048 70.765Q-13.700 70.939-13.481 71.220Q-13.262 71.501-13.262 71.868Q-13.262 72.193-13.464 72.458Q-13.665 72.724-13.971 72.900Q-14.278 73.075-14.606 73.165Q-14.239 73.286-13.979 73.556Q-13.719 73.825-13.669 74.189L-13.575 74.884Q-13.505 75.333-13.407 75.564Q-13.309 75.794-13.012 75.794Q-12.766 75.794-12.634 75.577Q-12.501 75.361-12.501 75.099Q-12.481 75.025-12.399 75.005L-12.317 75.005Q-12.223 75.029-12.223 75.122Q-12.223 75.353-12.321 75.568Q-12.419 75.782-12.596 75.917Q-12.774 76.052-13.005 76.052Q-13.602 76.052-14.020 75.765Q-14.438 75.478-14.438 74.907L-14.438 74.212Q-14.438 73.931-14.591 73.716Q-14.743 73.501-14.993 73.388Q-15.243 73.275-15.516 73.275L-16.544 73.275L-16.544 75.325Q-16.544 75.489-16.300 75.538Q-16.055 75.587-15.735 75.587L-15.735 75.884M-16.544 70.982L-16.544 73.021L-15.614 73.021Q-15.294 73.021-15.026 72.968Q-14.759 72.915-14.559 72.788Q-14.360 72.661-14.243 72.429Q-14.126 72.197-14.126 71.868Q-14.126 71.216-14.522 70.966Q-14.919 70.716-15.614 70.716L-16.141 70.716Q-16.360 70.716-16.452 70.759Q-16.544 70.802-16.544 70.982M-9.438 75.884L-11.903 75.884L-11.903 75.587Q-11.571 75.587-11.313 75.540Q-11.055 75.493-11.055 75.325L-11.055 70.982Q-11.055 70.716-11.903 70.716L-11.903 70.419L-9.438 70.419L-9.438 70.716Q-10.290 70.716-10.290 70.982L-10.290 75.325Q-10.290 75.587-9.438 75.587L-9.438 75.884M-8.673 75.962L-8.673 74.157Q-8.673 74.130-8.641 74.099Q-8.610 74.068-8.587 74.068L-8.481 74.068Q-8.450 74.068-8.421 74.097Q-8.391 74.126-8.391 74.157Q-8.391 74.939-7.876 75.347Q-7.360 75.755-6.551 75.755Q-6.255 75.755-5.999 75.605Q-5.743 75.454-5.592 75.198Q-5.442 74.943-5.442 74.646Q-5.442 74.247-5.688 73.943Q-5.934 73.638-6.305 73.556L-7.426 73.298Q-7.766 73.224-8.053 73.003Q-8.341 72.782-8.507 72.464Q-8.673 72.146-8.673 71.794Q-8.673 71.364-8.442 71.009Q-8.212 70.654-7.831 70.452Q-7.450 70.251-7.024 70.251Q-6.774 70.251-6.528 70.310Q-6.282 70.368-6.063 70.491Q-5.844 70.614-5.680 70.794L-5.352 70.298Q-5.321 70.251-5.282 70.251L-5.235 70.251Q-5.208 70.251-5.176 70.282Q-5.145 70.314-5.145 70.341L-5.145 72.150Q-5.145 72.173-5.176 72.204Q-5.208 72.236-5.235 72.236L-5.337 72.236Q-5.368 72.236-5.397 72.206Q-5.426 72.177-5.426 72.150Q-5.426 72.017-5.469 71.831Q-5.512 71.646-5.577 71.491Q-5.641 71.337-5.741 71.179Q-5.841 71.021-5.930 70.931Q-6.360 70.525-7.024 70.525Q-7.301 70.525-7.561 70.657Q-7.821 70.790-7.979 71.025Q-8.137 71.259-8.137 71.540Q-8.137 71.896-7.897 72.167Q-7.657 72.439-7.290 72.525L-6.176 72.779Q-5.899 72.845-5.667 72.999Q-5.434 73.154-5.264 73.372Q-5.094 73.591-5.001 73.849Q-4.907 74.107-4.907 74.396Q-4.907 74.724-5.032 75.027Q-5.157 75.329-5.391 75.566Q-5.626 75.802-5.919 75.927Q-6.212 76.052-6.551 76.052Q-7.567 76.052-8.137 75.509L-8.466 76.005Q-8.497 76.052-8.536 76.052L-8.587 76.052Q-8.610 76.052-8.641 76.021Q-8.673 75.989-8.673 75.962M-3.954 73.150Q-3.954 72.556-3.721 72.025Q-3.489 71.493-3.073 71.093Q-2.657 70.693-2.124 70.472Q-1.591 70.251-0.985 70.251Q-0.548 70.251-0.149 70.433Q0.249 70.614 0.558 70.947L1.031 70.282Q1.062 70.251 1.093 70.251L1.140 70.251Q1.167 70.251 1.199 70.282Q1.230 70.314 1.230 70.341L1.230 72.478Q1.230 72.501 1.199 72.532Q1.167 72.564 1.140 72.564L1.023 72.564Q0.995 72.564 0.964 72.532Q0.933 72.501 0.933 72.478Q0.933 72.212 0.790 71.859Q0.648 71.505 0.468 71.267Q0.214 70.935-0.135 70.741Q-0.485 70.548-0.891 70.548Q-1.395 70.548-1.848 70.767Q-2.301 70.986-2.594 71.380Q-3.091 72.048-3.091 73.150Q-3.091 73.681-2.954 74.148Q-2.817 74.614-2.542 74.980Q-2.266 75.345-1.846 75.550Q-1.426 75.755-0.884 75.755Q-0.395 75.755 0.029 75.511Q0.452 75.267 0.700 74.847Q0.949 74.427 0.949 73.931Q0.949 73.896 0.978 73.870Q1.007 73.845 1.038 73.845L1.140 73.845Q1.183 73.845 1.206 73.874Q1.230 73.904 1.230 73.947Q1.230 74.384 1.054 74.773Q0.878 75.161 0.568 75.445Q0.257 75.728-0.153 75.890Q-0.563 76.052-0.985 76.052Q-1.575 76.052-2.116 75.831Q-2.657 75.611-3.073 75.206Q-3.489 74.802-3.721 74.273Q-3.954 73.743-3.954 73.150\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M7.180 77.876Q6.567 77.419 6.165 76.784Q5.762 76.150 5.567 75.404Q5.372 74.657 5.372 73.884Q5.372 73.111 5.567 72.364Q5.762 71.618 6.165 70.984Q6.567 70.349 7.180 69.892Q7.192 69.888 7.200 69.886Q7.208 69.884 7.219 69.884L7.297 69.884Q7.336 69.884 7.362 69.911Q7.387 69.939 7.387 69.982Q7.387 70.032 7.356 70.052Q6.848 70.505 6.526 71.128Q6.204 71.751 6.063 72.447Q5.922 73.142 5.922 73.884Q5.922 74.618 6.061 75.318Q6.200 76.017 6.524 76.642Q6.848 77.267 7.356 77.716Q7.387 77.736 7.387 77.786Q7.387 77.829 7.362 77.857Q7.336 77.884 7.297 77.884L7.219 77.884Q7.211 77.880 7.202 77.878Q7.192 77.876 7.180 77.876M10.348 74.572L8.106 74.572L8.106 74.275L10.676 70.618Q10.715 70.564 10.778 70.564L10.922 70.564Q10.973 70.564 11.004 70.595Q11.036 70.626 11.036 70.677L11.036 74.275L11.868 74.275L11.868 74.572L11.036 74.572L11.036 75.325Q11.036 75.587 11.860 75.587L11.860 75.884L9.524 75.884L9.524 75.587Q10.348 75.587 10.348 75.325L10.348 74.572M10.403 71.470L8.434 74.275L10.403 74.275\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M18.600 75.884L15.319 75.884L15.319 75.587Q15.643 75.587 15.886 75.540Q16.128 75.493 16.128 75.325L16.128 70.982Q16.128 70.810 15.886 70.763Q15.643 70.716 15.319 70.716L15.319 70.419L18.366 70.419Q18.792 70.419 19.225 70.573Q19.659 70.728 19.954 71.036Q20.249 71.345 20.249 71.779Q20.249 72.032 20.124 72.249Q19.999 72.466 19.798 72.622Q19.597 72.779 19.364 72.878Q19.132 72.978 18.874 73.029Q19.249 73.064 19.628 73.241Q20.007 73.419 20.247 73.718Q20.487 74.017 20.487 74.411Q20.487 74.864 20.204 75.198Q19.921 75.532 19.485 75.708Q19.050 75.884 18.600 75.884M16.839 73.173L16.839 75.325Q16.839 75.497 16.931 75.542Q17.022 75.587 17.241 75.587L18.366 75.587Q18.604 75.587 18.839 75.499Q19.073 75.411 19.259 75.251Q19.444 75.091 19.546 74.878Q19.647 74.665 19.647 74.411Q19.647 74.091 19.495 73.806Q19.343 73.521 19.073 73.347Q18.804 73.173 18.487 73.173L16.839 73.173M16.839 70.982L16.839 72.915L18.128 72.915Q18.370 72.915 18.608 72.833Q18.847 72.751 19.030 72.605Q19.214 72.458 19.327 72.241Q19.440 72.025 19.440 71.779Q19.440 71.568 19.354 71.366Q19.268 71.165 19.122 71.023Q18.975 70.880 18.780 70.798Q18.585 70.716 18.366 70.716L17.241 70.716Q17.022 70.716 16.931 70.759Q16.839 70.802 16.839 70.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M26.107 75.884L24.122 75.884L24.122 75.587Q24.396 75.587 24.564 75.540Q24.732 75.493 24.732 75.325L24.732 72.732L24.091 72.732L24.091 72.435L24.732 72.435L24.732 71.501Q24.732 71.236 24.849 70.999Q24.966 70.763 25.159 70.599Q25.353 70.435 25.601 70.343Q25.849 70.251 26.114 70.251Q26.400 70.251 26.624 70.409Q26.849 70.568 26.849 70.845Q26.849 71.001 26.743 71.111Q26.638 71.220 26.474 71.220Q26.318 71.220 26.208 71.111Q26.099 71.001 26.099 70.845Q26.099 70.638 26.259 70.532Q26.161 70.509 26.068 70.509Q25.837 70.509 25.665 70.665Q25.493 70.822 25.407 71.058Q25.322 71.294 25.322 71.517L25.322 72.435L26.290 72.435L26.290 72.732L25.345 72.732L25.345 75.325Q25.345 75.493 25.572 75.540Q25.798 75.587 26.107 75.587\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(64.706 -71.977)\">\u003Cpath d=\"M29.129 75.884L27.351 75.884L27.351 75.587Q27.625 75.587 27.793 75.540Q27.961 75.493 27.961 75.325L27.961 73.189Q27.961 72.974 27.904 72.878Q27.847 72.782 27.734 72.761Q27.621 72.739 27.375 72.739L27.375 72.443L28.574 72.357L28.574 75.325Q28.574 75.493 28.720 75.540Q28.867 75.587 29.129 75.587L29.129 75.884M27.687 70.962Q27.687 70.771 27.822 70.640Q27.957 70.509 28.152 70.509Q28.273 70.509 28.377 70.572Q28.480 70.634 28.543 70.738Q28.605 70.841 28.605 70.962Q28.605 71.157 28.474 71.292Q28.343 71.427 28.152 71.427Q27.953 71.427 27.820 71.294Q27.687 71.161 27.687 70.962M31.015 75.884L29.519 75.884L29.519 75.587Q30.152 75.587 30.574 75.107L31.343 74.197L30.351 72.997Q30.195 72.818 30.033 72.775Q29.871 72.732 29.566 72.732L29.566 72.435L31.254 72.435L31.254 72.732Q31.160 72.732 31.084 72.775Q31.008 72.818 31.008 72.907Q31.008 72.950 31.039 72.997L31.695 73.786L32.176 73.212Q32.293 73.075 32.293 72.939Q32.293 72.849 32.242 72.790Q32.191 72.732 32.109 72.732L32.109 72.435L33.597 72.435L33.597 72.732Q32.961 72.732 32.551 73.212L31.871 74.013L32.957 75.325Q33.117 75.501 33.277 75.544Q33.437 75.587 33.742 75.587L33.742 75.884L32.054 75.884L32.054 75.587Q32.144 75.587 32.222 75.544Q32.301 75.501 32.301 75.411Q32.301 75.388 32.269 75.325L31.527 74.419L30.941 75.107Q30.824 75.243 30.824 75.380Q30.824 75.466 30.875 75.527Q30.926 75.587 31.015 75.587L31.015 75.884M34.109 74.130Q34.109 73.650 34.342 73.234Q34.574 72.818 34.984 72.568Q35.394 72.318 35.871 72.318Q36.601 72.318 37 72.759Q37.398 73.200 37.398 73.931Q37.398 74.036 37.304 74.060L34.855 74.060L34.855 74.130Q34.855 74.540 34.976 74.896Q35.097 75.251 35.369 75.468Q35.640 75.685 36.070 75.685Q36.433 75.685 36.730 75.456Q37.027 75.228 37.129 74.876Q37.136 74.829 37.222 74.814L37.304 74.814Q37.398 74.841 37.398 74.923Q37.398 74.931 37.390 74.962Q37.328 75.189 37.189 75.372Q37.051 75.556 36.859 75.689Q36.668 75.822 36.449 75.892Q36.230 75.962 35.992 75.962Q35.621 75.962 35.283 75.825Q34.945 75.689 34.677 75.437Q34.410 75.185 34.260 74.845Q34.109 74.505 34.109 74.130M34.863 73.822L36.824 73.822Q36.824 73.517 36.722 73.226Q36.621 72.935 36.404 72.753Q36.187 72.572 35.871 72.572Q35.570 72.572 35.340 72.759Q35.109 72.947 34.986 73.238Q34.863 73.529 34.863 73.822M39.703 75.962Q39.222 75.962 38.814 75.718Q38.406 75.474 38.168 75.060Q37.929 74.646 37.929 74.157Q37.929 73.665 38.187 73.249Q38.445 72.833 38.877 72.595Q39.308 72.357 39.801 72.357Q40.422 72.357 40.871 72.794L40.871 71.165Q40.871 70.950 40.808 70.855Q40.746 70.759 40.629 70.738Q40.511 70.716 40.265 70.716L40.265 70.419L41.488 70.333L41.488 75.142Q41.488 75.353 41.551 75.448Q41.613 75.544 41.730 75.566Q41.847 75.587 42.097 75.587L42.097 75.884L40.847 75.962L40.847 75.478Q40.383 75.962 39.703 75.962M39.769 75.708Q40.109 75.708 40.402 75.517Q40.695 75.325 40.847 75.029L40.847 73.197Q40.699 72.923 40.437 72.767Q40.176 72.611 39.863 72.611Q39.238 72.611 38.955 73.058Q38.672 73.505 38.672 74.165Q38.672 74.810 38.924 75.259Q39.176 75.708 39.769 75.708M43.008 77.884L42.926 77.884Q42.890 77.884 42.865 77.855Q42.840 77.825 42.840 77.786Q42.840 77.736 42.871 77.716Q43.258 77.380 43.541 76.931Q43.824 76.482 43.990 75.982Q44.156 75.482 44.230 74.964Q44.304 74.447 44.304 73.884Q44.304 73.314 44.230 72.798Q44.156 72.282 43.990 71.786Q43.824 71.290 43.545 70.843Q43.265 70.396 42.871 70.052Q42.840 70.032 42.840 69.982Q42.840 69.943 42.865 69.913Q42.890 69.884 42.926 69.884L43.008 69.884Q43.019 69.884 43.029 69.886Q43.039 69.888 43.047 69.892Q43.660 70.349 44.062 70.984Q44.465 71.618 44.660 72.364Q44.855 73.111 44.855 73.884Q44.855 74.657 44.660 75.404Q44.465 76.150 44.062 76.784Q43.660 77.419 43.047 77.876Q43.035 77.876 43.027 77.878Q43.019 77.880 43.008 77.884\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M54.226-29.39a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-2 0\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M-44.232 74.157Q-44.232 73.661-43.982 73.236Q-43.732 72.810-43.312 72.564Q-42.892 72.318-42.392 72.318Q-41.853 72.318-41.462 72.443Q-41.072 72.568-41.072 72.982Q-41.072 73.087-41.122 73.179Q-41.173 73.271-41.265 73.322Q-41.357 73.372-41.466 73.372Q-41.572 73.372-41.663 73.322Q-41.755 73.271-41.806 73.179Q-41.857 73.087-41.857 72.982Q-41.857 72.759-41.689 72.654Q-41.911 72.595-42.384 72.595Q-42.681 72.595-42.896 72.734Q-43.111 72.872-43.242 73.103Q-43.372 73.333-43.431 73.603Q-43.490 73.872-43.490 74.157Q-43.490 74.552-43.357 74.902Q-43.224 75.251-42.952 75.468Q-42.681 75.685-42.283 75.685Q-41.908 75.685-41.632 75.468Q-41.357 75.251-41.255 74.892Q-41.240 74.829-41.177 74.829L-41.072 74.829Q-41.036 74.829-41.011 74.857Q-40.986 74.884-40.986 74.923L-40.986 74.947Q-41.118 75.427-41.503 75.695Q-41.888 75.962-42.392 75.962Q-42.755 75.962-43.089 75.825Q-43.423 75.689-43.683 75.439Q-43.943 75.189-44.087 74.853Q-44.232 74.517-44.232 74.157M-40.497 74.189Q-40.497 73.685-40.242 73.253Q-39.986 72.822-39.550 72.570Q-39.115 72.318-38.615 72.318Q-38.228 72.318-37.886 72.462Q-37.544 72.607-37.283 72.868Q-37.021 73.130-36.878 73.466Q-36.736 73.802-36.736 74.189Q-36.736 74.681-36.999 75.091Q-37.263 75.501-37.693 75.732Q-38.122 75.962-38.615 75.962Q-39.107 75.962-39.540 75.730Q-39.974 75.497-40.236 75.089Q-40.497 74.681-40.497 74.189M-38.615 75.685Q-38.158 75.685-37.906 75.462Q-37.654 75.239-37.566 74.888Q-37.478 74.536-37.478 74.091Q-37.478 73.661-37.572 73.323Q-37.665 72.986-37.919 72.779Q-38.173 72.572-38.615 72.572Q-39.263 72.572-39.507 72.988Q-39.751 73.404-39.751 74.091Q-39.751 74.536-39.663 74.888Q-39.575 75.239-39.324 75.462Q-39.072 75.685-38.615 75.685M-34.322 75.884L-36.177 75.884L-36.177 75.587Q-35.904 75.587-35.736 75.540Q-35.568 75.493-35.568 75.325L-35.568 73.189Q-35.568 72.974-35.630 72.878Q-35.693 72.782-35.812 72.761Q-35.931 72.739-36.177 72.739L-36.177 72.443L-34.986 72.357L-34.986 73.091Q-34.872 72.876-34.679 72.708Q-34.486 72.540-34.247 72.448Q-34.009 72.357-33.755 72.357Q-32.794 72.357-32.618 73.068Q-32.435 72.739-32.107 72.548Q-31.779 72.357-31.400 72.357Q-30.224 72.357-30.224 73.435L-30.224 75.325Q-30.224 75.493-30.056 75.540Q-29.888 75.587-29.618 75.587L-29.618 75.884L-31.474 75.884L-31.474 75.587Q-31.200 75.587-31.033 75.542Q-30.865 75.497-30.865 75.325L-30.865 73.450Q-30.865 73.064-30.990 72.837Q-31.115 72.611-31.466 72.611Q-31.771 72.611-32.027 72.773Q-32.283 72.935-32.431 73.204Q-32.579 73.474-32.579 73.771L-32.579 75.325Q-32.579 75.493-32.409 75.540Q-32.240 75.587-31.970 75.587L-31.970 75.884L-33.825 75.884L-33.825 75.587Q-33.552 75.587-33.384 75.540Q-33.216 75.493-33.216 75.325L-33.216 73.450Q-33.216 73.064-33.341 72.837Q-33.466 72.611-33.818 72.611Q-34.122 72.611-34.378 72.773Q-34.634 72.935-34.783 73.204Q-34.931 73.474-34.931 73.771L-34.931 75.325Q-34.931 75.493-34.761 75.540Q-34.591 75.587-34.322 75.587L-34.322 75.884M-27.290 77.435L-29.146 77.435L-29.146 77.142Q-28.876 77.142-28.708 77.097Q-28.540 77.052-28.540 76.876L-28.540 73.052Q-28.540 72.845-28.697 72.792Q-28.853 72.739-29.146 72.739L-29.146 72.443L-27.923 72.357L-27.923 72.822Q-27.693 72.599-27.378 72.478Q-27.064 72.357-26.724 72.357Q-26.251 72.357-25.847 72.603Q-25.443 72.849-25.210 73.265Q-24.978 73.681-24.978 74.157Q-24.978 74.532-25.126 74.861Q-25.275 75.189-25.544 75.441Q-25.814 75.693-26.158 75.827Q-26.501 75.962-26.861 75.962Q-27.150 75.962-27.421 75.841Q-27.693 75.720-27.900 75.509L-27.900 76.876Q-27.900 77.052-27.732 77.097Q-27.564 77.142-27.290 77.142L-27.290 77.435M-27.900 73.220L-27.900 75.060Q-27.747 75.349-27.486 75.529Q-27.224 75.708-26.915 75.708Q-26.630 75.708-26.408 75.570Q-26.185 75.431-26.033 75.200Q-25.880 74.970-25.802 74.698Q-25.724 74.427-25.724 74.157Q-25.724 73.825-25.849 73.468Q-25.974 73.111-26.222 72.874Q-26.470 72.638-26.818 72.638Q-27.142 72.638-27.437 72.794Q-27.732 72.950-27.900 73.220M-22.447 75.884L-24.427 75.884L-24.427 75.587Q-24.158 75.587-23.990 75.542Q-23.822 75.497-23.822 75.325L-23.822 73.189Q-23.822 72.974-23.884 72.878Q-23.947 72.782-24.064 72.761Q-24.181 72.739-24.427 72.739L-24.427 72.443L-23.259 72.357L-23.259 73.142Q-23.181 72.931-23.029 72.745Q-22.876 72.560-22.677 72.458Q-22.478 72.357-22.251 72.357Q-22.005 72.357-21.814 72.501Q-21.622 72.646-21.622 72.876Q-21.622 73.032-21.728 73.142Q-21.833 73.251-21.990 73.251Q-22.146 73.251-22.255 73.142Q-22.365 73.032-22.365 72.876Q-22.365 72.716-22.259 72.611Q-22.583 72.611-22.798 72.839Q-23.013 73.068-23.109 73.407Q-23.204 73.747-23.204 74.052L-23.204 75.325Q-23.204 75.493-22.978 75.540Q-22.751 75.587-22.447 75.587L-22.447 75.884M-21.142 74.130Q-21.142 73.650-20.909 73.234Q-20.677 72.818-20.267 72.568Q-19.857 72.318-19.380 72.318Q-18.650 72.318-18.251 72.759Q-17.853 73.200-17.853 73.931Q-17.853 74.036-17.947 74.060L-20.396 74.060L-20.396 74.130Q-20.396 74.540-20.275 74.896Q-20.154 75.251-19.882 75.468Q-19.611 75.685-19.181 75.685Q-18.818 75.685-18.521 75.456Q-18.224 75.228-18.122 74.876Q-18.115 74.829-18.029 74.814L-17.947 74.814Q-17.853 74.841-17.853 74.923Q-17.853 74.931-17.861 74.962Q-17.923 75.189-18.062 75.372Q-18.200 75.556-18.392 75.689Q-18.583 75.822-18.802 75.892Q-19.021 75.962-19.259 75.962Q-19.630 75.962-19.968 75.825Q-20.306 75.689-20.574 75.437Q-20.841 75.185-20.992 74.845Q-21.142 74.505-21.142 74.130M-20.388 73.822L-18.427 73.822Q-18.427 73.517-18.529 73.226Q-18.630 72.935-18.847 72.753Q-19.064 72.572-19.380 72.572Q-19.681 72.572-19.911 72.759Q-20.142 72.947-20.265 73.238Q-20.388 73.529-20.388 73.822M-17.322 75.876L-17.322 74.654Q-17.322 74.626-17.290 74.595Q-17.259 74.564-17.236 74.564L-17.130 74.564Q-17.060 74.564-17.044 74.626Q-16.982 74.947-16.843 75.187Q-16.704 75.427-16.472 75.568Q-16.240 75.708-15.931 75.708Q-15.693 75.708-15.484 75.648Q-15.275 75.587-15.138 75.439Q-15.001 75.290-15.001 75.044Q-15.001 74.790-15.212 74.624Q-15.423 74.458-15.693 74.404L-16.314 74.290Q-16.720 74.212-17.021 73.956Q-17.322 73.700-17.322 73.325Q-17.322 72.958-17.120 72.736Q-16.919 72.513-16.595 72.415Q-16.271 72.318-15.931 72.318Q-15.466 72.318-15.169 72.525L-14.947 72.341Q-14.923 72.318-14.892 72.318L-14.841 72.318Q-14.810 72.318-14.783 72.345Q-14.755 72.372-14.755 72.404L-14.755 73.388Q-14.755 73.419-14.781 73.448Q-14.806 73.478-14.841 73.478L-14.947 73.478Q-14.982 73.478-15.009 73.450Q-15.036 73.423-15.036 73.388Q-15.036 72.989-15.288 72.769Q-15.540 72.548-15.939 72.548Q-16.294 72.548-16.577 72.671Q-16.861 72.794-16.861 73.099Q-16.861 73.318-16.659 73.450Q-16.458 73.583-16.212 73.626L-15.587 73.739Q-15.158 73.829-14.849 74.126Q-14.540 74.423-14.540 74.837Q-14.540 75.407-14.939 75.685Q-15.337 75.962-15.931 75.962Q-16.482 75.962-16.833 75.626L-17.130 75.939Q-17.154 75.962-17.189 75.962L-17.236 75.962Q-17.259 75.962-17.290 75.931Q-17.322 75.900-17.322 75.876M-13.970 75.876L-13.970 74.654Q-13.970 74.626-13.939 74.595Q-13.908 74.564-13.884 74.564L-13.779 74.564Q-13.708 74.564-13.693 74.626Q-13.630 74.947-13.492 75.187Q-13.353 75.427-13.120 75.568Q-12.888 75.708-12.579 75.708Q-12.341 75.708-12.132 75.648Q-11.923 75.587-11.786 75.439Q-11.650 75.290-11.650 75.044Q-11.650 74.790-11.861 74.624Q-12.072 74.458-12.341 74.404L-12.962 74.290Q-13.368 74.212-13.669 73.956Q-13.970 73.700-13.970 73.325Q-13.970 72.958-13.769 72.736Q-13.568 72.513-13.243 72.415Q-12.919 72.318-12.579 72.318Q-12.115 72.318-11.818 72.525L-11.595 72.341Q-11.572 72.318-11.540 72.318L-11.490 72.318Q-11.458 72.318-11.431 72.345Q-11.404 72.372-11.404 72.404L-11.404 73.388Q-11.404 73.419-11.429 73.448Q-11.454 73.478-11.490 73.478L-11.595 73.478Q-11.630 73.478-11.658 73.450Q-11.685 73.423-11.685 73.388Q-11.685 72.989-11.937 72.769Q-12.189 72.548-12.587 72.548Q-12.943 72.548-13.226 72.671Q-13.509 72.794-13.509 73.099Q-13.509 73.318-13.308 73.450Q-13.107 73.583-12.861 73.626L-12.236 73.739Q-11.806 73.829-11.497 74.126Q-11.189 74.423-11.189 74.837Q-11.189 75.407-11.587 75.685Q-11.986 75.962-12.579 75.962Q-13.130 75.962-13.482 75.626L-13.779 75.939Q-13.802 75.962-13.837 75.962L-13.884 75.962Q-13.908 75.962-13.939 75.931Q-13.970 75.900-13.970 75.876M-10.661 74.130Q-10.661 73.650-10.429 73.234Q-10.197 72.818-9.786 72.568Q-9.376 72.318-8.900 72.318Q-8.169 72.318-7.771 72.759Q-7.372 73.200-7.372 73.931Q-7.372 74.036-7.466 74.060L-9.915 74.060L-9.915 74.130Q-9.915 74.540-9.794 74.896Q-9.673 75.251-9.402 75.468Q-9.130 75.685-8.700 75.685Q-8.337 75.685-8.040 75.456Q-7.743 75.228-7.642 74.876Q-7.634 74.829-7.548 74.814L-7.466 74.814Q-7.372 74.841-7.372 74.923Q-7.372 74.931-7.380 74.962Q-7.443 75.189-7.581 75.372Q-7.720 75.556-7.911 75.689Q-8.103 75.822-8.322 75.892Q-8.540 75.962-8.779 75.962Q-9.150 75.962-9.488 75.825Q-9.825 75.689-10.093 75.437Q-10.361 75.185-10.511 74.845Q-10.661 74.505-10.661 74.130M-9.908 73.822L-7.947 73.822Q-7.947 73.517-8.048 73.226Q-8.150 72.935-8.367 72.753Q-8.583 72.572-8.900 72.572Q-9.200 72.572-9.431 72.759Q-9.661 72.947-9.784 73.238Q-9.908 73.529-9.908 73.822M-5.068 75.962Q-5.548 75.962-5.956 75.718Q-6.365 75.474-6.603 75.060Q-6.841 74.646-6.841 74.157Q-6.841 73.665-6.583 73.249Q-6.325 72.833-5.894 72.595Q-5.462 72.357-4.970 72.357Q-4.349 72.357-3.900 72.794L-3.900 71.165Q-3.900 70.950-3.962 70.855Q-4.025 70.759-4.142 70.738Q-4.259 70.716-4.505 70.716L-4.505 70.419L-3.283 70.333L-3.283 75.142Q-3.283 75.353-3.220 75.448Q-3.158 75.544-3.040 75.566Q-2.923 75.587-2.673 75.587L-2.673 75.884L-3.923 75.962L-3.923 75.478Q-4.388 75.962-5.068 75.962M-5.001 75.708Q-4.661 75.708-4.368 75.517Q-4.075 75.325-3.923 75.029L-3.923 73.197Q-4.072 72.923-4.333 72.767Q-4.595 72.611-4.908 72.611Q-5.533 72.611-5.816 73.058Q-6.099 73.505-6.099 74.165Q-6.099 74.810-5.847 75.259Q-5.595 75.708-5.001 75.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M3.161 75.884L0.802 75.884L0.802 75.587Q1.126 75.587 1.368 75.540Q1.610 75.493 1.610 75.325L1.610 70.982Q1.610 70.810 1.368 70.763Q1.126 70.716 0.802 70.716L0.802 70.419L3.395 70.419Q3.727 70.419 4.114 70.505Q4.501 70.591 4.848 70.765Q5.196 70.939 5.415 71.220Q5.634 71.501 5.634 71.868Q5.634 72.193 5.432 72.458Q5.231 72.724 4.925 72.900Q4.618 73.075 4.290 73.165Q4.657 73.286 4.917 73.556Q5.177 73.825 5.227 74.189L5.321 74.884Q5.391 75.333 5.489 75.564Q5.587 75.794 5.884 75.794Q6.130 75.794 6.263 75.577Q6.395 75.361 6.395 75.099Q6.415 75.025 6.497 75.005L6.579 75.005Q6.673 75.029 6.673 75.122Q6.673 75.353 6.575 75.568Q6.477 75.782 6.300 75.917Q6.122 76.052 5.891 76.052Q5.294 76.052 4.876 75.765Q4.458 75.478 4.458 74.907L4.458 74.212Q4.458 73.931 4.305 73.716Q4.153 73.501 3.903 73.388Q3.653 73.275 3.380 73.275L2.352 73.275L2.352 75.325Q2.352 75.489 2.596 75.538Q2.841 75.587 3.161 75.587L3.161 75.884M2.352 70.982L2.352 73.021L3.282 73.021Q3.602 73.021 3.870 72.968Q4.138 72.915 4.337 72.788Q4.536 72.661 4.653 72.429Q4.770 72.197 4.770 71.868Q4.770 71.216 4.374 70.966Q3.977 70.716 3.282 70.716L2.755 70.716Q2.536 70.716 2.444 70.759Q2.352 70.802 2.352 70.982M9.458 75.884L6.993 75.884L6.993 75.587Q7.325 75.587 7.583 75.540Q7.841 75.493 7.841 75.325L7.841 70.982Q7.841 70.716 6.993 70.716L6.993 70.419L9.458 70.419L9.458 70.716Q8.606 70.716 8.606 70.982L8.606 75.325Q8.606 75.587 9.458 75.587L9.458 75.884M10.223 75.962L10.223 74.157Q10.223 74.130 10.255 74.099Q10.286 74.068 10.309 74.068L10.415 74.068Q10.446 74.068 10.475 74.097Q10.505 74.126 10.505 74.157Q10.505 74.939 11.020 75.347Q11.536 75.755 12.345 75.755Q12.641 75.755 12.897 75.605Q13.153 75.454 13.304 75.198Q13.454 74.943 13.454 74.646Q13.454 74.247 13.208 73.943Q12.962 73.638 12.591 73.556L11.470 73.298Q11.130 73.224 10.843 73.003Q10.555 72.782 10.389 72.464Q10.223 72.146 10.223 71.794Q10.223 71.364 10.454 71.009Q10.684 70.654 11.065 70.452Q11.446 70.251 11.872 70.251Q12.122 70.251 12.368 70.310Q12.614 70.368 12.833 70.491Q13.052 70.614 13.216 70.794L13.544 70.298Q13.575 70.251 13.614 70.251L13.661 70.251Q13.688 70.251 13.720 70.282Q13.751 70.314 13.751 70.341L13.751 72.150Q13.751 72.173 13.720 72.204Q13.688 72.236 13.661 72.236L13.559 72.236Q13.528 72.236 13.499 72.206Q13.470 72.177 13.470 72.150Q13.470 72.017 13.427 71.831Q13.384 71.646 13.319 71.491Q13.255 71.337 13.155 71.179Q13.055 71.021 12.966 70.931Q12.536 70.525 11.872 70.525Q11.595 70.525 11.335 70.657Q11.075 70.790 10.917 71.025Q10.759 71.259 10.759 71.540Q10.759 71.896 10.999 72.167Q11.239 72.439 11.606 72.525L12.720 72.779Q12.997 72.845 13.229 72.999Q13.462 73.154 13.632 73.372Q13.802 73.591 13.895 73.849Q13.989 74.107 13.989 74.396Q13.989 74.724 13.864 75.027Q13.739 75.329 13.505 75.566Q13.270 75.802 12.977 75.927Q12.684 76.052 12.345 76.052Q11.329 76.052 10.759 75.509L10.430 76.005Q10.399 76.052 10.360 76.052L10.309 76.052Q10.286 76.052 10.255 76.021Q10.223 75.989 10.223 75.962M14.942 73.150Q14.942 72.556 15.175 72.025Q15.407 71.493 15.823 71.093Q16.239 70.693 16.772 70.472Q17.305 70.251 17.911 70.251Q18.348 70.251 18.747 70.433Q19.145 70.614 19.454 70.947L19.927 70.282Q19.958 70.251 19.989 70.251L20.036 70.251Q20.063 70.251 20.095 70.282Q20.126 70.314 20.126 70.341L20.126 72.478Q20.126 72.501 20.095 72.532Q20.063 72.564 20.036 72.564L19.919 72.564Q19.891 72.564 19.860 72.532Q19.829 72.501 19.829 72.478Q19.829 72.212 19.686 71.859Q19.544 71.505 19.364 71.267Q19.110 70.935 18.761 70.741Q18.411 70.548 18.005 70.548Q17.501 70.548 17.048 70.767Q16.595 70.986 16.302 71.380Q15.805 72.048 15.805 73.150Q15.805 73.681 15.942 74.148Q16.079 74.614 16.354 74.980Q16.630 75.345 17.050 75.550Q17.470 75.755 18.012 75.755Q18.501 75.755 18.925 75.511Q19.348 75.267 19.596 74.847Q19.845 74.427 19.845 73.931Q19.845 73.896 19.874 73.870Q19.903 73.845 19.934 73.845L20.036 73.845Q20.079 73.845 20.102 73.874Q20.126 73.904 20.126 73.947Q20.126 74.384 19.950 74.773Q19.774 75.161 19.464 75.445Q19.153 75.728 18.743 75.890Q18.333 76.052 17.911 76.052Q17.321 76.052 16.780 75.831Q16.239 75.611 15.823 75.206Q15.407 74.802 15.175 74.273Q14.942 73.743 14.942 73.150\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M26.076 77.876Q25.463 77.419 25.061 76.784Q24.658 76.150 24.463 75.404Q24.268 74.657 24.268 73.884Q24.268 73.111 24.463 72.364Q24.658 71.618 25.061 70.984Q25.463 70.349 26.076 69.892Q26.088 69.888 26.096 69.886Q26.104 69.884 26.115 69.884L26.193 69.884Q26.232 69.884 26.258 69.911Q26.283 69.939 26.283 69.982Q26.283 70.032 26.252 70.052Q25.744 70.505 25.422 71.128Q25.100 71.751 24.959 72.447Q24.818 73.142 24.818 73.884Q24.818 74.618 24.957 75.318Q25.096 76.017 25.420 76.642Q25.744 77.267 26.252 77.716Q26.283 77.736 26.283 77.786Q26.283 77.829 26.258 77.857Q26.232 77.884 26.193 77.884L26.115 77.884Q26.107 77.880 26.098 77.878Q26.088 77.876 26.076 77.876\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M27.826 75.646L27.826 75.556Q27.885 75.349 28.076 75.325L28.565 75.325L28.565 71.556L27.619 71.556L27.619 72.068Q27.573 72.282 27.373 72.310L27.229 72.310Q27.030 72.282 26.979 72.068L26.979 71.228Q27.030 71.021 27.229 70.997L30.541 70.997Q30.737 71.017 30.787 71.228L30.787 72.068Q30.741 72.282 30.541 72.310L30.397 72.310Q30.198 72.282 30.147 72.068L30.147 71.556L29.205 71.556L29.205 75.325L29.694 75.325Q29.889 75.349 29.940 75.556L29.940 75.646Q29.889 75.861 29.694 75.884L28.076 75.884Q27.885 75.861 27.826 75.646M31.080 75.646L31.080 75.556Q31.123 75.349 31.330 75.325L31.752 75.325L31.752 71.556L31.330 71.556Q31.123 71.532 31.080 71.318L31.080 71.228Q31.123 71.021 31.330 70.997L32.147 70.997Q32.342 71.021 32.393 71.228L32.393 72.779Q32.854 72.396 33.451 72.396Q33.799 72.396 34.037 72.536Q34.276 72.677 34.391 72.935Q34.506 73.193 34.506 73.548L34.506 75.325L34.932 75.325Q35.139 75.349 35.178 75.556L35.178 75.646Q35.139 75.861 34.932 75.884L33.537 75.884Q33.342 75.861 33.291 75.646L33.291 75.556Q33.342 75.345 33.537 75.325L33.866 75.325L33.866 73.579Q33.866 73.271 33.776 73.113Q33.686 72.954 33.393 72.954Q33.123 72.954 32.895 73.085Q32.666 73.216 32.530 73.445Q32.393 73.673 32.393 73.939L32.393 75.325L32.819 75.325Q33.026 75.349 33.065 75.556L33.065 75.646Q33.026 75.861 32.819 75.884L31.330 75.884Q31.123 75.861 31.080 75.646M35.998 75.029L35.998 72.997L35.576 72.997Q35.369 72.974 35.326 72.755L35.326 72.669Q35.373 72.458 35.576 72.435L36.393 72.435Q36.588 72.458 36.639 72.669L36.639 74.997Q36.639 75.232 36.809 75.298Q36.979 75.364 37.264 75.364Q37.471 75.364 37.666 75.288Q37.862 75.212 37.987 75.062Q38.112 74.911 38.112 74.700L38.112 72.997L37.690 72.997Q37.479 72.974 37.440 72.755L37.440 72.669Q37.479 72.458 37.690 72.435L38.502 72.435Q38.701 72.458 38.752 72.669L38.752 75.325L39.178 75.325Q39.385 75.349 39.424 75.556L39.424 75.646Q39.385 75.861 39.178 75.884L38.362 75.884Q38.162 75.861 38.112 75.661Q37.709 75.923 37.201 75.923Q36.967 75.923 36.752 75.882Q36.537 75.841 36.371 75.739Q36.205 75.638 36.102 75.460Q35.998 75.282 35.998 75.029M39.448 75.646L39.448 75.556Q39.498 75.345 39.694 75.325L39.893 75.325L39.893 72.997L39.694 72.997Q39.487 72.974 39.448 72.755L39.448 72.669Q39.498 72.454 39.694 72.435L40.174 72.435Q40.366 72.458 40.424 72.669Q40.744 72.396 41.159 72.396Q41.350 72.396 41.518 72.505Q41.686 72.614 41.760 72.786Q41.936 72.595 42.159 72.495Q42.381 72.396 42.623 72.396Q43.041 72.396 43.196 72.738Q43.350 73.079 43.350 73.548L43.350 75.325L43.549 75.325Q43.760 75.349 43.799 75.556L43.799 75.646Q43.748 75.861 43.549 75.884L42.733 75.884Q42.537 75.861 42.487 75.646L42.487 75.556Q42.537 75.349 42.733 75.325L42.823 75.325L42.823 73.579Q42.823 72.954 42.573 72.954Q42.241 72.954 42.063 73.265Q41.885 73.575 41.885 73.939L41.885 75.325L42.088 75.325Q42.295 75.349 42.334 75.556L42.334 75.646Q42.284 75.861 42.088 75.884L41.272 75.884Q41.073 75.861 41.022 75.646L41.022 75.556Q41.073 75.349 41.272 75.325L41.358 75.325L41.358 73.579Q41.358 72.954 41.112 72.954Q40.780 72.954 40.602 73.267Q40.424 73.579 40.424 73.939L40.424 75.325L40.623 75.325Q40.830 75.349 40.869 75.556L40.869 75.646Q40.819 75.864 40.623 75.884L39.694 75.884Q39.487 75.861 39.448 75.646M44.491 75.646L44.491 71.556L44.069 71.556Q43.862 71.532 43.819 71.318L43.819 71.228Q43.862 71.021 44.069 70.997L44.885 70.997Q45.080 71.021 45.131 71.228L45.131 72.739Q45.342 72.572 45.606 72.484Q45.869 72.396 46.139 72.396Q46.479 72.396 46.776 72.540Q47.073 72.685 47.287 72.937Q47.502 73.189 47.618 73.501Q47.733 73.814 47.733 74.157Q47.733 74.622 47.506 75.032Q47.280 75.443 46.893 75.683Q46.506 75.923 46.037 75.923Q45.518 75.923 45.131 75.556L45.131 75.646Q45.080 75.864 44.885 75.884L44.741 75.884Q44.549 75.861 44.491 75.646M45.994 75.364Q46.303 75.364 46.553 75.195Q46.803 75.025 46.948 74.743Q47.092 74.462 47.092 74.157Q47.092 73.868 46.967 73.589Q46.842 73.310 46.610 73.132Q46.377 72.954 46.076 72.954Q45.756 72.954 45.494 73.140Q45.233 73.325 45.131 73.626L45.131 74.478Q45.221 74.845 45.442 75.105Q45.662 75.364 45.994 75.364M49.713 76.997Q49.600 76.997 49.510 76.907Q49.420 76.818 49.420 76.708Q49.420 76.532 49.612 76.458Q49.830 76.407 50.002 76.249Q50.174 76.091 50.241 75.868Q50.217 75.868 50.186 75.884L50.123 75.884Q49.893 75.884 49.727 75.722Q49.561 75.560 49.561 75.325Q49.561 75.091 49.725 74.931Q49.889 74.771 50.123 74.771Q50.334 74.771 50.498 74.892Q50.662 75.013 50.752 75.206Q50.842 75.400 50.842 75.611Q50.842 76.087 50.543 76.476Q50.244 76.864 49.780 76.989Q49.756 76.997 49.713 76.997\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M57.809 75.884L55.450 75.884L55.450 75.587Q55.774 75.587 56.016 75.540Q56.258 75.493 56.258 75.325L56.258 70.982Q56.258 70.810 56.016 70.763Q55.774 70.716 55.450 70.716L55.450 70.419L58.043 70.419Q58.375 70.419 58.762 70.505Q59.149 70.591 59.496 70.765Q59.844 70.939 60.063 71.220Q60.282 71.501 60.282 71.868Q60.282 72.193 60.080 72.458Q59.879 72.724 59.573 72.900Q59.266 73.075 58.938 73.165Q59.305 73.286 59.565 73.556Q59.825 73.825 59.875 74.189L59.969 74.884Q60.039 75.333 60.137 75.564Q60.235 75.794 60.532 75.794Q60.778 75.794 60.910 75.577Q61.043 75.361 61.043 75.099Q61.063 75.025 61.145 75.005L61.227 75.005Q61.321 75.029 61.321 75.122Q61.321 75.353 61.223 75.568Q61.125 75.782 60.948 75.917Q60.770 76.052 60.539 76.052Q59.942 76.052 59.524 75.765Q59.106 75.478 59.106 74.907L59.106 74.212Q59.106 73.931 58.953 73.716Q58.801 73.501 58.551 73.388Q58.301 73.275 58.028 73.275L57 73.275L57 75.325Q57 75.489 57.244 75.538Q57.489 75.587 57.809 75.587L57.809 75.884M57 70.982L57 73.021L57.930 73.021Q58.250 73.021 58.518 72.968Q58.785 72.915 58.985 72.788Q59.184 72.661 59.301 72.429Q59.418 72.197 59.418 71.868Q59.418 71.216 59.022 70.966Q58.625 70.716 57.930 70.716L57.403 70.716Q57.184 70.716 57.092 70.759Q57 70.802 57 70.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M63.383 75.939L61.359 70.982Q61.277 70.810 61.084 70.763Q60.890 70.716 60.582 70.716L60.582 70.419L62.773 70.419L62.773 70.716Q62.148 70.716 62.148 70.931Q62.152 70.947 62.154 70.960Q62.156 70.974 62.160 70.982L63.820 75.075L65.406 71.197Q65.429 71.150 65.429 71.083Q65.429 70.900 65.260 70.808Q65.090 70.716 64.879 70.716L64.879 70.419L66.590 70.419L66.590 70.716Q66.293 70.716 66.062 70.831Q65.832 70.947 65.726 71.197L63.789 75.939Q63.750 76.052 63.621 76.052L63.551 76.052Q63.422 76.052 63.383 75.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(107.385 -103.275)\">\u003Cpath d=\"M67.010 73.150Q67.010 72.556 67.242 72.025Q67.475 71.493 67.891 71.093Q68.307 70.693 68.840 70.472Q69.373 70.251 69.978 70.251Q70.416 70.251 70.814 70.433Q71.213 70.614 71.521 70.947L71.994 70.282Q72.025 70.251 72.057 70.251L72.103 70.251Q72.131 70.251 72.162 70.282Q72.193 70.314 72.193 70.341L72.193 72.478Q72.193 72.501 72.162 72.532Q72.131 72.564 72.103 72.564L71.986 72.564Q71.959 72.564 71.928 72.532Q71.896 72.501 71.896 72.478Q71.896 72.212 71.754 71.859Q71.611 71.505 71.432 71.267Q71.178 70.935 70.828 70.741Q70.478 70.548 70.072 70.548Q69.568 70.548 69.115 70.767Q68.662 70.986 68.369 71.380Q67.873 72.048 67.873 73.150Q67.873 73.681 68.010 74.148Q68.146 74.614 68.422 74.980Q68.697 75.345 69.117 75.550Q69.537 75.755 70.080 75.755Q70.568 75.755 70.992 75.511Q71.416 75.267 71.664 74.847Q71.912 74.427 71.912 73.931Q71.912 73.896 71.941 73.870Q71.971 73.845 72.002 73.845L72.103 73.845Q72.146 73.845 72.170 73.874Q72.193 73.904 72.193 73.947Q72.193 74.384 72.017 74.773Q71.842 75.161 71.531 75.445Q71.221 75.728 70.810 75.890Q70.400 76.052 69.978 76.052Q69.389 76.052 68.848 75.831Q68.307 75.611 67.891 75.206Q67.475 74.802 67.242 74.273Q67.010 73.743 67.010 73.150M73.314 77.884L73.232 77.884Q73.197 77.884 73.172 77.855Q73.146 77.825 73.146 77.786Q73.146 77.736 73.178 77.716Q73.564 77.380 73.848 76.931Q74.131 76.482 74.297 75.982Q74.463 75.482 74.537 74.964Q74.611 74.447 74.611 73.884Q74.611 73.314 74.537 72.798Q74.463 72.282 74.297 71.786Q74.131 71.290 73.851 70.843Q73.572 70.396 73.178 70.052Q73.146 70.032 73.146 69.982Q73.146 69.943 73.172 69.913Q73.197 69.884 73.232 69.884L73.314 69.884Q73.326 69.884 73.336 69.886Q73.346 69.888 73.353 69.892Q73.967 70.349 74.369 70.984Q74.771 71.618 74.967 72.364Q75.162 73.111 75.162 73.884Q75.162 74.657 74.967 75.404Q74.771 76.150 74.369 76.784Q73.967 77.419 73.353 77.876Q73.342 77.876 73.334 77.878Q73.326 77.880 73.314 77.884\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-accent)\" stroke=\"none\" d=\"M156.656-52.153a2 2 0 1 0-4 0 2 2 0 0 0 4 0m-2 0\"\u002F>\u003Cg transform=\"translate(164.203 -125.46)\">\u003Cpath d=\"M-42.888 75.884L-44.384 75.884L-44.384 75.587Q-43.751 75.587-43.329 75.107L-42.560 74.197L-43.552 72.997Q-43.708 72.818-43.870 72.775Q-44.033 72.732-44.337 72.732L-44.337 72.435L-42.650 72.435L-42.650 72.732Q-42.743 72.732-42.820 72.775Q-42.896 72.818-42.896 72.907Q-42.896 72.950-42.865 72.997L-42.208 73.786L-41.728 73.212Q-41.611 73.075-41.611 72.939Q-41.611 72.849-41.661 72.790Q-41.712 72.732-41.794 72.732L-41.794 72.435L-40.306 72.435L-40.306 72.732Q-40.943 72.732-41.353 73.212L-42.033 74.013L-40.947 75.325Q-40.786 75.501-40.626 75.544Q-40.466 75.587-40.161 75.587L-40.161 75.884L-41.849 75.884L-41.849 75.587Q-41.759 75.587-41.681 75.544Q-41.603 75.501-41.603 75.411Q-41.603 75.388-41.634 75.325L-42.376 74.419L-42.962 75.107Q-43.079 75.243-43.079 75.380Q-43.079 75.466-43.029 75.527Q-42.978 75.587-42.888 75.587L-42.888 75.884M-39.681 74.661Q-39.681 74.165-39.355 73.800Q-39.029 73.435-38.505 73.189L-38.775 73.029Q-39.072 72.845-39.255 72.550Q-39.439 72.255-39.439 71.915Q-39.439 71.521-39.220 71.210Q-39.001 70.900-38.648 70.732Q-38.294 70.564-37.911 70.564Q-37.638 70.564-37.365 70.642Q-37.091 70.720-36.874 70.868Q-36.658 71.017-36.521 71.243Q-36.384 71.470-36.384 71.763Q-36.384 72.169-36.654 72.476Q-36.923 72.782-37.345 72.997L-36.896 73.267Q-36.677 73.404-36.509 73.597Q-36.341 73.790-36.243 74.029Q-36.146 74.267-36.146 74.525Q-36.146 74.864-36.296 75.152Q-36.447 75.439-36.693 75.636Q-36.939 75.833-37.263 75.943Q-37.587 76.052-37.911 76.052Q-38.341 76.052-38.747 75.890Q-39.154 75.728-39.417 75.409Q-39.681 75.091-39.681 74.661M-39.193 74.661Q-39.193 75.146-38.802 75.462Q-38.411 75.779-37.911 75.779Q-37.618 75.779-37.320 75.667Q-37.021 75.556-36.827 75.337Q-36.634 75.118-36.634 74.806Q-36.634 74.575-36.775 74.364Q-36.915 74.154-37.122 74.036L-38.232 73.357Q-38.650 73.560-38.921 73.896Q-39.193 74.232-39.193 74.661M-38.607 72.228L-37.618 72.829Q-37.271 72.646-37.044 72.376Q-36.818 72.107-36.818 71.763Q-36.818 71.544-36.909 71.368Q-37.001 71.193-37.156 71.070Q-37.310 70.947-37.511 70.876Q-37.712 70.806-37.911 70.806Q-38.318 70.806-38.663 71.017Q-39.009 71.228-39.009 71.611Q-39.009 71.794-38.898 71.956Q-38.786 72.118-38.607 72.228M-33.665 76.052Q-34.337 76.052-34.734 75.628Q-35.130 75.204-35.283 74.585Q-35.435 73.966-35.435 73.298Q-35.435 72.638-35.163 72.005Q-34.892 71.372-34.378 70.968Q-33.865 70.564-33.193 70.564Q-32.904 70.564-32.656 70.663Q-32.408 70.763-32.261 70.964Q-32.115 71.165-32.115 71.470Q-32.115 71.575-32.165 71.667Q-32.216 71.759-32.308 71.810Q-32.400 71.861-32.505 71.861Q-32.673 71.861-32.786 71.747Q-32.900 71.634-32.900 71.470Q-32.900 71.310-32.790 71.193Q-32.681 71.075-32.513 71.075Q-32.712 70.806-33.193 70.806Q-33.611 70.806-33.943 71.083Q-34.275 71.361-34.450 71.779Q-34.650 72.279-34.650 73.181Q-34.486 72.857-34.206 72.657Q-33.927 72.458-33.579 72.458Q-33.095 72.458-32.710 72.704Q-32.325 72.950-32.113 73.359Q-31.900 73.767-31.900 74.251Q-31.900 74.743-32.130 75.155Q-32.361 75.568-32.771 75.810Q-33.181 76.052-33.665 76.052M-33.665 75.779Q-33.240 75.779-33.023 75.558Q-32.806 75.337-32.743 75.011Q-32.681 74.685-32.681 74.251Q-32.681 73.939-32.706 73.689Q-32.732 73.439-32.822 73.214Q-32.911 72.989-33.107 72.853Q-33.302 72.716-33.618 72.716Q-33.947 72.716-34.179 72.925Q-34.411 73.134-34.523 73.452Q-34.634 73.771-34.634 74.083Q-34.630 74.122-34.628 74.155Q-34.626 74.189-34.626 74.243Q-34.626 74.259-34.628 74.267Q-34.630 74.275-34.634 74.282Q-34.634 74.857-34.408 75.318Q-34.181 75.779-33.665 75.779M-29.189 74.435L-31.443 74.435L-31.443 73.884L-29.189 73.884L-29.189 74.435M-26.587 76.052Q-27.259 76.052-27.656 75.628Q-28.052 75.204-28.204 74.585Q-28.357 73.966-28.357 73.298Q-28.357 72.638-28.085 72.005Q-27.814 71.372-27.300 70.968Q-26.786 70.564-26.115 70.564Q-25.825 70.564-25.577 70.663Q-25.329 70.763-25.183 70.964Q-25.036 71.165-25.036 71.470Q-25.036 71.575-25.087 71.667Q-25.138 71.759-25.230 71.810Q-25.322 71.861-25.427 71.861Q-25.595 71.861-25.708 71.747Q-25.822 71.634-25.822 71.470Q-25.822 71.310-25.712 71.193Q-25.603 71.075-25.435 71.075Q-25.634 70.806-26.115 70.806Q-26.533 70.806-26.865 71.083Q-27.197 71.361-27.372 71.779Q-27.572 72.279-27.572 73.181Q-27.408 72.857-27.128 72.657Q-26.849 72.458-26.501 72.458Q-26.017 72.458-25.632 72.704Q-25.247 72.950-25.034 73.359Q-24.822 73.767-24.822 74.251Q-24.822 74.743-25.052 75.155Q-25.283 75.568-25.693 75.810Q-26.103 76.052-26.587 76.052M-26.587 75.779Q-26.161 75.779-25.945 75.558Q-25.728 75.337-25.665 75.011Q-25.603 74.685-25.603 74.251Q-25.603 73.939-25.628 73.689Q-25.654 73.439-25.743 73.214Q-25.833 72.989-26.029 72.853Q-26.224 72.716-26.540 72.716Q-26.868 72.716-27.101 72.925Q-27.333 73.134-27.445 73.452Q-27.556 73.771-27.556 74.083Q-27.552 74.122-27.550 74.155Q-27.548 74.189-27.548 74.243Q-27.548 74.259-27.550 74.267Q-27.552 74.275-27.556 74.282Q-27.556 74.857-27.329 75.318Q-27.103 75.779-26.587 75.779M-21.982 74.572L-24.224 74.572L-24.224 74.275L-21.654 70.618Q-21.615 70.564-21.552 70.564L-21.408 70.564Q-21.357 70.564-21.325 70.595Q-21.294 70.626-21.294 70.677L-21.294 74.275L-20.462 74.275L-20.462 74.572L-21.294 74.572L-21.294 75.325Q-21.294 75.587-20.470 75.587L-20.470 75.884L-22.806 75.884L-22.806 75.587Q-21.982 75.587-21.982 75.325L-21.982 74.572M-21.927 71.470L-23.896 74.275L-21.927 74.275\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The design space, qualitatively. Fixed-length RISC buys cheap decode at a cost in bytes; variable-length CISC packs code tighter and pays in decode hardware. Compressed RISC variants (Thumb, RVC) split the difference. Y86-64&#39;s variable-length bytes cost it slightly more decode than classic RISC, and it spends bytes freely.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:605.445px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 454.084 108.761\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403 4.684h85.358v-28.453h-85.358Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-36.126 7.528)\">\u003Cpath d=\"M-22.318-20.155Q-22.318-20.601-21.904-20.858Q-21.490-21.116-20.949-21.216Q-20.408-21.315-19.900-21.323Q-19.900-21.538-20.035-21.690Q-20.169-21.843-20.376-21.919Q-20.583-21.995-20.794-21.995Q-21.138-21.995-21.298-21.972L-21.298-21.913Q-21.298-21.745-21.417-21.630Q-21.537-21.515-21.701-21.515Q-21.876-21.515-21.992-21.638Q-22.107-21.761-22.107-21.929Q-22.107-22.335-21.726-22.444Q-21.345-22.554-20.787-22.554Q-20.517-22.554-20.249-22.476Q-19.982-22.397-19.757-22.247Q-19.533-22.097-19.396-21.876Q-19.259-21.655-19.259-21.378L-19.259-19.659Q-19.259-19.601-18.732-19.601Q-18.537-19.581-18.486-19.370L-18.486-19.280Q-18.537-19.065-18.732-19.042L-18.876-19.042Q-19.220-19.042-19.449-19.089Q-19.677-19.136-19.822-19.323Q-20.283-19.003-20.990-19.003Q-21.326-19.003-21.630-19.144Q-21.935-19.284-22.126-19.546Q-22.318-19.808-22.318-20.155M-21.677-20.147Q-21.677-19.874-21.435-19.718Q-21.193-19.562-20.908-19.562Q-20.689-19.562-20.456-19.620Q-20.224-19.679-20.062-19.817Q-19.900-19.956-19.900-20.179L-19.900-20.769Q-20.181-20.769-20.597-20.712Q-21.013-20.655-21.345-20.517Q-21.677-20.378-21.677-20.147M-16.615-19.003Q-17.079-19.003-17.445-19.253Q-17.810-19.503-18.015-19.907Q-18.220-20.312-18.220-20.769Q-18.220-21.112-18.095-21.433Q-17.970-21.753-17.738-22.003Q-17.505-22.253-17.201-22.392Q-16.896-22.530-16.540-22.530Q-16.029-22.530-15.622-22.210L-15.622-23.370L-16.044-23.370Q-16.255-23.394-16.294-23.608L-16.294-23.698Q-16.255-23.905-16.044-23.929L-15.232-23.929Q-15.033-23.905-14.982-23.698L-14.982-19.601L-14.556-19.601Q-14.349-19.577-14.310-19.370L-14.310-19.280Q-14.349-19.065-14.556-19.042L-15.372-19.042Q-15.572-19.065-15.622-19.280L-15.622-19.409Q-15.818-19.218-16.079-19.110Q-16.341-19.003-16.615-19.003M-16.576-19.562Q-16.216-19.562-15.964-19.831Q-15.712-20.101-15.622-20.476L-15.622-21.308Q-15.681-21.495-15.808-21.646Q-15.935-21.796-16.113-21.884Q-16.290-21.972-16.486-21.972Q-16.794-21.972-17.044-21.802Q-17.294-21.632-17.439-21.347Q-17.583-21.062-17.583-20.761Q-17.583-20.312-17.298-19.937Q-17.013-19.562-16.576-19.562M-12.369-19.003Q-12.833-19.003-13.199-19.253Q-13.564-19.503-13.769-19.907Q-13.974-20.312-13.974-20.769Q-13.974-21.112-13.849-21.433Q-13.724-21.753-13.492-22.003Q-13.259-22.253-12.954-22.392Q-12.650-22.530-12.294-22.530Q-11.783-22.530-11.376-22.210L-11.376-23.370L-11.798-23.370Q-12.009-23.394-12.048-23.608L-12.048-23.698Q-12.009-23.905-11.798-23.929L-10.986-23.929Q-10.787-23.905-10.736-23.698L-10.736-19.601L-10.310-19.601Q-10.103-19.577-10.064-19.370L-10.064-19.280Q-10.103-19.065-10.310-19.042L-11.126-19.042Q-11.326-19.065-11.376-19.280L-11.376-19.409Q-11.572-19.218-11.833-19.110Q-12.095-19.003-12.369-19.003M-12.329-19.562Q-11.970-19.562-11.718-19.831Q-11.466-20.101-11.376-20.476L-11.376-21.308Q-11.435-21.495-11.562-21.646Q-11.689-21.796-11.867-21.884Q-12.044-21.972-12.240-21.972Q-12.548-21.972-12.798-21.802Q-13.048-21.632-13.193-21.347Q-13.337-21.062-13.337-20.761Q-13.337-20.312-13.052-19.937Q-12.767-19.562-12.329-19.562M-7.673-17.499L-7.673-17.585Q-7.622-17.804-7.427-17.827L-6.962-17.827L-6.962-19.425Q-7.415-19.003-8.025-19.003Q-8.380-19.003-8.685-19.146Q-8.990-19.288-9.222-19.538Q-9.454-19.788-9.579-20.110Q-9.704-20.433-9.704-20.769Q-9.704-21.253-9.466-21.653Q-9.228-22.054-8.822-22.292Q-8.415-22.530-7.939-22.530Q-7.376-22.530-6.962-22.140L-6.962-22.300Q-6.912-22.511-6.712-22.530L-6.572-22.530Q-6.372-22.507-6.322-22.300L-6.322-17.827L-5.857-17.827Q-5.662-17.804-5.611-17.585L-5.611-17.499Q-5.662-17.288-5.857-17.265L-7.427-17.265Q-7.622-17.288-7.673-17.499M-7.978-19.562Q-7.607-19.562-7.331-19.815Q-7.056-20.069-6.962-20.433L-6.962-21.050Q-7.005-21.288-7.128-21.501Q-7.251-21.714-7.449-21.843Q-7.646-21.972-7.888-21.972Q-8.204-21.972-8.476-21.806Q-8.747-21.640-8.906-21.358Q-9.064-21.077-9.064-20.761Q-9.064-20.296-8.749-19.929Q-8.435-19.562-7.978-19.562\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.126 7.528)\">\u003Cpath d=\"M-1.122-20.456Q-1.122-20.741-0.966-20.995Q-0.810-21.249-0.560-21.423Q-0.310-21.597-0.025-21.683Q-0.263-21.757-0.490-21.899Q-0.716-22.042-0.859-22.251Q-1.001-22.460-1.001-22.706Q-1.001-23.105-0.755-23.399Q-0.509-23.694-0.126-23.853Q0.256-24.011 0.647-24.011Q1.038-24.011 1.421-23.853Q1.803-23.694 2.049-23.396Q2.296-23.097 2.296-22.706Q2.296-22.460 2.153-22.253Q2.010-22.046 1.784-21.901Q1.557-21.757 1.319-21.683Q1.772-21.546 2.092-21.220Q2.413-20.894 2.413-20.456Q2.413-20.019 2.155-19.675Q1.897-19.331 1.487-19.147Q1.077-18.964 0.647-18.964Q0.217-18.964-0.193-19.146Q-0.603-19.327-0.863-19.671Q-1.122-20.015-1.122-20.456M-0.482-20.456Q-0.482-20.183-0.316-19.968Q-0.150-19.753 0.112-19.638Q0.374-19.522 0.647-19.522Q0.921-19.522 1.180-19.638Q1.440-19.753 1.606-19.970Q1.772-20.187 1.772-20.456Q1.772-20.733 1.606-20.950Q1.440-21.167 1.180-21.284Q0.921-21.401 0.647-21.401Q0.374-21.401 0.112-21.284Q-0.150-21.167-0.316-20.952Q-0.482-20.737-0.482-20.456M-0.361-22.706Q-0.361-22.468-0.204-22.300Q-0.048-22.132 0.188-22.048Q0.424-21.964 0.647-21.964Q0.866-21.964 1.104-22.048Q1.342-22.132 1.499-22.302Q1.655-22.472 1.655-22.706Q1.655-22.940 1.499-23.110Q1.342-23.280 1.104-23.364Q0.866-23.448 0.647-23.448Q0.424-23.448 0.188-23.364Q-0.048-23.280-0.204-23.112Q-0.361-22.944-0.361-22.706M5.885-18.401Q5.354-18.710 4.954-19.198Q4.553-19.687 4.342-20.280Q4.131-20.874 4.131-21.491Q4.131-22.108 4.340-22.696Q4.549-23.284 4.946-23.765Q5.342-24.245 5.878-24.569Q5.948-24.593 5.979-24.593L6.069-24.593Q6.167-24.581 6.233-24.515Q6.299-24.448 6.299-24.347Q6.299-24.202 6.198-24.140Q5.749-23.851 5.422-23.435Q5.096-23.019 4.934-22.526Q4.772-22.034 4.772-21.491Q4.772-21.085 4.868-20.698Q4.963-20.312 5.141-19.976Q5.319-19.640 5.579-19.356Q5.838-19.073 6.186-18.843Q6.299-18.765 6.299-18.628Q6.299-18.530 6.233-18.460Q6.167-18.390 6.069-18.378L5.979-18.378Q5.921-18.378 5.885-18.401M7.698-18.683Q7.698-18.737 7.721-18.804L9.987-24.409Q10.081-24.593 10.276-24.593Q10.401-24.593 10.489-24.505Q10.577-24.417 10.577-24.288Q10.577-24.230 10.553-24.171L8.292-18.562Q8.190-18.378 8.010-18.378Q7.885-18.378 7.792-18.468Q7.698-18.558 7.698-18.683M10.276-18.378Q9.924-18.378 9.743-18.718Q9.561-19.058 9.561-19.440Q9.561-19.827 9.741-20.167Q9.921-20.507 10.276-20.507Q10.514-20.507 10.672-20.337Q10.831-20.167 10.905-19.923Q10.979-19.679 10.979-19.440Q10.979-19.206 10.905-18.962Q10.831-18.718 10.672-18.548Q10.514-18.378 10.276-18.378M10.276-18.937Q10.358-18.968 10.405-19.136Q10.452-19.304 10.452-19.440Q10.452-19.577 10.405-19.747Q10.358-19.917 10.276-19.944Q10.190-19.917 10.139-19.749Q10.088-19.581 10.088-19.440Q10.088-19.312 10.139-19.140Q10.190-18.968 10.276-18.937M8.010-22.456Q7.768-22.456 7.608-22.626Q7.448-22.796 7.374-23.042Q7.299-23.288 7.299-23.530Q7.299-23.913 7.479-24.253Q7.659-24.593 8.010-24.593Q8.249-24.593 8.407-24.423Q8.565-24.253 8.639-24.009Q8.713-23.765 8.713-23.530Q8.713-23.288 8.639-23.042Q8.565-22.796 8.407-22.626Q8.249-22.456 8.010-22.456M8.010-23.019Q8.100-23.062 8.143-23.218Q8.186-23.374 8.186-23.530Q8.186-23.659 8.139-23.835Q8.092-24.011 8.003-24.034Q7.987-24.034 7.958-23.999Q7.928-23.964 7.921-23.944Q7.827-23.757 7.827-23.530Q7.827-23.394 7.876-23.222Q7.924-23.050 8.010-23.019M11.487-19.280L11.487-19.370Q11.546-19.577 11.737-19.601L12.448-19.601L12.448-21.929L11.737-21.929Q11.542-21.952 11.487-22.171L11.487-22.257Q11.546-22.468 11.737-22.491L12.838-22.491Q13.038-22.472 13.088-22.257L13.088-21.929Q13.350-22.214 13.706-22.372Q14.061-22.530 14.448-22.530Q14.741-22.530 14.975-22.396Q15.210-22.261 15.210-21.995Q15.210-21.827 15.100-21.710Q14.991-21.593 14.823-21.593Q14.671-21.593 14.555-21.704Q14.440-21.815 14.440-21.972Q14.065-21.972 13.751-21.771Q13.436-21.569 13.262-21.235Q13.088-20.901 13.088-20.522L13.088-19.601L14.034-19.601Q14.241-19.577 14.280-19.370L14.280-19.280Q14.241-19.065 14.034-19.042L11.737-19.042Q11.546-19.065 11.487-19.280M16.253-19.280L16.253-23.370L15.831-23.370Q15.624-23.394 15.581-23.608L15.581-23.698Q15.624-23.905 15.831-23.929L16.647-23.929Q16.842-23.905 16.893-23.698L16.893-22.187Q17.104-22.355 17.368-22.442Q17.631-22.530 17.901-22.530Q18.241-22.530 18.538-22.386Q18.835-22.241 19.049-21.989Q19.264-21.737 19.380-21.425Q19.495-21.112 19.495-20.769Q19.495-20.304 19.268-19.894Q19.042-19.483 18.655-19.243Q18.268-19.003 17.799-19.003Q17.280-19.003 16.893-19.370L16.893-19.280Q16.842-19.062 16.647-19.042L16.503-19.042Q16.311-19.065 16.253-19.280M17.756-19.562Q18.065-19.562 18.315-19.731Q18.565-19.901 18.710-20.183Q18.854-20.464 18.854-20.769Q18.854-21.058 18.729-21.337Q18.604-21.616 18.372-21.794Q18.139-21.972 17.838-21.972Q17.518-21.972 17.256-21.786Q16.995-21.601 16.893-21.300L16.893-20.448Q16.983-20.081 17.204-19.821Q17.424-19.562 17.756-19.562M20.014-19.280L20.014-19.370Q20.053-19.577 20.260-19.601L20.667-19.601L21.596-20.819L20.725-21.929L20.307-21.929Q20.112-21.948 20.061-22.171L20.061-22.257Q20.112-22.468 20.307-22.491L21.467-22.491Q21.667-22.468 21.717-22.257L21.717-22.171Q21.667-21.952 21.467-21.929L21.358-21.929L21.854-21.272L22.331-21.929L22.213-21.929Q22.014-21.952 21.963-22.171L21.963-22.257Q22.014-22.468 22.213-22.491L23.374-22.491Q23.569-22.472 23.620-22.257L23.620-22.171Q23.569-21.952 23.374-21.929L22.963-21.929L22.116-20.819L23.077-19.601L23.483-19.601Q23.682-19.577 23.733-19.370L23.733-19.280Q23.694-19.065 23.483-19.042L22.331-19.042Q22.124-19.065 22.085-19.280L22.085-19.370Q22.124-19.577 22.331-19.601L22.460-19.601L21.854-20.456L21.268-19.601L21.413-19.601Q21.620-19.577 21.659-19.370L21.659-19.280Q21.620-19.065 21.413-19.042L20.260-19.042Q20.065-19.062 20.014-19.280M25.042-18.378L24.956-18.378Q24.850-18.390 24.782-18.462Q24.713-18.534 24.713-18.628Q24.713-18.769 24.819-18.835Q25.155-19.050 25.424-19.339Q25.694-19.628 25.878-19.976Q26.061-20.323 26.151-20.702Q26.241-21.081 26.241-21.491Q26.241-22.030 26.077-22.522Q25.913-23.015 25.594-23.429Q25.276-23.843 24.835-24.132Q24.713-24.214 24.713-24.347Q24.713-24.444 24.782-24.513Q24.850-24.581 24.956-24.593L25.042-24.593Q25.096-24.593 25.131-24.569Q25.518-24.347 25.858-23.999Q26.198-23.651 26.419-23.257Q26.639-22.862 26.760-22.417Q26.881-21.972 26.881-21.491Q26.881-21.007 26.760-20.556Q26.639-20.105 26.415-19.708Q26.190-19.312 25.866-18.978Q25.542-18.644 25.139-18.401Q25.069-18.378 25.042-18.378M29.967-17.929Q29.854-17.929 29.764-18.019Q29.674-18.108 29.674-18.218Q29.674-18.394 29.866-18.468Q30.085-18.519 30.256-18.677Q30.428-18.835 30.495-19.058Q30.471-19.058 30.440-19.042L30.378-19.042Q30.147-19.042 29.981-19.204Q29.815-19.366 29.815-19.601Q29.815-19.835 29.979-19.995Q30.143-20.155 30.378-20.155Q30.588-20.155 30.753-20.034Q30.917-19.913 31.006-19.720Q31.096-19.526 31.096-19.315Q31.096-18.839 30.797-18.450Q30.499-18.062 30.034-17.937Q30.010-17.929 29.967-17.929M33.174-18.683Q33.174-18.737 33.198-18.804L35.463-24.409Q35.557-24.593 35.753-24.593Q35.878-24.593 35.965-24.505Q36.053-24.417 36.053-24.288Q36.053-24.230 36.030-24.171L33.768-18.562Q33.667-18.378 33.487-18.378Q33.362-18.378 33.268-18.468Q33.174-18.558 33.174-18.683M35.753-18.378Q35.401-18.378 35.219-18.718Q35.038-19.058 35.038-19.440Q35.038-19.827 35.217-20.167Q35.397-20.507 35.753-20.507Q35.991-20.507 36.149-20.337Q36.307-20.167 36.381-19.923Q36.456-19.679 36.456-19.440Q36.456-19.206 36.381-18.962Q36.307-18.718 36.149-18.548Q35.991-18.378 35.753-18.378M35.753-18.937Q35.835-18.968 35.881-19.136Q35.928-19.304 35.928-19.440Q35.928-19.577 35.881-19.747Q35.835-19.917 35.753-19.944Q35.667-19.917 35.616-19.749Q35.565-19.581 35.565-19.440Q35.565-19.312 35.616-19.140Q35.667-18.968 35.753-18.937M33.487-22.456Q33.245-22.456 33.085-22.626Q32.924-22.796 32.850-23.042Q32.776-23.288 32.776-23.530Q32.776-23.913 32.956-24.253Q33.135-24.593 33.487-24.593Q33.725-24.593 33.883-24.423Q34.042-24.253 34.116-24.009Q34.190-23.765 34.190-23.530Q34.190-23.288 34.116-23.042Q34.042-22.796 33.883-22.626Q33.725-22.456 33.487-22.456M33.487-23.019Q33.577-23.062 33.620-23.218Q33.663-23.374 33.663-23.530Q33.663-23.659 33.616-23.835Q33.569-24.011 33.479-24.034Q33.463-24.034 33.434-23.999Q33.405-23.964 33.397-23.944Q33.303-23.757 33.303-23.530Q33.303-23.394 33.352-23.222Q33.401-23.050 33.487-23.019M36.963-19.280L36.963-19.370Q37.022-19.577 37.213-19.601L37.924-19.601L37.924-21.929L37.213-21.929Q37.018-21.952 36.963-22.171L36.963-22.257Q37.022-22.468 37.213-22.491L38.315-22.491Q38.514-22.472 38.565-22.257L38.565-21.929Q38.827-22.214 39.182-22.372Q39.538-22.530 39.924-22.530Q40.217-22.530 40.452-22.396Q40.686-22.261 40.686-21.995Q40.686-21.827 40.577-21.710Q40.467-21.593 40.299-21.593Q40.147-21.593 40.032-21.704Q39.917-21.815 39.917-21.972Q39.542-21.972 39.227-21.771Q38.913-21.569 38.739-21.235Q38.565-20.901 38.565-20.522L38.565-19.601L39.510-19.601Q39.717-19.577 39.756-19.370L39.756-19.280Q39.717-19.065 39.510-19.042L37.213-19.042Q37.022-19.065 36.963-19.280M41.393-20.155Q41.393-20.601 41.807-20.858Q42.221-21.116 42.762-21.216Q43.303-21.315 43.811-21.323Q43.811-21.538 43.676-21.690Q43.542-21.843 43.335-21.919Q43.128-21.995 42.917-21.995Q42.573-21.995 42.413-21.972L42.413-21.913Q42.413-21.745 42.294-21.630Q42.174-21.515 42.010-21.515Q41.835-21.515 41.719-21.638Q41.604-21.761 41.604-21.929Q41.604-22.335 41.985-22.444Q42.366-22.554 42.924-22.554Q43.194-22.554 43.462-22.476Q43.729-22.397 43.954-22.247Q44.178-22.097 44.315-21.876Q44.452-21.655 44.452-21.378L44.452-19.659Q44.452-19.601 44.979-19.601Q45.174-19.581 45.225-19.370L45.225-19.280Q45.174-19.065 44.979-19.042L44.835-19.042Q44.491-19.042 44.262-19.089Q44.034-19.136 43.889-19.323Q43.428-19.003 42.721-19.003Q42.385-19.003 42.081-19.144Q41.776-19.284 41.585-19.546Q41.393-19.808 41.393-20.155M42.034-20.147Q42.034-19.874 42.276-19.718Q42.518-19.562 42.803-19.562Q43.022-19.562 43.255-19.620Q43.487-19.679 43.649-19.817Q43.811-19.956 43.811-20.179L43.811-20.769Q43.530-20.769 43.114-20.712Q42.698-20.655 42.366-20.517Q42.034-20.378 42.034-20.147M45.491-19.280L45.491-19.370Q45.530-19.577 45.737-19.601L46.143-19.601L47.073-20.819L46.202-21.929L45.784-21.929Q45.588-21.948 45.538-22.171L45.538-22.257Q45.588-22.468 45.784-22.491L46.944-22.491Q47.143-22.468 47.194-22.257L47.194-22.171Q47.143-21.952 46.944-21.929L46.835-21.929L47.331-21.272L47.807-21.929L47.690-21.929Q47.491-21.952 47.440-22.171L47.440-22.257Q47.491-22.468 47.690-22.491L48.850-22.491Q49.046-22.472 49.096-22.257L49.096-22.171Q49.046-21.952 48.850-21.929L48.440-21.929L47.592-20.819L48.553-19.601L48.960-19.601Q49.159-19.577 49.210-19.370L49.210-19.280Q49.171-19.065 48.960-19.042L47.807-19.042Q47.600-19.065 47.561-19.280L47.561-19.370Q47.600-19.577 47.807-19.601L47.936-19.601L47.331-20.456L46.745-19.601L46.889-19.601Q47.096-19.577 47.135-19.370L47.135-19.280Q47.096-19.065 46.889-19.042L45.737-19.042Q45.542-19.062 45.491-19.280\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.126 7.528)\">\u003Cpath d=\"M-17.670-12.276Q-17.670-12.870-17.438-13.401Q-17.206-13.933-16.789-14.333Q-16.373-14.733-15.840-14.954Q-15.307-15.175-14.702-15.175Q-14.264-15.175-13.866-14.993Q-13.467-14.812-13.159-14.479L-12.686-15.144Q-12.655-15.175-12.623-15.175L-12.577-15.175Q-12.549-15.175-12.518-15.144Q-12.487-15.112-12.487-15.085L-12.487-12.948Q-12.487-12.925-12.518-12.894Q-12.549-12.862-12.577-12.862L-12.694-12.862Q-12.721-12.862-12.752-12.894Q-12.784-12.925-12.784-12.948Q-12.784-13.214-12.926-13.567Q-13.069-13.921-13.248-14.159Q-13.502-14.491-13.852-14.685Q-14.202-14.878-14.608-14.878Q-15.112-14.878-15.565-14.659Q-16.018-14.440-16.311-14.046Q-16.807-13.378-16.807-12.276Q-16.807-11.745-16.670-11.278Q-16.534-10.812-16.258-10.446Q-15.983-10.081-15.563-9.876Q-15.143-9.671-14.600-9.671Q-14.112-9.671-13.688-9.915Q-13.264-10.159-13.016-10.579Q-12.768-10.999-12.768-11.495Q-12.768-11.530-12.739-11.556Q-12.709-11.581-12.678-11.581L-12.577-11.581Q-12.534-11.581-12.510-11.552Q-12.487-11.522-12.487-11.479Q-12.487-11.042-12.663-10.653Q-12.838-10.265-13.149-9.981Q-13.459-9.698-13.870-9.536Q-14.280-9.374-14.702-9.374Q-15.291-9.374-15.832-9.595Q-16.373-9.815-16.789-10.220Q-17.206-10.624-17.438-11.153Q-17.670-11.683-17.670-12.276M-9.245-9.542L-11.709-9.542L-11.709-9.839Q-11.377-9.839-11.120-9.886Q-10.862-9.933-10.862-10.101L-10.862-14.444Q-10.862-14.710-11.709-14.710L-11.709-15.007L-9.245-15.007L-9.245-14.710Q-10.096-14.710-10.096-14.444L-10.096-10.101Q-10.096-9.839-9.245-9.839L-9.245-9.542M-8.479-9.464L-8.479-11.269Q-8.479-11.296-8.448-11.327Q-8.416-11.358-8.393-11.358L-8.288-11.358Q-8.256-11.358-8.227-11.329Q-8.198-11.300-8.198-11.269Q-8.198-10.487-7.682-10.079Q-7.166-9.671-6.358-9.671Q-6.061-9.671-5.805-9.821Q-5.549-9.972-5.399-10.228Q-5.248-10.483-5.248-10.780Q-5.248-11.179-5.495-11.483Q-5.741-11.788-6.112-11.870L-7.233-12.128Q-7.573-12.202-7.860-12.423Q-8.147-12.644-8.313-12.962Q-8.479-13.280-8.479-13.632Q-8.479-14.062-8.248-14.417Q-8.018-14.772-7.637-14.974Q-7.256-15.175-6.831-15.175Q-6.581-15.175-6.334-15.116Q-6.088-15.058-5.870-14.935Q-5.651-14.812-5.487-14.632L-5.159-15.128Q-5.127-15.175-5.088-15.175L-5.041-15.175Q-5.014-15.175-4.983-15.144Q-4.952-15.112-4.952-15.085L-4.952-13.276Q-4.952-13.253-4.983-13.222Q-5.014-13.190-5.041-13.190L-5.143-13.190Q-5.174-13.190-5.204-13.220Q-5.233-13.249-5.233-13.276Q-5.233-13.409-5.276-13.595Q-5.319-13.780-5.383-13.935Q-5.448-14.089-5.547-14.247Q-5.647-14.405-5.737-14.495Q-6.166-14.901-6.831-14.901Q-7.108-14.901-7.368-14.769Q-7.627-14.636-7.786-14.401Q-7.944-14.167-7.944-13.886Q-7.944-13.530-7.704-13.259Q-7.463-12.987-7.096-12.901L-5.983-12.647Q-5.706-12.581-5.473-12.427Q-5.241-12.272-5.071-12.054Q-4.901-11.835-4.807-11.577Q-4.713-11.319-4.713-11.030Q-4.713-10.702-4.838-10.399Q-4.963-10.097-5.198-9.860Q-5.432-9.624-5.725-9.499Q-6.018-9.374-6.358-9.374Q-7.373-9.374-7.944-9.917L-8.272-9.421Q-8.303-9.374-8.342-9.374L-8.393-9.374Q-8.416-9.374-8.448-9.405Q-8.479-9.437-8.479-9.464M-3.760-12.276Q-3.760-12.870-3.528-13.401Q-3.295-13.933-2.879-14.333Q-2.463-14.733-1.930-14.954Q-1.397-15.175-0.791-15.175Q-0.354-15.175 0.044-14.993Q0.443-14.812 0.752-14.479L1.224-15.144Q1.255-15.175 1.287-15.175L1.334-15.175Q1.361-15.175 1.392-15.144Q1.423-15.112 1.423-15.085L1.423-12.948Q1.423-12.925 1.392-12.894Q1.361-12.862 1.334-12.862L1.216-12.862Q1.189-12.862 1.158-12.894Q1.127-12.925 1.127-12.948Q1.127-13.214 0.984-13.567Q0.841-13.921 0.662-14.159Q0.408-14.491 0.058-14.685Q-0.291-14.878-0.698-14.878Q-1.202-14.878-1.655-14.659Q-2.108-14.440-2.401-14.046Q-2.897-13.378-2.897-12.276Q-2.897-11.745-2.760-11.278Q-2.623-10.812-2.348-10.446Q-2.073-10.081-1.653-9.876Q-1.233-9.671-0.690-9.671Q-0.202-9.671 0.222-9.915Q0.646-10.159 0.894-10.579Q1.142-10.999 1.142-11.495Q1.142-11.530 1.171-11.556Q1.201-11.581 1.232-11.581L1.334-11.581Q1.377-11.581 1.400-11.552Q1.423-11.522 1.423-11.479Q1.423-11.042 1.248-10.653Q1.072-10.265 0.761-9.981Q0.451-9.698 0.041-9.536Q-0.370-9.374-0.791-9.374Q-1.381-9.374-1.922-9.595Q-2.463-9.815-2.879-10.220Q-3.295-10.624-3.528-11.153Q-3.760-11.683-3.760-12.276\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.126 7.528)\">\u003Cpath d=\"M6.850-9.542L5.072-9.542L5.072-9.839Q5.346-9.839 5.514-9.886Q5.682-9.933 5.682-10.101L5.682-12.237Q5.682-12.452 5.625-12.548Q5.568-12.644 5.455-12.665Q5.342-12.687 5.096-12.687L5.096-12.983L6.295-13.069L6.295-10.101Q6.295-9.933 6.441-9.886Q6.588-9.839 6.850-9.839L6.850-9.542M5.408-14.464Q5.408-14.655 5.543-14.786Q5.678-14.917 5.873-14.917Q5.994-14.917 6.098-14.854Q6.201-14.792 6.264-14.688Q6.326-14.585 6.326-14.464Q6.326-14.269 6.195-14.134Q6.064-13.999 5.873-13.999Q5.674-13.999 5.541-14.132Q5.408-14.265 5.408-14.464M9.279-9.542L7.424-9.542L7.424-9.839Q7.697-9.839 7.865-9.886Q8.033-9.933 8.033-10.101L8.033-12.237Q8.033-12.452 7.971-12.548Q7.908-12.644 7.789-12.665Q7.670-12.687 7.424-12.687L7.424-12.983L8.615-13.069L8.615-12.335Q8.729-12.550 8.922-12.718Q9.115-12.886 9.354-12.978Q9.592-13.069 9.846-13.069Q11.014-13.069 11.014-11.991L11.014-10.101Q11.014-9.933 11.184-9.886Q11.354-9.839 11.623-9.839L11.623-9.542L9.768-9.542L9.768-9.839Q10.041-9.839 10.209-9.886Q10.377-9.933 10.377-10.101L10.377-11.976Q10.377-12.358 10.256-12.587Q10.135-12.815 9.783-12.815Q9.471-12.815 9.217-12.653Q8.963-12.491 8.816-12.222Q8.670-11.952 8.670-11.655L8.670-10.101Q8.670-9.933 8.840-9.886Q9.010-9.839 9.279-9.839L9.279-9.542M12.111-9.550L12.111-10.772Q12.111-10.800 12.143-10.831Q12.174-10.862 12.197-10.862L12.303-10.862Q12.373-10.862 12.389-10.800Q12.451-10.479 12.590-10.239Q12.729-9.999 12.961-9.858Q13.193-9.718 13.502-9.718Q13.740-9.718 13.949-9.778Q14.158-9.839 14.295-9.987Q14.432-10.136 14.432-10.382Q14.432-10.636 14.221-10.802Q14.010-10.968 13.740-11.022L13.119-11.136Q12.713-11.214 12.412-11.470Q12.111-11.726 12.111-12.101Q12.111-12.468 12.313-12.690Q12.514-12.913 12.838-13.011Q13.162-13.108 13.502-13.108Q13.967-13.108 14.264-12.901L14.486-13.085Q14.510-13.108 14.541-13.108L14.592-13.108Q14.623-13.108 14.650-13.081Q14.678-13.054 14.678-13.022L14.678-12.038Q14.678-12.007 14.652-11.978Q14.627-11.948 14.592-11.948L14.486-11.948Q14.451-11.948 14.424-11.976Q14.397-12.003 14.397-12.038Q14.397-12.437 14.145-12.657Q13.893-12.878 13.494-12.878Q13.139-12.878 12.856-12.755Q12.572-12.632 12.572-12.327Q12.572-12.108 12.773-11.976Q12.975-11.843 13.221-11.800L13.846-11.687Q14.275-11.597 14.584-11.300Q14.893-11.003 14.893-10.589Q14.893-10.019 14.494-9.741Q14.096-9.464 13.502-9.464Q12.951-9.464 12.600-9.800L12.303-9.487Q12.279-9.464 12.244-9.464L12.197-9.464Q12.174-9.464 12.143-9.495Q12.111-9.526 12.111-9.550M16.045-10.503L16.045-12.694L15.342-12.694L15.342-12.948Q15.697-12.948 15.939-13.181Q16.182-13.413 16.293-13.761Q16.404-14.108 16.404-14.464L16.686-14.464L16.686-12.991L17.861-12.991L17.861-12.694L16.686-12.694L16.686-10.519Q16.686-10.198 16.805-9.970Q16.924-9.741 17.205-9.741Q17.385-9.741 17.502-9.864Q17.619-9.987 17.672-10.167Q17.725-10.347 17.725-10.519L17.725-10.991L18.006-10.991L18.006-10.503Q18.006-10.249 17.900-10.009Q17.795-9.769 17.598-9.616Q17.400-9.464 17.143-9.464Q16.826-9.464 16.574-9.587Q16.322-9.710 16.184-9.944Q16.045-10.179 16.045-10.503M20.732-9.542L18.752-9.542L18.752-9.839Q19.022-9.839 19.189-9.884Q19.357-9.929 19.357-10.101L19.357-12.237Q19.357-12.452 19.295-12.548Q19.232-12.644 19.115-12.665Q18.998-12.687 18.752-12.687L18.752-12.983L19.920-13.069L19.920-12.284Q19.998-12.495 20.150-12.681Q20.303-12.866 20.502-12.968Q20.701-13.069 20.928-13.069Q21.174-13.069 21.365-12.925Q21.557-12.780 21.557-12.550Q21.557-12.394 21.451-12.284Q21.346-12.175 21.189-12.175Q21.033-12.175 20.924-12.284Q20.814-12.394 20.814-12.550Q20.814-12.710 20.920-12.815Q20.596-12.815 20.381-12.587Q20.166-12.358 20.070-12.019Q19.975-11.679 19.975-11.374L19.975-10.101Q19.975-9.933 20.201-9.886Q20.428-9.839 20.732-9.839L20.732-9.542M22.721-10.495L22.721-12.237Q22.721-12.452 22.658-12.548Q22.596-12.644 22.477-12.665Q22.357-12.687 22.111-12.687L22.111-12.983L23.357-13.069L23.357-10.519L23.357-10.495Q23.357-10.183 23.412-10.021Q23.467-9.858 23.617-9.788Q23.768-9.718 24.088-9.718Q24.518-9.718 24.791-10.056Q25.064-10.394 25.064-10.839L25.064-12.237Q25.064-12.452 25.002-12.548Q24.939-12.644 24.820-12.665Q24.701-12.687 24.455-12.687L24.455-12.983L25.701-13.069L25.701-10.284Q25.701-10.073 25.764-9.978Q25.826-9.882 25.945-9.860Q26.064-9.839 26.311-9.839L26.311-9.542L25.088-9.464L25.088-10.085Q24.920-9.796 24.639-9.630Q24.357-9.464 24.037-9.464Q22.721-9.464 22.721-10.495M26.799-11.269Q26.799-11.765 27.049-12.190Q27.299-12.616 27.719-12.862Q28.139-13.108 28.639-13.108Q29.178-13.108 29.568-12.983Q29.959-12.858 29.959-12.444Q29.959-12.339 29.908-12.247Q29.857-12.155 29.766-12.104Q29.674-12.054 29.564-12.054Q29.459-12.054 29.367-12.104Q29.275-12.155 29.225-12.247Q29.174-12.339 29.174-12.444Q29.174-12.667 29.342-12.772Q29.119-12.831 28.647-12.831Q28.350-12.831 28.135-12.692Q27.920-12.554 27.789-12.323Q27.658-12.093 27.600-11.823Q27.541-11.554 27.541-11.269Q27.541-10.874 27.674-10.524Q27.807-10.175 28.078-9.958Q28.350-9.741 28.748-9.741Q29.123-9.741 29.398-9.958Q29.674-10.175 29.775-10.534Q29.791-10.597 29.854-10.597L29.959-10.597Q29.994-10.597 30.020-10.569Q30.045-10.542 30.045-10.503L30.045-10.479Q29.912-9.999 29.527-9.731Q29.143-9.464 28.639-9.464Q28.275-9.464 27.941-9.601Q27.607-9.737 27.348-9.987Q27.088-10.237 26.943-10.573Q26.799-10.909 26.799-11.269M31.158-10.503L31.158-12.694L30.455-12.694L30.455-12.948Q30.811-12.948 31.053-13.181Q31.295-13.413 31.406-13.761Q31.518-14.108 31.518-14.464L31.799-14.464L31.799-12.991L32.975-12.991L32.975-12.694L31.799-12.694L31.799-10.519Q31.799-10.198 31.918-9.970Q32.037-9.741 32.318-9.741Q32.498-9.741 32.615-9.864Q32.732-9.987 32.785-10.167Q32.838-10.347 32.838-10.519L32.838-10.991L33.119-10.991L33.119-10.503Q33.119-10.249 33.014-10.009Q32.908-9.769 32.711-9.616Q32.514-9.464 32.256-9.464Q31.939-9.464 31.688-9.587Q31.436-9.710 31.297-9.944Q31.158-10.179 31.158-10.503M35.697-9.542L33.920-9.542L33.920-9.839Q34.193-9.839 34.361-9.886Q34.529-9.933 34.529-10.101L34.529-12.237Q34.529-12.452 34.473-12.548Q34.416-12.644 34.303-12.665Q34.189-12.687 33.943-12.687L33.943-12.983L35.143-13.069L35.143-10.101Q35.143-9.933 35.289-9.886Q35.436-9.839 35.697-9.839L35.697-9.542M34.256-14.464Q34.256-14.655 34.391-14.786Q34.525-14.917 34.721-14.917Q34.842-14.917 34.945-14.854Q35.049-14.792 35.111-14.688Q35.174-14.585 35.174-14.464Q35.174-14.269 35.043-14.134Q34.912-13.999 34.721-13.999Q34.522-13.999 34.389-14.132Q34.256-14.265 34.256-14.464M36.197-11.237Q36.197-11.741 36.453-12.173Q36.709-12.604 37.145-12.856Q37.580-13.108 38.080-13.108Q38.467-13.108 38.809-12.964Q39.150-12.819 39.412-12.558Q39.674-12.296 39.816-11.960Q39.959-11.624 39.959-11.237Q39.959-10.745 39.695-10.335Q39.432-9.925 39.002-9.694Q38.572-9.464 38.080-9.464Q37.588-9.464 37.154-9.696Q36.721-9.929 36.459-10.337Q36.197-10.745 36.197-11.237M38.080-9.741Q38.537-9.741 38.789-9.964Q39.041-10.187 39.129-10.538Q39.217-10.890 39.217-11.335Q39.217-11.765 39.123-12.103Q39.029-12.440 38.775-12.647Q38.522-12.854 38.080-12.854Q37.432-12.854 37.188-12.438Q36.943-12.022 36.943-11.335Q36.943-10.890 37.031-10.538Q37.119-10.187 37.371-9.964Q37.623-9.741 38.080-9.741M42.373-9.542L40.518-9.542L40.518-9.839Q40.791-9.839 40.959-9.886Q41.127-9.933 41.127-10.101L41.127-12.237Q41.127-12.452 41.064-12.548Q41.002-12.644 40.883-12.665Q40.764-12.687 40.518-12.687L40.518-12.983L41.709-13.069L41.709-12.335Q41.822-12.550 42.016-12.718Q42.209-12.886 42.447-12.978Q42.686-13.069 42.939-13.069Q44.107-13.069 44.107-11.991L44.107-10.101Q44.107-9.933 44.277-9.886Q44.447-9.839 44.717-9.839L44.717-9.542L42.861-9.542L42.861-9.839Q43.135-9.839 43.303-9.886Q43.471-9.933 43.471-10.101L43.471-11.976Q43.471-12.358 43.350-12.587Q43.229-12.815 42.877-12.815Q42.564-12.815 42.311-12.653Q42.057-12.491 41.910-12.222Q41.764-11.952 41.764-11.655L41.764-10.101Q41.764-9.933 41.934-9.886Q42.104-9.839 42.373-9.839\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" style=\"stroke-width:.8\">\u003Cpath d=\"M74.015 4.684h56.905v-28.453H74.015Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(110.903 2.778)\">\u003Cpath d=\"M-20.669-9.464Q-21.150-9.464-21.558-9.708Q-21.966-9.952-22.204-10.366Q-22.443-10.780-22.443-11.269Q-22.443-11.761-22.185-12.177Q-21.927-12.593-21.495-12.831Q-21.064-13.069-20.572-13.069Q-19.951-13.069-19.501-12.632L-19.501-14.261Q-19.501-14.476-19.564-14.571Q-19.626-14.667-19.744-14.688Q-19.861-14.710-20.107-14.710L-20.107-15.007L-18.884-15.093L-18.884-10.284Q-18.884-10.073-18.822-9.978Q-18.759-9.882-18.642-9.860Q-18.525-9.839-18.275-9.839L-18.275-9.542L-19.525-9.464L-19.525-9.948Q-19.990-9.464-20.669-9.464M-20.603-9.718Q-20.263-9.718-19.970-9.909Q-19.677-10.101-19.525-10.397L-19.525-12.229Q-19.673-12.503-19.935-12.659Q-20.197-12.815-20.509-12.815Q-21.134-12.815-21.417-12.368Q-21.701-11.921-21.701-11.261Q-21.701-10.616-21.449-10.167Q-21.197-9.718-20.603-9.718M-17.767-11.296Q-17.767-11.776-17.535-12.192Q-17.302-12.608-16.892-12.858Q-16.482-13.108-16.005-13.108Q-15.275-13.108-14.876-12.667Q-14.478-12.226-14.478-11.495Q-14.478-11.390-14.572-11.366L-17.021-11.366L-17.021-11.296Q-17.021-10.886-16.900-10.530Q-16.779-10.175-16.507-9.958Q-16.236-9.741-15.806-9.741Q-15.443-9.741-15.146-9.970Q-14.849-10.198-14.747-10.550Q-14.740-10.597-14.654-10.612L-14.572-10.612Q-14.478-10.585-14.478-10.503Q-14.478-10.495-14.486-10.464Q-14.548-10.237-14.687-10.054Q-14.826-9.870-15.017-9.737Q-15.208-9.604-15.427-9.534Q-15.646-9.464-15.884-9.464Q-16.255-9.464-16.593-9.601Q-16.931-9.737-17.199-9.989Q-17.466-10.241-17.617-10.581Q-17.767-10.921-17.767-11.296M-17.013-11.604L-15.052-11.604Q-15.052-11.909-15.154-12.200Q-15.255-12.491-15.472-12.673Q-15.689-12.854-16.005-12.854Q-16.306-12.854-16.537-12.667Q-16.767-12.479-16.890-12.188Q-17.013-11.897-17.013-11.604M-13.947-11.269Q-13.947-11.765-13.697-12.190Q-13.447-12.616-13.027-12.862Q-12.607-13.108-12.107-13.108Q-11.568-13.108-11.177-12.983Q-10.787-12.858-10.787-12.444Q-10.787-12.339-10.837-12.247Q-10.888-12.155-10.980-12.104Q-11.072-12.054-11.181-12.054Q-11.287-12.054-11.378-12.104Q-11.470-12.155-11.521-12.247Q-11.572-12.339-11.572-12.444Q-11.572-12.667-11.404-12.772Q-11.626-12.831-12.099-12.831Q-12.396-12.831-12.611-12.692Q-12.826-12.554-12.956-12.323Q-13.087-12.093-13.146-11.823Q-13.204-11.554-13.204-11.269Q-13.204-10.874-13.072-10.524Q-12.939-10.175-12.667-9.958Q-12.396-9.741-11.997-9.741Q-11.622-9.741-11.347-9.958Q-11.072-10.175-10.970-10.534Q-10.954-10.597-10.892-10.597L-10.787-10.597Q-10.751-10.597-10.726-10.569Q-10.701-10.542-10.701-10.503L-10.701-10.479Q-10.833-9.999-11.218-9.731Q-11.603-9.464-12.107-9.464Q-12.470-9.464-12.804-9.601Q-13.138-9.737-13.398-9.987Q-13.658-10.237-13.802-10.573Q-13.947-10.909-13.947-11.269M-10.212-11.237Q-10.212-11.741-9.956-12.173Q-9.701-12.604-9.265-12.856Q-8.829-13.108-8.329-13.108Q-7.943-13.108-7.601-12.964Q-7.259-12.819-6.997-12.558Q-6.736-12.296-6.593-11.960Q-6.451-11.624-6.451-11.237Q-6.451-10.745-6.714-10.335Q-6.978-9.925-7.408-9.694Q-7.837-9.464-8.329-9.464Q-8.822-9.464-9.255-9.696Q-9.689-9.929-9.951-10.337Q-10.212-10.745-10.212-11.237M-8.329-9.741Q-7.872-9.741-7.620-9.964Q-7.369-10.187-7.281-10.538Q-7.193-10.890-7.193-11.335Q-7.193-11.765-7.287-12.103Q-7.380-12.440-7.634-12.647Q-7.888-12.854-8.329-12.854Q-8.978-12.854-9.222-12.438Q-9.466-12.022-9.466-11.335Q-9.466-10.890-9.378-10.538Q-9.290-10.187-9.038-9.964Q-8.787-9.741-8.329-9.741\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(110.903 2.778)\">\u003Cpath d=\"M-3.905-9.464Q-4.386-9.464-4.794-9.708Q-5.202-9.952-5.440-10.366Q-5.679-10.780-5.679-11.269Q-5.679-11.761-5.421-12.177Q-5.163-12.593-4.731-12.831Q-4.300-13.069-3.808-13.069Q-3.187-13.069-2.737-12.632L-2.737-14.261Q-2.737-14.476-2.800-14.571Q-2.862-14.667-2.980-14.688Q-3.097-14.710-3.343-14.710L-3.343-15.007L-2.120-15.093L-2.120-10.284Q-2.120-10.073-2.058-9.978Q-1.995-9.882-1.878-9.860Q-1.761-9.839-1.511-9.839L-1.511-9.542L-2.761-9.464L-2.761-9.948Q-3.226-9.464-3.905-9.464M-3.839-9.718Q-3.499-9.718-3.206-9.909Q-2.913-10.101-2.761-10.397L-2.761-12.229Q-2.909-12.503-3.171-12.659Q-3.433-12.815-3.745-12.815Q-4.370-12.815-4.653-12.368Q-4.937-11.921-4.937-11.261Q-4.937-10.616-4.685-10.167Q-4.433-9.718-3.839-9.718M-1.003-11.296Q-1.003-11.776-0.771-12.192Q-0.538-12.608-0.128-12.858Q0.282-13.108 0.759-13.108Q1.489-13.108 1.888-12.667Q2.286-12.226 2.286-11.495Q2.286-11.390 2.192-11.366L-0.257-11.366L-0.257-11.296Q-0.257-10.886-0.136-10.530Q-0.015-10.175 0.257-9.958Q0.528-9.741 0.958-9.741Q1.321-9.741 1.618-9.970Q1.915-10.198 2.017-10.550Q2.024-10.597 2.110-10.612L2.192-10.612Q2.286-10.585 2.286-10.503Q2.286-10.495 2.278-10.464Q2.216-10.237 2.077-10.054Q1.938-9.870 1.747-9.737Q1.556-9.604 1.337-9.534Q1.118-9.464 0.880-9.464Q0.509-9.464 0.171-9.601Q-0.167-9.737-0.435-9.989Q-0.702-10.241-0.853-10.581Q-1.003-10.921-1.003-11.296M-0.249-11.604L1.712-11.604Q1.712-11.909 1.610-12.200Q1.509-12.491 1.292-12.673Q1.075-12.854 0.759-12.854Q0.458-12.854 0.228-12.667Q-0.003-12.479-0.126-12.188Q-0.249-11.897-0.249-11.604M4.782-9.542L2.802-9.542L2.802-9.839Q3.071-9.839 3.239-9.884Q3.407-9.929 3.407-10.101L3.407-12.237Q3.407-12.452 3.345-12.548Q3.282-12.644 3.165-12.665Q3.048-12.687 2.802-12.687L2.802-12.983L3.970-13.069L3.970-12.284Q4.048-12.495 4.200-12.681Q4.353-12.866 4.552-12.968Q4.751-13.069 4.978-13.069Q5.224-13.069 5.415-12.925Q5.606-12.780 5.606-12.550Q5.606-12.394 5.501-12.284Q5.395-12.175 5.239-12.175Q5.083-12.175 4.974-12.284Q4.864-12.394 4.864-12.550Q4.864-12.710 4.970-12.815Q4.645-12.815 4.431-12.587Q4.216-12.358 4.120-12.019Q4.024-11.679 4.024-11.374L4.024-10.101Q4.024-9.933 4.251-9.886Q4.478-9.839 4.782-9.839\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M178.48-20.923h86.979v-28.453H178.48Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M-20.572-9.542L-22.404-9.542L-22.404-9.839Q-22.130-9.839-21.962-9.886Q-21.794-9.933-21.794-10.101L-21.794-14.261Q-21.794-14.476-21.857-14.571Q-21.919-14.667-22.038-14.688Q-22.158-14.710-22.404-14.710L-22.404-15.007L-21.181-15.093L-21.181-10.101Q-21.181-9.933-21.013-9.886Q-20.845-9.839-20.572-9.839L-20.572-9.542M-20.126-11.237Q-20.126-11.741-19.870-12.173Q-19.615-12.604-19.179-12.856Q-18.744-13.108-18.244-13.108Q-17.857-13.108-17.515-12.964Q-17.173-12.819-16.912-12.558Q-16.650-12.296-16.507-11.960Q-16.365-11.624-16.365-11.237Q-16.365-10.745-16.628-10.335Q-16.892-9.925-17.322-9.694Q-17.751-9.464-18.244-9.464Q-18.736-9.464-19.169-9.696Q-19.603-9.929-19.865-10.337Q-20.126-10.745-20.126-11.237M-18.244-9.741Q-17.787-9.741-17.535-9.964Q-17.283-10.187-17.195-10.538Q-17.107-10.890-17.107-11.335Q-17.107-11.765-17.201-12.103Q-17.294-12.440-17.548-12.647Q-17.802-12.854-18.244-12.854Q-18.892-12.854-19.136-12.438Q-19.380-12.022-19.380-11.335Q-19.380-10.890-19.292-10.538Q-19.204-10.187-18.953-9.964Q-18.701-9.741-18.244-9.741M-15.783-10.374Q-15.783-10.858-15.380-11.153Q-14.978-11.448-14.427-11.567Q-13.876-11.687-13.384-11.687L-13.384-11.976Q-13.384-12.202-13.499-12.409Q-13.615-12.616-13.812-12.735Q-14.009-12.854-14.240-12.854Q-14.665-12.854-14.951-12.749Q-14.880-12.722-14.833-12.667Q-14.787-12.612-14.761-12.542Q-14.736-12.472-14.736-12.397Q-14.736-12.292-14.787-12.200Q-14.837-12.108-14.929-12.058Q-15.021-12.007-15.126-12.007Q-15.232-12.007-15.324-12.058Q-15.415-12.108-15.466-12.200Q-15.517-12.292-15.517-12.397Q-15.517-12.815-15.128-12.962Q-14.740-13.108-14.240-13.108Q-13.908-13.108-13.554-12.978Q-13.201-12.847-12.972-12.593Q-12.744-12.339-12.744-11.991L-12.744-10.190Q-12.744-10.058-12.671-9.948Q-12.599-9.839-12.470-9.839Q-12.345-9.839-12.277-9.944Q-12.208-10.050-12.208-10.190L-12.208-10.702L-11.927-10.702L-11.927-10.190Q-11.927-9.987-12.044-9.829Q-12.162-9.671-12.343-9.587Q-12.525-9.503-12.728-9.503Q-12.958-9.503-13.111-9.675Q-13.263-9.847-13.294-10.077Q-13.454-9.796-13.763-9.630Q-14.072-9.464-14.423-9.464Q-14.935-9.464-15.359-9.687Q-15.783-9.909-15.783-10.374M-15.095-10.374Q-15.095-10.089-14.869-9.903Q-14.642-9.718-14.349-9.718Q-14.103-9.718-13.878-9.835Q-13.654-9.952-13.519-10.155Q-13.384-10.358-13.384-10.612L-13.384-11.444Q-13.650-11.444-13.935-11.390Q-14.220-11.335-14.492-11.206Q-14.763-11.077-14.929-10.870Q-15.095-10.663-15.095-10.374M-9.818-9.464Q-10.298-9.464-10.706-9.708Q-11.115-9.952-11.353-10.366Q-11.591-10.780-11.591-11.269Q-11.591-11.761-11.333-12.177Q-11.076-12.593-10.644-12.831Q-10.212-13.069-9.720-13.069Q-9.099-13.069-8.650-12.632L-8.650-14.261Q-8.650-14.476-8.712-14.571Q-8.775-14.667-8.892-14.688Q-9.009-14.710-9.255-14.710L-9.255-15.007L-8.033-15.093L-8.033-10.284Q-8.033-10.073-7.970-9.978Q-7.908-9.882-7.790-9.860Q-7.673-9.839-7.423-9.839L-7.423-9.542L-8.673-9.464L-8.673-9.948Q-9.138-9.464-9.818-9.464M-9.751-9.718Q-9.412-9.718-9.119-9.909Q-8.826-10.101-8.673-10.397L-8.673-12.229Q-8.822-12.503-9.083-12.659Q-9.345-12.815-9.658-12.815Q-10.283-12.815-10.566-12.368Q-10.849-11.921-10.849-11.261Q-10.849-10.616-10.597-10.167Q-10.345-9.718-9.751-9.718M-6.435-10.007Q-6.435-10.190-6.298-10.327Q-6.162-10.464-5.970-10.464Q-5.779-10.464-5.646-10.331Q-5.513-10.198-5.513-10.007Q-5.513-9.808-5.646-9.675Q-5.779-9.542-5.970-9.542Q-6.162-9.542-6.298-9.679Q-6.435-9.815-6.435-10.007M-6.435-12.534Q-6.435-12.718-6.298-12.854Q-6.162-12.991-5.970-12.991Q-5.779-12.991-5.646-12.858Q-5.513-12.726-5.513-12.534Q-5.513-12.335-5.646-12.202Q-5.779-12.069-5.970-12.069Q-6.162-12.069-6.298-12.206Q-6.435-12.343-6.435-12.534\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M-0.443-9.671L-0.416-9.772Q-0.373-9.831-0.322-9.839Q0.373-9.839 0.592-9.886Q0.771-9.933 0.814-10.144L1.893-14.464Q1.936-14.636 1.936-14.663Q1.936-14.710 1.686-14.710L1.150-14.710Q0.592-14.710 0.295-14.556Q-0.002-14.401-0.154-14.118Q-0.307-13.835-0.514-13.229Q-0.557-13.167-0.611-13.159L-0.689-13.159Q-0.787-13.187-0.787-13.269Q-0.787-13.276-0.779-13.319L-0.217-14.940Q-0.186-14.995-0.123-15.007L4.877-15.007Q4.975-14.979 4.975-14.886L4.732-13.261Q4.713-13.183 4.631-13.159L4.549-13.159Q4.455-13.187 4.455-13.284Q4.525-13.835 4.533-14.054Q4.533-14.483 4.299-14.597Q4.064-14.710 3.564-14.710L3.037-14.710Q2.865-14.710 2.803-14.696Q2.740-14.683 2.707-14.624Q2.674-14.565 2.631-14.405L1.549-10.085Q1.541-10.054 1.541-9.999Q1.541-9.948 1.561-9.923Q1.580-9.897 1.631-9.878Q1.838-9.839 2.502-9.839Q2.600-9.808 2.600-9.718L2.572-9.612Q2.541-9.554 2.478-9.542L-0.346-9.542Q-0.381-9.542-0.412-9.583Q-0.443-9.624-0.443-9.671\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M13.450-10.519L8.137-10.519Q8.059-10.526 8.010-10.575Q7.962-10.624 7.962-10.702Q7.962-10.772 8.009-10.823Q8.055-10.874 8.137-10.886L13.450-10.886Q13.524-10.874 13.571-10.823Q13.618-10.772 13.618-10.702Q13.618-10.624 13.569-10.575Q13.520-10.526 13.450-10.519M13.450-12.206L8.137-12.206Q8.059-12.214 8.010-12.263Q7.962-12.312 7.962-12.390Q7.962-12.460 8.009-12.511Q8.055-12.562 8.137-12.573L13.450-12.573Q13.524-12.562 13.571-12.511Q13.618-12.460 13.618-12.390Q13.618-12.312 13.569-12.263Q13.520-12.214 13.450-12.206\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M18.699-9.542L16.981-9.542Q16.941-9.542 16.914-9.583Q16.887-9.624 16.887-9.671L16.910-9.772Q16.918-9.823 17.004-9.839Q17.734-9.839 17.859-10.366L18.887-14.464Q18.910-14.534 18.910-14.597Q18.910-14.659 18.844-14.679Q18.699-14.710 18.277-14.710Q18.172-14.741 18.172-14.839L18.203-14.940Q18.215-14.987 18.293-15.007L19.691-15.007Q19.750-15.007 19.787-14.978Q19.824-14.948 19.828-14.894L20.539-10.319L23.539-14.894Q23.617-15.007 23.734-15.007L25.078-15.007Q25.125-14.995 25.152-14.964Q25.180-14.933 25.180-14.886L25.156-14.780Q25.137-14.726 25.063-14.710Q24.621-14.710 24.461-14.671Q24.313-14.636 24.254-14.405L23.172-10.085Q23.156-9.991 23.156-9.948Q23.156-9.890 23.223-9.870Q23.363-9.839 23.789-9.839Q23.887-9.812 23.887-9.718L23.859-9.612Q23.852-9.562 23.773-9.542L21.691-9.542Q21.652-9.542 21.625-9.583Q21.598-9.624 21.598-9.671L21.621-9.772Q21.629-9.823 21.719-9.839Q22.156-9.839 22.315-9.878Q22.473-9.917 22.516-10.144L23.652-14.687L20.356-9.655Q20.289-9.542 20.156-9.542Q20.023-9.542 20.012-9.655L19.238-14.620L18.156-10.312Q18.141-10.210 18.141-10.159Q18.141-9.960 18.305-9.899Q18.469-9.839 18.719-9.839Q18.813-9.812 18.813-9.718L18.789-9.612Q18.781-9.562 18.699-9.542\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M27.644-7.542L26.468-7.542L26.468-15.542L27.644-15.542L27.644-15.175L26.835-15.175L26.835-7.909L27.644-7.909L27.644-7.542M28.187-10.765Q28.187-11.261 28.513-11.626Q28.839-11.991 29.363-12.237L29.093-12.397Q28.796-12.581 28.613-12.876Q28.429-13.171 28.429-13.511Q28.429-13.905 28.648-14.216Q28.867-14.526 29.220-14.694Q29.574-14.862 29.956-14.862Q30.230-14.862 30.503-14.784Q30.777-14.706 30.994-14.558Q31.210-14.409 31.347-14.183Q31.484-13.956 31.484-13.663Q31.484-13.257 31.214-12.950Q30.945-12.644 30.523-12.429L30.972-12.159Q31.191-12.022 31.359-11.829Q31.527-11.636 31.624-11.397Q31.722-11.159 31.722-10.901Q31.722-10.562 31.572-10.274Q31.421-9.987 31.175-9.790Q30.929-9.593 30.605-9.483Q30.281-9.374 29.956-9.374Q29.527-9.374 29.121-9.536Q28.714-9.698 28.451-10.017Q28.187-10.335 28.187-10.765M28.675-10.765Q28.675-10.280 29.066-9.964Q29.456-9.647 29.956-9.647Q30.249-9.647 30.548-9.759Q30.847-9.870 31.040-10.089Q31.234-10.308 31.234-10.620Q31.234-10.851 31.093-11.062Q30.953-11.272 30.746-11.390L29.636-12.069Q29.218-11.866 28.947-11.530Q28.675-11.194 28.675-10.765M29.261-13.198L30.249-12.597Q30.597-12.780 30.824-13.050Q31.050-13.319 31.050-13.663Q31.050-13.882 30.958-14.058Q30.867-14.233 30.712-14.356Q30.558-14.479 30.357-14.550Q30.156-14.620 29.956-14.620Q29.550-14.620 29.205-14.409Q28.859-14.198 28.859-13.815Q28.859-13.632 28.970-13.470Q29.081-13.308 29.261-13.198\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M37.098-11.358L34.625-11.358Q34.547-11.370 34.498-11.419Q34.450-11.468 34.450-11.542Q34.450-11.616 34.498-11.665Q34.547-11.714 34.625-11.726L37.098-11.726L37.098-14.206Q37.125-14.374 37.282-14.374Q37.356-14.374 37.405-14.325Q37.454-14.276 37.465-14.206L37.465-11.726L39.938-11.726Q40.106-11.694 40.106-11.542Q40.106-11.390 39.938-11.358L37.465-11.358L37.465-8.878Q37.454-8.808 37.405-8.759Q37.356-8.710 37.282-8.710Q37.125-8.710 37.098-8.878\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M42.700-9.780L42.700-9.870Q42.758-10.077 42.950-10.101L43.661-10.101L43.661-12.429L42.950-12.429Q42.754-12.452 42.700-12.671L42.700-12.757Q42.758-12.968 42.950-12.991L44.051-12.991Q44.250-12.972 44.301-12.757L44.301-12.429Q44.563-12.714 44.918-12.872Q45.274-13.030 45.661-13.030Q45.954-13.030 46.188-12.896Q46.422-12.761 46.422-12.495Q46.422-12.327 46.313-12.210Q46.204-12.093 46.036-12.093Q45.883-12.093 45.768-12.204Q45.653-12.315 45.653-12.472Q45.278-12.472 44.963-12.271Q44.649-12.069 44.475-11.735Q44.301-11.401 44.301-11.022L44.301-10.101L45.247-10.101Q45.454-10.077 45.493-9.870L45.493-9.780Q45.454-9.565 45.247-9.542L42.950-9.542Q42.758-9.565 42.700-9.780M47.465-9.780L47.465-13.870L47.043-13.870Q46.836-13.894 46.793-14.108L46.793-14.198Q46.836-14.405 47.043-14.429L47.860-14.429Q48.055-14.405 48.106-14.198L48.106-12.687Q48.317-12.854 48.581-12.942Q48.844-13.030 49.114-13.030Q49.454-13.030 49.750-12.886Q50.047-12.741 50.262-12.489Q50.477-12.237 50.592-11.925Q50.707-11.612 50.707-11.269Q50.707-10.804 50.481-10.394Q50.254-9.983 49.868-9.743Q49.481-9.503 49.012-9.503Q48.493-9.503 48.106-9.870L48.106-9.780Q48.055-9.562 47.860-9.542L47.715-9.542Q47.524-9.565 47.465-9.780M48.969-10.062Q49.278-10.062 49.528-10.231Q49.778-10.401 49.922-10.683Q50.067-10.964 50.067-11.269Q50.067-11.558 49.942-11.837Q49.817-12.116 49.584-12.294Q49.352-12.472 49.051-12.472Q48.731-12.472 48.469-12.286Q48.207-12.101 48.106-11.800L48.106-10.948Q48.196-10.581 48.416-10.321Q48.637-10.062 48.969-10.062M51.227-9.780L51.227-9.870Q51.266-10.077 51.473-10.101L51.879-10.101L52.809-11.319L51.938-12.429L51.520-12.429Q51.325-12.448 51.274-12.671L51.274-12.757Q51.325-12.968 51.520-12.991L52.680-12.991Q52.879-12.968 52.930-12.757L52.930-12.671Q52.879-12.452 52.680-12.429L52.571-12.429L53.067-11.772L53.543-12.429L53.426-12.429Q53.227-12.452 53.176-12.671L53.176-12.757Q53.227-12.968 53.426-12.991L54.586-12.991Q54.782-12.972 54.832-12.757L54.832-12.671Q54.782-12.452 54.586-12.429L54.176-12.429L53.329-11.319L54.289-10.101L54.696-10.101Q54.895-10.077 54.946-9.870L54.946-9.780Q54.907-9.565 54.696-9.542L53.543-9.542Q53.336-9.565 53.297-9.780L53.297-9.870Q53.336-10.077 53.543-10.101L53.672-10.101L53.067-10.956L52.481-10.101L52.625-10.101Q52.832-10.077 52.872-9.870L52.872-9.780Q52.832-9.565 52.625-9.542L51.473-9.542Q51.278-9.562 51.227-9.780\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(204.538 -23.607)\">\u003Cpath d=\"M56.586-7.542L55.411-7.542L55.411-7.909L56.219-7.909L56.219-15.175L55.411-15.175L55.411-15.542L56.586-15.542\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M179.29 30.291h85.359V1.84H179.29Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M-22.388-10.374Q-22.388-10.858-21.986-11.153Q-21.583-11.448-21.033-11.567Q-20.482-11.687-19.990-11.687L-19.990-11.976Q-19.990-12.202-20.105-12.409Q-20.220-12.616-20.417-12.735Q-20.615-12.854-20.845-12.854Q-21.271-12.854-21.556-12.749Q-21.486-12.722-21.439-12.667Q-21.392-12.612-21.367-12.542Q-21.341-12.472-21.341-12.397Q-21.341-12.292-21.392-12.200Q-21.443-12.108-21.535-12.058Q-21.626-12.007-21.732-12.007Q-21.837-12.007-21.929-12.058Q-22.021-12.108-22.072-12.200Q-22.122-12.292-22.122-12.397Q-22.122-12.815-21.734-12.962Q-21.345-13.108-20.845-13.108Q-20.513-13.108-20.160-12.978Q-19.806-12.847-19.578-12.593Q-19.349-12.339-19.349-11.991L-19.349-10.190Q-19.349-10.058-19.277-9.948Q-19.204-9.839-19.076-9.839Q-18.951-9.839-18.882-9.944Q-18.814-10.050-18.814-10.190L-18.814-10.702L-18.533-10.702L-18.533-10.190Q-18.533-9.987-18.650-9.829Q-18.767-9.671-18.949-9.587Q-19.130-9.503-19.333-9.503Q-19.564-9.503-19.716-9.675Q-19.869-9.847-19.900-10.077Q-20.060-9.796-20.369-9.630Q-20.677-9.464-21.029-9.464Q-21.540-9.464-21.964-9.687Q-22.388-9.909-22.388-10.374M-21.701-10.374Q-21.701-10.089-21.474-9.903Q-21.247-9.718-20.954-9.718Q-20.708-9.718-20.484-9.835Q-20.259-9.952-20.124-10.155Q-19.990-10.358-19.990-10.612L-19.990-11.444Q-20.255-11.444-20.540-11.390Q-20.826-11.335-21.097-11.206Q-21.369-11.077-21.535-10.870Q-21.701-10.663-21.701-10.374M-16.423-9.464Q-16.904-9.464-17.312-9.708Q-17.720-9.952-17.958-10.366Q-18.197-10.780-18.197-11.269Q-18.197-11.761-17.939-12.177Q-17.681-12.593-17.249-12.831Q-16.818-13.069-16.326-13.069Q-15.704-13.069-15.255-12.632L-15.255-14.261Q-15.255-14.476-15.318-14.571Q-15.380-14.667-15.497-14.688Q-15.615-14.710-15.861-14.710L-15.861-15.007L-14.638-15.093L-14.638-10.284Q-14.638-10.073-14.576-9.978Q-14.513-9.882-14.396-9.860Q-14.279-9.839-14.029-9.839L-14.029-9.542L-15.279-9.464L-15.279-9.948Q-15.744-9.464-16.423-9.464M-16.357-9.718Q-16.017-9.718-15.724-9.909Q-15.431-10.101-15.279-10.397L-15.279-12.229Q-15.427-12.503-15.689-12.659Q-15.951-12.815-16.263-12.815Q-16.888-12.815-17.171-12.368Q-17.454-11.921-17.454-11.261Q-17.454-10.616-17.203-10.167Q-16.951-9.718-16.357-9.718M-11.704-9.464Q-12.185-9.464-12.593-9.708Q-13.001-9.952-13.240-10.366Q-13.478-10.780-13.478-11.269Q-13.478-11.761-13.220-12.177Q-12.962-12.593-12.531-12.831Q-12.099-13.069-11.607-13.069Q-10.986-13.069-10.537-12.632L-10.537-14.261Q-10.537-14.476-10.599-14.571Q-10.662-14.667-10.779-14.688Q-10.896-14.710-11.142-14.710L-11.142-15.007L-9.919-15.093L-9.919-10.284Q-9.919-10.073-9.857-9.978Q-9.794-9.882-9.677-9.860Q-9.560-9.839-9.310-9.839L-9.310-9.542L-10.560-9.464L-10.560-9.948Q-11.025-9.464-11.704-9.464M-11.638-9.718Q-11.298-9.718-11.005-9.909Q-10.712-10.101-10.560-10.397L-10.560-12.229Q-10.708-12.503-10.970-12.659Q-11.232-12.815-11.544-12.815Q-12.169-12.815-12.453-12.368Q-12.736-11.921-12.736-11.261Q-12.736-10.616-12.484-10.167Q-12.232-9.718-11.638-9.718M-8.322-10.007Q-8.322-10.190-8.185-10.327Q-8.048-10.464-7.857-10.464Q-7.665-10.464-7.533-10.331Q-7.400-10.198-7.400-10.007Q-7.400-9.808-7.533-9.675Q-7.665-9.542-7.857-9.542Q-8.048-9.542-8.185-9.679Q-8.322-9.815-8.322-10.007M-8.322-12.534Q-8.322-12.718-8.185-12.854Q-8.048-12.991-7.857-12.991Q-7.665-12.991-7.533-12.858Q-7.400-12.726-7.400-12.534Q-7.400-12.335-7.533-12.202Q-7.665-12.069-7.857-12.069Q-8.048-12.069-8.185-12.206Q-8.322-12.343-8.322-12.534\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M-2.668-9.780L-2.668-9.870Q-2.610-10.077-2.418-10.101L-1.707-10.101L-1.707-12.429L-2.418-12.429Q-2.614-12.452-2.668-12.671L-2.668-12.757Q-2.610-12.968-2.418-12.991L-1.317-12.991Q-1.118-12.972-1.067-12.757L-1.067-12.429Q-0.805-12.714-0.450-12.872Q-0.094-13.030 0.293-13.030Q0.586-13.030 0.820-12.896Q1.054-12.761 1.054-12.495Q1.054-12.327 0.945-12.210Q0.836-12.093 0.668-12.093Q0.515-12.093 0.400-12.204Q0.285-12.315 0.285-12.472Q-0.090-12.472-0.405-12.271Q-0.719-12.069-0.893-11.735Q-1.067-11.401-1.067-11.022L-1.067-10.101L-0.121-10.101Q0.086-10.077 0.125-9.870L0.125-9.780Q0.086-9.565-0.121-9.542L-2.418-9.542Q-2.610-9.565-2.668-9.780M1.761-10.655Q1.761-11.101 2.175-11.358Q2.589-11.616 3.130-11.716Q3.672-11.815 4.179-11.823Q4.179-12.038 4.045-12.190Q3.910-12.343 3.703-12.419Q3.496-12.495 3.285-12.495Q2.941-12.495 2.781-12.472L2.781-12.413Q2.781-12.245 2.662-12.130Q2.543-12.015 2.379-12.015Q2.203-12.015 2.088-12.138Q1.972-12.261 1.972-12.429Q1.972-12.835 2.353-12.944Q2.734-13.054 3.293-13.054Q3.562-13.054 3.830-12.976Q4.097-12.897 4.322-12.747Q4.547-12.597 4.683-12.376Q4.820-12.155 4.820-11.878L4.820-10.159Q4.820-10.101 5.347-10.101Q5.543-10.081 5.593-9.870L5.593-9.780Q5.543-9.565 5.347-9.542L5.203-9.542Q4.859-9.542 4.630-9.589Q4.402-9.636 4.257-9.823Q3.797-9.503 3.089-9.503Q2.754-9.503 2.449-9.644Q2.144-9.784 1.953-10.046Q1.761-10.308 1.761-10.655M2.402-10.647Q2.402-10.374 2.644-10.218Q2.886-10.062 3.172-10.062Q3.390-10.062 3.623-10.120Q3.855-10.179 4.017-10.317Q4.179-10.456 4.179-10.679L4.179-11.269Q3.898-11.269 3.482-11.212Q3.066-11.155 2.734-11.017Q2.402-10.878 2.402-10.647M5.859-9.780L5.859-9.870Q5.898-10.077 6.105-10.101L6.511-10.101L7.441-11.319L6.570-12.429L6.152-12.429Q5.957-12.448 5.906-12.671L5.906-12.757Q5.957-12.968 6.152-12.991L7.312-12.991Q7.511-12.968 7.562-12.757L7.562-12.671Q7.511-12.452 7.312-12.429L7.203-12.429L7.699-11.772L8.175-12.429L8.058-12.429Q7.859-12.452 7.808-12.671L7.808-12.757Q7.859-12.968 8.058-12.991L9.218-12.991Q9.414-12.972 9.464-12.757L9.464-12.671Q9.414-12.452 9.218-12.429L8.808-12.429L7.961-11.319L8.922-10.101L9.328-10.101Q9.527-10.077 9.578-9.870L9.578-9.780Q9.539-9.565 9.328-9.542L8.175-9.542Q7.968-9.565 7.929-9.780L7.929-9.870Q7.968-10.077 8.175-10.101L8.304-10.101L7.699-10.956L7.113-10.101L7.257-10.101Q7.464-10.077 7.504-9.870L7.504-9.780Q7.464-9.565 7.257-9.542L6.105-9.542Q5.910-9.562 5.859-9.780\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M18.182-10.519L12.869-10.519Q12.791-10.526 12.742-10.575Q12.694-10.624 12.694-10.702Q12.694-10.772 12.741-10.823Q12.787-10.874 12.869-10.886L18.182-10.886Q18.256-10.874 18.303-10.823Q18.350-10.772 18.350-10.702Q18.350-10.624 18.301-10.575Q18.252-10.526 18.182-10.519M18.182-12.206L12.869-12.206Q12.791-12.214 12.742-12.263Q12.694-12.312 12.694-12.390Q12.694-12.460 12.741-12.511Q12.787-12.562 12.869-12.573L18.182-12.573Q18.256-12.562 18.303-12.511Q18.350-12.460 18.350-12.390Q18.350-12.312 18.301-12.263Q18.252-12.214 18.182-12.206\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M21.416-9.780L21.416-9.870Q21.474-10.077 21.666-10.101L22.377-10.101L22.377-12.429L21.666-12.429Q21.470-12.452 21.416-12.671L21.416-12.757Q21.474-12.968 21.666-12.991L22.767-12.991Q22.966-12.972 23.017-12.757L23.017-12.429Q23.279-12.714 23.634-12.872Q23.990-13.030 24.377-13.030Q24.670-13.030 24.904-12.896Q25.138-12.761 25.138-12.495Q25.138-12.327 25.029-12.210Q24.920-12.093 24.752-12.093Q24.599-12.093 24.484-12.204Q24.369-12.315 24.369-12.472Q23.994-12.472 23.679-12.271Q23.365-12.069 23.191-11.735Q23.017-11.401 23.017-11.022L23.017-10.101L23.963-10.101Q24.170-10.077 24.209-9.870L24.209-9.780Q24.170-9.565 23.963-9.542L21.666-9.542Q21.474-9.565 21.416-9.780M25.845-10.655Q25.845-11.101 26.259-11.358Q26.673-11.616 27.214-11.716Q27.756-11.815 28.263-11.823Q28.263-12.038 28.129-12.190Q27.994-12.343 27.787-12.419Q27.580-12.495 27.369-12.495Q27.025-12.495 26.865-12.472L26.865-12.413Q26.865-12.245 26.746-12.130Q26.627-12.015 26.463-12.015Q26.287-12.015 26.172-12.138Q26.056-12.261 26.056-12.429Q26.056-12.835 26.437-12.944Q26.818-13.054 27.377-13.054Q27.646-13.054 27.914-12.976Q28.181-12.897 28.406-12.747Q28.631-12.597 28.767-12.376Q28.904-12.155 28.904-11.878L28.904-10.159Q28.904-10.101 29.431-10.101Q29.627-10.081 29.677-9.870L29.677-9.780Q29.627-9.565 29.431-9.542L29.287-9.542Q28.943-9.542 28.714-9.589Q28.486-9.636 28.341-9.823Q27.881-9.503 27.173-9.503Q26.838-9.503 26.533-9.644Q26.228-9.784 26.037-10.046Q25.845-10.308 25.845-10.655M26.486-10.647Q26.486-10.374 26.728-10.218Q26.970-10.062 27.256-10.062Q27.474-10.062 27.707-10.120Q27.939-10.179 28.101-10.317Q28.263-10.456 28.263-10.679L28.263-11.269Q27.982-11.269 27.566-11.212Q27.150-11.155 26.818-11.017Q26.486-10.878 26.486-10.647M29.943-9.780L29.943-9.870Q29.982-10.077 30.189-10.101L30.595-10.101L31.525-11.319L30.654-12.429L30.236-12.429Q30.041-12.448 29.990-12.671L29.990-12.757Q30.041-12.968 30.236-12.991L31.396-12.991Q31.595-12.968 31.646-12.757L31.646-12.671Q31.595-12.452 31.396-12.429L31.287-12.429L31.783-11.772L32.259-12.429L32.142-12.429Q31.943-12.452 31.892-12.671L31.892-12.757Q31.943-12.968 32.142-12.991L33.302-12.991Q33.498-12.972 33.548-12.757L33.548-12.671Q33.498-12.452 33.302-12.429L32.892-12.429L32.045-11.319L33.005-10.101L33.412-10.101Q33.611-10.077 33.662-9.870L33.662-9.780Q33.623-9.565 33.412-9.542L32.259-9.542Q32.052-9.565 32.013-9.780L32.013-9.870Q32.052-10.077 32.259-10.101L32.388-10.101L31.783-10.956L31.197-10.101L31.341-10.101Q31.548-10.077 31.588-9.870L31.588-9.780Q31.548-9.565 31.341-9.542L30.189-9.542Q29.994-9.562 29.943-9.780\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M38.953-11.358L36.480-11.358Q36.402-11.370 36.353-11.419Q36.305-11.468 36.305-11.542Q36.305-11.616 36.353-11.665Q36.402-11.714 36.480-11.726L38.953-11.726L38.953-14.206Q38.980-14.374 39.137-14.374Q39.211-14.374 39.260-14.325Q39.309-14.276 39.320-14.206L39.320-11.726L41.793-11.726Q41.961-11.694 41.961-11.542Q41.961-11.390 41.793-11.358L39.320-11.358L39.320-8.878Q39.309-8.808 39.260-8.759Q39.211-8.710 39.137-8.710Q38.980-8.710 38.953-8.878\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.1 27.968)\">\u003Cpath d=\"M44.891-9.671L44.918-9.772Q44.961-9.831 45.012-9.839Q45.707-9.839 45.926-9.886Q46.105-9.933 46.148-10.144L47.227-14.464Q47.270-14.636 47.270-14.663Q47.270-14.710 47.020-14.710L46.484-14.710Q45.926-14.710 45.629-14.556Q45.332-14.401 45.180-14.118Q45.027-13.835 44.820-13.229Q44.777-13.167 44.723-13.159L44.645-13.159Q44.547-13.187 44.547-13.269Q44.547-13.276 44.555-13.319L45.117-14.940Q45.148-14.995 45.211-15.007L50.211-15.007Q50.309-14.979 50.309-14.886L50.066-13.261Q50.047-13.183 49.965-13.159L49.883-13.159Q49.789-13.187 49.789-13.284Q49.859-13.835 49.867-14.054Q49.867-14.483 49.633-14.597Q49.398-14.710 48.898-14.710L48.371-14.710Q48.199-14.710 48.137-14.696Q48.074-14.683 48.041-14.624Q48.008-14.565 47.965-14.405L46.883-10.085Q46.875-10.054 46.875-9.999Q46.875-9.948 46.895-9.923Q46.914-9.897 46.965-9.878Q47.172-9.839 47.836-9.839Q47.934-9.808 47.934-9.718L47.906-9.612Q47.875-9.554 47.812-9.542L44.988-9.542Q44.953-9.542 44.922-9.583Q44.891-9.624 44.891-9.671\" 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=\"M313.018 10.375h62.596V-29.46h-62.596Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(340.474 7.528)\">\u003Cpath d=\"M-13.475-19.042L-15.834-19.042L-15.834-19.339Q-15.510-19.339-15.268-19.386Q-15.026-19.433-15.026-19.601L-15.026-23.944Q-15.026-24.116-15.268-24.163Q-15.510-24.210-15.834-24.210L-15.834-24.507L-13.241-24.507Q-12.909-24.507-12.522-24.421Q-12.135-24.335-11.788-24.161Q-11.440-23.987-11.221-23.706Q-11.002-23.425-11.002-23.058Q-11.002-22.733-11.204-22.468Q-11.405-22.202-11.711-22.026Q-12.018-21.851-12.346-21.761Q-11.979-21.640-11.719-21.370Q-11.459-21.101-11.409-20.737L-11.315-20.042Q-11.245-19.593-11.147-19.362Q-11.049-19.132-10.752-19.132Q-10.506-19.132-10.373-19.349Q-10.241-19.565-10.241-19.827Q-10.221-19.901-10.139-19.921L-10.057-19.921Q-9.963-19.897-9.963-19.804Q-9.963-19.573-10.061-19.358Q-10.159-19.144-10.336-19.009Q-10.514-18.874-10.745-18.874Q-11.342-18.874-11.760-19.161Q-12.178-19.448-12.178-20.019L-12.178-20.714Q-12.178-20.995-12.331-21.210Q-12.483-21.425-12.733-21.538Q-12.983-21.651-13.256-21.651L-14.284-21.651L-14.284-19.601Q-14.284-19.437-14.040-19.388Q-13.795-19.339-13.475-19.339L-13.475-19.042M-14.284-23.944L-14.284-21.905L-13.354-21.905Q-13.034-21.905-12.766-21.958Q-12.498-22.011-12.299-22.138Q-12.100-22.265-11.983-22.497Q-11.866-22.730-11.866-23.058Q-11.866-23.710-12.262-23.960Q-12.659-24.210-13.354-24.210L-13.881-24.210Q-14.100-24.210-14.192-24.167Q-14.284-24.124-14.284-23.944M-7.178-19.042L-9.643-19.042L-9.643-19.339Q-9.311-19.339-9.053-19.386Q-8.795-19.433-8.795-19.601L-8.795-23.944Q-8.795-24.210-9.643-24.210L-9.643-24.507L-7.178-24.507L-7.178-24.210Q-8.030-24.210-8.030-23.944L-8.030-19.601Q-8.030-19.339-7.178-19.339L-7.178-19.042M-6.413-18.964L-6.413-20.769Q-6.413-20.796-6.381-20.827Q-6.350-20.858-6.327-20.858L-6.221-20.858Q-6.190-20.858-6.161-20.829Q-6.131-20.800-6.131-20.769Q-6.131-19.987-5.616-19.579Q-5.100-19.171-4.291-19.171Q-3.995-19.171-3.739-19.321Q-3.483-19.472-3.332-19.728Q-3.182-19.983-3.182-20.280Q-3.182-20.679-3.428-20.983Q-3.674-21.288-4.045-21.370L-5.166-21.628Q-5.506-21.702-5.793-21.923Q-6.081-22.144-6.247-22.462Q-6.413-22.780-6.413-23.132Q-6.413-23.562-6.182-23.917Q-5.952-24.272-5.571-24.474Q-5.190-24.675-4.764-24.675Q-4.514-24.675-4.268-24.616Q-4.022-24.558-3.803-24.435Q-3.584-24.312-3.420-24.132L-3.092-24.628Q-3.061-24.675-3.022-24.675L-2.975-24.675Q-2.948-24.675-2.916-24.644Q-2.885-24.612-2.885-24.585L-2.885-22.776Q-2.885-22.753-2.916-22.722Q-2.948-22.690-2.975-22.690L-3.077-22.690Q-3.108-22.690-3.137-22.720Q-3.166-22.749-3.166-22.776Q-3.166-22.909-3.209-23.095Q-3.252-23.280-3.317-23.435Q-3.381-23.589-3.481-23.747Q-3.581-23.905-3.670-23.995Q-4.100-24.401-4.764-24.401Q-5.041-24.401-5.301-24.269Q-5.561-24.136-5.719-23.901Q-5.877-23.667-5.877-23.386Q-5.877-23.030-5.637-22.759Q-5.397-22.487-5.030-22.401L-3.916-22.147Q-3.639-22.081-3.407-21.927Q-3.174-21.772-3.004-21.554Q-2.834-21.335-2.741-21.077Q-2.647-20.819-2.647-20.530Q-2.647-20.202-2.772-19.899Q-2.897-19.597-3.131-19.360Q-3.366-19.124-3.659-18.999Q-3.952-18.874-4.291-18.874Q-5.307-18.874-5.877-19.417L-6.206-18.921Q-6.237-18.874-6.276-18.874L-6.327-18.874Q-6.350-18.874-6.381-18.905Q-6.413-18.937-6.413-18.964M-1.694-21.776Q-1.694-22.370-1.461-22.901Q-1.229-23.433-0.813-23.833Q-0.397-24.233 0.136-24.454Q0.669-24.675 1.275-24.675Q1.712-24.675 2.111-24.493Q2.509-24.312 2.818-23.980L3.291-24.644Q3.322-24.675 3.353-24.675L3.400-24.675Q3.427-24.675 3.459-24.644Q3.490-24.612 3.490-24.585L3.490-22.448Q3.490-22.425 3.459-22.394Q3.427-22.362 3.400-22.362L3.283-22.362Q3.255-22.362 3.224-22.394Q3.193-22.425 3.193-22.448Q3.193-22.714 3.050-23.067Q2.908-23.421 2.728-23.659Q2.474-23.991 2.125-24.185Q1.775-24.378 1.369-24.378Q0.865-24.378 0.412-24.159Q-0.041-23.940-0.334-23.546Q-0.831-22.878-0.831-21.776Q-0.831-21.245-0.694-20.778Q-0.557-20.312-0.282-19.946Q-0.006-19.581 0.414-19.376Q0.834-19.171 1.377-19.171Q1.865-19.171 2.289-19.415Q2.712-19.659 2.960-20.079Q3.209-20.499 3.209-20.995Q3.209-21.030 3.238-21.056Q3.267-21.081 3.298-21.081L3.400-21.081Q3.443-21.081 3.466-21.052Q3.490-21.022 3.490-20.980Q3.490-20.542 3.314-20.153Q3.138-19.765 2.828-19.481Q2.517-19.198 2.107-19.036Q1.697-18.874 1.275-18.874Q0.685-18.874 0.144-19.095Q-0.397-19.315-0.813-19.720Q-1.229-20.124-1.461-20.653Q-1.694-21.183-1.694-21.776M6.322-20.491L4.068-20.491L4.068-21.042L6.322-21.042L6.322-20.491M7.084-19.050L7.084-20.272Q7.084-20.300 7.115-20.331Q7.146-20.362 7.169-20.362L7.275-20.362Q7.345-20.362 7.361-20.300Q7.423-19.980 7.562-19.739Q7.701-19.499 7.933-19.358Q8.166-19.218 8.474-19.218Q8.712-19.218 8.921-19.278Q9.130-19.339 9.267-19.487Q9.404-19.636 9.404-19.882Q9.404-20.136 9.193-20.302Q8.982-20.468 8.712-20.522L8.091-20.636Q7.685-20.714 7.384-20.970Q7.084-21.226 7.084-21.601Q7.084-21.968 7.285-22.190Q7.486-22.413 7.810-22.511Q8.134-22.608 8.474-22.608Q8.939-22.608 9.236-22.401L9.459-22.585Q9.482-22.608 9.513-22.608L9.564-22.608Q9.595-22.608 9.623-22.581Q9.650-22.554 9.650-22.522L9.650-21.538Q9.650-21.507 9.625-21.478Q9.599-21.448 9.564-21.448L9.459-21.448Q9.423-21.448 9.396-21.476Q9.369-21.503 9.369-21.538Q9.369-21.937 9.117-22.157Q8.865-22.378 8.466-22.378Q8.111-22.378 7.828-22.255Q7.544-22.132 7.544-21.827Q7.544-21.608 7.746-21.476Q7.947-21.343 8.193-21.300L8.818-21.187Q9.248-21.097 9.556-20.800Q9.865-20.503 9.865-20.089Q9.865-19.519 9.466-19.241Q9.068-18.964 8.474-18.964Q7.923-18.964 7.572-19.300L7.275-18.987Q7.252-18.964 7.216-18.964L7.169-18.964Q7.146-18.964 7.115-18.995Q7.084-19.026 7.084-19.050M11.017-20.003L11.017-22.194L10.314-22.194L10.314-22.448Q10.669-22.448 10.912-22.681Q11.154-22.913 11.265-23.261Q11.377-23.608 11.377-23.964L11.658-23.964L11.658-22.491L12.834-22.491L12.834-22.194L11.658-22.194L11.658-20.019Q11.658-19.698 11.777-19.470Q11.896-19.241 12.177-19.241Q12.357-19.241 12.474-19.364Q12.591-19.487 12.644-19.667Q12.697-19.847 12.697-20.019L12.697-20.491L12.978-20.491L12.978-20.003Q12.978-19.749 12.873-19.509Q12.767-19.269 12.570-19.116Q12.373-18.964 12.115-18.964Q11.798-18.964 11.546-19.087Q11.294-19.210 11.156-19.444Q11.017-19.679 11.017-20.003\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(340.474 7.528)\">\u003Cpath d=\"M13.901-17.745Q14.015-17.667 14.190-17.667Q14.479-17.667 14.700-17.880Q14.921-18.093 15.046-18.394L15.335-19.042L14.061-21.929Q13.979-22.105 13.835-22.149Q13.690-22.194 13.421-22.194L13.421-22.491L15.140-22.491L15.140-22.194Q14.718-22.194 14.718-22.011Q14.718-21.999 14.733-21.929L15.671-19.804L16.503-21.714Q16.542-21.804 16.542-21.882Q16.542-22.022 16.440-22.108Q16.339-22.194 16.198-22.194L16.198-22.491L17.550-22.491L17.550-22.194Q17.296-22.194 17.102-22.069Q16.909-21.944 16.804-21.714L15.358-18.394Q15.245-18.140 15.079-17.917Q14.913-17.694 14.684-17.552Q14.456-17.409 14.190-17.409Q13.893-17.409 13.653-17.601Q13.413-17.792 13.413-18.081Q13.413-18.237 13.518-18.339Q13.624-18.440 13.772-18.440Q13.878-18.440 13.958-18.394Q14.038-18.347 14.085-18.269Q14.132-18.190 14.132-18.081Q14.132-17.960 14.071-17.872Q14.011-17.784 13.901-17.745M19.878-19.042L18.046-19.042L18.046-19.339Q18.319-19.339 18.487-19.386Q18.655-19.433 18.655-19.601L18.655-23.761Q18.655-23.976 18.593-24.071Q18.530-24.167 18.411-24.188Q18.292-24.210 18.046-24.210L18.046-24.507L19.268-24.593L19.268-19.601Q19.268-19.433 19.436-19.386Q19.604-19.339 19.878-19.339L19.878-19.042M20.323-20.796Q20.323-21.276 20.556-21.692Q20.788-22.108 21.198-22.358Q21.608-22.608 22.085-22.608Q22.815-22.608 23.214-22.167Q23.612-21.726 23.612-20.995Q23.612-20.890 23.518-20.866L21.069-20.866L21.069-20.796Q21.069-20.386 21.190-20.030Q21.311-19.675 21.583-19.458Q21.854-19.241 22.284-19.241Q22.647-19.241 22.944-19.470Q23.241-19.698 23.343-20.050Q23.350-20.097 23.436-20.112L23.518-20.112Q23.612-20.085 23.612-20.003Q23.612-19.995 23.604-19.964Q23.542-19.737 23.403-19.554Q23.265-19.370 23.073-19.237Q22.882-19.105 22.663-19.034Q22.444-18.964 22.206-18.964Q21.835-18.964 21.497-19.101Q21.159-19.237 20.891-19.489Q20.624-19.741 20.474-20.081Q20.323-20.421 20.323-20.796M21.077-21.105L23.038-21.105Q23.038-21.409 22.936-21.700Q22.835-21.991 22.618-22.173Q22.401-22.355 22.085-22.355Q21.784-22.355 21.554-22.167Q21.323-21.980 21.200-21.688Q21.077-21.397 21.077-21.105\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(340.474 7.528)\">\u003Cpath d=\"M-22.486-11.296Q-22.486-11.776-22.253-12.192Q-22.021-12.608-21.611-12.858Q-21.201-13.108-20.724-13.108Q-19.994-13.108-19.595-12.667Q-19.197-12.226-19.197-11.495Q-19.197-11.390-19.290-11.366L-21.740-11.366L-21.740-11.296Q-21.740-10.886-21.619-10.530Q-21.497-10.175-21.226-9.958Q-20.954-9.741-20.525-9.741Q-20.162-9.741-19.865-9.970Q-19.568-10.198-19.466-10.550Q-19.458-10.597-19.372-10.612L-19.290-10.612Q-19.197-10.585-19.197-10.503Q-19.197-10.495-19.204-10.464Q-19.267-10.237-19.406-10.054Q-19.544-9.870-19.736-9.737Q-19.927-9.604-20.146-9.534Q-20.365-9.464-20.603-9.464Q-20.974-9.464-21.312-9.601Q-21.650-9.737-21.917-9.989Q-22.185-10.241-22.335-10.581Q-22.486-10.921-22.486-11.296M-21.732-11.604L-19.771-11.604Q-19.771-11.909-19.872-12.200Q-19.974-12.491-20.191-12.673Q-20.408-12.854-20.724-12.854Q-21.025-12.854-21.255-12.667Q-21.486-12.479-21.609-12.188Q-21.732-11.897-21.732-11.604M-17.322-9.542L-18.818-9.542L-18.818-9.839Q-18.185-9.839-17.763-10.319L-16.994-11.229L-17.986-12.429Q-18.142-12.608-18.304-12.651Q-18.466-12.694-18.771-12.694L-18.771-12.991L-17.083-12.991L-17.083-12.694Q-17.177-12.694-17.253-12.651Q-17.329-12.608-17.329-12.519Q-17.329-12.476-17.298-12.429L-16.642-11.640L-16.162-12.214Q-16.044-12.351-16.044-12.487Q-16.044-12.577-16.095-12.636Q-16.146-12.694-16.228-12.694L-16.228-12.991L-14.740-12.991L-14.740-12.694Q-15.376-12.694-15.787-12.214L-16.466-11.413L-15.380-10.101Q-15.220-9.925-15.060-9.882Q-14.900-9.839-14.595-9.839L-14.595-9.542L-16.283-9.542L-16.283-9.839Q-16.193-9.839-16.115-9.882Q-16.037-9.925-16.037-10.015Q-16.037-10.038-16.068-10.101L-16.810-11.007L-17.396-10.319Q-17.513-10.183-17.513-10.046Q-17.513-9.960-17.462-9.899Q-17.412-9.839-17.322-9.839L-17.322-9.542M-14.228-11.296Q-14.228-11.776-13.995-12.192Q-13.763-12.608-13.353-12.858Q-12.943-13.108-12.466-13.108Q-11.736-13.108-11.337-12.667Q-10.939-12.226-10.939-11.495Q-10.939-11.390-11.033-11.366L-13.482-11.366L-13.482-11.296Q-13.482-10.886-13.361-10.530Q-13.240-10.175-12.968-9.958Q-12.697-9.741-12.267-9.741Q-11.904-9.741-11.607-9.970Q-11.310-10.198-11.208-10.550Q-11.201-10.597-11.115-10.612L-11.033-10.612Q-10.939-10.585-10.939-10.503Q-10.939-10.495-10.947-10.464Q-11.009-10.237-11.148-10.054Q-11.287-9.870-11.478-9.737Q-11.669-9.604-11.888-9.534Q-12.107-9.464-12.345-9.464Q-12.716-9.464-13.054-9.601Q-13.392-9.737-13.660-9.989Q-13.927-10.241-14.078-10.581Q-14.228-10.921-14.228-11.296M-13.474-11.604L-11.513-11.604Q-11.513-11.909-11.615-12.200Q-11.716-12.491-11.933-12.673Q-12.150-12.854-12.466-12.854Q-12.767-12.854-12.997-12.667Q-13.228-12.479-13.351-12.188Q-13.474-11.897-13.474-11.604M-10.408-11.269Q-10.408-11.765-10.158-12.190Q-9.908-12.616-9.488-12.862Q-9.068-13.108-8.568-13.108Q-8.029-13.108-7.638-12.983Q-7.247-12.858-7.247-12.444Q-7.247-12.339-7.298-12.247Q-7.349-12.155-7.441-12.104Q-7.533-12.054-7.642-12.054Q-7.747-12.054-7.839-12.104Q-7.931-12.155-7.982-12.247Q-8.033-12.339-8.033-12.444Q-8.033-12.667-7.865-12.772Q-8.087-12.831-8.560-12.831Q-8.857-12.831-9.072-12.692Q-9.287-12.554-9.417-12.323Q-9.548-12.093-9.607-11.823Q-9.665-11.554-9.665-11.269Q-9.665-10.874-9.533-10.524Q-9.400-10.175-9.128-9.958Q-8.857-9.741-8.458-9.741Q-8.083-9.741-7.808-9.958Q-7.533-10.175-7.431-10.534Q-7.415-10.597-7.353-10.597L-7.247-10.597Q-7.212-10.597-7.187-10.569Q-7.162-10.542-7.162-10.503L-7.162-10.479Q-7.294-9.999-7.679-9.731Q-8.064-9.464-8.568-9.464Q-8.931-9.464-9.265-9.601Q-9.599-9.737-9.859-9.987Q-10.119-10.237-10.263-10.573Q-10.408-10.909-10.408-11.269M-5.990-10.495L-5.990-12.237Q-5.990-12.452-6.052-12.548Q-6.115-12.644-6.234-12.665Q-6.353-12.687-6.599-12.687L-6.599-12.983L-5.353-13.069L-5.353-10.519L-5.353-10.495Q-5.353-10.183-5.298-10.021Q-5.244-9.858-5.093-9.788Q-4.943-9.718-4.622-9.718Q-4.193-9.718-3.919-10.056Q-3.646-10.394-3.646-10.839L-3.646-12.237Q-3.646-12.452-3.708-12.548Q-3.771-12.644-3.890-12.665Q-4.009-12.687-4.255-12.687L-4.255-12.983L-3.009-13.069L-3.009-10.284Q-3.009-10.073-2.947-9.978Q-2.884-9.882-2.765-9.860Q-2.646-9.839-2.400-9.839L-2.400-9.542L-3.622-9.464L-3.622-10.085Q-3.790-9.796-4.072-9.630Q-4.353-9.464-4.673-9.464Q-5.990-9.464-5.990-10.495M-1.329-10.503L-1.329-12.694L-2.033-12.694L-2.033-12.948Q-1.677-12.948-1.435-13.181Q-1.193-13.413-1.081-13.761Q-0.970-14.108-0.970-14.464L-0.689-14.464L-0.689-12.991L0.487-12.991L0.487-12.694L-0.689-12.694L-0.689-10.519Q-0.689-10.198-0.570-9.970Q-0.451-9.741-0.169-9.741Q0.010-9.741 0.128-9.864Q0.245-9.987 0.297-10.167Q0.350-10.347 0.350-10.519L0.350-10.991L0.631-10.991L0.631-10.503Q0.631-10.249 0.526-10.009Q0.421-9.769 0.223-9.616Q0.026-9.464-0.232-9.464Q-0.548-9.464-0.800-9.587Q-1.052-9.710-1.191-9.944Q-1.329-10.179-1.329-10.503M3.210-9.542L1.432-9.542L1.432-9.839Q1.706-9.839 1.874-9.886Q2.042-9.933 2.042-10.101L2.042-12.237Q2.042-12.452 1.985-12.548Q1.928-12.644 1.815-12.665Q1.702-12.687 1.456-12.687L1.456-12.983L2.655-13.069L2.655-10.101Q2.655-9.933 2.801-9.886Q2.948-9.839 3.210-9.839L3.210-9.542M1.768-14.464Q1.768-14.655 1.903-14.786Q2.038-14.917 2.233-14.917Q2.354-14.917 2.458-14.854Q2.561-14.792 2.624-14.688Q2.686-14.585 2.686-14.464Q2.686-14.269 2.555-14.134Q2.424-13.999 2.233-13.999Q2.034-13.999 1.901-14.132Q1.768-14.265 1.768-14.464M3.710-11.237Q3.710-11.741 3.965-12.173Q4.221-12.604 4.657-12.856Q5.092-13.108 5.592-13.108Q5.979-13.108 6.321-12.964Q6.663-12.819 6.924-12.558Q7.186-12.296 7.329-11.960Q7.471-11.624 7.471-11.237Q7.471-10.745 7.208-10.335Q6.944-9.925 6.514-9.694Q6.085-9.464 5.592-9.464Q5.100-9.464 4.667-9.696Q4.233-9.929 3.971-10.337Q3.710-10.745 3.710-11.237M5.592-9.741Q6.049-9.741 6.301-9.964Q6.553-10.187 6.641-10.538Q6.729-10.890 6.729-11.335Q6.729-11.765 6.635-12.103Q6.542-12.440 6.288-12.647Q6.034-12.854 5.592-12.854Q4.944-12.854 4.700-12.438Q4.456-12.022 4.456-11.335Q4.456-10.890 4.544-10.538Q4.631-10.187 4.883-9.964Q5.135-9.741 5.592-9.741M9.885-9.542L8.030-9.542L8.030-9.839Q8.303-9.839 8.471-9.886Q8.639-9.933 8.639-10.101L8.639-12.237Q8.639-12.452 8.577-12.548Q8.514-12.644 8.395-12.665Q8.276-12.687 8.030-12.687L8.030-12.983L9.221-13.069L9.221-12.335Q9.335-12.550 9.528-12.718Q9.721-12.886 9.960-12.978Q10.198-13.069 10.452-13.069Q11.620-13.069 11.620-11.991L11.620-10.101Q11.620-9.933 11.790-9.886Q11.960-9.839 12.229-9.839L12.229-9.542L10.374-9.542L10.374-9.839Q10.647-9.839 10.815-9.886Q10.983-9.933 10.983-10.101L10.983-11.976Q10.983-12.358 10.862-12.587Q10.741-12.815 10.389-12.815Q10.077-12.815 9.823-12.653Q9.569-12.491 9.422-12.222Q9.276-11.952 9.276-11.655L9.276-10.101Q9.276-9.933 9.446-9.886Q9.616-9.839 9.885-9.839\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(340.474 7.528)\">\u003Cpath d=\"M15.571-11.269Q15.571-11.765 15.821-12.190Q16.071-12.616 16.491-12.862Q16.911-13.108 17.411-13.108Q17.950-13.108 18.341-12.983Q18.731-12.858 18.731-12.444Q18.731-12.339 18.681-12.247Q18.630-12.155 18.538-12.104Q18.446-12.054 18.337-12.054Q18.231-12.054 18.140-12.104Q18.048-12.155 17.997-12.247Q17.946-12.339 17.946-12.444Q17.946-12.667 18.114-12.772Q17.892-12.831 17.419-12.831Q17.122-12.831 16.907-12.692Q16.692-12.554 16.561-12.323Q16.431-12.093 16.372-11.823Q16.313-11.554 16.313-11.269Q16.313-10.874 16.446-10.524Q16.579-10.175 16.851-9.958Q17.122-9.741 17.520-9.741Q17.895-9.741 18.171-9.958Q18.446-10.175 18.548-10.534Q18.563-10.597 18.626-10.597L18.731-10.597Q18.767-10.597 18.792-10.569Q18.817-10.542 18.817-10.503L18.817-10.479Q18.685-9.999 18.300-9.731Q17.915-9.464 17.411-9.464Q17.048-9.464 16.714-9.601Q16.380-9.737 16.120-9.987Q15.860-10.237 15.716-10.573Q15.571-10.909 15.571-11.269M19.306-11.237Q19.306-11.741 19.561-12.173Q19.817-12.604 20.253-12.856Q20.688-13.108 21.188-13.108Q21.575-13.108 21.917-12.964Q22.259-12.819 22.520-12.558Q22.782-12.296 22.925-11.960Q23.067-11.624 23.067-11.237Q23.067-10.745 22.804-10.335Q22.540-9.925 22.110-9.694Q21.681-9.464 21.188-9.464Q20.696-9.464 20.263-9.696Q19.829-9.929 19.567-10.337Q19.306-10.745 19.306-11.237M21.188-9.741Q21.645-9.741 21.897-9.964Q22.149-10.187 22.237-10.538Q22.325-10.890 22.325-11.335Q22.325-11.765 22.231-12.103Q22.138-12.440 21.884-12.647Q21.630-12.854 21.188-12.854Q20.540-12.854 20.296-12.438Q20.052-12.022 20.052-11.335Q20.052-10.890 20.140-10.538Q20.227-10.187 20.479-9.964Q20.731-9.741 21.188-9.741M25.560-9.542L23.579-9.542L23.579-9.839Q23.849-9.839 24.017-9.884Q24.185-9.929 24.185-10.101L24.185-12.237Q24.185-12.452 24.122-12.548Q24.060-12.644 23.942-12.665Q23.825-12.687 23.579-12.687L23.579-12.983L24.747-13.069L24.747-12.284Q24.825-12.495 24.977-12.681Q25.130-12.866 25.329-12.968Q25.528-13.069 25.755-13.069Q26.001-13.069 26.192-12.925Q26.384-12.780 26.384-12.550Q26.384-12.394 26.278-12.284Q26.173-12.175 26.017-12.175Q25.860-12.175 25.751-12.284Q25.642-12.394 25.642-12.550Q25.642-12.710 25.747-12.815Q25.423-12.815 25.208-12.587Q24.993-12.358 24.897-12.019Q24.802-11.679 24.802-11.374L24.802-10.101Q24.802-9.933 25.028-9.886Q25.255-9.839 25.560-9.839L25.560-9.542M26.864-11.296Q26.864-11.776 27.097-12.192Q27.329-12.608 27.739-12.858Q28.149-13.108 28.626-13.108Q29.356-13.108 29.755-12.667Q30.153-12.226 30.153-11.495Q30.153-11.390 30.060-11.366L27.610-11.366L27.610-11.296Q27.610-10.886 27.731-10.530Q27.852-10.175 28.124-9.958Q28.395-9.741 28.825-9.741Q29.188-9.741 29.485-9.970Q29.782-10.198 29.884-10.550Q29.892-10.597 29.977-10.612L30.060-10.612Q30.153-10.585 30.153-10.503Q30.153-10.495 30.145-10.464Q30.083-10.237 29.944-10.054Q29.806-9.870 29.614-9.737Q29.423-9.604 29.204-9.534Q28.985-9.464 28.747-9.464Q28.376-9.464 28.038-9.601Q27.700-9.737 27.433-9.989Q27.165-10.241 27.015-10.581Q26.864-10.921 26.864-11.296M27.618-11.604L29.579-11.604Q29.579-11.909 29.477-12.200Q29.376-12.491 29.159-12.673Q28.942-12.854 28.626-12.854Q28.325-12.854 28.095-12.667Q27.864-12.479 27.741-12.188Q27.618-11.897 27.618-11.604\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M20.155-9.542h51.46\"\u002F>\u003Cpath stroke=\"none\" d=\"m73.615-9.542-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cpath fill=\"none\" d=\"m131.32-9.542 45.205-24.65\"\u002F>\u003Cpath stroke=\"none\" d=\"m178.28-35.15-3.575.128 1.82.83-.288 1.979\"\u002F>\u003Cpath fill=\"none\" d=\"m131.32-9.542 46.008 24.662\"\u002F>\u003Cpath stroke=\"none\" d=\"m179.09 16.065-2.064-2.922.302 1.977-1.814.843\"\u002F>\u003Cpath fill=\"none\" d=\"m265.659-35.15 45.401 24.653\"\u002F>\u003Cpath stroke=\"none\" d=\"m312.818-9.542-2.049-2.933.291 1.978-1.817.834\"\u002F>\u003Cpath fill=\"none\" d=\"m264.849 16.065 46.205-24.666\"\u002F>\u003Cpath stroke=\"none\" d=\"m312.818-9.542-3.576.095 1.812.846-.305 1.977\"\u002F>\u003Cg transform=\"translate(227.811 -54.686)\">\u003Cpath d=\"M-20.728-9.542L-22.362-9.542L-22.362-9.822Q-22.133-9.822-21.984-9.856Q-21.835-9.891-21.835-10.031L-21.835-11.880Q-21.835-12.150-21.943-12.211Q-22.051-12.273-22.362-12.273L-22.362-12.553L-21.302-12.628L-21.302-11.979Q-21.131-12.287-20.827-12.458Q-20.523-12.628-20.178-12.628Q-19.778-12.628-19.501-12.488Q-19.224-12.348-19.139-12Q-18.971-12.293-18.672-12.461Q-18.373-12.628-18.028-12.628Q-17.522-12.628-17.238-12.405Q-16.954-12.181-16.954-11.685L-16.954-10.031Q-16.954-9.894-16.806-9.858Q-16.657-9.822-16.432-9.822L-16.432-9.542L-18.062-9.542L-18.062-9.822Q-17.836-9.822-17.686-9.858Q-17.536-9.894-17.536-10.031L-17.536-11.671Q-17.536-12.006-17.655-12.206Q-17.775-12.406-18.089-12.406Q-18.359-12.406-18.593-12.270Q-18.828-12.133-18.966-11.899Q-19.104-11.665-19.104-11.391L-19.104-10.031Q-19.104-9.894-18.956-9.858Q-18.807-9.822-18.581-9.822L-18.581-9.542L-20.212-9.542L-20.212-9.822Q-19.983-9.822-19.834-9.856Q-19.685-9.891-19.685-10.031L-19.685-11.671Q-19.685-12.006-19.805-12.206Q-19.925-12.406-20.239-12.406Q-20.509-12.406-20.743-12.270Q-20.977-12.133-21.116-11.899Q-21.254-11.665-21.254-11.391L-21.254-10.031Q-21.254-9.894-21.104-9.858Q-20.953-9.822-20.728-9.822L-20.728-9.542M-14.227-9.542L-15.779-9.542L-15.779-9.822Q-15.553-9.822-15.404-9.856Q-15.256-9.891-15.256-10.031L-15.256-11.880Q-15.256-12.068-15.304-12.152Q-15.351-12.235-15.449-12.254Q-15.546-12.273-15.758-12.273L-15.758-12.553L-14.702-12.628L-14.702-10.031Q-14.702-9.891-14.570-9.856Q-14.439-9.822-14.227-9.822L-14.227-9.542M-15.498-13.849Q-15.498-14.020-15.375-14.139Q-15.252-14.259-15.081-14.259Q-14.914-14.259-14.791-14.139Q-14.668-14.020-14.668-13.849Q-14.668-13.674-14.791-13.551Q-14.914-13.428-15.081-13.428Q-15.252-13.428-15.375-13.551Q-15.498-13.674-15.498-13.849M-13.581-11.053Q-13.581-11.381-13.446-11.682Q-13.311-11.982-13.075-12.203Q-12.839-12.423-12.535-12.543Q-12.231-12.663-11.906-12.663Q-11.400-12.663-11.052-12.560Q-10.703-12.458-10.703-12.082Q-10.703-11.935-10.800-11.834Q-10.898-11.733-11.045-11.733Q-11.199-11.733-11.298-11.832Q-11.397-11.931-11.397-12.082Q-11.397-12.270-11.257-12.362Q-11.458-12.413-11.899-12.413Q-12.255-12.413-12.484-12.217Q-12.713-12.020-12.814-11.711Q-12.914-11.401-12.914-11.053Q-12.914-10.704-12.788-10.398Q-12.662-10.092-12.407-9.908Q-12.152-9.723-11.797-9.723Q-11.575-9.723-11.390-9.807Q-11.205-9.891-11.070-10.046Q-10.935-10.202-10.877-10.410Q-10.864-10.465-10.809-10.465L-10.696-10.465Q-10.665-10.465-10.643-10.441Q-10.621-10.417-10.621-10.383L-10.621-10.362Q-10.706-10.075-10.894-9.877Q-11.082-9.679-11.347-9.576Q-11.612-9.474-11.906-9.474Q-12.337-9.474-12.725-9.680Q-13.113-9.887-13.347-10.250Q-13.581-10.612-13.581-11.053M-8.283-9.542L-10.019-9.542L-10.019-9.822Q-9.790-9.822-9.642-9.856Q-9.493-9.891-9.493-10.031L-9.493-11.880Q-9.493-12.150-9.601-12.211Q-9.708-12.273-10.019-12.273L-10.019-12.553L-8.991-12.628L-8.991-11.921Q-8.861-12.229-8.618-12.428Q-8.375-12.628-8.057-12.628Q-7.839-12.628-7.668-12.504Q-7.497-12.379-7.497-12.167Q-7.497-12.030-7.596-11.931Q-7.695-11.832-7.828-11.832Q-7.965-11.832-8.064-11.931Q-8.163-12.030-8.163-12.167Q-8.163-12.307-8.064-12.406Q-8.355-12.406-8.555-12.210Q-8.755-12.013-8.847-11.719Q-8.939-11.425-8.939-11.145L-8.939-10.031Q-8.939-9.822-8.283-9.822L-8.283-9.542M-6.953-11.025Q-6.953-11.367-6.818-11.666Q-6.683-11.965-6.444-12.189Q-6.205-12.413-5.887-12.538Q-5.569-12.663-5.238-12.663Q-4.793-12.663-4.393-12.447Q-3.994-12.232-3.759-11.854Q-3.525-11.477-3.525-11.025Q-3.525-10.684-3.667-10.400Q-3.809-10.116-4.053-9.909Q-4.298-9.703-4.607-9.588Q-4.916-9.474-5.238-9.474Q-5.668-9.474-6.070-9.675Q-6.472-9.877-6.713-10.229Q-6.953-10.581-6.953-11.025M-5.238-9.723Q-4.636-9.723-4.412-10.101Q-4.188-10.479-4.188-11.111Q-4.188-11.723-4.422-12.082Q-4.657-12.440-5.238-12.440Q-6.290-12.440-6.290-11.111Q-6.290-10.479-6.065-10.101Q-5.839-9.723-5.238-9.723M-1.047-10.796L-3.105-10.796L-3.105-11.299L-1.047-11.299L-1.047-10.796M-0.285-11.025Q-0.285-11.367-0.150-11.666Q-0.015-11.965 0.224-12.189Q0.463-12.413 0.781-12.538Q1.099-12.663 1.431-12.663Q1.875-12.663 2.275-12.447Q2.675-12.232 2.909-11.854Q3.143-11.477 3.143-11.025Q3.143-10.684 3.001-10.400Q2.859-10.116 2.615-9.909Q2.371-9.703 2.061-9.588Q1.752-9.474 1.431-9.474Q1-9.474 0.599-9.675Q0.197-9.877-0.044-10.229Q-0.285-10.581-0.285-11.025M1.431-9.723Q2.032-9.723 2.256-10.101Q2.480-10.479 2.480-11.111Q2.480-11.723 2.246-12.082Q2.012-12.440 1.431-12.440Q0.378-12.440 0.378-11.111Q0.378-10.479 0.604-10.101Q0.829-9.723 1.431-9.723M5.382-8.185L3.752-8.185L3.752-8.465Q3.981-8.465 4.129-8.500Q4.278-8.534 4.278-8.674L4.278-12.020Q4.278-12.191 4.141-12.232Q4.005-12.273 3.752-12.273L3.752-12.553L4.832-12.628L4.832-12.222Q5.054-12.423 5.341-12.526Q5.628-12.628 5.936-12.628Q6.363-12.628 6.727-12.415Q7.091-12.201 7.305-11.837Q7.518-11.473 7.518-11.053Q7.518-10.608 7.279-10.244Q7.040-9.880 6.647-9.677Q6.254-9.474 5.809-9.474Q5.543-9.474 5.295-9.574Q5.047-9.675 4.859-9.856L4.859-8.674Q4.859-8.537 5.008-8.501Q5.156-8.465 5.382-8.465L5.382-8.185M4.859-11.873L4.859-10.263Q4.992-10.010 5.235-9.853Q5.478-9.696 5.755-9.696Q6.083-9.696 6.336-9.897Q6.588-10.099 6.722-10.417Q6.855-10.735 6.855-11.053Q6.855-11.282 6.790-11.511Q6.725-11.740 6.597-11.938Q6.469-12.136 6.274-12.256Q6.079-12.375 5.847-12.375Q5.553-12.375 5.285-12.246Q5.016-12.116 4.859-11.873M8.154-9.549L8.154-10.612Q8.154-10.636 8.181-10.663Q8.209-10.690 8.233-10.690L8.342-10.690Q8.407-10.690 8.421-10.632Q8.516-10.198 8.762-9.947Q9.008-9.696 9.422-9.696Q9.764-9.696 10.017-9.829Q10.270-9.962 10.270-10.270Q10.270-10.427 10.176-10.542Q10.082-10.656 9.943-10.725Q9.805-10.793 9.637-10.831L9.056-10.930Q8.701-10.998 8.427-11.219Q8.154-11.439 8.154-11.781Q8.154-12.030 8.265-12.205Q8.376-12.379 8.562-12.478Q8.749-12.577 8.964-12.620Q9.179-12.663 9.422-12.663Q9.836-12.663 10.116-12.481L10.331-12.656Q10.341-12.659 10.348-12.661Q10.355-12.663 10.365-12.663L10.417-12.663Q10.444-12.663 10.468-12.639Q10.492-12.615 10.492-12.587L10.492-11.740Q10.492-11.719 10.468-11.692Q10.444-11.665 10.417-11.665L10.304-11.665Q10.276-11.665 10.251-11.690Q10.225-11.716 10.225-11.740Q10.225-11.976 10.119-12.140Q10.013-12.304 9.830-12.386Q9.648-12.468 9.415-12.468Q9.087-12.468 8.831-12.365Q8.574-12.263 8.574-11.986Q8.574-11.791 8.757-11.682Q8.940-11.572 9.169-11.531L9.743-11.425Q9.989-11.377 10.203-11.249Q10.417-11.121 10.553-10.918Q10.690-10.714 10.690-10.465Q10.690-9.952 10.324-9.713Q9.959-9.474 9.422-9.474Q8.926-9.474 8.595-9.768L8.328-9.494Q8.308-9.474 8.280-9.474L8.233-9.474Q8.209-9.474 8.181-9.501Q8.154-9.528 8.154-9.549\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">How x86-64 survives. The visible ISA stays CISC, but the decoder translates each instruction into fixed-format micro-ops, and everything past the front end is a RISC-style engine. addq 8(%rbx),%rax becomes a load micro-op feeding an add micro-op.\u003C\u002Ffigcaption>",1785117684281]