[{"data":1,"prerenderedAt":8084},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":304,"ref-card-index":2630,"course-wordcounts":7163,"tikz:6e9ef912d7d8e1badcfa34e3981ff3cffbc73c0544b8108e3cb186949c0be960":8075,"tikz:e7728653622c1b64504d890d9f067764ed7619bcf8cbabd5f14fec8ba89aa799":8076,"tikz:8d0f5c249a6cd17706c9d317195f452dd9286c039d5de973cd959f98787a7bf9":8077,"tikz:06a6e07c3dfd5b292fe5ec0716063f1471953f09289a85d39ca0c9685a5059e8":8078,"tikz:a80d92a7598116f1e148305701a4d8956b2f883a725c1a5f247f84afc77fb84b":8079,"tikz:41df3d25775b3ce47a207014ac30e0c3e4e7fdc976646be42b46efb7d9e7e6c5":8080,"tikz:d54912359a435af8b5f040f68bd555fab496cf67dffd08f18edcb40f4ea50c42":8081,"tikz:1d55dcc5745a30414cdd84115a3e1f467a0b4aa3f9c6fe2535594990f5040525":8082,"tikz:bfbe07da236d656688a315ccb702acff3280bd0ab5e1520677aa712130aa2349":8083},[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":48,"blurb":306,"body":307,"brief":2607,"category":2608,"description":2609,"draft":2610,"extension":2611,"meta":2612,"module":39,"navigation":2614,"path":49,"practice":2615,"rawbody":2616,"readingTime":2617,"seo":2622,"sources":2623,"status":2626,"stem":2627,"summary":51,"topics":2628,"__hash__":2629},"course\u002F03.computer-architecture\u002F01.machine-level-x86-64\u002F02.data-movement.md","",{"type":308,"value":309,"toc":2596},"minimark",[310,340,345,348,410,414,421,425,435,438,460,508,526,548,562,676,705,728,777,780,800,804,807,1042,1129,1132,1135,1487,1613,1616,1621,1647,1831,1834,1837,1841,1876,1879,1936,1949,2064,2068,2107,2110,2143,2216,2219,2232,2236,2285,2324,2518,2592],[311,312,313,314,318,319,322,323,326,327,330,331,335,336,339],"p",{},"The single most common thing a processor does is copy bytes from one place to\nanother — register to register, memory to register, register to memory. Before any\narithmetic can happen the operands must be in the right registers, and afterward\nthe result must be written back. This lesson covers the ",[315,316,317],"strong",{},"mov"," family that does\nthat copying, the ",[315,320,321],{},"operand forms"," that name where data lives, the full memory\n",[315,324,325],{},"addressing mode",", the address-computing ",[315,328,329],{},"lea",", and the stack operations\n",[332,333,334],"code",{},"push"," and ",[332,337,338],{},"pop",".",[341,342,344],"h2",{"id":343},"the-three-operand-forms","The three operand forms",[311,346,347],{},"Every operand an instruction reads or writes takes one of three forms, and\nlearning to classify them at a glance is most of the battle in reading assembly.",[349,350,351,370,390],"ul",{},[352,353,354,357,358,361,362,365,366,369],"li",{},[315,355,356],{},"Immediate"," — a literal constant, written with a ",[332,359,360],{},"$"," prefix, as in ",[332,363,364],{},"$0x1f"," or\n",[332,367,368],{},"$255",". Immediates can only be sources, never destinations.",[352,371,372,375,376,379,380,383,384,383,387,339],{},[315,373,374],{},"Register"," — the contents of one of the sixteen registers (at any of its four\nwidths), written with a ",[332,377,378],{},"%"," prefix: ",[332,381,382],{},"%rax",", ",[332,385,386],{},"%edi",[332,388,389],{},"%al",[352,391,392,395,396,399,400,403,404],{},[315,393,394],{},"Memory"," — the bytes ",[315,397,398],{},"at"," a computed address, written with the address in\nparentheses: ",[332,401,402],{},"(%rax)"," means ",[405,406,407,408,339],"q",{},"the bytes at the address held in ",[332,409,382],{},[411,412],"tikz-figure",{"hash":413},"6e9ef912d7d8e1badcfa34e3981ff3cffbc73c0544b8108e3cb186949c0be960",[311,415,416,417,420],{},"The one rule that constrains every move: ",[315,418,419],{},"at most one operand may be a memory\nreference."," x86-64 has no instruction that copies memory directly to memory; such\na copy is two instructions, through a register.",[341,422,424],{"id":423},"the-mov-family","The mov family",[311,426,427,428,430,431,434],{},"The ",[332,429,317],{}," instruction ",[315,432,433],{},"copies"," the value of its source into its\ndestination, leaving the source unchanged — register to register, memory to\nregister, or register to memory. The size suffix fixes how many bytes are copied.",[411,436],{"hash":437},"e7728653622c1b64504d890d9f067764ed7619bcf8cbabd5f14fec8ba89aa799",[311,439,440,441,443,444,447,448,451,452,455,456,459],{},"The basic copy instruction is ",[332,442,317],{},", carrying a size suffix that fixes how many\nbytes move. ",[332,445,446],{},"movb"," moves one byte, ",[332,449,450],{},"movw"," two, ",[332,453,454],{},"movl"," four, ",[332,457,458],{},"movq"," eight. The\nsource and destination widths must agree with the suffix.",[461,462,467],"pre",{"className":463,"code":464,"filename":465,"language":466,"meta":306,"style":306},"language-asm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","movq    $0x4050, %rax     # immediate -> register (8 bytes)\nmovb    %al, (%rdi)       # register  -> memory   (1 byte)\nmovl    (%rsi), %edx      # memory    -> register (4 bytes)\nmovw    %ax, %bx          # register  -> register (2 bytes)\n","movs.s","asm",[332,468,469,484,492,500],{"__ignoreMap":306},[470,471,473,476,480],"span",{"class":472,"line":6},"line",[470,474,458],{"class":475},"sdxpw",[470,477,479],{"class":478},"s3i95","    $0x4050, %rax    ",[470,481,483],{"class":482},"sEX4i"," # immediate -> register (8 bytes)\n",[470,485,486,489],{"class":472,"line":17},[470,487,488],{"class":478},"movb    %al, (%rdi)      ",[470,490,491],{"class":482}," # register  -> memory   (1 byte)\n",[470,493,494,497],{"class":472,"line":23},[470,495,496],{"class":478},"movl    (%rsi), %edx     ",[470,498,499],{"class":482}," # memory    -> register (4 bytes)\n",[470,501,502,505],{"class":472,"line":29},[470,503,504],{"class":478},"movw    %ax, %bx         ",[470,506,507],{"class":482}," # register  -> register (2 bytes)\n",[311,509,510,511,514,515,518,519,514,522,525],{},"Two specialized moves handle width changes when copying a small value into a\nlarger register. ",[332,512,513],{},"movz"," ",[315,516,517],{},"zero-extends"," the source (fills the high bytes with\nzeros) and ",[332,520,521],{},"movs",[315,523,524],{},"sign-extends"," it (replicates the sign bit), each taking a\ntwo-letter suffix naming the source then destination widths.",[461,527,530],{"className":463,"code":528,"filename":529,"language":466,"meta":306,"style":306},"movzbq  %al, %rbx         # zero-extend  byte -> quad\nmovsbl  %al, %edx         # sign-extend  byte -> long\n","extend.s",[332,531,532,540],{"__ignoreMap":306},[470,533,534,537],{"class":472,"line":6},[470,535,536],{"class":478},"movzbq  %al, %rbx        ",[470,538,539],{"class":482}," # zero-extend  byte -> quad\n",[470,541,542,545],{"class":472,"line":17},[470,543,544],{"class":478},"movsbl  %al, %edx        ",[470,546,547],{"class":482}," # sign-extend  byte -> long\n",[311,549,550,551,553,554,557,558,561],{},"The full family is small and follows one naming scheme: ",[332,552,317],{}," then ",[332,555,556],{},"z"," or ",[332,559,560],{},"s",",\nthen the source width, then the destination width. The source is always narrower\nthan the destination, so the reachable pairs are these.",[563,564,565,581],"table",{},[566,567,568],"thead",{},[569,570,571,575,578],"tr",{},[572,573,574],"th",{},"Instruction",[572,576,577],{},"Source → dest",[572,579,580],{},"Extension",[582,583,584,602,617,632,647,662],"tbody",{},[569,585,586,596,599],{},[587,588,589,592,593],"td",{},[332,590,591],{},"movzbw"," \u002F ",[332,594,595],{},"movsbw",[587,597,598],{},"byte → word",[587,600,601],{},"zero \u002F sign",[569,603,604,612,615],{},[587,605,606,592,609],{},[332,607,608],{},"movzbl",[332,610,611],{},"movsbl",[587,613,614],{},"byte → long",[587,616,601],{},[569,618,619,627,630],{},[587,620,621,592,624],{},[332,622,623],{},"movzwl",[332,625,626],{},"movswl",[587,628,629],{},"word → long",[587,631,601],{},[569,633,634,642,645],{},[587,635,636,592,639],{},[332,637,638],{},"movzbq",[332,640,641],{},"movsbq",[587,643,644],{},"byte → quad",[587,646,601],{},[569,648,649,657,660],{},[587,650,651,592,654],{},[332,652,653],{},"movzwq",[332,655,656],{},"movswq",[587,658,659],{},"word → quad",[587,661,601],{},[569,663,664,670,673],{},[587,665,666,667],{},"— \u002F ",[332,668,669],{},"movslq",[587,671,672],{},"long → quad",[587,674,675],{},"sign only",[311,677,678,679,682,683,686,687,689,690,693,694,696,697,700,701,704],{},"Two gaps in the table are worth naming. There is no ",[332,680,681],{},"movzlq"," for a\n",[315,684,685],{},"long-to-quad zero-extend",", because a plain ",[332,688,454],{}," into the 32-bit destination\nalready zeroes the upper four bytes: ",[332,691,692],{},"movl %eax, %eax"," is the idiomatic 32-to-64\nzero-extend, so a dedicated instruction would be redundant. Sign extension has no\nsuch shortcut, so ",[332,695,669],{}," (also spelled ",[332,698,699],{},"cltq"," when the operand is ",[332,702,703],{},"%eax",") does\nexist. Every other combination is a genuine two-width move that the narrow write\nalone cannot express.",[311,706,707,708,710,711,715,716,719,720,723,724,727],{},"That ",[332,709,454],{}," shortcut is the upper-byte-zeroing rule from\n",[712,713,714],"a",{"href":44},"the machine's view","\nput to work: any ",[332,717,718],{},"l","-suffixed write clears the top four bytes, so the compiler\nleans on it wherever an ",[332,721,722],{},"int","-to-",[332,725,726],{},"long"," zero-extend is needed.",[311,729,730,731,734,735,737,738,741,742,745,746,773,774,776],{},"The zero-versus-sign choice changes the numeric value. Take the\nbyte ",[332,732,733],{},"0xFF"," sitting in ",[332,736,389],{},". As an ",[332,739,740],{},"unsigned char"," that is 255; as a ",[332,743,744],{},"signed char","\nit is ",[470,747,750],{"className":748},[749],"katex",[470,751,755],{"className":752,"ariaHidden":754},[753],"katex-html","true",[470,756,759,764,769],{"className":757},[758],"base",[470,760],{"className":761,"style":763},[762],"strut","height:0.7278em;vertical-align:-0.0833em;",[470,765,768],{"className":766},[767],"mord","−",[470,770,772],{"className":771},[767],"1",". Widening it to a quad must preserve whichever interpretation the C type\ndemanded, and the two ",[332,775,317],{}," variants do exactly that.",[411,778],{"hash":779},"8d0f5c249a6cd17706c9d317195f452dd9286c039d5de973cd959f98787a7bf9",[311,781,782,783,786,787,335,790,793,794,796,797,799],{},"The low byte ",[332,784,785],{},"FF"," is the same in both rows; only the seven new bytes differ, and\nthat difference is the entire distinction between ",[332,788,789],{},"unsigned",[332,791,792],{},"signed"," widening.\nThis is why C's integer-promotion rules compile to one instruction or the other, and\nwhy a stray ",[332,795,608],{}," where the code meant ",[332,798,611],{}," turns a small negative into a\nlarge positive.",[341,801,803],{"id":802},"the-full-addressing-mode","The full addressing mode",[311,805,806],{},"A memory operand specifies how to compute an address. The general form combines a\nconstant displacement, a base register, an index register, and a scale factor, and\nthe hardware evaluates the address by a single formula.",[808,809,811],"callout",{"type":810},"definition",[311,812,813,816,817,820,821,942,943,946,947,383,949,951,952,954,955,957,958,961,962,514,965,1041],{},[315,814,815],{},"Definition (Memory addressing mode)."," The operand ",[332,818,819],{},"D(Rb,Ri,S)"," denotes the\nbytes at address\n",[470,822,824],{"className":823},[749],[470,825,827,855,892,924],{"className":826,"ariaHidden":754},[753],[470,828,830,834,842,847,852],{"className":829},[758],[470,831],{"className":832,"style":833},[762],"height:0.7667em;vertical-align:-0.0833em;",[470,835,837],{"className":836},[767],[470,838,841],{"className":839},[767,840],"mathrm","Imm",[470,843],{"className":844,"style":846},[845],"mspace","margin-right:0.2222em;",[470,848,851],{"className":849},[850],"mbin","+",[470,853],{"className":854,"style":846},[845],[470,856,858,862,866,871,878,883,886,889],{"className":857},[758],[470,859],{"className":860,"style":861},[762],"height:1em;vertical-align:-0.25em;",[470,863,865],{"className":864},[767,840],"R",[470,867,870],{"className":868},[869],"mopen","[",[470,872,874],{"className":873},[767],[470,875,877],{"className":876},[767,840],"Rb",[470,879,882],{"className":880},[881],"mclose","]",[470,884],{"className":885,"style":846},[845],[470,887,851],{"className":888},[850],[470,890],{"className":891,"style":846},[845],[470,893,895,898,901,904,911,914,917,921],{"className":894},[758],[470,896],{"className":897,"style":861},[762],[470,899,865],{"className":900},[767,840],[470,902,870],{"className":903},[869],[470,905,907],{"className":906},[767],[470,908,910],{"className":909},[767,840],"Ri",[470,912,882],{"className":913},[881],[470,915],{"className":916,"style":846},[845],[470,918,920],{"className":919},[850],"⋅",[470,922],{"className":923,"style":846},[845],[470,925,927,931,937],{"className":926},[758],[470,928],{"className":929,"style":930},[762],"height:0.8778em;vertical-align:-0.1944em;",[470,932,936],{"className":933,"style":935},[767,934],"mathnormal","margin-right:0.0576em;","S",[470,938,941],{"className":939},[940],"mpunct",",","\nwhere ",[332,944,945],{},"D"," is a constant displacement ",[332,948,841],{},[332,950,877],{}," is the ",[315,953,758],{}," register, ",[332,956,910],{},"\nis the ",[315,959,960],{},"index"," register, and the ",[315,963,964],{},"scale",[470,966,968],{"className":967},[749],[470,969,971,993],{"className":970,"ariaHidden":754},[753],[470,972,974,978,981,985,990],{"className":973},[758],[470,975],{"className":976,"style":977},[762],"height:0.7224em;vertical-align:-0.0391em;",[470,979,936],{"className":980,"style":935},[767,934],[470,982],{"className":983,"style":984},[845],"margin-right:0.2778em;",[470,986,989],{"className":987},[988],"mrel","∈",[470,991],{"className":992,"style":984},[845],[470,994,996,999,1003,1006,1009,1013,1017,1020,1023,1027,1030,1033,1037],{"className":995},[758],[470,997],{"className":998,"style":861},[762],[470,1000,1002],{"className":1001},[869],"{",[470,1004,772],{"className":1005},[767],[470,1007,941],{"className":1008},[940],[470,1010],{"className":1011,"style":1012},[845],"margin-right:0.1667em;",[470,1014,1016],{"className":1015},[767],"2",[470,1018,941],{"className":1019},[940],[470,1021],{"className":1022,"style":1012},[845],[470,1024,1026],{"className":1025},[767],"4",[470,1028,941],{"className":1029},[940],[470,1031],{"className":1032,"style":1012},[845],[470,1034,1036],{"className":1035},[767],"8",[470,1038,1040],{"className":1039},[881],"}",". The address\nis computed first; the operand is the memory at that address.",[311,1043,1044,1045,1048,1049,1065,1066,1069,1070,1128],{},"The scale's allowed values match the sizes of the primitive types — 1, 2, 4,\n8 — which is no accident: indexing an array ",[332,1046,1047],{},"A[i]"," of ",[470,1050,1052],{"className":1051},[749],[470,1053,1055],{"className":1054,"ariaHidden":754},[753],[470,1056,1058,1062],{"className":1057},[758],[470,1059],{"className":1060,"style":1061},[762],"height:0.6833em;",[470,1063,936],{"className":1064,"style":935},[767,934],"-byte elements is\nprecisely ",[332,1067,1068],{},"base(,Ri,S)",", computing ",[470,1071,1073],{"className":1072},[749],[470,1074,1076,1099,1119],{"className":1075,"ariaHidden":754},[753],[470,1077,1079,1083,1090,1093,1096],{"className":1078},[758],[470,1080],{"className":1081,"style":1082},[762],"height:0.7778em;vertical-align:-0.0833em;",[470,1084,1087],{"className":1085},[767,1086],"text",[470,1088,758],{"className":1089},[767],[470,1091],{"className":1092,"style":846},[845],[470,1094,851],{"className":1095},[850],[470,1097],{"className":1098,"style":846},[845],[470,1100,1102,1106,1110,1113,1116],{"className":1101},[758],[470,1103],{"className":1104,"style":1105},[762],"height:0.6595em;",[470,1107,1109],{"className":1108},[767,934],"i",[470,1111],{"className":1112,"style":846},[845],[470,1114,920],{"className":1115},[850],[470,1117],{"className":1118,"style":846},[845],[470,1120,1122,1125],{"className":1121},[758],[470,1123],{"className":1124,"style":1061},[762],[470,1126,936],{"className":1127,"style":935},[767,934]," in one operand.",[411,1130],{"hash":1131},"06a6e07c3dfd5b292fe5ec0716063f1471953f09289a85d39ca0c9685a5059e8",[311,1133,1134],{},"Most operands use only part of the form, and the special cases are worth\nmemorizing because they are what you actually meet in compiled code.",[563,1136,1137,1150],{},[566,1138,1139],{},[569,1140,1141,1144,1147],{},[572,1142,1143],{},"Form",[572,1145,1146],{},"Effective address",[572,1148,1149],{},"Name",[582,1151,1152,1192,1250,1320,1407],{},[569,1153,1154,1158,1189],{},[587,1155,1156],{},[332,1157,402],{},[587,1159,1160],{},[470,1161,1163],{"className":1162},[749],[470,1164,1166],{"className":1165,"ariaHidden":754},[753],[470,1167,1169,1172,1175,1178,1186],{"className":1168},[758],[470,1170],{"className":1171,"style":861},[762],[470,1173,865],{"className":1174},[767,840],[470,1176,870],{"className":1177},[869],[470,1179,1181],{"className":1180},[767],[470,1182,1185],{"className":1183},[767,1184],"mathtt","rax",[470,1187,882],{"className":1188},[881],[587,1190,1191],{},"indirect",[569,1193,1194,1199,1247],{},[587,1195,1196],{},[332,1197,1198],{},"8(%rax)",[587,1200,1201],{},[470,1202,1204],{"className":1203},[749],[470,1205,1207,1237],{"className":1206,"ariaHidden":754},[753],[470,1208,1210,1213,1216,1219,1225,1228,1231,1234],{"className":1209},[758],[470,1211],{"className":1212,"style":861},[762],[470,1214,865],{"className":1215},[767,840],[470,1217,870],{"className":1218},[869],[470,1220,1222],{"className":1221},[767],[470,1223,1185],{"className":1224},[767,1184],[470,1226,882],{"className":1227},[881],[470,1229],{"className":1230,"style":846},[845],[470,1232,851],{"className":1233},[850],[470,1235],{"className":1236,"style":846},[845],[470,1238,1240,1244],{"className":1239},[758],[470,1241],{"className":1242,"style":1243},[762],"height:0.6444em;",[470,1245,1036],{"className":1246},[767],[587,1248,1249],{},"base + displacement",[569,1251,1252,1257,1317],{},[587,1253,1254],{},[332,1255,1256],{},"(%rax,%rcx)",[587,1258,1259],{},[470,1260,1262],{"className":1261},[749],[470,1263,1265,1295],{"className":1264,"ariaHidden":754},[753],[470,1266,1268,1271,1274,1277,1283,1286,1289,1292],{"className":1267},[758],[470,1269],{"className":1270,"style":861},[762],[470,1272,865],{"className":1273},[767,840],[470,1275,870],{"className":1276},[869],[470,1278,1280],{"className":1279},[767],[470,1281,1185],{"className":1282},[767,1184],[470,1284,882],{"className":1285},[881],[470,1287],{"className":1288,"style":846},[845],[470,1290,851],{"className":1291},[850],[470,1293],{"className":1294,"style":846},[845],[470,1296,1298,1301,1304,1307,1314],{"className":1297},[758],[470,1299],{"className":1300,"style":861},[762],[470,1302,865],{"className":1303},[767,840],[470,1305,870],{"className":1306},[869],[470,1308,1310],{"className":1309},[767],[470,1311,1313],{"className":1312},[767,1184],"rcx",[470,1315,882],{"className":1316},[881],[587,1318,1319],{},"indexed",[569,1321,1322,1327,1404],{},[587,1323,1324],{},[332,1325,1326],{},"(%rax,%rcx,4)",[587,1328,1329],{},[470,1330,1332],{"className":1331},[749],[470,1333,1335,1365,1395],{"className":1334,"ariaHidden":754},[753],[470,1336,1338,1341,1344,1347,1353,1356,1359,1362],{"className":1337},[758],[470,1339],{"className":1340,"style":861},[762],[470,1342,865],{"className":1343},[767,840],[470,1345,870],{"className":1346},[869],[470,1348,1350],{"className":1349},[767],[470,1351,1185],{"className":1352},[767,1184],[470,1354,882],{"className":1355},[881],[470,1357],{"className":1358,"style":846},[845],[470,1360,851],{"className":1361},[850],[470,1363],{"className":1364,"style":846},[845],[470,1366,1368,1371,1374,1377,1383,1386,1389,1392],{"className":1367},[758],[470,1369],{"className":1370,"style":861},[762],[470,1372,865],{"className":1373},[767,840],[470,1375,870],{"className":1376},[869],[470,1378,1380],{"className":1379},[767],[470,1381,1313],{"className":1382},[767,1184],[470,1384,882],{"className":1385},[881],[470,1387],{"className":1388,"style":846},[845],[470,1390,920],{"className":1391},[850],[470,1393],{"className":1394,"style":846},[845],[470,1396,1398,1401],{"className":1397},[758],[470,1399],{"className":1400,"style":1243},[762],[470,1402,1026],{"className":1403},[767],[587,1405,1406],{},"scaled indexed",[569,1408,1409,1414,1484],{},[587,1410,1411],{},[332,1412,1413],{},"0x40(,%rcx,8)",[587,1415,1416],{},[470,1417,1419],{"className":1418},[749],[470,1420,1422,1445,1475],{"className":1421,"ariaHidden":754},[753],[470,1423,1425,1429,1436,1439,1442],{"className":1424},[758],[470,1426],{"className":1427,"style":1428},[762],"height:0.6944em;vertical-align:-0.0833em;",[470,1430,1432],{"className":1431},[767],[470,1433,1435],{"className":1434},[767,1184],"0x40",[470,1437],{"className":1438,"style":846},[845],[470,1440,851],{"className":1441},[850],[470,1443],{"className":1444,"style":846},[845],[470,1446,1448,1451,1454,1457,1463,1466,1469,1472],{"className":1447},[758],[470,1449],{"className":1450,"style":861},[762],[470,1452,865],{"className":1453},[767,840],[470,1455,870],{"className":1456},[869],[470,1458,1460],{"className":1459},[767],[470,1461,1313],{"className":1462},[767,1184],[470,1464,882],{"className":1465},[881],[470,1467],{"className":1468,"style":846},[845],[470,1470,920],{"className":1471},[850],[470,1473],{"className":1474,"style":846},[845],[470,1476,1478,1481],{"className":1477},[758],[470,1479],{"className":1480,"style":1243},[762],[470,1482,1036],{"className":1483},[767],[587,1485,1486],{},"scaled, no base",[311,1488,1489,1490,1493,1494,335,1497,1500,1501,1504,1505,1508,1509,1609,1610,1612],{},"A worked example fixes the arithmetic. Suppose ",[332,1491,1492],{},"%rdx"," holds ",[332,1495,1496],{},"0x100",[332,1498,1499],{},"%rcx","\nholds ",[332,1502,1503],{},"3",". Then ",[332,1506,1507],{},"0x8(%rdx,%rcx,4)"," addresses\n",[470,1510,1512],{"className":1511},[749],[470,1513,1515,1537,1558,1576,1595],{"className":1514,"ariaHidden":754},[753],[470,1516,1518,1521,1528,1531,1534],{"className":1517},[758],[470,1519],{"className":1520,"style":1428},[762],[470,1522,1524],{"className":1523},[767],[470,1525,1527],{"className":1526},[767,1184],"0x8",[470,1529],{"className":1530,"style":846},[845],[470,1532,851],{"className":1533},[850],[470,1535],{"className":1536,"style":846},[845],[470,1538,1540,1543,1549,1552,1555],{"className":1539},[758],[470,1541],{"className":1542,"style":1428},[762],[470,1544,1546],{"className":1545},[767],[470,1547,1496],{"className":1548},[767,1184],[470,1550],{"className":1551,"style":846},[845],[470,1553,851],{"className":1554},[850],[470,1556],{"className":1557,"style":846},[845],[470,1559,1561,1564,1567,1570,1573],{"className":1560},[758],[470,1562],{"className":1563,"style":1243},[762],[470,1565,1503],{"className":1566},[767],[470,1568],{"className":1569,"style":846},[845],[470,1571,920],{"className":1572},[850],[470,1574],{"className":1575,"style":846},[845],[470,1577,1579,1582,1585,1588,1592],{"className":1578},[758],[470,1580],{"className":1581,"style":1243},[762],[470,1583,1026],{"className":1584},[767],[470,1586],{"className":1587,"style":984},[845],[470,1589,1591],{"className":1590},[988],"=",[470,1593],{"className":1594,"style":984},[845],[470,1596,1598,1602],{"className":1597},[758],[470,1599],{"className":1600,"style":1601},[762],"height:0.6111em;",[470,1603,1605],{"className":1604},[767],[470,1606,1608],{"className":1607},[767,1184],"0x114",", and a ",[332,1611,458],{}," from it\nreads the 8 bytes starting there.",[411,1614],{"hash":1615},"a80d92a7598116f1e148305701a4d8956b2f883a725c1a5f247f84afc77fb84b",[1617,1618,1620],"h3",{"id":1619},"a-worked-memory-access-end-to-end","A worked memory access, end to end",[311,1622,1623,1624,1626,1627,1630,1631,1633,1634,1636,1637,1639,1640,1642,1643,1646],{},"To see the addressing mode drive an actual load, fix a small memory picture and run\none instruction against it. Suppose an array of 8-byte ",[332,1625,726],{},"s begins at ",[332,1628,1629],{},"0x1000",",\n",[332,1632,1492],{}," holds that base ",[332,1635,1629],{},", and ",[332,1638,1499],{}," holds the index ",[332,1641,1016],{},". The instruction\n",[332,1644,1645],{},"movq (%rdx,%rcx,8), %rax"," should load the third element.",[311,1648,1649,1650,1805,1806,1808,1809,1811,1812,1814,1815,1818,1819,1821,1822,1824,1825,1827,1828,1830],{},"The processor evaluates the operand in two phases. First it computes the effective\naddress from the formula: ",[470,1651,1653],{"className":1652},[749],[470,1654,1656,1687,1717,1735,1756,1774,1792],{"className":1655,"ariaHidden":754},[753],[470,1657,1659,1662,1665,1668,1675,1678,1681,1684],{"className":1658},[758],[470,1660],{"className":1661,"style":861},[762],[470,1663,865],{"className":1664},[767,840],[470,1666,870],{"className":1667},[869],[470,1669,1671],{"className":1670},[767],[470,1672,1674],{"className":1673},[767,1184],"rdx",[470,1676,882],{"className":1677},[881],[470,1679],{"className":1680,"style":846},[845],[470,1682,851],{"className":1683},[850],[470,1685],{"className":1686,"style":846},[845],[470,1688,1690,1693,1696,1699,1705,1708,1711,1714],{"className":1689},[758],[470,1691],{"className":1692,"style":861},[762],[470,1694,865],{"className":1695},[767,840],[470,1697,870],{"className":1698},[869],[470,1700,1702],{"className":1701},[767],[470,1703,1313],{"className":1704},[767,1184],[470,1706,882],{"className":1707},[881],[470,1709],{"className":1710,"style":846},[845],[470,1712,920],{"className":1713},[850],[470,1715],{"className":1716,"style":846},[845],[470,1718,1720,1723,1726,1729,1732],{"className":1719},[758],[470,1721],{"className":1722,"style":1243},[762],[470,1724,1036],{"className":1725},[767],[470,1727],{"className":1728,"style":984},[845],[470,1730,1591],{"className":1731},[988],[470,1733],{"className":1734,"style":984},[845],[470,1736,1738,1741,1747,1750,1753],{"className":1737},[758],[470,1739],{"className":1740,"style":1428},[762],[470,1742,1744],{"className":1743},[767],[470,1745,1629],{"className":1746},[767,1184],[470,1748],{"className":1749,"style":846},[845],[470,1751,851],{"className":1752},[850],[470,1754],{"className":1755,"style":846},[845],[470,1757,1759,1762,1765,1768,1771],{"className":1758},[758],[470,1760],{"className":1761,"style":1243},[762],[470,1763,1016],{"className":1764},[767],[470,1766],{"className":1767,"style":846},[845],[470,1769,920],{"className":1770},[850],[470,1772],{"className":1773,"style":846},[845],[470,1775,1777,1780,1783,1786,1789],{"className":1776},[758],[470,1778],{"className":1779,"style":1243},[762],[470,1781,1036],{"className":1782},[767],[470,1784],{"className":1785,"style":984},[845],[470,1787,1591],{"className":1788},[988],[470,1790],{"className":1791,"style":984},[845],[470,1793,1795,1798],{"className":1794},[758],[470,1796],{"className":1797,"style":1601},[762],[470,1799,1801],{"className":1800},[767],[470,1802,1804],{"className":1803},[767,1184],"0x1010",". Then it reads the 8 bytes starting\nat ",[332,1807,1804],{}," and copies them into ",[332,1810,382],{},". If the ",[332,1813,726],{}," stored there is ",[332,1816,1817],{},"0x2A","\n(decimal 42), ",[332,1820,382],{}," ends holding ",[332,1823,1817],{},"; the base register ",[332,1826,1492],{}," and index ",[332,1829,1499],{},"\nare untouched, since the address arithmetic happens in a hidden adder, not in them.",[411,1832],{"hash":1833},"41df3d25775b3ce47a207014ac30e0c3e4e7fdc976646be42b46efb7d9e7e6c5",[311,1835,1836],{},"The two-phase reading — compute an address, then touch memory once — is the whole\nmental model for every memory operand. The next instruction stops after the first\nphase.",[341,1838,1840],{"id":1839},"lea-computes-addresses","lea computes addresses",[311,1842,1843,1844,1847,1848,383,1850,1853,1854,1856,1857,1859,1860,1862,1863,1866,1867],{},"There is one instruction that uses the addressing-mode syntax but does ",[315,1845,1846],{},"not","\ntouch memory: ",[332,1849,329],{},[405,1851,1852],{},"load effective address."," Where a ",[332,1855,317],{}," from ",[332,1858,819],{},"\nfetches the bytes at the computed address, ",[332,1861,329],{}," computes the address and writes\n",[315,1864,1865],{},"the address itself"," into the destination register.",[1868,1869,1870],"sup",{},[712,1871,772],{"href":1872,"ariaDescribedBy":1873,"dataFootnoteRef":306,"id":1875},"#user-content-fn-lea",[1874],"footnote-label","user-content-fnref-lea",[411,1877],{"hash":1878},"d54912359a435af8b5f040f68bd555fab496cf67dffd08f18edcb40f4ea50c42",[461,1880,1883],{"className":463,"code":1881,"filename":1882,"language":466,"meta":306,"style":306},"# %rdi = x.  Compute &A[i] style addresses without a memory access.\nleaq    7(%rdi), %rax        # rax = x + 7\nleaq    (%rdi,%rdi,2), %rax   # rax = x + 2x = 3x\nleaq    0(,%rdi,8), %rax      # rax = 8x\n","lea.s",[332,1884,1885,1890,1905,1918],{"__ignoreMap":306},[470,1886,1887],{"class":472,"line":6},[470,1888,1889],{"class":482},"# %rdi = x.  Compute &A[i] style addresses without a memory access.\n",[470,1891,1892,1895,1899,1902],{"class":472,"line":17},[470,1893,1894],{"class":478},"leaq    ",[470,1896,1898],{"class":1897},"sat3U","7",[470,1900,1901],{"class":478},"(%rdi), %rax       ",[470,1903,1904],{"class":482}," # rax = x + 7\n",[470,1906,1907,1910,1912,1915],{"class":472,"line":23},[470,1908,1909],{"class":478},"leaq    (%rdi,%rdi,",[470,1911,1016],{"class":1897},[470,1913,1914],{"class":478},"), %rax  ",[470,1916,1917],{"class":482}," # rax = x + 2x = 3x\n",[470,1919,1920,1922,1925,1928,1930,1933],{"class":472,"line":29},[470,1921,1894],{"class":478},[470,1923,1924],{"class":1897},"0",[470,1926,1927],{"class":478},"(,%rdi,",[470,1929,1036],{"class":1897},[470,1931,1932],{"class":478},"), %rax     ",[470,1934,1935],{"class":482}," # rax = 8x\n",[311,1937,1938,1939,1941,1942,1945,1946,339],{},"Because the address formula is a sum of a constant, a register, and a\nscaled register, ",[332,1940,329],{}," doubles as a fast way to compute ",[332,1943,1944],{},"Imm + a + b·{1,2,4,8}","\nin a single instruction, often more cheaply than the equivalent add-and-multiply.\nCompilers reach for it constantly for small multiplications and array-offset math;\nwe return to this trick in\n",[712,1947,1948],{"href":54},"arithmetic and logic",[808,1950,1951],{"type":810},[311,1952,1953,514,1956,1959,1960,1963,1964,2060,2061,2063],{},[315,1954,1955],{},"Definition (lea).",[332,1957,1958],{},"leaq D(Rb,Ri,S), Rd"," sets ",[332,1961,1962],{},"Rd"," to the effective address\n",[470,1965,1967],{"className":1966},[749],[470,1968,1970,1991,2021,2051],{"className":1969,"ariaHidden":754},[753],[470,1971,1973,1976,1982,1985,1988],{"className":1972},[758],[470,1974],{"className":1975,"style":833},[762],[470,1977,1979],{"className":1978},[767],[470,1980,841],{"className":1981},[767,840],[470,1983],{"className":1984,"style":846},[845],[470,1986,851],{"className":1987},[850],[470,1989],{"className":1990,"style":846},[845],[470,1992,1994,1997,2000,2003,2009,2012,2015,2018],{"className":1993},[758],[470,1995],{"className":1996,"style":861},[762],[470,1998,865],{"className":1999},[767,840],[470,2001,870],{"className":2002},[869],[470,2004,2006],{"className":2005},[767],[470,2007,877],{"className":2008},[767,840],[470,2010,882],{"className":2011},[881],[470,2013],{"className":2014,"style":846},[845],[470,2016,851],{"className":2017},[850],[470,2019],{"className":2020,"style":846},[845],[470,2022,2024,2027,2030,2033,2039,2042,2045,2048],{"className":2023},[758],[470,2025],{"className":2026,"style":861},[762],[470,2028,865],{"className":2029},[767,840],[470,2031,870],{"className":2032},[869],[470,2034,2036],{"className":2035},[767],[470,2037,910],{"className":2038},[767,840],[470,2040,882],{"className":2041},[881],[470,2043],{"className":2044,"style":846},[845],[470,2046,920],{"className":2047},[850],[470,2049],{"className":2050,"style":846},[845],[470,2052,2054,2057],{"className":2053},[758],[470,2055],{"className":2056,"style":1061},[762],[470,2058,936],{"className":2059,"style":935},[767,934]," without\nreading or writing memory. It is ",[332,2062,317],{},"'s addressing syntax used purely as an\narithmetic expression.",[341,2065,2067],{"id":2066},"the-stack-push-and-pop","The stack: push and pop",[311,2069,2070,2071,2074,2075,2078,2079,2082,2083,2086,2087,2090,2091,2093,2094,2096,2097,2100,2101,2103,2104,2106],{},"The run-time ",[315,2072,2073],{},"stack"," is a region of memory that grows toward ",[315,2076,2077],{},"lower"," addresses,\nwith ",[332,2080,2081],{},"%rsp"," always pointing at the ",[315,2084,2085],{},"top"," element — the lowest occupied address.\nTwo instructions maintain it. ",[332,2088,2089],{},"pushq S"," makes room by decrementing ",[332,2092,2081],{}," by 8 and\nwrites ",[332,2095,936],{}," to the new top; ",[332,2098,2099],{},"popq D"," reads the top into ",[332,2102,945],{}," and reclaims the space\nby incrementing ",[332,2105,2081],{}," by 8.",[411,2108],{"hash":2109},"1d55dcc5745a30414cdd84115a3e1f467a0b4aa3f9c6fe2535594990f5040525",[311,2111,2112,2113,2116,2117,2120,2121,2124,2125,553,2128,2131,2132,2135,2136,553,2139,2142],{},"Because the stack lives in ordinary memory, the top element is reachable as\n",[332,2114,2115],{},"(%rsp)",", the element below it as ",[332,2118,2119],{},"8(%rsp)",", and so on. ",[332,2122,2123],{},"pushq %rbp"," is therefore\nexactly equivalent to the pair ",[332,2126,2127],{},"subq $8, %rsp",[332,2129,2130],{},"movq %rbp, (%rsp)",", and\n",[332,2133,2134],{},"popq %rax"," to ",[332,2137,2138],{},"movq (%rsp), %rax",[332,2140,2141],{},"addq $8, %rsp",". The single instructions\nare shorter encodings of those pairs.",[311,2144,2145,2146,1493,2148,2151,2152,1493,2154,2157,2158,2161,2162,2164,2165,2168,2169,2171,2172,2175,2176,2179,2180,2135,2182,2185,2186,2189,2190,2193,2194,2196,2197,2199,2200,2202,2203,2135,2205,2207,2208,335,2210,2212,2213,2215],{},"A numeric trace nails the pointer arithmetic. Say ",[332,2147,2081],{},[332,2149,2150],{},"0x7fffffffe018","\nand ",[332,2153,382],{},[332,2155,2156],{},"0x9",". Executing ",[332,2159,2160],{},"pushq %rax"," does two things in order: it\nsubtracts 8 from ",[332,2163,2081],{},", giving ",[332,2166,2167],{},"0x7fffffffe010",", then writes ",[332,2170,2156],{}," to the memory\nat that new address. A following ",[332,2173,2174],{},"pushq %rbx"," (with ",[332,2177,2178],{},"%rbx = 0x4",") repeats the\npattern, lowering ",[332,2181,2081],{},[332,2183,2184],{},"0x7fffffffe008"," and storing ",[332,2187,2188],{},"0x4"," there. Now a\n",[332,2191,2192],{},"popq %rcx"," reads ",[332,2195,2115],{}," — the ",[332,2198,2188],{}," just pushed — into ",[332,2201,1499],{}," and adds 8 back,\nreturning ",[332,2204,2081],{},[332,2206,2167],{},". The stack is last-in, first-out precisely\nbecause ",[332,2209,334],{},[332,2211,338],{}," move ",[332,2214,2081],{}," in opposite directions by the same 8.",[411,2217],{"hash":2218},"bfbe07da236d656688a315ccb702acff3280bd0ab5e1520677aa712130aa2349",[311,2220,2221,2222,2225,2226,2229,2230,339],{},"This same stack is where ",[332,2223,2224],{},"call"," saves its return address and where procedures keep\ntheir local frames, the subject of\n",[712,2227,2228],{"href":64},"procedures",". For now the\nkey facts are the direction of growth and the role of ",[332,2231,2081],{},[341,2233,2235],{"id":2234},"wider-moves-and-the-red-zone","Wider moves and the red zone",[311,2237,427,2238,2240,2241,383,2244,383,2247,2250,2251,2254,2255,2258,2259,2262,2263,2266,2267,2269,2270,2273,2274,2277,2278],{},[332,2239,317],{}," family CS:APP presents is the integer core, but the same processor moves\ndata in wider units the compiler reaches for constantly. The SSE and AVX extensions\nadd 128-, 256-, and 512-bit vector registers (",[332,2242,2243],{},"%xmm0",[332,2245,2246],{},"%ymm0",[332,2248,2249],{},"%zmm0",") and their\nown move instructions: ",[332,2252,2253],{},"movdqa","\u002F",[332,2256,2257],{},"movdqu"," copy 16 bytes aligned or unaligned,\n",[332,2260,2261],{},"vmovups"," copies 32. When gcc vectorizes a loop or inlines a small ",[332,2264,2265],{},"memcpy",", the\nassembly is full of these wide moves rather than a run of ",[332,2268,458],{},"s, so recognizing\n",[332,2271,2272],{},"movdqu (%rsi), %xmm0"," as ",[405,2275,2276],{},"load 16 bytes"," is part of reading optimized output. These\nsit in the same source lineage — Intel's own architecture manuals document them\nalongside the integer moves — and follow the identical operand grammar, only wider.",[1868,2279,2280],{},[712,2281,1016],{"href":2282,"ariaDescribedBy":2283,"dataFootnoteRef":306,"id":2284},"#user-content-fn-intel",[1874],"user-content-fnref-intel",[311,2286,2287,2288,2291,2292,514,2296,2298,2299,2301,2302,383,2305,2308,2309,2312,2313,2316,2317],{},"One System V detail CS:APP mentions only in passing is worth stating outright\nbecause it surprises debugger users: the ",[315,2289,2290],{},"red zone",". The ABI reserves the 128\nbytes ",[2293,2294,2295],"em",{},"below",[332,2297,2081],{}," as scratch space a leaf function (one that calls nothing) may\nuse without moving ",[332,2300,2081],{}," at all. A short leaf function can therefore keep locals at\n",[332,2303,2304],{},"-8(%rsp)",[332,2306,2307],{},"-16(%rsp)",", and so on, emitting no ",[332,2310,2311],{},"subq $N, %rsp"," prologue, because it\nis guaranteed nothing — not even an interrupt handler on the same stack — will\nclobber that region. This is why some compiled leaf functions appear to write ",[405,2314,2315],{},"below the stack"," and are still correct.",[1868,2318,2319],{},[712,2320,1503],{"href":2321,"ariaDescribedBy":2322,"dataFootnoteRef":306,"id":2323},"#user-content-fn-redzone",[1874],"user-content-fnref-redzone",[808,2325,2327],{"type":2326},"note",[311,2328,2329,2332,2333,2335,2336,2338,2339,2341,2342,2438,2439,1636,2505,2507,2508,2254,2511,2514,2515,2517],{},[315,2330,2331],{},"Takeaway."," Operands are immediates (",[332,2334,360],{},"), registers (",[332,2337,378],{},"), or memory; at most\none operand is memory. The addressing mode ",[332,2340,819],{}," computes\n",[470,2343,2345],{"className":2344},[749],[470,2346,2348,2369,2399,2429],{"className":2347,"ariaHidden":754},[753],[470,2349,2351,2354,2360,2363,2366],{"className":2350},[758],[470,2352],{"className":2353,"style":833},[762],[470,2355,2357],{"className":2356},[767],[470,2358,841],{"className":2359},[767,840],[470,2361],{"className":2362,"style":846},[845],[470,2364,851],{"className":2365},[850],[470,2367],{"className":2368,"style":846},[845],[470,2370,2372,2375,2378,2381,2387,2390,2393,2396],{"className":2371},[758],[470,2373],{"className":2374,"style":861},[762],[470,2376,865],{"className":2377},[767,840],[470,2379,870],{"className":2380},[869],[470,2382,2384],{"className":2383},[767],[470,2385,877],{"className":2386},[767,840],[470,2388,882],{"className":2389},[881],[470,2391],{"className":2392,"style":846},[845],[470,2394,851],{"className":2395},[850],[470,2397],{"className":2398,"style":846},[845],[470,2400,2402,2405,2408,2411,2417,2420,2423,2426],{"className":2401},[758],[470,2403],{"className":2404,"style":861},[762],[470,2406,865],{"className":2407},[767,840],[470,2409,870],{"className":2410},[869],[470,2412,2414],{"className":2413},[767],[470,2415,910],{"className":2416},[767,840],[470,2418,882],{"className":2419},[881],[470,2421],{"className":2422,"style":846},[845],[470,2424,920],{"className":2425},[850],[470,2427],{"className":2428,"style":846},[845],[470,2430,2432,2435],{"className":2431},[758],[470,2433],{"className":2434,"style":1061},[762],[470,2436,936],{"className":2437,"style":935},[767,934]," with\n",[470,2440,2442],{"className":2441},[749],[470,2443,2445,2463],{"className":2444,"ariaHidden":754},[753],[470,2446,2448,2451,2454,2457,2460],{"className":2447},[758],[470,2449],{"className":2450,"style":977},[762],[470,2452,936],{"className":2453,"style":935},[767,934],[470,2455],{"className":2456,"style":984},[845],[470,2458,989],{"className":2459},[988],[470,2461],{"className":2462,"style":984},[845],[470,2464,2466,2469,2472,2475,2478,2481,2484,2487,2490,2493,2496,2499,2502],{"className":2465},[758],[470,2467],{"className":2468,"style":861},[762],[470,2470,1002],{"className":2471},[869],[470,2473,772],{"className":2474},[767],[470,2476,941],{"className":2477},[940],[470,2479],{"className":2480,"style":1012},[845],[470,2482,1016],{"className":2483},[767],[470,2485,941],{"className":2486},[940],[470,2488],{"className":2489,"style":1012},[845],[470,2491,1026],{"className":2492},[767],[470,2494,941],{"className":2495},[940],[470,2497],{"className":2498,"style":1012},[845],[470,2500,1036],{"className":2501},[767],[470,2503,1040],{"className":2504},[881],[332,2506,329],{}," returns that address itself instead of the memory\nat it. The stack grows toward lower addresses; ",[332,2509,2510],{},"pushq",[332,2512,2513],{},"popq"," adjust ",[332,2516,2081],{}," by 8\nand move one quad word across the top.",[2519,2520,2523,2528],"section",{"className":2521,"dataFootnotes":306},[2522],"footnotes",[341,2524,2527],{"className":2525,"id":1874},[2526],"sr-only","Footnotes",[2529,2530,2531,2552,2574],"ol",{},[352,2532,2534,383,2537,2540,2541,2544,2545],{"id":2533},"user-content-fn-lea",[315,2535,2536],{},"Bryant & O'Hallaron",[2293,2538,2539],{},"CS:APP",", §3.5.1 — Load Effective Address: ",[332,2542,2543],{},"leaq"," computes the effective address of a memory operand and stores it, doubling as compact arithmetic. ",[712,2546,2551],{"href":2547,"ariaLabel":2548,"className":2549,"dataFootnoteBackref":306},"#user-content-fnref-lea","Back to reference 1",[2550],"data-footnote-backref","↩",[352,2553,2555,383,2558,2561,2562,383,2564,383,2566,2568,2569],{"id":2554},"user-content-fn-intel",[315,2556,2557],{},"Intel",[2293,2559,2560],{},"Intel 64 and IA-32 Architectures Software Developer's Manual, Volume 1"," (2023), §10–§15 — the SSE\u002FAVX\u002FAVX-512 register files and their aligned\u002Funaligned move instructions (",[332,2563,2253],{},[332,2565,2257],{},[332,2567,2261],{},"). ",[712,2570,2551],{"href":2571,"ariaLabel":2572,"className":2573,"dataFootnoteBackref":306},"#user-content-fnref-intel","Back to reference 2",[2550],[352,2575,2577,383,2580,2583,2584,2586,2587],{"id":2576},"user-content-fn-redzone",[315,2578,2579],{},"Matz, Hubička, Jaeger & Mitchell",[2293,2581,2582],{},"System V Application Binary Interface, AMD64 Architecture Processor Supplement"," (v1.0, 2018), §3.2.2 — the 128-byte red zone below ",[332,2585,2081],{}," that leaf functions may use without adjusting the stack pointer. ",[712,2588,2551],{"href":2589,"ariaLabel":2590,"className":2591,"dataFootnoteBackref":306},"#user-content-fnref-redzone","Back to reference 3",[2550],[2593,2594,2595],"style",{},"html pre.shiki code .sdxpw, html code.shiki .sdxpw{--shiki-default:#505050;--shiki-dark-mode:#A0A0A0}html pre.shiki code .s3i95, html code.shiki .s3i95{--shiki-default:#000000;--shiki-dark-mode:#FFF}html pre.shiki code .sEX4i, html code.shiki .sEX4i{--shiki-default:#8B8B8B;--shiki-dark-mode:#8B8B8B94}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html.dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html pre.shiki code .sat3U, html code.shiki .sat3U{--shiki-default:#FF8C00;--shiki-dark-mode:#FFC799}",{"title":306,"searchDepth":17,"depth":17,"links":2597},[2598,2599,2600,2603,2604,2605,2606],{"id":343,"depth":17,"text":344},{"id":423,"depth":17,"text":424},{"id":802,"depth":17,"text":803,"children":2601},[2602],{"id":1619,"depth":23,"text":1620},{"id":1839,"depth":17,"text":1840},{"id":2066,"depth":17,"text":2067},{"id":2234,"depth":17,"text":2235},{"id":1874,"depth":17,"text":2527},[],"computer-science","The single most common thing a processor does is copy bytes from one place to\nanother — register to register, memory to register, register to memory. Before any\narithmetic can happen the operands must be in the right registers, and afterward\nthe result must be written back. This lesson covers the mov family that does\nthat copying, the operand forms that name where data lives, the full memory\naddressing mode, the address-computing lea, and the stack operations\npush and pop.",false,"md",{"moduleNumber":6,"lessonNumber":17,"order":2613},102,true,[],"---\ntitle: Data Movement\nmodule: Machine-Level Programming\nmoduleNumber: 1\nlessonNumber: 2\norder: 102\nsummary: >\n  Most instructions a program runs simply move data. We cover the mov family and\n  its size suffixes, the three operand forms, the full memory addressing mode\n  D(Rb,Ri,S) and its special cases, lea for address arithmetic, and how push and\n  pop manipulate the stack pointer %rsp on a stack that grows toward lower\n  addresses.\ntopics: [Machine-Level Programming]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §3.4 Accessing Information (Operand Specifiers, Data Movement, Pushing and Popping)\"\n---\n\nThe single most common thing a processor does is copy bytes from one place to\nanother — register to register, memory to register, register to memory. Before any\narithmetic can happen the operands must be in the right registers, and afterward\nthe result must be written back. This lesson covers the **mov** family that does\nthat copying, the **operand forms** that name where data lives, the full memory\n**addressing mode**, the address-computing **lea**, and the stack operations\n`push` and `pop`.\n\n## The three operand forms\n\nEvery operand an instruction reads or writes takes one of three forms, and\nlearning to classify them at a glance is most of the battle in reading assembly.\n\n- **Immediate** — a literal constant, written with a `$` prefix, as in `$0x1f` or\n  `$255`. Immediates can only be sources, never destinations.\n- **Register** — the contents of one of the sixteen registers (at any of its four\n  widths), written with a `%` prefix: `%rax`, `%edi`, `%al`.\n- **Memory** — the bytes **at** a computed address, written with the address in\n  parentheses: `(%rax)` means \"the bytes at the address held in `%rax`.\"\n\n$$\n% caption: The three operand forms. An immediate is a literal carried in the\n% caption: instruction; a register names one of the sixteen slots; a memory operand\n% caption: is the bytes at an address. Only memory involves a trip to RAM.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  box\u002F.style={draw, minimum width=24mm, minimum height=12mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box] (imm) at (0,0) {\\textbf{immediate}\\\\$\\mathtt{{\\char36}0x1f}$\\\\a literal value};\n  \\node[box] (reg) at (3.2,0) {\\textbf{register}\\\\$\\mathtt{\\%rax}$\\\\its own contents};\n  \\node[box, draw=acc, fill=acc!8] (mem) at (6.4,0) {\\textbf{memory}\\\\$\\mathtt{(\\%rax)}$\\\\bytes at an address};\n  \\node[font=\\scriptsize, align=center] at (0,-1.2) {source only};\n  \\node[font=\\scriptsize, align=center] at (3.2,-1.2) {source or dest};\n  \\node[font=\\scriptsize, align=center, text=acc] at (6.4,-1.2) {source or dest};\n\\end{tikzpicture}\n$$\n\nThe one rule that constrains every move: **at most one operand may be a memory\nreference.** x86-64 has no instruction that copies memory directly to memory; such\na copy is two instructions, through a register.\n\n## The mov family\n\nThe `mov` instruction **copies** the value of its source into its\ndestination, leaving the source unchanged — register to register, memory to\nregister, or register to memory. The size suffix fixes how many bytes are copied.\n\n$$\n% caption: mov as a copy. The value in the source is duplicated into the\n% caption: destination; the source keeps its value. Here movq (%rsi), %rdx copies\n% caption: 8 bytes from the memory cell at %rsi into the register %rdx.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  box\u002F.style={draw, minimum width=20mm, minimum height=9mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box, draw=acc, fill=acc!8] (src) at (0,0) {$\\mathtt{(\\%rsi)}$\\\\\\texttt{0x42}};\n  \\node[box] (dst) at (5.2,0) {$\\mathtt{\\%rdx}$\\\\\\texttt{0x42}};\n  \\node[font=\\scriptsize] at (0,-1.0) {memory cell (source)};\n  \\node[font=\\scriptsize] at (5.2,-1.0) {register (dest)};\n  \\draw[->, very thick, acc] (src.east) -- (dst.west)\n    node[midway, above, font=\\scriptsize] {copy 8 bytes};\n  \\node[font=\\scriptsize, align=center] at (2.6,-0.75) {$\\mathtt{movq\\ (\\%rsi),\\%rdx}$};\n\\end{tikzpicture}\n$$\n\nThe basic copy instruction is `mov`, carrying a size suffix that fixes how many\nbytes move. `movb` moves one byte, `movw` two, `movl` four, `movq` eight. The\nsource and destination widths must agree with the suffix.\n\n```asm [movs.s]\nmovq    $0x4050, %rax     # immediate -> register (8 bytes)\nmovb    %al, (%rdi)       # register  -> memory   (1 byte)\nmovl    (%rsi), %edx      # memory    -> register (4 bytes)\nmovw    %ax, %bx          # register  -> register (2 bytes)\n```\n\nTwo specialized moves handle width changes when copying a small value into a\nlarger register. `movz` **zero-extends** the source (fills the high bytes with\nzeros) and `movs` **sign-extends** it (replicates the sign bit), each taking a\ntwo-letter suffix naming the source then destination widths.\n\n```asm [extend.s]\nmovzbq  %al, %rbx         # zero-extend  byte -> quad\nmovsbl  %al, %edx         # sign-extend  byte -> long\n```\n\nThe full family is small and follows one naming scheme: `mov` then `z` or `s`,\nthen the source width, then the destination width. The source is always narrower\nthan the destination, so the reachable pairs are these.\n\n| Instruction | Source → dest | Extension |\n| --- | --- | --- |\n| `movzbw` \u002F `movsbw` | byte → word | zero \u002F sign |\n| `movzbl` \u002F `movsbl` | byte → long | zero \u002F sign |\n| `movzwl` \u002F `movswl` | word → long | zero \u002F sign |\n| `movzbq` \u002F `movsbq` | byte → quad | zero \u002F sign |\n| `movzwq` \u002F `movswq` | word → quad | zero \u002F sign |\n| — \u002F `movslq` | long → quad | sign only |\n\nTwo gaps in the table are worth naming. There is no `movzlq` for a\n**long-to-quad zero-extend**, because a plain `movl` into the 32-bit destination\nalready zeroes the upper four bytes: `movl %eax, %eax` is the idiomatic 32-to-64\nzero-extend, so a dedicated instruction would be redundant. Sign extension has no\nsuch shortcut, so `movslq` (also spelled `cltq` when the operand is `%eax`) does\nexist. Every other combination is a genuine two-width move that the narrow write\nalone cannot express.\n\nThat `movl` shortcut is the upper-byte-zeroing rule from\n[the machine's view](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view)\nput to work: any `l`-suffixed write clears the top four bytes, so the compiler\nleans on it wherever an `int`-to-`long` zero-extend is needed.\n\nThe zero-versus-sign choice changes the numeric value. Take the\nbyte `0xFF` sitting in `%al`. As an `unsigned char` that is 255; as a `signed char`\nit is $-1$. Widening it to a quad must preserve whichever interpretation the C type\ndemanded, and the two `mov` variants do exactly that.\n\n$$\n% caption: Extending the byte 0xFF from %al to a quad. movzbq fills the new high\n% caption: bytes with zeros (value 255); movsbq replicates the sign bit 1 (value -1).\n% caption: The source bits are identical; the fill bytes decide the number.\n\\begin{tikzpicture}[font=\\footnotesize,\n  cell\u002F.style={draw, minimum width=34mm, minimum height=6.5mm, inner sep=2pt},\n  hi\u002F.style={draw=acc, text=acc, minimum width=34mm, minimum height=6.5mm, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=east, font=\\scriptsize] at (0.2,0.8) {$\\mathtt{movzbq\\ \\%al,\\%rbx}$};\n  \\node[hi] at (2.6,0.8) {$\\mathtt{0000\\,0000\\,0000\\,00FF}$};\n  \\node[anchor=west, font=\\scriptsize] at (4.5,0.8) {$= 255$};\n  \\node[anchor=east, font=\\scriptsize] at (0.2,-0.2) {$\\mathtt{movsbq\\ \\%al,\\%rbx}$};\n  \\node[hi] at (2.6,-0.2) {$\\mathtt{FFFF\\,FFFF\\,FFFF\\,FFFF}$};\n  \\node[anchor=west, font=\\scriptsize] at (4.5,-0.2) {$= \\text{-}1$};\n\\end{tikzpicture}\n$$\n\nThe low byte `FF` is the same in both rows; only the seven new bytes differ, and\nthat difference is the entire distinction between `unsigned` and `signed` widening.\nThis is why C's integer-promotion rules compile to one instruction or the other, and\nwhy a stray `movzbl` where the code meant `movsbl` turns a small negative into a\nlarge positive.\n\n## The full addressing mode\n\nA memory operand specifies how to compute an address. The general form combines a\nconstant displacement, a base register, an index register, and a scale factor, and\nthe hardware evaluates the address by a single formula.\n\n> **Definition (Memory addressing mode).** The operand `D(Rb,Ri,S)` denotes the\n> bytes at address\n> $$ \\mathrm{Imm} + \\mathrm{R}[\\mathrm{Rb}] + \\mathrm{R}[\\mathrm{Ri}] \\cdot S, $$\n> where `D` is a constant displacement `Imm`, `Rb` is the **base** register, `Ri`\n> is the **index** register, and the **scale** $S \\in \\{1, 2, 4, 8\\}$. The address\n> is computed first; the operand is the memory at that address.\n\nThe scale's allowed values match the sizes of the primitive types — 1, 2, 4,\n8 — which is no accident: indexing an array `A[i]` of $S$-byte elements is\nprecisely `base(,Ri,S)`, computing $\\text{base} + i \\cdot S$ in one operand.\n\n$$\n% caption: The general addressing mode D(Rb,Ri,S). The effective address is the\n% caption: displacement plus the base register plus the scaled index; the operand\n% caption: is the memory found there.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth]\n  \\definecolor{acc}{HTML}{2348F2}\n  % the four components on a row\n  \\node (d)  at (0,0)   {$\\mathtt{D}$};\n  \\node      at (0.55,0) {$\\mathtt{(}$};\n  \\node (rb) at (1.4,0) {$\\mathtt{Rb}$};\n  \\node      at (2.0,0) {\\texttt{,}};\n  \\node (ri) at (2.9,0) {$\\mathtt{Ri}$};\n  \\node      at (3.5,0) {\\texttt{,}};\n  \\node (s)  at (4.3,0) {$\\mathtt{S}$};\n  \\node      at (4.85,0) {$\\mathtt{)}$};\n  % role labels, alternating above\u002Fbelow to avoid crowding\n  \\node[text=acc, font=\\scriptsize, align=center] at (0,1.0) {displacement\\\\$\\mathrm{Imm}$};\n  \\draw[acc, ->] (0,0.7) -- (d.north);\n  \\node[text=acc, font=\\scriptsize, align=center] at (1.4,-1.0) {base reg};\n  \\draw[acc, ->] (1.4,-0.7) -- (rb.south);\n  \\node[text=acc, font=\\scriptsize, align=center] at (2.9,1.0) {index reg};\n  \\draw[acc, ->] (2.9,0.7) -- (ri.north);\n  \\node[text=acc, font=\\scriptsize, align=center] at (4.3,-1.0) {scale\\\\1, 2, 4, 8};\n  \\draw[acc, ->] (4.3,-0.7) -- (s.south);\n  % the resulting formula\n  \\node[anchor=west] at (6.2,0) {$=\\ \\mathrm{Imm} + \\mathrm{R}[\\mathrm{Rb}] + \\mathrm{R}[\\mathrm{Ri}]$ x $S$};\n\\end{tikzpicture}\n$$\n\nMost operands use only part of the form, and the special cases are worth\nmemorizing because they are what you actually meet in compiled code.\n\n| Form | Effective address | Name |\n| --- | --- | --- |\n| `(%rax)` | $\\mathrm{R}[\\mathtt{rax}]$ | indirect |\n| `8(%rax)` | $\\mathrm{R}[\\mathtt{rax}] + 8$ | base + displacement |\n| `(%rax,%rcx)` | $\\mathrm{R}[\\mathtt{rax}] + \\mathrm{R}[\\mathtt{rcx}]$ | indexed |\n| `(%rax,%rcx,4)` | $\\mathrm{R}[\\mathtt{rax}] + \\mathrm{R}[\\mathtt{rcx}] \\cdot 4$ | scaled indexed |\n| `0x40(,%rcx,8)` | $\\mathtt{0x40} + \\mathrm{R}[\\mathtt{rcx}] \\cdot 8$ | scaled, no base |\n\nA worked example fixes the arithmetic. Suppose `%rdx` holds `0x100` and `%rcx`\nholds `3`. Then `0x8(%rdx,%rcx,4)` addresses\n$\\mathtt{0x8} + \\mathtt{0x100} + 3 \\cdot 4 = \\mathtt{0x114}$, and a `movq` from it\nreads the 8 bytes starting there.\n\n$$\n% caption: Resolving 0x8(%rdx,%rcx,4) with %rdx=0x100 and %rcx=3. The three terms\n% caption: sum to the effective address 0x114; the operand is the quad word in\n% caption: memory at that address.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  term\u002F.style={draw, minimum width=20mm, minimum height=8mm, align=center},\n  cell\u002F.style={draw, minimum width=22mm, minimum height=7mm, inner sep=1pt, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % the three summands stacked\n  \\node[term] (d)  at (0,1.2)  {$\\mathtt{0x8}$};\n  \\node[term] (rb) at (0,0.0)  {$\\mathtt{\\%rdx}=\\mathtt{0x100}$};\n  \\node[term] (ri) at (0,-1.2) {3 x 4 = \\texttt{0xC}};\n  % sum node\n  \\node[term, draw=acc, thick] (ea) at (4.2,0.0) {$\\mathtt{0x114}$};\n  \\draw[->, thick] (d.east)  -- (ea.north west);\n  \\draw[->, thick] (rb.east) -- (ea.west);\n  \\draw[->, thick] (ri.east) -- (ea.south west);\n  % memory column to the right\n  \\node[cell] (m1) at (8.6,0.7)  {...};\n  \\node[cell, draw=acc, fill=acc!8] (m2) at (8.6,0.0) {quad word};\n  \\node[cell] (m3) at (8.6,-0.7) {...};\n  \\node[anchor=west, text=acc, font=\\footnotesize] at (10.0,0.0) {at \\texttt{0x114}};\n  \\draw[->, thick, acc] (ea.east) -- (m2.west) node[midway, above, font=\\scriptsize] {address};\n\\end{tikzpicture}\n$$\n\n### A worked memory access, end to end\n\nTo see the addressing mode drive an actual load, fix a small memory picture and run\none instruction against it. Suppose an array of 8-byte `long`s begins at `0x1000`,\n`%rdx` holds that base `0x1000`, and `%rcx` holds the index `2`. The instruction\n`movq (%rdx,%rcx,8), %rax` should load the third element.\n\nThe processor evaluates the operand in two phases. First it computes the effective\naddress from the formula: $\\mathrm{R}[\\mathtt{rdx}] + \\mathrm{R}[\\mathtt{rcx}] \\cdot 8\n= \\mathtt{0x1000} + 2 \\cdot 8 = \\mathtt{0x1010}$. Then it reads the 8 bytes starting\nat `0x1010` and copies them into `%rax`. If the `long` stored there is `0x2A`\n(decimal 42), `%rax` ends holding `0x2A`; the base register `%rdx` and index `%rcx`\nare untouched, since the address arithmetic happens in a hidden adder, not in them.\n\n$$\n% caption: movq (%rdx,%rcx,8), %rax with %rdx=0x1000 and %rcx=2. The effective\n% caption: address 0x1010 selects the third 8-byte element; its value 0x2A is copied\n% caption: into %rax while the base and index registers keep their values.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  cell\u002F.style={draw, minimum width=20mm, minimum height=7mm, inner sep=1pt, align=center},\n  reg\u002F.style={draw, minimum width=20mm, minimum height=7mm, inner sep=1pt, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % memory column, addresses ascending downward\n  \\node[font=\\scriptsize] at (0,2.4) {memory};\n  \\node[cell] (m0) at (0,1.6)  {\\texttt{0x2200}};\n  \\node[cell] (m1) at (0,0.8)  {\\texttt{0x1111}};\n  \\node[cell, draw=acc, fill=acc!8] (m2) at (0,0.0) {\\texttt{0x2A}};\n  \\node[cell] (m3) at (0,-0.8) {\\texttt{...}};\n  \\node[anchor=east, font=\\scriptsize] at (-1.15,1.6) {\\texttt{0x1000}};\n  \\node[anchor=east, font=\\scriptsize] at (-1.15,0.8) {\\texttt{0x1008}};\n  \\node[anchor=east, text=acc, font=\\scriptsize] at (-1.15,0.0) {\\texttt{0x1010}};\n  % address computation\n  \\node[align=center, font=\\scriptsize] (calc) at (5.4,1.2)\n    {ef\\\u002Ff. address $=$ base $+$ 2 x 8\\\\$= \\mathtt{0x1000} + \\mathtt{0x10} = \\mathtt{0x1010}$};\n  \\draw[->, thick, acc] (calc.south) -- (2.7,0.0) -- (m2.east)\n    node[pos=0.7, above, font=\\scriptsize] {select};\n  % destination register\n  \\node[reg, draw=acc, thick] (rax) at (5.4,-0.6) {$\\mathtt{\\%rax}=\\mathtt{0x2A}$};\n  \\draw[->, thick, acc] (m2.south) .. controls (2.0,-0.8) .. (rax.west)\n    node[pos=0.6, below, font=\\scriptsize] {copy 8 bytes};\n\\end{tikzpicture}\n$$\n\nThe two-phase reading — compute an address, then touch memory once — is the whole\nmental model for every memory operand. The next instruction stops after the first\nphase.\n\n## lea computes addresses\n\nThere is one instruction that uses the addressing-mode syntax but does **not**\ntouch memory: `lea`, \"load effective address.\" Where a `mov` from `D(Rb,Ri,S)`\nfetches the bytes at the computed address, `lea` computes the address and writes\n**the address itself** into the destination register.[^lea]\n\n$$\n% caption: mov versus lea on the same operand. Both compute the address from the\n% caption: operand; mov then loads the bytes living there, while lea stops at the\n% caption: address and stores the number itself, never touching memory.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  box\u002F.style={draw, minimum width=18mm, minimum height=8mm, align=center},\n  cell\u002F.style={draw, minimum width=18mm, minimum height=8mm, align=center}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[box] (op) at (0,0) {$\\mathtt{8(\\%rax)}$};\n  \\node[font=\\scriptsize] at (0,-0.95) {operand};\n  \\node[box, draw=acc, thick] (addr) at (3.4,0) {addr \\texttt{0x108}};\n  \\draw[->, thick] (op.east) -- (addr.west) node[midway, above, font=\\scriptsize] {compute};\n  % lea path: stop at the address\n  \\node[box, draw=acc, fill=acc!8] (lea) at (7.4,0.9) {$\\mathtt{\\%rcx}=\\mathtt{0x108}$};\n  \\draw[->, thick, acc] (addr.north) |- (lea.west) node[midway, above, font=\\footnotesize] {\\texttt{lea}: the address};\n  % mov path: load the bytes there\n  \\node[cell] (cell) at (7.4,-0.9) {bytes \\texttt{42}};\n  \\node[box, draw=acc, fill=acc!8] (mov) at (11.0,-0.9) {$\\mathtt{\\%rdx}=\\mathtt{42}$};\n  \\draw[->, thick] (addr.south) |- (cell.west) node[pos=0.75, below, font=\\footnotesize] {\\texttt{mov}: load};\n  \\draw[->, thick] (cell.east) -- (mov.west);\n\\end{tikzpicture}\n$$\n\n```asm [lea.s]\n# %rdi = x.  Compute &A[i] style addresses without a memory access.\nleaq    7(%rdi), %rax        # rax = x + 7\nleaq    (%rdi,%rdi,2), %rax   # rax = x + 2x = 3x\nleaq    0(,%rdi,8), %rax      # rax = 8x\n```\n\nBecause the address formula is a sum of a constant, a register, and a\nscaled register, `lea` doubles as a fast way to compute `Imm + a + b·{1,2,4,8}`\nin a single instruction, often more cheaply than the equivalent add-and-multiply.\nCompilers reach for it constantly for small multiplications and array-offset math;\nwe return to this trick in\n[arithmetic and logic](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic).\n\n> **Definition (lea).** `leaq D(Rb,Ri,S), Rd` sets `Rd` to the effective address\n> $\\mathrm{Imm} + \\mathrm{R}[\\mathrm{Rb}] + \\mathrm{R}[\\mathrm{Ri}] \\cdot S$ without\n> reading or writing memory. It is `mov`'s addressing syntax used purely as an\n> arithmetic expression.\n\n## The stack: push and pop\n\nThe run-time **stack** is a region of memory that grows toward **lower** addresses,\nwith `%rsp` always pointing at the **top** element — the lowest occupied address.\nTwo instructions maintain it. `pushq S` makes room by decrementing `%rsp` by 8 and\nwrites `S` to the new top; `popq D` reads the top into `D` and reclaims the space\nby incrementing `%rsp` by 8.\n\n$$\n% caption: pushq %rax decrements %rsp by 8 and stores the value at the new top;\n% caption: the stack grows downward, so the top sits at the lowest address. popq\n% caption: reverses this, reading the top and raising %rsp back.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  cell\u002F.style={draw, minimum width=20mm, minimum height=7mm, inner sep=0pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % ---- before (left column) ----\n  \\node[font=\\footnotesize] at (0,2.5) {before \\texttt{pushq}};\n  \\node[cell] (b2) at (0,1.4) {...};\n  \\node[cell] (b1) at (0,0.7) {old top};\n  \\node[cell, draw=acc] (bn) at (0,0.0) {};\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (1.3,0.7) {\u003C- $\\mathtt{\\%rsp}$};\n  \\node[anchor=west, font=\\scriptsize] at (1.3,0.0) {lower addr};\n  % ---- after (right column) ----\n  \\node[font=\\footnotesize] at (5,2.5) {after \\texttt{pushq \\%rax}};\n  \\node[cell] (a2) at (5,1.4) {...};\n  \\node[cell] (a1) at (5,0.7) {old top};\n  \\node[cell, draw=acc, fill=acc!8] (an) at (5,0.0) {\\texttt{\\%rax}};\n  \\node[anchor=west, text=acc, font=\\scriptsize] at (6.3,0.0) {\u003C- $\\mathtt{\\%rsp}$ (-8)};\n  % downward growth arrow between columns, label above to avoid the addr text\n  \\draw[->, thick] (3.2,1.4) -- (3.2,0.0);\n  \\node[font=\\scriptsize] at (3.2,1.85) {grows down};\n\\end{tikzpicture}\n$$\n\nBecause the stack lives in ordinary memory, the top element is reachable as\n`(%rsp)`, the element below it as `8(%rsp)`, and so on. `pushq %rbp` is therefore\nexactly equivalent to the pair `subq $8, %rsp` then `movq %rbp, (%rsp)`, and\n`popq %rax` to `movq (%rsp), %rax` then `addq $8, %rsp`. The single instructions\nare shorter encodings of those pairs.\n\nA numeric trace nails the pointer arithmetic. Say `%rsp` holds `0x7fffffffe018`\nand `%rax` holds `0x9`. Executing `pushq %rax` does two things in order: it\nsubtracts 8 from `%rsp`, giving `0x7fffffffe010`, then writes `0x9` to the memory\nat that new address. A following `pushq %rbx` (with `%rbx = 0x4`) repeats the\npattern, lowering `%rsp` to `0x7fffffffe008` and storing `0x4` there. Now a\n`popq %rcx` reads `(%rsp)` — the `0x4` just pushed — into `%rcx` and adds 8 back,\nreturning `%rsp` to `0x7fffffffe010`. The stack is last-in, first-out precisely\nbecause `push` and `pop` move `%rsp` in opposite directions by the same 8.\n\n$$\n% caption: pushq %rax then pushq %rbx then popq %rcx, tracing %rsp (low bytes shown).\n% caption: Each push lowers %rsp by 8 and writes; the pop reads the top and raises\n% caption: %rsp by 8, so it returns the last value pushed (4) and restores the pointer.\n\\begin{tikzpicture}[font=\\footnotesize, >=stealth,\n  trace\u002F.style={draw, minimum width=30mm, minimum height=6.5mm, inner sep=2pt, align=left, font=\\scriptsize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[trace] (s0) at (0,1.5)  {$\\mathtt{\\%rsp}=\\mathtt{0xe018}$ (start)};\n  \\node[trace] (s1) at (0,0.75) {$\\mathtt{pushq\\ \\%rax}$: $\\mathtt{\\%rsp}=\\mathtt{0xe010}$, mem $= 9$};\n  \\node[trace] (s2) at (0,0.0)  {$\\mathtt{pushq\\ \\%rbx}$: $\\mathtt{\\%rsp}=\\mathtt{0xe008}$, mem $= 4$};\n  \\node[trace, draw=acc, text=acc] (s3) at (0,-0.75) {$\\mathtt{popq\\ \\%rcx}$: $\\mathtt{\\%rcx}=4$, $\\mathtt{\\%rsp}=\\mathtt{0xe010}$};\n\\end{tikzpicture}\n$$\n\nThis same stack is where `call` saves its return address and where procedures keep\ntheir local frames, the subject of\n[procedures](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures). For now the\nkey facts are the direction of growth and the role of `%rsp`.\n\n## Wider moves and the red zone\n\nThe `mov` family CS:APP presents is the integer core, but the same processor moves\ndata in wider units the compiler reaches for constantly. The SSE and AVX extensions\nadd 128-, 256-, and 512-bit vector registers (`%xmm0`, `%ymm0`, `%zmm0`) and their\nown move instructions: `movdqa`\u002F`movdqu` copy 16 bytes aligned or unaligned,\n`vmovups` copies 32. When gcc vectorizes a loop or inlines a small `memcpy`, the\nassembly is full of these wide moves rather than a run of `movq`s, so recognizing\n`movdqu (%rsi), %xmm0` as \"load 16 bytes\" is part of reading optimized output. These\nsit in the same source lineage — Intel's own architecture manuals document them\nalongside the integer moves — and follow the identical operand grammar, only wider.[^intel]\n\nOne System V detail CS:APP mentions only in passing is worth stating outright\nbecause it surprises debugger users: the **red zone**. The ABI reserves the 128\nbytes _below_ `%rsp` as scratch space a leaf function (one that calls nothing) may\nuse without moving `%rsp` at all. A short leaf function can therefore keep locals at\n`-8(%rsp)`, `-16(%rsp)`, and so on, emitting no `subq $N, %rsp` prologue, because it\nis guaranteed nothing — not even an interrupt handler on the same stack — will\nclobber that region. This is why some compiled leaf functions appear to write \"below\nthe stack\" and are still correct.[^redzone]\n\n> **Takeaway.** Operands are immediates (`$`), registers (`%`), or memory; at most\n> one operand is memory. The addressing mode `D(Rb,Ri,S)` computes\n> $\\mathrm{Imm} + \\mathrm{R}[\\mathrm{Rb}] + \\mathrm{R}[\\mathrm{Ri}] \\cdot S$ with\n> $S \\in \\{1,2,4,8\\}$, and `lea` returns that address itself instead of the memory\n> at it. The stack grows toward lower addresses; `pushq`\u002F`popq` adjust `%rsp` by 8\n> and move one quad word across the top.\n\n[^lea]: **Bryant & O'Hallaron**, _CS:APP_, §3.5.1 — Load Effective Address: `leaq` computes the effective address of a memory operand and stores it, doubling as compact arithmetic.\n[^intel]: **Intel**, _Intel 64 and IA-32 Architectures Software Developer's Manual, Volume 1_ (2023), §10–§15 — the SSE\u002FAVX\u002FAVX-512 register files and their aligned\u002Funaligned move instructions (`movdqa`, `movdqu`, `vmovups`).\n[^redzone]: **Matz, Hubička, Jaeger & Mitchell**, _System V Application Binary Interface, AMD64 Architecture Processor Supplement_ (v1.0, 2018), §3.2.2 — the 128-byte red zone below `%rsp` that leaf functions may use without adjusting the stack pointer.\n",{"text":2618,"minutes":2619,"time":2620,"words":2621},"9 min read",8.215,492900,1643,{"title":48,"description":2609},[2624],{"book":2536,"ref":2625},"CS:APP — §3.4 Accessing Information (Operand Specifiers, Data Movement, Pushing and Popping)","available","03.computer-architecture\u002F01.machine-level-x86-64\u002F02.data-movement",[39],"Ul2iKDrofArnGL111ze0xZhsFMWONg8PsxjXGe7OtC0",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2631,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2635,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2639,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2643,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2647,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2651,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2655,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2660,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2664,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2668,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2672,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2677,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2681,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2685,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2689,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2694,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2698,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2702,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2706,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2710,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2714,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2718,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2722,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2726,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2730,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2734,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2738,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2743,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2747,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2751,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2755,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2759,"\u002Falgorithms\u002Fsequences\u002Ftries":2763,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2767,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2771,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2776,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2780,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2784,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2788,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2792,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2796,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2800,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2804,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2808,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2812,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2816,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2820,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2824,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2828,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2833,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2837,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2841,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2845,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2849,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2854,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2858,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2862,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2866,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2870,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2874,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2878,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2882,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2886,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2890,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2894,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2899,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2903,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2907,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2911,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2916,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2920,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2924,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2928,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2932,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2936,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2940,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2945,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2949,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2953,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2957,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2962,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2966,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2970,"\u002Falgorithms":2974,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2977,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2982,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2986,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2990,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2994,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2999,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3003,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3007,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3011,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3016,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3020,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3024,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3028,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3033,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3037,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3041,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3046,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3050,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3054,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3059,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3063,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3067,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3072,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3076,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3080,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3084,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3089,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3093,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3097,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3102,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3106,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3110,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3114,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3118,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3123,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3127,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3131,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3135,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3139,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3144,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3147,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3151,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3155,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3159,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3164,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3168,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3172,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3176,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3180,"\u002Fcalculus":3184,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3187,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3191,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3195,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3200,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3204,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3208,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3212,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3216,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3221,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3225,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3229,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3233,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3237,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3242,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3246,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3250,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3254,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3258,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3263,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3267,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3271,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3276,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3280,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3284,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3288,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3292,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3296,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3301,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3305,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3309,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3313,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3317,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3321,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3325,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3330,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3334,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3338,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3342,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3346,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3350,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3354,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3358,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3362,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3366,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3370,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3374,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3379,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3383,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3387,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3391,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3395,"\u002Fmechanics":3399,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3402,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3407,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3411,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3415,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3419,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3423,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3428,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3432,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3437,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3441,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3445,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3449,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3453,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3458,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3462,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3466,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3470,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3475,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3479,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3483,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3488,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3492,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3496,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3500,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3504,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3509,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3513,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3517,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3521,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3525,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3529,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3534,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3538,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3542,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3546,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3550,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3554,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3558,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3562,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3567,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3571,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3575,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3579,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3583,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3588,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3592,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3596,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3600,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3604,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3609,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3613,"\u002Felectricity-and-magnetism":3617,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":3620,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":3625,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":3629,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":3633,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":3637,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":3641,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":3646,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":3650,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":3654,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":3658,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":3662,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":3667,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":3671,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":3675,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":3680,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":3684,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":3688,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":3692,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":3696,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":3700,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":3704,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":3709,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":3713,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":3717,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":3721,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":3725,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":3729,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":3733,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":3738,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":3742,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":3746,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":3750,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":3754,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":3758,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":3763,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":3767,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":3771,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":3775,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":3779,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":3784,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":3788,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":3792,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":3796,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":3800,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":3804,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":3809,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":3813,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":3817,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":3821,"\u002Flinear-algebra":3825,"\u002Ftheory-of-computation":3828,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":3831,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":3832,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":3833,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":3834,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":3835,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":3836,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":3837,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":3838,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":3839,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":3840,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":3841,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":3842,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":3843,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":3844,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":3845,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":3846,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":3847,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":3848,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":3849,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":3850,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":3851,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":3852,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":3853,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":3854,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":3855,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":3856,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":3857,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":3858,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":3859,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":3860,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":3861,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":3862,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":3863,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":3864,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":3865,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":3866,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":3867,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":3868,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":3869,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":3870,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":3871,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":3872,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":3873,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":3874,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":3875,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":3876,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":3877,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":3878,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":3879,"\u002Fcomputer-architecture":3880,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":3883,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":3887,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":3891,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":3896,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":3900,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":3904,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":3908,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":3912,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":3916,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":3921,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":3925,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":3929,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":3933,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":3937,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":3941,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":3946,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":3950,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":3954,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":3959,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":3963,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":3968,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":3972,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":3976,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":3981,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":3985,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":3990,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":3994,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":3998,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4003,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4007,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4011,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4016,"\u002Fdifferential-equations":4020,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4023,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4028,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4032,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4036,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4040,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4044,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4049,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4053,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4057,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4061,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4066,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4070,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4074,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4078,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4083,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4087,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4091,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4095,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4100,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4104,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4108,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4112,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4116,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4120,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4125,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4129,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4133,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4138,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4142,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4146,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4150,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4155,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4159,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4163,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4168,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4172,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4176,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4181,"\u002Frelativity":4185,"\u002Fphysical-computing":4188,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4191,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4196,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4200,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4204,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4208,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4213,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4217,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4221,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4226,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4230,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4234,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4238,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4242,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4246,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4251,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4255,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4259,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4263,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4267,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4271,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4276,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4280,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4284,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4288,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4292,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4296,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4300,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4305,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4309,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4313,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4318,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4322,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4326,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4331,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4335,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4340,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4344,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4348,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4352,"\u002Fquantum-mechanics":4356,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4359,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4364,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4368,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4372,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4376,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4381,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4385,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4389,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4393,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4397,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4401,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4406,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4410,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4414,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4418,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4422,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4426,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4430,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4434,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4438,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4442,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4446,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4451,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4455,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4459,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4463,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4468,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4472,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4476,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4479,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4483,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4488,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4492,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4496,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4500,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4505,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4509,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4513,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4517,"\u002Freal-analysis":4521,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4524,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4528,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4532,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4537,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4541,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4545,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4549,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4554,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4558,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4562,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4566,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4570,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4574,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4579,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4583,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4587,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4591,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4596,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4600,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4604,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4608,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4613,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4617,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4621,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4626,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4630,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4634,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4638,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4643,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4647,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4651,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4655,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4660,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4664,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4668,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4673,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4677,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4681,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4685,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":4690,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":4694,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":4698,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":4702,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":4706,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":4711,"\u002Fabstract-algebra":4715,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":4718,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":4723,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":4727,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":4731,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":4735,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":4739,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":4744,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":4748,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":4752,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":4756,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":4760,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":4764,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":4768,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":4773,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":4777,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":4781,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":4785,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":4790,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":4794,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":4798,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":4803,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":4807,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":4811,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":4815,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":4819,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":4823,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":4828,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":4832,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":4836,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":4841,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":4845,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":4849,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":4853,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":4858,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":4862,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":4866,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":4871,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":4875,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":4879,"\u002Fatomic-physics":4883,"\u002Fdatabases":4886,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":4889,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":4893,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":4897,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":4901,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":4905,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":4909,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":4913,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":4918,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":4922,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":4926,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":4931,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":4935,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":4939,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":4944,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":4948,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":4952,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":4956,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":4960,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":4965,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":4969,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":4973,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":4977,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":4982,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":4986,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":4990,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":4994,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":4999,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5003,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5007,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5011,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5016,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5020,"\u002Fcategory-theory":5024,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5027,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5031,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5035,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5039,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5042,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5046,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5050,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5054,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5059,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5063,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5067,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5071,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5075,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5080,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5084,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5088,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5092,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5096,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5101,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5105,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5109,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5113,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5118,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5122,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5126,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5130,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5134,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5138,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5142,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5146,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5150,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5155,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5159,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5163,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5167,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5171,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5176,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5180,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5184,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5188,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5192,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5196,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5200,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5205,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5209,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5213,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5218,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5222,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5226,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5230,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5234,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5238,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5242,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5247,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5251,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5255,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5259,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5263,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5267,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5271,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5275,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5279,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5283,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5287,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5292,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5296,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5300,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5304,"\u002Fdeep-learning":5308,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5311,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5315,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5319,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5323,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5327,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5331,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5336,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5340,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5344,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5348,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5353,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5357,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5361,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5365,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5370,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5374,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5378,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5382,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5386,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5391,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5395,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5399,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5404,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5408,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5412,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5417,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5421,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5425,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5429,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5434,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5438,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5442,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5446,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5450,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5454,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5459,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5463,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5467,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5471,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5476,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5480,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5484,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5489,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5493,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5497,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5501,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5505,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5510,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5514,"\u002Fstatistical-mechanics":5518,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5521,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5526,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5530,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5534,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5538,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5543,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5547,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5551,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5555,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5560,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5564,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5568,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5572,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5577,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5581,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5585,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5589,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5594,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5598,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5602,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5606,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5611,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5615,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":5619,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":5623,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":5628,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":5632,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":5636,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":5640,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":5644,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":5649,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5653,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":5658,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5662,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":5666,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":5670,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5675,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":5679,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":5683,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":5687,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":5691,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":5696,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":5700,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":5704,"\u002Fcondensed-matter":5708,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":5711,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":5715,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":5720,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":5724,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":5728,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":5732,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":5736,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":5740,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":5744,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":5749,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":5753,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":5757,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":5761,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":5766,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":5770,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":5774,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":5778,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":5783,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":5787,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":5791,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":5795,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":5800,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":5804,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":5808,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":5812,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":5817,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":5821,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":5825,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":5830,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":5834,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":5839,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":5843,"\u002Flogic":5847,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":5850,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":5854,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":5858,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":5862,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":5866,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":5870,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":5874,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":5878,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":5882,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":5886,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":5890,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":5894,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":5898,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":5902,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":5906,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":5910,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":5914,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":5918,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":5922,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":5927,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":5931,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":5935,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":5939,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":5943,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":5947,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":5951,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":5955,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":5959,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":5963,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":5967,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":5971,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":5975,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":5979,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":5983,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":5987,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":5991,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":5995,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":5999,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6003,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6007,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6011,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6016,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6020,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6024,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6028,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6032,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6036,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6040,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6044,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6048,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6052,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6056,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6060,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6064,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6068,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6072,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6076,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6080,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6084,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6088,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6092,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6096,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6100,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6105,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6109,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6113,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6117,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6121,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6125,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6129,"\u002Freinforcement-learning":6133,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6135,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6139,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6143,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6147,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6151,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6156,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6160,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6164,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6168,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6172,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6176,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6180,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6184,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6188,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6192,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6196,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6200,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6205,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6209,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6213,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6217,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6221,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6225,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6229,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6233,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6237,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6241,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6245,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6249,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6254,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6258,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6262,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6266,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6270,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6274,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6278,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6281,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6285,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6289,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6294,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6298,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6302,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6306,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6309,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6313,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6317,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6321,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6326,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6330,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6334,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6338,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6342,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6346,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6350,"\u002Fartificial-intelligence":6354,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6357,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6362,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6366,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6370,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6374,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6378,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6383,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6387,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6391,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6395,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6400,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6404,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6408,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6412,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6417,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6421,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6426,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6430,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6435,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6439,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6443,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6447,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6452,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6456,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6460,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6465,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6469,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6473,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6478,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6482,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6487,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6491,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6495,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6500,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6504,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6508,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6512,"\u002Fnuclear-physics":6516,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6519,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6523,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6527,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6531,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6535,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6539,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6544,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6548,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6552,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6556,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6561,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6565,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6569,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6573,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6577,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6581,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6585,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6588,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6591,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6595,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6599,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6603,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6608,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6612,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6616,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6620,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6624,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6628,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6632,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6636,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6640,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6644,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6648,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6652,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6656,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6660,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6664,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6668,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6672,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6676,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6680,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6684,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":6688,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":6692,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":6696,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":6700,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":6704,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":6708,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":6712,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":6716,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":6721,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":6725,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":6729,"\u002Fnatural-language-processing":6733,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":6736,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":6740,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":6744,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":6748,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":6753,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":6757,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":6761,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":6765,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":6770,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":6774,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":6778,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":6782,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":6787,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":6791,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":6795,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":6799,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":6804,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":6808,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":6812,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":6817,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":6821,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":6825,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":6829,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":6834,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":6838,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":6842,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":6846,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":6851,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":6855,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":6859,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":6863,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":6868,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":6872,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":6876,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":6880,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":6884,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":6889,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":6893,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":6897,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":6902,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":6906,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":6910,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":6914,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":6918,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":6922,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":6926,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":6930,"\u002Fparticle-physics":6934,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":6937,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":6942,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":6946,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":6950,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":6955,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":6959,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":6963,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":6967,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":6972,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":6976,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":6980,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":6984,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":6989,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":6993,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":6997,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7001,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7006,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7010,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7014,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7018,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7023,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7027,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7031,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7036,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7040,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7044,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7048,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7052,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7056,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7060,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7064,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7068,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7073,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7077,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7081,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7085,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7090,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7094,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7098,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7102,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7106,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7111,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7115,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7118,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7122,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7126,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7131,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7135,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7139,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7143,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7147,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7151,"\u002Fastrophysics-cosmology":7155,"\u002Fcolophon":7158,"\u002F":7161},{"path":2632,"title":2633,"module":5,"summary":2634},"\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":2636,"title":2637,"module":5,"summary":2638},"\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":2640,"title":2641,"module":5,"summary":2642},"\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":2644,"title":2645,"module":5,"summary":2646},"\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":2648,"title":2649,"module":5,"summary":2650},"\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":2652,"title":2653,"module":5,"summary":2654},"\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":2656,"title":2657,"module":2658,"summary":2659},"\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":2661,"title":2662,"module":2658,"summary":2663},"\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":2665,"title":2666,"module":2658,"summary":2667},"\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":2669,"title":2670,"module":2658,"summary":2671},"\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":2673,"title":2674,"module":2675,"summary":2676},"\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":2678,"title":2679,"module":2675,"summary":2680},"\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":2682,"title":2683,"module":2675,"summary":2684},"\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":2686,"title":2687,"module":2675,"summary":2688},"\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":2690,"title":2691,"module":2692,"summary":2693},"\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":2695,"title":2696,"module":2692,"summary":2697},"\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":2699,"title":2700,"module":2692,"summary":2701},"\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":2703,"title":2704,"module":2692,"summary":2705},"\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":2707,"title":2708,"module":2692,"summary":2709},"\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":2711,"title":2712,"module":2692,"summary":2713},"\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":2715,"title":2716,"module":2692,"summary":2717},"\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":2719,"title":2720,"module":2692,"summary":2721},"\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":2723,"title":2724,"module":2692,"summary":2725},"\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":2727,"title":2728,"module":2692,"summary":2729},"\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":2731,"title":2732,"module":2692,"summary":2733},"\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":2735,"title":2736,"module":2692,"summary":2737},"\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":2739,"title":2740,"module":2741,"summary":2742},"\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":2744,"title":2745,"module":2741,"summary":2746},"\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":2748,"title":2749,"module":2741,"summary":2750},"\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":2752,"title":2753,"module":2741,"summary":2754},"\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":2756,"title":2757,"module":2741,"summary":2758},"\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":2760,"title":2761,"module":2741,"summary":2762},"\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":2764,"title":2765,"module":2741,"summary":2766},"\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":2768,"title":2769,"module":2741,"summary":2770},"\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":2772,"title":2773,"module":2774,"summary":2775},"\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":2777,"title":2778,"module":2774,"summary":2779},"\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":2781,"title":2782,"module":2774,"summary":2783},"\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":2785,"title":2786,"module":2774,"summary":2787},"\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":2789,"title":2790,"module":2774,"summary":2791},"\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":2793,"title":2794,"module":2774,"summary":2795},"\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":2797,"title":2798,"module":2774,"summary":2799},"\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":2801,"title":2802,"module":2774,"summary":2803},"\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":2805,"title":2806,"module":2774,"summary":2807},"\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":2809,"title":2810,"module":2774,"summary":2811},"\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":2813,"title":2814,"module":2774,"summary":2815},"\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":2817,"title":2818,"module":2774,"summary":2819},"\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":2821,"title":2822,"module":2774,"summary":2823},"\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":2825,"title":2826,"module":2774,"summary":2827},"\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":2829,"title":2830,"module":2831,"summary":2832},"\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":2834,"title":2835,"module":2831,"summary":2836},"\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":2838,"title":2839,"module":2831,"summary":2840},"\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":2842,"title":2843,"module":2831,"summary":2844},"\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":2846,"title":2847,"module":2831,"summary":2848},"\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":2850,"title":2851,"module":2852,"summary":2853},"\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":2855,"title":2856,"module":2852,"summary":2857},"\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":2859,"title":2860,"module":2852,"summary":2861},"\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":2863,"title":2864,"module":2852,"summary":2865},"\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":2867,"title":2868,"module":2852,"summary":2869},"\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":2871,"title":2872,"module":2852,"summary":2873},"\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":2875,"title":2876,"module":2852,"summary":2877},"\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":2879,"title":2880,"module":2852,"summary":2881},"\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":2883,"title":2884,"module":2852,"summary":2885},"\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":2887,"title":2888,"module":2852,"summary":2889},"\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":2891,"title":2892,"module":2852,"summary":2893},"\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":2895,"title":2896,"module":2897,"summary":2898},"\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":2900,"title":2901,"module":2897,"summary":2902},"\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":2904,"title":2905,"module":2897,"summary":2906},"\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":2908,"title":2909,"module":2897,"summary":2910},"\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":2912,"title":2913,"module":2914,"summary":2915},"\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":2917,"title":2918,"module":2914,"summary":2919},"\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":2921,"title":2922,"module":2914,"summary":2923},"\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":2925,"title":2926,"module":2914,"summary":2927},"\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":2929,"title":2930,"module":2914,"summary":2931},"\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":2933,"title":2934,"module":2914,"summary":2935},"\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":2937,"title":2938,"module":2914,"summary":2939},"\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":2941,"title":2942,"module":2943,"summary":2944},"\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":2946,"title":2947,"module":2943,"summary":2948},"\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":2950,"title":2951,"module":2943,"summary":2952},"\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":2954,"title":2955,"module":2943,"summary":2956},"\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":2958,"title":2959,"module":2960,"summary":2961},"\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":2963,"title":2964,"module":2960,"summary":2965},"\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":2967,"title":2968,"module":2960,"summary":2969},"\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":2971,"title":2972,"module":2960,"summary":2973},"\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":2975,"title":2976,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":2978,"title":2979,"module":2980,"summary":2981},"\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":2983,"title":2984,"module":2980,"summary":2985},"\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":2987,"title":2988,"module":2980,"summary":2989},"\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":2991,"title":2992,"module":2980,"summary":2993},"\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":2995,"title":2996,"module":2997,"summary":2998},"\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":3000,"title":3001,"module":2997,"summary":3002},"\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":3004,"title":3005,"module":2997,"summary":3006},"\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":3008,"title":3009,"module":2997,"summary":3010},"\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":3012,"title":3013,"module":3014,"summary":3015},"\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":3017,"title":3018,"module":3014,"summary":3019},"\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":3021,"title":3022,"module":3014,"summary":3023},"\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":3025,"title":3026,"module":3014,"summary":3027},"\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":3029,"title":3030,"module":3031,"summary":3032},"\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":3034,"title":3035,"module":3031,"summary":3036},"\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":3038,"title":3039,"module":3031,"summary":3040},"\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":3042,"title":3043,"module":3044,"summary":3045},"\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":3047,"title":3048,"module":3044,"summary":3049},"\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":3051,"title":3052,"module":3044,"summary":3053},"\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":3055,"title":3056,"module":3057,"summary":3058},"\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":3060,"title":3061,"module":3057,"summary":3062},"\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":3064,"title":3065,"module":3057,"summary":3066},"\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":3068,"title":3069,"module":3070,"summary":3071},"\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":3073,"title":3074,"module":3070,"summary":3075},"\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":3077,"title":3078,"module":3070,"summary":3079},"\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":3081,"title":3082,"module":3070,"summary":3083},"\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":3085,"title":3086,"module":3087,"summary":3088},"\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":3090,"title":3091,"module":3087,"summary":3092},"\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":3094,"title":3095,"module":3087,"summary":3096},"\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":3098,"title":3099,"module":3100,"summary":3101},"\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":3103,"title":3104,"module":3100,"summary":3105},"\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":3107,"title":3108,"module":3100,"summary":3109},"\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":3111,"title":3112,"module":3100,"summary":3113},"\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":3115,"title":3116,"module":3100,"summary":3117},"\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":3119,"title":3120,"module":3121,"summary":3122},"\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":3124,"title":3125,"module":3121,"summary":3126},"\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":3128,"title":3129,"module":3121,"summary":3130},"\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":3132,"title":3133,"module":3121,"summary":3134},"\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":3136,"title":3137,"module":3121,"summary":3138},"\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":3140,"title":3141,"module":3142,"summary":3143},"\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":3145,"title":3142,"module":3142,"summary":3146},"\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":3148,"title":3149,"module":3142,"summary":3150},"\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":3152,"title":3153,"module":3142,"summary":3154},"\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":3156,"title":3157,"module":3142,"summary":3158},"\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":3160,"title":3161,"module":3162,"summary":3163},"\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":3165,"title":3166,"module":3162,"summary":3167},"\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":3169,"title":3170,"module":3162,"summary":3171},"\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":3173,"title":3174,"module":3162,"summary":3175},"\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":3177,"title":3178,"module":3162,"summary":3179},"\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":3181,"title":3182,"module":3162,"summary":3183},"\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":3185,"title":3186,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3188,"title":3189,"module":5,"summary":3190},"\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":3192,"title":3193,"module":5,"summary":3194},"\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":3196,"title":3197,"module":3198,"summary":3199},"\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":3201,"title":3202,"module":3198,"summary":3203},"\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":3205,"title":3206,"module":3198,"summary":3207},"\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":3209,"title":3210,"module":3198,"summary":3211},"\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":3213,"title":3214,"module":3198,"summary":3215},"\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":3217,"title":3218,"module":3219,"summary":3220},"\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":3222,"title":3223,"module":3219,"summary":3224},"\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":3226,"title":3227,"module":3219,"summary":3228},"\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":3230,"title":3231,"module":3219,"summary":3232},"\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":3234,"title":3235,"module":3219,"summary":3236},"\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":3238,"title":3239,"module":3240,"summary":3241},"\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":3243,"title":3244,"module":3240,"summary":3245},"\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":3247,"title":3248,"module":3240,"summary":3249},"\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":3251,"title":3252,"module":3240,"summary":3253},"\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":3255,"title":3256,"module":3240,"summary":3257},"\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":3259,"title":3260,"module":3261,"summary":3262},"\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":3264,"title":3265,"module":3261,"summary":3266},"\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":3268,"title":3269,"module":3261,"summary":3270},"\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":3272,"title":3273,"module":3274,"summary":3275},"\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":3277,"title":3278,"module":3274,"summary":3279},"\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":3281,"title":3282,"module":3274,"summary":3283},"\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":3285,"title":3286,"module":3274,"summary":3287},"\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":3289,"title":3290,"module":3274,"summary":3291},"\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":3293,"title":3294,"module":3274,"summary":3295},"\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":3297,"title":3298,"module":3299,"summary":3300},"\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":3302,"title":3303,"module":3299,"summary":3304},"\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":3306,"title":3307,"module":3299,"summary":3308},"\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":3310,"title":3311,"module":3299,"summary":3312},"\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":3314,"title":3315,"module":3299,"summary":3316},"\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":3318,"title":3319,"module":3299,"summary":3320},"\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":3322,"title":3323,"module":3299,"summary":3324},"\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":3326,"title":3327,"module":3328,"summary":3329},"\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":3331,"title":3332,"module":3328,"summary":3333},"\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":3335,"title":3336,"module":3328,"summary":3337},"\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":3339,"title":3340,"module":3328,"summary":3341},"\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":3343,"title":3344,"module":3328,"summary":3345},"\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":3347,"title":3348,"module":3328,"summary":3349},"\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":3351,"title":3352,"module":3328,"summary":3353},"\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":3355,"title":3356,"module":3328,"summary":3357},"\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":3359,"title":3360,"module":3328,"summary":3361},"\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":3363,"title":3364,"module":3328,"summary":3365},"\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":3367,"title":3368,"module":3328,"summary":3369},"\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":3371,"title":3372,"module":3328,"summary":3373},"\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":3375,"title":3376,"module":3377,"summary":3378},"\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":3380,"title":3381,"module":3377,"summary":3382},"\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":3384,"title":3385,"module":3377,"summary":3386},"\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":3388,"title":3389,"module":3377,"summary":3390},"\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":3392,"title":3393,"module":3377,"summary":3394},"\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":3396,"title":3397,"module":3377,"summary":3398},"\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":3400,"title":3401,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3403,"title":3404,"module":3405,"summary":3406},"\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":3408,"title":3409,"module":3405,"summary":3410},"\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":3412,"title":3413,"module":3405,"summary":3414},"\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":3416,"title":3417,"module":3405,"summary":3418},"\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":3420,"title":3421,"module":3405,"summary":3422},"\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":3424,"title":3425,"module":3426,"summary":3427},"\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":3429,"title":3430,"module":3426,"summary":3431},"\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":3433,"title":3434,"module":3435,"summary":3436},"\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":3438,"title":3439,"module":3435,"summary":3440},"\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":3442,"title":3443,"module":3435,"summary":3444},"\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":3446,"title":3447,"module":3435,"summary":3448},"\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":3450,"title":3451,"module":3435,"summary":3452},"\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":3454,"title":3455,"module":3456,"summary":3457},"\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":3459,"title":3460,"module":3456,"summary":3461},"\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":3463,"title":3464,"module":3456,"summary":3465},"\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":3467,"title":3468,"module":3456,"summary":3469},"\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":3471,"title":3472,"module":3473,"summary":3474},"\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":3476,"title":3477,"module":3473,"summary":3478},"\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":3480,"title":3481,"module":3473,"summary":3482},"\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":3484,"title":3485,"module":3486,"summary":3487},"\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":3489,"title":3490,"module":3486,"summary":3491},"\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":3493,"title":3494,"module":3486,"summary":3495},"\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":3497,"title":3498,"module":3486,"summary":3499},"\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":3501,"title":3502,"module":3486,"summary":3503},"\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":3505,"title":3506,"module":3507,"summary":3508},"\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":3510,"title":3511,"module":3507,"summary":3512},"\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":3514,"title":3515,"module":3507,"summary":3516},"\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":3518,"title":3519,"module":3507,"summary":3520},"\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":3522,"title":3523,"module":3507,"summary":3524},"\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":3526,"title":3527,"module":3507,"summary":3528},"\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":3530,"title":3531,"module":3532,"summary":3533},"\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":3535,"title":3536,"module":3532,"summary":3537},"\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":3539,"title":3540,"module":3532,"summary":3541},"\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":3543,"title":3544,"module":3532,"summary":3545},"\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":3547,"title":3548,"module":3532,"summary":3549},"\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":3551,"title":3552,"module":3532,"summary":3553},"\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":3555,"title":3556,"module":3532,"summary":3557},"\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":3559,"title":3560,"module":3532,"summary":3561},"\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":3563,"title":3564,"module":3565,"summary":3566},"\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":3568,"title":3569,"module":3565,"summary":3570},"\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":3572,"title":3573,"module":3565,"summary":3574},"\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":3576,"title":3577,"module":3565,"summary":3578},"\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":3580,"title":3581,"module":3565,"summary":3582},"\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":3584,"title":3585,"module":3586,"summary":3587},"\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":3589,"title":3590,"module":3586,"summary":3591},"\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":3593,"title":3594,"module":3586,"summary":3595},"\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":3597,"title":3598,"module":3586,"summary":3599},"\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":3601,"title":3602,"module":3586,"summary":3603},"\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":3605,"title":3606,"module":3607,"summary":3608},"\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":3610,"title":3611,"module":3607,"summary":3612},"\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":3614,"title":3615,"module":3607,"summary":3616},"\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":3618,"title":3619,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":3621,"title":3622,"module":3623,"summary":3624},"\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":3626,"title":3627,"module":3623,"summary":3628},"\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":3630,"title":3631,"module":3623,"summary":3632},"\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":3634,"title":3635,"module":3623,"summary":3636},"\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":3638,"title":3639,"module":3623,"summary":3640},"\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":3642,"title":3643,"module":3644,"summary":3645},"\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":3647,"title":3648,"module":3644,"summary":3649},"\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":3651,"title":3652,"module":3644,"summary":3653},"\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":3655,"title":3656,"module":3644,"summary":3657},"\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":3659,"title":3660,"module":3644,"summary":3661},"\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":3663,"title":3664,"module":3665,"summary":3666},"\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":3668,"title":3669,"module":3665,"summary":3670},"\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":3672,"title":3673,"module":3665,"summary":3674},"\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":3676,"title":3677,"module":3678,"summary":3679},"\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":3681,"title":3682,"module":3678,"summary":3683},"\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":3685,"title":3686,"module":3678,"summary":3687},"\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":3689,"title":3690,"module":3678,"summary":3691},"\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":3693,"title":3694,"module":3678,"summary":3695},"\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":3697,"title":3698,"module":3678,"summary":3699},"\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":3701,"title":3702,"module":3678,"summary":3703},"\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":3705,"title":3706,"module":3707,"summary":3708},"\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":3710,"title":3711,"module":3707,"summary":3712},"\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":3714,"title":3715,"module":3707,"summary":3716},"\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":3718,"title":3719,"module":3707,"summary":3720},"\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":3722,"title":3723,"module":3707,"summary":3724},"\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":3726,"title":3727,"module":3707,"summary":3728},"\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":3730,"title":3731,"module":3707,"summary":3732},"\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":3734,"title":3735,"module":3736,"summary":3737},"\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":3739,"title":3740,"module":3736,"summary":3741},"\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":3743,"title":3744,"module":3736,"summary":3745},"\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":3747,"title":3748,"module":3736,"summary":3749},"\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":3751,"title":3752,"module":3736,"summary":3753},"\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":3755,"title":3756,"module":3736,"summary":3757},"\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":3759,"title":3760,"module":3761,"summary":3762},"\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":3764,"title":3765,"module":3761,"summary":3766},"\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":3768,"title":3769,"module":3761,"summary":3770},"\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":3772,"title":3773,"module":3761,"summary":3774},"\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":3776,"title":3777,"module":3761,"summary":3778},"\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":3780,"title":3781,"module":3782,"summary":3783},"\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":3785,"title":3786,"module":3782,"summary":3787},"\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":3789,"title":3790,"module":3782,"summary":3791},"\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":3793,"title":3794,"module":3782,"summary":3795},"\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":3797,"title":3798,"module":3782,"summary":3799},"\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":3801,"title":3802,"module":3782,"summary":3803},"\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":3805,"title":3806,"module":3807,"summary":3808},"\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":3810,"title":3811,"module":3807,"summary":3812},"\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":3814,"title":3815,"module":3807,"summary":3816},"\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":3818,"title":3819,"module":3807,"summary":3820},"\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":3822,"title":3823,"module":3807,"summary":3824},"\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":3826,"title":3827,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":3829,"title":3830,"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":3881,"title":3882,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":3884,"title":3885,"module":5,"summary":3886},"\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":3888,"title":3889,"module":5,"summary":3890},"\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":3892,"title":3893,"module":3894,"summary":3895},"\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":3897,"title":3898,"module":3894,"summary":3899},"\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":3901,"title":3902,"module":3894,"summary":3903},"\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":3905,"title":3906,"module":3894,"summary":3907},"\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":3909,"title":3910,"module":3894,"summary":3911},"\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":3913,"title":3914,"module":3894,"summary":3915},"\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":3917,"title":3918,"module":3919,"summary":3920},"\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":3922,"title":3923,"module":3919,"summary":3924},"\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":3926,"title":3927,"module":3919,"summary":3928},"\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":3930,"title":3931,"module":3919,"summary":3932},"\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":3934,"title":3935,"module":3919,"summary":3936},"\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":3938,"title":3939,"module":3919,"summary":3940},"\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":3942,"title":3943,"module":3944,"summary":3945},"\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":3947,"title":3948,"module":3944,"summary":3949},"\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":3951,"title":3952,"module":3944,"summary":3953},"\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":3955,"title":3956,"module":3957,"summary":3958},"\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":3960,"title":3961,"module":3957,"summary":3962},"\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":3964,"title":3965,"module":3966,"summary":3967},"\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":3969,"title":3970,"module":3966,"summary":3971},"\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":3973,"title":3974,"module":3966,"summary":3975},"\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":3977,"title":3978,"module":3979,"summary":3980},"\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":3982,"title":3983,"module":3979,"summary":3984},"\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":3986,"title":3987,"module":3988,"summary":3989},"\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":3991,"title":3992,"module":3988,"summary":3993},"\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":3995,"title":3996,"module":3988,"summary":3997},"\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":3999,"title":4000,"module":4001,"summary":4002},"\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":4004,"title":4005,"module":4001,"summary":4006},"\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":4008,"title":4009,"module":4001,"summary":4010},"\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":4012,"title":4013,"module":4014,"summary":4015},"\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":4017,"title":4018,"module":4014,"summary":4019},"\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":4021,"title":4022,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4024,"title":4025,"module":4026,"summary":4027},"\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":4029,"title":4030,"module":4026,"summary":4031},"\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":4033,"title":4034,"module":4026,"summary":4035},"\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":4037,"title":4038,"module":4026,"summary":4039},"\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":4041,"title":4042,"module":4026,"summary":4043},"\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":4045,"title":4046,"module":4047,"summary":4048},"\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":4050,"title":4051,"module":4047,"summary":4052},"\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":4054,"title":4055,"module":4047,"summary":4056},"\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":4058,"title":4059,"module":4047,"summary":4060},"\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":4062,"title":4063,"module":4064,"summary":4065},"\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":4067,"title":4068,"module":4064,"summary":4069},"\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":4071,"title":4072,"module":4064,"summary":4073},"\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":4075,"title":4076,"module":4064,"summary":4077},"\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":4079,"title":4080,"module":4081,"summary":4082},"\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":4084,"title":4085,"module":4081,"summary":4086},"\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":4088,"title":4089,"module":4081,"summary":4090},"\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":4092,"title":4093,"module":4081,"summary":4094},"\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":4096,"title":4097,"module":4098,"summary":4099},"\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":4101,"title":4102,"module":4098,"summary":4103},"\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":4105,"title":4106,"module":4098,"summary":4107},"\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":4109,"title":4110,"module":4098,"summary":4111},"\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":4113,"title":4114,"module":4098,"summary":4115},"\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":4117,"title":4118,"module":4098,"summary":4119},"\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":4121,"title":4122,"module":4123,"summary":4124},"\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":4126,"title":4127,"module":4123,"summary":4128},"\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":4130,"title":4131,"module":4123,"summary":4132},"\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":4134,"title":4135,"module":4136,"summary":4137},"\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":4139,"title":4140,"module":4136,"summary":4141},"\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":4143,"title":4144,"module":4136,"summary":4145},"\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":4147,"title":4148,"module":4136,"summary":4149},"\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":4151,"title":4152,"module":4153,"summary":4154},"\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":4156,"title":4157,"module":4153,"summary":4158},"\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":4160,"title":4161,"module":4153,"summary":4162},"\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":4164,"title":4165,"module":4166,"summary":4167},"\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":4169,"title":4170,"module":4166,"summary":4171},"\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":4173,"title":4174,"module":4166,"summary":4175},"\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":4177,"title":4178,"module":4179,"summary":4180},"\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":4182,"title":4183,"module":4179,"summary":4184},"\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":4186,"title":4187,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4189,"title":4190,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4192,"title":4193,"module":4194,"summary":4195},"\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":4197,"title":4198,"module":4194,"summary":4199},"\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":4201,"title":4202,"module":4194,"summary":4203},"\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":4205,"title":4206,"module":4194,"summary":4207},"\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":4209,"title":4210,"module":4211,"summary":4212},"\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":4214,"title":4215,"module":4211,"summary":4216},"\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":4218,"title":4219,"module":4211,"summary":4220},"\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":4222,"title":4223,"module":4224,"summary":4225},"\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":4227,"title":4228,"module":4224,"summary":4229},"\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":4231,"title":4232,"module":4224,"summary":4233},"\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":4235,"title":4236,"module":4224,"summary":4237},"\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":4239,"title":4240,"module":4224,"summary":4241},"\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":4243,"title":4244,"module":4224,"summary":4245},"\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":4247,"title":4248,"module":4249,"summary":4250},"\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":4252,"title":4253,"module":4249,"summary":4254},"\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":4256,"title":4257,"module":4249,"summary":4258},"\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":4260,"title":4261,"module":4249,"summary":4262},"\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":4264,"title":4265,"module":4249,"summary":4266},"\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":4268,"title":4269,"module":4249,"summary":4270},"\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":4272,"title":4273,"module":4274,"summary":4275},"\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":4277,"title":4278,"module":4274,"summary":4279},"\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":4281,"title":4282,"module":4274,"summary":4283},"\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":4285,"title":4286,"module":4274,"summary":4287},"\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":4289,"title":4290,"module":3286,"summary":4291},"\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":4293,"title":4294,"module":3286,"summary":4295},"\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":4297,"title":4298,"module":3286,"summary":4299},"\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":4301,"title":4302,"module":4303,"summary":4304},"\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":4306,"title":4307,"module":4303,"summary":4308},"\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":4310,"title":4311,"module":4303,"summary":4312},"\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":4314,"title":4315,"module":4316,"summary":4317},"\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":4319,"title":4320,"module":4316,"summary":4321},"\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":4323,"title":4324,"module":4316,"summary":4325},"\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":4327,"title":4328,"module":4329,"summary":4330},"\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":4332,"title":4333,"module":4329,"summary":4334},"\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":4336,"title":4337,"module":4338,"summary":4339},"\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":4341,"title":4342,"module":4338,"summary":4343},"\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":4345,"title":4346,"module":4338,"summary":4347},"\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":4349,"title":4350,"module":4338,"summary":4351},"\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":4353,"title":4354,"module":4338,"summary":4355},"\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":4357,"title":4358,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4360,"title":4361,"module":4362,"summary":4363},"\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":4365,"title":4366,"module":4362,"summary":4367},"\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":4369,"title":4370,"module":4362,"summary":4371},"\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":4373,"title":4374,"module":4362,"summary":4375},"\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":4377,"title":4378,"module":4379,"summary":4380},"\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":4382,"title":4383,"module":4379,"summary":4384},"\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":4386,"title":4387,"module":4379,"summary":4388},"\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":4390,"title":4391,"module":4379,"summary":4392},"\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":4394,"title":4395,"module":4379,"summary":4396},"\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":4398,"title":4399,"module":4379,"summary":4400},"\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":4402,"title":4403,"module":4404,"summary":4405},"\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":4407,"title":4408,"module":4404,"summary":4409},"\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":4411,"title":4412,"module":4404,"summary":4413},"\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":4415,"title":4416,"module":4404,"summary":4417},"\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":4419,"title":4420,"module":4404,"summary":4421},"\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":4423,"title":4424,"module":2980,"summary":4425},"\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":4427,"title":4428,"module":2980,"summary":4429},"\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":4431,"title":4432,"module":2980,"summary":4433},"\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":4435,"title":4436,"module":2980,"summary":4437},"\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":4439,"title":4440,"module":2980,"summary":4441},"\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":4443,"title":4444,"module":2980,"summary":4445},"\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":4447,"title":4448,"module":4449,"summary":4450},"\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":4452,"title":4453,"module":4449,"summary":4454},"\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":4456,"title":4457,"module":4449,"summary":4458},"\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":4460,"title":4461,"module":4449,"summary":4462},"\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":4464,"title":4465,"module":4466,"summary":4467},"\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":4469,"title":4470,"module":4466,"summary":4471},"\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":4473,"title":4474,"module":4466,"summary":4475},"\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":4477,"title":3035,"module":4466,"summary":4478},"\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":4480,"title":4481,"module":4466,"summary":4482},"\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":4484,"title":4485,"module":4486,"summary":4487},"\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":4489,"title":4490,"module":4486,"summary":4491},"\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":4493,"title":4494,"module":4486,"summary":4495},"\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":4497,"title":4498,"module":4486,"summary":4499},"\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":4501,"title":4502,"module":4503,"summary":4504},"\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":4506,"title":4507,"module":4503,"summary":4508},"\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":4510,"title":4511,"module":4503,"summary":4512},"\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":4514,"title":4515,"module":4503,"summary":4516},"\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":4518,"title":4519,"module":4503,"summary":4520},"\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":4522,"title":4523,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4525,"title":4526,"module":5,"summary":4527},"\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":4529,"title":4530,"module":5,"summary":4531},"\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":4533,"title":4534,"module":4535,"summary":4536},"\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":4538,"title":4539,"module":4535,"summary":4540},"\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":4542,"title":4543,"module":4535,"summary":4544},"\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":4546,"title":4547,"module":4535,"summary":4548},"\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":4550,"title":4551,"module":4552,"summary":4553},"\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":4555,"title":4556,"module":4552,"summary":4557},"\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":4559,"title":4560,"module":4552,"summary":4561},"\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":4563,"title":4564,"module":4552,"summary":4565},"\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":4567,"title":4568,"module":4552,"summary":4569},"\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":4571,"title":4572,"module":4552,"summary":4573},"\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":4575,"title":4576,"module":4577,"summary":4578},"\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":4580,"title":4581,"module":4577,"summary":4582},"\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":4584,"title":4585,"module":4577,"summary":4586},"\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":4588,"title":4589,"module":4577,"summary":4590},"\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":4592,"title":4593,"module":4594,"summary":4595},"\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":4597,"title":4598,"module":4594,"summary":4599},"\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":4601,"title":4602,"module":4594,"summary":4603},"\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":4605,"title":4606,"module":4594,"summary":4607},"\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":4609,"title":4610,"module":4611,"summary":4612},"\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":4614,"title":4615,"module":4611,"summary":4616},"\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":4618,"title":4619,"module":4611,"summary":4620},"\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":4622,"title":4623,"module":4624,"summary":4625},"\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":4627,"title":4628,"module":4624,"summary":4629},"\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":4631,"title":4632,"module":4624,"summary":4633},"\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":4635,"title":4636,"module":4624,"summary":4637},"\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":4639,"title":4640,"module":4641,"summary":4642},"\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":4644,"title":4645,"module":4641,"summary":4646},"\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":4648,"title":4649,"module":4641,"summary":4650},"\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":4652,"title":4653,"module":4641,"summary":4654},"\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":4656,"title":4657,"module":4658,"summary":4659},"\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":4661,"title":4662,"module":4658,"summary":4663},"\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":4665,"title":4666,"module":4658,"summary":4667},"\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":4669,"title":4670,"module":4671,"summary":4672},"\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":4674,"title":4675,"module":4671,"summary":4676},"\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":4678,"title":4679,"module":4671,"summary":4680},"\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":4682,"title":4683,"module":4671,"summary":4684},"\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":4686,"title":4687,"module":4688,"summary":4689},"\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":4691,"title":4692,"module":4688,"summary":4693},"\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":4695,"title":4696,"module":4688,"summary":4697},"\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":4699,"title":4700,"module":4688,"summary":4701},"\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":4703,"title":4704,"module":4688,"summary":4705},"\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":4707,"title":4708,"module":4709,"summary":4710},"\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":4712,"title":4713,"module":4709,"summary":4714},"\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":4716,"title":4717,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":4719,"title":4720,"module":4721,"summary":4722},"\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":4724,"title":4725,"module":4721,"summary":4726},"\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":4728,"title":4729,"module":4721,"summary":4730},"\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":4732,"title":4733,"module":4721,"summary":4734},"\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":4736,"title":4737,"module":4721,"summary":4738},"\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":4740,"title":4741,"module":4742,"summary":4743},"\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":4745,"title":4746,"module":4742,"summary":4747},"\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":4749,"title":4750,"module":4742,"summary":4751},"\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":4753,"title":4754,"module":4742,"summary":4755},"\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":4757,"title":4758,"module":4742,"summary":4759},"\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":4761,"title":4762,"module":4742,"summary":4763},"\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":4765,"title":4766,"module":4742,"summary":4767},"\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":4769,"title":4770,"module":4771,"summary":4772},"\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":4774,"title":4775,"module":4771,"summary":4776},"\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":4778,"title":4779,"module":4771,"summary":4780},"\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":4782,"title":4783,"module":4771,"summary":4784},"\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":4786,"title":4787,"module":4788,"summary":4789},"\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":4791,"title":4792,"module":4788,"summary":4793},"\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":4795,"title":4796,"module":4788,"summary":4797},"\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":4799,"title":4800,"module":4801,"summary":4802},"\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":4804,"title":4805,"module":4801,"summary":4806},"\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":4808,"title":4809,"module":4801,"summary":4810},"\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":4812,"title":4813,"module":4801,"summary":4814},"\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":4816,"title":4817,"module":4801,"summary":4818},"\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":4820,"title":4821,"module":4801,"summary":4822},"\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":4824,"title":4825,"module":4826,"summary":4827},"\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":4829,"title":4830,"module":4826,"summary":4831},"\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":4833,"title":4834,"module":4826,"summary":4835},"\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":4837,"title":4838,"module":4839,"summary":4840},"\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":4842,"title":4843,"module":4839,"summary":4844},"\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":4846,"title":4847,"module":4839,"summary":4848},"\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":4850,"title":4851,"module":4839,"summary":4852},"\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":4854,"title":4855,"module":4856,"summary":4857},"\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":4859,"title":4860,"module":4856,"summary":4861},"\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":4863,"title":4864,"module":4856,"summary":4865},"\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":4867,"title":4868,"module":4869,"summary":4870},"\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":4872,"title":4873,"module":4869,"summary":4874},"\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":4876,"title":4877,"module":4869,"summary":4878},"\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":4880,"title":4881,"module":4869,"summary":4882},"\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":4884,"title":4885,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":4887,"title":4888,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":4890,"title":4891,"module":5,"summary":4892},"\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":4894,"title":4895,"module":5,"summary":4896},"\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":4898,"title":4899,"module":5,"summary":4900},"\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":4902,"title":4903,"module":5,"summary":4904},"\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":4906,"title":4907,"module":5,"summary":4908},"\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":4910,"title":4911,"module":5,"summary":4912},"\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":4914,"title":4915,"module":4916,"summary":4917},"\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":4919,"title":4920,"module":4916,"summary":4921},"\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":4923,"title":4924,"module":4916,"summary":4925},"\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":4927,"title":4928,"module":4929,"summary":4930},"\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":4932,"title":4933,"module":4929,"summary":4934},"\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":4936,"title":4937,"module":4929,"summary":4938},"\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":4940,"title":4941,"module":4942,"summary":4943},"\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":4945,"title":4946,"module":4942,"summary":4947},"\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":4949,"title":4950,"module":4942,"summary":4951},"\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":4953,"title":4954,"module":4942,"summary":4955},"\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":4957,"title":4958,"module":4942,"summary":4959},"\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":4961,"title":4962,"module":4963,"summary":4964},"\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":4966,"title":4967,"module":4963,"summary":4968},"\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":4970,"title":4971,"module":4963,"summary":4972},"\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":4974,"title":4975,"module":4963,"summary":4976},"\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":4978,"title":4979,"module":4980,"summary":4981},"\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":4983,"title":4984,"module":4980,"summary":4985},"\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":4987,"title":4988,"module":4980,"summary":4989},"\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":4991,"title":4992,"module":4980,"summary":4993},"\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":4995,"title":4996,"module":4997,"summary":4998},"\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":5000,"title":5001,"module":4997,"summary":5002},"\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":5004,"title":5005,"module":4997,"summary":5006},"\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":5008,"title":5009,"module":4997,"summary":5010},"\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":5012,"title":5013,"module":5014,"summary":5015},"\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":5017,"title":5018,"module":5014,"summary":5019},"\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":5021,"title":5022,"module":5014,"summary":5023},"\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":5025,"title":5026,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5028,"title":3827,"module":5029,"summary":5030},"\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":5032,"title":5033,"module":5029,"summary":5034},"\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":5036,"title":5037,"module":5029,"summary":5038},"\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":5040,"title":3186,"module":5029,"summary":5041},"\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":5043,"title":5044,"module":5,"summary":5045},"\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":5047,"title":5048,"module":5,"summary":5049},"\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":5051,"title":5052,"module":5,"summary":5053},"\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":5055,"title":5056,"module":5057,"summary":5058},"\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":5060,"title":5061,"module":5057,"summary":5062},"\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":5064,"title":5065,"module":5057,"summary":5066},"\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":5068,"title":5069,"module":5057,"summary":5070},"\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":5072,"title":5073,"module":5057,"summary":5074},"\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":5076,"title":5077,"module":5078,"summary":5079},"\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":5081,"title":5082,"module":5078,"summary":5083},"\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":5085,"title":5086,"module":5078,"summary":5087},"\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":5089,"title":5090,"module":5078,"summary":5091},"\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":5093,"title":5094,"module":5078,"summary":5095},"\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":5097,"title":5098,"module":5099,"summary":5100},"\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":5102,"title":5103,"module":5099,"summary":5104},"\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":5106,"title":5107,"module":5099,"summary":5108},"\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":5110,"title":5111,"module":5099,"summary":5112},"\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":5114,"title":5115,"module":5116,"summary":5117},"\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":5119,"title":5120,"module":5116,"summary":5121},"\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":5123,"title":5124,"module":5116,"summary":5125},"\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":5127,"title":5128,"module":5116,"summary":5129},"\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":5131,"title":5132,"module":5116,"summary":5133},"\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":5135,"title":5136,"module":5116,"summary":5137},"\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":5139,"title":5140,"module":5116,"summary":5141},"\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":5143,"title":5144,"module":5116,"summary":5145},"\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":5147,"title":5148,"module":5116,"summary":5149},"\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":5151,"title":5152,"module":5153,"summary":5154},"\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":5156,"title":5157,"module":5153,"summary":5158},"\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":5160,"title":5161,"module":5153,"summary":5162},"\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":5164,"title":5165,"module":5153,"summary":5166},"\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":5168,"title":5169,"module":5153,"summary":5170},"\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":5172,"title":5173,"module":5174,"summary":5175},"\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":5177,"title":5178,"module":5174,"summary":5179},"\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":5181,"title":5182,"module":5174,"summary":5183},"\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":5185,"title":5186,"module":5174,"summary":5187},"\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":5189,"title":5190,"module":5174,"summary":5191},"\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":5193,"title":5194,"module":5174,"summary":5195},"\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":5197,"title":5198,"module":5174,"summary":5199},"\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":5201,"title":5202,"module":5203,"summary":5204},"\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":5206,"title":5207,"module":5203,"summary":5208},"\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":5210,"title":5211,"module":5203,"summary":5212},"\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":5214,"title":5215,"module":5216,"summary":5217},"\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":5219,"title":5220,"module":5216,"summary":5221},"\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":5223,"title":5224,"module":5216,"summary":5225},"\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":5227,"title":5228,"module":5216,"summary":5229},"\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":5231,"title":5232,"module":5216,"summary":5233},"\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":5235,"title":5236,"module":5216,"summary":5237},"\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":5239,"title":5240,"module":5216,"summary":5241},"\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":5243,"title":5244,"module":5245,"summary":5246},"\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":5248,"title":5249,"module":5245,"summary":5250},"\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":5252,"title":5253,"module":5245,"summary":5254},"\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":5256,"title":5257,"module":5245,"summary":5258},"\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":5260,"title":5261,"module":5245,"summary":5262},"\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":5264,"title":5265,"module":5245,"summary":5266},"\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":5268,"title":5269,"module":5245,"summary":5270},"\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":5272,"title":5273,"module":5245,"summary":5274},"\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":5276,"title":5277,"module":5245,"summary":5278},"\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":5280,"title":5281,"module":5245,"summary":5282},"\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":5284,"title":5285,"module":5245,"summary":5286},"\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":5288,"title":5289,"module":5290,"summary":5291},"\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":5293,"title":5294,"module":5290,"summary":5295},"\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":5297,"title":5298,"module":5290,"summary":5299},"\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":5301,"title":5302,"module":5290,"summary":5303},"\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":5305,"title":5306,"module":5290,"summary":5307},"\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":5309,"title":5310,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5312,"title":5313,"module":3377,"summary":5314},"\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":5316,"title":5317,"module":3377,"summary":5318},"\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":5320,"title":5321,"module":3377,"summary":5322},"\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":5324,"title":5325,"module":3377,"summary":5326},"\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":5328,"title":5329,"module":3377,"summary":5330},"\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":5332,"title":5333,"module":5334,"summary":5335},"\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":5337,"title":5338,"module":5334,"summary":5339},"\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":5341,"title":5342,"module":5334,"summary":5343},"\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":5345,"title":5346,"module":5334,"summary":5347},"\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":5349,"title":5350,"module":5351,"summary":5352},"\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":5354,"title":5355,"module":5351,"summary":5356},"\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":5358,"title":5359,"module":5351,"summary":5360},"\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":5362,"title":5363,"module":5351,"summary":5364},"\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":5366,"title":5367,"module":5368,"summary":5369},"\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":5371,"title":5372,"module":5368,"summary":5373},"\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":5375,"title":5376,"module":5368,"summary":5377},"\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":5379,"title":5380,"module":5368,"summary":5381},"\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":5383,"title":5384,"module":5368,"summary":5385},"\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":5387,"title":5388,"module":5389,"summary":5390},"\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":5392,"title":5393,"module":5389,"summary":5394},"\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":5396,"title":5397,"module":5389,"summary":5398},"\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":5400,"title":5401,"module":5402,"summary":5403},"\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":5405,"title":5406,"module":5402,"summary":5407},"\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":5409,"title":5410,"module":5402,"summary":5411},"\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":5413,"title":5414,"module":5415,"summary":5416},"\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":5418,"title":5419,"module":5415,"summary":5420},"\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":5422,"title":5423,"module":5415,"summary":5424},"\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":5426,"title":5427,"module":5415,"summary":5428},"\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":5430,"title":5431,"module":5432,"summary":5433},"\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":5435,"title":5436,"module":5432,"summary":5437},"\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":5439,"title":5440,"module":5432,"summary":5441},"\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":5443,"title":5444,"module":5432,"summary":5445},"\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":5447,"title":5448,"module":5432,"summary":5449},"\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":5451,"title":5452,"module":5432,"summary":5453},"\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":5455,"title":5456,"module":5457,"summary":5458},"\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":5460,"title":5461,"module":5457,"summary":5462},"\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":5464,"title":5465,"module":5457,"summary":5466},"\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":5468,"title":5469,"module":5457,"summary":5470},"\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":5472,"title":5473,"module":5474,"summary":5475},"\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":5477,"title":5478,"module":5474,"summary":5479},"\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":5481,"title":5482,"module":5474,"summary":5483},"\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":5485,"title":5486,"module":5487,"summary":5488},"\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":5490,"title":5491,"module":5487,"summary":5492},"\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":5494,"title":5495,"module":5487,"summary":5496},"\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":5498,"title":5499,"module":5487,"summary":5500},"\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":5502,"title":5503,"module":5487,"summary":5504},"\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":5506,"title":5507,"module":5508,"summary":5509},"\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":5511,"title":5512,"module":5508,"summary":5513},"\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":5515,"title":5516,"module":5508,"summary":5517},"\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":5519,"title":5520,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5522,"title":5523,"module":5524,"summary":5525},"\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":5527,"title":5528,"module":5524,"summary":5529},"\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":5531,"title":5532,"module":5524,"summary":5533},"\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":5535,"title":5536,"module":5524,"summary":5537},"\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":5539,"title":5540,"module":5541,"summary":5542},"\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":5544,"title":5545,"module":5541,"summary":5546},"\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":5548,"title":5549,"module":5541,"summary":5550},"\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":5552,"title":5553,"module":5541,"summary":5554},"\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":5556,"title":5557,"module":5558,"summary":5559},"\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":5561,"title":5562,"module":5558,"summary":5563},"\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":5565,"title":5566,"module":5558,"summary":5567},"\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":5569,"title":5570,"module":5558,"summary":5571},"\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":5573,"title":5574,"module":5575,"summary":5576},"\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":5578,"title":5579,"module":5575,"summary":5580},"\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":5582,"title":5583,"module":5575,"summary":5584},"\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":5586,"title":5587,"module":5575,"summary":5588},"\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":5590,"title":5591,"module":5592,"summary":5593},"\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":5595,"title":5596,"module":5592,"summary":5597},"\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":5599,"title":5600,"module":5592,"summary":5601},"\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":5603,"title":5604,"module":5592,"summary":5605},"\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":5607,"title":5608,"module":5609,"summary":5610},"\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":5612,"title":5613,"module":5609,"summary":5614},"\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":5616,"title":5617,"module":5609,"summary":5618},"\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":5620,"title":5621,"module":5609,"summary":5622},"\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":5624,"title":5625,"module":5626,"summary":5627},"\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":5629,"title":5630,"module":5626,"summary":5631},"\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":5633,"title":5634,"module":5626,"summary":5635},"\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":5637,"title":5638,"module":5626,"summary":5639},"\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":5641,"title":5642,"module":5626,"summary":5643},"\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":5645,"title":5646,"module":5647,"summary":5648},"\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":5650,"title":5651,"module":5647,"summary":5652},"\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":5654,"title":5655,"module":5656,"summary":5657},"\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":5659,"title":5660,"module":5656,"summary":5661},"\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":5663,"title":5664,"module":5656,"summary":5665},"\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":5667,"title":5668,"module":5656,"summary":5669},"\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":5671,"title":5672,"module":5673,"summary":5674},"\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":5676,"title":5677,"module":5673,"summary":5678},"\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":5680,"title":5681,"module":5673,"summary":5682},"\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":5684,"title":5685,"module":5673,"summary":5686},"\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":5688,"title":5689,"module":5673,"summary":5690},"\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":5692,"title":5693,"module":5694,"summary":5695},"\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":5697,"title":5698,"module":5694,"summary":5699},"\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":5701,"title":5702,"module":5694,"summary":5703},"\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":5705,"title":5706,"module":5694,"summary":5707},"\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":5709,"title":5710,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":5712,"title":5713,"module":5,"summary":5714},"\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":5716,"title":5717,"module":5718,"summary":5719},"\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":5721,"title":5722,"module":5718,"summary":5723},"\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":5725,"title":5726,"module":5718,"summary":5727},"\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":5729,"title":5730,"module":5718,"summary":5731},"\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":5733,"title":5734,"module":5718,"summary":5735},"\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":5737,"title":5738,"module":5718,"summary":5739},"\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":5741,"title":5742,"module":5718,"summary":5743},"\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":5745,"title":5746,"module":5747,"summary":5748},"\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":5750,"title":5751,"module":5747,"summary":5752},"\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":5754,"title":5755,"module":5747,"summary":5756},"\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":5758,"title":5759,"module":5747,"summary":5760},"\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":5762,"title":5763,"module":5764,"summary":5765},"\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":5767,"title":5768,"module":5764,"summary":5769},"\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":5771,"title":5772,"module":5764,"summary":5773},"\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":5775,"title":5776,"module":5764,"summary":5777},"\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":5779,"title":5780,"module":5781,"summary":5782},"\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":5784,"title":5785,"module":5781,"summary":5786},"\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":5788,"title":5789,"module":5781,"summary":5790},"\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":5792,"title":5793,"module":5781,"summary":5794},"\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":5796,"title":5797,"module":5798,"summary":5799},"\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":5801,"title":5802,"module":5798,"summary":5803},"\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":5805,"title":5806,"module":5798,"summary":5807},"\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":5809,"title":5810,"module":5798,"summary":5811},"\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":5813,"title":5814,"module":5815,"summary":5816},"\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":5818,"title":5819,"module":5815,"summary":5820},"\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":5822,"title":5823,"module":5815,"summary":5824},"\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":5826,"title":5827,"module":5828,"summary":5829},"\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":5831,"title":5832,"module":5828,"summary":5833},"\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":5835,"title":5836,"module":5837,"summary":5838},"\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":5840,"title":5841,"module":5837,"summary":5842},"\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":5844,"title":5845,"module":5837,"summary":5846},"\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":5848,"title":5849,"module":306,"summary":306},"\u002Flogic","Logic",{"path":5851,"title":5852,"module":5,"summary":5853},"\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":5855,"title":5856,"module":5,"summary":5857},"\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":5859,"title":5860,"module":5,"summary":5861},"\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":5863,"title":5864,"module":5,"summary":5865},"\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":5867,"title":5868,"module":5,"summary":5869},"\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":5871,"title":5872,"module":5,"summary":5873},"\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":5875,"title":2852,"module":5876,"summary":5877},"\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":5879,"title":5880,"module":5876,"summary":5881},"\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":5883,"title":5884,"module":5876,"summary":5885},"\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":5887,"title":5888,"module":5876,"summary":5889},"\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":5891,"title":5892,"module":5876,"summary":5893},"\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":5895,"title":5896,"module":5876,"summary":5897},"\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":5899,"title":5900,"module":5876,"summary":5901},"\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":5903,"title":5904,"module":5876,"summary":5905},"\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":5907,"title":5908,"module":5876,"summary":5909},"\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":5911,"title":5912,"module":5876,"summary":5913},"\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":5915,"title":5916,"module":5876,"summary":5917},"\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":5919,"title":5920,"module":5876,"summary":5921},"\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":5923,"title":5924,"module":5925,"summary":5926},"\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":5928,"title":5929,"module":5925,"summary":5930},"\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":5932,"title":5933,"module":5925,"summary":5934},"\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":5936,"title":5937,"module":5925,"summary":5938},"\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":5940,"title":5941,"module":5925,"summary":5942},"\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":5944,"title":5945,"module":5925,"summary":5946},"\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":5948,"title":5949,"module":5925,"summary":5950},"\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":5952,"title":5953,"module":5925,"summary":5954},"\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":5956,"title":5957,"module":5925,"summary":5958},"\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":5960,"title":5961,"module":5925,"summary":5962},"\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":5964,"title":5965,"module":5925,"summary":5966},"\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":5968,"title":5969,"module":5925,"summary":5970},"\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":5972,"title":5973,"module":5925,"summary":5974},"\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":5976,"title":5977,"module":5925,"summary":5978},"\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":5980,"title":5298,"module":5981,"summary":5982},"\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":5984,"title":5985,"module":5981,"summary":5986},"\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":5988,"title":5989,"module":5981,"summary":5990},"\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":5992,"title":5993,"module":5981,"summary":5994},"\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":5996,"title":5997,"module":5981,"summary":5998},"\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":6000,"title":6001,"module":5981,"summary":6002},"\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":6004,"title":6005,"module":5981,"summary":6006},"\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":6008,"title":6009,"module":5981,"summary":6010},"\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":6012,"title":6013,"module":6014,"summary":6015},"\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":6017,"title":6018,"module":6014,"summary":6019},"\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":6021,"title":6022,"module":6014,"summary":6023},"\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":6025,"title":6026,"module":6014,"summary":6027},"\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":6029,"title":6030,"module":6014,"summary":6031},"\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":6033,"title":6034,"module":6014,"summary":6035},"\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":6037,"title":6038,"module":6014,"summary":6039},"\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":6041,"title":6042,"module":6014,"summary":6043},"\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":6045,"title":6046,"module":6014,"summary":6047},"\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":6049,"title":6050,"module":6014,"summary":6051},"\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":6053,"title":6054,"module":6014,"summary":6055},"\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":6057,"title":6058,"module":6014,"summary":6059},"\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":6061,"title":6062,"module":6014,"summary":6063},"\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":6065,"title":6066,"module":6014,"summary":6067},"\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":6069,"title":6070,"module":6014,"summary":6071},"\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":6073,"title":6074,"module":6014,"summary":6075},"\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":6077,"title":6078,"module":6014,"summary":6079},"\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":6081,"title":6082,"module":6014,"summary":6083},"\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":6085,"title":6086,"module":6014,"summary":6087},"\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":6089,"title":6090,"module":6014,"summary":6091},"\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":6093,"title":6094,"module":6014,"summary":6095},"\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":6097,"title":6098,"module":6014,"summary":6099},"\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":6101,"title":6102,"module":6103,"summary":6104},"\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":6106,"title":6107,"module":6103,"summary":6108},"\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":6110,"title":6111,"module":6103,"summary":6112},"\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":6114,"title":6115,"module":6103,"summary":6116},"\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":6118,"title":6119,"module":6103,"summary":6120},"\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":6122,"title":6123,"module":6103,"summary":6124},"\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":6126,"title":6127,"module":6103,"summary":6128},"\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":6130,"title":6131,"module":6103,"summary":6132},"\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":6134,"title":5290,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6136,"title":6137,"module":5,"summary":6138},"\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":6140,"title":6141,"module":5,"summary":6142},"\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":6144,"title":6145,"module":5,"summary":6146},"\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":6148,"title":6149,"module":5,"summary":6150},"\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":6152,"title":6153,"module":6154,"summary":6155},"\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":6157,"title":6158,"module":6154,"summary":6159},"\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":6161,"title":6162,"module":6154,"summary":6163},"\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":6165,"title":6166,"module":6154,"summary":6167},"\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":6169,"title":6170,"module":6154,"summary":6171},"\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":6173,"title":6174,"module":6154,"summary":6175},"\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":6177,"title":6178,"module":6154,"summary":6179},"\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":6181,"title":6182,"module":6154,"summary":6183},"\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":6185,"title":6186,"module":6154,"summary":6187},"\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":6189,"title":6190,"module":6154,"summary":6191},"\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":6193,"title":6194,"module":6154,"summary":6195},"\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":6197,"title":6198,"module":6154,"summary":6199},"\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":6201,"title":6202,"module":6203,"summary":6204},"\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":6206,"title":6207,"module":6203,"summary":6208},"\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":6210,"title":6211,"module":6203,"summary":6212},"\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":6214,"title":6215,"module":6203,"summary":6216},"\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":6218,"title":6219,"module":6203,"summary":6220},"\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":6222,"title":6223,"module":6203,"summary":6224},"\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":6226,"title":6227,"module":6203,"summary":6228},"\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":6230,"title":6231,"module":6203,"summary":6232},"\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":6234,"title":6235,"module":6203,"summary":6236},"\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":6238,"title":6239,"module":6203,"summary":6240},"\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":6242,"title":6243,"module":6203,"summary":6244},"\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":6246,"title":6247,"module":6203,"summary":6248},"\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":6250,"title":6251,"module":6252,"summary":6253},"\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":6255,"title":6256,"module":6252,"summary":6257},"\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":6259,"title":6260,"module":6252,"summary":6261},"\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":6263,"title":6264,"module":6252,"summary":6265},"\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":6267,"title":6268,"module":6252,"summary":6269},"\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":6271,"title":6272,"module":6252,"summary":6273},"\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":6275,"title":6276,"module":6252,"summary":6277},"\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":6279,"title":5868,"module":6252,"summary":6280},"\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":6282,"title":6283,"module":6252,"summary":6284},"\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":6286,"title":6287,"module":6252,"summary":6288},"\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":6290,"title":6291,"module":6292,"summary":6293},"\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":6295,"title":6296,"module":6292,"summary":6297},"\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":6299,"title":6300,"module":6292,"summary":6301},"\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":6303,"title":6304,"module":6292,"summary":6305},"\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":6307,"title":5290,"module":6292,"summary":6308},"\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":6310,"title":6311,"module":6292,"summary":6312},"\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":6314,"title":6315,"module":6292,"summary":6316},"\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":6318,"title":6319,"module":6292,"summary":6320},"\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":6322,"title":6323,"module":6324,"summary":6325},"\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":6327,"title":6328,"module":6324,"summary":6329},"\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":6331,"title":6332,"module":6324,"summary":6333},"\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":6335,"title":6336,"module":6324,"summary":6337},"\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":6339,"title":6340,"module":6324,"summary":6341},"\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":6343,"title":6344,"module":6324,"summary":6345},"\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":6347,"title":6348,"module":6324,"summary":6349},"\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":6351,"title":6352,"module":6324,"summary":6353},"\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":6355,"title":6356,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6358,"title":6359,"module":6360,"summary":6361},"\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":6363,"title":6364,"module":6360,"summary":6365},"\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":6367,"title":6368,"module":6360,"summary":6369},"\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":6371,"title":6372,"module":6360,"summary":6373},"\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":6375,"title":6376,"module":6360,"summary":6377},"\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":6379,"title":6380,"module":6381,"summary":6382},"\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":6384,"title":6385,"module":6381,"summary":6386},"\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":6388,"title":6389,"module":6381,"summary":6390},"\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":6392,"title":6393,"module":6381,"summary":6394},"\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":6396,"title":6397,"module":6398,"summary":6399},"\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":6401,"title":6402,"module":6398,"summary":6403},"\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":6405,"title":6406,"module":6398,"summary":6407},"\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":6409,"title":6410,"module":6398,"summary":6411},"\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":6413,"title":6414,"module":6415,"summary":6416},"\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":6418,"title":6419,"module":6415,"summary":6420},"\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":6422,"title":6423,"module":6424,"summary":6425},"\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":6427,"title":6428,"module":6424,"summary":6429},"\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":6431,"title":6432,"module":6433,"summary":6434},"\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":6436,"title":6437,"module":6433,"summary":6438},"\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":6440,"title":6441,"module":6433,"summary":6442},"\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":6444,"title":6445,"module":6433,"summary":6446},"\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":6448,"title":6449,"module":6450,"summary":6451},"\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":6453,"title":6454,"module":6450,"summary":6455},"\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":6457,"title":6458,"module":6450,"summary":6459},"\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":6461,"title":6462,"module":6463,"summary":6464},"\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":6466,"title":6467,"module":6463,"summary":6468},"\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":6470,"title":6471,"module":6463,"summary":6472},"\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":6474,"title":6475,"module":6476,"summary":6477},"\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":6479,"title":6480,"module":6476,"summary":6481},"\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":6483,"title":6484,"module":6485,"summary":6486},"\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":6488,"title":6489,"module":6485,"summary":6490},"\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":6492,"title":6493,"module":6485,"summary":6494},"\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":6496,"title":6497,"module":6498,"summary":6499},"\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":6501,"title":6502,"module":6498,"summary":6503},"\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":6505,"title":6506,"module":6498,"summary":6507},"\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":6509,"title":6510,"module":6498,"summary":6511},"\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":6513,"title":6514,"module":6498,"summary":6515},"\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":6517,"title":6518,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6520,"title":6521,"module":5,"summary":6522},"\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":6524,"title":6525,"module":5,"summary":6526},"\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":6528,"title":6529,"module":5,"summary":6530},"\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":6532,"title":6533,"module":5,"summary":6534},"\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":6536,"title":6537,"module":5,"summary":6538},"\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":6540,"title":6541,"module":6542,"summary":6543},"\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":6545,"title":6546,"module":6542,"summary":6547},"\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":6549,"title":6550,"module":6542,"summary":6551},"\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":6553,"title":6554,"module":6542,"summary":6555},"\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":6557,"title":6558,"module":6559,"summary":6560},"\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":6562,"title":6563,"module":6559,"summary":6564},"\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":6566,"title":6567,"module":6559,"summary":6568},"\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":6570,"title":6571,"module":3099,"summary":6572},"\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":6574,"title":6575,"module":3099,"summary":6576},"\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":6578,"title":6579,"module":3099,"summary":6580},"\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":6582,"title":6583,"module":3581,"summary":6584},"\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":6586,"title":5136,"module":3581,"summary":6587},"\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":6589,"title":5244,"module":3581,"summary":6590},"\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":6592,"title":6593,"module":3581,"summary":6594},"\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":6596,"title":6597,"module":3581,"summary":6598},"\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":6600,"title":6601,"module":3581,"summary":6602},"\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":6604,"title":6605,"module":6606,"summary":6607},"\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":6609,"title":6610,"module":6606,"summary":6611},"\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":6613,"title":6614,"module":6606,"summary":6615},"\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":6617,"title":6618,"module":6606,"summary":6619},"\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":6621,"title":6622,"module":6606,"summary":6623},"\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":6625,"title":6626,"module":6606,"summary":6627},"\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":6629,"title":6630,"module":6606,"summary":6631},"\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":6633,"title":6634,"module":6606,"summary":6635},"\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":6637,"title":6638,"module":6606,"summary":6639},"\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":6641,"title":6642,"module":6606,"summary":6643},"\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":6645,"title":6646,"module":6606,"summary":6647},"\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":6649,"title":6650,"module":6606,"summary":6651},"\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":6653,"title":6654,"module":6606,"summary":6655},"\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":6657,"title":6658,"module":6606,"summary":6659},"\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":6661,"title":6662,"module":6606,"summary":6663},"\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":6665,"title":6666,"module":6606,"summary":6667},"\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":6669,"title":6670,"module":6606,"summary":6671},"\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":6673,"title":6674,"module":6606,"summary":6675},"\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":6677,"title":6678,"module":6606,"summary":6679},"\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":6681,"title":6682,"module":6606,"summary":6683},"\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":6685,"title":6686,"module":5232,"summary":6687},"\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":6689,"title":6690,"module":5232,"summary":6691},"\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":6693,"title":6694,"module":5232,"summary":6695},"\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":6697,"title":6698,"module":5232,"summary":6699},"\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":6701,"title":6702,"module":5232,"summary":6703},"\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":6705,"title":6706,"module":5232,"summary":6707},"\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":6709,"title":6710,"module":5232,"summary":6711},"\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":6713,"title":6714,"module":5232,"summary":6715},"\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":6717,"title":6718,"module":6719,"summary":6720},"\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":6722,"title":6723,"module":6719,"summary":6724},"\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":6726,"title":6727,"module":6719,"summary":6728},"\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":6730,"title":6731,"module":6719,"summary":6732},"\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":6734,"title":6735,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":6737,"title":6738,"module":5,"summary":6739},"\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":6741,"title":6742,"module":5,"summary":6743},"\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":6745,"title":6746,"module":5,"summary":6747},"\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":6749,"title":6750,"module":6751,"summary":6752},"\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":6754,"title":6755,"module":6751,"summary":6756},"\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":6758,"title":6759,"module":6751,"summary":6760},"\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":6762,"title":6763,"module":6751,"summary":6764},"\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":6766,"title":6767,"module":6768,"summary":6769},"\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":6771,"title":6772,"module":6768,"summary":6773},"\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":6775,"title":6776,"module":6768,"summary":6777},"\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":6779,"title":6780,"module":6768,"summary":6781},"\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":6783,"title":6784,"module":6785,"summary":6786},"\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":6788,"title":6789,"module":6785,"summary":6790},"\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":6792,"title":6793,"module":6785,"summary":6794},"\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":6796,"title":6797,"module":6785,"summary":6798},"\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":6800,"title":6801,"module":6802,"summary":6803},"\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":6805,"title":6806,"module":6802,"summary":6807},"\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":6809,"title":6810,"module":6802,"summary":6811},"\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":6813,"title":6814,"module":6815,"summary":6816},"\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":6818,"title":6819,"module":6815,"summary":6820},"\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":6822,"title":6823,"module":6815,"summary":6824},"\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":6826,"title":6827,"module":6815,"summary":6828},"\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":6830,"title":6831,"module":6832,"summary":6833},"\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":6835,"title":6836,"module":6832,"summary":6837},"\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":6839,"title":6840,"module":6832,"summary":6841},"\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":6843,"title":6844,"module":6832,"summary":6845},"\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":6847,"title":6848,"module":6849,"summary":6850},"\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":6852,"title":6853,"module":6849,"summary":6854},"\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":6856,"title":6857,"module":6849,"summary":6858},"\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":6860,"title":6861,"module":6849,"summary":6862},"\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":6864,"title":6865,"module":6866,"summary":6867},"\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":6869,"title":6870,"module":6866,"summary":6871},"\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":6873,"title":6874,"module":6866,"summary":6875},"\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":6877,"title":6878,"module":6866,"summary":6879},"\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":6881,"title":6882,"module":6866,"summary":6883},"\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":6885,"title":6886,"module":6887,"summary":6888},"\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":6890,"title":6891,"module":6887,"summary":6892},"\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":6894,"title":6895,"module":6887,"summary":6896},"\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":6898,"title":6899,"module":6900,"summary":6901},"\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":6903,"title":6904,"module":6900,"summary":6905},"\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":6907,"title":6908,"module":6900,"summary":6909},"\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":6911,"title":6912,"module":6912,"summary":6913},"\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":6915,"title":6916,"module":6912,"summary":6917},"\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":6919,"title":6920,"module":6912,"summary":6921},"\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":6923,"title":6924,"module":6912,"summary":6925},"\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":6927,"title":6928,"module":6912,"summary":6929},"\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":6931,"title":6932,"module":6912,"summary":6933},"\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":6935,"title":6936,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":6938,"title":6939,"module":6940,"summary":6941},"\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":6943,"title":6944,"module":6940,"summary":6945},"\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":6947,"title":6948,"module":6940,"summary":6949},"\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":6951,"title":6952,"module":6953,"summary":6954},"\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":6956,"title":6957,"module":6953,"summary":6958},"\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":6960,"title":6961,"module":6953,"summary":6962},"\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":6964,"title":6965,"module":6953,"summary":6966},"\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":6968,"title":6969,"module":6970,"summary":6971},"\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":6973,"title":6974,"module":6970,"summary":6975},"\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":6977,"title":6978,"module":6970,"summary":6979},"\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":6981,"title":6982,"module":6970,"summary":6983},"\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":6985,"title":6986,"module":6987,"summary":6988},"\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":6990,"title":6991,"module":6987,"summary":6992},"\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":6994,"title":6995,"module":6987,"summary":6996},"\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":6998,"title":6999,"module":6987,"summary":7000},"\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":7002,"title":7003,"module":7004,"summary":7005},"\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":7007,"title":7008,"module":7004,"summary":7009},"\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":7011,"title":7012,"module":7004,"summary":7013},"\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":7015,"title":7016,"module":7004,"summary":7017},"\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":7019,"title":7020,"module":7021,"summary":7022},"\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":7024,"title":7025,"module":7021,"summary":7026},"\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":7028,"title":7029,"module":7021,"summary":7030},"\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":7032,"title":7033,"module":7034,"summary":7035},"\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":7037,"title":7038,"module":7034,"summary":7039},"\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":7041,"title":7042,"module":7034,"summary":7043},"\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":7045,"title":7046,"module":7034,"summary":7047},"\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":7049,"title":5465,"module":7050,"summary":7051},"\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":7053,"title":7054,"module":7050,"summary":7055},"\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":7057,"title":7058,"module":7050,"summary":7059},"\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":7061,"title":7062,"module":7050,"summary":7063},"\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":7065,"title":7066,"module":7050,"summary":7067},"\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":7069,"title":7070,"module":7071,"summary":7072},"\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":7074,"title":7075,"module":7071,"summary":7076},"\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":7078,"title":7079,"module":7071,"summary":7080},"\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":7082,"title":7083,"module":7071,"summary":7084},"\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":7086,"title":7087,"module":7088,"summary":7089},"\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":7091,"title":7092,"module":7088,"summary":7093},"\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":7095,"title":7096,"module":7088,"summary":7097},"\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":7099,"title":7100,"module":7088,"summary":7101},"\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":7103,"title":7104,"module":7088,"summary":7105},"\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":7107,"title":7108,"module":7109,"summary":7110},"\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":7112,"title":7113,"module":7109,"summary":7114},"\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":7116,"title":4183,"module":7109,"summary":7117},"\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":7119,"title":7120,"module":7109,"summary":7121},"\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":7123,"title":7124,"module":7109,"summary":7125},"\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":7127,"title":7128,"module":7129,"summary":7130},"\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":7132,"title":7133,"module":7129,"summary":7134},"\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":7136,"title":7137,"module":7129,"summary":7138},"\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":7140,"title":7141,"module":7129,"summary":7142},"\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":7144,"title":7145,"module":7129,"summary":7146},"\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":7148,"title":7149,"module":7129,"summary":7150},"\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":7152,"title":7153,"module":7129,"summary":7154},"\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":7156,"title":7157,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7159,"title":7160,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":2254,"title":7162,"module":306,"summary":306},"Study Notes",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":7164,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":7165,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":7166,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":7167,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":7168,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":7169,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":7170,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":7171,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":7172,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":7173,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":7174,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":7175,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":7176,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":7177,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":7178,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":7179,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":7180,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":7181,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":7182,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":7183,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":7184,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":7185,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":7186,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":7187,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":7188,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":7189,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":7190,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":7191,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":7192,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":7193,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":7194,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":7195,"\u002Falgorithms\u002Fsequences\u002Ftries":7196,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":7197,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":7198,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":7199,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":7200,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":7201,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":7202,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":7203,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":7204,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":7205,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":7206,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":7207,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":7208,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":7209,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":7210,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":7211,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":7212,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":7213,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":7214,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":7215,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":7216,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":7217,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":7218,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":7219,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":7220,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":7221,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":7222,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":7223,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":7224,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":7225,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":7226,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":7227,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":7228,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":7229,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":7230,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":7231,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":7232,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":7233,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":7234,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":7235,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":7236,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":7237,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":7238,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":7239,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":7240,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":7241,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":7242,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":7243,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":7244,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":7245,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":7246,"\u002Falgorithms":7247,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":7248,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":7249,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":7250,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":7251,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":7252,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":7253,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":7254,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":7255,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":7256,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":7257,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":7258,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":7259,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":7260,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":7261,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":7262,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":7263,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":7264,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":7265,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":7266,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":7267,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":7268,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":7269,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":7270,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":7271,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":7272,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":7273,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":7274,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":7275,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":7276,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":7277,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":7278,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":7279,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":7280,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":7281,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":7262,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":7282,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":7283,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":7284,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":7252,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":7285,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":7286,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":7287,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":7288,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":7289,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":7290,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":7291,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":7292,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":7293,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":7294,"\u002Fcalculus":7295,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":7296,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":7297,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":7298,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":7299,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":7300,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":7301,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":7302,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":7303,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":7304,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":7305,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":7306,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":7307,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":7308,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":7309,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":7310,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":7311,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":7312,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":7313,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":7314,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":7315,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":7316,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":7317,"\u002Fmechanics\u002Frotation\u002Frolling-motion":7318,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":7319,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":7320,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":7321,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":7322,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":7323,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":7324,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":7325,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":7326,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":7327,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":7328,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":7329,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":7330,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":7331,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":7332,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":7333,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":7334,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":7335,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":7336,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":7337,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":7338,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":7339,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":7340,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":7341,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":7342,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":7343,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":7344,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":7345,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":7346,"\u002Fmechanics":7347,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":7348,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":7349,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":7350,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":7351,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":7352,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":7353,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":7354,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":7355,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":7356,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":7357,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":7358,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":7359,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":7336,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":7360,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":7361,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":7362,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":7332,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":7197,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":7363,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":7323,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":7364,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":7365,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":7366,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":7367,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":7368,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":7369,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":7370,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":7371,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":7372,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":7297,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":7373,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":7374,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":7375,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":7376,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":7377,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":7378,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":7379,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":7380,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":7315,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":7314,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":7381,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":7382,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":7383,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":7384,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":7385,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":7386,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":7387,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":7388,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":7389,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":7341,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":7339,"\u002Felectricity-and-magnetism":7390,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":7391,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":7392,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":7393,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":7394,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":7395,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":7396,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":7397,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":7398,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":7399,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":7249,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":7400,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":7401,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":7253,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":7402,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":7403,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":7404,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":7405,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":7406,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":7407,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":7408,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":7409,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":7410,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":7411,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":7412,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":7413,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":7414,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":7415,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":7416,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":7417,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":7418,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":7419,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":7420,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":7421,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":7288,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":7422,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":7423,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":7424,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":7425,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":7426,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":7427,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":7428,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":7429,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":7430,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":7431,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":7432,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":7433,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":7434,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":7435,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":7436,"\u002Flinear-algebra":7437,"\u002Ftheory-of-computation":7438,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":7439,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":7440,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":7441,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":7442,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":7443,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":7444,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2621,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":7445,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":7446,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":7447,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":7448,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":7449,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":7450,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":7451,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":7452,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":7453,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":7454,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":7455,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":7456,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":7457,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":7458,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":7459,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":7460,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":7461,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":7462,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":7463,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":7464,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":7465,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":7466,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":7467,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":7468,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":7469,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":7470,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":7471,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":7472,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":7473,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":7474,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":7475,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":7476,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":7477,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":7478,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":7479,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":7480,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":7481,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":7482,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":7483,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":7484,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":7485,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":7486,"\u002Fcomputer-architecture":7438,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":7487,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":7488,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":7489,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":7253,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":7490,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":7252,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":7259,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":7491,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":7492,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":7293,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":7493,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":7494,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":7495,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":7496,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":7497,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":7498,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":7499,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":7500,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":7501,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":7502,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":7503,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":7504,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":7499,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":7505,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":7506,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":7507,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":7508,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":7509,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":7510,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":7511,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":7512,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":7513,"\u002Fdifferential-equations":7514,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":7515,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":7516,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":7517,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":7518,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":7398,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":7519,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":7520,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":7521,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":7522,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":7523,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":7524,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":7268,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":7525,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":7526,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":7527,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":7528,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":7529,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":7530,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":7531,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":7532,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":7533,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":7534,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":7489,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":7535,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":7536,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":7537,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":7538,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":7539,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":7419,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":7540,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":7541,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":7429,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":7542,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":7543,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":7544,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":7545,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":7546,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":7547,"\u002Frelativity":7548,"\u002Fphysical-computing":7438,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":7549,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":7528,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":7550,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":7551,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":7552,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":7553,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":7554,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":7555,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":7556,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":7504,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":7429,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":7557,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":7558,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":7559,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":7560,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":7556,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":7561,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":7536,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":7290,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":7562,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":7563,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":7270,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":7564,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":7565,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":7566,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":7567,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":7568,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":7569,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":7570,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":7571,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":7572,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":7528,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":7573,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":7574,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":7575,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":7562,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":7251,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":7576,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":7577,"\u002Fquantum-mechanics":7578,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":7512,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":7579,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":7580,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":7402,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":7581,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":7288,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":7582,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":7583,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":7425,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":7534,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":7584,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":7585,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":7586,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":7587,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":7588,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":7561,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":7589,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":7395,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":7590,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":7591,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":7249,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":7592,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":7593,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":7550,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":7278,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":7429,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":7594,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":7595,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":7414,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":7538,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":7596,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":7597,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":7598,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":7434,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":7599,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":7600,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":7601,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":7601,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":7602,"\u002Freal-analysis":7603,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":7604,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":7605,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":7606,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":7607,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":7608,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":7609,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":7610,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":7611,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":7612,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":7613,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":7577,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":7614,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":7606,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":7523,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":7615,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":7616,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":7617,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":7618,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":7619,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":7620,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":7621,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":7622,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":7616,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":7623,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":7592,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":7624,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":7625,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":7626,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":7627,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":7628,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":7629,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":7630,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":7631,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":7632,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":7633,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":7267,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":7634,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":7635,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":7508,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":7636,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":7637,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":7565,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":7637,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":7638,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":7639,"\u002Fabstract-algebra":7640,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":7641,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":7642,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":7643,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":7644,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":7645,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":7557,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":7646,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":7647,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":7648,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":7649,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":7650,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":7651,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":7652,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":7392,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":7520,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":7267,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":7653,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":7251,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":7654,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":7655,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":7289,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":7582,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":7656,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":7657,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":7658,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":7659,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":7660,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":7661,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":7662,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":7663,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":7664,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":7665,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":7666,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":7667,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":7668,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":7669,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":7613,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":7670,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":7671,"\u002Fatomic-physics":7672,"\u002Fdatabases":7438,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":7673,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":7674,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":7675,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":7604,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":7676,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":7677,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":7678,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":7679,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":7680,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":7681,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":7682,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":7683,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":7684,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":7685,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":7686,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":7687,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":7688,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":7689,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":7690,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":7691,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":7692,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":7693,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":7694,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":7695,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":7686,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":7696,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":7697,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":7698,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":7699,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":7700,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":7645,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":7701,"\u002Fcategory-theory":7702,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":7703,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":7704,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":7705,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":7706,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":7707,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":7708,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":7667,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":7709,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":7710,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":7711,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":7712,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":7713,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":7714,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":7715,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":7716,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":7717,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":7718,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":7719,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":7720,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":7721,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":7722,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":7723,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":7724,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":7725,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":7726,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":7727,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":7728,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":7729,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":7730,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":7731,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":7732,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":7733,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":7734,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":7735,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":7679,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":7736,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":7737,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":7738,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":7739,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":7740,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":7741,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":7742,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":7232,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":7743,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":7744,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":7467,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":7745,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":7746,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":7747,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":7748,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":7749,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":7750,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":7751,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":7752,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":7753,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":7754,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":7755,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":7756,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":7441,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":7757,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":7758,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":7759,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":7760,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":7477,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":7761,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":7762,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":7763,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":7764,"\u002Fdeep-learning":7438,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":7765,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":7562,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":7766,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":7767,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":7768,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":7769,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":7770,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":7771,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":7772,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":7773,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":7609,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":7774,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":7775,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":7776,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":7496,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":7290,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":7777,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":7778,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":7779,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":7424,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":7780,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":7781,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":7501,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":7429,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":7782,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":7398,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":7268,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":7284,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":7783,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":7784,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":7785,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":7416,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":7786,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":7278,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":7787,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":7788,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7789,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":7790,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":7611,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":7791,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":7792,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":7793,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":7794,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":7557,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":7795,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":7535,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":7796,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":7397,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":7797,"\u002Fstatistical-mechanics":7798,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":7799,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":7263,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":7522,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":7800,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":7801,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":7802,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":7803,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":7804,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":7805,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":7396,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":7806,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":7807,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":7808,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":7809,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":7538,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":7810,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":7811,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":7812,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":7813,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":7814,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":7593,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":7537,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":7815,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":7816,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":7817,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":7818,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":7528,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":7819,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":7820,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":7765,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":7665,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":7393,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":7821,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":7259,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":7822,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":7823,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":7404,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":7824,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":7658,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":7825,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":7251,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":7826,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":7262,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":7827,"\u002Fcondensed-matter":7578,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":7828,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":7829,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":7830,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":7831,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":7276,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":7832,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":7833,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":7276,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":7834,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":7688,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":7835,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":7836,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":7837,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":7835,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":7838,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":7839,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":7840,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":7841,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":7842,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":7843,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":7844,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":7845,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":7766,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":7846,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":7839,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":7847,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":7848,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":7481,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":7849,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":7666,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":7850,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":7851,"\u002Flogic":7852,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":7853,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":7854,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":7467,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":7855,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":7856,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":7857,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":7858,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":7848,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":7859,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":7860,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":7861,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":7759,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":7862,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":7863,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":7864,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":7865,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":7866,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":7484,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":7867,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":7868,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":7869,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":7870,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":7675,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":7871,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":7847,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":7872,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":7873,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":7874,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":7495,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":7875,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":7625,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":7876,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":7877,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":7457,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":7878,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":7879,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":7880,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":7881,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":7882,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":7735,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":7883,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":7884,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":7885,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":7770,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":7886,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":7887,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":7888,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":7484,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":7551,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":7889,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":7890,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":7891,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":7892,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":7893,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":7894,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":7895,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":7896,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":7897,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":7898,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":7899,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":7900,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":7901,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":7902,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":7903,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":7904,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":7905,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":7906,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":7907,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":7908,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":7909,"\u002Freinforcement-learning":7438,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":7910,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":7911,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":7912,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":7913,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":7914,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":7915,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":7916,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":7917,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":7918,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":7919,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":7920,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":7921,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":7922,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":7764,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":7619,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":7923,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":7924,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":7925,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":7926,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":7927,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":7928,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":7746,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":7929,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":7930,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":7931,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":7932,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":7933,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":7934,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":7935,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":7936,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":7937,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":7938,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":7939,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":7940,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":7678,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":7930,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":7941,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":7219,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":7942,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":7943,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":7944,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":7945,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":7946,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":7727,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":7947,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":7948,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":7949,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":7950,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":7951,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":7952,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":7953,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":7954,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":7955,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":7956,"\u002Fartificial-intelligence":7438,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":7694,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":7957,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":7255,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":7253,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":7788,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":7958,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":7281,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":7590,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":7959,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":7960,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":7961,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":7650,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":7962,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":7963,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":7964,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":7849,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":7965,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":7966,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":7265,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":7493,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":7967,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":7594,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":7968,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":7969,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":7489,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":7577,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":7970,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":7971,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":7972,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":7260,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":7634,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":7496,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":7973,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":7544,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":7608,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":7974,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":7975,"\u002Fnuclear-physics":7976,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":7977,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":7978,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":7615,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":7979,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":7980,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":7981,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":7463,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":7982,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":7983,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":7760,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":7984,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":7929,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":7985,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":7986,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":7987,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":7988,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":7989,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":7990,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":7991,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":7442,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":7992,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":7993,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":7935,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":7994,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":7995,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":7996,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":7997,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":7998,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":7999,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":8000,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":8001,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":7859,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":8002,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":8003,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":8004,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":8005,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":8006,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":8007,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":8008,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":8009,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":8010,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":8011,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":8012,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":8013,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7713,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7880,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7469,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":8014,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":8015,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":8016,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":8017,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7727,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":8018,"\u002Fnatural-language-processing":7438,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":8019,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7635,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":8020,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7780,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":8021,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":8022,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7970,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":8023,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":8024,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7585,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7288,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":8025,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7539,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":8026,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7572,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":8027,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7826,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":8028,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":8029,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7795,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":8030,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7259,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":8031,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":8032,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":8033,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7576,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7792,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":8034,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":8035,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7651,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":8036,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7696,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":8037,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":8038,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7585,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7618,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":8039,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":8040,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":8041,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7674,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":8042,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7416,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":8043,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7518,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":8044,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":8045,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7842,"\u002Fparticle-physics":8046,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7636,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7790,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":8047,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7575,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":8048,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7635,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7547,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":8049,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":8050,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":8051,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":8052,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":8053,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7841,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7772,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":8054,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":8055,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":8056,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":8057,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7969,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":8058,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7531,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7594,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7576,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":8059,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7660,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7277,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":8060,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":8061,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7791,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":8062,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":8063,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":8064,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":8065,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7258,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":8066,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":8067,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7518,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":8068,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":8069,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7784,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7440,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":8070,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":8071,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7696,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7682,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7694,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7791,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":8072,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7257,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7448,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":8073,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7535,"\u002Fastrophysics-cosmology":7640,"\u002Fcolophon":8074,"\u002F":7438},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,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,"\u003Csvg style=\"width:100%;max-width:358.139px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 268.604 63.859\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-37.927H2.883V-72.07h-68.286Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M-25.848-73.998L-27.805-73.998L-27.805-74.447L-27.278-74.447L-27.278-76.869Q-27.278-77.021-27.414-77.059Q-27.551-77.096-27.782-77.096L-27.782-77.541L-26.317-77.607L-26.317-74.447L-25.848-74.447L-25.848-73.998M-27.559-78.900Q-27.559-79.178-27.366-79.367Q-27.172-79.557-26.903-79.557Q-26.723-79.557-26.573-79.467Q-26.422-79.377-26.334-79.230Q-26.246-79.084-26.246-78.900Q-26.246-78.631-26.440-78.437Q-26.633-78.244-26.903-78.244Q-27.176-78.244-27.367-78.436Q-27.559-78.627-27.559-78.900M-23.047-73.998L-25.110-73.998L-25.110-74.447L-24.582-74.447L-24.582-76.869Q-24.582-77.021-24.729-77.059Q-24.875-77.096-25.110-77.096L-25.110-77.541L-23.680-77.607L-23.680-76.814Q-23.532-77.061-23.297-77.240Q-23.063-77.420-22.785-77.514Q-22.508-77.607-22.215-77.607Q-21.719-77.607-21.373-77.451Q-21.028-77.295-20.910-76.885Q-20.680-77.228-20.303-77.418Q-19.926-77.607-19.496-77.607Q-19.055-77.607-18.758-77.500Q-18.461-77.393-18.299-77.133Q-18.137-76.873-18.137-76.439L-18.137-74.447L-17.606-74.447L-17.606-73.998L-19.672-73.998L-19.672-74.447L-19.145-74.447L-19.145-76.412Q-19.145-76.787-19.219-77.012Q-19.293-77.236-19.590-77.236Q-20.102-77.236-20.479-76.900Q-20.856-76.564-20.856-76.061L-20.856-74.447L-20.328-74.447L-20.328-73.998L-22.391-73.998L-22.391-74.447L-21.864-74.447L-21.864-76.412Q-21.864-76.787-21.942-77.012Q-22.020-77.236-22.313-77.236Q-22.825-77.236-23.200-76.902Q-23.575-76.568-23.575-76.061L-23.575-74.447L-23.047-74.447L-23.047-73.998M-14.887-73.998L-16.950-73.998L-16.950-74.447L-16.422-74.447L-16.422-76.869Q-16.422-77.021-16.569-77.059Q-16.715-77.096-16.950-77.096L-16.950-77.541L-15.520-77.607L-15.520-76.814Q-15.371-77.061-15.137-77.240Q-14.903-77.420-14.625-77.514Q-14.348-77.607-14.055-77.607Q-13.559-77.607-13.213-77.451Q-12.867-77.295-12.750-76.885Q-12.520-77.228-12.143-77.418Q-11.766-77.607-11.336-77.607Q-10.895-77.607-10.598-77.500Q-10.301-77.393-10.139-77.133Q-9.977-76.873-9.977-76.439L-9.977-74.447L-9.446-74.447L-9.446-73.998L-11.512-73.998L-11.512-74.447L-10.985-74.447L-10.985-76.412Q-10.985-76.787-11.059-77.012Q-11.133-77.236-11.430-77.236Q-11.942-77.236-12.319-76.900Q-12.696-76.564-12.696-76.061L-12.696-74.447L-12.168-74.447L-12.168-73.998L-14.231-73.998L-14.231-74.447L-13.703-74.447L-13.703-76.412Q-13.703-76.787-13.782-77.012Q-13.860-77.236-14.153-77.236Q-14.664-77.236-15.039-76.902Q-15.414-76.568-15.414-76.061L-15.414-74.447L-14.887-74.447L-14.887-73.998M-8.950-75.799Q-8.950-76.377-8.666-76.797Q-8.383-77.217-7.899-77.428Q-7.414-77.639-6.848-77.639Q-6.407-77.639-6.071-77.527Q-5.735-77.416-5.500-77.195Q-5.266-76.975-5.141-76.644Q-5.016-76.314-5.016-75.877Q-5.016-75.721-5.168-75.693L-7.840-75.693Q-7.840-74.350-6.582-74.350Q-6.231-74.350-5.924-74.506Q-5.617-74.662-5.496-74.959Q-5.422-75.088-5.336-75.088L-5.168-75.088Q-5.016-75.053-5.016-74.920Q-5.016-74.885-5.024-74.869Q-5.207-74.393-5.672-74.168Q-6.137-73.943-6.711-73.943Q-7.309-73.943-7.819-74.146Q-8.328-74.350-8.639-74.771Q-8.950-75.193-8.950-75.799M-7.840-76.037L-5.832-76.037Q-5.832-76.576-6.080-76.924Q-6.328-77.271-6.848-77.271Q-7.192-77.271-7.416-77.105Q-7.641-76.939-7.741-76.662Q-7.840-76.385-7.840-76.037M-4.407-75.775Q-4.407-76.221-4.237-76.566Q-4.067-76.912-3.766-77.143Q-3.465-77.373-3.076-77.490Q-2.688-77.607-2.270-77.607Q-1.961-77.607-1.670-77.521Q-1.379-77.436-1.133-77.271L-1.133-78.814Q-1.133-78.963-1.280-79Q-1.426-79.037-1.664-79.037L-1.664-79.486L-0.176-79.549L-0.176-74.670Q-0.176-74.521-0.030-74.484Q0.117-74.447 0.355-74.447L0.355-73.998L-1.184-73.943L-1.184-74.318Q-1.700-73.943-2.375-73.943Q-2.785-73.943-3.153-74.062Q-3.520-74.182-3.805-74.418Q-4.090-74.654-4.248-75Q-4.407-75.346-4.407-75.775M-2.285-74.311Q-1.961-74.311-1.664-74.469Q-1.367-74.627-1.184-74.900L-1.184-76.768Q-1.356-76.990-1.623-77.113Q-1.891-77.236-2.176-77.236Q-2.629-77.236-2.877-77.047Q-3.125-76.857-3.209-76.545Q-3.293-76.232-3.293-75.775Q-3.293-75.326-3.227-75.019Q-3.160-74.713-2.938-74.512Q-2.715-74.311-2.285-74.311M3.121-73.998L1.164-73.998L1.164-74.447L1.691-74.447L1.691-76.869Q1.691-77.021 1.554-77.059Q1.418-77.096 1.187-77.096L1.187-77.541L2.652-77.607L2.652-74.447L3.121-74.447L3.121-73.998M1.410-78.900Q1.410-79.178 1.603-79.367Q1.797-79.557 2.066-79.557Q2.246-79.557 2.396-79.467Q2.547-79.377 2.634-79.230Q2.722-79.084 2.722-78.900Q2.722-78.631 2.529-78.437Q2.336-78.244 2.066-78.244Q1.793-78.244 1.601-78.436Q1.410-78.627 1.410-78.900M3.699-74.928Q3.699-75.299 3.994-75.551Q4.289-75.803 4.740-75.934Q5.191-76.064 5.627-76.111Q6.062-76.158 6.449-76.158L6.449-76.412Q6.449-76.811 6.218-77.041Q5.988-77.271 5.593-77.271Q5.168-77.271 4.961-77.221Q5.121-77.076 5.121-76.822Q5.121-76.588 4.963-76.430Q4.804-76.271 4.570-76.271Q4.328-76.271 4.170-76.430Q4.011-76.588 4.011-76.822Q4.011-77.334 4.476-77.486Q4.941-77.639 5.593-77.639Q6.015-77.639 6.445-77.523Q6.875-77.408 7.166-77.137Q7.457-76.865 7.457-76.432L7.457-74.572Q7.488-74.447 8.027-74.447Q8.086-74.447 8.133-74.400Q8.179-74.353 8.179-74.295L8.179-74.158Q8.179-74.092 8.133-74.045Q8.086-73.998 8.027-73.998L7.480-73.998Q6.601-73.998 6.601-74.502Q6.414-74.225 6.068-74.084Q5.722-73.943 5.355-73.943Q4.980-73.943 4.599-74.027Q4.218-74.111 3.959-74.334Q3.699-74.557 3.699-74.928M4.707-74.928Q4.707-74.740 4.818-74.600Q4.929-74.459 5.105-74.385Q5.281-74.311 5.465-74.311Q5.695-74.311 5.924-74.391Q6.152-74.471 6.300-74.631Q6.449-74.791 6.449-75.029L6.449-75.822Q6.113-75.822 5.711-75.738Q5.308-75.654 5.008-75.453Q4.707-75.252 4.707-74.928M9.043-74.920L9.043-77.103L8.371-77.103L8.371-77.471Q8.758-77.471 9.031-77.717Q9.304-77.963 9.437-78.338Q9.570-78.713 9.570-79.076L10.050-79.076L10.050-77.549L11.285-77.549L11.285-77.103L10.050-77.103L10.050-74.936Q10.050-74.350 10.508-74.350Q10.718-74.350 10.842-74.533Q10.965-74.717 10.965-74.936L10.965-75.389L11.445-75.389L11.445-74.920Q11.445-74.646 11.299-74.424Q11.152-74.201 10.912-74.072Q10.672-73.943 10.402-73.943Q9.828-73.943 9.435-74.166Q9.043-74.389 9.043-74.920M12.269-75.799Q12.269-76.377 12.552-76.797Q12.836-77.217 13.320-77.428Q13.804-77.639 14.371-77.639Q14.812-77.639 15.148-77.527Q15.484-77.416 15.718-77.195Q15.953-76.975 16.078-76.644Q16.203-76.314 16.203-75.877Q16.203-75.721 16.050-75.693L13.379-75.693Q13.379-74.350 14.636-74.350Q14.988-74.350 15.295-74.506Q15.601-74.662 15.722-74.959Q15.797-75.088 15.883-75.088L16.050-75.088Q16.203-75.053 16.203-74.920Q16.203-74.885 16.195-74.869Q16.011-74.393 15.547-74.168Q15.082-73.943 14.508-73.943Q13.910-73.943 13.400-74.146Q12.890-74.350 12.580-74.771Q12.269-75.193 12.269-75.799M13.379-76.037L15.386-76.037Q15.386-76.576 15.138-76.924Q14.890-77.271 14.371-77.271Q14.027-77.271 13.802-77.105Q13.578-76.939 13.478-76.662Q13.379-76.385 13.379-76.037\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M-14.226-64.049L-14.522-64.049L-14.522-64.420Q-14.956-64.420-15.298-64.623Q-15.640-64.826-15.833-65.182Q-16.026-65.537-16.026-65.978Q-16.026-66.080-15.976-66.172Q-15.925-66.264-15.835-66.316Q-15.745-66.369-15.636-66.369Q-15.522-66.369-15.433-66.316Q-15.343-66.264-15.292-66.172Q-15.241-66.080-15.241-65.978Q-15.241-65.873-15.292-65.781Q-15.343-65.689-15.435-65.639Q-15.526-65.588-15.636-65.588L-15.698-65.588Q-15.628-65.326-15.456-65.135Q-15.284-64.943-15.036-64.832Q-14.788-64.721-14.522-64.721L-14.522-67.025L-14.788-67.092Q-15.136-67.174-15.417-67.389Q-15.698-67.603-15.862-67.920Q-16.026-68.236-16.026-68.588Q-16.026-68.869-15.905-69.146Q-15.784-69.424-15.567-69.648Q-15.351-69.873-15.079-69.998Q-14.808-70.123-14.522-70.123L-14.522-70.498L-14.226-70.498L-14.226-70.123Q-13.804-70.123-13.464-69.943Q-13.124-69.764-12.927-69.432Q-12.729-69.100-12.729-68.682Q-12.729-68.580-12.780-68.488Q-12.831-68.396-12.921-68.344Q-13.011-68.291-13.124-68.291Q-13.233-68.291-13.323-68.344Q-13.413-68.396-13.464-68.488Q-13.515-68.580-13.515-68.682Q-13.515-68.787-13.464-68.879Q-13.413-68.971-13.321-69.021Q-13.229-69.072-13.124-69.072L-13.065-69.072Q-13.140-69.307-13.317-69.477Q-13.495-69.646-13.737-69.736Q-13.979-69.826-14.226-69.826L-14.226-67.744Q-13.866-67.662-13.640-67.559Q-13.413-67.455-13.210-67.252Q-12.979-67.021-12.854-66.715Q-12.729-66.408-12.729-66.084L-12.729-66.064Q-12.729-65.744-12.854-65.439Q-12.979-65.135-13.210-64.904Q-13.409-64.709-13.692-64.568Q-13.976-64.428-14.226-64.428L-14.226-64.049M-14.226-66.955L-14.226-64.721Q-13.792-64.775-13.493-65.094Q-13.194-65.412-13.194-65.834Q-13.194-66.287-13.478-66.566Q-13.761-66.846-14.226-66.955M-15.561-68.826Q-15.561-68.068-14.522-67.811L-14.522-69.826Q-14.936-69.787-15.249-69.510Q-15.561-69.232-15.561-68.826\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M-10.128-64.420Q-10.562-64.420-10.894-64.658Q-11.226-64.896-11.446-65.285Q-11.667-65.674-11.774-66.111Q-11.882-66.549-11.882-66.947Q-11.882-67.338-11.772-67.781Q-11.663-68.225-11.446-68.605Q-11.229-68.986-10.895-69.227Q-10.562-69.467-10.128-69.467Q-9.573-69.467-9.173-69.068Q-8.772-68.670-8.575-68.084Q-8.378-67.498-8.378-66.947Q-8.378-66.393-8.575-65.805Q-8.772-65.217-9.173-64.818Q-9.573-64.420-10.128-64.420M-10.128-64.978Q-9.827-64.978-9.610-65.195Q-9.394-65.412-9.267-65.740Q-9.140-66.068-9.079-66.414Q-9.019-66.760-9.019-67.041Q-9.019-67.291-9.081-67.617Q-9.144-67.943-9.274-68.234Q-9.405-68.525-9.618-68.715Q-9.831-68.904-10.128-68.904Q-10.503-68.904-10.755-68.592Q-11.007-68.279-11.124-67.846Q-11.241-67.412-11.241-67.041Q-11.241-66.643-11.128-66.162Q-11.015-65.682-10.767-65.330Q-10.519-64.978-10.128-64.978M-7.745-64.736L-7.745-64.826Q-7.706-65.033-7.499-65.057L-7.093-65.057L-6.163-66.275L-7.034-67.385L-7.452-67.385Q-7.647-67.404-7.698-67.627L-7.698-67.713Q-7.647-67.924-7.452-67.947L-6.292-67.947Q-6.093-67.924-6.042-67.713L-6.042-67.627Q-6.093-67.408-6.292-67.385L-6.401-67.385L-5.905-66.728L-5.429-67.385L-5.546-67.385Q-5.745-67.408-5.796-67.627L-5.796-67.713Q-5.745-67.924-5.546-67.947L-4.386-67.947Q-4.190-67.928-4.140-67.713L-4.140-67.627Q-4.190-67.408-4.386-67.385L-4.796-67.385L-5.644-66.275L-4.683-65.057L-4.276-65.057Q-4.077-65.033-4.026-64.826L-4.026-64.736Q-4.065-64.521-4.276-64.498L-5.429-64.498Q-5.636-64.521-5.675-64.736L-5.675-64.826Q-5.636-65.033-5.429-65.057L-5.300-65.057L-5.905-65.912L-6.491-65.057L-6.347-65.057Q-6.140-65.033-6.101-64.826L-6.101-64.736Q-6.140-64.521-6.347-64.498L-7.499-64.498Q-7.694-64.518-7.745-64.736M-2.901-64.736L-2.901-64.826Q-2.851-65.033-2.651-65.057L-1.835-65.057L-1.835-68.240Q-2.214-67.932-2.667-67.932Q-2.897-67.932-2.948-68.162L-2.948-68.252Q-2.897-68.467-2.702-68.490Q-2.374-68.490-2.120-68.728Q-1.866-68.967-1.726-69.314Q-1.655-69.443-1.499-69.467L-1.444-69.467Q-1.249-69.447-1.198-69.232L-1.198-65.057L-0.382-65.057Q-0.183-65.033-0.132-64.826L-0.132-64.736Q-0.183-64.521-0.382-64.498L-2.651-64.498Q-2.851-64.521-2.901-64.736M0.810-64.736L0.810-64.826Q0.860-65.033 1.056-65.057L1.938-65.057L1.938-67.385L1.083-67.385Q0.884-67.408 0.833-67.627L0.833-67.713Q0.884-67.924 1.083-67.947L1.938-67.947L1.938-68.400Q1.938-68.865 2.345-69.146Q2.751-69.428 3.231-69.428Q3.544-69.428 3.788-69.307Q4.032-69.186 4.032-68.904Q4.032-68.740 3.923-68.623Q3.813-68.506 3.649-68.506Q3.501-68.506 3.380-68.611Q3.259-68.717 3.259-68.865L3.177-68.865Q3.024-68.865 2.888-68.805Q2.751-68.744 2.665-68.629Q2.579-68.514 2.579-68.369L2.579-67.947L3.610-67.947Q3.806-67.928 3.856-67.713L3.856-67.627Q3.806-67.408 3.610-67.385L2.579-67.385L2.579-65.057L3.458-65.057Q3.653-65.033 3.704-64.826L3.704-64.736Q3.653-64.521 3.458-64.498L1.056-64.498Q0.860-64.521 0.810-64.736\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M-30.924-55.830Q-30.924-56.314-30.522-56.609Q-30.119-56.904-29.569-57.023Q-29.018-57.143-28.526-57.143L-28.526-57.432Q-28.526-57.658-28.641-57.865Q-28.756-58.072-28.953-58.191Q-29.151-58.310-29.381-58.310Q-29.807-58.310-30.092-58.205Q-30.022-58.178-29.975-58.123Q-29.928-58.068-29.903-57.998Q-29.877-57.928-29.877-57.853Q-29.877-57.748-29.928-57.656Q-29.979-57.564-30.071-57.514Q-30.162-57.463-30.268-57.463Q-30.373-57.463-30.465-57.514Q-30.557-57.564-30.608-57.656Q-30.658-57.748-30.658-57.853Q-30.658-58.271-30.270-58.418Q-29.881-58.564-29.381-58.564Q-29.049-58.564-28.696-58.434Q-28.342-58.303-28.114-58.049Q-27.885-57.795-27.885-57.447L-27.885-55.646Q-27.885-55.514-27.813-55.404Q-27.740-55.295-27.612-55.295Q-27.487-55.295-27.418-55.400Q-27.350-55.506-27.350-55.646L-27.350-56.158L-27.069-56.158L-27.069-55.646Q-27.069-55.443-27.186-55.285Q-27.303-55.127-27.485-55.043Q-27.666-54.959-27.869-54.959Q-28.100-54.959-28.252-55.131Q-28.405-55.303-28.436-55.533Q-28.596-55.252-28.905-55.086Q-29.213-54.920-29.565-54.920Q-30.076-54.920-30.500-55.143Q-30.924-55.365-30.924-55.830M-30.237-55.830Q-30.237-55.545-30.010-55.359Q-29.783-55.174-29.490-55.174Q-29.244-55.174-29.020-55.291Q-28.795-55.408-28.660-55.611Q-28.526-55.814-28.526-56.068L-28.526-56.900Q-28.791-56.900-29.076-56.846Q-29.362-56.791-29.633-56.662Q-29.905-56.533-30.071-56.326Q-30.237-56.119-30.237-55.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M-22.025-54.998L-23.857-54.998L-23.857-55.295Q-23.583-55.295-23.415-55.342Q-23.247-55.389-23.247-55.557L-23.247-59.717Q-23.247-59.932-23.310-60.027Q-23.372-60.123-23.491-60.144Q-23.611-60.166-23.857-60.166L-23.857-60.463L-22.634-60.549L-22.634-55.557Q-22.634-55.389-22.466-55.342Q-22.298-55.295-22.025-55.295L-22.025-54.998M-19.720-54.998L-21.497-54.998L-21.497-55.295Q-21.224-55.295-21.056-55.342Q-20.888-55.389-20.888-55.557L-20.888-57.693Q-20.888-57.908-20.945-58.004Q-21.001-58.100-21.114-58.121Q-21.228-58.143-21.474-58.143L-21.474-58.439L-20.275-58.525L-20.275-55.557Q-20.275-55.389-20.128-55.342Q-19.982-55.295-19.720-55.295L-19.720-54.998M-21.161-59.920Q-21.161-60.111-21.027-60.242Q-20.892-60.373-20.697-60.373Q-20.575-60.373-20.472-60.310Q-20.368-60.248-20.306-60.144Q-20.243-60.041-20.243-59.920Q-20.243-59.725-20.374-59.590Q-20.505-59.455-20.697-59.455Q-20.896-59.455-21.029-59.588Q-21.161-59.721-21.161-59.920M-18.595-55.959L-18.595-58.150L-19.298-58.150L-19.298-58.404Q-18.943-58.404-18.700-58.637Q-18.458-58.869-18.347-59.217Q-18.236-59.564-18.236-59.920L-17.954-59.920L-17.954-58.447L-16.779-58.447L-16.779-58.150L-17.954-58.150L-17.954-55.975Q-17.954-55.654-17.835-55.426Q-17.716-55.197-17.435-55.197Q-17.255-55.197-17.138-55.320Q-17.021-55.443-16.968-55.623Q-16.915-55.803-16.915-55.975L-16.915-56.447L-16.634-56.447L-16.634-55.959Q-16.634-55.705-16.739-55.465Q-16.845-55.225-17.042-55.072Q-17.239-54.920-17.497-54.920Q-17.814-54.920-18.066-55.043Q-18.318-55.166-18.456-55.400Q-18.595-55.635-18.595-55.959M-15.915-56.752Q-15.915-57.232-15.683-57.648Q-15.450-58.064-15.040-58.314Q-14.630-58.564-14.154-58.564Q-13.423-58.564-13.025-58.123Q-12.626-57.682-12.626-56.951Q-12.626-56.846-12.720-56.822L-15.169-56.822L-15.169-56.752Q-15.169-56.342-15.048-55.986Q-14.927-55.631-14.656-55.414Q-14.384-55.197-13.954-55.197Q-13.591-55.197-13.294-55.426Q-12.997-55.654-12.896-56.006Q-12.888-56.053-12.802-56.068L-12.720-56.068Q-12.626-56.041-12.626-55.959Q-12.626-55.951-12.634-55.920Q-12.697-55.693-12.835-55.510Q-12.974-55.326-13.165-55.193Q-13.357-55.060-13.575-54.990Q-13.794-54.920-14.032-54.920Q-14.404-54.920-14.741-55.057Q-15.079-55.193-15.347-55.445Q-15.614-55.697-15.765-56.037Q-15.915-56.377-15.915-56.752M-15.161-57.060L-13.200-57.060Q-13.200-57.365-13.302-57.656Q-13.404-57.947-13.620-58.129Q-13.837-58.310-14.154-58.310Q-14.454-58.310-14.685-58.123Q-14.915-57.935-15.038-57.644Q-15.161-57.353-15.161-57.060M-10.130-54.998L-12.111-54.998L-12.111-55.295Q-11.841-55.295-11.673-55.340Q-11.505-55.385-11.505-55.557L-11.505-57.693Q-11.505-57.908-11.568-58.004Q-11.630-58.100-11.747-58.121Q-11.864-58.143-12.111-58.143L-12.111-58.439L-10.943-58.525L-10.943-57.740Q-10.864-57.951-10.712-58.137Q-10.560-58.322-10.361-58.424Q-10.161-58.525-9.935-58.525Q-9.689-58.525-9.497-58.381Q-9.306-58.236-9.306-58.006Q-9.306-57.850-9.411-57.740Q-9.517-57.631-9.673-57.631Q-9.829-57.631-9.939-57.740Q-10.048-57.850-10.048-58.006Q-10.048-58.166-9.943-58.271Q-10.267-58.271-10.482-58.043Q-10.697-57.814-10.792-57.475Q-10.888-57.135-10.888-56.830L-10.888-55.557Q-10.888-55.389-10.661-55.342Q-10.435-55.295-10.130-55.295L-10.130-54.998M-8.728-55.830Q-8.728-56.314-8.325-56.609Q-7.923-56.904-7.372-57.023Q-6.822-57.143-6.329-57.143L-6.329-57.432Q-6.329-57.658-6.445-57.865Q-6.560-58.072-6.757-58.191Q-6.954-58.310-7.185-58.310Q-7.611-58.310-7.896-58.205Q-7.825-58.178-7.779-58.123Q-7.732-58.068-7.706-57.998Q-7.681-57.928-7.681-57.853Q-7.681-57.748-7.732-57.656Q-7.782-57.564-7.874-57.514Q-7.966-57.463-8.072-57.463Q-8.177-57.463-8.269-57.514Q-8.361-57.564-8.411-57.656Q-8.462-57.748-8.462-57.853Q-8.462-58.271-8.073-58.418Q-7.685-58.564-7.185-58.564Q-6.853-58.564-6.499-58.434Q-6.146-58.303-5.917-58.049Q-5.689-57.795-5.689-57.447L-5.689-55.646Q-5.689-55.514-5.616-55.404Q-5.544-55.295-5.415-55.295Q-5.290-55.295-5.222-55.400Q-5.154-55.506-5.154-55.646L-5.154-56.158L-4.872-56.158L-4.872-55.646Q-4.872-55.443-4.989-55.285Q-5.107-55.127-5.288-55.043Q-5.470-54.959-5.673-54.959Q-5.904-54.959-6.056-55.131Q-6.208-55.303-6.239-55.533Q-6.400-55.252-6.708-55.086Q-7.017-54.920-7.368-54.920Q-7.880-54.920-8.304-55.143Q-8.728-55.365-8.728-55.830M-8.040-55.830Q-8.040-55.545-7.814-55.359Q-7.587-55.174-7.294-55.174Q-7.048-55.174-6.823-55.291Q-6.599-55.408-6.464-55.611Q-6.329-55.814-6.329-56.068L-6.329-56.900Q-6.595-56.900-6.880-56.846Q-7.165-56.791-7.437-56.662Q-7.708-56.533-7.874-56.326Q-8.040-56.119-8.040-55.830M-2.665-54.998L-4.497-54.998L-4.497-55.295Q-4.224-55.295-4.056-55.342Q-3.888-55.389-3.888-55.557L-3.888-59.717Q-3.888-59.932-3.950-60.027Q-4.013-60.123-4.132-60.144Q-4.251-60.166-4.497-60.166L-4.497-60.463L-3.275-60.549L-3.275-55.557Q-3.275-55.389-3.107-55.342Q-2.939-55.295-2.665-55.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M2.425-55.029L1.202-57.885Q1.120-58.060 0.976-58.105Q0.831-58.150 0.562-58.150L0.562-58.447L2.273-58.447L2.273-58.150Q1.851-58.150 1.851-57.967Q1.851-57.932 1.866-57.885L2.812-55.693L3.652-57.670Q3.691-57.748 3.691-57.838Q3.691-57.978 3.585-58.064Q3.480-58.150 3.339-58.150L3.339-58.447L4.691-58.447L4.691-58.150Q4.167-58.150 3.952-57.670L2.827-55.029Q2.765-54.920 2.659-54.920L2.593-54.920Q2.480-54.920 2.425-55.029\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.386 12.278)\">\u003Cpath d=\"M4.736-55.830Q4.736-56.314 5.138-56.609Q5.541-56.904 6.091-57.023Q6.642-57.143 7.134-57.143L7.134-57.432Q7.134-57.658 7.019-57.865Q6.904-58.072 6.707-58.191Q6.509-58.310 6.279-58.310Q5.853-58.310 5.568-58.205Q5.638-58.178 5.685-58.123Q5.732-58.068 5.757-57.998Q5.783-57.928 5.783-57.853Q5.783-57.748 5.732-57.656Q5.681-57.564 5.589-57.514Q5.498-57.463 5.392-57.463Q5.287-57.463 5.195-57.514Q5.103-57.564 5.052-57.656Q5.002-57.748 5.002-57.853Q5.002-58.271 5.390-58.418Q5.779-58.564 6.279-58.564Q6.611-58.564 6.964-58.434Q7.318-58.303 7.546-58.049Q7.775-57.795 7.775-57.447L7.775-55.646Q7.775-55.514 7.847-55.404Q7.920-55.295 8.048-55.295Q8.173-55.295 8.242-55.400Q8.310-55.506 8.310-55.646L8.310-56.158L8.591-56.158L8.591-55.646Q8.591-55.443 8.474-55.285Q8.357-55.127 8.175-55.043Q7.994-54.959 7.791-54.959Q7.560-54.959 7.408-55.131Q7.255-55.303 7.224-55.533Q7.064-55.252 6.755-55.086Q6.447-54.920 6.095-54.920Q5.584-54.920 5.160-55.143Q4.736-55.365 4.736-55.830M5.423-55.830Q5.423-55.545 5.650-55.359Q5.877-55.174 6.170-55.174Q6.416-55.174 6.640-55.291Q6.865-55.408 7-55.611Q7.134-55.814 7.134-56.068L7.134-56.900Q6.869-56.900 6.584-56.846Q6.298-56.791 6.027-56.662Q5.755-56.533 5.589-56.326Q5.423-56.119 5.423-55.830M10.798-54.998L8.966-54.998L8.966-55.295Q9.240-55.295 9.408-55.342Q9.576-55.389 9.576-55.557L9.576-59.717Q9.576-59.932 9.513-60.027Q9.451-60.123 9.332-60.144Q9.213-60.166 8.966-60.166L8.966-60.463L10.189-60.549L10.189-55.557Q10.189-55.389 10.357-55.342Q10.525-55.295 10.798-55.295L10.798-54.998M11.927-55.951L11.927-57.693Q11.927-57.908 11.865-58.004Q11.802-58.100 11.683-58.121Q11.564-58.143 11.318-58.143L11.318-58.439L12.564-58.525L12.564-55.975L12.564-55.951Q12.564-55.639 12.619-55.477Q12.673-55.314 12.824-55.244Q12.974-55.174 13.295-55.174Q13.724-55.174 13.998-55.512Q14.271-55.850 14.271-56.295L14.271-57.693Q14.271-57.908 14.209-58.004Q14.146-58.100 14.027-58.121Q13.908-58.143 13.662-58.143L13.662-58.439L14.908-58.525L14.908-55.740Q14.908-55.529 14.970-55.434Q15.033-55.338 15.152-55.316Q15.271-55.295 15.517-55.295L15.517-54.998L14.295-54.920L14.295-55.541Q14.127-55.252 13.845-55.086Q13.564-54.920 13.244-54.920Q11.927-54.920 11.927-55.951M15.963-56.752Q15.963-57.232 16.195-57.648Q16.427-58.064 16.837-58.314Q17.248-58.564 17.724-58.564Q18.455-58.564 18.853-58.123Q19.252-57.682 19.252-56.951Q19.252-56.846 19.158-56.822L16.709-56.822L16.709-56.752Q16.709-56.342 16.830-55.986Q16.951-55.631 17.222-55.414Q17.494-55.197 17.923-55.197Q18.287-55.197 18.584-55.426Q18.880-55.654 18.982-56.006Q18.990-56.053 19.076-56.068L19.158-56.068Q19.252-56.041 19.252-55.959Q19.252-55.951 19.244-55.920Q19.181-55.693 19.043-55.510Q18.904-55.326 18.712-55.193Q18.521-55.060 18.302-54.990Q18.084-54.920 17.845-54.920Q17.474-54.920 17.136-55.057Q16.798-55.193 16.531-55.445Q16.263-55.697 16.113-56.037Q15.963-56.377 15.963-56.752M16.716-57.060L18.677-57.060Q18.677-57.365 18.576-57.656Q18.474-57.947 18.257-58.129Q18.041-58.310 17.724-58.310Q17.423-58.310 17.193-58.123Q16.962-57.935 16.839-57.644Q16.716-57.353 16.716-57.060\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M25.645-37.927h68.287V-72.07H25.645Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-14.801-73.998L-16.945-73.998L-16.945-74.447L-16.418-74.447L-16.418-76.869Q-16.418-77.021-16.565-77.059Q-16.711-77.096-16.945-77.096L-16.945-77.541L-15.563-77.607L-15.563-76.799Q-15.406-77.154-15.127-77.381Q-14.848-77.607-14.481-77.607Q-14.117-77.607-13.822-77.420Q-13.527-77.232-13.527-76.893Q-13.527-76.748-13.600-76.621Q-13.672-76.494-13.799-76.422Q-13.926-76.350-14.074-76.350Q-14.219-76.350-14.346-76.422Q-14.473-76.494-14.545-76.621Q-14.617-76.748-14.617-76.893Q-14.617-77.107-14.504-77.236Q-14.836-77.236-15.053-76.990Q-15.270-76.744-15.363-76.385Q-15.457-76.025-15.457-75.709L-15.457-74.447L-14.801-74.447L-14.801-73.998M-12.977-75.799Q-12.977-76.377-12.693-76.797Q-12.410-77.217-11.926-77.428Q-11.442-77.639-10.875-77.639Q-10.434-77.639-10.098-77.527Q-9.762-77.416-9.527-77.195Q-9.293-76.975-9.168-76.644Q-9.043-76.314-9.043-75.877Q-9.043-75.721-9.195-75.693L-11.867-75.693Q-11.867-74.350-10.610-74.350Q-10.258-74.350-9.951-74.506Q-9.645-74.662-9.524-74.959Q-9.449-75.088-9.363-75.088L-9.195-75.088Q-9.043-75.053-9.043-74.920Q-9.043-74.885-9.051-74.869Q-9.235-74.393-9.699-74.168Q-10.164-73.943-10.738-73.943Q-11.336-73.943-11.846-74.146Q-12.356-74.350-12.666-74.771Q-12.977-75.193-12.977-75.799M-11.867-76.037L-9.860-76.037Q-9.860-76.576-10.108-76.924Q-10.356-77.271-10.875-77.271Q-11.219-77.271-11.443-77.105Q-11.668-76.939-11.768-76.662Q-11.867-76.385-11.867-76.037M-8.488-73.424Q-8.488-73.670-8.285-73.855Q-8.082-74.041-7.817-74.111Q-8.145-74.420-8.145-74.877Q-8.145-75.268-7.883-75.584Q-8.067-75.740-8.178-75.955Q-8.289-76.170-8.289-76.404Q-8.289-76.830-8.033-77.100Q-7.777-77.369-7.389-77.488Q-7-77.607-6.586-77.607Q-5.910-77.607-5.473-77.357Q-5.270-77.502-5.033-77.582Q-4.797-77.662-4.547-77.662Q-4.324-77.662-4.162-77.504Q-4-77.346-4-77.127Q-4-76.951-4.113-76.838Q-4.227-76.725-4.402-76.725Q-4.570-76.725-4.682-76.840Q-4.793-76.955-4.793-77.127L-4.793-77.205Q-4.793-77.205-4.783-77.236Q-4.774-77.268-4.770-77.279Q-4.965-77.248-5.195-77.143Q-4.883-76.838-4.883-76.404Q-4.883-75.986-5.139-75.715Q-5.395-75.443-5.781-75.324Q-6.168-75.205-6.586-75.205Q-7.184-75.205-7.602-75.404Q-7.598-75.404-7.625-75.350Q-7.656-75.240-7.656-75.189Q-7.656-74.982-7.504-74.846Q-7.352-74.709-7.152-74.709L-6.297-74.709Q-5.860-74.709-5.508-74.672Q-5.156-74.635-4.844-74.512Q-4.531-74.389-4.334-74.125Q-4.137-73.861-4.137-73.424Q-4.137-72.830-4.846-72.605Q-5.555-72.381-6.313-72.381Q-7.070-72.381-7.779-72.605Q-8.488-72.830-8.488-73.424M-7.715-73.424Q-7.715-73.162-7.471-73.014Q-7.227-72.865-6.902-72.812Q-6.578-72.760-6.313-72.760Q-5.832-72.760-5.373-72.906Q-4.914-73.053-4.914-73.424Q-4.914-73.846-6.297-73.846L-7.152-73.846Q-7.383-73.846-7.549-73.746Q-7.715-73.646-7.715-73.424M-6.586-75.584Q-6.152-75.584-5.996-75.775Q-5.840-75.967-5.840-76.404Q-5.840-76.697-5.902-76.873Q-5.965-77.049-6.131-77.139Q-6.297-77.228-6.586-77.228Q-6.875-77.228-7.039-77.141Q-7.203-77.053-7.266-76.875Q-7.328-76.697-7.328-76.404Q-7.328-75.967-7.172-75.775Q-7.016-75.584-6.586-75.584M-1.453-73.998L-3.410-73.998L-3.410-74.447L-2.883-74.447L-2.883-76.869Q-2.883-77.021-3.020-77.059Q-3.156-77.096-3.387-77.096L-3.387-77.541L-1.922-77.607L-1.922-74.447L-1.453-74.447L-1.453-73.998M-3.164-78.900Q-3.164-79.178-2.971-79.367Q-2.777-79.557-2.508-79.557Q-2.328-79.557-2.178-79.467Q-2.027-79.377-1.940-79.230Q-1.852-79.084-1.852-78.900Q-1.852-78.631-2.045-78.437Q-2.238-78.244-2.508-78.244Q-2.781-78.244-2.973-78.436Q-3.164-78.627-3.164-78.900M-0.582-73.943L-0.692-73.943Q-0.820-73.975-0.820-74.076L-0.820-75.119Q-0.820-75.162-0.783-75.203Q-0.746-75.244-0.692-75.244L-0.469-75.244Q-0.367-75.217-0.340-75.143Q-0.223-74.728 0.062-74.519Q0.348-74.311 0.781-74.311Q1.168-74.311 1.449-74.420Q1.730-74.529 1.730-74.861Q1.730-75.096 1.527-75.219Q1.324-75.342 1.035-75.396L0.410-75.494Q0.191-75.537-0.026-75.619Q-0.242-75.701-0.426-75.830Q-0.610-75.959-0.715-76.137Q-0.820-76.314-0.820-76.549Q-0.820-76.971-0.586-77.213Q-0.352-77.455 0.004-77.547Q0.359-77.639 0.781-77.639Q1.289-77.639 1.594-77.502L1.867-77.631Q1.875-77.635 1.885-77.637Q1.894-77.639 1.906-77.639L2.012-77.639Q2.140-77.607 2.140-77.510L2.140-76.701Q2.140-76.650 2.098-76.607Q2.055-76.564 2.012-76.564L1.789-76.564Q1.660-76.603 1.660-76.701Q1.660-76.932 1.531-77.068Q1.402-77.205 1.205-77.258Q1.008-77.311 0.773-77.311Q-0.172-77.311-0.172-76.853Q-0.172-76.537 0.476-76.424L1.109-76.318Q1.625-76.225 2.002-75.928Q2.379-75.631 2.379-75.143Q2.379-74.486 1.928-74.215Q1.476-73.943 0.781-73.943Q0.223-73.943-0.164-74.174L-0.524-73.959Q-0.555-73.943-0.582-73.943M3.570-74.920L3.570-77.103L2.898-77.103L2.898-77.471Q3.285-77.471 3.558-77.717Q3.832-77.963 3.965-78.338Q4.098-78.713 4.098-79.076L4.578-79.076L4.578-77.549L5.812-77.549L5.812-77.103L4.578-77.103L4.578-74.936Q4.578-74.350 5.035-74.350Q5.246-74.350 5.369-74.533Q5.492-74.717 5.492-74.936L5.492-75.389L5.973-75.389L5.973-74.920Q5.973-74.646 5.826-74.424Q5.680-74.201 5.439-74.072Q5.199-73.943 4.930-73.943Q4.355-73.943 3.963-74.166Q3.570-74.389 3.570-74.920M6.797-75.799Q6.797-76.377 7.080-76.797Q7.363-77.217 7.848-77.428Q8.332-77.639 8.898-77.639Q9.340-77.639 9.676-77.527Q10.012-77.416 10.246-77.195Q10.480-76.975 10.605-76.644Q10.730-76.314 10.730-75.877Q10.730-75.721 10.578-75.693L7.906-75.693Q7.906-74.350 9.164-74.350Q9.515-74.350 9.822-74.506Q10.129-74.662 10.250-74.959Q10.324-75.088 10.410-75.088L10.578-75.088Q10.730-75.053 10.730-74.920Q10.730-74.885 10.723-74.869Q10.539-74.393 10.074-74.168Q9.609-73.943 9.035-73.943Q8.437-73.943 7.928-74.146Q7.418-74.350 7.107-74.771Q6.797-75.193 6.797-75.799M7.906-76.037L9.914-76.037Q9.914-76.576 9.666-76.924Q9.418-77.271 8.898-77.271Q8.555-77.271 8.330-77.105Q8.105-76.939 8.006-76.662Q7.906-76.385 7.906-76.037M13.508-73.998L11.363-73.998L11.363-74.447L11.890-74.447L11.890-76.869Q11.890-77.021 11.744-77.059Q11.598-77.096 11.363-77.096L11.363-77.541L12.746-77.607L12.746-76.799Q12.902-77.154 13.182-77.381Q13.461-77.607 13.828-77.607Q14.191-77.607 14.486-77.420Q14.781-77.232 14.781-76.893Q14.781-76.748 14.709-76.621Q14.637-76.494 14.510-76.422Q14.383-76.350 14.234-76.350Q14.090-76.350 13.963-76.422Q13.836-76.494 13.764-76.621Q13.691-76.748 13.691-76.893Q13.691-77.107 13.805-77.236Q13.473-77.236 13.256-76.990Q13.039-76.744 12.945-76.385Q12.851-76.025 12.851-75.709L12.851-74.447L13.508-74.447\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-9.841-64.232Q-9.841-64.295-9.810-64.338L-6.064-69.596Q-6.521-69.361-7.088-69.361Q-7.740-69.361-8.345-69.682Q-8.201-69.334-8.201-68.889Q-8.201-68.529-8.322-68.158Q-8.443-67.787-8.693-67.531Q-8.943-67.275-9.306-67.275Q-9.693-67.275-9.976-67.519Q-10.259-67.764-10.406-68.137Q-10.552-68.510-10.552-68.889Q-10.552-69.268-10.406-69.639Q-10.259-70.010-9.976-70.254Q-9.693-70.498-9.306-70.498Q-8.990-70.498-8.720-70.260Q-8.384-69.955-7.955-69.783Q-7.525-69.611-7.088-69.611Q-6.595-69.611-6.177-69.824Q-5.759-70.037-5.459-70.436Q-5.416-70.498-5.322-70.498Q-5.248-70.498-5.193-70.443Q-5.138-70.389-5.138-70.314Q-5.138-70.252-5.170-70.209L-9.513-64.115Q-9.560-64.049-9.658-64.049Q-9.740-64.049-9.791-64.100Q-9.841-64.150-9.841-64.232M-9.306-67.529Q-9.033-67.529-8.845-67.754Q-8.658-67.978-8.570-68.301Q-8.482-68.623-8.482-68.889Q-8.482-69.146-8.570-69.469Q-8.658-69.791-8.845-70.016Q-9.033-70.240-9.306-70.240Q-9.693-70.240-9.836-69.812Q-9.978-69.385-9.978-68.889Q-9.978-68.381-9.838-67.955Q-9.697-67.529-9.306-67.529M-5.529-64.049Q-5.916-64.049-6.199-64.295Q-6.482-64.541-6.630-64.914Q-6.779-65.287-6.779-65.666Q-6.779-65.939-6.693-66.227Q-6.607-66.514-6.453-66.748Q-6.298-66.982-6.062-67.129Q-5.826-67.275-5.529-67.275Q-5.248-67.275-5.041-67.123Q-4.834-66.971-4.695-66.728Q-4.556-66.486-4.490-66.205Q-4.423-65.924-4.423-65.666Q-4.423-65.307-4.545-64.934Q-4.666-64.561-4.916-64.305Q-5.166-64.049-5.529-64.049M-5.529-64.307Q-5.255-64.307-5.068-64.531Q-4.880-64.756-4.793-65.078Q-4.705-65.400-4.705-65.666Q-4.705-65.924-4.793-66.246Q-4.880-66.568-5.068-66.793Q-5.255-67.018-5.529-67.018Q-5.920-67.018-6.060-66.588Q-6.201-66.158-6.201-65.666Q-6.201-65.158-6.064-64.732Q-5.927-64.307-5.529-64.307\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-3.719-64.736L-3.719-64.826Q-3.661-65.033-3.469-65.057L-2.758-65.057L-2.758-67.385L-3.469-67.385Q-3.665-67.408-3.719-67.627L-3.719-67.713Q-3.661-67.924-3.469-67.947L-2.368-67.947Q-2.169-67.928-2.118-67.713L-2.118-67.385Q-1.856-67.670-1.501-67.828Q-1.145-67.986-0.758-67.986Q-0.465-67.986-0.231-67.852Q0.003-67.717 0.003-67.451Q0.003-67.283-0.106-67.166Q-0.215-67.049-0.383-67.049Q-0.536-67.049-0.651-67.160Q-0.766-67.271-0.766-67.428Q-1.141-67.428-1.456-67.227Q-1.770-67.025-1.944-66.691Q-2.118-66.357-2.118-65.978L-2.118-65.057L-1.172-65.057Q-0.965-65.033-0.926-64.826L-0.926-64.736Q-0.965-64.521-1.172-64.498L-3.469-64.498Q-3.661-64.521-3.719-64.736M0.710-65.611Q0.710-66.057 1.124-66.314Q1.538-66.572 2.079-66.672Q2.620-66.771 3.128-66.779Q3.128-66.994 2.994-67.146Q2.859-67.299 2.652-67.375Q2.445-67.451 2.234-67.451Q1.890-67.451 1.730-67.428L1.730-67.369Q1.730-67.201 1.611-67.086Q1.492-66.971 1.328-66.971Q1.152-66.971 1.037-67.094Q0.921-67.217 0.921-67.385Q0.921-67.791 1.302-67.900Q1.683-68.010 2.242-68.010Q2.511-68.010 2.779-67.932Q3.046-67.853 3.271-67.703Q3.495-67.553 3.632-67.332Q3.769-67.111 3.769-66.834L3.769-65.115Q3.769-65.057 4.296-65.057Q4.492-65.037 4.542-64.826L4.542-64.736Q4.492-64.521 4.296-64.498L4.152-64.498Q3.808-64.498 3.579-64.545Q3.351-64.592 3.206-64.779Q2.745-64.459 2.038-64.459Q1.703-64.459 1.398-64.600Q1.093-64.740 0.902-65.002Q0.710-65.264 0.710-65.611M1.351-65.603Q1.351-65.330 1.593-65.174Q1.835-65.018 2.120-65.018Q2.339-65.018 2.572-65.076Q2.804-65.135 2.966-65.273Q3.128-65.412 3.128-65.635L3.128-66.225Q2.847-66.225 2.431-66.168Q2.015-66.111 1.683-65.973Q1.351-65.834 1.351-65.603M4.808-64.736L4.808-64.826Q4.847-65.033 5.054-65.057L5.460-65.057L6.390-66.275L5.519-67.385L5.101-67.385Q4.906-67.404 4.855-67.627L4.855-67.713Q4.906-67.924 5.101-67.947L6.261-67.947Q6.460-67.924 6.511-67.713L6.511-67.627Q6.460-67.408 6.261-67.385L6.152-67.385L6.648-66.728L7.124-67.385L7.007-67.385Q6.808-67.408 6.757-67.627L6.757-67.713Q6.808-67.924 7.007-67.947L8.167-67.947Q8.363-67.928 8.413-67.713L8.413-67.627Q8.363-67.408 8.167-67.385L7.757-67.385L6.910-66.275L7.870-65.057L8.277-65.057Q8.476-65.033 8.527-64.826L8.527-64.736Q8.488-64.521 8.277-64.498L7.124-64.498Q6.917-64.521 6.878-64.736L6.878-64.826Q6.917-65.033 7.124-65.057L7.253-65.057L6.648-65.912L6.062-65.057L6.206-65.057Q6.413-65.033 6.453-64.826L6.453-64.736Q6.413-64.521 6.206-64.498L5.054-64.498Q4.859-64.518 4.808-64.736\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-29.162-54.998L-30.940-54.998L-30.940-55.295Q-30.666-55.295-30.498-55.342Q-30.330-55.389-30.330-55.557L-30.330-57.693Q-30.330-57.908-30.387-58.004Q-30.444-58.100-30.557-58.121Q-30.670-58.143-30.916-58.143L-30.916-58.439L-29.717-58.525L-29.717-55.557Q-29.717-55.389-29.571-55.342Q-29.424-55.295-29.162-55.295L-29.162-54.998M-30.604-59.920Q-30.604-60.111-30.469-60.242Q-30.334-60.373-30.139-60.373Q-30.018-60.373-29.914-60.310Q-29.811-60.248-29.748-60.144Q-29.686-60.041-29.686-59.920Q-29.686-59.725-29.817-59.590Q-29.948-59.455-30.139-59.455Q-30.338-59.455-30.471-59.588Q-30.604-59.721-30.604-59.920M-28.037-55.959L-28.037-58.150L-28.740-58.150L-28.740-58.404Q-28.385-58.404-28.143-58.637Q-27.901-58.869-27.789-59.217Q-27.678-59.564-27.678-59.920L-27.397-59.920L-27.397-58.447L-26.221-58.447L-26.221-58.150L-27.397-58.150L-27.397-55.975Q-27.397-55.654-27.278-55.426Q-27.158-55.197-26.877-55.197Q-26.698-55.197-26.580-55.320Q-26.463-55.443-26.410-55.623Q-26.358-55.803-26.358-55.975L-26.358-56.447L-26.076-56.447L-26.076-55.959Q-26.076-55.705-26.182-55.465Q-26.287-55.225-26.485-55.072Q-26.682-54.920-26.940-54.920Q-27.256-54.920-27.508-55.043Q-27.760-55.166-27.899-55.400Q-28.037-55.635-28.037-55.959M-25.315-55.006L-25.315-56.228Q-25.315-56.256-25.283-56.287Q-25.252-56.318-25.229-56.318L-25.123-56.318Q-25.053-56.318-25.037-56.256Q-24.975-55.935-24.836-55.695Q-24.698-55.455-24.465-55.314Q-24.233-55.174-23.924-55.174Q-23.686-55.174-23.477-55.234Q-23.268-55.295-23.131-55.443Q-22.994-55.592-22.994-55.838Q-22.994-56.092-23.205-56.258Q-23.416-56.424-23.686-56.478L-24.307-56.592Q-24.713-56.670-25.014-56.926Q-25.315-57.182-25.315-57.557Q-25.315-57.924-25.114-58.146Q-24.912-58.369-24.588-58.467Q-24.264-58.564-23.924-58.564Q-23.459-58.564-23.162-58.357L-22.940-58.541Q-22.916-58.564-22.885-58.564L-22.834-58.564Q-22.803-58.564-22.776-58.537Q-22.748-58.510-22.748-58.478L-22.748-57.494Q-22.748-57.463-22.774-57.434Q-22.799-57.404-22.834-57.404L-22.940-57.404Q-22.975-57.404-23.002-57.432Q-23.030-57.459-23.030-57.494Q-23.030-57.893-23.281-58.113Q-23.533-58.334-23.932-58.334Q-24.287-58.334-24.571-58.211Q-24.854-58.088-24.854-57.783Q-24.854-57.564-24.653-57.432Q-24.451-57.299-24.205-57.256L-23.580-57.143Q-23.151-57.053-22.842-56.756Q-22.533-56.459-22.533-56.045Q-22.533-55.475-22.932-55.197Q-23.330-54.920-23.924-54.920Q-24.475-54.920-24.826-55.256L-25.123-54.943Q-25.147-54.920-25.182-54.920L-25.229-54.920Q-25.252-54.920-25.283-54.951Q-25.315-54.982-25.315-55.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-19.169-56.693Q-19.169-57.197-18.913-57.629Q-18.657-58.060-18.221-58.312Q-17.786-58.564-17.286-58.564Q-16.899-58.564-16.557-58.420Q-16.216-58.275-15.954-58.014Q-15.692-57.752-15.550-57.416Q-15.407-57.080-15.407-56.693Q-15.407-56.201-15.671-55.791Q-15.934-55.381-16.364-55.150Q-16.794-54.920-17.286-54.920Q-17.778-54.920-18.212-55.152Q-18.645-55.385-18.907-55.793Q-19.169-56.201-19.169-56.693M-17.286-55.197Q-16.829-55.197-16.577-55.420Q-16.325-55.643-16.237-55.994Q-16.149-56.346-16.149-56.791Q-16.149-57.221-16.243-57.559Q-16.337-57.896-16.591-58.103Q-16.845-58.310-17.286-58.310Q-17.934-58.310-18.178-57.894Q-18.423-57.478-18.423-56.791Q-18.423-56.346-18.335-55.994Q-18.247-55.643-17.995-55.420Q-17.743-55.197-17.286-55.197\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-13.569-55.029L-14.639-57.885Q-14.706-58.064-14.836-58.107Q-14.967-58.150-15.225-58.150L-15.225-58.447L-13.545-58.447L-13.545-58.150Q-13.995-58.150-13.995-57.951Q-13.991-57.935-13.989-57.918Q-13.987-57.900-13.987-57.885L-13.194-55.791L-12.483-57.701Q-12.518-57.795-12.518-57.840Q-12.518-57.885-12.553-57.885Q-12.620-58.064-12.750-58.107Q-12.881-58.150-13.135-58.150L-13.135-58.447L-11.545-58.447L-11.545-58.150Q-11.995-58.150-11.995-57.951Q-11.991-57.932-11.989-57.914Q-11.987-57.896-11.987-57.885L-11.155-55.670L-10.401-57.670Q-10.377-57.728-10.377-57.799Q-10.377-57.959-10.514-58.055Q-10.651-58.150-10.819-58.150L-10.819-58.447L-9.432-58.447L-9.432-58.150Q-9.666-58.150-9.844-58.023Q-10.022-57.896-10.104-57.670L-11.088-55.029Q-11.143-54.920-11.256-54.920L-11.315-54.920Q-11.428-54.920-11.471-55.029L-12.331-57.303L-13.186-55.029Q-13.225-54.920-13.346-54.920L-13.401-54.920Q-13.514-54.920-13.569-55.029M-7.088-54.998L-8.944-54.998L-8.944-55.295Q-8.670-55.295-8.502-55.342Q-8.334-55.389-8.334-55.557L-8.334-57.693Q-8.334-57.908-8.397-58.004Q-8.459-58.100-8.579-58.121Q-8.698-58.143-8.944-58.143L-8.944-58.439L-7.752-58.525L-7.752-57.791Q-7.639-58.006-7.446-58.174Q-7.252-58.342-7.014-58.434Q-6.776-58.525-6.522-58.525Q-5.354-58.525-5.354-57.447L-5.354-55.557Q-5.354-55.389-5.184-55.342Q-5.014-55.295-4.745-55.295L-4.745-54.998L-6.600-54.998L-6.600-55.295Q-6.327-55.295-6.159-55.342Q-5.991-55.389-5.991-55.557L-5.991-57.432Q-5.991-57.814-6.112-58.043Q-6.233-58.271-6.584-58.271Q-6.897-58.271-7.151-58.109Q-7.405-57.947-7.551-57.678Q-7.698-57.408-7.698-57.111L-7.698-55.557Q-7.698-55.389-7.528-55.342Q-7.358-55.295-7.088-55.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M-1.418-56.725Q-1.418-57.221-1.168-57.646Q-0.918-58.072-0.498-58.318Q-0.078-58.564 0.422-58.564Q0.961-58.564 1.352-58.439Q1.742-58.314 1.742-57.900Q1.742-57.795 1.692-57.703Q1.641-57.611 1.549-57.560Q1.457-57.510 1.348-57.510Q1.242-57.510 1.151-57.560Q1.059-57.611 1.008-57.703Q0.957-57.795 0.957-57.900Q0.957-58.123 1.125-58.228Q0.903-58.287 0.430-58.287Q0.133-58.287-0.082-58.148Q-0.297-58.010-0.428-57.779Q-0.558-57.549-0.617-57.279Q-0.676-57.010-0.676-56.725Q-0.676-56.330-0.543-55.980Q-0.410-55.631-0.138-55.414Q0.133-55.197 0.531-55.197Q0.906-55.197 1.182-55.414Q1.457-55.631 1.559-55.990Q1.574-56.053 1.637-56.053L1.742-56.053Q1.778-56.053 1.803-56.025Q1.828-55.998 1.828-55.959L1.828-55.935Q1.696-55.455 1.311-55.187Q0.926-54.920 0.422-54.920Q0.059-54.920-0.275-55.057Q-0.609-55.193-0.869-55.443Q-1.129-55.693-1.273-56.029Q-1.418-56.365-1.418-56.725M2.317-56.693Q2.317-57.197 2.572-57.629Q2.828-58.060 3.264-58.312Q3.699-58.564 4.199-58.564Q4.586-58.564 4.928-58.420Q5.270-58.275 5.531-58.014Q5.793-57.752 5.936-57.416Q6.078-57.080 6.078-56.693Q6.078-56.201 5.815-55.791Q5.551-55.381 5.121-55.150Q4.692-54.920 4.199-54.920Q3.707-54.920 3.274-55.152Q2.840-55.385 2.578-55.793Q2.317-56.201 2.317-56.693M4.199-55.197Q4.656-55.197 4.908-55.420Q5.160-55.643 5.248-55.994Q5.336-56.346 5.336-56.791Q5.336-57.221 5.242-57.559Q5.149-57.896 4.895-58.103Q4.641-58.310 4.199-58.310Q3.551-58.310 3.307-57.894Q3.063-57.478 3.063-56.791Q3.063-56.346 3.151-55.994Q3.239-55.643 3.490-55.420Q3.742-55.197 4.199-55.197M8.492-54.998L6.637-54.998L6.637-55.295Q6.910-55.295 7.078-55.342Q7.246-55.389 7.246-55.557L7.246-57.693Q7.246-57.908 7.184-58.004Q7.121-58.100 7.002-58.121Q6.883-58.143 6.637-58.143L6.637-58.439L7.828-58.525L7.828-57.791Q7.942-58.006 8.135-58.174Q8.328-58.342 8.567-58.434Q8.805-58.525 9.059-58.525Q10.227-58.525 10.227-57.447L10.227-55.557Q10.227-55.389 10.397-55.342Q10.567-55.295 10.836-55.295L10.836-54.998L8.981-54.998L8.981-55.295Q9.254-55.295 9.422-55.342Q9.590-55.389 9.590-55.557L9.590-57.432Q9.590-57.814 9.469-58.043Q9.348-58.271 8.996-58.271Q8.684-58.271 8.430-58.109Q8.176-57.947 8.030-57.678Q7.883-57.408 7.883-57.111L7.883-55.557Q7.883-55.389 8.053-55.342Q8.223-55.295 8.492-55.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M11.679-55.959L11.679-58.150L10.976-58.150L10.976-58.404Q11.332-58.404 11.574-58.637Q11.816-58.869 11.927-59.217Q12.039-59.564 12.039-59.920L12.320-59.920L12.320-58.447L13.496-58.447L13.496-58.150L12.320-58.150L12.320-55.975Q12.320-55.654 12.439-55.426Q12.558-55.197 12.839-55.197Q13.019-55.197 13.136-55.320Q13.254-55.443 13.306-55.623Q13.359-55.803 13.359-55.975L13.359-56.447L13.640-56.447L13.640-55.959Q13.640-55.705 13.535-55.465Q13.429-55.225 13.232-55.072Q13.035-54.920 12.777-54.920Q12.461-54.920 12.209-55.043Q11.957-55.166 11.818-55.400Q11.679-55.635 11.679-55.959M14.359-56.752Q14.359-57.232 14.591-57.648Q14.824-58.064 15.234-58.314Q15.644-58.564 16.121-58.564Q16.851-58.564 17.250-58.123Q17.648-57.682 17.648-56.951Q17.648-56.846 17.554-56.822L15.105-56.822L15.105-56.752Q15.105-56.342 15.226-55.986Q15.347-55.631 15.619-55.414Q15.890-55.197 16.320-55.197Q16.683-55.197 16.980-55.426Q17.277-55.654 17.379-56.006Q17.386-56.053 17.472-56.068L17.554-56.068Q17.648-56.041 17.648-55.959Q17.648-55.951 17.640-55.920Q17.578-55.693 17.439-55.510Q17.300-55.326 17.109-55.193Q16.918-55.060 16.699-54.990Q16.480-54.920 16.242-54.920Q15.871-54.920 15.533-55.057Q15.195-55.193 14.927-55.445Q14.660-55.697 14.509-56.037Q14.359-56.377 14.359-56.752M15.113-57.060L17.074-57.060Q17.074-57.365 16.972-57.656Q16.871-57.947 16.654-58.129Q16.437-58.310 16.121-58.310Q15.820-58.310 15.589-58.123Q15.359-57.935 15.236-57.644Q15.113-57.353 15.113-57.060M20.066-54.998L18.211-54.998L18.211-55.295Q18.484-55.295 18.652-55.342Q18.820-55.389 18.820-55.557L18.820-57.693Q18.820-57.908 18.757-58.004Q18.695-58.100 18.576-58.121Q18.457-58.143 18.211-58.143L18.211-58.439L19.402-58.525L19.402-57.791Q19.515-58.006 19.709-58.174Q19.902-58.342 20.140-58.434Q20.379-58.525 20.632-58.525Q21.800-58.525 21.800-57.447L21.800-55.557Q21.800-55.389 21.970-55.342Q22.140-55.295 22.410-55.295L22.410-54.998L20.554-54.998L20.554-55.295Q20.828-55.295 20.996-55.342Q21.164-55.389 21.164-55.557L21.164-57.432Q21.164-57.814 21.043-58.043Q20.921-58.271 20.570-58.271Q20.257-58.271 20.004-58.109Q19.750-57.947 19.603-57.678Q19.457-57.408 19.457-57.111L19.457-55.557Q19.457-55.389 19.627-55.342Q19.796-55.295 20.066-55.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(60.897 12.278)\">\u003Cpath d=\"M23.248-55.959L23.248-58.150L22.545-58.150L22.545-58.404Q22.901-58.404 23.143-58.637Q23.385-58.869 23.496-59.217Q23.608-59.564 23.608-59.920L23.889-59.920L23.889-58.447L25.065-58.447L25.065-58.150L23.889-58.150L23.889-55.975Q23.889-55.654 24.008-55.426Q24.127-55.197 24.408-55.197Q24.588-55.197 24.705-55.320Q24.823-55.443 24.875-55.623Q24.928-55.803 24.928-55.975L24.928-56.447L25.209-56.447L25.209-55.959Q25.209-55.705 25.104-55.465Q24.998-55.225 24.801-55.072Q24.604-54.920 24.346-54.920Q24.030-54.920 23.778-55.043Q23.526-55.166 23.387-55.400Q23.248-55.635 23.248-55.959M25.971-55.006L25.971-56.228Q25.971-56.256 26.002-56.287Q26.033-56.318 26.057-56.318L26.162-56.318Q26.233-56.318 26.248-56.256Q26.311-55.935 26.449-55.695Q26.588-55.455 26.821-55.314Q27.053-55.174 27.362-55.174Q27.600-55.174 27.809-55.234Q28.018-55.295 28.155-55.443Q28.291-55.592 28.291-55.838Q28.291-56.092 28.080-56.258Q27.869-56.424 27.600-56.478L26.979-56.592Q26.573-56.670 26.272-56.926Q25.971-57.182 25.971-57.557Q25.971-57.924 26.172-58.146Q26.373-58.369 26.698-58.467Q27.022-58.564 27.362-58.564Q27.826-58.564 28.123-58.357L28.346-58.541Q28.369-58.564 28.401-58.564L28.451-58.564Q28.483-58.564 28.510-58.537Q28.537-58.510 28.537-58.478L28.537-57.494Q28.537-57.463 28.512-57.434Q28.487-57.404 28.451-57.404L28.346-57.404Q28.311-57.404 28.283-57.432Q28.256-57.459 28.256-57.494Q28.256-57.893 28.004-58.113Q27.752-58.334 27.354-58.334Q26.998-58.334 26.715-58.211Q26.432-58.088 26.432-57.783Q26.432-57.564 26.633-57.432Q26.834-57.299 27.080-57.256L27.705-57.143Q28.135-57.053 28.444-56.756Q28.752-56.459 28.752-56.045Q28.752-55.475 28.354-55.197Q27.955-54.920 27.362-54.920Q26.811-54.920 26.459-55.256L26.162-54.943Q26.139-54.920 26.104-54.920L26.057-54.920Q26.033-54.920 26.002-54.951Q25.971-54.982 25.971-55.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M111.54-37.927h78.594V-72.07h-78.593Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M-10.341-73.998L-12.403-73.998L-12.403-74.447L-11.876-74.447L-11.876-76.869Q-11.876-77.021-12.023-77.059Q-12.169-77.096-12.403-77.096L-12.403-77.541L-10.974-77.607L-10.974-76.814Q-10.825-77.061-10.591-77.240Q-10.357-77.420-10.079-77.514Q-9.802-77.607-9.509-77.607Q-9.013-77.607-8.667-77.451Q-8.321-77.295-8.204-76.885Q-7.974-77.228-7.597-77.418Q-7.220-77.607-6.790-77.607Q-6.349-77.607-6.052-77.500Q-5.755-77.393-5.593-77.133Q-5.431-76.873-5.431-76.439L-5.431-74.447L-4.899-74.447L-4.899-73.998L-6.966-73.998L-6.966-74.447L-6.439-74.447L-6.439-76.412Q-6.439-76.787-6.513-77.012Q-6.587-77.236-6.884-77.236Q-7.396-77.236-7.773-76.900Q-8.149-76.564-8.149-76.061L-8.149-74.447L-7.622-74.447L-7.622-73.998L-9.685-73.998L-9.685-74.447L-9.157-74.447L-9.157-76.412Q-9.157-76.787-9.235-77.012Q-9.314-77.236-9.607-77.236Q-10.118-77.236-10.493-76.902Q-10.868-76.568-10.868-76.061L-10.868-74.447L-10.341-74.447L-10.341-73.998M-4.403-75.799Q-4.403-76.377-4.120-76.797Q-3.837-77.217-3.353-77.428Q-2.868-77.639-2.302-77.639Q-1.860-77.639-1.524-77.527Q-1.189-77.416-0.954-77.195Q-0.720-76.975-0.595-76.644Q-0.470-76.314-0.470-75.877Q-0.470-75.721-0.622-75.693L-3.294-75.693Q-3.294-74.350-2.036-74.350Q-1.685-74.350-1.378-74.506Q-1.071-74.662-0.950-74.959Q-0.876-75.088-0.790-75.088L-0.622-75.088Q-0.470-75.053-0.470-74.920Q-0.470-74.885-0.478-74.869Q-0.661-74.393-1.126-74.168Q-1.591-73.943-2.165-73.943Q-2.763-73.943-3.273-74.146Q-3.782-74.350-4.093-74.771Q-4.403-75.193-4.403-75.799M-3.294-76.037L-1.286-76.037Q-1.286-76.576-1.534-76.924Q-1.782-77.271-2.302-77.271Q-2.646-77.271-2.870-77.105Q-3.095-76.939-3.194-76.662Q-3.294-76.385-3.294-76.037M2.308-73.998L0.245-73.998L0.245-74.447L0.772-74.447L0.772-76.869Q0.772-77.021 0.626-77.059Q0.479-77.096 0.245-77.096L0.245-77.541L1.675-77.607L1.675-76.814Q1.823-77.061 2.058-77.240Q2.292-77.420 2.569-77.514Q2.847-77.607 3.140-77.607Q3.636-77.607 3.981-77.451Q4.327-77.295 4.444-76.885Q4.675-77.228 5.052-77.418Q5.429-77.607 5.858-77.607Q6.300-77.607 6.597-77.500Q6.893-77.393 7.056-77.133Q7.218-76.873 7.218-76.439L7.218-74.447L7.749-74.447L7.749-73.998L5.683-73.998L5.683-74.447L6.210-74.447L6.210-76.412Q6.210-76.787 6.136-77.012Q6.061-77.236 5.765-77.236Q5.253-77.236 4.876-76.900Q4.499-76.564 4.499-76.061L4.499-74.447L5.026-74.447L5.026-73.998L2.964-73.998L2.964-74.447L3.491-74.447L3.491-76.412Q3.491-76.787 3.413-77.012Q3.335-77.236 3.042-77.236Q2.530-77.236 2.155-76.902Q1.780-76.568 1.780-76.061L1.780-74.447L2.308-74.447L2.308-73.998M8.245-75.732Q8.245-76.197 8.415-76.557Q8.585-76.916 8.888-77.158Q9.190-77.400 9.583-77.519Q9.976-77.639 10.421-77.639Q10.866-77.639 11.257-77.521Q11.647-77.404 11.954-77.160Q12.261-76.916 12.429-76.557Q12.597-76.197 12.597-75.732Q12.597-75.283 12.419-74.945Q12.241-74.607 11.929-74.383Q11.616-74.158 11.231-74.051Q10.847-73.943 10.421-73.943Q9.999-73.943 9.610-74.051Q9.222-74.158 8.911-74.383Q8.601-74.607 8.423-74.947Q8.245-75.287 8.245-75.732M10.421-74.350Q10.901-74.350 11.134-74.541Q11.366-74.732 11.425-75.035Q11.483-75.338 11.483-75.846Q11.483-76.576 11.290-76.924Q11.097-77.271 10.421-77.271Q10.065-77.271 9.849-77.168Q9.632-77.064 9.526-76.877Q9.421-76.689 9.388-76.449Q9.354-76.209 9.354-75.846Q9.354-75.338 9.415-75.033Q9.476-74.728 9.710-74.539Q9.944-74.350 10.421-74.350M15.362-73.998L13.218-73.998L13.218-74.447L13.745-74.447L13.745-76.869Q13.745-77.021 13.599-77.059Q13.452-77.096 13.218-77.096L13.218-77.541L14.601-77.607L14.601-76.799Q14.757-77.154 15.036-77.381Q15.315-77.607 15.683-77.607Q16.046-77.607 16.341-77.420Q16.636-77.232 16.636-76.893Q16.636-76.748 16.563-76.621Q16.491-76.494 16.364-76.422Q16.237-76.350 16.089-76.350Q15.944-76.350 15.817-76.422Q15.690-76.494 15.618-76.621Q15.546-76.748 15.546-76.893Q15.546-77.107 15.659-77.236Q15.327-77.236 15.110-76.990Q14.893-76.744 14.800-76.385Q14.706-76.025 14.706-75.709L14.706-74.447L15.362-74.447L15.362-73.998M17.104-73.197Q17.104-73.420 17.253-73.564Q17.401-73.709 17.624-73.709Q17.765-73.709 17.884-73.643Q18.003-73.576 18.069-73.457Q18.136-73.338 18.136-73.197Q18.136-72.908 17.921-72.768Q17.944-72.760 18.003-72.760Q18.300-72.760 18.546-72.943Q18.792-73.127 18.929-73.404L19.226-73.998L17.675-77.103L17.151-77.103L17.151-77.549L19.112-77.549L19.112-77.103L18.745-77.103L19.761-75.061L20.761-77.053Q20.761-77.103 20.417-77.103L20.417-77.549L21.843-77.549L21.843-77.103Q21.347-77.103 21.296-77.045L19.464-73.404Q19.249-72.971 18.858-72.680Q18.468-72.389 18.003-72.389Q17.776-72.389 17.567-72.492Q17.358-72.596 17.231-72.783Q17.104-72.971 17.104-73.197\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M-5.902-62.506Q-6.515-62.963-6.917-63.598Q-7.320-64.232-7.515-64.978Q-7.710-65.725-7.710-66.498Q-7.710-67.271-7.515-68.018Q-7.320-68.764-6.917-69.398Q-6.515-70.033-5.902-70.490Q-5.890-70.494-5.882-70.496Q-5.874-70.498-5.863-70.498L-5.785-70.498Q-5.746-70.498-5.720-70.471Q-5.695-70.443-5.695-70.400Q-5.695-70.350-5.726-70.330Q-6.234-69.877-6.556-69.254Q-6.878-68.631-7.019-67.936Q-7.160-67.240-7.160-66.498Q-7.160-65.764-7.021-65.064Q-6.882-64.365-6.558-63.740Q-6.234-63.115-5.726-62.666Q-5.695-62.646-5.695-62.596Q-5.695-62.553-5.720-62.525Q-5.746-62.498-5.785-62.498L-5.863-62.498Q-5.871-62.502-5.880-62.504Q-5.890-62.506-5.902-62.506M-4.031-64.232Q-4.031-64.295-3.999-64.338L-0.253-69.596Q-0.710-69.361-1.277-69.361Q-1.929-69.361-2.535-69.682Q-2.390-69.334-2.390-68.889Q-2.390-68.529-2.511-68.158Q-2.632-67.787-2.882-67.531Q-3.132-67.275-3.496-67.275Q-3.882-67.275-4.165-67.519Q-4.449-67.764-4.595-68.137Q-4.742-68.510-4.742-68.889Q-4.742-69.268-4.595-69.639Q-4.449-70.010-4.165-70.254Q-3.882-70.498-3.496-70.498Q-3.179-70.498-2.910-70.260Q-2.574-69.955-2.144-69.783Q-1.714-69.611-1.277-69.611Q-0.785-69.611-0.367-69.824Q0.051-70.037 0.352-70.436Q0.395-70.498 0.489-70.498Q0.563-70.498 0.618-70.443Q0.672-70.389 0.672-70.314Q0.672-70.252 0.641-70.209L-3.703-64.115Q-3.749-64.049-3.847-64.049Q-3.929-64.049-3.980-64.100Q-4.031-64.150-4.031-64.232M-3.496-67.529Q-3.222-67.529-3.035-67.754Q-2.847-67.978-2.759-68.301Q-2.671-68.623-2.671-68.889Q-2.671-69.146-2.759-69.469Q-2.847-69.791-3.035-70.016Q-3.222-70.240-3.496-70.240Q-3.882-70.240-4.025-69.812Q-4.167-69.385-4.167-68.889Q-4.167-68.381-4.027-67.955Q-3.886-67.529-3.496-67.529M0.282-64.049Q-0.105-64.049-0.388-64.295Q-0.671-64.541-0.820-64.914Q-0.968-65.287-0.968-65.666Q-0.968-65.939-0.882-66.227Q-0.796-66.514-0.642-66.748Q-0.488-66.982-0.251-67.129Q-0.015-67.275 0.282-67.275Q0.563-67.275 0.770-67.123Q0.977-66.971 1.116-66.728Q1.254-66.486 1.321-66.205Q1.387-65.924 1.387-65.666Q1.387-65.307 1.266-64.934Q1.145-64.561 0.895-64.305Q0.645-64.049 0.282-64.049M0.282-64.307Q0.555-64.307 0.743-64.531Q0.930-64.756 1.018-65.078Q1.106-65.400 1.106-65.666Q1.106-65.924 1.018-66.246Q0.930-66.568 0.743-66.793Q0.555-67.018 0.282-67.018Q-0.109-67.018-0.249-66.588Q-0.390-66.158-0.390-65.666Q-0.390-65.158-0.253-64.732Q-0.117-64.307 0.282-64.307\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M2.093-64.736L2.093-64.826Q2.151-65.033 2.343-65.057L3.054-65.057L3.054-67.385L2.343-67.385Q2.147-67.408 2.093-67.627L2.093-67.713Q2.151-67.924 2.343-67.947L3.444-67.947Q3.643-67.928 3.694-67.713L3.694-67.385Q3.956-67.670 4.311-67.828Q4.667-67.986 5.054-67.986Q5.347-67.986 5.581-67.852Q5.815-67.717 5.815-67.451Q5.815-67.283 5.706-67.166Q5.597-67.049 5.429-67.049Q5.276-67.049 5.161-67.160Q5.046-67.271 5.046-67.428Q4.671-67.428 4.356-67.227Q4.042-67.025 3.868-66.691Q3.694-66.357 3.694-65.978L3.694-65.057L4.640-65.057Q4.847-65.033 4.886-64.826L4.886-64.736Q4.847-64.521 4.640-64.498L2.343-64.498Q2.151-64.521 2.093-64.736M6.522-65.611Q6.522-66.057 6.936-66.314Q7.350-66.572 7.891-66.672Q8.433-66.771 8.940-66.779Q8.940-66.994 8.806-67.146Q8.671-67.299 8.464-67.375Q8.257-67.451 8.046-67.451Q7.702-67.451 7.542-67.428L7.542-67.369Q7.542-67.201 7.423-67.086Q7.304-66.971 7.140-66.971Q6.964-66.971 6.849-67.094Q6.733-67.217 6.733-67.385Q6.733-67.791 7.114-67.900Q7.495-68.010 8.054-68.010Q8.323-68.010 8.591-67.932Q8.858-67.853 9.083-67.703Q9.308-67.553 9.444-67.332Q9.581-67.111 9.581-66.834L9.581-65.115Q9.581-65.057 10.108-65.057Q10.304-65.037 10.354-64.826L10.354-64.736Q10.304-64.521 10.108-64.498L9.964-64.498Q9.620-64.498 9.391-64.545Q9.163-64.592 9.018-64.779Q8.558-64.459 7.850-64.459Q7.515-64.459 7.210-64.600Q6.905-64.740 6.714-65.002Q6.522-65.264 6.522-65.611M7.163-65.603Q7.163-65.330 7.405-65.174Q7.647-65.018 7.933-65.018Q8.151-65.018 8.384-65.076Q8.616-65.135 8.778-65.273Q8.940-65.412 8.940-65.635L8.940-66.225Q8.659-66.225 8.243-66.168Q7.827-66.111 7.495-65.973Q7.163-65.834 7.163-65.603M10.620-64.736L10.620-64.826Q10.659-65.033 10.866-65.057L11.272-65.057L12.202-66.275L11.331-67.385L10.913-67.385Q10.718-67.404 10.667-67.627L10.667-67.713Q10.718-67.924 10.913-67.947L12.073-67.947Q12.272-67.924 12.323-67.713L12.323-67.627Q12.272-67.408 12.073-67.385L11.964-67.385L12.460-66.728L12.936-67.385L12.819-67.385Q12.620-67.408 12.569-67.627L12.569-67.713Q12.620-67.924 12.819-67.947L13.979-67.947Q14.175-67.928 14.225-67.713L14.225-67.627Q14.175-67.408 13.979-67.385L13.569-67.385L12.722-66.275L13.683-65.057L14.089-65.057Q14.288-65.033 14.339-64.826L14.339-64.736Q14.300-64.521 14.089-64.498L12.936-64.498Q12.729-64.521 12.690-64.736L12.690-64.826Q12.729-65.033 12.936-65.057L13.065-65.057L12.460-65.912L11.874-65.057L12.018-65.057Q12.225-65.033 12.265-64.826L12.265-64.736Q12.225-64.521 12.018-64.498L10.866-64.498Q10.671-64.518 10.620-64.736\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M15.261-62.498L15.179-62.498Q15.143-62.498 15.118-62.527Q15.093-62.557 15.093-62.596Q15.093-62.646 15.124-62.666Q15.511-63.002 15.794-63.451Q16.077-63.900 16.243-64.400Q16.409-64.900 16.483-65.418Q16.557-65.936 16.557-66.498Q16.557-67.068 16.483-67.584Q16.409-68.100 16.243-68.596Q16.077-69.092 15.798-69.539Q15.518-69.986 15.124-70.330Q15.093-70.350 15.093-70.400Q15.093-70.439 15.118-70.469Q15.143-70.498 15.179-70.498L15.261-70.498Q15.272-70.498 15.282-70.496Q15.292-70.494 15.300-70.490Q15.913-70.033 16.315-69.398Q16.718-68.764 16.913-68.018Q17.108-67.271 17.108-66.498Q17.108-65.725 16.913-64.978Q16.718-64.232 16.315-63.598Q15.913-62.963 15.300-62.506Q15.288-62.506 15.280-62.504Q15.272-62.502 15.261-62.498\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M-30.108-54.998L-30.389-54.998L-30.389-59.717Q-30.389-59.932-30.451-60.027Q-30.514-60.123-30.631-60.144Q-30.748-60.166-30.994-60.166L-30.994-60.463L-29.772-60.549L-29.772-58.060Q-29.295-58.525-28.596-58.525Q-28.115-58.525-27.707-58.281Q-27.299-58.037-27.063-57.623Q-26.826-57.209-26.826-56.725Q-26.826-56.350-26.975-56.021Q-27.123-55.693-27.393-55.441Q-27.662-55.189-28.006-55.055Q-28.350-54.920-28.709-54.920Q-29.030-54.920-29.328-55.068Q-29.627-55.217-29.834-55.478L-30.108-54.998M-29.748-57.670L-29.748-55.830Q-29.596-55.533-29.336-55.353Q-29.076-55.174-28.764-55.174Q-28.338-55.174-28.071-55.393Q-27.803-55.611-27.688-55.957Q-27.573-56.303-27.573-56.725Q-27.573-57.373-27.821-57.822Q-28.069-58.271-28.666-58.271Q-29.002-58.271-29.291-58.113Q-29.580-57.955-29.748-57.670\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M-26.118-53.701Q-26.004-53.623-25.829-53.623Q-25.540-53.623-25.319-53.836Q-25.098-54.049-24.973-54.350L-24.684-54.998L-25.958-57.885Q-26.040-58.060-26.184-58.105Q-26.329-58.150-26.598-58.150L-26.598-58.447L-24.879-58.447L-24.879-58.150Q-25.301-58.150-25.301-57.967Q-25.301-57.955-25.286-57.885L-24.348-55.760L-23.516-57.670Q-23.477-57.760-23.477-57.838Q-23.477-57.978-23.579-58.064Q-23.680-58.150-23.821-58.150L-23.821-58.447L-22.469-58.447L-22.469-58.150Q-22.723-58.150-22.917-58.025Q-23.110-57.900-23.215-57.670L-24.661-54.350Q-24.774-54.096-24.940-53.873Q-25.106-53.650-25.335-53.508Q-25.563-53.365-25.829-53.365Q-26.126-53.365-26.366-53.557Q-26.606-53.748-26.606-54.037Q-26.606-54.193-26.501-54.295Q-26.395-54.396-26.247-54.396Q-26.141-54.396-26.061-54.350Q-25.981-54.303-25.934-54.225Q-25.887-54.146-25.887-54.037Q-25.887-53.916-25.948-53.828Q-26.008-53.740-26.118-53.701M-21.430-55.959L-21.430-58.150L-22.133-58.150L-22.133-58.404Q-21.778-58.404-21.536-58.637Q-21.294-58.869-21.182-59.217Q-21.071-59.564-21.071-59.920L-20.790-59.920L-20.790-58.447L-19.614-58.447L-19.614-58.150L-20.790-58.150L-20.790-55.975Q-20.790-55.654-20.670-55.426Q-20.551-55.197-20.270-55.197Q-20.090-55.197-19.973-55.320Q-19.856-55.443-19.803-55.623Q-19.751-55.803-19.751-55.975L-19.751-56.447L-19.469-56.447L-19.469-55.959Q-19.469-55.705-19.575-55.465Q-19.680-55.225-19.878-55.072Q-20.075-54.920-20.333-54.920Q-20.649-54.920-20.901-55.043Q-21.153-55.166-21.292-55.400Q-21.430-55.635-21.430-55.959M-18.751-56.752Q-18.751-57.232-18.518-57.648Q-18.286-58.064-17.876-58.314Q-17.465-58.564-16.989-58.564Q-16.258-58.564-15.860-58.123Q-15.462-57.682-15.462-56.951Q-15.462-56.846-15.555-56.822L-18.004-56.822L-18.004-56.752Q-18.004-56.342-17.883-55.986Q-17.762-55.631-17.491-55.414Q-17.219-55.197-16.790-55.197Q-16.426-55.197-16.129-55.426Q-15.833-55.654-15.731-56.006Q-15.723-56.053-15.637-56.068L-15.555-56.068Q-15.462-56.041-15.462-55.959Q-15.462-55.951-15.469-55.920Q-15.532-55.693-15.670-55.510Q-15.809-55.326-16.001-55.193Q-16.192-55.060-16.411-54.990Q-16.629-54.920-16.868-54.920Q-17.239-54.920-17.577-55.057Q-17.915-55.193-18.182-55.445Q-18.450-55.697-18.600-56.037Q-18.751-56.377-18.751-56.752M-17.997-57.060L-16.036-57.060Q-16.036-57.365-16.137-57.656Q-16.239-57.947-16.456-58.129Q-16.672-58.310-16.989-58.310Q-17.290-58.310-17.520-58.123Q-17.751-57.935-17.874-57.644Q-17.997-57.353-17.997-57.060M-14.930-55.006L-14.930-56.228Q-14.930-56.256-14.899-56.287Q-14.868-56.318-14.844-56.318L-14.739-56.318Q-14.669-56.318-14.653-56.256Q-14.590-55.935-14.452-55.695Q-14.313-55.455-14.081-55.314Q-13.848-55.174-13.540-55.174Q-13.301-55.174-13.092-55.234Q-12.883-55.295-12.747-55.443Q-12.610-55.592-12.610-55.838Q-12.610-56.092-12.821-56.258Q-13.032-56.424-13.301-56.478L-13.922-56.592Q-14.329-56.670-14.629-56.926Q-14.930-57.182-14.930-57.557Q-14.930-57.924-14.729-58.146Q-14.528-58.369-14.204-58.467Q-13.879-58.564-13.540-58.564Q-13.075-58.564-12.778-58.357L-12.555-58.541Q-12.532-58.564-12.501-58.564L-12.450-58.564Q-12.419-58.564-12.391-58.537Q-12.364-58.510-12.364-58.478L-12.364-57.494Q-12.364-57.463-12.389-57.434Q-12.415-57.404-12.450-57.404L-12.555-57.404Q-12.590-57.404-12.618-57.432Q-12.645-57.459-12.645-57.494Q-12.645-57.893-12.897-58.113Q-13.149-58.334-13.547-58.334Q-13.903-58.334-14.186-58.211Q-14.469-58.088-14.469-57.783Q-14.469-57.564-14.268-57.432Q-14.067-57.299-13.821-57.256L-13.196-57.143Q-12.766-57.053-12.458-56.756Q-12.149-56.459-12.149-56.045Q-12.149-55.475-12.547-55.197Q-12.946-54.920-13.540-54.920Q-14.090-54.920-14.442-55.256L-14.739-54.943Q-14.762-54.920-14.797-54.920L-14.844-54.920Q-14.868-54.920-14.899-54.951Q-14.930-54.982-14.930-55.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M-8.682-55.830Q-8.682-56.314-8.280-56.609Q-7.877-56.904-7.327-57.023Q-6.776-57.143-6.284-57.143L-6.284-57.432Q-6.284-57.658-6.399-57.865Q-6.514-58.072-6.711-58.191Q-6.909-58.310-7.139-58.310Q-7.565-58.310-7.850-58.205Q-7.780-58.178-7.733-58.123Q-7.686-58.068-7.661-57.998Q-7.635-57.928-7.635-57.853Q-7.635-57.748-7.686-57.656Q-7.737-57.564-7.829-57.514Q-7.920-57.463-8.026-57.463Q-8.131-57.463-8.223-57.514Q-8.315-57.564-8.366-57.656Q-8.416-57.748-8.416-57.853Q-8.416-58.271-8.028-58.418Q-7.639-58.564-7.139-58.564Q-6.807-58.564-6.454-58.434Q-6.100-58.303-5.872-58.049Q-5.643-57.795-5.643-57.447L-5.643-55.646Q-5.643-55.514-5.571-55.404Q-5.498-55.295-5.370-55.295Q-5.245-55.295-5.176-55.400Q-5.108-55.506-5.108-55.646L-5.108-56.158L-4.827-56.158L-4.827-55.646Q-4.827-55.443-4.944-55.285Q-5.061-55.127-5.243-55.043Q-5.424-54.959-5.627-54.959Q-5.858-54.959-6.010-55.131Q-6.163-55.303-6.194-55.533Q-6.354-55.252-6.663-55.086Q-6.971-54.920-7.323-54.920Q-7.834-54.920-8.258-55.143Q-8.682-55.365-8.682-55.830M-7.995-55.830Q-7.995-55.545-7.768-55.359Q-7.541-55.174-7.248-55.174Q-7.002-55.174-6.778-55.291Q-6.553-55.408-6.418-55.611Q-6.284-55.814-6.284-56.068L-6.284-56.900Q-6.549-56.900-6.834-56.846Q-7.120-56.791-7.391-56.662Q-7.663-56.533-7.829-56.326Q-7.995-56.119-7.995-55.830M-3.909-55.959L-3.909-58.150L-4.612-58.150L-4.612-58.404Q-4.256-58.404-4.014-58.637Q-3.772-58.869-3.661-59.217Q-3.549-59.564-3.549-59.920L-3.268-59.920L-3.268-58.447L-2.092-58.447L-2.092-58.150L-3.268-58.150L-3.268-55.975Q-3.268-55.654-3.149-55.426Q-3.030-55.197-2.748-55.197Q-2.569-55.197-2.452-55.320Q-2.334-55.443-2.282-55.623Q-2.229-55.803-2.229-55.975L-2.229-56.447L-1.948-56.447L-1.948-55.959Q-1.948-55.705-2.053-55.465Q-2.159-55.225-2.356-55.072Q-2.553-54.920-2.811-54.920Q-3.127-54.920-3.379-55.043Q-3.631-55.166-3.770-55.400Q-3.909-55.635-3.909-55.959\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M1.707-55.830Q1.707-56.314 2.109-56.609Q2.512-56.904 3.062-57.023Q3.613-57.143 4.105-57.143L4.105-57.432Q4.105-57.658 3.990-57.865Q3.875-58.072 3.678-58.191Q3.480-58.310 3.250-58.310Q2.824-58.310 2.539-58.205Q2.609-58.178 2.656-58.123Q2.703-58.068 2.728-57.998Q2.754-57.928 2.754-57.853Q2.754-57.748 2.703-57.656Q2.652-57.564 2.560-57.514Q2.469-57.463 2.363-57.463Q2.258-57.463 2.166-57.514Q2.074-57.564 2.023-57.656Q1.973-57.748 1.973-57.853Q1.973-58.271 2.361-58.418Q2.750-58.564 3.250-58.564Q3.582-58.564 3.935-58.434Q4.289-58.303 4.517-58.049Q4.746-57.795 4.746-57.447L4.746-55.646Q4.746-55.514 4.818-55.404Q4.891-55.295 5.019-55.295Q5.144-55.295 5.213-55.400Q5.281-55.506 5.281-55.646L5.281-56.158L5.562-56.158L5.562-55.646Q5.562-55.443 5.445-55.285Q5.328-55.127 5.146-55.043Q4.965-54.959 4.762-54.959Q4.531-54.959 4.379-55.131Q4.226-55.303 4.195-55.533Q4.035-55.252 3.726-55.086Q3.418-54.920 3.066-54.920Q2.555-54.920 2.131-55.143Q1.707-55.365 1.707-55.830M2.394-55.830Q2.394-55.545 2.621-55.359Q2.848-55.174 3.141-55.174Q3.387-55.174 3.611-55.291Q3.836-55.408 3.971-55.611Q4.105-55.814 4.105-56.068L4.105-56.900Q3.840-56.900 3.555-56.846Q3.269-56.791 2.998-56.662Q2.726-56.533 2.560-56.326Q2.394-56.119 2.394-55.830M7.785-54.998L5.930-54.998L5.930-55.295Q6.203-55.295 6.371-55.342Q6.539-55.389 6.539-55.557L6.539-57.693Q6.539-57.908 6.476-58.004Q6.414-58.100 6.295-58.121Q6.176-58.143 5.930-58.143L5.930-58.439L7.121-58.525L7.121-57.791Q7.234-58.006 7.428-58.174Q7.621-58.342 7.859-58.434Q8.098-58.525 8.351-58.525Q9.519-58.525 9.519-57.447L9.519-55.557Q9.519-55.389 9.689-55.342Q9.859-55.295 10.129-55.295L10.129-54.998L8.273-54.998L8.273-55.295Q8.547-55.295 8.715-55.342Q8.883-55.389 8.883-55.557L8.883-57.432Q8.883-57.814 8.762-58.043Q8.641-58.271 8.289-58.271Q7.976-58.271 7.723-58.109Q7.469-57.947 7.322-57.678Q7.176-57.408 7.176-57.111L7.176-55.557Q7.176-55.389 7.346-55.342Q7.516-55.295 7.785-55.295\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.134 10.5)\">\u003Cpath d=\"M13.513-55.830Q13.513-56.314 13.915-56.609Q14.318-56.904 14.868-57.023Q15.419-57.143 15.911-57.143L15.911-57.432Q15.911-57.658 15.796-57.865Q15.681-58.072 15.484-58.191Q15.286-58.310 15.056-58.310Q14.630-58.310 14.345-58.205Q14.415-58.178 14.462-58.123Q14.509-58.068 14.534-57.998Q14.560-57.928 14.560-57.853Q14.560-57.748 14.509-57.656Q14.458-57.564 14.366-57.514Q14.275-57.463 14.169-57.463Q14.064-57.463 13.972-57.514Q13.880-57.564 13.829-57.656Q13.779-57.748 13.779-57.853Q13.779-58.271 14.167-58.418Q14.556-58.564 15.056-58.564Q15.388-58.564 15.741-58.434Q16.095-58.303 16.323-58.049Q16.552-57.795 16.552-57.447L16.552-55.646Q16.552-55.514 16.624-55.404Q16.697-55.295 16.825-55.295Q16.950-55.295 17.019-55.400Q17.087-55.506 17.087-55.646L17.087-56.158L17.368-56.158L17.368-55.646Q17.368-55.443 17.251-55.285Q17.134-55.127 16.952-55.043Q16.771-54.959 16.568-54.959Q16.337-54.959 16.185-55.131Q16.032-55.303 16.001-55.533Q15.841-55.252 15.532-55.086Q15.224-54.920 14.872-54.920Q14.361-54.920 13.937-55.143Q13.513-55.365 13.513-55.830M14.200-55.830Q14.200-55.545 14.427-55.359Q14.654-55.174 14.947-55.174Q15.193-55.174 15.417-55.291Q15.642-55.408 15.777-55.611Q15.911-55.814 15.911-56.068L15.911-56.900Q15.646-56.900 15.361-56.846Q15.075-56.791 14.804-56.662Q14.532-56.533 14.366-56.326Q14.200-56.119 14.200-55.830M19.478-54.920Q18.997-54.920 18.589-55.164Q18.181-55.408 17.943-55.822Q17.704-56.236 17.704-56.725Q17.704-57.217 17.962-57.633Q18.220-58.049 18.652-58.287Q19.083-58.525 19.575-58.525Q20.197-58.525 20.646-58.088L20.646-59.717Q20.646-59.932 20.583-60.027Q20.521-60.123 20.404-60.144Q20.286-60.166 20.040-60.166L20.040-60.463L21.263-60.549L21.263-55.740Q21.263-55.529 21.325-55.434Q21.388-55.338 21.505-55.316Q21.622-55.295 21.872-55.295L21.872-54.998L20.622-54.920L20.622-55.404Q20.157-54.920 19.478-54.920M19.544-55.174Q19.884-55.174 20.177-55.365Q20.470-55.557 20.622-55.853L20.622-57.685Q20.474-57.959 20.212-58.115Q19.950-58.271 19.638-58.271Q19.013-58.271 18.730-57.824Q18.447-57.377 18.447-56.717Q18.447-56.072 18.698-55.623Q18.950-55.174 19.544-55.174M24.197-54.920Q23.716-54.920 23.308-55.164Q22.900-55.408 22.661-55.822Q22.423-56.236 22.423-56.725Q22.423-57.217 22.681-57.633Q22.939-58.049 23.370-58.287Q23.802-58.525 24.294-58.525Q24.915-58.525 25.364-58.088L25.364-59.717Q25.364-59.932 25.302-60.027Q25.239-60.123 25.122-60.144Q25.005-60.166 24.759-60.166L24.759-60.463L25.982-60.549L25.982-55.740Q25.982-55.529 26.044-55.434Q26.107-55.338 26.224-55.316Q26.341-55.295 26.591-55.295L26.591-54.998L25.341-54.920L25.341-55.404Q24.876-54.920 24.197-54.920M24.263-55.174Q24.603-55.174 24.896-55.365Q25.189-55.557 25.341-55.853L25.341-57.685Q25.193-57.959 24.931-58.115Q24.669-58.271 24.357-58.271Q23.732-58.271 23.448-57.824Q23.165-57.377 23.165-56.717Q23.165-56.072 23.417-55.623Q23.669-55.174 24.263-55.174M29.107-54.998L27.126-54.998L27.126-55.295Q27.396-55.295 27.564-55.340Q27.732-55.385 27.732-55.557L27.732-57.693Q27.732-57.908 27.669-58.004Q27.607-58.100 27.489-58.121Q27.372-58.143 27.126-58.143L27.126-58.439L28.294-58.525L28.294-57.740Q28.372-57.951 28.525-58.137Q28.677-58.322 28.876-58.424Q29.075-58.525 29.302-58.525Q29.548-58.525 29.739-58.381Q29.931-58.236 29.931-58.006Q29.931-57.850 29.825-57.740Q29.720-57.631 29.564-57.631Q29.407-57.631 29.298-57.740Q29.189-57.850 29.189-58.006Q29.189-58.166 29.294-58.271Q28.970-58.271 28.755-58.043Q28.540-57.814 28.445-57.475Q28.349-57.135 28.349-56.830L28.349-55.557Q28.349-55.389 28.575-55.342Q28.802-55.295 29.107-55.295L29.107-54.998M30.411-56.752Q30.411-57.232 30.644-57.648Q30.876-58.064 31.286-58.314Q31.697-58.564 32.173-58.564Q32.904-58.564 33.302-58.123Q33.700-57.682 33.700-56.951Q33.700-56.846 33.607-56.822L31.157-56.822L31.157-56.752Q31.157-56.342 31.279-55.986Q31.400-55.631 31.671-55.414Q31.943-55.197 32.372-55.197Q32.736-55.197 33.032-55.426Q33.329-55.654 33.431-56.006Q33.439-56.053 33.525-56.068L33.607-56.068Q33.700-56.041 33.700-55.959Q33.700-55.951 33.693-55.920Q33.630-55.693 33.491-55.510Q33.353-55.326 33.161-55.193Q32.970-55.060 32.751-54.990Q32.532-54.920 32.294-54.920Q31.923-54.920 31.585-55.057Q31.247-55.193 30.980-55.445Q30.712-55.697 30.562-56.037Q30.411-56.377 30.411-56.752M31.165-57.060L33.126-57.060Q33.126-57.365 33.025-57.656Q32.923-57.947 32.706-58.129Q32.489-58.310 32.173-58.310Q31.872-58.310 31.642-58.123Q31.411-57.935 31.288-57.644Q31.165-57.353 31.165-57.060M34.232-55.006L34.232-56.228Q34.232-56.256 34.263-56.287Q34.294-56.318 34.318-56.318L34.423-56.318Q34.493-56.318 34.509-56.256Q34.572-55.935 34.710-55.695Q34.849-55.455 35.081-55.314Q35.314-55.174 35.622-55.174Q35.861-55.174 36.070-55.234Q36.279-55.295 36.415-55.443Q36.552-55.592 36.552-55.838Q36.552-56.092 36.341-56.258Q36.130-56.424 35.861-56.478L35.239-56.592Q34.833-56.670 34.532-56.926Q34.232-57.182 34.232-57.557Q34.232-57.924 34.433-58.146Q34.634-58.369 34.958-58.467Q35.282-58.564 35.622-58.564Q36.087-58.564 36.384-58.357L36.607-58.541Q36.630-58.564 36.661-58.564L36.712-58.564Q36.743-58.564 36.771-58.537Q36.798-58.510 36.798-58.478L36.798-57.494Q36.798-57.463 36.773-57.434Q36.747-57.404 36.712-57.404L36.607-57.404Q36.572-57.404 36.544-57.432Q36.517-57.459 36.517-57.494Q36.517-57.893 36.265-58.113Q36.013-58.334 35.614-58.334Q35.259-58.334 34.976-58.211Q34.693-58.088 34.693-57.783Q34.693-57.564 34.894-57.432Q35.095-57.299 35.341-57.256L35.966-57.143Q36.396-57.053 36.704-56.756Q37.013-56.459 37.013-56.045Q37.013-55.475 36.614-55.197Q36.216-54.920 35.622-54.920Q35.072-54.920 34.720-55.256L34.423-54.943Q34.400-54.920 34.364-54.920L34.318-54.920Q34.294-54.920 34.263-54.951Q34.232-54.982 34.232-55.006M37.583-55.006L37.583-56.228Q37.583-56.256 37.614-56.287Q37.646-56.318 37.669-56.318L37.775-56.318Q37.845-56.318 37.861-56.256Q37.923-55.935 38.062-55.695Q38.200-55.455 38.433-55.314Q38.665-55.174 38.974-55.174Q39.212-55.174 39.421-55.234Q39.630-55.295 39.767-55.443Q39.904-55.592 39.904-55.838Q39.904-56.092 39.693-56.258Q39.482-56.424 39.212-56.478L38.591-56.592Q38.185-56.670 37.884-56.926Q37.583-57.182 37.583-57.557Q37.583-57.924 37.784-58.146Q37.986-58.369 38.310-58.467Q38.634-58.564 38.974-58.564Q39.439-58.564 39.736-58.357L39.958-58.541Q39.982-58.564 40.013-58.564L40.064-58.564Q40.095-58.564 40.122-58.537Q40.150-58.510 40.150-58.478L40.150-57.494Q40.150-57.463 40.124-57.434Q40.099-57.404 40.064-57.404L39.958-57.404Q39.923-57.404 39.896-57.432Q39.868-57.459 39.868-57.494Q39.868-57.893 39.616-58.113Q39.364-58.334 38.966-58.334Q38.611-58.334 38.327-58.211Q38.044-58.088 38.044-57.783Q38.044-57.564 38.245-57.432Q38.447-57.299 38.693-57.256L39.318-57.143Q39.747-57.053 40.056-56.756Q40.364-56.459 40.364-56.045Q40.364-55.475 39.966-55.197Q39.568-54.920 38.974-54.920Q38.423-54.920 38.072-55.256L37.775-54.943Q37.751-54.920 37.716-54.920L37.669-54.920Q37.646-54.920 37.614-54.951Q37.583-54.982 37.583-55.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-19.685 35.893)\">\u003Cpath d=\"M-30.946-55.005L-30.946-56.068Q-30.946-56.092-30.918-56.119Q-30.891-56.146-30.867-56.146L-30.758-56.146Q-30.693-56.146-30.679-56.088Q-30.583-55.654-30.337-55.403Q-30.091-55.152-29.677-55.152Q-29.336-55.152-29.083-55.285Q-28.830-55.418-28.830-55.726Q-28.830-55.883-28.924-55.998Q-29.018-56.112-29.156-56.181Q-29.295-56.249-29.462-56.287L-30.043-56.386Q-30.399-56.454-30.672-56.675Q-30.946-56.895-30.946-57.237Q-30.946-57.486-30.834-57.661Q-30.723-57.835-30.537-57.934Q-30.351-58.033-30.135-58.076Q-29.920-58.119-29.677-58.119Q-29.264-58.119-28.984-57.937L-28.768-58.112Q-28.758-58.115-28.751-58.117Q-28.744-58.119-28.734-58.119L-28.683-58.119Q-28.656-58.119-28.632-58.095Q-28.608-58.071-28.608-58.043L-28.608-57.196Q-28.608-57.175-28.632-57.148Q-28.656-57.121-28.683-57.121L-28.796-57.121Q-28.823-57.121-28.849-57.146Q-28.874-57.172-28.874-57.196Q-28.874-57.432-28.980-57.596Q-29.086-57.760-29.269-57.842Q-29.452-57.924-29.684-57.924Q-30.012-57.924-30.269-57.821Q-30.525-57.719-30.525-57.442Q-30.525-57.247-30.342-57.138Q-30.159-57.028-29.930-56.987L-29.356-56.881Q-29.110-56.833-28.896-56.705Q-28.683-56.577-28.546-56.374Q-28.409-56.170-28.409-55.921Q-28.409-55.408-28.775-55.169Q-29.141-54.930-29.677-54.930Q-30.173-54.930-30.505-55.224L-30.771-54.950Q-30.792-54.930-30.819-54.930L-30.867-54.930Q-30.891-54.930-30.918-54.957Q-30.946-54.984-30.946-55.005M-27.822-56.481Q-27.822-56.823-27.687-57.122Q-27.552-57.421-27.312-57.645Q-27.073-57.869-26.755-57.994Q-26.437-58.119-26.106-58.119Q-25.661-58.119-25.261-57.903Q-24.862-57.688-24.627-57.310Q-24.393-56.933-24.393-56.481Q-24.393-56.140-24.535-55.856Q-24.677-55.572-24.921-55.365Q-25.166-55.159-25.475-55.044Q-25.784-54.930-26.106-54.930Q-26.536-54.930-26.938-55.131Q-27.340-55.333-27.581-55.685Q-27.822-56.037-27.822-56.481M-26.106-55.179Q-25.504-55.179-25.280-55.557Q-25.056-55.935-25.056-56.567Q-25.056-57.179-25.291-57.538Q-25.525-57.896-26.106-57.896Q-27.158-57.896-27.158-56.567Q-27.158-55.935-26.933-55.557Q-26.707-55.179-26.106-55.179M-23.224-55.832L-23.224-57.336Q-23.224-57.606-23.332-57.667Q-23.440-57.729-23.751-57.729L-23.751-58.009L-22.643-58.084L-22.643-55.852L-22.643-55.832Q-22.643-55.552-22.592-55.408Q-22.541-55.265-22.399-55.208Q-22.257-55.152-21.970-55.152Q-21.717-55.152-21.512-55.292Q-21.307-55.432-21.191-55.658Q-21.074-55.883-21.074-56.133L-21.074-57.336Q-21.074-57.606-21.182-57.667Q-21.290-57.729-21.601-57.729L-21.601-58.009L-20.493-58.084L-20.493-55.671Q-20.493-55.480-20.440-55.398Q-20.387-55.316-20.287-55.297Q-20.186-55.278-19.970-55.278L-19.970-54.998L-21.047-54.930L-21.047-55.494Q-21.156-55.312-21.302-55.189Q-21.447-55.066-21.633-54.998Q-21.820-54.930-22.021-54.930Q-23.224-54.930-23.224-55.832M-17.633-54.998L-19.369-54.998L-19.369-55.278Q-19.140-55.278-18.991-55.312Q-18.843-55.347-18.843-55.487L-18.843-57.336Q-18.843-57.606-18.950-57.667Q-19.058-57.729-19.369-57.729L-19.369-58.009L-18.340-58.084L-18.340-57.377Q-18.210-57.685-17.968-57.884Q-17.725-58.084-17.407-58.084Q-17.188-58.084-17.017-57.960Q-16.846-57.835-16.846-57.623Q-16.846-57.486-16.946-57.387Q-17.045-57.288-17.178-57.288Q-17.315-57.288-17.414-57.387Q-17.513-57.486-17.513-57.623Q-17.513-57.763-17.414-57.862Q-17.704-57.862-17.904-57.666Q-18.104-57.469-18.197-57.175Q-18.289-56.881-18.289-56.601L-18.289-55.487Q-18.289-55.278-17.633-55.278L-17.633-54.998M-16.262-56.509Q-16.262-56.837-16.127-57.138Q-15.992-57.438-15.756-57.659Q-15.520-57.879-15.216-57.999Q-14.912-58.119-14.587-58.119Q-14.081-58.119-13.733-58.016Q-13.384-57.914-13.384-57.538Q-13.384-57.391-13.481-57.290Q-13.579-57.189-13.726-57.189Q-13.880-57.189-13.979-57.288Q-14.078-57.387-14.078-57.538Q-14.078-57.726-13.938-57.818Q-14.139-57.869-14.580-57.869Q-14.936-57.869-15.165-57.673Q-15.394-57.476-15.495-57.167Q-15.595-56.857-15.595-56.509Q-15.595-56.160-15.469-55.854Q-15.343-55.548-15.088-55.364Q-14.833-55.179-14.478-55.179Q-14.256-55.179-14.071-55.263Q-13.886-55.347-13.751-55.502Q-13.616-55.658-13.558-55.866Q-13.545-55.921-13.490-55.921L-13.377-55.921Q-13.346-55.921-13.324-55.897Q-13.302-55.873-13.302-55.839L-13.302-55.818Q-13.387-55.531-13.575-55.333Q-13.763-55.135-14.028-55.032Q-14.293-54.930-14.587-54.930Q-15.018-54.930-15.406-55.136Q-15.794-55.343-16.028-55.706Q-16.262-56.068-16.262-56.509M-12.755-56.533Q-12.755-56.854-12.630-57.143Q-12.506-57.432-12.280-57.655Q-12.054-57.879-11.759-57.999Q-11.463-58.119-11.145-58.119Q-10.817-58.119-10.556-58.019Q-10.294-57.920-10.118-57.738Q-9.942-57.555-9.848-57.297Q-9.754-57.039-9.754-56.707Q-9.754-56.615-9.836-56.594L-12.092-56.594L-12.092-56.533Q-12.092-55.945-11.808-55.562Q-11.525-55.179-10.957-55.179Q-10.636-55.179-10.368-55.372Q-10.099-55.565-10.010-55.880Q-10.004-55.921-9.928-55.935L-9.836-55.935Q-9.754-55.911-9.754-55.839Q-9.754-55.832-9.761-55.805Q-9.874-55.408-10.245-55.169Q-10.615-54.930-11.039-54.930Q-11.477-54.930-11.877-55.138Q-12.277-55.347-12.516-55.714Q-12.755-56.081-12.755-56.533M-12.085-56.803L-10.270-56.803Q-10.270-57.080-10.368-57.332Q-10.465-57.585-10.663-57.741Q-10.862-57.896-11.145-57.896Q-11.422-57.896-11.636-57.738Q-11.849-57.579-11.967-57.324Q-12.085-57.069-12.085-56.803\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-19.685 35.893)\">\u003Cpath d=\"M-6.486-56.481Q-6.486-56.823-6.351-57.122Q-6.216-57.421-5.976-57.645Q-5.737-57.869-5.419-57.994Q-5.101-58.119-4.770-58.119Q-4.325-58.119-3.926-57.903Q-3.526-57.688-3.291-57.310Q-3.057-56.933-3.057-56.481Q-3.057-56.140-3.199-55.856Q-3.341-55.572-3.585-55.365Q-3.830-55.159-4.139-55.044Q-4.448-54.930-4.770-54.930Q-5.200-54.930-5.602-55.131Q-6.004-55.333-6.245-55.685Q-6.486-56.037-6.486-56.481M-4.770-55.179Q-4.168-55.179-3.944-55.557Q-3.720-55.935-3.720-56.567Q-3.720-57.179-3.955-57.538Q-4.189-57.896-4.770-57.896Q-5.822-57.896-5.822-56.567Q-5.822-55.935-5.597-55.557Q-5.371-55.179-4.770-55.179M-0.781-54.998L-2.415-54.998L-2.415-55.278Q-2.186-55.278-2.037-55.312Q-1.888-55.347-1.888-55.487L-1.888-57.336Q-1.888-57.606-1.996-57.667Q-2.104-57.729-2.415-57.729L-2.415-58.009L-1.355-58.084L-1.355-57.435Q-1.184-57.743-0.880-57.914Q-0.576-58.084-0.231-58.084Q0.275-58.084 0.559-57.861Q0.843-57.637 0.843-57.141L0.843-55.487Q0.843-55.350 0.991-55.314Q1.140-55.278 1.366-55.278L1.366-54.998L-0.265-54.998L-0.265-55.278Q-0.036-55.278 0.113-55.312Q0.262-55.347 0.262-55.487L0.262-57.127Q0.262-57.462 0.142-57.662Q0.022-57.862-0.292-57.862Q-0.562-57.862-0.796-57.726Q-1.030-57.589-1.169-57.355Q-1.307-57.121-1.307-56.847L-1.307-55.487Q-1.307-55.350-1.157-55.314Q-1.007-55.278-0.781-55.278L-0.781-54.998M3.621-54.998L2.018-54.998L2.018-55.278Q2.244-55.278 2.393-55.312Q2.541-55.347 2.541-55.487L2.541-59.106Q2.541-59.376 2.434-59.438Q2.326-59.499 2.018-59.499L2.018-59.780L3.095-59.855L3.095-55.487Q3.095-55.350 3.245-55.314Q3.396-55.278 3.621-55.278L3.621-54.998M4.551-53.863Q4.681-53.795 4.818-53.795Q4.989-53.795 5.139-53.884Q5.289-53.973 5.400-54.118Q5.512-54.263 5.590-54.431L5.853-54.998L4.684-57.524Q4.609-57.671 4.479-57.703Q4.349-57.736 4.117-57.736L4.117-58.016L5.638-58.016L5.638-57.736Q5.289-57.736 5.289-57.589Q5.293-57.568 5.294-57.551Q5.296-57.534 5.296-57.524L6.154-55.665L6.927-57.336Q6.961-57.404 6.961-57.483Q6.961-57.596 6.877-57.666Q6.793-57.736 6.680-57.736L6.680-58.016L7.877-58.016L7.877-57.736Q7.658-57.736 7.485-57.632Q7.313-57.527 7.220-57.336L5.884-54.431Q5.713-54.061 5.443-53.815Q5.173-53.569 4.818-53.569Q4.548-53.569 4.329-53.735Q4.110-53.901 4.110-54.164Q4.110-54.301 4.202-54.390Q4.295-54.478 4.435-54.478Q4.572-54.478 4.660-54.390Q4.749-54.301 4.749-54.164Q4.749-54.061 4.696-53.983Q4.643-53.904 4.551-53.863\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(66.762 36.574)\">\u003Cpath d=\"M-30.946-55.005L-30.946-56.068Q-30.946-56.092-30.918-56.119Q-30.891-56.146-30.867-56.146L-30.758-56.146Q-30.693-56.146-30.679-56.088Q-30.583-55.654-30.337-55.403Q-30.091-55.152-29.677-55.152Q-29.336-55.152-29.083-55.285Q-28.830-55.418-28.830-55.726Q-28.830-55.883-28.924-55.998Q-29.018-56.112-29.156-56.181Q-29.295-56.249-29.462-56.287L-30.043-56.386Q-30.399-56.454-30.672-56.675Q-30.946-56.895-30.946-57.237Q-30.946-57.486-30.834-57.661Q-30.723-57.835-30.537-57.934Q-30.351-58.033-30.135-58.076Q-29.920-58.119-29.677-58.119Q-29.264-58.119-28.984-57.937L-28.768-58.112Q-28.758-58.115-28.751-58.117Q-28.744-58.119-28.734-58.119L-28.683-58.119Q-28.656-58.119-28.632-58.095Q-28.608-58.071-28.608-58.043L-28.608-57.196Q-28.608-57.175-28.632-57.148Q-28.656-57.121-28.683-57.121L-28.796-57.121Q-28.823-57.121-28.849-57.146Q-28.874-57.172-28.874-57.196Q-28.874-57.432-28.980-57.596Q-29.086-57.760-29.269-57.842Q-29.452-57.924-29.684-57.924Q-30.012-57.924-30.269-57.821Q-30.525-57.719-30.525-57.442Q-30.525-57.247-30.342-57.138Q-30.159-57.028-29.930-56.987L-29.356-56.881Q-29.110-56.833-28.896-56.705Q-28.683-56.577-28.546-56.374Q-28.409-56.170-28.409-55.921Q-28.409-55.408-28.775-55.169Q-29.141-54.930-29.677-54.930Q-30.173-54.930-30.505-55.224L-30.771-54.950Q-30.792-54.930-30.819-54.930L-30.867-54.930Q-30.891-54.930-30.918-54.957Q-30.946-54.984-30.946-55.005M-27.822-56.481Q-27.822-56.823-27.687-57.122Q-27.552-57.421-27.312-57.645Q-27.073-57.869-26.755-57.994Q-26.437-58.119-26.106-58.119Q-25.661-58.119-25.261-57.903Q-24.862-57.688-24.627-57.310Q-24.393-56.933-24.393-56.481Q-24.393-56.140-24.535-55.856Q-24.677-55.572-24.921-55.365Q-25.166-55.159-25.475-55.044Q-25.784-54.930-26.106-54.930Q-26.536-54.930-26.938-55.131Q-27.340-55.333-27.581-55.685Q-27.822-56.037-27.822-56.481M-26.106-55.179Q-25.504-55.179-25.280-55.557Q-25.056-55.935-25.056-56.567Q-25.056-57.179-25.291-57.538Q-25.525-57.896-26.106-57.896Q-27.158-57.896-27.158-56.567Q-27.158-55.935-26.933-55.557Q-26.707-55.179-26.106-55.179M-23.224-55.832L-23.224-57.336Q-23.224-57.606-23.332-57.667Q-23.440-57.729-23.751-57.729L-23.751-58.009L-22.643-58.084L-22.643-55.852L-22.643-55.832Q-22.643-55.552-22.592-55.408Q-22.541-55.265-22.399-55.208Q-22.257-55.152-21.970-55.152Q-21.717-55.152-21.512-55.292Q-21.307-55.432-21.191-55.658Q-21.074-55.883-21.074-56.133L-21.074-57.336Q-21.074-57.606-21.182-57.667Q-21.290-57.729-21.601-57.729L-21.601-58.009L-20.493-58.084L-20.493-55.671Q-20.493-55.480-20.440-55.398Q-20.387-55.316-20.287-55.297Q-20.186-55.278-19.970-55.278L-19.970-54.998L-21.047-54.930L-21.047-55.494Q-21.156-55.312-21.302-55.189Q-21.447-55.066-21.633-54.998Q-21.820-54.930-22.021-54.930Q-23.224-54.930-23.224-55.832M-17.633-54.998L-19.369-54.998L-19.369-55.278Q-19.140-55.278-18.991-55.312Q-18.843-55.347-18.843-55.487L-18.843-57.336Q-18.843-57.606-18.950-57.667Q-19.058-57.729-19.369-57.729L-19.369-58.009L-18.340-58.084L-18.340-57.377Q-18.210-57.685-17.968-57.884Q-17.725-58.084-17.407-58.084Q-17.188-58.084-17.017-57.960Q-16.846-57.835-16.846-57.623Q-16.846-57.486-16.946-57.387Q-17.045-57.288-17.178-57.288Q-17.315-57.288-17.414-57.387Q-17.513-57.486-17.513-57.623Q-17.513-57.763-17.414-57.862Q-17.704-57.862-17.904-57.666Q-18.104-57.469-18.197-57.175Q-18.289-56.881-18.289-56.601L-18.289-55.487Q-18.289-55.278-17.633-55.278L-17.633-54.998M-16.262-56.509Q-16.262-56.837-16.127-57.138Q-15.992-57.438-15.756-57.659Q-15.520-57.879-15.216-57.999Q-14.912-58.119-14.587-58.119Q-14.081-58.119-13.733-58.016Q-13.384-57.914-13.384-57.538Q-13.384-57.391-13.481-57.290Q-13.579-57.189-13.726-57.189Q-13.880-57.189-13.979-57.288Q-14.078-57.387-14.078-57.538Q-14.078-57.726-13.938-57.818Q-14.139-57.869-14.580-57.869Q-14.936-57.869-15.165-57.673Q-15.394-57.476-15.495-57.167Q-15.595-56.857-15.595-56.509Q-15.595-56.160-15.469-55.854Q-15.343-55.548-15.088-55.364Q-14.833-55.179-14.478-55.179Q-14.256-55.179-14.071-55.263Q-13.886-55.347-13.751-55.502Q-13.616-55.658-13.558-55.866Q-13.545-55.921-13.490-55.921L-13.377-55.921Q-13.346-55.921-13.324-55.897Q-13.302-55.873-13.302-55.839L-13.302-55.818Q-13.387-55.531-13.575-55.333Q-13.763-55.135-14.028-55.032Q-14.293-54.930-14.587-54.930Q-15.018-54.930-15.406-55.136Q-15.794-55.343-16.028-55.706Q-16.262-56.068-16.262-56.509M-12.755-56.533Q-12.755-56.854-12.630-57.143Q-12.506-57.432-12.280-57.655Q-12.054-57.879-11.759-57.999Q-11.463-58.119-11.145-58.119Q-10.817-58.119-10.556-58.019Q-10.294-57.920-10.118-57.738Q-9.942-57.555-9.848-57.297Q-9.754-57.039-9.754-56.707Q-9.754-56.615-9.836-56.594L-12.092-56.594L-12.092-56.533Q-12.092-55.945-11.808-55.562Q-11.525-55.179-10.957-55.179Q-10.636-55.179-10.368-55.372Q-10.099-55.565-10.010-55.880Q-10.004-55.921-9.928-55.935L-9.836-55.935Q-9.754-55.911-9.754-55.839Q-9.754-55.832-9.761-55.805Q-9.874-55.408-10.245-55.169Q-10.615-54.930-11.039-54.930Q-11.477-54.930-11.877-55.138Q-12.277-55.347-12.516-55.714Q-12.755-56.081-12.755-56.533M-12.085-56.803L-10.270-56.803Q-10.270-57.080-10.368-57.332Q-10.465-57.585-10.663-57.741Q-10.862-57.896-11.145-57.896Q-11.422-57.896-11.636-57.738Q-11.849-57.579-11.967-57.324Q-12.085-57.069-12.085-56.803\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.762 36.574)\">\u003Cpath d=\"M-6.486-56.481Q-6.486-56.823-6.351-57.122Q-6.216-57.421-5.976-57.645Q-5.737-57.869-5.419-57.994Q-5.101-58.119-4.770-58.119Q-4.325-58.119-3.926-57.903Q-3.526-57.688-3.291-57.310Q-3.057-56.933-3.057-56.481Q-3.057-56.140-3.199-55.856Q-3.341-55.572-3.585-55.365Q-3.830-55.159-4.139-55.044Q-4.448-54.930-4.770-54.930Q-5.200-54.930-5.602-55.131Q-6.004-55.333-6.245-55.685Q-6.486-56.037-6.486-56.481M-4.770-55.179Q-4.168-55.179-3.944-55.557Q-3.720-55.935-3.720-56.567Q-3.720-57.179-3.955-57.538Q-4.189-57.896-4.770-57.896Q-5.822-57.896-5.822-56.567Q-5.822-55.935-5.597-55.557Q-5.371-55.179-4.770-55.179M-0.713-54.998L-2.449-54.998L-2.449-55.278Q-2.220-55.278-2.071-55.312Q-1.923-55.347-1.923-55.487L-1.923-57.336Q-1.923-57.606-2.030-57.667Q-2.138-57.729-2.449-57.729L-2.449-58.009L-1.420-58.084L-1.420-57.377Q-1.290-57.685-1.048-57.884Q-0.805-58.084-0.487-58.084Q-0.268-58.084-0.097-57.960Q0.074-57.835 0.074-57.623Q0.074-57.486-0.026-57.387Q-0.125-57.288-0.258-57.288Q-0.395-57.288-0.494-57.387Q-0.593-57.486-0.593-57.623Q-0.593-57.763-0.494-57.862Q-0.784-57.862-0.984-57.666Q-1.184-57.469-1.277-57.175Q-1.369-56.881-1.369-56.601L-1.369-55.487Q-1.369-55.278-0.713-55.278\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.762 36.574)\">\u003Cpath d=\"M3.361-56.509Q3.361-56.847 3.502-57.138Q3.642-57.428 3.886-57.642Q4.130-57.855 4.435-57.970Q4.739-58.084 5.064-58.084Q5.334-58.084 5.597-57.985Q5.860-57.886 6.051-57.708L6.051-59.106Q6.051-59.376 5.944-59.438Q5.836-59.499 5.525-59.499L5.525-59.780L6.602-59.855L6.602-55.671Q6.602-55.483 6.656-55.400Q6.711-55.316 6.812-55.297Q6.913-55.278 7.128-55.278L7.128-54.998L6.021-54.930L6.021-55.347Q5.604-54.930 4.978-54.930Q4.547-54.930 4.175-55.142Q3.802-55.353 3.582-55.714Q3.361-56.075 3.361-56.509M5.036-55.152Q5.245-55.152 5.431-55.224Q5.617-55.295 5.771-55.432Q5.925-55.569 6.021-55.747L6.021-57.356Q5.935-57.503 5.790-57.623Q5.645-57.743 5.475-57.802Q5.306-57.862 5.125-57.862Q4.565-57.862 4.296-57.473Q4.028-57.083 4.028-56.502Q4.028-55.931 4.262-55.541Q4.496-55.152 5.036-55.152M7.736-56.533Q7.736-56.854 7.861-57.143Q7.986-57.432 8.212-57.655Q8.437-57.879 8.733-57.999Q9.028-58.119 9.346-58.119Q9.674-58.119 9.936-58.019Q10.197-57.920 10.373-57.738Q10.549-57.555 10.643-57.297Q10.737-57.039 10.737-56.707Q10.737-56.615 10.655-56.594L8.400-56.594L8.400-56.533Q8.400-55.945 8.683-55.562Q8.967-55.179 9.534-55.179Q9.856-55.179 10.124-55.372Q10.392-55.565 10.481-55.880Q10.488-55.921 10.563-55.935L10.655-55.935Q10.737-55.911 10.737-55.839Q10.737-55.832 10.731-55.805Q10.618-55.408 10.247-55.169Q9.876-54.930 9.452-54.930Q9.015-54.930 8.615-55.138Q8.215-55.347 7.976-55.714Q7.736-56.081 7.736-56.533M8.406-56.803L10.221-56.803Q10.221-57.080 10.124-57.332Q10.026-57.585 9.828-57.741Q9.630-57.896 9.346-57.896Q9.069-57.896 8.856-57.738Q8.642-57.579 8.524-57.324Q8.406-57.069 8.406-56.803M11.325-55.005L11.325-56.068Q11.325-56.092 11.353-56.119Q11.380-56.146 11.404-56.146L11.513-56.146Q11.578-56.146 11.592-56.088Q11.688-55.654 11.934-55.403Q12.180-55.152 12.593-55.152Q12.935-55.152 13.188-55.285Q13.441-55.418 13.441-55.726Q13.441-55.883 13.347-55.998Q13.253-56.112 13.115-56.181Q12.976-56.249 12.809-56.287L12.228-56.386Q11.872-56.454 11.599-56.675Q11.325-56.895 11.325-57.237Q11.325-57.486 11.436-57.661Q11.547-57.835 11.734-57.934Q11.920-58.033 12.135-58.076Q12.351-58.119 12.593-58.119Q13.007-58.119 13.287-57.937L13.503-58.112Q13.513-58.115 13.520-58.117Q13.526-58.119 13.537-58.119L13.588-58.119Q13.615-58.119 13.639-58.095Q13.663-58.071 13.663-58.043L13.663-57.196Q13.663-57.175 13.639-57.148Q13.615-57.121 13.588-57.121L13.475-57.121Q13.448-57.121 13.422-57.146Q13.397-57.172 13.397-57.196Q13.397-57.432 13.291-57.596Q13.185-57.760 13.002-57.842Q12.819-57.924 12.587-57.924Q12.258-57.924 12.002-57.821Q11.746-57.719 11.746-57.442Q11.746-57.247 11.929-57.138Q12.111-57.028 12.340-56.987L12.915-56.881Q13.161-56.833 13.374-56.705Q13.588-56.577 13.725-56.374Q13.861-56.170 13.861-55.921Q13.861-55.408 13.496-55.169Q13.130-54.930 12.593-54.930Q12.098-54.930 11.766-55.224L11.500-54.950Q11.479-54.930 11.452-54.930L11.404-54.930Q11.380-54.930 11.353-54.957Q11.325-54.984 11.325-55.005M15.017-55.839L15.017-57.736L14.378-57.736L14.378-57.958Q14.695-57.958 14.912-58.168Q15.130-58.378 15.230-58.688Q15.331-58.997 15.331-59.305L15.598-59.305L15.598-58.016L16.674-58.016L16.674-57.736L15.598-57.736L15.598-55.852Q15.598-55.576 15.702-55.377Q15.806-55.179 16.066-55.179Q16.223-55.179 16.329-55.283Q16.435-55.388 16.485-55.541Q16.534-55.695 16.534-55.852L16.534-56.266L16.801-56.266L16.801-55.839Q16.801-55.613 16.702-55.403Q16.603-55.193 16.418-55.061Q16.234-54.930 16.005-54.930Q15.567-54.930 15.292-55.167Q15.017-55.405 15.017-55.839\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(157.811 36.574)\">\u003Cpath d=\"M-30.946-55.005L-30.946-56.068Q-30.946-56.092-30.918-56.119Q-30.891-56.146-30.867-56.146L-30.758-56.146Q-30.693-56.146-30.679-56.088Q-30.583-55.654-30.337-55.403Q-30.091-55.152-29.677-55.152Q-29.336-55.152-29.083-55.285Q-28.830-55.418-28.830-55.726Q-28.830-55.883-28.924-55.998Q-29.018-56.112-29.156-56.181Q-29.295-56.249-29.462-56.287L-30.043-56.386Q-30.399-56.454-30.672-56.675Q-30.946-56.895-30.946-57.237Q-30.946-57.486-30.834-57.661Q-30.723-57.835-30.537-57.934Q-30.351-58.033-30.135-58.076Q-29.920-58.119-29.677-58.119Q-29.264-58.119-28.984-57.937L-28.768-58.112Q-28.758-58.115-28.751-58.117Q-28.744-58.119-28.734-58.119L-28.683-58.119Q-28.656-58.119-28.632-58.095Q-28.608-58.071-28.608-58.043L-28.608-57.196Q-28.608-57.175-28.632-57.148Q-28.656-57.121-28.683-57.121L-28.796-57.121Q-28.823-57.121-28.849-57.146Q-28.874-57.172-28.874-57.196Q-28.874-57.432-28.980-57.596Q-29.086-57.760-29.269-57.842Q-29.452-57.924-29.684-57.924Q-30.012-57.924-30.269-57.821Q-30.525-57.719-30.525-57.442Q-30.525-57.247-30.342-57.138Q-30.159-57.028-29.930-56.987L-29.356-56.881Q-29.110-56.833-28.896-56.705Q-28.683-56.577-28.546-56.374Q-28.409-56.170-28.409-55.921Q-28.409-55.408-28.775-55.169Q-29.141-54.930-29.677-54.930Q-30.173-54.930-30.505-55.224L-30.771-54.950Q-30.792-54.930-30.819-54.930L-30.867-54.930Q-30.891-54.930-30.918-54.957Q-30.946-54.984-30.946-55.005M-27.822-56.481Q-27.822-56.823-27.687-57.122Q-27.552-57.421-27.312-57.645Q-27.073-57.869-26.755-57.994Q-26.437-58.119-26.106-58.119Q-25.661-58.119-25.261-57.903Q-24.862-57.688-24.627-57.310Q-24.393-56.933-24.393-56.481Q-24.393-56.140-24.535-55.856Q-24.677-55.572-24.921-55.365Q-25.166-55.159-25.475-55.044Q-25.784-54.930-26.106-54.930Q-26.536-54.930-26.938-55.131Q-27.340-55.333-27.581-55.685Q-27.822-56.037-27.822-56.481M-26.106-55.179Q-25.504-55.179-25.280-55.557Q-25.056-55.935-25.056-56.567Q-25.056-57.179-25.291-57.538Q-25.525-57.896-26.106-57.896Q-27.158-57.896-27.158-56.567Q-27.158-55.935-26.933-55.557Q-26.707-55.179-26.106-55.179M-23.224-55.832L-23.224-57.336Q-23.224-57.606-23.332-57.667Q-23.440-57.729-23.751-57.729L-23.751-58.009L-22.643-58.084L-22.643-55.852L-22.643-55.832Q-22.643-55.552-22.592-55.408Q-22.541-55.265-22.399-55.208Q-22.257-55.152-21.970-55.152Q-21.717-55.152-21.512-55.292Q-21.307-55.432-21.191-55.658Q-21.074-55.883-21.074-56.133L-21.074-57.336Q-21.074-57.606-21.182-57.667Q-21.290-57.729-21.601-57.729L-21.601-58.009L-20.493-58.084L-20.493-55.671Q-20.493-55.480-20.440-55.398Q-20.387-55.316-20.287-55.297Q-20.186-55.278-19.970-55.278L-19.970-54.998L-21.047-54.930L-21.047-55.494Q-21.156-55.312-21.302-55.189Q-21.447-55.066-21.633-54.998Q-21.820-54.930-22.021-54.930Q-23.224-54.930-23.224-55.832M-17.633-54.998L-19.369-54.998L-19.369-55.278Q-19.140-55.278-18.991-55.312Q-18.843-55.347-18.843-55.487L-18.843-57.336Q-18.843-57.606-18.950-57.667Q-19.058-57.729-19.369-57.729L-19.369-58.009L-18.340-58.084L-18.340-57.377Q-18.210-57.685-17.968-57.884Q-17.725-58.084-17.407-58.084Q-17.188-58.084-17.017-57.960Q-16.846-57.835-16.846-57.623Q-16.846-57.486-16.946-57.387Q-17.045-57.288-17.178-57.288Q-17.315-57.288-17.414-57.387Q-17.513-57.486-17.513-57.623Q-17.513-57.763-17.414-57.862Q-17.704-57.862-17.904-57.666Q-18.104-57.469-18.197-57.175Q-18.289-56.881-18.289-56.601L-18.289-55.487Q-18.289-55.278-17.633-55.278L-17.633-54.998M-16.262-56.509Q-16.262-56.837-16.127-57.138Q-15.992-57.438-15.756-57.659Q-15.520-57.879-15.216-57.999Q-14.912-58.119-14.587-58.119Q-14.081-58.119-13.733-58.016Q-13.384-57.914-13.384-57.538Q-13.384-57.391-13.481-57.290Q-13.579-57.189-13.726-57.189Q-13.880-57.189-13.979-57.288Q-14.078-57.387-14.078-57.538Q-14.078-57.726-13.938-57.818Q-14.139-57.869-14.580-57.869Q-14.936-57.869-15.165-57.673Q-15.394-57.476-15.495-57.167Q-15.595-56.857-15.595-56.509Q-15.595-56.160-15.469-55.854Q-15.343-55.548-15.088-55.364Q-14.833-55.179-14.478-55.179Q-14.256-55.179-14.071-55.263Q-13.886-55.347-13.751-55.502Q-13.616-55.658-13.558-55.866Q-13.545-55.921-13.490-55.921L-13.377-55.921Q-13.346-55.921-13.324-55.897Q-13.302-55.873-13.302-55.839L-13.302-55.818Q-13.387-55.531-13.575-55.333Q-13.763-55.135-14.028-55.032Q-14.293-54.930-14.587-54.930Q-15.018-54.930-15.406-55.136Q-15.794-55.343-16.028-55.706Q-16.262-56.068-16.262-56.509M-12.755-56.533Q-12.755-56.854-12.630-57.143Q-12.506-57.432-12.280-57.655Q-12.054-57.879-11.759-57.999Q-11.463-58.119-11.145-58.119Q-10.817-58.119-10.556-58.019Q-10.294-57.920-10.118-57.738Q-9.942-57.555-9.848-57.297Q-9.754-57.039-9.754-56.707Q-9.754-56.615-9.836-56.594L-12.092-56.594L-12.092-56.533Q-12.092-55.945-11.808-55.562Q-11.525-55.179-10.957-55.179Q-10.636-55.179-10.368-55.372Q-10.099-55.565-10.010-55.880Q-10.004-55.921-9.928-55.935L-9.836-55.935Q-9.754-55.911-9.754-55.839Q-9.754-55.832-9.761-55.805Q-9.874-55.408-10.245-55.169Q-10.615-54.930-11.039-54.930Q-11.477-54.930-11.877-55.138Q-12.277-55.347-12.516-55.714Q-12.755-56.081-12.755-56.533M-12.085-56.803L-10.270-56.803Q-10.270-57.080-10.368-57.332Q-10.465-57.585-10.663-57.741Q-10.862-57.896-11.145-57.896Q-11.422-57.896-11.636-57.738Q-11.849-57.579-11.967-57.324Q-12.085-57.069-12.085-56.803\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.811 36.574)\">\u003Cpath d=\"M-6.486-56.481Q-6.486-56.823-6.351-57.122Q-6.216-57.421-5.976-57.645Q-5.737-57.869-5.419-57.994Q-5.101-58.119-4.770-58.119Q-4.325-58.119-3.926-57.903Q-3.526-57.688-3.291-57.310Q-3.057-56.933-3.057-56.481Q-3.057-56.140-3.199-55.856Q-3.341-55.572-3.585-55.365Q-3.830-55.159-4.139-55.044Q-4.448-54.930-4.770-54.930Q-5.200-54.930-5.602-55.131Q-6.004-55.333-6.245-55.685Q-6.486-56.037-6.486-56.481M-4.770-55.179Q-4.168-55.179-3.944-55.557Q-3.720-55.935-3.720-56.567Q-3.720-57.179-3.955-57.538Q-4.189-57.896-4.770-57.896Q-5.822-57.896-5.822-56.567Q-5.822-55.935-5.597-55.557Q-5.371-55.179-4.770-55.179M-0.713-54.998L-2.449-54.998L-2.449-55.278Q-2.220-55.278-2.071-55.312Q-1.923-55.347-1.923-55.487L-1.923-57.336Q-1.923-57.606-2.030-57.667Q-2.138-57.729-2.449-57.729L-2.449-58.009L-1.420-58.084L-1.420-57.377Q-1.290-57.685-1.048-57.884Q-0.805-58.084-0.487-58.084Q-0.268-58.084-0.097-57.960Q0.074-57.835 0.074-57.623Q0.074-57.486-0.026-57.387Q-0.125-57.288-0.258-57.288Q-0.395-57.288-0.494-57.387Q-0.593-57.486-0.593-57.623Q-0.593-57.763-0.494-57.862Q-0.784-57.862-0.984-57.666Q-1.184-57.469-1.277-57.175Q-1.369-56.881-1.369-56.601L-1.369-55.487Q-1.369-55.278-0.713-55.278\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.811 36.574)\">\u003Cpath d=\"M3.361-56.509Q3.361-56.847 3.502-57.138Q3.642-57.428 3.886-57.642Q4.130-57.855 4.435-57.970Q4.739-58.084 5.064-58.084Q5.334-58.084 5.597-57.985Q5.860-57.886 6.051-57.708L6.051-59.106Q6.051-59.376 5.944-59.438Q5.836-59.499 5.525-59.499L5.525-59.780L6.602-59.855L6.602-55.671Q6.602-55.483 6.656-55.400Q6.711-55.316 6.812-55.297Q6.913-55.278 7.128-55.278L7.128-54.998L6.021-54.930L6.021-55.347Q5.604-54.930 4.978-54.930Q4.547-54.930 4.175-55.142Q3.802-55.353 3.582-55.714Q3.361-56.075 3.361-56.509M5.036-55.152Q5.245-55.152 5.431-55.224Q5.617-55.295 5.771-55.432Q5.925-55.569 6.021-55.747L6.021-57.356Q5.935-57.503 5.790-57.623Q5.645-57.743 5.475-57.802Q5.306-57.862 5.125-57.862Q4.565-57.862 4.296-57.473Q4.028-57.083 4.028-56.502Q4.028-55.931 4.262-55.541Q4.496-55.152 5.036-55.152M7.736-56.533Q7.736-56.854 7.861-57.143Q7.986-57.432 8.212-57.655Q8.437-57.879 8.733-57.999Q9.028-58.119 9.346-58.119Q9.674-58.119 9.936-58.019Q10.197-57.920 10.373-57.738Q10.549-57.555 10.643-57.297Q10.737-57.039 10.737-56.707Q10.737-56.615 10.655-56.594L8.400-56.594L8.400-56.533Q8.400-55.945 8.683-55.562Q8.967-55.179 9.534-55.179Q9.856-55.179 10.124-55.372Q10.392-55.565 10.481-55.880Q10.488-55.921 10.563-55.935L10.655-55.935Q10.737-55.911 10.737-55.839Q10.737-55.832 10.731-55.805Q10.618-55.408 10.247-55.169Q9.876-54.930 9.452-54.930Q9.015-54.930 8.615-55.138Q8.215-55.347 7.976-55.714Q7.736-56.081 7.736-56.533M8.406-56.803L10.221-56.803Q10.221-57.080 10.124-57.332Q10.026-57.585 9.828-57.741Q9.630-57.896 9.346-57.896Q9.069-57.896 8.856-57.738Q8.642-57.579 8.524-57.324Q8.406-57.069 8.406-56.803M11.325-55.005L11.325-56.068Q11.325-56.092 11.353-56.119Q11.380-56.146 11.404-56.146L11.513-56.146Q11.578-56.146 11.592-56.088Q11.688-55.654 11.934-55.403Q12.180-55.152 12.593-55.152Q12.935-55.152 13.188-55.285Q13.441-55.418 13.441-55.726Q13.441-55.883 13.347-55.998Q13.253-56.112 13.115-56.181Q12.976-56.249 12.809-56.287L12.228-56.386Q11.872-56.454 11.599-56.675Q11.325-56.895 11.325-57.237Q11.325-57.486 11.436-57.661Q11.547-57.835 11.734-57.934Q11.920-58.033 12.135-58.076Q12.351-58.119 12.593-58.119Q13.007-58.119 13.287-57.937L13.503-58.112Q13.513-58.115 13.520-58.117Q13.526-58.119 13.537-58.119L13.588-58.119Q13.615-58.119 13.639-58.095Q13.663-58.071 13.663-58.043L13.663-57.196Q13.663-57.175 13.639-57.148Q13.615-57.121 13.588-57.121L13.475-57.121Q13.448-57.121 13.422-57.146Q13.397-57.172 13.397-57.196Q13.397-57.432 13.291-57.596Q13.185-57.760 13.002-57.842Q12.819-57.924 12.587-57.924Q12.258-57.924 12.002-57.821Q11.746-57.719 11.746-57.442Q11.746-57.247 11.929-57.138Q12.111-57.028 12.340-56.987L12.915-56.881Q13.161-56.833 13.374-56.705Q13.588-56.577 13.725-56.374Q13.861-56.170 13.861-55.921Q13.861-55.408 13.496-55.169Q13.130-54.930 12.593-54.930Q12.098-54.930 11.766-55.224L11.500-54.950Q11.479-54.930 11.452-54.930L11.404-54.930Q11.380-54.930 11.353-54.957Q11.325-54.984 11.325-55.005M15.017-55.839L15.017-57.736L14.378-57.736L14.378-57.958Q14.695-57.958 14.912-58.168Q15.130-58.378 15.230-58.688Q15.331-58.997 15.331-59.305L15.598-59.305L15.598-58.016L16.674-58.016L16.674-57.736L15.598-57.736L15.598-55.852Q15.598-55.576 15.702-55.377Q15.806-55.179 16.066-55.179Q16.223-55.179 16.329-55.283Q16.435-55.388 16.485-55.541Q16.534-55.695 16.534-55.852L16.534-56.266L16.801-56.266L16.801-55.839Q16.801-55.613 16.702-55.403Q16.603-55.193 16.418-55.061Q16.234-54.930 16.005-54.930Q15.567-54.930 15.292-55.167Q15.017-55.405 15.017-55.839\" 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 three operand forms. An immediate is a literal carried in the instruction; a register names one of the sixteen slots; a memory operand is the bytes at an address. Only memory involves a trip to RAM.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:305.537px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 229.153 54.774\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M-54.177-45.978H2.728v-25.608h-56.905Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-13.222 7.75)\">\u003Cpath d=\"M-23.107-66.290Q-23.720-66.747-24.122-67.382Q-24.525-68.016-24.720-68.762Q-24.915-69.509-24.915-70.282Q-24.915-71.055-24.720-71.802Q-24.525-72.548-24.122-73.182Q-23.720-73.817-23.107-74.274Q-23.095-74.278-23.087-74.280Q-23.079-74.282-23.068-74.282L-22.990-74.282Q-22.951-74.282-22.925-74.255Q-22.900-74.227-22.900-74.184Q-22.900-74.134-22.931-74.114Q-23.439-73.661-23.761-73.038Q-24.083-72.415-24.224-71.719Q-24.365-71.024-24.365-70.282Q-24.365-69.548-24.226-68.848Q-24.087-68.149-23.763-67.524Q-23.439-66.899-22.931-66.450Q-22.900-66.430-22.900-66.380Q-22.900-66.337-22.925-66.309Q-22.951-66.282-22.990-66.282L-23.068-66.282Q-23.076-66.286-23.085-66.288Q-23.095-66.290-23.107-66.290M-21.236-68.016Q-21.236-68.079-21.204-68.122L-17.458-73.380Q-17.915-73.145-18.482-73.145Q-19.134-73.145-19.740-73.466Q-19.595-73.118-19.595-72.673Q-19.595-72.313-19.716-71.942Q-19.837-71.571-20.087-71.315Q-20.337-71.059-20.701-71.059Q-21.087-71.059-21.370-71.303Q-21.654-71.548-21.800-71.921Q-21.947-72.294-21.947-72.673Q-21.947-73.052-21.800-73.423Q-21.654-73.794-21.370-74.038Q-21.087-74.282-20.701-74.282Q-20.384-74.282-20.115-74.044Q-19.779-73.739-19.349-73.567Q-18.919-73.395-18.482-73.395Q-17.990-73.395-17.572-73.608Q-17.154-73.821-16.853-74.219Q-16.810-74.282-16.716-74.282Q-16.642-74.282-16.587-74.227Q-16.533-74.173-16.533-74.098Q-16.533-74.036-16.564-73.993L-20.908-67.899Q-20.954-67.833-21.052-67.833Q-21.134-67.833-21.185-67.884Q-21.236-67.934-21.236-68.016M-20.701-71.313Q-20.427-71.313-20.240-71.538Q-20.052-71.762-19.964-72.085Q-19.876-72.407-19.876-72.673Q-19.876-72.930-19.964-73.253Q-20.052-73.575-20.240-73.800Q-20.427-74.024-20.701-74.024Q-21.087-74.024-21.230-73.596Q-21.372-73.169-21.372-72.673Q-21.372-72.165-21.232-71.739Q-21.091-71.313-20.701-71.313M-16.923-67.833Q-17.310-67.833-17.593-68.079Q-17.876-68.325-18.025-68.698Q-18.173-69.071-18.173-69.450Q-18.173-69.723-18.087-70.011Q-18.001-70.298-17.847-70.532Q-17.693-70.766-17.456-70.913Q-17.220-71.059-16.923-71.059Q-16.642-71.059-16.435-70.907Q-16.228-70.755-16.089-70.512Q-15.951-70.270-15.884-69.989Q-15.818-69.708-15.818-69.450Q-15.818-69.091-15.939-68.718Q-16.060-68.344-16.310-68.089Q-16.560-67.833-16.923-67.833M-16.923-68.091Q-16.650-68.091-16.462-68.315Q-16.275-68.540-16.187-68.862Q-16.099-69.184-16.099-69.450Q-16.099-69.708-16.187-70.030Q-16.275-70.352-16.462-70.577Q-16.650-70.802-16.923-70.802Q-17.314-70.802-17.454-70.372Q-17.595-69.942-17.595-69.450Q-17.595-68.942-17.458-68.516Q-17.322-68.091-16.923-68.091\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.222 7.75)\">\u003Cpath d=\"M-15.112-68.520L-15.112-68.610Q-15.054-68.817-14.862-68.841L-14.151-68.841L-14.151-71.169L-14.862-71.169Q-15.058-71.192-15.112-71.411L-15.112-71.497Q-15.054-71.708-14.862-71.731L-13.761-71.731Q-13.562-71.712-13.511-71.497L-13.511-71.169Q-13.249-71.454-12.894-71.612Q-12.538-71.770-12.151-71.770Q-11.858-71.770-11.624-71.636Q-11.390-71.501-11.390-71.235Q-11.390-71.067-11.499-70.950Q-11.608-70.833-11.776-70.833Q-11.929-70.833-12.044-70.944Q-12.159-71.055-12.159-71.212Q-12.534-71.212-12.849-71.011Q-13.163-70.809-13.337-70.475Q-13.511-70.141-13.511-69.762L-13.511-68.841L-12.565-68.841Q-12.358-68.817-12.319-68.610L-12.319-68.520Q-12.358-68.305-12.565-68.282L-14.862-68.282Q-15.054-68.305-15.112-68.520M-10.503-68.481L-10.503-69.395Q-10.476-69.602-10.265-69.626L-10.097-69.626Q-9.933-69.602-9.874-69.442Q-9.671-68.802-8.944-68.802Q-8.737-68.802-8.509-68.837Q-8.280-68.872-8.112-68.987Q-7.944-69.102-7.944-69.305Q-7.944-69.516-8.167-69.630Q-8.390-69.743-8.663-69.786L-9.362-69.899Q-10.503-70.110-10.503-70.833Q-10.503-71.122-10.358-71.311Q-10.214-71.501-9.974-71.608Q-9.733-71.716-9.478-71.755Q-9.222-71.794-8.944-71.794Q-8.694-71.794-8.501-71.764Q-8.308-71.735-8.144-71.657Q-8.065-71.774-7.937-71.794L-7.858-71.794Q-7.761-71.782-7.698-71.719Q-7.636-71.657-7.624-71.563L-7.624-70.856Q-7.636-70.762-7.698-70.696Q-7.761-70.630-7.858-70.618L-8.026-70.618Q-8.120-70.630-8.187-70.696Q-8.253-70.762-8.265-70.856Q-8.265-71.235-8.960-71.235Q-9.308-71.235-9.626-71.153Q-9.944-71.071-9.944-70.825Q-9.944-70.559-9.273-70.450L-8.569-70.329Q-8.085-70.247-7.735-69.999Q-7.386-69.751-7.386-69.305Q-7.386-68.915-7.622-68.673Q-7.858-68.430-8.208-68.337Q-8.558-68.243-8.944-68.243Q-9.523-68.243-9.921-68.497Q-9.991-68.372-10.040-68.315Q-10.089-68.259-10.194-68.243L-10.265-68.243Q-10.480-68.266-10.503-68.481M-6.226-68.520L-6.226-68.610Q-6.175-68.817-5.980-68.841L-4.940-68.841L-4.940-71.169L-5.913-71.169Q-6.112-71.192-6.163-71.411L-6.163-71.497Q-6.112-71.708-5.913-71.731L-4.546-71.731Q-4.351-71.712-4.300-71.497L-4.300-68.841L-3.386-68.841Q-3.190-68.817-3.140-68.610L-3.140-68.520Q-3.190-68.305-3.386-68.282L-5.980-68.282Q-6.175-68.305-6.226-68.520M-5.194-72.708L-5.194-72.762Q-5.194-72.934-5.058-73.055Q-4.921-73.177-4.745-73.177Q-4.573-73.177-4.437-73.055Q-4.300-72.934-4.300-72.762L-4.300-72.708Q-4.300-72.532-4.437-72.411Q-4.573-72.290-4.745-72.290Q-4.921-72.290-5.058-72.411Q-5.194-72.532-5.194-72.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.222 7.75)\">\u003Cpath d=\"M-1.944-66.282L-2.026-66.282Q-2.062-66.282-2.087-66.311Q-2.112-66.341-2.112-66.380Q-2.112-66.430-2.081-66.450Q-1.694-66.786-1.411-67.235Q-1.128-67.684-0.962-68.184Q-0.796-68.684-0.722-69.202Q-0.647-69.719-0.647-70.282Q-0.647-70.852-0.722-71.368Q-0.796-71.884-0.962-72.380Q-1.128-72.876-1.407-73.323Q-1.687-73.770-2.081-74.114Q-2.112-74.134-2.112-74.184Q-2.112-74.223-2.087-74.253Q-2.062-74.282-2.026-74.282L-1.944-74.282Q-1.933-74.282-1.923-74.280Q-1.913-74.278-1.905-74.274Q-1.292-73.817-0.890-73.182Q-0.487-72.548-0.292-71.802Q-0.097-71.055-0.097-70.282Q-0.097-69.509-0.292-68.762Q-0.487-68.016-0.890-67.382Q-1.292-66.747-1.905-66.290Q-1.917-66.290-1.925-66.288Q-1.933-66.286-1.944-66.282\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.222 7.75)\">\u003Cpath d=\"M-18.881-58.704Q-19.314-58.704-19.647-58.942Q-19.979-59.180-20.199-59.569Q-20.420-59.958-20.527-60.395Q-20.635-60.833-20.635-61.231Q-20.635-61.622-20.525-62.065Q-20.416-62.509-20.199-62.889Q-19.982-63.270-19.648-63.511Q-19.314-63.751-18.881-63.751Q-18.326-63.751-17.926-63.352Q-17.525-62.954-17.328-62.368Q-17.131-61.782-17.131-61.231Q-17.131-60.677-17.328-60.089Q-17.525-59.501-17.926-59.102Q-18.326-58.704-18.881-58.704M-18.881-59.262Q-18.580-59.262-18.363-59.479Q-18.147-59.696-18.020-60.024Q-17.893-60.352-17.832-60.698Q-17.772-61.044-17.772-61.325Q-17.772-61.575-17.834-61.901Q-17.897-62.227-18.027-62.518Q-18.158-62.809-18.371-62.999Q-18.584-63.188-18.881-63.188Q-19.256-63.188-19.508-62.876Q-19.760-62.563-19.877-62.130Q-19.994-61.696-19.994-61.325Q-19.994-60.927-19.881-60.446Q-19.768-59.966-19.520-59.614Q-19.272-59.262-18.881-59.262M-16.498-59.020L-16.498-59.110Q-16.459-59.317-16.252-59.341L-15.846-59.341L-14.916-60.559L-15.787-61.669L-16.205-61.669Q-16.400-61.688-16.451-61.911L-16.451-61.997Q-16.400-62.208-16.205-62.231L-15.045-62.231Q-14.846-62.208-14.795-61.997L-14.795-61.911Q-14.846-61.692-15.045-61.669L-15.154-61.669L-14.658-61.012L-14.182-61.669L-14.299-61.669Q-14.498-61.692-14.549-61.911L-14.549-61.997Q-14.498-62.208-14.299-62.231L-13.139-62.231Q-12.943-62.212-12.893-61.997L-12.893-61.911Q-12.943-61.692-13.139-61.669L-13.549-61.669L-14.397-60.559L-13.436-59.341L-13.029-59.341Q-12.830-59.317-12.779-59.110L-12.779-59.020Q-12.818-58.805-13.029-58.782L-14.182-58.782Q-14.389-58.805-14.428-59.020L-14.428-59.110Q-14.389-59.317-14.182-59.341L-14.053-59.341L-14.658-60.196L-15.244-59.341L-15.100-59.341Q-14.893-59.317-14.854-59.110L-14.854-59.020Q-14.893-58.805-15.100-58.782L-16.252-58.782Q-16.447-58.802-16.498-59.020M-9.951-60.126L-12.022-60.126Q-12.217-60.149-12.272-60.368L-12.272-60.606Q-12.272-60.680-12.229-60.751L-10.381-63.622Q-10.295-63.751-10.143-63.751L-9.686-63.751Q-9.576-63.751-9.498-63.673Q-9.420-63.594-9.420-63.485L-9.420-60.684L-8.756-60.684Q-8.561-60.661-8.510-60.454L-8.510-60.368Q-8.561-60.149-8.756-60.126L-9.420-60.126L-9.420-59.341L-8.846-59.341Q-8.639-59.317-8.600-59.110L-8.600-59.020Q-8.639-58.805-8.846-58.782L-10.525-58.782Q-10.732-58.805-10.775-59.020L-10.775-59.110Q-10.732-59.317-10.525-59.341L-9.951-59.341L-9.951-60.126M-9.951-63.278L-11.623-60.684L-9.951-60.684L-9.951-63.278M-7.838-59.020L-7.838-59.094Q-7.807-59.262-7.705-59.309L-6.416-60.376Q-6.084-60.653-5.902-60.805Q-5.721-60.958-5.525-61.178Q-5.330-61.399-5.209-61.649Q-5.088-61.899-5.088-62.165Q-5.088-62.489-5.264-62.723Q-5.439-62.958-5.719-63.073Q-5.998-63.188-6.318-63.188Q-6.576-63.188-6.805-63.065Q-7.033-62.942-7.135-62.727Q-7.033-62.594-7.033-62.446Q-7.033-62.286-7.152-62.163Q-7.272-62.040-7.432-62.040Q-7.607-62.040-7.723-62.165Q-7.838-62.290-7.838-62.462Q-7.838-62.755-7.703-62.997Q-7.568-63.239-7.330-63.411Q-7.092-63.583-6.824-63.667Q-6.557-63.751-6.264-63.751Q-5.783-63.751-5.367-63.561Q-4.951-63.372-4.699-63.011Q-4.447-62.649-4.447-62.165Q-4.447-61.821-4.580-61.518Q-4.713-61.216-4.938-60.956Q-5.162-60.696-5.471-60.434Q-5.779-60.173-5.990-59.997L-6.799-59.341L-5.088-59.341L-5.088-59.485Q-5.037-59.696-4.838-59.719L-4.697-59.719Q-4.498-59.700-4.447-59.485L-4.447-59.020Q-4.498-58.805-4.697-58.782L-7.592-58.782Q-7.787-58.802-7.838-59.020\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M93.777-45.978h56.906v-25.608H93.777Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(138.037 7.75)\">\u003Cpath d=\"M-24.540-68.016Q-24.540-68.079-24.509-68.122L-20.763-73.380Q-21.220-73.145-21.787-73.145Q-22.439-73.145-23.044-73.466Q-22.900-73.118-22.900-72.673Q-22.900-72.313-23.021-71.942Q-23.142-71.571-23.392-71.315Q-23.642-71.059-24.005-71.059Q-24.392-71.059-24.675-71.303Q-24.958-71.548-25.105-71.921Q-25.251-72.294-25.251-72.673Q-25.251-73.052-25.105-73.423Q-24.958-73.794-24.675-74.038Q-24.392-74.282-24.005-74.282Q-23.689-74.282-23.419-74.044Q-23.083-73.739-22.654-73.567Q-22.224-73.395-21.787-73.395Q-21.294-73.395-20.876-73.608Q-20.458-73.821-20.158-74.219Q-20.115-74.282-20.021-74.282Q-19.947-74.282-19.892-74.227Q-19.837-74.173-19.837-74.098Q-19.837-74.036-19.869-73.993L-24.212-67.899Q-24.259-67.833-24.357-67.833Q-24.439-67.833-24.490-67.884Q-24.540-67.934-24.540-68.016M-24.005-71.313Q-23.732-71.313-23.544-71.538Q-23.357-71.762-23.269-72.085Q-23.181-72.407-23.181-72.673Q-23.181-72.930-23.269-73.253Q-23.357-73.575-23.544-73.800Q-23.732-74.024-24.005-74.024Q-24.392-74.024-24.535-73.596Q-24.677-73.169-24.677-72.673Q-24.677-72.165-24.537-71.739Q-24.396-71.313-24.005-71.313M-20.228-67.833Q-20.615-67.833-20.898-68.079Q-21.181-68.325-21.329-68.698Q-21.478-69.071-21.478-69.450Q-21.478-69.723-21.392-70.011Q-21.306-70.298-21.152-70.532Q-20.997-70.766-20.761-70.913Q-20.525-71.059-20.228-71.059Q-19.947-71.059-19.740-70.907Q-19.533-70.755-19.394-70.512Q-19.255-70.270-19.189-69.989Q-19.122-69.708-19.122-69.450Q-19.122-69.091-19.244-68.718Q-19.365-68.344-19.615-68.089Q-19.865-67.833-20.228-67.833M-20.228-68.091Q-19.954-68.091-19.767-68.315Q-19.579-68.540-19.492-68.862Q-19.404-69.184-19.404-69.450Q-19.404-69.708-19.492-70.030Q-19.579-70.352-19.767-70.577Q-19.954-70.802-20.228-70.802Q-20.619-70.802-20.759-70.372Q-20.900-69.942-20.900-69.450Q-20.900-68.942-20.763-68.516Q-20.626-68.091-20.228-68.091\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(138.037 7.75)\">\u003Cpath d=\"M-18.418-68.520L-18.418-68.610Q-18.360-68.817-18.168-68.841L-17.457-68.841L-17.457-71.169L-18.168-71.169Q-18.364-71.192-18.418-71.411L-18.418-71.497Q-18.360-71.708-18.168-71.731L-17.067-71.731Q-16.868-71.712-16.817-71.497L-16.817-71.169Q-16.555-71.454-16.200-71.612Q-15.844-71.770-15.457-71.770Q-15.164-71.770-14.930-71.636Q-14.696-71.501-14.696-71.235Q-14.696-71.067-14.805-70.950Q-14.914-70.833-15.082-70.833Q-15.235-70.833-15.350-70.944Q-15.465-71.055-15.465-71.212Q-15.840-71.212-16.155-71.011Q-16.469-70.809-16.643-70.475Q-16.817-70.141-16.817-69.762L-16.817-68.841L-15.871-68.841Q-15.664-68.817-15.625-68.610L-15.625-68.520Q-15.664-68.305-15.871-68.282L-18.168-68.282Q-18.360-68.305-18.418-68.520M-12.532-68.243Q-12.996-68.243-13.362-68.493Q-13.727-68.743-13.932-69.147Q-14.137-69.552-14.137-70.009Q-14.137-70.352-14.012-70.673Q-13.887-70.993-13.655-71.243Q-13.422-71.493-13.118-71.632Q-12.813-71.770-12.457-71.770Q-11.946-71.770-11.539-71.450L-11.539-72.610L-11.961-72.610Q-12.172-72.634-12.211-72.848L-12.211-72.938Q-12.172-73.145-11.961-73.169L-11.149-73.169Q-10.950-73.145-10.899-72.938L-10.899-68.841L-10.473-68.841Q-10.266-68.817-10.227-68.610L-10.227-68.520Q-10.266-68.305-10.473-68.282L-11.289-68.282Q-11.489-68.305-11.539-68.520L-11.539-68.649Q-11.735-68.458-11.996-68.350Q-12.258-68.243-12.532-68.243M-12.493-68.802Q-12.133-68.802-11.881-69.071Q-11.629-69.341-11.539-69.716L-11.539-70.548Q-11.598-70.735-11.725-70.886Q-11.852-71.036-12.030-71.124Q-12.207-71.212-12.403-71.212Q-12.711-71.212-12.961-71.042Q-13.211-70.872-13.356-70.587Q-13.500-70.302-13.500-70.001Q-13.500-69.552-13.215-69.177Q-12.930-68.802-12.493-68.802M-9.891-68.520L-9.891-68.610Q-9.852-68.817-9.645-68.841L-9.239-68.841L-8.309-70.059L-9.180-71.169L-9.598-71.169Q-9.793-71.188-9.844-71.411L-9.844-71.497Q-9.793-71.708-9.598-71.731L-8.438-71.731Q-8.239-71.708-8.188-71.497L-8.188-71.411Q-8.239-71.192-8.438-71.169L-8.547-71.169L-8.051-70.512L-7.575-71.169L-7.692-71.169Q-7.891-71.192-7.942-71.411L-7.942-71.497Q-7.891-71.708-7.692-71.731L-6.532-71.731Q-6.336-71.712-6.286-71.497L-6.286-71.411Q-6.336-71.192-6.532-71.169L-6.942-71.169L-7.789-70.059L-6.828-68.841L-6.422-68.841Q-6.223-68.817-6.172-68.610L-6.172-68.520Q-6.211-68.305-6.422-68.282L-7.575-68.282Q-7.782-68.305-7.821-68.520L-7.821-68.610Q-7.782-68.817-7.575-68.841L-7.446-68.841L-8.051-69.696L-8.637-68.841L-8.493-68.841Q-8.286-68.817-8.246-68.610L-8.246-68.520Q-8.286-68.305-8.493-68.282L-9.645-68.282Q-9.840-68.302-9.891-68.520\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(138.037 7.75)\">\u003Cpath d=\"M-22.187-58.704Q-22.620-58.704-22.953-58.942Q-23.285-59.180-23.505-59.569Q-23.726-59.958-23.833-60.395Q-23.941-60.833-23.941-61.231Q-23.941-61.622-23.831-62.065Q-23.722-62.509-23.505-62.889Q-23.288-63.270-22.954-63.511Q-22.620-63.751-22.187-63.751Q-21.632-63.751-21.232-63.352Q-20.831-62.954-20.634-62.368Q-20.437-61.782-20.437-61.231Q-20.437-60.677-20.634-60.089Q-20.831-59.501-21.232-59.102Q-21.632-58.704-22.187-58.704M-22.187-59.262Q-21.886-59.262-21.669-59.479Q-21.453-59.696-21.326-60.024Q-21.199-60.352-21.138-60.698Q-21.078-61.044-21.078-61.325Q-21.078-61.575-21.140-61.901Q-21.203-62.227-21.333-62.518Q-21.464-62.809-21.677-62.999Q-21.890-63.188-22.187-63.188Q-22.562-63.188-22.814-62.876Q-23.066-62.563-23.183-62.130Q-23.300-61.696-23.300-61.325Q-23.300-60.927-23.187-60.446Q-23.074-59.966-22.826-59.614Q-22.578-59.262-22.187-59.262M-19.804-59.020L-19.804-59.110Q-19.765-59.317-19.558-59.341L-19.152-59.341L-18.222-60.559L-19.093-61.669L-19.511-61.669Q-19.706-61.688-19.757-61.911L-19.757-61.997Q-19.706-62.208-19.511-62.231L-18.351-62.231Q-18.152-62.208-18.101-61.997L-18.101-61.911Q-18.152-61.692-18.351-61.669L-18.460-61.669L-17.964-61.012L-17.488-61.669L-17.605-61.669Q-17.804-61.692-17.855-61.911L-17.855-61.997Q-17.804-62.208-17.605-62.231L-16.445-62.231Q-16.249-62.212-16.199-61.997L-16.199-61.911Q-16.249-61.692-16.445-61.669L-16.855-61.669L-17.703-60.559L-16.742-59.341L-16.335-59.341Q-16.136-59.317-16.085-59.110L-16.085-59.020Q-16.124-58.805-16.335-58.782L-17.488-58.782Q-17.695-58.805-17.734-59.020L-17.734-59.110Q-17.695-59.317-17.488-59.341L-17.359-59.341L-17.964-60.196L-18.550-59.341L-18.406-59.341Q-18.199-59.317-18.160-59.110L-18.160-59.020Q-18.199-58.805-18.406-58.782L-19.558-58.782Q-19.753-58.802-19.804-59.020M-13.257-60.126L-15.328-60.126Q-15.523-60.149-15.578-60.368L-15.578-60.606Q-15.578-60.680-15.535-60.751L-13.687-63.622Q-13.601-63.751-13.449-63.751L-12.992-63.751Q-12.882-63.751-12.804-63.673Q-12.726-63.594-12.726-63.485L-12.726-60.684L-12.062-60.684Q-11.867-60.661-11.816-60.454L-11.816-60.368Q-11.867-60.149-12.062-60.126L-12.726-60.126L-12.726-59.341L-12.152-59.341Q-11.945-59.317-11.906-59.110L-11.906-59.020Q-11.945-58.805-12.152-58.782L-13.831-58.782Q-14.038-58.805-14.081-59.020L-14.081-59.110Q-14.038-59.317-13.831-59.341L-13.257-59.341L-13.257-60.126M-13.257-63.278L-14.929-60.684L-13.257-60.684L-13.257-63.278M-11.144-59.020L-11.144-59.094Q-11.113-59.262-11.011-59.309L-9.722-60.376Q-9.390-60.653-9.208-60.805Q-9.027-60.958-8.831-61.178Q-8.636-61.399-8.515-61.649Q-8.394-61.899-8.394-62.165Q-8.394-62.489-8.570-62.723Q-8.745-62.958-9.025-63.073Q-9.304-63.188-9.624-63.188Q-9.882-63.188-10.111-63.065Q-10.339-62.942-10.441-62.727Q-10.339-62.594-10.339-62.446Q-10.339-62.286-10.458-62.163Q-10.578-62.040-10.738-62.040Q-10.913-62.040-11.029-62.165Q-11.144-62.290-11.144-62.462Q-11.144-62.755-11.009-62.997Q-10.874-63.239-10.636-63.411Q-10.398-63.583-10.130-63.667Q-9.863-63.751-9.570-63.751Q-9.089-63.751-8.673-63.561Q-8.257-63.372-8.005-63.011Q-7.753-62.649-7.753-62.165Q-7.753-61.821-7.886-61.518Q-8.019-61.216-8.244-60.956Q-8.468-60.696-8.777-60.434Q-9.085-60.173-9.296-59.997L-10.105-59.341L-8.394-59.341L-8.394-59.485Q-8.343-59.696-8.144-59.719L-8.003-59.719Q-7.804-59.700-7.753-59.485L-7.753-59.020Q-7.804-58.805-8.003-58.782L-10.898-58.782Q-11.093-58.802-11.144-59.020\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-36.546 30.203)\">\u003Cpath d=\"M-23.728-58.782L-25.362-58.782L-25.362-59.062Q-25.133-59.062-24.984-59.096Q-24.835-59.131-24.835-59.271L-24.835-61.120Q-24.835-61.390-24.943-61.451Q-25.051-61.513-25.362-61.513L-25.362-61.793L-24.302-61.868L-24.302-61.219Q-24.131-61.527-23.827-61.698Q-23.523-61.868-23.178-61.868Q-22.778-61.868-22.501-61.728Q-22.224-61.588-22.139-61.240Q-21.971-61.533-21.672-61.701Q-21.373-61.868-21.028-61.868Q-20.522-61.868-20.238-61.645Q-19.954-61.421-19.954-60.925L-19.954-59.271Q-19.954-59.134-19.806-59.098Q-19.657-59.062-19.432-59.062L-19.432-58.782L-21.062-58.782L-21.062-59.062Q-20.836-59.062-20.686-59.098Q-20.536-59.134-20.536-59.271L-20.536-60.911Q-20.536-61.246-20.655-61.446Q-20.775-61.646-21.089-61.646Q-21.359-61.646-21.593-61.510Q-21.828-61.373-21.966-61.139Q-22.104-60.905-22.104-60.631L-22.104-59.271Q-22.104-59.134-21.956-59.098Q-21.807-59.062-21.581-59.062L-21.581-58.782L-23.212-58.782L-23.212-59.062Q-22.983-59.062-22.834-59.096Q-22.685-59.131-22.685-59.271L-22.685-60.911Q-22.685-61.246-22.805-61.446Q-22.925-61.646-23.239-61.646Q-23.509-61.646-23.743-61.510Q-23.977-61.373-24.116-61.139Q-24.254-60.905-24.254-60.631L-24.254-59.271Q-24.254-59.134-24.104-59.098Q-23.953-59.062-23.728-59.062L-23.728-58.782M-18.885-60.317Q-18.885-60.638-18.760-60.927Q-18.635-61.216-18.410-61.439Q-18.184-61.663-17.888-61.783Q-17.593-61.903-17.275-61.903Q-16.947-61.903-16.685-61.803Q-16.424-61.704-16.248-61.522Q-16.072-61.339-15.978-61.081Q-15.884-60.823-15.884-60.491Q-15.884-60.399-15.966-60.378L-18.222-60.378L-18.222-60.317Q-18.222-59.729-17.938-59.346Q-17.654-58.963-17.087-58.963Q-16.766-58.963-16.497-59.156Q-16.229-59.349-16.140-59.664Q-16.133-59.705-16.058-59.719L-15.966-59.719Q-15.884-59.695-15.884-59.623Q-15.884-59.616-15.891-59.589Q-16.003-59.192-16.374-58.953Q-16.745-58.714-17.169-58.714Q-17.606-58.714-18.006-58.922Q-18.406-59.131-18.645-59.498Q-18.885-59.865-18.885-60.317M-18.215-60.587L-16.400-60.587Q-16.400-60.864-16.497-61.116Q-16.595-61.369-16.793-61.525Q-16.991-61.680-17.275-61.680Q-17.552-61.680-17.765-61.522Q-17.979-61.363-18.097-61.108Q-18.215-60.853-18.215-60.587M-13.614-58.782L-15.248-58.782L-15.248-59.062Q-15.019-59.062-14.870-59.096Q-14.722-59.131-14.722-59.271L-14.722-61.120Q-14.722-61.390-14.829-61.451Q-14.937-61.513-15.248-61.513L-15.248-61.793L-14.188-61.868L-14.188-61.219Q-14.017-61.527-13.713-61.698Q-13.409-61.868-13.064-61.868Q-12.664-61.868-12.387-61.728Q-12.110-61.588-12.025-61.240Q-11.857-61.533-11.558-61.701Q-11.259-61.868-10.914-61.868Q-10.408-61.868-10.124-61.645Q-9.841-61.421-9.841-60.925L-9.841-59.271Q-9.841-59.134-9.692-59.098Q-9.543-59.062-9.318-59.062L-9.318-58.782L-10.948-58.782L-10.948-59.062Q-10.723-59.062-10.572-59.098Q-10.422-59.134-10.422-59.271L-10.422-60.911Q-10.422-61.246-10.541-61.446Q-10.661-61.646-10.975-61.646Q-11.245-61.646-11.480-61.510Q-11.714-61.373-11.852-61.139Q-11.991-60.905-11.991-60.631L-11.991-59.271Q-11.991-59.134-11.842-59.098Q-11.693-59.062-11.468-59.062L-11.468-58.782L-13.098-58.782L-13.098-59.062Q-12.869-59.062-12.720-59.096Q-12.572-59.131-12.572-59.271L-12.572-60.911Q-12.572-61.246-12.691-61.446Q-12.811-61.646-13.125-61.646Q-13.395-61.646-13.630-61.510Q-13.864-61.373-14.002-61.139Q-14.141-60.905-14.141-60.631L-14.141-59.271Q-14.141-59.134-13.990-59.098Q-13.840-59.062-13.614-59.062L-13.614-58.782M-8.771-60.265Q-8.771-60.607-8.636-60.906Q-8.501-61.205-8.262-61.429Q-8.022-61.653-7.704-61.778Q-7.387-61.903-7.055-61.903Q-6.611-61.903-6.211-61.687Q-5.811-61.472-5.577-61.094Q-5.343-60.717-5.343-60.265Q-5.343-59.924-5.484-59.640Q-5.626-59.356-5.871-59.149Q-6.115-58.943-6.424-58.828Q-6.734-58.714-7.055-58.714Q-7.486-58.714-7.887-58.915Q-8.289-59.117-8.530-59.469Q-8.771-59.821-8.771-60.265M-7.055-58.963Q-6.453-58.963-6.230-59.341Q-6.006-59.719-6.006-60.351Q-6.006-60.963-6.240-61.322Q-6.474-61.680-7.055-61.680Q-8.108-61.680-8.108-60.351Q-8.108-59.719-7.882-59.341Q-7.657-58.963-7.055-58.963M-2.998-58.782L-4.734-58.782L-4.734-59.062Q-4.505-59.062-4.357-59.096Q-4.208-59.131-4.208-59.271L-4.208-61.120Q-4.208-61.390-4.316-61.451Q-4.423-61.513-4.734-61.513L-4.734-61.793L-3.705-61.868L-3.705-61.161Q-3.576-61.469-3.333-61.668Q-3.090-61.868-2.772-61.868Q-2.554-61.868-2.383-61.744Q-2.212-61.619-2.212-61.407Q-2.212-61.270-2.311-61.171Q-2.410-61.072-2.543-61.072Q-2.680-61.072-2.779-61.171Q-2.878-61.270-2.878-61.407Q-2.878-61.547-2.779-61.646Q-3.070-61.646-3.270-61.450Q-3.470-61.253-3.562-60.959Q-3.654-60.665-3.654-60.385L-3.654-59.271Q-3.654-59.062-2.998-59.062L-2.998-58.782M-1.292-57.647Q-1.162-57.579-1.026-57.579Q-0.855-57.579-0.704-57.668Q-0.554-57.757-0.443-57.902Q-0.332-58.047-0.253-58.215L0.010-58.782L-1.159-61.308Q-1.234-61.455-1.364-61.487Q-1.494-61.520-1.726-61.520L-1.726-61.800L-0.205-61.800L-0.205-61.520Q-0.554-61.520-0.554-61.373Q-0.551-61.352-0.549-61.335Q-0.547-61.318-0.547-61.308L0.311-59.449L1.083-61.120Q1.117-61.188 1.117-61.267Q1.117-61.380 1.034-61.450Q0.950-61.520 0.837-61.520L0.837-61.800L2.033-61.800L2.033-61.520Q1.815-61.520 1.642-61.416Q1.469-61.311 1.377-61.120L0.041-58.215Q-0.130-57.845-0.400-57.599Q-0.670-57.353-1.026-57.353Q-1.296-57.353-1.515-57.519Q-1.733-57.685-1.733-57.948Q-1.733-58.085-1.641-58.174Q-1.549-58.262-1.409-58.262Q-1.272-58.262-1.183-58.174Q-1.094-58.085-1.094-57.948Q-1.094-57.845-1.147-57.767Q-1.200-57.688-1.292-57.647\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.546 30.203)\">\u003Cpath d=\"M5.291-60.293Q5.291-60.621 5.426-60.922Q5.561-61.222 5.797-61.443Q6.033-61.663 6.337-61.783Q6.642-61.903 6.966-61.903Q7.472-61.903 7.821-61.800Q8.169-61.698 8.169-61.322Q8.169-61.175 8.072-61.074Q7.975-60.973 7.828-60.973Q7.674-60.973 7.575-61.072Q7.476-61.171 7.476-61.322Q7.476-61.510 7.616-61.602Q7.414-61.653 6.973-61.653Q6.618-61.653 6.389-61.457Q6.160-61.260 6.059-60.951Q5.958-60.641 5.958-60.293Q5.958-59.944 6.084-59.638Q6.211-59.332 6.466-59.148Q6.720-58.963 7.076-58.963Q7.298-58.963 7.482-59.047Q7.667-59.131 7.802-59.286Q7.937-59.442 7.995-59.650Q8.009-59.705 8.063-59.705L8.176-59.705Q8.207-59.705 8.229-59.681Q8.251-59.657 8.251-59.623L8.251-59.602Q8.166-59.315 7.978-59.117Q7.790-58.919 7.525-58.816Q7.260-58.714 6.966-58.714Q6.536-58.714 6.148-58.920Q5.760-59.127 5.526-59.490Q5.291-59.852 5.291-60.293M8.798-60.317Q8.798-60.638 8.923-60.927Q9.048-61.216 9.273-61.439Q9.499-61.663 9.795-61.783Q10.090-61.903 10.408-61.903Q10.736-61.903 10.998-61.803Q11.259-61.704 11.435-61.522Q11.611-61.339 11.705-61.081Q11.799-60.823 11.799-60.491Q11.799-60.399 11.717-60.378L9.461-60.378L9.461-60.317Q9.461-59.729 9.745-59.346Q10.029-58.963 10.596-58.963Q10.917-58.963 11.186-59.156Q11.454-59.349 11.543-59.664Q11.550-59.705 11.625-59.719L11.717-59.719Q11.799-59.695 11.799-59.623Q11.799-59.616 11.792-59.589Q11.680-59.192 11.309-58.953Q10.938-58.714 10.514-58.714Q10.077-58.714 9.677-58.922Q9.277-59.131 9.038-59.498Q8.798-59.865 8.798-60.317M9.468-60.587L11.283-60.587Q11.283-60.864 11.186-61.116Q11.088-61.369 10.890-61.525Q10.692-61.680 10.408-61.680Q10.131-61.680 9.918-61.522Q9.704-61.363 9.586-61.108Q9.468-60.853 9.468-60.587M14.055-58.782L12.452-58.782L12.452-59.062Q12.678-59.062 12.826-59.096Q12.975-59.131 12.975-59.271L12.975-62.890Q12.975-63.160 12.867-63.222Q12.760-63.283 12.452-63.283L12.452-63.564L13.529-63.639L13.529-59.271Q13.529-59.134 13.679-59.098Q13.830-59.062 14.055-59.062L14.055-58.782M16.318-58.782L14.715-58.782L14.715-59.062Q14.940-59.062 15.089-59.096Q15.238-59.131 15.238-59.271L15.238-62.890Q15.238-63.160 15.130-63.222Q15.022-63.283 14.715-63.283L14.715-63.564L15.791-63.639L15.791-59.271Q15.791-59.134 15.942-59.098Q16.092-59.062 16.318-59.062\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-36.546 30.203)\">\u003Cpath d=\"M21.755-57.032Q21.205-57.432 20.834-57.987Q20.463-58.543 20.282-59.189Q20.101-59.835 20.101-60.532Q20.101-61.045 20.201-61.540Q20.302-62.036 20.507-62.487Q20.712-62.938 21.025-63.330Q21.338-63.721 21.755-64.025Q21.765-64.029 21.772-64.030Q21.779-64.032 21.789-64.032L21.857-64.032Q21.892-64.032 21.914-64.008Q21.936-63.984 21.936-63.947Q21.936-63.902 21.909-63.885Q21.560-63.584 21.307-63.200Q21.054-62.815 20.902-62.374Q20.750-61.933 20.678-61.477Q20.606-61.021 20.606-60.532Q20.606-59.531 20.916-58.644Q21.225-57.757 21.909-57.172Q21.936-57.155 21.936-57.111Q21.936-57.073 21.914-57.049Q21.892-57.025 21.857-57.025L21.789-57.025Q21.782-57.029 21.774-57.030Q21.765-57.032 21.755-57.032M22.746-58.789L22.746-59.852Q22.746-59.876 22.773-59.903Q22.801-59.930 22.825-59.930L22.934-59.930Q22.999-59.930 23.013-59.872Q23.108-59.438 23.354-59.187Q23.601-58.936 24.014-58.936Q24.356-58.936 24.609-59.069Q24.862-59.202 24.862-59.510Q24.862-59.667 24.768-59.782Q24.674-59.896 24.535-59.965Q24.397-60.033 24.229-60.071L23.648-60.170Q23.293-60.238 23.019-60.459Q22.746-60.679 22.746-61.021Q22.746-61.270 22.857-61.445Q22.968-61.619 23.155-61.718Q23.341-61.817 23.556-61.860Q23.771-61.903 24.014-61.903Q24.428-61.903 24.708-61.721L24.923-61.896Q24.934-61.899 24.940-61.901Q24.947-61.903 24.957-61.903L25.009-61.903Q25.036-61.903 25.060-61.879Q25.084-61.855 25.084-61.827L25.084-60.980Q25.084-60.959 25.060-60.932Q25.036-60.905 25.009-60.905L24.896-60.905Q24.869-60.905 24.843-60.930Q24.817-60.956 24.817-60.980Q24.817-61.216 24.711-61.380Q24.605-61.544 24.423-61.626Q24.240-61.708 24.007-61.708Q23.679-61.708 23.423-61.605Q23.166-61.503 23.166-61.226Q23.166-61.031 23.349-60.922Q23.532-60.812 23.761-60.771L24.335-60.665Q24.582-60.617 24.795-60.489Q25.009-60.361 25.145-60.158Q25.282-59.954 25.282-59.705Q25.282-59.192 24.916-58.953Q24.551-58.714 24.014-58.714Q23.519-58.714 23.187-59.008L22.920-58.734Q22.900-58.714 22.873-58.714L22.825-58.714Q22.801-58.714 22.773-58.741Q22.746-58.768 22.746-58.789M25.870-60.265Q25.870-60.607 26.005-60.906Q26.140-61.205 26.379-61.429Q26.619-61.653 26.936-61.778Q27.254-61.903 27.586-61.903Q28.030-61.903 28.430-61.687Q28.830-61.472 29.064-61.094Q29.298-60.717 29.298-60.265Q29.298-59.924 29.156-59.640Q29.015-59.356 28.770-59.149Q28.526-58.943 28.217-58.828Q27.907-58.714 27.586-58.714Q27.155-58.714 26.754-58.915Q26.352-59.117 26.111-59.469Q25.870-59.821 25.870-60.265M27.586-58.963Q28.187-58.963 28.411-59.341Q28.635-59.719 28.635-60.351Q28.635-60.963 28.401-61.322Q28.167-61.680 27.586-61.680Q26.533-61.680 26.533-60.351Q26.533-59.719 26.759-59.341Q26.984-58.963 27.586-58.963M30.467-59.616L30.467-61.120Q30.467-61.390 30.360-61.451Q30.252-61.513 29.941-61.513L29.941-61.793L31.048-61.868L31.048-59.636L31.048-59.616Q31.048-59.336 31.100-59.192Q31.151-59.049 31.293-58.992Q31.435-58.936 31.722-58.936Q31.975-58.936 32.180-59.076Q32.385-59.216 32.501-59.442Q32.617-59.667 32.617-59.917L32.617-61.120Q32.617-61.390 32.509-61.451Q32.402-61.513 32.091-61.513L32.091-61.793L33.198-61.868L33.198-59.455Q33.198-59.264 33.251-59.182Q33.304-59.100 33.405-59.081Q33.506-59.062 33.721-59.062L33.721-58.782L32.644-58.714L32.644-59.278Q32.535-59.096 32.390-58.973Q32.245-58.850 32.058-58.782Q31.872-58.714 31.670-58.714Q30.467-58.714 30.467-59.616M36.059-58.782L34.323-58.782L34.323-59.062Q34.552-59.062 34.700-59.096Q34.849-59.131 34.849-59.271L34.849-61.120Q34.849-61.390 34.741-61.451Q34.634-61.513 34.323-61.513L34.323-61.793L35.352-61.868L35.352-61.161Q35.481-61.469 35.724-61.668Q35.967-61.868 36.285-61.868Q36.503-61.868 36.674-61.744Q36.845-61.619 36.845-61.407Q36.845-61.270 36.746-61.171Q36.647-61.072 36.514-61.072Q36.377-61.072 36.278-61.171Q36.179-61.270 36.179-61.407Q36.179-61.547 36.278-61.646Q35.987-61.646 35.787-61.450Q35.587-61.253 35.495-60.959Q35.403-60.665 35.403-60.385L35.403-59.271Q35.403-59.062 36.059-59.062L36.059-58.782M37.430-60.293Q37.430-60.621 37.565-60.922Q37.700-61.222 37.936-61.443Q38.171-61.663 38.476-61.783Q38.780-61.903 39.104-61.903Q39.610-61.903 39.959-61.800Q40.308-61.698 40.308-61.322Q40.308-61.175 40.210-61.074Q40.113-60.973 39.966-60.973Q39.812-60.973 39.713-61.072Q39.614-61.171 39.614-61.322Q39.614-61.510 39.754-61.602Q39.552-61.653 39.111-61.653Q38.756-61.653 38.527-61.457Q38.298-61.260 38.197-60.951Q38.096-60.641 38.096-60.293Q38.096-59.944 38.223-59.638Q38.349-59.332 38.604-59.148Q38.858-58.963 39.214-58.963Q39.436-58.963 39.621-59.047Q39.805-59.131 39.940-59.286Q40.075-59.442 40.133-59.650Q40.147-59.705 40.202-59.705L40.314-59.705Q40.345-59.705 40.367-59.681Q40.390-59.657 40.390-59.623L40.390-59.602Q40.304-59.315 40.116-59.117Q39.928-58.919 39.663-58.816Q39.398-58.714 39.104-58.714Q38.674-58.714 38.286-58.920Q37.898-59.127 37.664-59.490Q37.430-59.852 37.430-60.293M40.936-60.317Q40.936-60.638 41.061-60.927Q41.186-61.216 41.412-61.439Q41.637-61.663 41.933-61.783Q42.228-61.903 42.546-61.903Q42.874-61.903 43.136-61.803Q43.397-61.704 43.573-61.522Q43.749-61.339 43.843-61.081Q43.937-60.823 43.937-60.491Q43.937-60.399 43.855-60.378L41.600-60.378L41.600-60.317Q41.600-59.729 41.883-59.346Q42.167-58.963 42.734-58.963Q43.056-58.963 43.324-59.156Q43.592-59.349 43.681-59.664Q43.688-59.705 43.763-59.719L43.855-59.719Q43.937-59.695 43.937-59.623Q43.937-59.616 43.931-59.589Q43.818-59.192 43.447-58.953Q43.076-58.714 42.652-58.714Q42.215-58.714 41.815-58.922Q41.415-59.131 41.176-59.498Q40.936-59.865 40.936-60.317M41.606-60.587L43.421-60.587Q43.421-60.864 43.324-61.116Q43.227-61.369 43.028-61.525Q42.830-61.680 42.546-61.680Q42.269-61.680 42.056-61.522Q41.842-61.363 41.724-61.108Q41.606-60.853 41.606-60.587M44.847-57.025L44.778-57.025Q44.744-57.025 44.722-57.051Q44.700-57.076 44.700-57.111Q44.700-57.155 44.730-57.172Q45.086-57.476 45.335-57.866Q45.585-58.256 45.737-58.688Q45.889-59.120 45.959-59.589Q46.029-60.057 46.029-60.532Q46.029-61.011 45.959-61.477Q45.889-61.944 45.735-62.379Q45.582-62.815 45.330-63.203Q45.079-63.591 44.730-63.885Q44.700-63.902 44.700-63.947Q44.700-63.981 44.722-64.006Q44.744-64.032 44.778-64.032L44.847-64.032Q44.857-64.032 44.865-64.030Q44.874-64.029 44.884-64.025Q45.428-63.625 45.800-63.072Q46.173-62.518 46.354-61.872Q46.535-61.226 46.535-60.532Q46.535-59.831 46.354-59.184Q46.173-58.536 45.799-57.982Q45.424-57.428 44.884-57.032Q44.874-57.032 44.865-57.030Q44.857-57.029 44.847-57.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(123.397 30.203)\">\u003Cpath d=\"M-23.660-58.782L-25.396-58.782L-25.396-59.062Q-25.167-59.062-25.018-59.096Q-24.870-59.131-24.870-59.271L-24.870-61.120Q-24.870-61.390-24.977-61.451Q-25.085-61.513-25.396-61.513L-25.396-61.793L-24.367-61.868L-24.367-61.161Q-24.237-61.469-23.995-61.668Q-23.752-61.868-23.434-61.868Q-23.215-61.868-23.044-61.744Q-22.873-61.619-22.873-61.407Q-22.873-61.270-22.973-61.171Q-23.072-61.072-23.205-61.072Q-23.342-61.072-23.441-61.171Q-23.540-61.270-23.540-61.407Q-23.540-61.547-23.441-61.646Q-23.731-61.646-23.931-61.450Q-24.131-61.253-24.224-60.959Q-24.316-60.665-24.316-60.385L-24.316-59.271Q-24.316-59.062-23.660-59.062L-23.660-58.782M-22.330-60.317Q-22.330-60.638-22.205-60.927Q-22.080-61.216-21.855-61.439Q-21.629-61.663-21.334-61.783Q-21.038-61.903-20.720-61.903Q-20.392-61.903-20.130-61.803Q-19.869-61.704-19.693-61.522Q-19.517-61.339-19.423-61.081Q-19.329-60.823-19.329-60.491Q-19.329-60.399-19.411-60.378L-21.667-60.378L-21.667-60.317Q-21.667-59.729-21.383-59.346Q-21.099-58.963-20.532-58.963Q-20.211-58.963-19.943-59.156Q-19.674-59.349-19.585-59.664Q-19.578-59.705-19.503-59.719L-19.411-59.719Q-19.329-59.695-19.329-59.623Q-19.329-59.616-19.336-59.589Q-19.449-59.192-19.819-58.953Q-20.190-58.714-20.614-58.714Q-21.052-58.714-21.452-58.922Q-21.851-59.131-22.091-59.498Q-22.330-59.865-22.330-60.317M-21.660-60.587L-19.845-60.587Q-19.845-60.864-19.943-61.116Q-20.040-61.369-20.238-61.525Q-20.436-61.680-20.720-61.680Q-20.997-61.680-21.211-61.522Q-21.424-61.363-21.542-61.108Q-21.660-60.853-21.660-60.587M-18.782-58.249Q-18.782-58.495-18.586-58.679Q-18.389-58.864-18.133-58.943Q-18.269-59.055-18.341-59.216Q-18.413-59.377-18.413-59.558Q-18.413-59.879-18.201-60.125Q-18.536-60.423-18.536-60.833Q-18.536-61.294-18.146-61.581Q-17.757-61.868-17.278-61.868Q-16.807-61.868-16.472-61.622Q-16.297-61.776-16.087-61.858Q-15.877-61.940-15.648-61.940Q-15.484-61.940-15.362-61.833Q-15.241-61.725-15.241-61.561Q-15.241-61.465-15.313-61.393Q-15.385-61.322-15.477-61.322Q-15.576-61.322-15.646-61.395Q-15.716-61.469-15.716-61.568Q-15.716-61.622-15.703-61.653L-15.696-61.667Q-15.689-61.687-15.680-61.698Q-15.672-61.708-15.668-61.715Q-16.024-61.715-16.311-61.492Q-16.024-61.199-16.024-60.833Q-16.024-60.518-16.208-60.286Q-16.393-60.053-16.682-59.925Q-16.971-59.797-17.278-59.797Q-17.480-59.797-17.671-59.847Q-17.863-59.896-18.040-60.006Q-18.133-59.879-18.133-59.736Q-18.133-59.554-18.005-59.419Q-17.876-59.284-17.692-59.284L-17.059-59.284Q-16.612-59.284-16.243-59.213Q-15.873-59.141-15.614-58.912Q-15.354-58.683-15.354-58.249Q-15.354-57.928-15.650-57.726Q-15.945-57.524-16.349-57.435Q-16.752-57.346-17.066-57.346Q-17.384-57.346-17.787-57.435Q-18.191-57.524-18.486-57.726Q-18.782-57.928-18.782-58.249M-18.328-58.249Q-18.328-58.020-18.109-57.871Q-17.890-57.722-17.598-57.654Q-17.306-57.586-17.066-57.586Q-16.902-57.586-16.694-57.622Q-16.485-57.657-16.278-57.738Q-16.072-57.818-15.940-57.946Q-15.808-58.074-15.808-58.249Q-15.808-58.601-16.190-58.695Q-16.571-58.789-17.073-58.789L-17.692-58.789Q-17.931-58.789-18.129-58.638Q-18.328-58.488-18.328-58.249M-17.278-60.036Q-16.612-60.036-16.612-60.833Q-16.612-61.633-17.278-61.633Q-17.948-61.633-17.948-60.833Q-17.948-60.036-17.278-60.036M-13.142-58.782L-14.694-58.782L-14.694-59.062Q-14.469-59.062-14.320-59.096Q-14.171-59.131-14.171-59.271L-14.171-61.120Q-14.171-61.308-14.219-61.392Q-14.267-61.475-14.364-61.494Q-14.462-61.513-14.674-61.513L-14.674-61.793L-13.618-61.868L-13.618-59.271Q-13.618-59.131-13.486-59.096Q-13.354-59.062-13.142-59.062L-13.142-58.782M-14.414-63.089Q-14.414-63.260-14.291-63.379Q-14.168-63.499-13.997-63.499Q-13.829-63.499-13.706-63.379Q-13.583-63.260-13.583-63.089Q-13.583-62.914-13.706-62.791Q-13.829-62.668-13.997-62.668Q-14.168-62.668-14.291-62.791Q-14.414-62.914-14.414-63.089M-12.496-58.789L-12.496-59.852Q-12.496-59.876-12.469-59.903Q-12.442-59.930-12.418-59.930L-12.308-59.930Q-12.244-59.930-12.230-59.872Q-12.134-59.438-11.888-59.187Q-11.642-58.936-11.228-58.936Q-10.887-58.936-10.634-59.069Q-10.381-59.202-10.381-59.510Q-10.381-59.667-10.475-59.782Q-10.569-59.896-10.707-59.965Q-10.846-60.033-11.013-60.071L-11.594-60.170Q-11.950-60.238-12.223-60.459Q-12.496-60.679-12.496-61.021Q-12.496-61.270-12.385-61.445Q-12.274-61.619-12.088-61.718Q-11.902-61.817-11.686-61.860Q-11.471-61.903-11.228-61.903Q-10.815-61.903-10.535-61.721L-10.319-61.896Q-10.309-61.899-10.302-61.901Q-10.295-61.903-10.285-61.903L-10.234-61.903Q-10.206-61.903-10.182-61.879Q-10.159-61.855-10.159-61.827L-10.159-60.980Q-10.159-60.959-10.182-60.932Q-10.206-60.905-10.234-60.905L-10.347-60.905Q-10.374-60.905-10.400-60.930Q-10.425-60.956-10.425-60.980Q-10.425-61.216-10.531-61.380Q-10.637-61.544-10.820-61.626Q-11.003-61.708-11.235-61.708Q-11.563-61.708-11.820-61.605Q-12.076-61.503-12.076-61.226Q-12.076-61.031-11.893-60.922Q-11.710-60.812-11.481-60.771L-10.907-60.665Q-10.661-60.617-10.447-60.489Q-10.234-60.361-10.097-60.158Q-9.960-59.954-9.960-59.705Q-9.960-59.192-10.326-58.953Q-10.692-58.714-11.228-58.714Q-11.724-58.714-12.056-59.008L-12.322-58.734Q-12.343-58.714-12.370-58.714L-12.418-58.714Q-12.442-58.714-12.469-58.741Q-12.496-58.768-12.496-58.789M-8.805-59.623L-8.805-61.520L-9.444-61.520L-9.444-61.742Q-9.126-61.742-8.909-61.952Q-8.692-62.162-8.591-62.472Q-8.491-62.781-8.491-63.089L-8.224-63.089L-8.224-61.800L-7.147-61.800L-7.147-61.520L-8.224-61.520L-8.224-59.636Q-8.224-59.360-8.120-59.161Q-8.016-58.963-7.756-58.963Q-7.599-58.963-7.493-59.067Q-7.387-59.172-7.337-59.325Q-7.287-59.479-7.287-59.636L-7.287-60.050L-7.021-60.050L-7.021-59.623Q-7.021-59.397-7.120-59.187Q-7.219-58.977-7.404-58.845Q-7.588-58.714-7.817-58.714Q-8.255-58.714-8.530-58.951Q-8.805-59.189-8.805-59.623M-6.252-60.317Q-6.252-60.638-6.127-60.927Q-6.002-61.216-5.777-61.439Q-5.551-61.663-5.255-61.783Q-4.960-61.903-4.642-61.903Q-4.314-61.903-4.052-61.803Q-3.791-61.704-3.615-61.522Q-3.439-61.339-3.345-61.081Q-3.251-60.823-3.251-60.491Q-3.251-60.399-3.333-60.378L-5.589-60.378L-5.589-60.317Q-5.589-59.729-5.305-59.346Q-5.021-58.963-4.454-58.963Q-4.133-58.963-3.864-59.156Q-3.596-59.349-3.507-59.664Q-3.500-59.705-3.425-59.719L-3.333-59.719Q-3.251-59.695-3.251-59.623Q-3.251-59.616-3.258-59.589Q-3.370-59.192-3.741-58.953Q-4.112-58.714-4.536-58.714Q-4.974-58.714-5.373-58.922Q-5.773-59.131-6.013-59.498Q-6.252-59.865-6.252-60.317M-5.582-60.587L-3.767-60.587Q-3.767-60.864-3.864-61.116Q-3.962-61.369-4.160-61.525Q-4.358-61.680-4.642-61.680Q-4.919-61.680-5.132-61.522Q-5.346-61.363-5.464-61.108Q-5.582-60.853-5.582-60.587M-0.913-58.782L-2.649-58.782L-2.649-59.062Q-2.420-59.062-2.272-59.096Q-2.123-59.131-2.123-59.271L-2.123-61.120Q-2.123-61.390-2.231-61.451Q-2.338-61.513-2.649-61.513L-2.649-61.793L-1.620-61.868L-1.620-61.161Q-1.491-61.469-1.248-61.668Q-1.005-61.868-0.687-61.868Q-0.469-61.868-0.298-61.744Q-0.127-61.619-0.127-61.407Q-0.127-61.270-0.226-61.171Q-0.325-61.072-0.458-61.072Q-0.595-61.072-0.694-61.171Q-0.793-61.270-0.793-61.407Q-0.793-61.547-0.694-61.646Q-0.985-61.646-1.185-61.450Q-1.385-61.253-1.477-60.959Q-1.569-60.665-1.569-60.385L-1.569-59.271Q-1.569-59.062-0.913-59.062\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(123.397 30.203)\">\u003Cpath d=\"M5.318-57.032Q4.768-57.432 4.397-57.987Q4.026-58.543 3.845-59.189Q3.664-59.835 3.664-60.532Q3.664-61.045 3.764-61.540Q3.865-62.036 4.070-62.487Q4.275-62.938 4.588-63.330Q4.901-63.721 5.318-64.025Q5.328-64.029 5.335-64.030Q5.342-64.032 5.352-64.032L5.420-64.032Q5.455-64.032 5.477-64.008Q5.499-63.984 5.499-63.947Q5.499-63.902 5.472-63.885Q5.123-63.584 4.870-63.200Q4.617-62.815 4.465-62.374Q4.313-61.933 4.241-61.477Q4.169-61.021 4.169-60.532Q4.169-59.531 4.479-58.644Q4.788-57.757 5.472-57.172Q5.499-57.155 5.499-57.111Q5.499-57.073 5.477-57.049Q5.455-57.025 5.420-57.025L5.352-57.025Q5.345-57.029 5.337-57.030Q5.328-57.032 5.318-57.032M6.309-60.293Q6.309-60.631 6.449-60.922Q6.589-61.212 6.834-61.426Q7.078-61.639 7.382-61.754Q7.687-61.868 8.011-61.868Q8.281-61.868 8.544-61.769Q8.808-61.670 8.999-61.492L8.999-62.890Q8.999-63.160 8.891-63.222Q8.784-63.283 8.473-63.283L8.473-63.564L9.549-63.639L9.549-59.455Q9.549-59.267 9.604-59.184Q9.659-59.100 9.759-59.081Q9.860-59.062 10.076-59.062L10.076-58.782L8.968-58.714L8.968-59.131Q8.551-58.714 7.926-58.714Q7.495-58.714 7.123-58.926Q6.750-59.137 6.530-59.498Q6.309-59.859 6.309-60.293M7.984-58.936Q8.192-58.936 8.379-59.008Q8.565-59.079 8.719-59.216Q8.873-59.353 8.968-59.531L8.968-61.140Q8.883-61.287 8.738-61.407Q8.592-61.527 8.423-61.586Q8.254-61.646 8.073-61.646Q7.512-61.646 7.244-61.257Q6.976-60.867 6.976-60.286Q6.976-59.715 7.210-59.325Q7.444-58.936 7.984-58.936M10.684-60.317Q10.684-60.638 10.809-60.927Q10.934-61.216 11.159-61.439Q11.385-61.663 11.680-61.783Q11.976-61.903 12.294-61.903Q12.622-61.903 12.884-61.803Q13.145-61.704 13.321-61.522Q13.497-61.339 13.591-61.081Q13.685-60.823 13.685-60.491Q13.685-60.399 13.603-60.378L11.347-60.378L11.347-60.317Q11.347-59.729 11.631-59.346Q11.915-58.963 12.482-58.963Q12.803-58.963 13.072-59.156Q13.340-59.349 13.429-59.664Q13.436-59.705 13.511-59.719L13.603-59.719Q13.685-59.695 13.685-59.623Q13.685-59.616 13.678-59.589Q13.565-59.192 13.195-58.953Q12.824-58.714 12.400-58.714Q11.962-58.714 11.562-58.922Q11.163-59.131 10.923-59.498Q10.684-59.865 10.684-60.317M11.354-60.587L13.169-60.587Q13.169-60.864 13.072-61.116Q12.974-61.369 12.776-61.525Q12.578-61.680 12.294-61.680Q12.017-61.680 11.803-61.522Q11.590-61.363 11.472-61.108Q11.354-60.853 11.354-60.587M14.273-58.789L14.273-59.852Q14.273-59.876 14.300-59.903Q14.328-59.930 14.352-59.930L14.461-59.930Q14.526-59.930 14.540-59.872Q14.635-59.438 14.881-59.187Q15.127-58.936 15.541-58.936Q15.883-58.936 16.136-59.069Q16.389-59.202 16.389-59.510Q16.389-59.667 16.295-59.782Q16.201-59.896 16.062-59.965Q15.924-60.033 15.756-60.071L15.175-60.170Q14.820-60.238 14.546-60.459Q14.273-60.679 14.273-61.021Q14.273-61.270 14.384-61.445Q14.495-61.619 14.681-61.718Q14.868-61.817 15.083-61.860Q15.298-61.903 15.541-61.903Q15.955-61.903 16.235-61.721L16.450-61.896Q16.460-61.899 16.467-61.901Q16.474-61.903 16.484-61.903L16.536-61.903Q16.563-61.903 16.587-61.879Q16.611-61.855 16.611-61.827L16.611-60.980Q16.611-60.959 16.587-60.932Q16.563-60.905 16.536-60.905L16.423-60.905Q16.395-60.905 16.370-60.930Q16.344-60.956 16.344-60.980Q16.344-61.216 16.238-61.380Q16.132-61.544 15.949-61.626Q15.767-61.708 15.534-61.708Q15.206-61.708 14.950-61.605Q14.693-61.503 14.693-61.226Q14.693-61.031 14.876-60.922Q15.059-60.812 15.288-60.771L15.862-60.665Q16.108-60.617 16.322-60.489Q16.536-60.361 16.672-60.158Q16.809-59.954 16.809-59.705Q16.809-59.192 16.443-58.953Q16.078-58.714 15.541-58.714Q15.045-58.714 14.714-59.008L14.447-58.734Q14.427-58.714 14.399-58.714L14.352-58.714Q14.328-58.714 14.300-58.741Q14.273-58.768 14.273-58.789M17.964-59.623L17.964-61.520L17.325-61.520L17.325-61.742Q17.643-61.742 17.860-61.952Q18.077-62.162 18.178-62.472Q18.279-62.781 18.279-63.089L18.545-63.089L18.545-61.800L19.622-61.800L19.622-61.520L18.545-61.520L18.545-59.636Q18.545-59.360 18.650-59.161Q18.754-58.963 19.014-58.963Q19.171-58.963 19.277-59.067Q19.383-59.172 19.432-59.325Q19.482-59.479 19.482-59.636L19.482-60.050L19.749-60.050L19.749-59.623Q19.749-59.397 19.649-59.187Q19.550-58.977 19.366-58.845Q19.181-58.714 18.952-58.714Q18.515-58.714 18.239-58.951Q17.964-59.189 17.964-59.623M20.880-57.025L20.812-57.025Q20.777-57.025 20.755-57.051Q20.733-57.076 20.733-57.111Q20.733-57.155 20.764-57.172Q21.119-57.476 21.369-57.866Q21.618-58.256 21.770-58.688Q21.922-59.120 21.992-59.589Q22.062-60.057 22.062-60.532Q22.062-61.011 21.992-61.477Q21.922-61.944 21.769-62.379Q21.615-62.815 21.364-63.203Q21.112-63.591 20.764-63.885Q20.733-63.902 20.733-63.947Q20.733-63.981 20.755-64.006Q20.777-64.032 20.812-64.032L20.880-64.032Q20.890-64.032 20.899-64.030Q20.907-64.029 20.917-64.025Q21.461-63.625 21.833-63.072Q22.206-62.518 22.387-61.872Q22.568-61.226 22.568-60.532Q22.568-59.831 22.387-59.184Q22.206-58.536 21.832-57.982Q21.457-57.428 20.917-57.032Q20.907-57.032 20.899-57.030Q20.890-57.029 20.880-57.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:1.2\">\u003Cpath fill=\"none\" d=\"M2.928-58.782h87.45\"\u002F>\u003Cpath stroke=\"none\" d=\"m93.577-58.782-5.12-2.56 1.92 2.56-1.92 2.56\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(52.192 -5.294)\">\u003Cpath d=\"M-25.410-60.293Q-25.410-60.621-25.275-60.922Q-25.140-61.222-24.904-61.443Q-24.668-61.663-24.364-61.783Q-24.059-61.903-23.735-61.903Q-23.229-61.903-22.880-61.800Q-22.532-61.698-22.532-61.322Q-22.532-61.175-22.629-61.074Q-22.726-60.973-22.873-60.973Q-23.027-60.973-23.126-61.072Q-23.225-61.171-23.225-61.322Q-23.225-61.510-23.085-61.602Q-23.287-61.653-23.728-61.653Q-24.083-61.653-24.312-61.457Q-24.541-61.260-24.642-60.951Q-24.743-60.641-24.743-60.293Q-24.743-59.944-24.617-59.638Q-24.490-59.332-24.235-59.148Q-23.981-58.963-23.625-58.963Q-23.403-58.963-23.219-59.047Q-23.034-59.131-22.899-59.286Q-22.764-59.442-22.706-59.650Q-22.692-59.705-22.638-59.705L-22.525-59.705Q-22.494-59.705-22.472-59.681Q-22.450-59.657-22.450-59.623L-22.450-59.602Q-22.535-59.315-22.723-59.117Q-22.911-58.919-23.176-58.816Q-23.441-58.714-23.735-58.714Q-24.165-58.714-24.553-58.920Q-24.941-59.127-25.175-59.490Q-25.410-59.852-25.410-60.293M-21.903-60.265Q-21.903-60.607-21.768-60.906Q-21.633-61.205-21.393-61.429Q-21.154-61.653-20.836-61.778Q-20.518-61.903-20.187-61.903Q-19.743-61.903-19.343-61.687Q-18.943-61.472-18.709-61.094Q-18.474-60.717-18.474-60.265Q-18.474-59.924-18.616-59.640Q-18.758-59.356-19.003-59.149Q-19.247-58.943-19.556-58.828Q-19.866-58.714-20.187-58.714Q-20.618-58.714-21.019-58.915Q-21.421-59.117-21.662-59.469Q-21.903-59.821-21.903-60.265M-20.187-58.963Q-19.585-58.963-19.361-59.341Q-19.138-59.719-19.138-60.351Q-19.138-60.963-19.372-61.322Q-19.606-61.680-20.187-61.680Q-21.240-61.680-21.240-60.351Q-21.240-59.719-21.014-59.341Q-20.788-58.963-20.187-58.963M-16.236-57.425L-17.866-57.425L-17.866-57.705Q-17.637-57.705-17.488-57.740Q-17.340-57.774-17.340-57.914L-17.340-61.260Q-17.340-61.431-17.476-61.472Q-17.613-61.513-17.866-61.513L-17.866-61.793L-16.786-61.868L-16.786-61.462Q-16.564-61.663-16.277-61.766Q-15.990-61.868-15.682-61.868Q-15.255-61.868-14.891-61.655Q-14.527-61.441-14.313-61.077Q-14.099-60.713-14.099-60.293Q-14.099-59.848-14.339-59.484Q-14.578-59.120-14.971-58.917Q-15.364-58.714-15.808-58.714Q-16.075-58.714-16.323-58.814Q-16.571-58.915-16.759-59.096L-16.759-57.914Q-16.759-57.777-16.610-57.741Q-16.461-57.705-16.236-57.705L-16.236-57.425M-16.759-61.113L-16.759-59.503Q-16.625-59.250-16.383-59.093Q-16.140-58.936-15.863-58.936Q-15.535-58.936-15.282-59.137Q-15.029-59.339-14.896-59.657Q-14.763-59.975-14.763-60.293Q-14.763-60.522-14.828-60.751Q-14.892-60.980-15.021-61.178Q-15.149-61.376-15.344-61.496Q-15.538-61.615-15.771-61.615Q-16.065-61.615-16.333-61.486Q-16.601-61.356-16.759-61.113\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.192 -5.294)\">\u003Cpath d=\"M-13.332-57.647Q-13.202-57.579-13.065-57.579Q-12.894-57.579-12.744-57.668Q-12.593-57.757-12.482-57.902Q-12.371-58.047-12.293-58.215L-12.029-58.782L-13.198-61.308Q-13.273-61.455-13.403-61.487Q-13.533-61.520-13.766-61.520L-13.766-61.800L-12.245-61.800L-12.245-61.520Q-12.593-61.520-12.593-61.373Q-12.590-61.352-12.588-61.335Q-12.586-61.318-12.586-61.308L-11.729-59.449L-10.956-61.120Q-10.922-61.188-10.922-61.267Q-10.922-61.380-11.006-61.450Q-11.089-61.520-11.202-61.520L-11.202-61.800L-10.006-61.800L-10.006-61.520Q-10.225-61.520-10.397-61.416Q-10.570-61.311-10.662-61.120L-11.999-58.215Q-12.169-57.845-12.439-57.599Q-12.710-57.353-13.065-57.353Q-13.335-57.353-13.554-57.519Q-13.773-57.685-13.773-57.948Q-13.773-58.085-13.680-58.174Q-13.588-58.262-13.448-58.262Q-13.311-58.262-13.222-58.174Q-13.133-58.085-13.133-57.948Q-13.133-57.845-13.186-57.767Q-13.239-57.688-13.332-57.647\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.192 -5.294)\">\u003Cpath d=\"M-6.706-59.859Q-6.706-60.300-6.403-60.621Q-6.101-60.942-5.649-61.134L-5.889-61.274Q-6.159-61.434-6.325-61.692Q-6.490-61.950-6.490-62.248Q-6.490-62.600-6.285-62.872Q-6.080-63.143-5.759-63.287Q-5.438-63.430-5.096-63.430Q-4.774-63.430-4.451-63.314Q-4.128-63.198-3.917-62.957Q-3.705-62.716-3.705-62.381Q-3.705-62.019-3.949-61.756Q-4.193-61.492-4.573-61.315L-4.173-61.079Q-3.978-60.966-3.819-60.797Q-3.660-60.628-3.573-60.419Q-3.486-60.211-3.486-59.978Q-3.486-59.575-3.720-59.271Q-3.954-58.967-4.328-58.804Q-4.703-58.642-5.096-58.642Q-5.482-58.642-5.851-58.779Q-6.220-58.915-6.463-59.192Q-6.706-59.469-6.706-59.859M-6.258-59.859Q-6.258-59.572-6.089-59.349Q-5.919-59.127-5.651-59.011Q-5.383-58.895-5.096-58.895Q-4.658-58.895-4.296-59.112Q-3.934-59.329-3.934-59.736Q-3.934-59.937-4.062-60.115Q-4.190-60.293-4.368-60.392L-5.390-60.987Q-5.629-60.877-5.827-60.711Q-6.025-60.546-6.142-60.330Q-6.258-60.115-6.258-59.859M-5.735-61.988L-4.815-61.455Q-4.508-61.615-4.306-61.848Q-4.105-62.080-4.105-62.381Q-4.105-62.620-4.250-62.810Q-4.395-63-4.627-63.099Q-4.860-63.198-5.096-63.198Q-5.318-63.198-5.547-63.128Q-5.776-63.058-5.933-62.901Q-6.090-62.743-6.090-62.514Q-6.090-62.200-5.735-61.988\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.192 -5.294)\">\u003Cpath d=\"M0.716-58.782L0.449-58.782L0.449-62.890Q0.449-63.160 0.342-63.222Q0.234-63.283-0.077-63.283L-0.077-63.564L1.003-63.639L1.003-61.469Q1.212-61.660 1.497-61.764Q1.783-61.868 2.080-61.868Q2.398-61.868 2.695-61.747Q2.992-61.626 3.215-61.410Q3.437-61.195 3.563-60.910Q3.690-60.624 3.690-60.293Q3.690-59.848 3.450-59.484Q3.211-59.120 2.818-58.917Q2.425-58.714 1.981-58.714Q1.786-58.714 1.596-58.770Q1.407-58.826 1.246-58.931Q1.085-59.035 0.945-59.196L0.716-58.782M1.031-61.127L1.031-59.510Q1.167-59.250 1.408-59.093Q1.649-58.936 1.926-58.936Q2.220-58.936 2.432-59.043Q2.644-59.151 2.777-59.343Q2.910-59.534 2.969-59.773Q3.027-60.012 3.027-60.293Q3.027-60.652 2.933-60.956Q2.839-61.260 2.611-61.453Q2.384-61.646 2.018-61.646Q1.718-61.646 1.451-61.510Q1.184-61.373 1.031-61.127\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(52.192 -5.294)\">\u003Cpath d=\"M4.446-57.647Q4.576-57.579 4.713-57.579Q4.884-57.579 5.034-57.668Q5.185-57.757 5.296-57.902Q5.407-58.047 5.485-58.215L5.749-58.782L4.580-61.308Q4.505-61.455 4.375-61.487Q4.245-61.520 4.012-61.520L4.012-61.800L5.533-61.800L5.533-61.520Q5.185-61.520 5.185-61.373Q5.188-61.352 5.190-61.335Q5.192-61.318 5.192-61.308L6.049-59.449L6.822-61.120Q6.856-61.188 6.856-61.267Q6.856-61.380 6.772-61.450Q6.689-61.520 6.576-61.520L6.576-61.800L7.772-61.800L7.772-61.520Q7.553-61.520 7.381-61.416Q7.208-61.311 7.116-61.120L5.779-58.215Q5.609-57.845 5.339-57.599Q5.068-57.353 4.713-57.353Q4.443-57.353 4.224-57.519Q4.005-57.685 4.005-57.948Q4.005-58.085 4.098-58.174Q4.190-58.262 4.330-58.262Q4.467-58.262 4.556-58.174Q4.645-58.085 4.645-57.948Q4.645-57.845 4.592-57.767Q4.539-57.688 4.446-57.647M8.839-59.623L8.839-61.520L8.199-61.520L8.199-61.742Q8.517-61.742 8.734-61.952Q8.951-62.162 9.052-62.472Q9.153-62.781 9.153-63.089L9.420-63.089L9.420-61.800L10.496-61.800L10.496-61.520L9.420-61.520L9.420-59.636Q9.420-59.360 9.524-59.161Q9.628-58.963 9.888-58.963Q10.045-58.963 10.151-59.067Q10.257-59.172 10.307-59.325Q10.356-59.479 10.356-59.636L10.356-60.050L10.623-60.050L10.623-59.623Q10.623-59.397 10.524-59.187Q10.424-58.977 10.240-58.845Q10.055-58.714 9.826-58.714Q9.389-58.714 9.114-58.951Q8.839-59.189 8.839-59.623M11.392-60.317Q11.392-60.638 11.516-60.927Q11.641-61.216 11.867-61.439Q12.092-61.663 12.388-61.783Q12.684-61.903 13.002-61.903Q13.330-61.903 13.591-61.803Q13.853-61.704 14.029-61.522Q14.205-61.339 14.299-61.081Q14.393-60.823 14.393-60.491Q14.393-60.399 14.311-60.378L12.055-60.378L12.055-60.317Q12.055-59.729 12.339-59.346Q12.622-58.963 13.190-58.963Q13.511-58.963 13.779-59.156Q14.047-59.349 14.136-59.664Q14.143-59.705 14.218-59.719L14.311-59.719Q14.393-59.695 14.393-59.623Q14.393-59.616 14.386-59.589Q14.273-59.192 13.902-58.953Q13.531-58.714 13.108-58.714Q12.670-58.714 12.270-58.922Q11.870-59.131 11.631-59.498Q11.392-59.865 11.392-60.317M12.062-60.587L13.877-60.587Q13.877-60.864 13.779-61.116Q13.682-61.369 13.484-61.525Q13.285-61.680 13.002-61.680Q12.725-61.680 12.511-61.522Q12.297-61.363 12.180-61.108Q12.062-60.853 12.062-60.587M14.981-58.789L14.981-59.852Q14.981-59.876 15.008-59.903Q15.035-59.930 15.059-59.930L15.169-59.930Q15.234-59.930 15.247-59.872Q15.343-59.438 15.589-59.187Q15.835-58.936 16.249-58.936Q16.590-58.936 16.843-59.069Q17.096-59.202 17.096-59.510Q17.096-59.667 17.002-59.782Q16.908-59.896 16.770-59.965Q16.631-60.033 16.464-60.071L15.883-60.170Q15.527-60.238 15.254-60.459Q14.981-60.679 14.981-61.021Q14.981-61.270 15.092-61.445Q15.203-61.619 15.389-61.718Q15.575-61.817 15.791-61.860Q16.006-61.903 16.249-61.903Q16.662-61.903 16.943-61.721L17.158-61.896Q17.168-61.899 17.175-61.901Q17.182-61.903 17.192-61.903L17.243-61.903Q17.271-61.903 17.295-61.879Q17.318-61.855 17.318-61.827L17.318-60.980Q17.318-60.959 17.295-60.932Q17.271-60.905 17.243-60.905L17.130-60.905Q17.103-60.905 17.078-60.930Q17.052-60.956 17.052-60.980Q17.052-61.216 16.946-61.380Q16.840-61.544 16.657-61.626Q16.474-61.708 16.242-61.708Q15.914-61.708 15.657-61.605Q15.401-61.503 15.401-61.226Q15.401-61.031 15.584-60.922Q15.767-60.812 15.996-60.771L16.570-60.665Q16.816-60.617 17.030-60.489Q17.243-60.361 17.380-60.158Q17.517-59.954 17.517-59.705Q17.517-59.192 17.151-58.953Q16.785-58.714 16.249-58.714Q15.753-58.714 15.422-59.008L15.155-58.734Q15.134-58.714 15.107-58.714L15.059-58.714Q15.035-58.714 15.008-58.741Q14.981-58.768 14.981-58.789\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M-25.772-58.990L-25.772-59.069Q-25.727-59.254-25.557-59.271L-25.382-59.271L-25.382-61.308L-25.557-61.308Q-25.738-61.328-25.772-61.520L-25.772-61.595Q-25.727-61.783-25.557-61.800L-25.136-61.800Q-24.969-61.780-24.917-61.595Q-24.637-61.834-24.275-61.834Q-24.107-61.834-23.960-61.739Q-23.813-61.643-23.748-61.492Q-23.595-61.660-23.400-61.747Q-23.205-61.834-22.993-61.834Q-22.627-61.834-22.492-61.535Q-22.357-61.236-22.357-60.826L-22.357-59.271L-22.183-59.271Q-21.998-59.250-21.964-59.069L-21.964-58.990Q-22.009-58.803-22.183-58.782L-22.897-58.782Q-23.068-58.803-23.113-58.990L-23.113-59.069Q-23.068-59.250-22.897-59.271L-22.819-59.271L-22.819-60.799Q-22.819-61.345-23.037-61.345Q-23.328-61.345-23.484-61.074Q-23.639-60.802-23.639-60.484L-23.639-59.271L-23.461-59.271Q-23.280-59.250-23.246-59.069L-23.246-58.990Q-23.290-58.803-23.461-58.782L-24.176-58.782Q-24.350-58.803-24.394-58.990L-24.394-59.069Q-24.350-59.250-24.176-59.271L-24.100-59.271L-24.100-60.799Q-24.100-61.345-24.316-61.345Q-24.606-61.345-24.762-61.072Q-24.917-60.799-24.917-60.484L-24.917-59.271L-24.743-59.271Q-24.562-59.250-24.528-59.069L-24.528-58.990Q-24.572-58.799-24.743-58.782L-25.557-58.782Q-25.738-58.803-25.772-58.990M-20.153-58.748Q-20.566-58.748-20.903-58.961Q-21.240-59.175-21.434-59.534Q-21.629-59.893-21.629-60.293Q-21.629-60.594-21.520-60.876Q-21.411-61.157-21.209-61.380Q-21.007-61.602-20.739-61.728Q-20.471-61.855-20.153-61.855Q-19.835-61.855-19.561-61.727Q-19.288-61.598-19.093-61.383Q-18.898-61.168-18.787-60.887Q-18.676-60.607-18.676-60.293Q-18.676-59.893-18.873-59.532Q-19.069-59.172-19.406-58.960Q-19.743-58.748-20.153-58.748M-20.153-59.237Q-19.746-59.237-19.491-59.582Q-19.237-59.927-19.237-60.351Q-19.237-60.607-19.355-60.841Q-19.473-61.075-19.683-61.221Q-19.893-61.366-20.153-61.366Q-20.419-61.366-20.628-61.221Q-20.836-61.075-20.954-60.841Q-21.072-60.607-21.072-60.351Q-21.072-59.930-20.816-59.584Q-20.559-59.237-20.153-59.237M-16.844-58.977L-17.620-61.308L-17.900-61.308Q-18.075-61.328-18.119-61.520L-18.119-61.595Q-18.075-61.780-17.900-61.800L-16.885-61.800Q-16.714-61.783-16.670-61.595L-16.670-61.520Q-16.714-61.328-16.885-61.308L-17.131-61.308L-16.437-59.230L-15.747-61.308L-15.990-61.308Q-16.164-61.328-16.208-61.520L-16.208-61.595Q-16.164-61.780-15.990-61.800L-14.974-61.800Q-14.804-61.780-14.759-61.595L-14.759-61.520Q-14.804-61.328-14.974-61.308L-15.255-61.308L-16.031-58.977Q-16.068-58.878-16.157-58.813Q-16.246-58.748-16.355-58.748L-16.523-58.748Q-16.625-58.748-16.716-58.811Q-16.807-58.874-16.844-58.977M-12.555-57.432L-12.555-57.507Q-12.510-57.699-12.339-57.719L-11.932-57.719L-11.932-59.117Q-12.329-58.748-12.862-58.748Q-13.173-58.748-13.440-58.873Q-13.706-58.997-13.910-59.216Q-14.113-59.435-14.223-59.717Q-14.332-59.999-14.332-60.293Q-14.332-60.717-14.123-61.067Q-13.915-61.417-13.559-61.626Q-13.204-61.834-12.787-61.834Q-12.295-61.834-11.932-61.492L-11.932-61.633Q-11.888-61.817-11.714-61.834L-11.591-61.834Q-11.416-61.814-11.372-61.633L-11.372-57.719L-10.965-57.719Q-10.794-57.699-10.750-57.507L-10.750-57.432Q-10.794-57.247-10.965-57.227L-12.339-57.227Q-12.510-57.247-12.555-57.432M-12.821-59.237Q-12.496-59.237-12.255-59.459Q-12.015-59.681-11.932-59.999L-11.932-60.539Q-11.970-60.747-12.078-60.934Q-12.185-61.120-12.358-61.233Q-12.531-61.345-12.743-61.345Q-13.019-61.345-13.257-61.200Q-13.495-61.055-13.633-60.809Q-13.771-60.563-13.771-60.286Q-13.771-59.879-13.496-59.558Q-13.221-59.237-12.821-59.237\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M-5.711-57.032Q-6.261-57.432-6.632-57.987Q-7.003-58.543-7.184-59.189Q-7.365-59.835-7.365-60.532Q-7.365-61.045-7.265-61.540Q-7.164-62.036-6.959-62.487Q-6.754-62.938-6.441-63.330Q-6.128-63.721-5.711-64.025Q-5.701-64.029-5.694-64.030Q-5.687-64.032-5.677-64.032L-5.609-64.032Q-5.574-64.032-5.552-64.008Q-5.530-63.984-5.530-63.947Q-5.530-63.902-5.557-63.885Q-5.906-63.584-6.159-63.200Q-6.412-62.815-6.564-62.374Q-6.716-61.933-6.788-61.477Q-6.860-61.021-6.860-60.532Q-6.860-59.531-6.550-58.644Q-6.241-57.757-5.557-57.172Q-5.530-57.155-5.530-57.111Q-5.530-57.073-5.552-57.049Q-5.574-57.025-5.609-57.025L-5.677-57.025Q-5.684-57.029-5.692-57.030Q-5.701-57.032-5.711-57.032M-3.900-58.556Q-3.900-58.601-3.872-58.656L-0.465-63.236Q-0.905-63.031-1.381-63.031Q-1.968-63.031-2.536-63.318Q-2.403-63.007-2.403-62.624Q-2.403-62.309-2.515-61.981Q-2.628-61.653-2.857-61.433Q-3.086-61.212-3.411-61.212Q-3.753-61.212-4.014-61.422Q-4.276-61.633-4.411-61.961Q-4.546-62.289-4.546-62.624Q-4.546-62.955-4.411-63.283Q-4.276-63.612-4.014-63.822Q-3.753-64.032-3.411-64.032Q-3.127-64.032-2.878-63.824Q-2.556-63.550-2.179-63.403Q-1.801-63.256-1.387-63.256Q-0.950-63.256-0.560-63.437Q-0.171-63.618 0.082-63.964Q0.140-64.032 0.222-64.032Q0.291-64.032 0.340-63.982Q0.390-63.933 0.390-63.865Q0.390-63.820 0.363-63.765L-3.585-58.468Q-3.640-58.389-3.725-58.389Q-3.797-58.389-3.848-58.440Q-3.900-58.491-3.900-58.556M-3.411-61.434Q-3.168-61.434-2.999-61.629Q-2.830-61.824-2.749-62.106Q-2.669-62.388-2.669-62.624Q-2.669-62.791-2.714-63.001Q-2.758-63.212-2.843-63.386Q-2.929-63.560-3.076-63.683Q-3.223-63.806-3.411-63.806Q-3.766-63.806-3.893-63.436Q-4.019-63.065-4.019-62.624Q-4.019-62.179-3.893-61.807Q-3.766-61.434-3.411-61.434M0.028-58.389Q-0.314-58.389-0.576-58.601Q-0.837-58.813-0.972-59.141Q-1.107-59.469-1.107-59.804Q-1.107-60.136-0.972-60.462Q-0.837-60.788-0.576-61Q-0.314-61.212 0.028-61.212Q0.349-61.212 0.578-60.992Q0.807-60.771 0.921-60.443Q1.036-60.115 1.036-59.804Q1.036-59.490 0.921-59.160Q0.807-58.830 0.578-58.609Q0.349-58.389 0.028-58.389M0.028-58.615Q0.270-58.615 0.441-58.811Q0.612-59.008 0.691-59.286Q0.769-59.565 0.769-59.804Q0.769-59.971 0.725-60.182Q0.680-60.392 0.595-60.566Q0.510-60.740 0.363-60.864Q0.216-60.987 0.028-60.987Q-0.328-60.987-0.454-60.616Q-0.581-60.245-0.581-59.804Q-0.581-59.360-0.454-58.987Q-0.328-58.615 0.028-58.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M1.735-58.990L1.735-59.069Q1.786-59.250 1.954-59.271L2.576-59.271L2.576-61.308L1.954-61.308Q1.783-61.328 1.735-61.520L1.735-61.595Q1.786-61.780 1.954-61.800L2.917-61.800Q3.092-61.783 3.136-61.595L3.136-61.308Q3.365-61.557 3.676-61.696Q3.987-61.834 4.326-61.834Q4.582-61.834 4.787-61.716Q4.992-61.598 4.992-61.366Q4.992-61.219 4.896-61.116Q4.801-61.014 4.654-61.014Q4.520-61.014 4.420-61.111Q4.319-61.209 4.319-61.345Q3.991-61.345 3.716-61.169Q3.440-60.993 3.288-60.701Q3.136-60.409 3.136-60.077L3.136-59.271L3.963-59.271Q4.144-59.250 4.179-59.069L4.179-58.990Q4.144-58.803 3.963-58.782L1.954-58.782Q1.786-58.803 1.735-58.990M5.768-58.956L5.768-59.756Q5.792-59.937 5.977-59.958L6.123-59.958Q6.267-59.937 6.318-59.797Q6.496-59.237 7.132-59.237Q7.313-59.237 7.513-59.267Q7.713-59.298 7.860-59.399Q8.007-59.500 8.007-59.678Q8.007-59.862 7.812-59.961Q7.617-60.060 7.378-60.098L6.766-60.197Q5.768-60.382 5.768-61.014Q5.768-61.267 5.894-61.433Q6.021-61.598 6.231-61.692Q6.441-61.786 6.665-61.821Q6.889-61.855 7.132-61.855Q7.351-61.855 7.520-61.829Q7.689-61.803 7.832-61.735Q7.901-61.838 8.014-61.855L8.082-61.855Q8.167-61.844 8.222-61.790Q8.277-61.735 8.287-61.653L8.287-61.034Q8.277-60.952 8.222-60.894Q8.167-60.836 8.082-60.826L7.935-60.826Q7.853-60.836 7.795-60.894Q7.737-60.952 7.727-61.034Q7.727-61.366 7.118-61.366Q6.814-61.366 6.535-61.294Q6.257-61.222 6.257-61.007Q6.257-60.775 6.845-60.679L7.460-60.573Q7.884-60.501 8.190-60.284Q8.496-60.067 8.496-59.678Q8.496-59.336 8.289-59.124Q8.082-58.912 7.776-58.830Q7.470-58.748 7.132-58.748Q6.626-58.748 6.277-58.970Q6.216-58.861 6.173-58.811Q6.130-58.761 6.038-58.748L5.977-58.748Q5.789-58.768 5.768-58.956M9.511-58.990L9.511-59.069Q9.555-59.250 9.726-59.271L10.635-59.271L10.635-61.308L9.784-61.308Q9.610-61.328 9.565-61.520L9.565-61.595Q9.610-61.780 9.784-61.800L10.980-61.800Q11.151-61.783 11.196-61.595L11.196-59.271L11.996-59.271Q12.166-59.250 12.211-59.069L12.211-58.990Q12.166-58.803 11.996-58.782L9.726-58.782Q9.555-58.803 9.511-58.990M10.413-62.655L10.413-62.702Q10.413-62.853 10.533-62.959Q10.652-63.065 10.806-63.065Q10.957-63.065 11.076-62.959Q11.196-62.853 11.196-62.702L11.196-62.655Q11.196-62.501 11.076-62.395Q10.957-62.289 10.806-62.289Q10.652-62.289 10.533-62.395Q10.413-62.501 10.413-62.655\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M13.332-57.025L13.263-57.025Q13.229-57.025 13.207-57.051Q13.185-57.076 13.185-57.111Q13.185-57.155 13.216-57.172Q13.571-57.476 13.821-57.866Q14.070-58.256 14.222-58.688Q14.374-59.120 14.444-59.589Q14.514-60.057 14.514-60.532Q14.514-61.011 14.444-61.477Q14.374-61.944 14.220-62.379Q14.067-62.815 13.815-63.203Q13.564-63.591 13.216-63.885Q13.185-63.902 13.185-63.947Q13.185-63.981 13.207-64.006Q13.229-64.032 13.263-64.032L13.332-64.032Q13.342-64.032 13.351-64.030Q13.359-64.029 13.369-64.025Q13.913-63.625 14.285-63.072Q14.658-62.518 14.839-61.872Q15.020-61.226 15.020-60.532Q15.020-59.831 14.839-59.184Q14.658-58.536 14.284-57.982Q13.909-57.428 13.369-57.032Q13.359-57.032 13.351-57.030Q13.342-57.029 13.332-57.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M16.689-57.552Q16.689-57.586 16.717-57.613Q16.983-57.835 17.133-58.162Q17.284-58.488 17.284-58.844L17.284-58.881Q17.181-58.782 17.010-58.782Q16.833-58.782 16.711-58.903Q16.590-59.025 16.590-59.202Q16.590-59.373 16.711-59.495Q16.833-59.616 17.010-59.616Q17.270-59.616 17.390-59.377Q17.509-59.137 17.509-58.844Q17.509-58.440 17.339-58.071Q17.168-57.702 16.870-57.446Q16.840-57.425 16.816-57.425Q16.771-57.425 16.730-57.466Q16.689-57.507 16.689-57.552\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M20.697-58.556Q20.697-58.601 20.724-58.656L24.132-63.236Q23.691-63.031 23.216-63.031Q22.628-63.031 22.061-63.318Q22.194-63.007 22.194-62.624Q22.194-62.309 22.081-61.981Q21.968-61.653 21.739-61.433Q21.510-61.212 21.186-61.212Q20.844-61.212 20.582-61.422Q20.321-61.633 20.186-61.961Q20.051-62.289 20.051-62.624Q20.051-62.955 20.186-63.283Q20.321-63.612 20.582-63.822Q20.844-64.032 21.186-64.032Q21.469-64.032 21.719-63.824Q22.040-63.550 22.418-63.403Q22.795-63.256 23.209-63.256Q23.646-63.256 24.036-63.437Q24.426-63.618 24.679-63.964Q24.737-64.032 24.819-64.032Q24.887-64.032 24.937-63.982Q24.986-63.933 24.986-63.865Q24.986-63.820 24.959-63.765L21.011-58.468Q20.957-58.389 20.871-58.389Q20.799-58.389 20.748-58.440Q20.697-58.491 20.697-58.556M21.186-61.434Q21.428-61.434 21.597-61.629Q21.767-61.824 21.847-62.106Q21.927-62.388 21.927-62.624Q21.927-62.791 21.883-63.001Q21.838-63.212 21.753-63.386Q21.667-63.560 21.520-63.683Q21.374-63.806 21.186-63.806Q20.830-63.806 20.704-63.436Q20.577-63.065 20.577-62.624Q20.577-62.179 20.704-61.807Q20.830-61.434 21.186-61.434M24.624-58.389Q24.282-58.389 24.021-58.601Q23.759-58.813 23.624-59.141Q23.489-59.469 23.489-59.804Q23.489-60.136 23.624-60.462Q23.759-60.788 24.021-61Q24.282-61.212 24.624-61.212Q24.945-61.212 25.174-60.992Q25.403-60.771 25.518-60.443Q25.632-60.115 25.632-59.804Q25.632-59.490 25.518-59.160Q25.403-58.830 25.174-58.609Q24.945-58.389 24.624-58.389M24.624-58.615Q24.867-58.615 25.038-58.811Q25.208-59.008 25.287-59.286Q25.366-59.565 25.366-59.804Q25.366-59.971 25.321-60.182Q25.277-60.392 25.191-60.566Q25.106-60.740 24.959-60.864Q24.812-60.987 24.624-60.987Q24.269-60.987 24.142-60.616Q24.016-60.245 24.016-59.804Q24.016-59.360 24.142-58.987Q24.269-58.615 24.624-58.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(42.471 23.09)\">\u003Cpath d=\"M26.326-58.990L26.326-59.069Q26.377-59.250 26.545-59.271L27.167-59.271L27.167-61.308L26.545-61.308Q26.374-61.328 26.326-61.520L26.326-61.595Q26.377-61.780 26.545-61.800L27.508-61.800Q27.683-61.783 27.727-61.595L27.727-61.308Q27.956-61.557 28.267-61.696Q28.578-61.834 28.917-61.834Q29.173-61.834 29.378-61.716Q29.583-61.598 29.583-61.366Q29.583-61.219 29.487-61.116Q29.392-61.014 29.245-61.014Q29.111-61.014 29.011-61.111Q28.910-61.209 28.910-61.345Q28.582-61.345 28.307-61.169Q28.031-60.993 27.879-60.701Q27.727-60.409 27.727-60.077L27.727-59.271L28.554-59.271Q28.735-59.250 28.770-59.069L28.770-58.990Q28.735-58.803 28.554-58.782L26.545-58.782Q26.377-58.803 26.326-58.990M31.477-58.748Q31.070-58.748 30.750-58.967Q30.431-59.185 30.251-59.539Q30.072-59.893 30.072-60.293Q30.072-60.594 30.181-60.874Q30.291-61.154 30.494-61.373Q30.697-61.592 30.964-61.713Q31.231-61.834 31.542-61.834Q31.989-61.834 32.345-61.554L32.345-62.569L31.976-62.569Q31.791-62.590 31.757-62.778L31.757-62.856Q31.791-63.037 31.976-63.058L32.687-63.058Q32.861-63.037 32.905-62.856L32.905-59.271L33.278-59.271Q33.459-59.250 33.493-59.069L33.493-58.990Q33.459-58.803 33.278-58.782L32.564-58.782Q32.389-58.803 32.345-58.990L32.345-59.103Q32.174-58.936 31.945-58.842Q31.716-58.748 31.477-58.748M31.511-59.237Q31.825-59.237 32.046-59.472Q32.266-59.708 32.345-60.036L32.345-60.764Q32.294-60.928 32.183-61.060Q32.071-61.192 31.916-61.269Q31.760-61.345 31.589-61.345Q31.319-61.345 31.101-61.197Q30.882-61.048 30.756-60.799Q30.629-60.549 30.629-60.286Q30.629-59.893 30.879-59.565Q31.128-59.237 31.511-59.237M33.787-58.990L33.787-59.069Q33.821-59.250 34.003-59.271L34.358-59.271L35.172-60.337L34.409-61.308L34.044-61.308Q33.873-61.325 33.828-61.520L33.828-61.595Q33.873-61.780 34.044-61.800L35.059-61.800Q35.233-61.780 35.277-61.595L35.277-61.520Q35.233-61.328 35.059-61.308L34.963-61.308L35.397-60.734L35.814-61.308L35.712-61.308Q35.537-61.328 35.493-61.520L35.493-61.595Q35.537-61.780 35.712-61.800L36.727-61.800Q36.898-61.783 36.942-61.595L36.942-61.520Q36.898-61.328 36.727-61.308L36.368-61.308L35.626-60.337L36.467-59.271L36.822-59.271Q36.997-59.250 37.041-59.069L37.041-58.990Q37.007-58.803 36.822-58.782L35.814-58.782Q35.633-58.803 35.599-58.990L35.599-59.069Q35.633-59.250 35.814-59.271L35.927-59.271L35.397-60.019L34.884-59.271L35.011-59.271Q35.192-59.250 35.226-59.069L35.226-58.990Q35.192-58.803 35.011-58.782L34.003-58.782Q33.832-58.799 33.787-58.990\" 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\">mov as a copy. The value in the source is duplicated into the destination; the source keeps its value. Here movq (%rsi), %rdx copies 8 bytes from the memory cell at %rsi into the register %rdx.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:306.133px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 229.600 53.347\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M-3.995-40.269L-3.995-40.348Q-3.950-40.533-3.780-40.550L-3.605-40.550L-3.605-42.587L-3.780-42.587Q-3.961-42.607-3.995-42.799L-3.995-42.874Q-3.950-43.062-3.780-43.079L-3.359-43.079Q-3.192-43.059-3.140-42.874Q-2.860-43.113-2.498-43.113Q-2.330-43.113-2.183-43.018Q-2.036-42.922-1.971-42.771Q-1.818-42.939-1.623-43.026Q-1.428-43.113-1.216-43.113Q-0.850-43.113-0.715-42.814Q-0.580-42.515-0.580-42.105L-0.580-40.550L-0.406-40.550Q-0.221-40.529-0.187-40.348L-0.187-40.269Q-0.232-40.082-0.406-40.061L-1.120-40.061Q-1.291-40.082-1.336-40.269L-1.336-40.348Q-1.291-40.529-1.120-40.550L-1.042-40.550L-1.042-42.078Q-1.042-42.624-1.260-42.624Q-1.551-42.624-1.707-42.353Q-1.862-42.081-1.862-41.763L-1.862-40.550L-1.684-40.550Q-1.503-40.529-1.469-40.348L-1.469-40.269Q-1.513-40.082-1.684-40.061L-2.399-40.061Q-2.573-40.082-2.617-40.269L-2.617-40.348Q-2.573-40.529-2.399-40.550L-2.323-40.550L-2.323-42.078Q-2.323-42.624-2.539-42.624Q-2.829-42.624-2.985-42.351Q-3.140-42.078-3.140-41.763L-3.140-40.550L-2.966-40.550Q-2.785-40.529-2.751-40.348L-2.751-40.269Q-2.795-40.078-2.966-40.061L-3.780-40.061Q-3.961-40.082-3.995-40.269M1.624-40.027Q1.211-40.027 0.874-40.240Q0.537-40.454 0.343-40.813Q0.148-41.172 0.148-41.572Q0.148-41.873 0.257-42.155Q0.366-42.436 0.568-42.659Q0.770-42.881 1.038-43.007Q1.306-43.134 1.624-43.134Q1.942-43.134 2.216-43.006Q2.489-42.877 2.684-42.662Q2.879-42.447 2.990-42.166Q3.101-41.886 3.101-41.572Q3.101-41.172 2.904-40.811Q2.708-40.451 2.371-40.239Q2.034-40.027 1.624-40.027M1.624-40.516Q2.031-40.516 2.286-40.861Q2.540-41.206 2.540-41.630Q2.540-41.886 2.422-42.120Q2.304-42.354 2.094-42.500Q1.884-42.645 1.624-42.645Q1.358-42.645 1.149-42.500Q0.941-42.354 0.823-42.120Q0.705-41.886 0.705-41.630Q0.705-41.209 0.961-40.863Q1.218-40.516 1.624-40.516M4.933-40.256L4.157-42.587L3.877-42.587Q3.702-42.607 3.658-42.799L3.658-42.874Q3.702-43.059 3.877-43.079L4.892-43.079Q5.063-43.062 5.107-42.874L5.107-42.799Q5.063-42.607 4.892-42.587L4.646-42.587L5.340-40.509L6.030-42.587L5.787-42.587Q5.613-42.607 5.569-42.799L5.569-42.874Q5.613-43.059 5.787-43.079L6.803-43.079Q6.973-43.059 7.018-42.874L7.018-42.799Q6.973-42.607 6.803-42.587L6.522-42.587L5.746-40.256Q5.709-40.157 5.620-40.092Q5.531-40.027 5.422-40.027L5.254-40.027Q5.152-40.027 5.061-40.090Q4.970-40.153 4.933-40.256M10.344-40.061L7.660-40.061Q7.568-40.061 7.500-40.133Q7.431-40.205 7.431-40.293L7.431-40.389Q7.431-40.492 7.507-40.557L9.691-42.587L8.108-42.587L8.108-42.331Q8.064-42.139 7.893-42.119L7.766-42.119Q7.599-42.136 7.548-42.331L7.548-42.874Q7.599-43.059 7.766-43.079L10.306-43.079Q10.402-43.079 10.470-43.011Q10.538-42.942 10.538-42.847L10.538-42.748Q10.538-42.648 10.460-42.580L8.276-40.550L9.998-40.550L9.998-40.895Q10.043-41.076 10.217-41.097L10.344-41.097Q10.514-41.076 10.559-40.895L10.559-40.269Q10.514-40.082 10.344-40.061M11.564-40.269L11.564-43.848L11.195-43.848Q11.013-43.869 10.976-44.057L10.976-44.135Q11.013-44.316 11.195-44.337L11.909-44.337Q12.080-44.316 12.124-44.135L12.124-42.812Q12.309-42.959 12.540-43.036Q12.770-43.113 13.006-43.113Q13.303-43.113 13.563-42.987Q13.823-42.860 14.011-42.640Q14.199-42.419 14.300-42.146Q14.401-41.873 14.401-41.572Q14.401-41.165 14.202-40.806Q14.004-40.447 13.666-40.237Q13.327-40.027 12.917-40.027Q12.463-40.027 12.124-40.348L12.124-40.269Q12.080-40.078 11.909-40.061L11.782-40.061Q11.615-40.082 11.564-40.269M12.880-40.516Q13.150-40.516 13.368-40.664Q13.587-40.813 13.714-41.059Q13.840-41.305 13.840-41.572Q13.840-41.825 13.731-42.069Q13.621-42.313 13.418-42.469Q13.215-42.624 12.951-42.624Q12.671-42.624 12.442-42.462Q12.213-42.300 12.124-42.037L12.124-41.291Q12.203-40.970 12.396-40.743Q12.589-40.516 12.880-40.516M16.653-38.711L16.653-38.786Q16.698-38.978 16.868-38.998L17.275-38.998L17.275-40.396Q16.879-40.027 16.345-40.027Q16.034-40.027 15.768-40.152Q15.501-40.276 15.298-40.495Q15.095-40.714 14.985-40.996Q14.876-41.278 14.876-41.572Q14.876-41.996 15.084-42.346Q15.293-42.696 15.648-42.905Q16.004-43.113 16.421-43.113Q16.913-43.113 17.275-42.771L17.275-42.912Q17.320-43.096 17.494-43.113L17.617-43.113Q17.791-43.093 17.836-42.912L17.836-38.998L18.242-38.998Q18.413-38.978 18.458-38.786L18.458-38.711Q18.413-38.526 18.242-38.506L16.868-38.506Q16.698-38.526 16.653-38.711M16.386-40.516Q16.711-40.516 16.952-40.738Q17.193-40.960 17.275-41.278L17.275-41.818Q17.238-42.026 17.130-42.213Q17.022-42.399 16.850-42.512Q16.677-42.624 16.465-42.624Q16.188-42.624 15.951-42.479Q15.713-42.334 15.575-42.088Q15.436-41.842 15.436-41.565Q15.436-41.158 15.711-40.837Q15.987-40.516 16.386-40.516\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M22.195-39.835Q22.195-39.880 22.222-39.935L25.630-44.515Q25.189-44.310 24.714-44.310Q24.126-44.310 23.559-44.597Q23.692-44.286 23.692-43.903Q23.692-43.588 23.579-43.260Q23.466-42.932 23.237-42.712Q23.008-42.491 22.684-42.491Q22.342-42.491 22.080-42.701Q21.819-42.912 21.684-43.240Q21.549-43.568 21.549-43.903Q21.549-44.234 21.684-44.562Q21.819-44.891 22.080-45.101Q22.342-45.311 22.684-45.311Q22.967-45.311 23.217-45.103Q23.538-44.829 23.916-44.682Q24.293-44.535 24.707-44.535Q25.144-44.535 25.534-44.716Q25.924-44.897 26.177-45.243Q26.235-45.311 26.317-45.311Q26.385-45.311 26.435-45.261Q26.484-45.212 26.484-45.144Q26.484-45.099 26.457-45.044L22.509-39.747Q22.455-39.668 22.369-39.668Q22.297-39.668 22.246-39.719Q22.195-39.770 22.195-39.835M22.684-42.713Q22.926-42.713 23.095-42.908Q23.265-43.103 23.345-43.385Q23.425-43.667 23.425-43.903Q23.425-44.070 23.381-44.280Q23.336-44.491 23.251-44.665Q23.165-44.839 23.018-44.962Q22.872-45.085 22.684-45.085Q22.328-45.085 22.202-44.715Q22.075-44.344 22.075-43.903Q22.075-43.458 22.202-43.086Q22.328-42.713 22.684-42.713M26.122-39.668Q25.780-39.668 25.519-39.880Q25.257-40.092 25.122-40.420Q24.987-40.748 24.987-41.083Q24.987-41.415 25.122-41.741Q25.257-42.067 25.519-42.279Q25.780-42.491 26.122-42.491Q26.443-42.491 26.672-42.271Q26.901-42.050 27.016-41.722Q27.130-41.394 27.130-41.083Q27.130-40.769 27.016-40.439Q26.901-40.109 26.672-39.888Q26.443-39.668 26.122-39.668M26.122-39.894Q26.365-39.894 26.536-40.090Q26.706-40.287 26.785-40.565Q26.864-40.844 26.864-41.083Q26.864-41.250 26.819-41.461Q26.775-41.671 26.689-41.845Q26.604-42.019 26.457-42.143Q26.310-42.266 26.122-42.266Q25.767-42.266 25.640-41.895Q25.514-41.524 25.514-41.083Q25.514-40.639 25.640-40.266Q25.767-39.894 26.122-39.894\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M27.985-41.035Q27.985-41.425 28.348-41.650Q28.710-41.876 29.183-41.963Q29.657-42.050 30.101-42.057Q30.101-42.245 29.983-42.378Q29.865-42.512 29.684-42.578Q29.503-42.645 29.318-42.645Q29.018-42.645 28.878-42.624L28.878-42.573Q28.878-42.426 28.773-42.325Q28.669-42.225 28.526-42.225Q28.372-42.225 28.271-42.332Q28.170-42.440 28.170-42.587Q28.170-42.942 28.503-43.038Q28.837-43.134 29.325-43.134Q29.561-43.134 29.795-43.065Q30.029-42.997 30.226-42.865Q30.422-42.734 30.542-42.541Q30.662-42.348 30.662-42.105L30.662-40.601Q30.662-40.550 31.123-40.550Q31.294-40.533 31.338-40.348L31.338-40.269Q31.294-40.082 31.123-40.061L30.997-40.061Q30.696-40.061 30.496-40.102Q30.296-40.143 30.170-40.307Q29.766-40.027 29.148-40.027Q28.854-40.027 28.587-40.150Q28.320-40.273 28.153-40.502Q27.985-40.731 27.985-41.035M28.546-41.028Q28.546-40.789 28.758-40.652Q28.970-40.516 29.219-40.516Q29.411-40.516 29.614-40.567Q29.817-40.618 29.959-40.739Q30.101-40.861 30.101-41.056L30.101-41.572Q29.855-41.572 29.491-41.522Q29.127-41.473 28.837-41.351Q28.546-41.230 28.546-41.028M31.738-40.269L31.738-40.348Q31.783-40.529 31.954-40.550L32.921-40.550L32.921-43.848L31.954-43.848Q31.783-43.869 31.738-44.057L31.738-44.135Q31.783-44.316 31.954-44.337L33.263-44.337Q33.430-44.316 33.482-44.135L33.482-40.550L34.445-40.550Q34.620-40.529 34.664-40.348L34.664-40.269Q34.620-40.082 34.445-40.061L31.954-40.061Q31.783-40.082 31.738-40.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M35.935-38.831Q35.935-38.865 35.963-38.892Q36.229-39.114 36.380-39.441Q36.530-39.767 36.530-40.123L36.530-40.160Q36.427-40.061 36.256-40.061Q36.079-40.061 35.957-40.182Q35.836-40.304 35.836-40.481Q35.836-40.652 35.957-40.774Q36.079-40.895 36.256-40.895Q36.516-40.895 36.636-40.656Q36.755-40.416 36.755-40.123Q36.755-39.719 36.585-39.350Q36.414-38.981 36.116-38.725Q36.086-38.704 36.062-38.704Q36.017-38.704 35.976-38.745Q35.935-38.786 35.935-38.831\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M39.943-39.835Q39.943-39.880 39.970-39.935L43.378-44.515Q42.937-44.310 42.462-44.310Q41.874-44.310 41.307-44.597Q41.440-44.286 41.440-43.903Q41.440-43.588 41.327-43.260Q41.214-42.932 40.985-42.712Q40.756-42.491 40.432-42.491Q40.090-42.491 39.828-42.701Q39.567-42.912 39.432-43.240Q39.297-43.568 39.297-43.903Q39.297-44.234 39.432-44.562Q39.567-44.891 39.828-45.101Q40.090-45.311 40.432-45.311Q40.715-45.311 40.965-45.103Q41.286-44.829 41.664-44.682Q42.041-44.535 42.455-44.535Q42.892-44.535 43.282-44.716Q43.672-44.897 43.925-45.243Q43.983-45.311 44.065-45.311Q44.133-45.311 44.183-45.261Q44.232-45.212 44.232-45.144Q44.232-45.099 44.205-45.044L40.257-39.747Q40.203-39.668 40.117-39.668Q40.045-39.668 39.994-39.719Q39.943-39.770 39.943-39.835M40.432-42.713Q40.674-42.713 40.843-42.908Q41.013-43.103 41.093-43.385Q41.173-43.667 41.173-43.903Q41.173-44.070 41.129-44.280Q41.084-44.491 40.999-44.665Q40.913-44.839 40.766-44.962Q40.620-45.085 40.432-45.085Q40.076-45.085 39.950-44.715Q39.823-44.344 39.823-43.903Q39.823-43.458 39.950-43.086Q40.076-42.713 40.432-42.713M43.870-39.668Q43.528-39.668 43.267-39.880Q43.005-40.092 42.870-40.420Q42.735-40.748 42.735-41.083Q42.735-41.415 42.870-41.741Q43.005-42.067 43.267-42.279Q43.528-42.491 43.870-42.491Q44.191-42.491 44.420-42.271Q44.649-42.050 44.764-41.722Q44.878-41.394 44.878-41.083Q44.878-40.769 44.764-40.439Q44.649-40.109 44.420-39.888Q44.191-39.668 43.870-39.668M43.870-39.894Q44.113-39.894 44.284-40.090Q44.454-40.287 44.533-40.565Q44.612-40.844 44.612-41.083Q44.612-41.250 44.567-41.461Q44.523-41.671 44.437-41.845Q44.352-42.019 44.205-42.143Q44.058-42.266 43.870-42.266Q43.515-42.266 43.388-41.895Q43.262-41.524 43.262-41.083Q43.262-40.639 43.388-40.266Q43.515-39.894 43.870-39.894\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 -20.915)\">\u003Cpath d=\"M45.573-40.269L45.573-40.348Q45.624-40.529 45.792-40.550L46.414-40.550L46.414-42.587L45.792-42.587Q45.621-42.607 45.573-42.799L45.573-42.874Q45.624-43.059 45.792-43.079L46.755-43.079Q46.930-43.062 46.974-42.874L46.974-42.587Q47.203-42.836 47.514-42.975Q47.825-43.113 48.164-43.113Q48.420-43.113 48.625-42.995Q48.830-42.877 48.830-42.645Q48.830-42.498 48.734-42.395Q48.639-42.293 48.492-42.293Q48.358-42.293 48.258-42.390Q48.157-42.488 48.157-42.624Q47.829-42.624 47.554-42.448Q47.278-42.272 47.126-41.980Q46.974-41.688 46.974-41.356L46.974-40.550L47.801-40.550Q47.982-40.529 48.017-40.348L48.017-40.269Q47.982-40.082 47.801-40.061L45.792-40.061Q45.624-40.082 45.573-40.269M49.743-40.269L49.743-43.848L49.374-43.848Q49.192-43.869 49.155-44.057L49.155-44.135Q49.192-44.316 49.374-44.337L50.088-44.337Q50.259-44.316 50.303-44.135L50.303-42.812Q50.488-42.959 50.719-43.036Q50.949-43.113 51.185-43.113Q51.482-43.113 51.742-42.987Q52.002-42.860 52.190-42.640Q52.378-42.419 52.479-42.146Q52.580-41.873 52.580-41.572Q52.580-41.165 52.381-40.806Q52.183-40.447 51.845-40.237Q51.506-40.027 51.096-40.027Q50.642-40.027 50.303-40.348L50.303-40.269Q50.259-40.078 50.088-40.061L49.961-40.061Q49.794-40.082 49.743-40.269M51.059-40.516Q51.329-40.516 51.547-40.664Q51.766-40.813 51.893-41.059Q52.019-41.305 52.019-41.572Q52.019-41.825 51.910-42.069Q51.800-42.313 51.597-42.469Q51.394-42.624 51.130-42.624Q50.850-42.624 50.621-42.462Q50.392-42.300 50.303-42.037L50.303-41.291Q50.382-40.970 50.575-40.743Q50.768-40.516 51.059-40.516M53.034-40.269L53.034-40.348Q53.068-40.529 53.250-40.550L53.605-40.550L54.419-41.616L53.656-42.587L53.291-42.587Q53.120-42.604 53.075-42.799L53.075-42.874Q53.120-43.059 53.291-43.079L54.306-43.079Q54.480-43.059 54.524-42.874L54.524-42.799Q54.480-42.607 54.306-42.587L54.210-42.587L54.644-42.013L55.061-42.587L54.959-42.587Q54.784-42.607 54.740-42.799L54.740-42.874Q54.784-43.059 54.959-43.079L55.974-43.079Q56.145-43.062 56.189-42.874L56.189-42.799Q56.145-42.607 55.974-42.587L55.615-42.587L54.873-41.616L55.714-40.550L56.069-40.550Q56.244-40.529 56.288-40.348L56.288-40.269Q56.254-40.082 56.069-40.061L55.061-40.061Q54.880-40.082 54.846-40.269L54.846-40.348Q54.880-40.529 55.061-40.550L55.174-40.550L54.644-41.298L54.131-40.550L54.258-40.550Q54.439-40.529 54.473-40.348L54.473-40.269Q54.439-40.082 54.258-40.061L53.250-40.061Q53.079-40.078 53.034-40.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M21.66-53.576h96.74V-72.07H21.66Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(37.852 -20.318)\">\u003Cpath d=\"M-1.826-39.983Q-2.260-39.983-2.592-40.221Q-2.924-40.459-3.144-40.848Q-3.365-41.237-3.472-41.674Q-3.580-42.112-3.580-42.510Q-3.580-42.901-3.470-43.344Q-3.361-43.788-3.144-44.168Q-2.927-44.549-2.593-44.790Q-2.260-45.030-1.826-45.030Q-1.271-45.030-0.871-44.631Q-0.470-44.233-0.273-43.647Q-0.076-43.061-0.076-42.510Q-0.076-41.956-0.273-41.368Q-0.470-40.780-0.871-40.381Q-1.271-39.983-1.826-39.983M-1.826-40.541Q-1.525-40.541-1.308-40.758Q-1.092-40.975-0.965-41.303Q-0.838-41.631-0.777-41.977Q-0.717-42.323-0.717-42.604Q-0.717-42.854-0.779-43.180Q-0.842-43.506-0.972-43.797Q-1.103-44.088-1.316-44.278Q-1.529-44.467-1.826-44.467Q-2.201-44.467-2.453-44.155Q-2.705-43.842-2.822-43.409Q-2.939-42.975-2.939-42.604Q-2.939-42.206-2.826-41.725Q-2.713-41.245-2.465-40.893Q-2.217-40.541-1.826-40.541M2.420-39.983Q1.987-39.983 1.655-40.221Q1.323-40.459 1.102-40.848Q0.881-41.237 0.774-41.674Q0.666-42.112 0.666-42.510Q0.666-42.901 0.776-43.344Q0.885-43.788 1.102-44.168Q1.319-44.549 1.653-44.790Q1.987-45.030 2.420-45.030Q2.975-45.030 3.375-44.631Q3.776-44.233 3.973-43.647Q4.170-43.061 4.170-42.510Q4.170-41.956 3.973-41.368Q3.776-40.780 3.375-40.381Q2.975-39.983 2.420-39.983M2.420-40.541Q2.721-40.541 2.938-40.758Q3.155-40.975 3.282-41.303Q3.408-41.631 3.469-41.977Q3.530-42.323 3.530-42.604Q3.530-42.854 3.467-43.180Q3.405-43.506 3.274-43.797Q3.143-44.088 2.930-44.278Q2.717-44.467 2.420-44.467Q2.045-44.467 1.793-44.155Q1.541-43.842 1.424-43.409Q1.307-42.975 1.307-42.604Q1.307-42.206 1.420-41.725Q1.533-41.245 1.782-40.893Q2.030-40.541 2.420-40.541M6.666-39.983Q6.233-39.983 5.901-40.221Q5.569-40.459 5.348-40.848Q5.127-41.237 5.020-41.674Q4.912-42.112 4.912-42.510Q4.912-42.901 5.022-43.344Q5.131-43.788 5.348-44.168Q5.565-44.549 5.899-44.790Q6.233-45.030 6.666-45.030Q7.221-45.030 7.621-44.631Q8.022-44.233 8.219-43.647Q8.416-43.061 8.416-42.510Q8.416-41.956 8.219-41.368Q8.022-40.780 7.621-40.381Q7.221-39.983 6.666-39.983M6.666-40.541Q6.967-40.541 7.184-40.758Q7.401-40.975 7.528-41.303Q7.655-41.631 7.715-41.977Q7.776-42.323 7.776-42.604Q7.776-42.854 7.713-43.180Q7.651-43.506 7.520-43.797Q7.389-44.088 7.176-44.278Q6.963-44.467 6.666-44.467Q6.291-44.467 6.039-44.155Q5.787-43.842 5.670-43.409Q5.553-42.975 5.553-42.604Q5.553-42.206 5.666-41.725Q5.780-41.245 6.028-40.893Q6.276-40.541 6.666-40.541M10.912-39.983Q10.479-39.983 10.147-40.221Q9.815-40.459 9.594-40.848Q9.373-41.237 9.266-41.674Q9.158-42.112 9.158-42.510Q9.158-42.901 9.268-43.344Q9.377-43.788 9.594-44.168Q9.811-44.549 10.145-44.790Q10.479-45.030 10.912-45.030Q11.467-45.030 11.867-44.631Q12.268-44.233 12.465-43.647Q12.662-43.061 12.662-42.510Q12.662-41.956 12.465-41.368Q12.268-40.780 11.867-40.381Q11.467-39.983 10.912-39.983M10.912-40.541Q11.213-40.541 11.430-40.758Q11.647-40.975 11.774-41.303Q11.901-41.631 11.961-41.977Q12.022-42.323 12.022-42.604Q12.022-42.854 11.959-43.180Q11.897-43.506 11.766-43.797Q11.635-44.088 11.422-44.278Q11.209-44.467 10.912-44.467Q10.537-44.467 10.285-44.155Q10.033-43.842 9.916-43.409Q9.799-42.975 9.799-42.604Q9.799-42.206 9.912-41.725Q10.026-41.245 10.274-40.893Q10.522-40.541 10.912-40.541\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 -20.318)\">\u003Cpath d=\"M16.591-39.983Q16.157-39.983 15.825-40.221Q15.493-40.459 15.273-40.848Q15.052-41.237 14.945-41.674Q14.837-42.112 14.837-42.510Q14.837-42.901 14.947-43.344Q15.056-43.788 15.273-44.168Q15.490-44.549 15.824-44.790Q16.157-45.030 16.591-45.030Q17.146-45.030 17.546-44.631Q17.947-44.233 18.144-43.647Q18.341-43.061 18.341-42.510Q18.341-41.956 18.144-41.368Q17.947-40.780 17.546-40.381Q17.146-39.983 16.591-39.983M16.591-40.541Q16.892-40.541 17.109-40.758Q17.325-40.975 17.452-41.303Q17.579-41.631 17.640-41.977Q17.700-42.323 17.700-42.604Q17.700-42.854 17.638-43.180Q17.575-43.506 17.445-43.797Q17.314-44.088 17.101-44.278Q16.888-44.467 16.591-44.467Q16.216-44.467 15.964-44.155Q15.712-43.842 15.595-43.409Q15.478-42.975 15.478-42.604Q15.478-42.206 15.591-41.725Q15.704-41.245 15.952-40.893Q16.200-40.541 16.591-40.541M20.837-39.983Q20.404-39.983 20.072-40.221Q19.740-40.459 19.519-40.848Q19.298-41.237 19.191-41.674Q19.083-42.112 19.083-42.510Q19.083-42.901 19.193-43.344Q19.302-43.788 19.519-44.168Q19.736-44.549 20.070-44.790Q20.404-45.030 20.837-45.030Q21.392-45.030 21.792-44.631Q22.193-44.233 22.390-43.647Q22.587-43.061 22.587-42.510Q22.587-41.956 22.390-41.368Q22.193-40.780 21.792-40.381Q21.392-39.983 20.837-39.983M20.837-40.541Q21.138-40.541 21.355-40.758Q21.572-40.975 21.699-41.303Q21.825-41.631 21.886-41.977Q21.947-42.323 21.947-42.604Q21.947-42.854 21.884-43.180Q21.822-43.506 21.691-43.797Q21.560-44.088 21.347-44.278Q21.134-44.467 20.837-44.467Q20.462-44.467 20.210-44.155Q19.958-43.842 19.841-43.409Q19.724-42.975 19.724-42.604Q19.724-42.206 19.837-41.725Q19.950-41.245 20.199-40.893Q20.447-40.541 20.837-40.541M25.083-39.983Q24.650-39.983 24.318-40.221Q23.986-40.459 23.765-40.848Q23.544-41.237 23.437-41.674Q23.329-42.112 23.329-42.510Q23.329-42.901 23.439-43.344Q23.548-43.788 23.765-44.168Q23.982-44.549 24.316-44.790Q24.650-45.030 25.083-45.030Q25.638-45.030 26.038-44.631Q26.439-44.233 26.636-43.647Q26.833-43.061 26.833-42.510Q26.833-41.956 26.636-41.368Q26.439-40.780 26.038-40.381Q25.638-39.983 25.083-39.983M25.083-40.541Q25.384-40.541 25.601-40.758Q25.818-40.975 25.945-41.303Q26.072-41.631 26.132-41.977Q26.193-42.323 26.193-42.604Q26.193-42.854 26.130-43.180Q26.068-43.506 25.937-43.797Q25.806-44.088 25.593-44.278Q25.380-44.467 25.083-44.467Q24.708-44.467 24.456-44.155Q24.204-43.842 24.087-43.409Q23.970-42.975 23.970-42.604Q23.970-42.206 24.083-41.725Q24.197-41.245 24.445-40.893Q24.693-40.541 25.083-40.541M29.329-39.983Q28.896-39.983 28.564-40.221Q28.232-40.459 28.011-40.848Q27.790-41.237 27.683-41.674Q27.575-42.112 27.575-42.510Q27.575-42.901 27.685-43.344Q27.794-43.788 28.011-44.168Q28.228-44.549 28.562-44.790Q28.896-45.030 29.329-45.030Q29.884-45.030 30.284-44.631Q30.685-44.233 30.882-43.647Q31.079-43.061 31.079-42.510Q31.079-41.956 30.882-41.368Q30.685-40.780 30.284-40.381Q29.884-39.983 29.329-39.983M29.329-40.541Q29.630-40.541 29.847-40.758Q30.064-40.975 30.191-41.303Q30.318-41.631 30.378-41.977Q30.439-42.323 30.439-42.604Q30.439-42.854 30.376-43.180Q30.314-43.506 30.183-43.797Q30.052-44.088 29.839-44.278Q29.626-44.467 29.329-44.467Q28.954-44.467 28.702-44.155Q28.450-43.842 28.333-43.409Q28.216-42.975 28.216-42.604Q28.216-42.206 28.329-41.725Q28.443-41.245 28.691-40.893Q28.939-40.541 29.329-40.541\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 -20.318)\">\u003Cpath d=\"M35.008-39.983Q34.575-39.983 34.242-40.221Q33.910-40.459 33.690-40.848Q33.469-41.237 33.362-41.674Q33.254-42.112 33.254-42.510Q33.254-42.901 33.364-43.344Q33.473-43.788 33.690-44.168Q33.907-44.549 34.241-44.790Q34.575-45.030 35.008-45.030Q35.563-45.030 35.963-44.631Q36.364-44.233 36.561-43.647Q36.758-43.061 36.758-42.510Q36.758-41.956 36.561-41.368Q36.364-40.780 35.963-40.381Q35.563-39.983 35.008-39.983M35.008-40.541Q35.309-40.541 35.526-40.758Q35.742-40.975 35.869-41.303Q35.996-41.631 36.057-41.977Q36.117-42.323 36.117-42.604Q36.117-42.854 36.055-43.180Q35.992-43.506 35.862-43.797Q35.731-44.088 35.518-44.278Q35.305-44.467 35.008-44.467Q34.633-44.467 34.381-44.155Q34.129-43.842 34.012-43.409Q33.895-42.975 33.895-42.604Q33.895-42.206 34.008-41.725Q34.121-41.245 34.369-40.893Q34.617-40.541 35.008-40.541M39.254-39.983Q38.821-39.983 38.489-40.221Q38.157-40.459 37.936-40.848Q37.715-41.237 37.608-41.674Q37.500-42.112 37.500-42.510Q37.500-42.901 37.610-43.344Q37.719-43.788 37.936-44.168Q38.153-44.549 38.487-44.790Q38.821-45.030 39.254-45.030Q39.809-45.030 40.209-44.631Q40.610-44.233 40.807-43.647Q41.004-43.061 41.004-42.510Q41.004-41.956 40.807-41.368Q40.610-40.780 40.209-40.381Q39.809-39.983 39.254-39.983M39.254-40.541Q39.555-40.541 39.772-40.758Q39.989-40.975 40.116-41.303Q40.242-41.631 40.303-41.977Q40.364-42.323 40.364-42.604Q40.364-42.854 40.301-43.180Q40.239-43.506 40.108-43.797Q39.977-44.088 39.764-44.278Q39.551-44.467 39.254-44.467Q38.879-44.467 38.627-44.155Q38.375-43.842 38.258-43.409Q38.141-42.975 38.141-42.604Q38.141-42.206 38.254-41.725Q38.367-41.245 38.616-40.893Q38.864-40.541 39.254-40.541M43.500-39.983Q43.067-39.983 42.735-40.221Q42.403-40.459 42.182-40.848Q41.961-41.237 41.854-41.674Q41.746-42.112 41.746-42.510Q41.746-42.901 41.856-43.344Q41.965-43.788 42.182-44.168Q42.399-44.549 42.733-44.790Q43.067-45.030 43.500-45.030Q44.055-45.030 44.455-44.631Q44.856-44.233 45.053-43.647Q45.250-43.061 45.250-42.510Q45.250-41.956 45.053-41.368Q44.856-40.780 44.455-40.381Q44.055-39.983 43.500-39.983M43.500-40.541Q43.801-40.541 44.018-40.758Q44.235-40.975 44.362-41.303Q44.489-41.631 44.549-41.977Q44.610-42.323 44.610-42.604Q44.610-42.854 44.547-43.180Q44.485-43.506 44.354-43.797Q44.223-44.088 44.010-44.278Q43.797-44.467 43.500-44.467Q43.125-44.467 42.873-44.155Q42.621-43.842 42.504-43.409Q42.387-42.975 42.387-42.604Q42.387-42.206 42.500-41.725Q42.614-41.245 42.862-40.893Q43.110-40.541 43.500-40.541M47.746-39.983Q47.313-39.983 46.981-40.221Q46.649-40.459 46.428-40.848Q46.207-41.237 46.100-41.674Q45.992-42.112 45.992-42.510Q45.992-42.901 46.102-43.344Q46.211-43.788 46.428-44.168Q46.645-44.549 46.979-44.790Q47.313-45.030 47.746-45.030Q48.301-45.030 48.701-44.631Q49.102-44.233 49.299-43.647Q49.496-43.061 49.496-42.510Q49.496-41.956 49.299-41.368Q49.102-40.780 48.701-40.381Q48.301-39.983 47.746-39.983M47.746-40.541Q48.047-40.541 48.264-40.758Q48.481-40.975 48.608-41.303Q48.735-41.631 48.795-41.977Q48.856-42.323 48.856-42.604Q48.856-42.854 48.793-43.180Q48.731-43.506 48.600-43.797Q48.469-44.088 48.256-44.278Q48.043-44.467 47.746-44.467Q47.371-44.467 47.119-44.155Q46.867-43.842 46.750-43.409Q46.633-42.975 46.633-42.604Q46.633-42.206 46.746-41.725Q46.860-41.245 47.108-40.893Q47.356-40.541 47.746-40.541\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 -20.318)\">\u003Cpath d=\"M53.425-39.983Q52.992-39.983 52.659-40.221Q52.327-40.459 52.107-40.848Q51.886-41.237 51.779-41.674Q51.671-42.112 51.671-42.510Q51.671-42.901 51.781-43.344Q51.890-43.788 52.107-44.168Q52.324-44.549 52.658-44.790Q52.992-45.030 53.425-45.030Q53.980-45.030 54.380-44.631Q54.781-44.233 54.978-43.647Q55.175-43.061 55.175-42.510Q55.175-41.956 54.978-41.368Q54.781-40.780 54.380-40.381Q53.980-39.983 53.425-39.983M53.425-40.541Q53.726-40.541 53.943-40.758Q54.159-40.975 54.286-41.303Q54.413-41.631 54.474-41.977Q54.534-42.323 54.534-42.604Q54.534-42.854 54.472-43.180Q54.409-43.506 54.279-43.797Q54.148-44.088 53.935-44.278Q53.722-44.467 53.425-44.467Q53.050-44.467 52.798-44.155Q52.546-43.842 52.429-43.409Q52.312-42.975 52.312-42.604Q52.312-42.206 52.425-41.725Q52.538-41.245 52.786-40.893Q53.034-40.541 53.425-40.541M57.671-39.983Q57.238-39.983 56.906-40.221Q56.574-40.459 56.353-40.848Q56.132-41.237 56.025-41.674Q55.917-42.112 55.917-42.510Q55.917-42.901 56.027-43.344Q56.136-43.788 56.353-44.168Q56.570-44.549 56.904-44.790Q57.238-45.030 57.671-45.030Q58.226-45.030 58.626-44.631Q59.027-44.233 59.224-43.647Q59.421-43.061 59.421-42.510Q59.421-41.956 59.224-41.368Q59.027-40.780 58.626-40.381Q58.226-39.983 57.671-39.983M57.671-40.541Q57.972-40.541 58.189-40.758Q58.406-40.975 58.533-41.303Q58.659-41.631 58.720-41.977Q58.781-42.323 58.781-42.604Q58.781-42.854 58.718-43.180Q58.656-43.506 58.525-43.797Q58.394-44.088 58.181-44.278Q57.968-44.467 57.671-44.467Q57.296-44.467 57.044-44.155Q56.792-43.842 56.675-43.409Q56.558-42.975 56.558-42.604Q56.558-42.206 56.671-41.725Q56.784-41.245 57.033-40.893Q57.281-40.541 57.671-40.541M60.003-40.299L60.003-40.389Q60.042-40.596 60.253-40.620L60.589-40.620L60.589-44.389L60.253-44.389Q60.042-44.413 60.003-44.627L60.003-44.717Q60.042-44.924 60.253-44.948L63.507-44.948Q63.706-44.924 63.757-44.717L63.757-43.877Q63.710-43.663 63.507-43.635L63.363-43.635Q63.167-43.663 63.117-43.877L63.117-44.389L61.230-44.389L61.230-42.788L62.238-42.788L62.238-43.006Q62.288-43.213 62.484-43.237L62.628-43.237Q62.824-43.217 62.874-43.006L62.874-42.022Q62.824-41.803 62.628-41.780L62.484-41.780Q62.288-41.799 62.238-42.022L62.238-42.229L61.230-42.229L61.230-40.620L61.718-40.620Q61.913-40.596 61.964-40.389L61.964-40.299Q61.913-40.084 61.718-40.061L60.253-40.061Q60.042-40.084 60.003-40.299M64.249-40.299L64.249-40.389Q64.288-40.596 64.499-40.620L64.835-40.620L64.835-44.389L64.499-44.389Q64.288-44.413 64.249-44.627L64.249-44.717Q64.288-44.924 64.499-44.948L67.753-44.948Q67.952-44.924 68.003-44.717L68.003-43.877Q67.956-43.663 67.753-43.635L67.609-43.635Q67.413-43.663 67.363-43.877L67.363-44.389L65.476-44.389L65.476-42.788L66.484-42.788L66.484-43.006Q66.534-43.213 66.730-43.237L66.874-43.237Q67.070-43.217 67.120-43.006L67.120-42.022Q67.070-41.803 66.874-41.780L66.730-41.780Q66.534-41.799 66.484-42.022L66.484-42.229L65.476-42.229L65.476-40.620L65.964-40.620Q66.159-40.596 66.210-40.389L66.210-40.299Q66.159-40.084 65.964-40.061L64.499-40.061Q64.288-40.084 64.249-40.299\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(131.57 -20.507)\">\u003Cpath d=\"M1.535-40.868L-3.298-40.868Q-3.366-40.878-3.412-40.924Q-3.458-40.970-3.458-41.042Q-3.458-41.107-3.412-41.153Q-3.366-41.199-3.298-41.209L1.535-41.209Q1.604-41.199 1.650-41.153Q1.696-41.107 1.696-41.042Q1.696-40.970 1.650-40.924Q1.604-40.878 1.535-40.868M1.535-42.406L-3.298-42.406Q-3.366-42.416-3.412-42.462Q-3.458-42.508-3.458-42.580Q-3.458-42.724-3.298-42.748L1.535-42.748Q1.696-42.724 1.696-42.580Q1.696-42.508 1.650-42.462Q1.604-42.416 1.535-42.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 -20.507)\">\u003Cpath d=\"M7.794-40.061L4.909-40.061L4.909-40.263Q4.909-40.293 4.936-40.321L6.184-41.538Q6.256-41.613 6.298-41.655Q6.341-41.698 6.420-41.777Q6.833-42.190 7.064-42.548Q7.295-42.905 7.295-43.329Q7.295-43.561 7.216-43.764Q7.137-43.968 6.996-44.118Q6.854-44.269 6.659-44.349Q6.464-44.429 6.232-44.429Q5.921-44.429 5.663-44.270Q5.405-44.111 5.275-43.834L5.295-43.834Q5.463-43.834 5.570-43.723Q5.678-43.612 5.678-43.448Q5.678-43.291 5.569-43.178Q5.459-43.065 5.295-43.065Q5.135-43.065 5.022-43.178Q4.909-43.291 4.909-43.448Q4.909-43.824 5.117-44.111Q5.326-44.398 5.661-44.554Q5.996-44.709 6.351-44.709Q6.775-44.709 7.155-44.551Q7.534-44.392 7.768-44.075Q8.002-43.759 8.002-43.329Q8.002-43.018 7.862-42.749Q7.722-42.481 7.517-42.276Q7.312-42.071 6.949-41.789Q6.587-41.507 6.478-41.411L5.623-40.683L6.266-40.683Q6.529-40.683 6.818-40.685Q7.107-40.686 7.325-40.695Q7.544-40.704 7.561-40.721Q7.623-40.786 7.660-40.953Q7.698-41.121 7.736-41.363L8.002-41.363L7.794-40.061M9.257-40.823L9.226-40.823Q9.363-40.526 9.660-40.350Q9.957-40.174 10.285-40.174Q10.648-40.174 10.875-40.352Q11.102-40.529 11.196-40.818Q11.290-41.107 11.290-41.469Q11.290-41.784 11.236-42.069Q11.181-42.354 11.008-42.560Q10.836-42.765 10.521-42.765Q10.248-42.765 10.065-42.698Q9.882-42.631 9.778-42.542Q9.674-42.454 9.578-42.344Q9.482-42.235 9.438-42.225L9.359-42.225Q9.287-42.242 9.270-42.313L9.270-44.631Q9.270-44.665 9.294-44.687Q9.318-44.709 9.352-44.709L9.380-44.709Q9.667-44.593 9.935-44.539Q10.203-44.484 10.480-44.484Q10.757-44.484 11.027-44.539Q11.297-44.593 11.577-44.709L11.601-44.709Q11.635-44.709 11.659-44.686Q11.683-44.662 11.683-44.631L11.683-44.562Q11.683-44.535 11.663-44.515Q11.389-44.200 11.005-44.024Q10.620-43.848 10.207-43.848Q9.868-43.848 9.551-43.934L9.551-42.652Q9.947-42.987 10.521-42.987Q10.925-42.987 11.261-42.777Q11.598-42.566 11.791-42.214Q11.984-41.862 11.984-41.462Q11.984-41.131 11.844-40.845Q11.704-40.560 11.459-40.350Q11.215-40.140 10.913-40.030Q10.610-39.921 10.292-39.921Q9.933-39.921 9.607-40.085Q9.280-40.249 9.086-40.541Q8.891-40.833 8.891-41.196Q8.891-41.346 8.997-41.452Q9.103-41.558 9.257-41.558Q9.410-41.558 9.515-41.454Q9.619-41.350 9.619-41.196Q9.619-41.039 9.515-40.931Q9.410-40.823 9.257-40.823M13.239-40.823L13.208-40.823Q13.344-40.526 13.642-40.350Q13.939-40.174 14.267-40.174Q14.630-40.174 14.857-40.352Q15.084-40.529 15.178-40.818Q15.272-41.107 15.272-41.469Q15.272-41.784 15.218-42.069Q15.163-42.354 14.990-42.560Q14.818-42.765 14.503-42.765Q14.230-42.765 14.047-42.698Q13.864-42.631 13.760-42.542Q13.656-42.454 13.560-42.344Q13.464-42.235 13.420-42.225L13.341-42.225Q13.269-42.242 13.252-42.313L13.252-44.631Q13.252-44.665 13.276-44.687Q13.300-44.709 13.334-44.709L13.362-44.709Q13.649-44.593 13.917-44.539Q14.185-44.484 14.462-44.484Q14.739-44.484 15.009-44.539Q15.279-44.593 15.559-44.709L15.583-44.709Q15.617-44.709 15.641-44.686Q15.665-44.662 15.665-44.631L15.665-44.562Q15.665-44.535 15.645-44.515Q15.371-44.200 14.987-44.024Q14.602-43.848 14.189-43.848Q13.850-43.848 13.532-43.934L13.532-42.652Q13.929-42.987 14.503-42.987Q14.906-42.987 15.243-42.777Q15.580-42.566 15.773-42.214Q15.966-41.862 15.966-41.462Q15.966-41.131 15.826-40.845Q15.686-40.560 15.441-40.350Q15.197-40.140 14.895-40.030Q14.592-39.921 14.274-39.921Q13.915-39.921 13.589-40.085Q13.262-40.249 13.068-40.541Q12.873-40.833 12.873-41.196Q12.873-41.346 12.979-41.452Q13.085-41.558 13.239-41.558Q13.392-41.558 13.497-41.454Q13.601-41.350 13.601-41.196Q13.601-41.039 13.497-40.931Q13.392-40.823 13.239-40.823\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M-3.995-40.269L-3.995-40.348Q-3.950-40.533-3.780-40.550L-3.605-40.550L-3.605-42.587L-3.780-42.587Q-3.961-42.607-3.995-42.799L-3.995-42.874Q-3.950-43.062-3.780-43.079L-3.359-43.079Q-3.192-43.059-3.140-42.874Q-2.860-43.113-2.498-43.113Q-2.330-43.113-2.183-43.018Q-2.036-42.922-1.971-42.771Q-1.818-42.939-1.623-43.026Q-1.428-43.113-1.216-43.113Q-0.850-43.113-0.715-42.814Q-0.580-42.515-0.580-42.105L-0.580-40.550L-0.406-40.550Q-0.221-40.529-0.187-40.348L-0.187-40.269Q-0.232-40.082-0.406-40.061L-1.120-40.061Q-1.291-40.082-1.336-40.269L-1.336-40.348Q-1.291-40.529-1.120-40.550L-1.042-40.550L-1.042-42.078Q-1.042-42.624-1.260-42.624Q-1.551-42.624-1.707-42.353Q-1.862-42.081-1.862-41.763L-1.862-40.550L-1.684-40.550Q-1.503-40.529-1.469-40.348L-1.469-40.269Q-1.513-40.082-1.684-40.061L-2.399-40.061Q-2.573-40.082-2.617-40.269L-2.617-40.348Q-2.573-40.529-2.399-40.550L-2.323-40.550L-2.323-42.078Q-2.323-42.624-2.539-42.624Q-2.829-42.624-2.985-42.351Q-3.140-42.078-3.140-41.763L-3.140-40.550L-2.966-40.550Q-2.785-40.529-2.751-40.348L-2.751-40.269Q-2.795-40.078-2.966-40.061L-3.780-40.061Q-3.961-40.082-3.995-40.269M1.624-40.027Q1.211-40.027 0.874-40.240Q0.537-40.454 0.343-40.813Q0.148-41.172 0.148-41.572Q0.148-41.873 0.257-42.155Q0.366-42.436 0.568-42.659Q0.770-42.881 1.038-43.007Q1.306-43.134 1.624-43.134Q1.942-43.134 2.216-43.006Q2.489-42.877 2.684-42.662Q2.879-42.447 2.990-42.166Q3.101-41.886 3.101-41.572Q3.101-41.172 2.904-40.811Q2.708-40.451 2.371-40.239Q2.034-40.027 1.624-40.027M1.624-40.516Q2.031-40.516 2.286-40.861Q2.540-41.206 2.540-41.630Q2.540-41.886 2.422-42.120Q2.304-42.354 2.094-42.500Q1.884-42.645 1.624-42.645Q1.358-42.645 1.149-42.500Q0.941-42.354 0.823-42.120Q0.705-41.886 0.705-41.630Q0.705-41.209 0.961-40.863Q1.218-40.516 1.624-40.516M4.933-40.256L4.157-42.587L3.877-42.587Q3.702-42.607 3.658-42.799L3.658-42.874Q3.702-43.059 3.877-43.079L4.892-43.079Q5.063-43.062 5.107-42.874L5.107-42.799Q5.063-42.607 4.892-42.587L4.646-42.587L5.340-40.509L6.030-42.587L5.787-42.587Q5.613-42.607 5.569-42.799L5.569-42.874Q5.613-43.059 5.787-43.079L6.803-43.079Q6.973-43.059 7.018-42.874L7.018-42.799Q6.973-42.607 6.803-42.587L6.522-42.587L5.746-40.256Q5.709-40.157 5.620-40.092Q5.531-40.027 5.422-40.027L5.254-40.027Q5.152-40.027 5.061-40.090Q4.970-40.153 4.933-40.256M7.712-40.235L7.712-41.035Q7.736-41.216 7.920-41.237L8.067-41.237Q8.211-41.216 8.262-41.076Q8.440-40.516 9.075-40.516Q9.257-40.516 9.457-40.546Q9.657-40.577 9.803-40.678Q9.950-40.779 9.950-40.957Q9.950-41.141 9.756-41.240Q9.561-41.339 9.322-41.377L8.710-41.476Q7.712-41.661 7.712-42.293Q7.712-42.546 7.838-42.712Q7.965-42.877 8.175-42.971Q8.385-43.065 8.609-43.100Q8.833-43.134 9.075-43.134Q9.294-43.134 9.463-43.108Q9.633-43.082 9.776-43.014Q9.845-43.117 9.957-43.134L10.026-43.134Q10.111-43.123 10.166-43.069Q10.220-43.014 10.231-42.932L10.231-42.313Q10.220-42.231 10.166-42.173Q10.111-42.115 10.026-42.105L9.879-42.105Q9.797-42.115 9.739-42.173Q9.680-42.231 9.670-42.313Q9.670-42.645 9.062-42.645Q8.758-42.645 8.479-42.573Q8.200-42.501 8.200-42.286Q8.200-42.054 8.788-41.958L9.404-41.852Q9.827-41.780 10.133-41.563Q10.439-41.346 10.439-40.957Q10.439-40.615 10.232-40.403Q10.026-40.191 9.720-40.109Q9.414-40.027 9.075-40.027Q8.570-40.027 8.221-40.249Q8.159-40.140 8.117-40.090Q8.074-40.040 7.982-40.027L7.920-40.027Q7.732-40.047 7.712-40.235M11.564-40.269L11.564-43.848L11.195-43.848Q11.013-43.869 10.976-44.057L10.976-44.135Q11.013-44.316 11.195-44.337L11.909-44.337Q12.080-44.316 12.124-44.135L12.124-42.812Q12.309-42.959 12.540-43.036Q12.770-43.113 13.006-43.113Q13.303-43.113 13.563-42.987Q13.823-42.860 14.011-42.640Q14.199-42.419 14.300-42.146Q14.401-41.873 14.401-41.572Q14.401-41.165 14.202-40.806Q14.004-40.447 13.666-40.237Q13.327-40.027 12.917-40.027Q12.463-40.027 12.124-40.348L12.124-40.269Q12.080-40.078 11.909-40.061L11.782-40.061Q11.615-40.082 11.564-40.269M12.880-40.516Q13.150-40.516 13.368-40.664Q13.587-40.813 13.714-41.059Q13.840-41.305 13.840-41.572Q13.840-41.825 13.731-42.069Q13.621-42.313 13.418-42.469Q13.215-42.624 12.951-42.624Q12.671-42.624 12.442-42.462Q12.213-42.300 12.124-42.037L12.124-41.291Q12.203-40.970 12.396-40.743Q12.589-40.516 12.880-40.516M16.653-38.711L16.653-38.786Q16.698-38.978 16.868-38.998L17.275-38.998L17.275-40.396Q16.879-40.027 16.345-40.027Q16.034-40.027 15.768-40.152Q15.501-40.276 15.298-40.495Q15.095-40.714 14.985-40.996Q14.876-41.278 14.876-41.572Q14.876-41.996 15.084-42.346Q15.293-42.696 15.648-42.905Q16.004-43.113 16.421-43.113Q16.913-43.113 17.275-42.771L17.275-42.912Q17.320-43.096 17.494-43.113L17.617-43.113Q17.791-43.093 17.836-42.912L17.836-38.998L18.242-38.998Q18.413-38.978 18.458-38.786L18.458-38.711Q18.413-38.526 18.242-38.506L16.868-38.506Q16.698-38.526 16.653-38.711M16.386-40.516Q16.711-40.516 16.952-40.738Q17.193-40.960 17.275-41.278L17.275-41.818Q17.238-42.026 17.130-42.213Q17.022-42.399 16.850-42.512Q16.677-42.624 16.465-42.624Q16.188-42.624 15.951-42.479Q15.713-42.334 15.575-42.088Q15.436-41.842 15.436-41.565Q15.436-41.158 15.711-40.837Q15.987-40.516 16.386-40.516\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M22.195-39.835Q22.195-39.880 22.222-39.935L25.630-44.515Q25.189-44.310 24.714-44.310Q24.126-44.310 23.559-44.597Q23.692-44.286 23.692-43.903Q23.692-43.588 23.579-43.260Q23.466-42.932 23.237-42.712Q23.008-42.491 22.684-42.491Q22.342-42.491 22.080-42.701Q21.819-42.912 21.684-43.240Q21.549-43.568 21.549-43.903Q21.549-44.234 21.684-44.562Q21.819-44.891 22.080-45.101Q22.342-45.311 22.684-45.311Q22.967-45.311 23.217-45.103Q23.538-44.829 23.916-44.682Q24.293-44.535 24.707-44.535Q25.144-44.535 25.534-44.716Q25.924-44.897 26.177-45.243Q26.235-45.311 26.317-45.311Q26.385-45.311 26.435-45.261Q26.484-45.212 26.484-45.144Q26.484-45.099 26.457-45.044L22.509-39.747Q22.455-39.668 22.369-39.668Q22.297-39.668 22.246-39.719Q22.195-39.770 22.195-39.835M22.684-42.713Q22.926-42.713 23.095-42.908Q23.265-43.103 23.345-43.385Q23.425-43.667 23.425-43.903Q23.425-44.070 23.381-44.280Q23.336-44.491 23.251-44.665Q23.165-44.839 23.018-44.962Q22.872-45.085 22.684-45.085Q22.328-45.085 22.202-44.715Q22.075-44.344 22.075-43.903Q22.075-43.458 22.202-43.086Q22.328-42.713 22.684-42.713M26.122-39.668Q25.780-39.668 25.519-39.880Q25.257-40.092 25.122-40.420Q24.987-40.748 24.987-41.083Q24.987-41.415 25.122-41.741Q25.257-42.067 25.519-42.279Q25.780-42.491 26.122-42.491Q26.443-42.491 26.672-42.271Q26.901-42.050 27.016-41.722Q27.130-41.394 27.130-41.083Q27.130-40.769 27.016-40.439Q26.901-40.109 26.672-39.888Q26.443-39.668 26.122-39.668M26.122-39.894Q26.365-39.894 26.536-40.090Q26.706-40.287 26.785-40.565Q26.864-40.844 26.864-41.083Q26.864-41.250 26.819-41.461Q26.775-41.671 26.689-41.845Q26.604-42.019 26.457-42.143Q26.310-42.266 26.122-42.266Q25.767-42.266 25.640-41.895Q25.514-41.524 25.514-41.083Q25.514-40.639 25.640-40.266Q25.767-39.894 26.122-39.894\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M27.985-41.035Q27.985-41.425 28.348-41.650Q28.710-41.876 29.183-41.963Q29.657-42.050 30.101-42.057Q30.101-42.245 29.983-42.378Q29.865-42.512 29.684-42.578Q29.503-42.645 29.318-42.645Q29.018-42.645 28.878-42.624L28.878-42.573Q28.878-42.426 28.773-42.325Q28.669-42.225 28.526-42.225Q28.372-42.225 28.271-42.332Q28.170-42.440 28.170-42.587Q28.170-42.942 28.503-43.038Q28.837-43.134 29.325-43.134Q29.561-43.134 29.795-43.065Q30.029-42.997 30.226-42.865Q30.422-42.734 30.542-42.541Q30.662-42.348 30.662-42.105L30.662-40.601Q30.662-40.550 31.123-40.550Q31.294-40.533 31.338-40.348L31.338-40.269Q31.294-40.082 31.123-40.061L30.997-40.061Q30.696-40.061 30.496-40.102Q30.296-40.143 30.170-40.307Q29.766-40.027 29.148-40.027Q28.854-40.027 28.587-40.150Q28.320-40.273 28.153-40.502Q27.985-40.731 27.985-41.035M28.546-41.028Q28.546-40.789 28.758-40.652Q28.970-40.516 29.219-40.516Q29.411-40.516 29.614-40.567Q29.817-40.618 29.959-40.739Q30.101-40.861 30.101-41.056L30.101-41.572Q29.855-41.572 29.491-41.522Q29.127-41.473 28.837-41.351Q28.546-41.230 28.546-41.028M31.738-40.269L31.738-40.348Q31.783-40.529 31.954-40.550L32.921-40.550L32.921-43.848L31.954-43.848Q31.783-43.869 31.738-44.057L31.738-44.135Q31.783-44.316 31.954-44.337L33.263-44.337Q33.430-44.316 33.482-44.135L33.482-40.550L34.445-40.550Q34.620-40.529 34.664-40.348L34.664-40.269Q34.620-40.082 34.445-40.061L31.954-40.061Q31.783-40.082 31.738-40.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M35.935-38.831Q35.935-38.865 35.963-38.892Q36.229-39.114 36.380-39.441Q36.530-39.767 36.530-40.123L36.530-40.160Q36.427-40.061 36.256-40.061Q36.079-40.061 35.957-40.182Q35.836-40.304 35.836-40.481Q35.836-40.652 35.957-40.774Q36.079-40.895 36.256-40.895Q36.516-40.895 36.636-40.656Q36.755-40.416 36.755-40.123Q36.755-39.719 36.585-39.350Q36.414-38.981 36.116-38.725Q36.086-38.704 36.062-38.704Q36.017-38.704 35.976-38.745Q35.935-38.786 35.935-38.831\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M39.943-39.835Q39.943-39.880 39.970-39.935L43.378-44.515Q42.937-44.310 42.462-44.310Q41.874-44.310 41.307-44.597Q41.440-44.286 41.440-43.903Q41.440-43.588 41.327-43.260Q41.214-42.932 40.985-42.712Q40.756-42.491 40.432-42.491Q40.090-42.491 39.828-42.701Q39.567-42.912 39.432-43.240Q39.297-43.568 39.297-43.903Q39.297-44.234 39.432-44.562Q39.567-44.891 39.828-45.101Q40.090-45.311 40.432-45.311Q40.715-45.311 40.965-45.103Q41.286-44.829 41.664-44.682Q42.041-44.535 42.455-44.535Q42.892-44.535 43.282-44.716Q43.672-44.897 43.925-45.243Q43.983-45.311 44.065-45.311Q44.133-45.311 44.183-45.261Q44.232-45.212 44.232-45.144Q44.232-45.099 44.205-45.044L40.257-39.747Q40.203-39.668 40.117-39.668Q40.045-39.668 39.994-39.719Q39.943-39.770 39.943-39.835M40.432-42.713Q40.674-42.713 40.843-42.908Q41.013-43.103 41.093-43.385Q41.173-43.667 41.173-43.903Q41.173-44.070 41.129-44.280Q41.084-44.491 40.999-44.665Q40.913-44.839 40.766-44.962Q40.620-45.085 40.432-45.085Q40.076-45.085 39.950-44.715Q39.823-44.344 39.823-43.903Q39.823-43.458 39.950-43.086Q40.076-42.713 40.432-42.713M43.870-39.668Q43.528-39.668 43.267-39.880Q43.005-40.092 42.870-40.420Q42.735-40.748 42.735-41.083Q42.735-41.415 42.870-41.741Q43.005-42.067 43.267-42.279Q43.528-42.491 43.870-42.491Q44.191-42.491 44.420-42.271Q44.649-42.050 44.764-41.722Q44.878-41.394 44.878-41.083Q44.878-40.769 44.764-40.439Q44.649-40.109 44.420-39.888Q44.191-39.668 43.870-39.668M43.870-39.894Q44.113-39.894 44.284-40.090Q44.454-40.287 44.533-40.565Q44.612-40.844 44.612-41.083Q44.612-41.250 44.567-41.461Q44.523-41.671 44.437-41.845Q44.352-42.019 44.205-42.143Q44.058-42.266 43.870-42.266Q43.515-42.266 43.388-41.895Q43.262-41.524 43.262-41.083Q43.262-40.639 43.388-40.266Q43.515-39.894 43.870-39.894\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.323 7.538)\">\u003Cpath d=\"M45.573-40.269L45.573-40.348Q45.624-40.529 45.792-40.550L46.414-40.550L46.414-42.587L45.792-42.587Q45.621-42.607 45.573-42.799L45.573-42.874Q45.624-43.059 45.792-43.079L46.755-43.079Q46.930-43.062 46.974-42.874L46.974-42.587Q47.203-42.836 47.514-42.975Q47.825-43.113 48.164-43.113Q48.420-43.113 48.625-42.995Q48.830-42.877 48.830-42.645Q48.830-42.498 48.734-42.395Q48.639-42.293 48.492-42.293Q48.358-42.293 48.258-42.390Q48.157-42.488 48.157-42.624Q47.829-42.624 47.554-42.448Q47.278-42.272 47.126-41.980Q46.974-41.688 46.974-41.356L46.974-40.550L47.801-40.550Q47.982-40.529 48.017-40.348L48.017-40.269Q47.982-40.082 47.801-40.061L45.792-40.061Q45.624-40.082 45.573-40.269M49.743-40.269L49.743-43.848L49.374-43.848Q49.192-43.869 49.155-44.057L49.155-44.135Q49.192-44.316 49.374-44.337L50.088-44.337Q50.259-44.316 50.303-44.135L50.303-42.812Q50.488-42.959 50.719-43.036Q50.949-43.113 51.185-43.113Q51.482-43.113 51.742-42.987Q52.002-42.860 52.190-42.640Q52.378-42.419 52.479-42.146Q52.580-41.873 52.580-41.572Q52.580-41.165 52.381-40.806Q52.183-40.447 51.845-40.237Q51.506-40.027 51.096-40.027Q50.642-40.027 50.303-40.348L50.303-40.269Q50.259-40.078 50.088-40.061L49.961-40.061Q49.794-40.082 49.743-40.269M51.059-40.516Q51.329-40.516 51.547-40.664Q51.766-40.813 51.893-41.059Q52.019-41.305 52.019-41.572Q52.019-41.825 51.910-42.069Q51.800-42.313 51.597-42.469Q51.394-42.624 51.130-42.624Q50.850-42.624 50.621-42.462Q50.392-42.300 50.303-42.037L50.303-41.291Q50.382-40.970 50.575-40.743Q50.768-40.516 51.059-40.516M53.034-40.269L53.034-40.348Q53.068-40.529 53.250-40.550L53.605-40.550L54.419-41.616L53.656-42.587L53.291-42.587Q53.120-42.604 53.075-42.799L53.075-42.874Q53.120-43.059 53.291-43.079L54.306-43.079Q54.480-43.059 54.524-42.874L54.524-42.799Q54.480-42.607 54.306-42.587L54.210-42.587L54.644-42.013L55.061-42.587L54.959-42.587Q54.784-42.607 54.740-42.799L54.740-42.874Q54.784-43.059 54.959-43.079L55.974-43.079Q56.145-43.062 56.189-42.874L56.189-42.799Q56.145-42.607 55.974-42.587L55.615-42.587L54.873-41.616L55.714-40.550L56.069-40.550Q56.244-40.529 56.288-40.348L56.288-40.269Q56.254-40.082 56.069-40.061L55.061-40.061Q54.880-40.082 54.846-40.269L54.846-40.348Q54.880-40.529 55.061-40.550L55.174-40.550L54.644-41.298L54.131-40.550L54.258-40.550Q54.439-40.529 54.473-40.348L54.473-40.269Q54.439-40.082 54.258-40.061L53.250-40.061Q53.079-40.078 53.034-40.269\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M21.66-25.123h96.74v-18.494H21.66Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(37.852 8.135)\">\u003Cpath d=\"M-3.740-40.299L-3.740-40.389Q-3.701-40.596-3.490-40.620L-3.154-40.620L-3.154-44.389L-3.490-44.389Q-3.701-44.413-3.740-44.627L-3.740-44.717Q-3.701-44.924-3.490-44.948L-0.236-44.948Q-0.037-44.924 0.014-44.717L0.014-43.877Q-0.033-43.663-0.236-43.635L-0.381-43.635Q-0.576-43.663-0.627-43.877L-0.627-44.389L-2.513-44.389L-2.513-42.788L-1.506-42.788L-1.506-43.006Q-1.455-43.213-1.260-43.237L-1.115-43.237Q-0.920-43.217-0.869-43.006L-0.869-42.022Q-0.920-41.803-1.115-41.780L-1.260-41.780Q-1.455-41.799-1.506-42.022L-1.506-42.229L-2.513-42.229L-2.513-40.620L-2.025-40.620Q-1.830-40.596-1.779-40.389L-1.779-40.299Q-1.830-40.084-2.025-40.061L-3.490-40.061Q-3.701-40.084-3.740-40.299M0.506-40.299L0.506-40.389Q0.545-40.596 0.756-40.620L1.092-40.620L1.092-44.389L0.756-44.389Q0.545-44.413 0.506-44.627L0.506-44.717Q0.545-44.924 0.756-44.948L4.010-44.948Q4.209-44.924 4.260-44.717L4.260-43.877Q4.213-43.663 4.010-43.635L3.865-43.635Q3.670-43.663 3.619-43.877L3.619-44.389L1.733-44.389L1.733-42.788L2.740-42.788L2.740-43.006Q2.791-43.213 2.987-43.237L3.131-43.237Q3.326-43.217 3.377-43.006L3.377-42.022Q3.326-41.803 3.131-41.780L2.987-41.780Q2.791-41.799 2.740-42.022L2.740-42.229L1.733-42.229L1.733-40.620L2.221-40.620Q2.416-40.596 2.467-40.389L2.467-40.299Q2.416-40.084 2.221-40.061L0.756-40.061Q0.545-40.084 0.506-40.299M4.752-40.299L4.752-40.389Q4.791-40.596 5.002-40.620L5.338-40.620L5.338-44.389L5.002-44.389Q4.791-44.413 4.752-44.627L4.752-44.717Q4.791-44.924 5.002-44.948L8.256-44.948Q8.455-44.924 8.506-44.717L8.506-43.877Q8.459-43.663 8.256-43.635L8.112-43.635Q7.916-43.663 7.865-43.877L7.865-44.389L5.979-44.389L5.979-42.788L6.987-42.788L6.987-43.006Q7.037-43.213 7.233-43.237L7.377-43.237Q7.573-43.217 7.623-43.006L7.623-42.022Q7.573-41.803 7.377-41.780L7.233-41.780Q7.037-41.799 6.987-42.022L6.987-42.229L5.979-42.229L5.979-40.620L6.467-40.620Q6.662-40.596 6.713-40.389L6.713-40.299Q6.662-40.084 6.467-40.061L5.002-40.061Q4.791-40.084 4.752-40.299M8.998-40.299L8.998-40.389Q9.037-40.596 9.248-40.620L9.584-40.620L9.584-44.389L9.248-44.389Q9.037-44.413 8.998-44.627L8.998-44.717Q9.037-44.924 9.248-44.948L12.502-44.948Q12.701-44.924 12.752-44.717L12.752-43.877Q12.705-43.663 12.502-43.635L12.358-43.635Q12.162-43.663 12.112-43.877L12.112-44.389L10.225-44.389L10.225-42.788L11.233-42.788L11.233-43.006Q11.283-43.213 11.479-43.237L11.623-43.237Q11.819-43.217 11.869-43.006L11.869-42.022Q11.819-41.803 11.623-41.780L11.479-41.780Q11.283-41.799 11.233-42.022L11.233-42.229L10.225-42.229L10.225-40.620L10.713-40.620Q10.908-40.596 10.959-40.389L10.959-40.299Q10.908-40.084 10.713-40.061L9.248-40.061Q9.037-40.084 8.998-40.299\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 8.135)\">\u003Cpath d=\"M14.677-40.299L14.677-40.389Q14.716-40.596 14.927-40.620L15.263-40.620L15.263-44.389L14.927-44.389Q14.716-44.413 14.677-44.627L14.677-44.717Q14.716-44.924 14.927-44.948L18.181-44.948Q18.380-44.924 18.431-44.717L18.431-43.877Q18.384-43.663 18.181-43.635L18.036-43.635Q17.841-43.663 17.790-43.877L17.790-44.389L15.904-44.389L15.904-42.788L16.911-42.788L16.911-43.006Q16.962-43.213 17.157-43.237L17.302-43.237Q17.497-43.217 17.548-43.006L17.548-42.022Q17.497-41.803 17.302-41.780L17.157-41.780Q16.962-41.799 16.911-42.022L16.911-42.229L15.904-42.229L15.904-40.620L16.392-40.620Q16.587-40.596 16.638-40.389L16.638-40.299Q16.587-40.084 16.392-40.061L14.927-40.061Q14.716-40.084 14.677-40.299M18.923-40.299L18.923-40.389Q18.962-40.596 19.173-40.620L19.509-40.620L19.509-44.389L19.173-44.389Q18.962-44.413 18.923-44.627L18.923-44.717Q18.962-44.924 19.173-44.948L22.427-44.948Q22.626-44.924 22.677-44.717L22.677-43.877Q22.630-43.663 22.427-43.635L22.282-43.635Q22.087-43.663 22.036-43.877L22.036-44.389L20.150-44.389L20.150-42.788L21.157-42.788L21.157-43.006Q21.208-43.213 21.404-43.237L21.548-43.237Q21.743-43.217 21.794-43.006L21.794-42.022Q21.743-41.803 21.548-41.780L21.404-41.780Q21.208-41.799 21.157-42.022L21.157-42.229L20.150-42.229L20.150-40.620L20.638-40.620Q20.833-40.596 20.884-40.389L20.884-40.299Q20.833-40.084 20.638-40.061L19.173-40.061Q18.962-40.084 18.923-40.299M23.169-40.299L23.169-40.389Q23.208-40.596 23.419-40.620L23.755-40.620L23.755-44.389L23.419-44.389Q23.208-44.413 23.169-44.627L23.169-44.717Q23.208-44.924 23.419-44.948L26.673-44.948Q26.872-44.924 26.923-44.717L26.923-43.877Q26.876-43.663 26.673-43.635L26.529-43.635Q26.333-43.663 26.282-43.877L26.282-44.389L24.396-44.389L24.396-42.788L25.404-42.788L25.404-43.006Q25.454-43.213 25.650-43.237L25.794-43.237Q25.990-43.217 26.040-43.006L26.040-42.022Q25.990-41.803 25.794-41.780L25.650-41.780Q25.454-41.799 25.404-42.022L25.404-42.229L24.396-42.229L24.396-40.620L24.884-40.620Q25.079-40.596 25.130-40.389L25.130-40.299Q25.079-40.084 24.884-40.061L23.419-40.061Q23.208-40.084 23.169-40.299M27.415-40.299L27.415-40.389Q27.454-40.596 27.665-40.620L28.001-40.620L28.001-44.389L27.665-44.389Q27.454-44.413 27.415-44.627L27.415-44.717Q27.454-44.924 27.665-44.948L30.919-44.948Q31.118-44.924 31.169-44.717L31.169-43.877Q31.122-43.663 30.919-43.635L30.775-43.635Q30.579-43.663 30.529-43.877L30.529-44.389L28.642-44.389L28.642-42.788L29.650-42.788L29.650-43.006Q29.700-43.213 29.896-43.237L30.040-43.237Q30.236-43.217 30.286-43.006L30.286-42.022Q30.236-41.803 30.040-41.780L29.896-41.780Q29.700-41.799 29.650-42.022L29.650-42.229L28.642-42.229L28.642-40.620L29.130-40.620Q29.325-40.596 29.376-40.389L29.376-40.299Q29.325-40.084 29.130-40.061L27.665-40.061Q27.454-40.084 27.415-40.299\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 8.135)\">\u003Cpath d=\"M33.094-40.299L33.094-40.389Q33.133-40.596 33.344-40.620L33.680-40.620L33.680-44.389L33.344-44.389Q33.133-44.413 33.094-44.627L33.094-44.717Q33.133-44.924 33.344-44.948L36.598-44.948Q36.797-44.924 36.848-44.717L36.848-43.877Q36.801-43.663 36.598-43.635L36.453-43.635Q36.258-43.663 36.207-43.877L36.207-44.389L34.321-44.389L34.321-42.788L35.328-42.788L35.328-43.006Q35.379-43.213 35.575-43.237L35.719-43.237Q35.914-43.217 35.965-43.006L35.965-42.022Q35.914-41.803 35.719-41.780L35.575-41.780Q35.379-41.799 35.328-42.022L35.328-42.229L34.321-42.229L34.321-40.620L34.809-40.620Q35.004-40.596 35.055-40.389L35.055-40.299Q35.004-40.084 34.809-40.061L33.344-40.061Q33.133-40.084 33.094-40.299M37.340-40.299L37.340-40.389Q37.379-40.596 37.590-40.620L37.926-40.620L37.926-44.389L37.590-44.389Q37.379-44.413 37.340-44.627L37.340-44.717Q37.379-44.924 37.590-44.948L40.844-44.948Q41.043-44.924 41.094-44.717L41.094-43.877Q41.047-43.663 40.844-43.635L40.700-43.635Q40.504-43.663 40.453-43.877L40.453-44.389L38.567-44.389L38.567-42.788L39.575-42.788L39.575-43.006Q39.625-43.213 39.821-43.237L39.965-43.237Q40.160-43.217 40.211-43.006L40.211-42.022Q40.160-41.803 39.965-41.780L39.821-41.780Q39.625-41.799 39.575-42.022L39.575-42.229L38.567-42.229L38.567-40.620L39.055-40.620Q39.250-40.596 39.301-40.389L39.301-40.299Q39.250-40.084 39.055-40.061L37.590-40.061Q37.379-40.084 37.340-40.299M41.586-40.299L41.586-40.389Q41.625-40.596 41.836-40.620L42.172-40.620L42.172-44.389L41.836-44.389Q41.625-44.413 41.586-44.627L41.586-44.717Q41.625-44.924 41.836-44.948L45.090-44.948Q45.289-44.924 45.340-44.717L45.340-43.877Q45.293-43.663 45.090-43.635L44.946-43.635Q44.750-43.663 44.700-43.877L44.700-44.389L42.813-44.389L42.813-42.788L43.821-42.788L43.821-43.006Q43.871-43.213 44.067-43.237L44.211-43.237Q44.407-43.217 44.457-43.006L44.457-42.022Q44.407-41.803 44.211-41.780L44.067-41.780Q43.871-41.799 43.821-42.022L43.821-42.229L42.813-42.229L42.813-40.620L43.301-40.620Q43.496-40.596 43.547-40.389L43.547-40.299Q43.496-40.084 43.301-40.061L41.836-40.061Q41.625-40.084 41.586-40.299M45.832-40.299L45.832-40.389Q45.871-40.596 46.082-40.620L46.418-40.620L46.418-44.389L46.082-44.389Q45.871-44.413 45.832-44.627L45.832-44.717Q45.871-44.924 46.082-44.948L49.336-44.948Q49.535-44.924 49.586-44.717L49.586-43.877Q49.539-43.663 49.336-43.635L49.192-43.635Q48.996-43.663 48.946-43.877L48.946-44.389L47.059-44.389L47.059-42.788L48.067-42.788L48.067-43.006Q48.117-43.213 48.313-43.237L48.457-43.237Q48.653-43.217 48.703-43.006L48.703-42.022Q48.653-41.803 48.457-41.780L48.313-41.780Q48.117-41.799 48.067-42.022L48.067-42.229L47.059-42.229L47.059-40.620L47.547-40.620Q47.742-40.596 47.793-40.389L47.793-40.299Q47.742-40.084 47.547-40.061L46.082-40.061Q45.871-40.084 45.832-40.299\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(37.852 8.135)\">\u003Cpath d=\"M51.511-40.299L51.511-40.389Q51.550-40.596 51.761-40.620L52.097-40.620L52.097-44.389L51.761-44.389Q51.550-44.413 51.511-44.627L51.511-44.717Q51.550-44.924 51.761-44.948L55.015-44.948Q55.214-44.924 55.265-44.717L55.265-43.877Q55.218-43.663 55.015-43.635L54.870-43.635Q54.675-43.663 54.624-43.877L54.624-44.389L52.738-44.389L52.738-42.788L53.745-42.788L53.745-43.006Q53.796-43.213 53.992-43.237L54.136-43.237Q54.331-43.217 54.382-43.006L54.382-42.022Q54.331-41.803 54.136-41.780L53.992-41.780Q53.796-41.799 53.745-42.022L53.745-42.229L52.738-42.229L52.738-40.620L53.226-40.620Q53.421-40.596 53.472-40.389L53.472-40.299Q53.421-40.084 53.226-40.061L51.761-40.061Q51.550-40.084 51.511-40.299M55.757-40.299L55.757-40.389Q55.796-40.596 56.007-40.620L56.343-40.620L56.343-44.389L56.007-44.389Q55.796-44.413 55.757-44.627L55.757-44.717Q55.796-44.924 56.007-44.948L59.261-44.948Q59.460-44.924 59.511-44.717L59.511-43.877Q59.464-43.663 59.261-43.635L59.117-43.635Q58.921-43.663 58.870-43.877L58.870-44.389L56.984-44.389L56.984-42.788L57.992-42.788L57.992-43.006Q58.042-43.213 58.238-43.237L58.382-43.237Q58.577-43.217 58.628-43.006L58.628-42.022Q58.577-41.803 58.382-41.780L58.238-41.780Q58.042-41.799 57.992-42.022L57.992-42.229L56.984-42.229L56.984-40.620L57.472-40.620Q57.667-40.596 57.718-40.389L57.718-40.299Q57.667-40.084 57.472-40.061L56.007-40.061Q55.796-40.084 55.757-40.299M60.003-40.299L60.003-40.389Q60.042-40.596 60.253-40.620L60.589-40.620L60.589-44.389L60.253-44.389Q60.042-44.413 60.003-44.627L60.003-44.717Q60.042-44.924 60.253-44.948L63.507-44.948Q63.706-44.924 63.757-44.717L63.757-43.877Q63.710-43.663 63.507-43.635L63.363-43.635Q63.167-43.663 63.117-43.877L63.117-44.389L61.230-44.389L61.230-42.788L62.238-42.788L62.238-43.006Q62.288-43.213 62.484-43.237L62.628-43.237Q62.824-43.217 62.874-43.006L62.874-42.022Q62.824-41.803 62.628-41.780L62.484-41.780Q62.288-41.799 62.238-42.022L62.238-42.229L61.230-42.229L61.230-40.620L61.718-40.620Q61.913-40.596 61.964-40.389L61.964-40.299Q61.913-40.084 61.718-40.061L60.253-40.061Q60.042-40.084 60.003-40.299M64.249-40.299L64.249-40.389Q64.288-40.596 64.499-40.620L64.835-40.620L64.835-44.389L64.499-44.389Q64.288-44.413 64.249-44.627L64.249-44.717Q64.288-44.924 64.499-44.948L67.753-44.948Q67.952-44.924 68.003-44.717L68.003-43.877Q67.956-43.663 67.753-43.635L67.609-43.635Q67.413-43.663 67.363-43.877L67.363-44.389L65.476-44.389L65.476-42.788L66.484-42.788L66.484-43.006Q66.534-43.213 66.730-43.237L66.874-43.237Q67.070-43.217 67.120-43.006L67.120-42.022Q67.070-41.803 66.874-41.780L66.730-41.780Q66.534-41.799 66.484-42.022L66.484-42.229L65.476-42.229L65.476-40.620L65.964-40.620Q66.159-40.596 66.210-40.389L66.210-40.299Q66.159-40.084 65.964-40.061L64.499-40.061Q64.288-40.084 64.249-40.299\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(131.57 7.946)\">\u003Cpath d=\"M1.535-40.868L-3.298-40.868Q-3.366-40.878-3.412-40.924Q-3.458-40.970-3.458-41.042Q-3.458-41.107-3.412-41.153Q-3.366-41.199-3.298-41.209L1.535-41.209Q1.604-41.199 1.650-41.153Q1.696-41.107 1.696-41.042Q1.696-40.970 1.650-40.924Q1.604-40.878 1.535-40.868M1.535-42.406L-3.298-42.406Q-3.366-42.416-3.412-42.462Q-3.458-42.508-3.458-42.580Q-3.458-42.724-3.298-42.748L1.535-42.748Q1.696-42.724 1.696-42.580Q1.696-42.508 1.650-42.462Q1.604-42.416 1.535-42.406\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 7.946)\">\u003Cpath d=\"M6.666-41.315L4.608-41.315L4.608-41.818L6.666-41.818\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(131.57 7.946)\">\u003Cpath d=\"M10.489-40.061L7.959-40.061L7.959-40.341Q8.927-40.341 8.927-40.550L8.927-44.169Q8.534-43.981 7.912-43.981L7.912-44.262Q8.329-44.262 8.693-44.363Q9.057-44.463 9.313-44.709L9.439-44.709Q9.504-44.692 9.521-44.624L9.521-40.550Q9.521-40.341 10.489-40.341\" 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\">Extending the byte 0xFF from %al to a quad. movzbq fills the new high bytes with zeros (value 255); movsbq replicates the sign bit 1 (value -1). The source bits are identical; the fill bytes decide the number.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:438.577px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 328.932 83.113\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-2.125 2.444)\">\u003Cpath d=\"M-39.594-34.292L-39.594-34.382Q-39.555-34.589-39.348-34.613L-39.098-34.613L-39.098-38.382L-39.348-38.382Q-39.555-38.406-39.594-38.620L-39.594-38.710Q-39.555-38.917-39.348-38.941L-37.532-38.941Q-36.981-38.941-36.586-38.548Q-36.192-38.156-35.997-37.577Q-35.801-36.999-35.801-36.452Q-35.801-35.925-36.001-35.361Q-36.200-34.796-36.592-34.425Q-36.985-34.054-37.532-34.054L-39.348-34.054Q-39.555-34.077-39.594-34.292M-38.458-38.382L-38.458-34.613L-37.692-34.613Q-37.098-34.613-36.770-35.208Q-36.442-35.804-36.442-36.452Q-36.442-36.859-36.577-37.308Q-36.711-37.757-36.997-38.070Q-37.282-38.382-37.692-38.382\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(13.996 2)\">\u003Cpath d=\"M-37.114-32.062Q-37.727-32.519-38.129-33.154Q-38.532-33.788-38.727-34.534Q-38.922-35.281-38.922-36.054Q-38.922-36.827-38.727-37.574Q-38.532-38.320-38.129-38.954Q-37.727-39.589-37.114-40.046Q-37.102-40.050-37.094-40.052Q-37.086-40.054-37.075-40.054L-36.997-40.054Q-36.958-40.054-36.932-40.027Q-36.907-39.999-36.907-39.956Q-36.907-39.906-36.938-39.886Q-37.446-39.433-37.768-38.810Q-38.090-38.187-38.231-37.492Q-38.372-36.796-38.372-36.054Q-38.372-35.320-38.233-34.620Q-38.094-33.921-37.770-33.296Q-37.446-32.671-36.938-32.222Q-36.907-32.202-36.907-32.152Q-36.907-32.109-36.932-32.081Q-36.958-32.054-36.997-32.054L-37.075-32.054Q-37.083-32.058-37.092-32.060Q-37.102-32.062-37.114-32.062\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(35.584 2.444)\">\u003Cpath d=\"M-38.157-34.054L-39.340-34.054Q-39.536-34.077-39.586-34.292L-39.586-34.382Q-39.536-34.589-39.340-34.613L-39.067-34.613L-39.067-38.382L-39.340-38.382Q-39.536-38.406-39.586-38.620L-39.586-38.710Q-39.536-38.917-39.340-38.941L-37.770-38.941Q-37.383-38.941-37.028-38.771Q-36.672-38.601-36.450-38.290Q-36.227-37.980-36.227-37.581Q-36.227-37.355-36.309-37.146Q-36.391-36.937-36.534-36.769Q-36.676-36.601-36.868-36.480Q-36.672-36.327-36.557-36.111Q-36.442-35.894-36.442-35.656L-36.442-35.077Q-36.442-34.534-36.243-34.534Q-36.196-34.534-36.170-34.663Q-36.145-34.792-36.145-34.894Q-36.094-35.101-35.899-35.124L-35.754-35.124Q-35.559-35.105-35.508-34.894L-35.508-34.839Q-35.508-34.507-35.713-34.242Q-35.919-33.976-36.235-33.976Q-36.649-33.976-36.866-34.283Q-37.083-34.589-37.083-35.023L-37.083-35.597Q-37.083-35.886-37.292-36.054Q-37.501-36.222-37.786-36.222L-38.426-36.222L-38.426-34.613L-38.157-34.613Q-37.958-34.589-37.907-34.382L-37.907-34.292Q-37.958-34.077-38.157-34.054M-38.426-38.382L-38.426-36.781L-37.852-36.781Q-37.618-36.781-37.391-36.876Q-37.165-36.972-37.016-37.156Q-36.868-37.339-36.868-37.581Q-36.868-37.824-37.016-38.007Q-37.165-38.191-37.389-38.286Q-37.614-38.382-37.852-38.382L-38.426-38.382M-34.743-34.292L-34.743-38.382L-35.165-38.382Q-35.372-38.406-35.415-38.620L-35.415-38.710Q-35.372-38.917-35.165-38.941L-34.348-38.941Q-34.153-38.917-34.102-38.710L-34.102-37.199Q-33.891-37.367-33.627-37.454Q-33.364-37.542-33.094-37.542Q-32.754-37.542-32.458-37.398Q-32.161-37.253-31.946-37.001Q-31.731-36.749-31.616-36.437Q-31.501-36.124-31.501-35.781Q-31.501-35.316-31.727-34.906Q-31.954-34.495-32.340-34.255Q-32.727-34.015-33.196-34.015Q-33.715-34.015-34.102-34.382L-34.102-34.292Q-34.153-34.074-34.348-34.054L-34.493-34.054Q-34.684-34.077-34.743-34.292M-33.239-34.574Q-32.930-34.574-32.680-34.743Q-32.430-34.913-32.286-35.195Q-32.141-35.476-32.141-35.781Q-32.141-36.070-32.266-36.349Q-32.391-36.628-32.624-36.806Q-32.856-36.984-33.157-36.984Q-33.477-36.984-33.739-36.798Q-34.001-36.613-34.102-36.312L-34.102-35.460Q-34.012-35.093-33.792-34.833Q-33.571-34.574-33.239-34.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.78 -.017)\">\u003Cpath d=\"M-38.012-32.941Q-38.126-32.941-38.215-33.031Q-38.305-33.120-38.305-33.230Q-38.305-33.406-38.114-33.480Q-37.895-33.531-37.723-33.689Q-37.551-33.847-37.485-34.070Q-37.508-34.070-37.540-34.054L-37.602-34.054Q-37.833-34.054-37.999-34.216Q-38.165-34.378-38.165-34.613Q-38.165-34.847-38.001-35.007Q-37.836-35.167-37.602-35.167Q-37.391-35.167-37.227-35.046Q-37.063-34.925-36.973-34.732Q-36.883-34.538-36.883-34.327Q-36.883-33.851-37.182-33.462Q-37.481-33.074-37.946-32.949Q-37.969-32.941-38.012-32.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.263 2.444)\">\u003Cpath d=\"M-38.157-34.054L-39.340-34.054Q-39.536-34.077-39.586-34.292L-39.586-34.382Q-39.536-34.589-39.340-34.613L-39.067-34.613L-39.067-38.382L-39.340-38.382Q-39.536-38.406-39.586-38.620L-39.586-38.710Q-39.536-38.917-39.340-38.941L-37.770-38.941Q-37.383-38.941-37.028-38.771Q-36.672-38.601-36.450-38.290Q-36.227-37.980-36.227-37.581Q-36.227-37.355-36.309-37.146Q-36.391-36.937-36.534-36.769Q-36.676-36.601-36.868-36.480Q-36.672-36.327-36.557-36.111Q-36.442-35.894-36.442-35.656L-36.442-35.077Q-36.442-34.534-36.243-34.534Q-36.196-34.534-36.170-34.663Q-36.145-34.792-36.145-34.894Q-36.094-35.101-35.899-35.124L-35.754-35.124Q-35.559-35.105-35.508-34.894L-35.508-34.839Q-35.508-34.507-35.713-34.242Q-35.919-33.976-36.235-33.976Q-36.649-33.976-36.866-34.283Q-37.083-34.589-37.083-35.023L-37.083-35.597Q-37.083-35.886-37.292-36.054Q-37.501-36.222-37.786-36.222L-38.426-36.222L-38.426-34.613L-38.157-34.613Q-37.958-34.589-37.907-34.382L-37.907-34.292Q-37.958-34.077-38.157-34.054M-38.426-38.382L-38.426-36.781L-37.852-36.781Q-37.618-36.781-37.391-36.876Q-37.165-36.972-37.016-37.156Q-36.868-37.339-36.868-37.581Q-36.868-37.824-37.016-38.007Q-37.165-38.191-37.389-38.286Q-37.614-38.382-37.852-38.382L-38.426-38.382M-34.868-34.292L-34.868-34.382Q-34.817-34.589-34.622-34.613L-33.583-34.613L-33.583-36.941L-34.555-36.941Q-34.754-36.964-34.805-37.183L-34.805-37.269Q-34.754-37.480-34.555-37.503L-33.188-37.503Q-32.993-37.484-32.942-37.269L-32.942-34.613L-32.028-34.613Q-31.833-34.589-31.782-34.382L-31.782-34.292Q-31.833-34.077-32.028-34.054L-34.622-34.054Q-34.817-34.077-34.868-34.292M-33.836-38.480L-33.836-38.534Q-33.836-38.706-33.700-38.827Q-33.563-38.949-33.387-38.949Q-33.215-38.949-33.079-38.827Q-32.942-38.706-32.942-38.534L-32.942-38.480Q-32.942-38.304-33.079-38.183Q-33.215-38.062-33.387-38.062Q-33.563-38.062-33.700-38.183Q-33.836-38.304-33.836-38.480\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(97.46 -.017)\">\u003Cpath d=\"M-38.012-32.941Q-38.126-32.941-38.215-33.031Q-38.305-33.120-38.305-33.230Q-38.305-33.406-38.114-33.480Q-37.895-33.531-37.723-33.689Q-37.551-33.847-37.485-34.070Q-37.508-34.070-37.540-34.054L-37.602-34.054Q-37.833-34.054-37.999-34.216Q-38.165-34.378-38.165-34.613Q-38.165-34.847-38.001-35.007Q-37.836-35.167-37.602-35.167Q-37.391-35.167-37.227-35.046Q-37.063-34.925-36.973-34.732Q-36.883-34.538-36.883-34.327Q-36.883-33.851-37.182-33.462Q-37.481-33.074-37.946-32.949Q-37.969-32.941-38.012-32.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.222 2.444)\">\u003Cpath d=\"M-39.305-34.214L-39.305-35.445Q-39.278-35.656-39.067-35.679L-38.899-35.679Q-38.805-35.667-38.743-35.609Q-38.680-35.550-38.669-35.445Q-38.669-34.952-38.303-34.743Q-37.938-34.534-37.403-34.534Q-37.169-34.534-36.965-34.642Q-36.762-34.749-36.639-34.943Q-36.516-35.136-36.516-35.367Q-36.516-35.663-36.711-35.886Q-36.907-36.109-37.196-36.175L-38.204-36.406Q-38.504-36.476-38.756-36.661Q-39.008-36.847-39.157-37.115Q-39.305-37.382-39.305-37.695Q-39.305-38.074-39.096-38.378Q-38.887-38.683-38.545-38.853Q-38.204-39.023-37.829-39.023Q-37.153-39.023-36.723-38.695L-36.653-38.878Q-36.579-38.999-36.442-39.023L-36.364-39.023Q-36.266-39.011-36.204-38.949Q-36.141-38.886-36.129-38.788L-36.129-37.558Q-36.153-37.347-36.364-37.320L-36.532-37.320Q-36.727-37.343-36.762-37.527Q-36.825-37.980-37.092-38.220Q-37.360-38.460-37.821-38.460Q-38.028-38.460-38.235-38.372Q-38.442-38.284-38.575-38.117Q-38.708-37.949-38.708-37.734Q-38.708-37.480-38.514-37.283Q-38.321-37.085-38.051-37.023L-37.044-36.796Q-36.715-36.718-36.461-36.515Q-36.208-36.312-36.061-36.017Q-35.915-35.722-35.915-35.406Q-35.915-35.007-36.118-34.681Q-36.321-34.355-36.665-34.165Q-37.008-33.976-37.395-33.976Q-38.196-33.976-38.715-34.292L-38.786-34.117Q-38.856-33.999-38.997-33.976L-39.067-33.976Q-39.282-33.999-39.305-34.214\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(136.343 2)\">\u003Cpath d=\"M-39.090-32.054L-39.172-32.054Q-39.208-32.054-39.233-32.083Q-39.258-32.113-39.258-32.152Q-39.258-32.202-39.227-32.222Q-38.840-32.558-38.557-33.007Q-38.274-33.456-38.108-33.956Q-37.942-34.456-37.868-34.974Q-37.794-35.492-37.794-36.054Q-37.794-36.624-37.868-37.140Q-37.942-37.656-38.108-38.152Q-38.274-38.648-38.553-39.095Q-38.833-39.542-39.227-39.886Q-39.258-39.906-39.258-39.956Q-39.258-39.995-39.233-40.025Q-39.208-40.054-39.172-40.054L-39.090-40.054Q-39.079-40.054-39.069-40.052Q-39.059-40.050-39.051-40.046Q-38.438-39.589-38.036-38.954Q-37.633-38.320-37.438-37.574Q-37.243-36.827-37.243-36.054Q-37.243-35.281-37.438-34.534Q-37.633-33.788-38.036-33.154Q-38.438-32.519-39.051-32.062Q-39.063-32.062-39.071-32.060Q-39.079-32.058-39.090-32.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-22.539 -22.022)\">\u003Cpath d=\"M-39.417-43.565Q-39.417-43.903-39.276-44.194Q-39.136-44.484-38.892-44.698Q-38.648-44.911-38.343-45.026Q-38.039-45.140-37.714-45.140Q-37.444-45.140-37.181-45.041Q-36.918-44.942-36.727-44.764L-36.727-46.162Q-36.727-46.432-36.834-46.494Q-36.942-46.555-37.253-46.555L-37.253-46.836L-36.176-46.911L-36.176-42.727Q-36.176-42.539-36.122-42.456Q-36.067-42.372-35.966-42.353Q-35.865-42.334-35.650-42.334L-35.650-42.054L-36.757-41.986L-36.757-42.403Q-37.174-41.986-37.800-41.986Q-38.231-41.986-38.603-42.198Q-38.976-42.409-39.196-42.770Q-39.417-43.131-39.417-43.565M-37.742-42.208Q-37.533-42.208-37.347-42.280Q-37.161-42.351-37.007-42.488Q-36.853-42.625-36.757-42.803L-36.757-44.412Q-36.843-44.559-36.988-44.679Q-37.133-44.799-37.303-44.858Q-37.472-44.918-37.653-44.918Q-38.213-44.918-38.482-44.529Q-38.750-44.139-38.750-43.558Q-38.750-42.987-38.516-42.597Q-38.282-42.208-37.742-42.208M-33.384-42.054L-34.936-42.054L-34.936-42.334Q-34.710-42.334-34.561-42.368Q-34.413-42.403-34.413-42.543L-34.413-44.392Q-34.413-44.580-34.460-44.664Q-34.508-44.747-34.606-44.766Q-34.703-44.785-34.915-44.785L-34.915-45.065L-33.859-45.140L-33.859-42.543Q-33.859-42.403-33.727-42.368Q-33.596-42.334-33.384-42.334L-33.384-42.054M-34.655-46.361Q-34.655-46.532-34.532-46.651Q-34.409-46.771-34.238-46.771Q-34.071-46.771-33.948-46.651Q-33.825-46.532-33.825-46.361Q-33.825-46.186-33.948-46.063Q-34.071-45.940-34.238-45.940Q-34.409-45.940-34.532-46.063Q-34.655-46.186-34.655-46.361M-32.738-42.061L-32.738-43.124Q-32.738-43.148-32.710-43.175Q-32.683-43.202-32.659-43.202L-32.550-43.202Q-32.485-43.202-32.471-43.144Q-32.376-42.710-32.129-42.459Q-31.883-42.208-31.470-42.208Q-31.128-42.208-30.875-42.341Q-30.622-42.474-30.622-42.782Q-30.622-42.939-30.716-43.054Q-30.810-43.168-30.949-43.237Q-31.087-43.305-31.254-43.343L-31.835-43.442Q-32.191-43.510-32.464-43.731Q-32.738-43.951-32.738-44.293Q-32.738-44.542-32.627-44.717Q-32.516-44.891-32.329-44.990Q-32.143-45.089-31.928-45.132Q-31.712-45.175-31.470-45.175Q-31.056-45.175-30.776-44.993L-30.561-45.168Q-30.550-45.171-30.544-45.173Q-30.537-45.175-30.526-45.175L-30.475-45.175Q-30.448-45.175-30.424-45.151Q-30.400-45.127-30.400-45.099L-30.400-44.252Q-30.400-44.231-30.424-44.204Q-30.448-44.177-30.475-44.177L-30.588-44.177Q-30.615-44.177-30.641-44.202Q-30.667-44.228-30.667-44.252Q-30.667-44.488-30.773-44.652Q-30.878-44.816-31.061-44.898Q-31.244-44.980-31.477-44.980Q-31.805-44.980-32.061-44.877Q-32.317-44.775-32.317-44.498Q-32.317-44.303-32.135-44.194Q-31.952-44.084-31.723-44.043L-31.148-43.937Q-30.902-43.889-30.689-43.761Q-30.475-43.633-30.338-43.430Q-30.202-43.226-30.202-42.977Q-30.202-42.464-30.567-42.225Q-30.933-41.986-31.470-41.986Q-31.965-41.986-32.297-42.280L-32.564-42.006Q-32.584-41.986-32.611-41.986L-32.659-41.986Q-32.683-41.986-32.710-42.013Q-32.738-42.040-32.738-42.061M-27.929-40.697L-29.559-40.697L-29.559-40.977Q-29.330-40.977-29.181-41.012Q-29.033-41.046-29.033-41.186L-29.033-44.532Q-29.033-44.703-29.169-44.744Q-29.306-44.785-29.559-44.785L-29.559-45.065L-28.479-45.140L-28.479-44.734Q-28.257-44.935-27.970-45.038Q-27.683-45.140-27.375-45.140Q-26.948-45.140-26.584-44.927Q-26.220-44.713-26.006-44.349Q-25.793-43.985-25.793-43.565Q-25.793-43.120-26.032-42.756Q-26.271-42.392-26.664-42.189Q-27.057-41.986-27.502-41.986Q-27.768-41.986-28.016-42.086Q-28.264-42.187-28.452-42.368L-28.452-41.186Q-28.452-41.049-28.303-41.013Q-28.154-40.977-27.929-40.977L-27.929-40.697M-28.452-44.385L-28.452-42.775Q-28.318-42.522-28.076-42.365Q-27.833-42.208-27.556-42.208Q-27.228-42.208-26.975-42.409Q-26.722-42.611-26.589-42.929Q-26.456-43.247-26.456-43.565Q-26.456-43.794-26.521-44.023Q-26.585-44.252-26.714-44.450Q-26.842-44.648-27.037-44.768Q-27.231-44.887-27.464-44.887Q-27.758-44.887-28.026-44.758Q-28.294-44.628-28.452-44.385M-23.489-42.054L-25.092-42.054L-25.092-42.334Q-24.866-42.334-24.718-42.368Q-24.569-42.403-24.569-42.543L-24.569-46.162Q-24.569-46.432-24.677-46.494Q-24.784-46.555-25.092-46.555L-25.092-46.836L-24.015-46.911L-24.015-42.543Q-24.015-42.406-23.865-42.370Q-23.714-42.334-23.489-42.334L-23.489-42.054M-22.836-42.782Q-22.836-43.114-22.612-43.341Q-22.388-43.568-22.045-43.696Q-21.701-43.825-21.329-43.877Q-20.956-43.930-20.652-43.930L-20.652-44.183Q-20.652-44.388-20.760-44.568Q-20.867-44.747-21.048-44.850Q-21.230-44.952-21.438-44.952Q-21.845-44.952-22.081-44.860Q-21.992-44.823-21.946-44.739Q-21.899-44.655-21.899-44.553Q-21.899-44.457-21.946-44.378Q-21.992-44.300-22.072-44.255Q-22.152-44.211-22.241-44.211Q-22.392-44.211-22.492-44.308Q-22.593-44.406-22.593-44.553Q-22.593-45.175-21.438-45.175Q-21.226-45.175-20.977-45.111Q-20.727-45.048-20.525-44.929Q-20.324-44.809-20.197-44.624Q-20.071-44.440-20.071-44.197L-20.071-42.621Q-20.071-42.505-20.009-42.409Q-19.948-42.314-19.835-42.314Q-19.726-42.314-19.661-42.408Q-19.596-42.502-19.596-42.621L-19.596-43.069L-19.329-43.069L-19.329-42.621Q-19.329-42.351-19.556-42.186Q-19.784-42.020-20.064-42.020Q-20.273-42.020-20.409-42.174Q-20.546-42.327-20.570-42.543Q-20.717-42.276-20.999-42.131Q-21.281-41.986-21.606-41.986Q-21.882-41.986-22.166-42.061Q-22.450-42.136-22.643-42.315Q-22.836-42.495-22.836-42.782M-22.221-42.782Q-22.221-42.608-22.120-42.478Q-22.019-42.348-21.864-42.278Q-21.708-42.208-21.544-42.208Q-21.325-42.208-21.117-42.305Q-20.908-42.403-20.780-42.584Q-20.652-42.765-20.652-42.991L-20.652-43.719Q-20.977-43.719-21.342-43.628Q-21.708-43.537-21.964-43.325Q-22.221-43.114-22.221-42.782M-18.912-43.565Q-18.912-43.893-18.777-44.194Q-18.642-44.494-18.406-44.715Q-18.170-44.935-17.866-45.055Q-17.562-45.175-17.237-45.175Q-16.731-45.175-16.383-45.072Q-16.034-44.970-16.034-44.594Q-16.034-44.447-16.132-44.346Q-16.229-44.245-16.376-44.245Q-16.530-44.245-16.629-44.344Q-16.728-44.443-16.728-44.594Q-16.728-44.782-16.588-44.874Q-16.790-44.925-17.231-44.925Q-17.586-44.925-17.815-44.729Q-18.044-44.532-18.145-44.223Q-18.246-43.913-18.246-43.565Q-18.246-43.216-18.119-42.910Q-17.993-42.604-17.738-42.420Q-17.483-42.235-17.128-42.235Q-16.906-42.235-16.721-42.319Q-16.537-42.403-16.402-42.558Q-16.267-42.714-16.209-42.922Q-16.195-42.977-16.140-42.977L-16.027-42.977Q-15.997-42.977-15.974-42.953Q-15.952-42.929-15.952-42.895L-15.952-42.874Q-16.038-42.587-16.226-42.389Q-16.414-42.191-16.679-42.088Q-16.943-41.986-17.237-41.986Q-17.668-41.986-18.056-42.192Q-18.444-42.399-18.678-42.762Q-18.912-43.124-18.912-43.565M-15.405-43.589Q-15.405-43.910-15.281-44.199Q-15.156-44.488-14.930-44.711Q-14.705-44.935-14.409-45.055Q-14.113-45.175-13.795-45.175Q-13.467-45.175-13.206-45.075Q-12.944-44.976-12.768-44.794Q-12.592-44.611-12.498-44.353Q-12.404-44.095-12.404-43.763Q-12.404-43.671-12.486-43.650L-14.742-43.650L-14.742-43.589Q-14.742-43.001-14.459-42.618Q-14.175-42.235-13.607-42.235Q-13.286-42.235-13.018-42.428Q-12.750-42.621-12.661-42.936Q-12.654-42.977-12.579-42.991L-12.486-42.991Q-12.404-42.967-12.404-42.895Q-12.404-42.888-12.411-42.861Q-12.524-42.464-12.895-42.225Q-13.266-41.986-13.689-41.986Q-14.127-41.986-14.527-42.194Q-14.927-42.403-15.166-42.770Q-15.405-43.137-15.405-43.589M-14.735-43.859L-12.920-43.859Q-12.920-44.136-13.018-44.388Q-13.115-44.641-13.314-44.797Q-13.512-44.952-13.795-44.952Q-14.072-44.952-14.286-44.794Q-14.500-44.635-14.617-44.380Q-14.735-44.125-14.735-43.859M-10.135-42.054L-11.769-42.054L-11.769-42.334Q-11.540-42.334-11.391-42.368Q-11.242-42.403-11.242-42.543L-11.242-44.392Q-11.242-44.662-11.350-44.723Q-11.458-44.785-11.769-44.785L-11.769-45.065L-10.709-45.140L-10.709-44.491Q-10.538-44.799-10.234-44.970Q-9.930-45.140-9.585-45.140Q-9.185-45.140-8.908-45Q-8.631-44.860-8.545-44.512Q-8.378-44.805-8.079-44.973Q-7.780-45.140-7.435-45.140Q-6.929-45.140-6.645-44.917Q-6.361-44.693-6.361-44.197L-6.361-42.543Q-6.361-42.406-6.213-42.370Q-6.064-42.334-5.838-42.334L-5.838-42.054L-7.469-42.054L-7.469-42.334Q-7.243-42.334-7.093-42.370Q-6.942-42.406-6.942-42.543L-6.942-44.183Q-6.942-44.518-7.062-44.718Q-7.182-44.918-7.496-44.918Q-7.766-44.918-8-44.782Q-8.234-44.645-8.373-44.411Q-8.511-44.177-8.511-43.903L-8.511-42.543Q-8.511-42.406-8.363-42.370Q-8.214-42.334-7.988-42.334L-7.988-42.054L-9.619-42.054L-9.619-42.334Q-9.390-42.334-9.241-42.368Q-9.092-42.403-9.092-42.543L-9.092-44.183Q-9.092-44.518-9.212-44.718Q-9.332-44.918-9.646-44.918Q-9.916-44.918-10.150-44.782Q-10.384-44.645-10.523-44.411Q-10.661-44.177-10.661-43.903L-10.661-42.543Q-10.661-42.406-10.511-42.370Q-10.360-42.334-10.135-42.334L-10.135-42.054M-5.292-43.589Q-5.292-43.910-5.167-44.199Q-5.042-44.488-4.816-44.711Q-4.591-44.935-4.295-45.055Q-4-45.175-3.682-45.175Q-3.354-45.175-3.092-45.075Q-2.831-44.976-2.655-44.794Q-2.479-44.611-2.385-44.353Q-2.291-44.095-2.291-43.763Q-2.291-43.671-2.373-43.650L-4.628-43.650L-4.628-43.589Q-4.628-43.001-4.345-42.618Q-4.061-42.235-3.494-42.235Q-3.172-42.235-2.904-42.428Q-2.636-42.621-2.547-42.936Q-2.540-42.977-2.465-42.991L-2.373-42.991Q-2.291-42.967-2.291-42.895Q-2.291-42.888-2.297-42.861Q-2.410-42.464-2.781-42.225Q-3.152-41.986-3.576-41.986Q-4.013-41.986-4.413-42.194Q-4.813-42.403-5.052-42.770Q-5.292-43.137-5.292-43.589M-4.622-43.859L-2.807-43.859Q-2.807-44.136-2.904-44.388Q-3.002-44.641-3.200-44.797Q-3.398-44.952-3.682-44.952Q-3.959-44.952-4.172-44.794Q-4.386-44.635-4.504-44.380Q-4.622-44.125-4.622-43.859M-0.021-42.054L-1.655-42.054L-1.655-42.334Q-1.426-42.334-1.277-42.368Q-1.128-42.403-1.128-42.543L-1.128-44.392Q-1.128-44.662-1.236-44.723Q-1.344-44.785-1.655-44.785L-1.655-45.065L-0.595-45.140L-0.595-44.491Q-0.424-44.799-0.120-44.970Q0.184-45.140 0.529-45.140Q1.035-45.140 1.319-44.917Q1.602-44.693 1.602-44.197L1.602-42.543Q1.602-42.406 1.751-42.370Q1.900-42.334 2.125-42.334L2.125-42.054L0.495-42.054L0.495-42.334Q0.724-42.334 0.873-42.368Q1.021-42.403 1.021-42.543L1.021-44.183Q1.021-44.518 0.902-44.718Q0.782-44.918 0.468-44.918Q0.198-44.918-0.036-44.782Q-0.271-44.645-0.409-44.411Q-0.547-44.177-0.547-43.903L-0.547-42.543Q-0.547-42.406-0.397-42.370Q-0.247-42.334-0.021-42.334\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.539 -22.022)\">\u003Cpath d=\"M3.063-42.895L3.063-44.792L2.424-44.792L2.424-45.014Q2.742-45.014 2.959-45.224Q3.176-45.434 3.276-45.744Q3.377-46.053 3.377-46.361L3.644-46.361L3.644-45.072L4.721-45.072L4.721-44.792L3.644-44.792L3.644-42.908Q3.644-42.632 3.748-42.433Q3.852-42.235 4.112-42.235Q4.269-42.235 4.375-42.339Q4.481-42.444 4.531-42.597Q4.580-42.751 4.580-42.908L4.580-43.322L4.847-43.322L4.847-42.895Q4.847-42.669 4.748-42.459Q4.649-42.249 4.464-42.117Q4.280-41.986 4.051-41.986Q3.613-41.986 3.338-42.223Q3.063-42.461 3.063-42.895\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.539 -22.022)\">\u003Cpath d=\"M-22.660-34.054L-24.864-34.054L-24.864-34.334Q-24.105-34.334-24.105-34.543L-24.105-38.344Q-24.105-38.555-24.864-38.555L-24.864-38.836L-22.660-38.836L-22.660-38.555Q-23.415-38.555-23.415-38.344L-23.415-34.543Q-23.415-34.334-22.660-34.334L-22.660-34.054M-20.325-34.054L-21.959-34.054L-21.959-34.334Q-21.730-34.334-21.581-34.368Q-21.433-34.403-21.433-34.543L-21.433-36.392Q-21.433-36.662-21.540-36.723Q-21.648-36.785-21.959-36.785L-21.959-37.065L-20.899-37.140L-20.899-36.491Q-20.728-36.799-20.424-36.970Q-20.120-37.140-19.775-37.140Q-19.375-37.140-19.098-37Q-18.821-36.860-18.736-36.512Q-18.568-36.805-18.269-36.973Q-17.970-37.140-17.625-37.140Q-17.119-37.140-16.835-36.917Q-16.552-36.693-16.552-36.197L-16.552-34.543Q-16.552-34.406-16.403-34.370Q-16.254-34.334-16.029-34.334L-16.029-34.054L-17.659-34.054L-17.659-34.334Q-17.434-34.334-17.283-34.370Q-17.133-34.406-17.133-34.543L-17.133-36.183Q-17.133-36.518-17.252-36.718Q-17.372-36.918-17.686-36.918Q-17.956-36.918-18.191-36.782Q-18.425-36.645-18.563-36.411Q-18.702-36.177-18.702-35.903L-18.702-34.543Q-18.702-34.406-18.553-34.370Q-18.404-34.334-18.179-34.334L-18.179-34.054L-19.809-34.054L-19.809-34.334Q-19.580-34.334-19.431-34.368Q-19.283-34.403-19.283-34.543L-19.283-36.183Q-19.283-36.518-19.402-36.718Q-19.522-36.918-19.836-36.918Q-20.106-36.918-20.341-36.782Q-20.575-36.645-20.713-36.411Q-20.852-36.177-20.852-35.903L-20.852-34.543Q-20.852-34.406-20.701-34.370Q-20.551-34.334-20.325-34.334L-20.325-34.054M-13.759-34.054L-15.393-34.054L-15.393-34.334Q-15.164-34.334-15.015-34.368Q-14.867-34.403-14.867-34.543L-14.867-36.392Q-14.867-36.662-14.974-36.723Q-15.082-36.785-15.393-36.785L-15.393-37.065L-14.333-37.140L-14.333-36.491Q-14.163-36.799-13.858-36.970Q-13.554-37.140-13.209-37.140Q-12.809-37.140-12.532-37Q-12.255-36.860-12.170-36.512Q-12.002-36.805-11.703-36.973Q-11.404-37.140-11.059-37.140Q-10.553-37.140-10.269-36.917Q-9.986-36.693-9.986-36.197L-9.986-34.543Q-9.986-34.406-9.837-34.370Q-9.688-34.334-9.463-34.334L-9.463-34.054L-11.093-34.054L-11.093-34.334Q-10.868-34.334-10.717-34.370Q-10.567-34.406-10.567-34.543L-10.567-36.183Q-10.567-36.518-10.686-36.718Q-10.806-36.918-11.121-36.918Q-11.391-36.918-11.625-36.782Q-11.859-36.645-11.997-36.411Q-12.136-36.177-12.136-35.903L-12.136-34.543Q-12.136-34.406-11.987-34.370Q-11.838-34.334-11.613-34.334L-11.613-34.054L-13.243-34.054L-13.243-34.334Q-13.014-34.334-12.865-34.368Q-12.717-34.403-12.717-34.543L-12.717-36.183Q-12.717-36.518-12.836-36.718Q-12.956-36.918-13.270-36.918Q-13.540-36.918-13.775-36.782Q-14.009-36.645-14.147-36.411Q-14.286-36.177-14.286-35.903L-14.286-34.543Q-14.286-34.406-14.135-34.370Q-13.985-34.334-13.759-34.334\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-39.731-53.97v11.939\"\u002F>\u003Cpath stroke=\"none\" d=\"m-39.731-40.031 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(25.59 30.203)\">\u003Cpath d=\"M-38.610-34.054L-38.877-34.054L-38.877-38.162Q-38.877-38.432-38.984-38.494Q-39.092-38.555-39.403-38.555L-39.403-38.836L-38.323-38.911L-38.323-36.741Q-38.114-36.932-37.829-37.036Q-37.544-37.140-37.246-37.140Q-36.928-37.140-36.631-37.019Q-36.334-36.898-36.111-36.682Q-35.889-36.467-35.763-36.182Q-35.636-35.896-35.636-35.565Q-35.636-35.120-35.876-34.756Q-36.115-34.392-36.508-34.189Q-36.901-33.986-37.345-33.986Q-37.540-33.986-37.730-34.042Q-37.919-34.098-38.080-34.203Q-38.241-34.307-38.381-34.468L-38.610-34.054M-38.295-36.399L-38.295-34.782Q-38.159-34.522-37.918-34.365Q-37.677-34.208-37.400-34.208Q-37.106-34.208-36.894-34.315Q-36.682-34.423-36.549-34.615Q-36.416-34.806-36.357-35.045Q-36.299-35.284-36.299-35.565Q-36.299-35.924-36.393-36.228Q-36.487-36.532-36.715-36.725Q-36.942-36.918-37.308-36.918Q-37.608-36.918-37.875-36.782Q-38.142-36.645-38.295-36.399M-34.942-34.782Q-34.942-35.114-34.719-35.341Q-34.495-35.568-34.151-35.696Q-33.808-35.825-33.435-35.877Q-33.063-35.930-32.758-35.930L-32.758-36.183Q-32.758-36.388-32.866-36.568Q-32.974-36.747-33.155-36.850Q-33.336-36.952-33.544-36.952Q-33.951-36.952-34.187-36.860Q-34.098-36.823-34.052-36.739Q-34.006-36.655-34.006-36.553Q-34.006-36.457-34.052-36.378Q-34.098-36.300-34.179-36.255Q-34.259-36.211-34.348-36.211Q-34.498-36.211-34.599-36.308Q-34.700-36.406-34.700-36.553Q-34.700-37.175-33.544-37.175Q-33.333-37.175-33.083-37.111Q-32.834-37.048-32.632-36.929Q-32.430-36.809-32.304-36.624Q-32.177-36.440-32.177-36.197L-32.177-34.621Q-32.177-34.505-32.116-34.409Q-32.054-34.314-31.941-34.314Q-31.832-34.314-31.767-34.408Q-31.702-34.502-31.702-34.621L-31.702-35.069L-31.436-35.069L-31.436-34.621Q-31.436-34.351-31.663-34.186Q-31.890-34.020-32.170-34.020Q-32.379-34.020-32.516-34.174Q-32.652-34.327-32.676-34.543Q-32.823-34.276-33.105-34.131Q-33.387-33.986-33.712-33.986Q-33.989-33.986-34.273-34.061Q-34.556-34.136-34.749-34.315Q-34.942-34.495-34.942-34.782M-34.327-34.782Q-34.327-34.608-34.226-34.478Q-34.126-34.348-33.970-34.278Q-33.814-34.208-33.650-34.208Q-33.432-34.208-33.223-34.305Q-33.015-34.403-32.887-34.584Q-32.758-34.765-32.758-34.991L-32.758-35.719Q-33.083-35.719-33.449-35.628Q-33.814-35.537-34.071-35.325Q-34.327-35.114-34.327-34.782M-31.019-34.061L-31.019-35.124Q-31.019-35.148-30.991-35.175Q-30.964-35.202-30.940-35.202L-30.831-35.202Q-30.766-35.202-30.752-35.144Q-30.656-34.710-30.410-34.459Q-30.164-34.208-29.751-34.208Q-29.409-34.208-29.156-34.341Q-28.903-34.474-28.903-34.782Q-28.903-34.939-28.997-35.054Q-29.091-35.168-29.229-35.237Q-29.368-35.305-29.535-35.343L-30.116-35.442Q-30.472-35.510-30.745-35.731Q-31.019-35.951-31.019-36.293Q-31.019-36.542-30.908-36.717Q-30.796-36.891-30.610-36.990Q-30.424-37.089-30.209-37.132Q-29.993-37.175-29.751-37.175Q-29.337-37.175-29.057-36.993L-28.841-37.168Q-28.831-37.171-28.824-37.173Q-28.817-37.175-28.807-37.175L-28.756-37.175Q-28.729-37.175-28.705-37.151Q-28.681-37.127-28.681-37.099L-28.681-36.252Q-28.681-36.231-28.705-36.204Q-28.729-36.177-28.756-36.177L-28.869-36.177Q-28.896-36.177-28.922-36.202Q-28.947-36.228-28.947-36.252Q-28.947-36.488-29.053-36.652Q-29.159-36.816-29.342-36.898Q-29.525-36.980-29.757-36.980Q-30.085-36.980-30.342-36.877Q-30.598-36.775-30.598-36.498Q-30.598-36.303-30.415-36.194Q-30.232-36.084-30.003-36.043L-29.429-35.937Q-29.183-35.889-28.970-35.761Q-28.756-35.633-28.619-35.430Q-28.482-35.226-28.482-34.977Q-28.482-34.464-28.848-34.225Q-29.214-33.986-29.751-33.986Q-30.246-33.986-30.578-34.280L-30.844-34.006Q-30.865-33.986-30.892-33.986L-30.940-33.986Q-30.964-33.986-30.991-34.013Q-31.019-34.040-31.019-34.061M-27.895-35.589Q-27.895-35.910-27.770-36.199Q-27.645-36.488-27.419-36.711Q-27.194-36.935-26.898-37.055Q-26.603-37.175-26.285-37.175Q-25.957-37.175-25.695-37.075Q-25.434-36.976-25.258-36.794Q-25.082-36.611-24.988-36.353Q-24.894-36.095-24.894-35.763Q-24.894-35.671-24.976-35.650L-27.231-35.650L-27.231-35.589Q-27.231-35.001-26.948-34.618Q-26.664-34.235-26.097-34.235Q-25.775-34.235-25.507-34.428Q-25.239-34.621-25.150-34.936Q-25.143-34.977-25.068-34.991L-24.976-34.991Q-24.894-34.967-24.894-34.895Q-24.894-34.888-24.900-34.861Q-25.013-34.464-25.384-34.225Q-25.755-33.986-26.179-33.986Q-26.616-33.986-27.016-34.194Q-27.416-34.403-27.655-34.770Q-27.895-35.137-27.895-35.589M-27.225-35.859L-25.410-35.859Q-25.410-36.136-25.507-36.388Q-25.605-36.641-25.803-36.797Q-26.001-36.952-26.285-36.952Q-26.562-36.952-26.775-36.794Q-26.989-36.635-27.107-36.380Q-27.225-36.125-27.225-35.859\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(25.59 30.203)\">\u003Cpath d=\"M-19.846-34.054L-21.582-34.054L-21.582-34.334Q-21.353-34.334-21.204-34.368Q-21.056-34.403-21.056-34.543L-21.056-36.392Q-21.056-36.662-21.163-36.723Q-21.271-36.785-21.582-36.785L-21.582-37.065L-20.553-37.140L-20.553-36.433Q-20.423-36.741-20.181-36.940Q-19.938-37.140-19.620-37.140Q-19.401-37.140-19.230-37.016Q-19.059-36.891-19.059-36.679Q-19.059-36.542-19.159-36.443Q-19.258-36.344-19.391-36.344Q-19.528-36.344-19.627-36.443Q-19.726-36.542-19.726-36.679Q-19.726-36.819-19.627-36.918Q-19.917-36.918-20.117-36.722Q-20.317-36.525-20.410-36.231Q-20.502-35.937-20.502-35.657L-20.502-34.543Q-20.502-34.334-19.846-34.334L-19.846-34.054M-18.516-35.589Q-18.516-35.910-18.391-36.199Q-18.266-36.488-18.041-36.711Q-17.815-36.935-17.520-37.055Q-17.224-37.175-16.906-37.175Q-16.578-37.175-16.316-37.075Q-16.055-36.976-15.879-36.794Q-15.703-36.611-15.609-36.353Q-15.515-36.095-15.515-35.763Q-15.515-35.671-15.597-35.650L-17.853-35.650L-17.853-35.589Q-17.853-35.001-17.569-34.618Q-17.285-34.235-16.718-34.235Q-16.397-34.235-16.129-34.428Q-15.860-34.621-15.771-34.936Q-15.764-34.977-15.689-34.991L-15.597-34.991Q-15.515-34.967-15.515-34.895Q-15.515-34.888-15.522-34.861Q-15.635-34.464-16.005-34.225Q-16.376-33.986-16.800-33.986Q-17.238-33.986-17.638-34.194Q-18.037-34.403-18.277-34.770Q-18.516-35.137-18.516-35.589M-17.846-35.859L-16.031-35.859Q-16.031-36.136-16.129-36.388Q-16.226-36.641-16.424-36.797Q-16.622-36.952-16.906-36.952Q-17.183-36.952-17.397-36.794Q-17.610-36.635-17.728-36.380Q-17.846-36.125-17.846-35.859M-14.968-33.521Q-14.968-33.767-14.772-33.951Q-14.575-34.136-14.319-34.215Q-14.455-34.327-14.527-34.488Q-14.599-34.649-14.599-34.830Q-14.599-35.151-14.387-35.397Q-14.722-35.695-14.722-36.105Q-14.722-36.566-14.332-36.853Q-13.943-37.140-13.464-37.140Q-12.993-37.140-12.658-36.894Q-12.483-37.048-12.273-37.130Q-12.063-37.212-11.834-37.212Q-11.670-37.212-11.548-37.105Q-11.427-36.997-11.427-36.833Q-11.427-36.737-11.499-36.665Q-11.571-36.594-11.663-36.594Q-11.762-36.594-11.832-36.667Q-11.902-36.741-11.902-36.840Q-11.902-36.894-11.889-36.925L-11.882-36.939Q-11.875-36.959-11.866-36.970Q-11.858-36.980-11.854-36.987Q-12.210-36.987-12.497-36.764Q-12.210-36.471-12.210-36.105Q-12.210-35.790-12.394-35.558Q-12.579-35.325-12.868-35.197Q-13.157-35.069-13.464-35.069Q-13.666-35.069-13.857-35.119Q-14.049-35.168-14.226-35.278Q-14.319-35.151-14.319-35.008Q-14.319-34.826-14.191-34.691Q-14.062-34.556-13.878-34.556L-13.245-34.556Q-12.798-34.556-12.429-34.485Q-12.059-34.413-11.800-34.184Q-11.540-33.955-11.540-33.521Q-11.540-33.200-11.836-32.998Q-12.131-32.796-12.535-32.707Q-12.938-32.618-13.252-32.618Q-13.570-32.618-13.973-32.707Q-14.377-32.796-14.672-32.998Q-14.968-33.200-14.968-33.521M-14.514-33.521Q-14.514-33.292-14.295-33.143Q-14.076-32.994-13.784-32.926Q-13.492-32.858-13.252-32.858Q-13.088-32.858-12.880-32.894Q-12.671-32.929-12.464-33.010Q-12.258-33.090-12.126-33.218Q-11.994-33.346-11.994-33.521Q-11.994-33.873-12.376-33.967Q-12.757-34.061-13.259-34.061L-13.878-34.061Q-14.117-34.061-14.315-33.910Q-14.514-33.760-14.514-33.521M-13.464-35.308Q-12.798-35.308-12.798-36.105Q-12.798-36.905-13.464-36.905Q-14.134-36.905-14.134-36.105Q-14.134-35.308-13.464-35.308\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M.102-14.137v-11.94\"\u002F>\u003Cpath stroke=\"none\" d=\"m.102-28.076-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(66.405 -26.703)\">\u003Cpath d=\"M-37.800-34.054L-39.352-34.054L-39.352-34.334Q-39.126-34.334-38.977-34.368Q-38.829-34.403-38.829-34.543L-38.829-36.392Q-38.829-36.580-38.877-36.664Q-38.924-36.747-39.022-36.766Q-39.119-36.785-39.331-36.785L-39.331-37.065L-38.275-37.140L-38.275-34.543Q-38.275-34.403-38.143-34.368Q-38.012-34.334-37.800-34.334L-37.800-34.054M-39.071-38.361Q-39.071-38.532-38.948-38.651Q-38.825-38.771-38.654-38.771Q-38.487-38.771-38.364-38.651Q-38.241-38.532-38.241-38.361Q-38.241-38.186-38.364-38.063Q-38.487-37.940-38.654-37.940Q-38.825-37.940-38.948-38.063Q-39.071-38.186-39.071-38.361M-35.472-34.054L-37.106-34.054L-37.106-34.334Q-36.877-34.334-36.728-34.368Q-36.580-34.403-36.580-34.543L-36.580-36.392Q-36.580-36.662-36.687-36.723Q-36.795-36.785-37.106-36.785L-37.106-37.065L-36.046-37.140L-36.046-36.491Q-35.876-36.799-35.571-36.970Q-35.267-37.140-34.922-37.140Q-34.416-37.140-34.132-36.917Q-33.849-36.693-33.849-36.197L-33.849-34.543Q-33.849-34.406-33.700-34.370Q-33.551-34.334-33.326-34.334L-33.326-34.054L-34.956-34.054L-34.956-34.334Q-34.727-34.334-34.578-34.368Q-34.430-34.403-34.430-34.543L-34.430-36.183Q-34.430-36.518-34.549-36.718Q-34.669-36.918-34.983-36.918Q-35.253-36.918-35.488-36.782Q-35.722-36.645-35.860-36.411Q-35.999-36.177-35.999-35.903L-35.999-34.543Q-35.999-34.406-35.848-34.370Q-35.698-34.334-35.472-34.334L-35.472-34.054M-32.738-35.565Q-32.738-35.903-32.598-36.194Q-32.458-36.484-32.213-36.698Q-31.969-36.911-31.665-37.026Q-31.360-37.140-31.036-37.140Q-30.766-37.140-30.502-37.041Q-30.239-36.942-30.048-36.764L-30.048-38.162Q-30.048-38.432-30.156-38.494Q-30.263-38.555-30.574-38.555L-30.574-38.836L-29.498-38.911L-29.498-34.727Q-29.498-34.539-29.443-34.456Q-29.388-34.372-29.287-34.353Q-29.187-34.334-28.971-34.334L-28.971-34.054L-30.079-33.986L-30.079-34.403Q-30.496-33.986-31.121-33.986Q-31.552-33.986-31.924-34.198Q-32.297-34.409-32.517-34.770Q-32.738-35.131-32.738-35.565M-31.063-34.208Q-30.855-34.208-30.668-34.280Q-30.482-34.351-30.328-34.488Q-30.174-34.625-30.079-34.803L-30.079-36.412Q-30.164-36.559-30.309-36.679Q-30.455-36.799-30.624-36.858Q-30.793-36.918-30.974-36.918Q-31.535-36.918-31.803-36.529Q-32.071-36.139-32.071-35.558Q-32.071-34.987-31.837-34.597Q-31.603-34.208-31.063-34.208M-28.363-35.589Q-28.363-35.910-28.238-36.199Q-28.113-36.488-27.888-36.711Q-27.662-36.935-27.366-37.055Q-27.071-37.175-26.753-37.175Q-26.425-37.175-26.163-37.075Q-25.902-36.976-25.726-36.794Q-25.550-36.611-25.456-36.353Q-25.362-36.095-25.362-35.763Q-25.362-35.671-25.444-35.650L-27.700-35.650L-27.700-35.589Q-27.700-35.001-27.416-34.618Q-27.132-34.235-26.565-34.235Q-26.244-34.235-25.975-34.428Q-25.707-34.621-25.618-34.936Q-25.611-34.977-25.536-34.991L-25.444-34.991Q-25.362-34.967-25.362-34.895Q-25.362-34.888-25.369-34.861Q-25.481-34.464-25.852-34.225Q-26.223-33.986-26.647-33.986Q-27.085-33.986-27.484-34.194Q-27.884-34.403-28.124-34.770Q-28.363-35.137-28.363-35.589M-27.693-35.859L-25.878-35.859Q-25.878-36.136-25.975-36.388Q-26.073-36.641-26.271-36.797Q-26.469-36.952-26.753-36.952Q-27.030-36.952-27.243-36.794Q-27.457-36.635-27.575-36.380Q-27.693-36.125-27.693-35.859M-23.591-34.054L-24.914-34.054L-24.914-34.334Q-24.354-34.334-23.974-34.734L-23.260-35.531L-24.172-36.580Q-24.309-36.727-24.458-36.759Q-24.606-36.792-24.873-36.792L-24.873-37.072L-23.373-37.072L-23.373-36.792Q-23.564-36.792-23.564-36.658Q-23.564-36.628-23.533-36.580L-22.939-35.896L-22.498-36.392Q-22.385-36.522-22.385-36.638Q-22.385-36.700-22.422-36.746Q-22.460-36.792-22.518-36.792L-22.518-37.072L-21.202-37.072L-21.202-36.792Q-21.763-36.792-22.142-36.392L-22.764-35.691L-21.770-34.543Q-21.670-34.444-21.570-34.399Q-21.469-34.355-21.358-34.345Q-21.247-34.334-21.069-34.334L-21.069-34.054L-22.563-34.054L-22.563-34.334Q-22.498-34.334-22.438-34.368Q-22.378-34.403-22.378-34.468Q-22.378-34.515-22.409-34.543L-23.085-35.329L-23.619-34.734Q-23.731-34.604-23.731-34.488Q-23.731-34.423-23.690-34.379Q-23.649-34.334-23.591-34.334\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.405 -26.703)\">\u003Cpath d=\"M-16.119-34.054L-17.855-34.054L-17.855-34.334Q-17.626-34.334-17.477-34.368Q-17.329-34.403-17.329-34.543L-17.329-36.392Q-17.329-36.662-17.436-36.723Q-17.544-36.785-17.855-36.785L-17.855-37.065L-16.826-37.140L-16.826-36.433Q-16.696-36.741-16.454-36.940Q-16.211-37.140-15.893-37.140Q-15.674-37.140-15.503-37.016Q-15.332-36.891-15.332-36.679Q-15.332-36.542-15.432-36.443Q-15.531-36.344-15.664-36.344Q-15.801-36.344-15.900-36.443Q-15.999-36.542-15.999-36.679Q-15.999-36.819-15.900-36.918Q-16.190-36.918-16.390-36.722Q-16.590-36.525-16.683-36.231Q-16.775-35.937-16.775-35.657L-16.775-34.543Q-16.775-34.334-16.119-34.334L-16.119-34.054M-14.789-35.589Q-14.789-35.910-14.664-36.199Q-14.539-36.488-14.314-36.711Q-14.088-36.935-13.793-37.055Q-13.497-37.175-13.179-37.175Q-12.851-37.175-12.589-37.075Q-12.328-36.976-12.152-36.794Q-11.976-36.611-11.882-36.353Q-11.788-36.095-11.788-35.763Q-11.788-35.671-11.870-35.650L-14.126-35.650L-14.126-35.589Q-14.126-35.001-13.842-34.618Q-13.558-34.235-12.991-34.235Q-12.670-34.235-12.402-34.428Q-12.133-34.621-12.044-34.936Q-12.037-34.977-11.962-34.991L-11.870-34.991Q-11.788-34.967-11.788-34.895Q-11.788-34.888-11.795-34.861Q-11.908-34.464-12.278-34.225Q-12.649-33.986-13.073-33.986Q-13.511-33.986-13.911-34.194Q-14.310-34.403-14.550-34.770Q-14.789-35.137-14.789-35.589M-14.119-35.859L-12.304-35.859Q-12.304-36.136-12.402-36.388Q-12.499-36.641-12.697-36.797Q-12.895-36.952-13.179-36.952Q-13.456-36.952-13.670-36.794Q-13.883-36.635-14.001-36.380Q-14.119-36.125-14.119-35.859M-11.241-33.521Q-11.241-33.767-11.045-33.951Q-10.848-34.136-10.592-34.215Q-10.728-34.327-10.800-34.488Q-10.872-34.649-10.872-34.830Q-10.872-35.151-10.660-35.397Q-10.995-35.695-10.995-36.105Q-10.995-36.566-10.605-36.853Q-10.216-37.140-9.737-37.140Q-9.266-37.140-8.931-36.894Q-8.756-37.048-8.546-37.130Q-8.336-37.212-8.107-37.212Q-7.943-37.212-7.821-37.105Q-7.700-36.997-7.700-36.833Q-7.700-36.737-7.772-36.665Q-7.844-36.594-7.936-36.594Q-8.035-36.594-8.105-36.667Q-8.175-36.741-8.175-36.840Q-8.175-36.894-8.162-36.925L-8.155-36.939Q-8.148-36.959-8.139-36.970Q-8.131-36.980-8.127-36.987Q-8.483-36.987-8.770-36.764Q-8.483-36.471-8.483-36.105Q-8.483-35.790-8.667-35.558Q-8.852-35.325-9.141-35.197Q-9.430-35.069-9.737-35.069Q-9.939-35.069-10.130-35.119Q-10.322-35.168-10.499-35.278Q-10.592-35.151-10.592-35.008Q-10.592-34.826-10.464-34.691Q-10.335-34.556-10.151-34.556L-9.518-34.556Q-9.071-34.556-8.702-34.485Q-8.332-34.413-8.073-34.184Q-7.813-33.955-7.813-33.521Q-7.813-33.200-8.109-32.998Q-8.404-32.796-8.808-32.707Q-9.211-32.618-9.525-32.618Q-9.843-32.618-10.246-32.707Q-10.650-32.796-10.945-32.998Q-11.241-33.200-11.241-33.521M-10.787-33.521Q-10.787-33.292-10.568-33.143Q-10.349-32.994-10.057-32.926Q-9.765-32.858-9.525-32.858Q-9.361-32.858-9.153-32.894Q-8.944-32.929-8.737-33.010Q-8.531-33.090-8.399-33.218Q-8.267-33.346-8.267-33.521Q-8.267-33.873-8.649-33.967Q-9.030-34.061-9.532-34.061L-10.151-34.061Q-10.390-34.061-10.588-33.910Q-10.787-33.760-10.787-33.521M-9.737-35.308Q-9.071-35.308-9.071-36.105Q-9.071-36.905-9.737-36.905Q-10.407-36.905-10.407-36.105Q-10.407-35.308-9.737-35.308\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M42.781-53.97v11.939\"\u002F>\u003Cpath stroke=\"none\" d=\"m42.781-40.031 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(106.937 34.203)\">\u003Cpath d=\"M-32.272-42.061L-32.272-43.124Q-32.272-43.148-32.244-43.175Q-32.217-43.202-32.193-43.202L-32.084-43.202Q-32.019-43.202-32.005-43.144Q-31.909-42.710-31.663-42.459Q-31.417-42.208-31.003-42.208Q-30.662-42.208-30.409-42.341Q-30.156-42.474-30.156-42.782Q-30.156-42.939-30.250-43.054Q-30.344-43.168-30.482-43.237Q-30.621-43.305-30.788-43.343L-31.369-43.442Q-31.725-43.510-31.998-43.731Q-32.272-43.951-32.272-44.293Q-32.272-44.542-32.160-44.717Q-32.049-44.891-31.863-44.990Q-31.677-45.089-31.461-45.132Q-31.246-45.175-31.003-45.175Q-30.590-45.175-30.310-44.993L-30.094-45.168Q-30.084-45.171-30.077-45.173Q-30.070-45.175-30.060-45.175L-30.009-45.175Q-29.982-45.175-29.958-45.151Q-29.934-45.127-29.934-45.099L-29.934-44.252Q-29.934-44.231-29.958-44.204Q-29.982-44.177-30.009-44.177L-30.122-44.177Q-30.149-44.177-30.175-44.202Q-30.200-44.228-30.200-44.252Q-30.200-44.488-30.306-44.652Q-30.412-44.816-30.595-44.898Q-30.778-44.980-31.010-44.980Q-31.338-44.980-31.595-44.877Q-31.851-44.775-31.851-44.498Q-31.851-44.303-31.668-44.194Q-31.485-44.084-31.256-44.043L-30.682-43.937Q-30.436-43.889-30.222-43.761Q-30.009-43.633-29.872-43.430Q-29.735-43.226-29.735-42.977Q-29.735-42.464-30.101-42.225Q-30.467-41.986-31.003-41.986Q-31.499-41.986-31.831-42.280L-32.097-42.006Q-32.118-41.986-32.145-41.986L-32.193-41.986Q-32.217-41.986-32.244-42.013Q-32.272-42.040-32.272-42.061M-29.107-43.565Q-29.107-43.893-28.971-44.194Q-28.836-44.494-28.601-44.715Q-28.365-44.935-28.061-45.055Q-27.756-45.175-27.432-45.175Q-26.926-45.175-26.577-45.072Q-26.229-44.970-26.229-44.594Q-26.229-44.447-26.326-44.346Q-26.423-44.245-26.570-44.245Q-26.724-44.245-26.823-44.344Q-26.922-44.443-26.922-44.594Q-26.922-44.782-26.782-44.874Q-26.984-44.925-27.425-44.925Q-27.780-44.925-28.009-44.729Q-28.238-44.532-28.339-44.223Q-28.440-43.913-28.440-43.565Q-28.440-43.216-28.314-42.910Q-28.187-42.604-27.932-42.420Q-27.678-42.235-27.322-42.235Q-27.100-42.235-26.916-42.319Q-26.731-42.403-26.596-42.558Q-26.461-42.714-26.403-42.922Q-26.389-42.977-26.335-42.977L-26.222-42.977Q-26.191-42.977-26.169-42.953Q-26.147-42.929-26.147-42.895L-26.147-42.874Q-26.232-42.587-26.420-42.389Q-26.608-42.191-26.873-42.088Q-27.138-41.986-27.432-41.986Q-27.862-41.986-28.250-42.192Q-28.638-42.399-28.872-42.762Q-29.107-43.124-29.107-43.565M-25.501-42.782Q-25.501-43.114-25.277-43.341Q-25.053-43.568-24.709-43.696Q-24.366-43.825-23.993-43.877Q-23.621-43.930-23.316-43.930L-23.316-44.183Q-23.316-44.388-23.424-44.568Q-23.532-44.747-23.713-44.850Q-23.894-44.952-24.103-44.952Q-24.509-44.952-24.745-44.860Q-24.656-44.823-24.610-44.739Q-24.564-44.655-24.564-44.553Q-24.564-44.457-24.610-44.378Q-24.656-44.300-24.737-44.255Q-24.817-44.211-24.906-44.211Q-25.056-44.211-25.157-44.308Q-25.258-44.406-25.258-44.553Q-25.258-45.175-24.103-45.175Q-23.891-45.175-23.641-45.111Q-23.392-45.048-23.190-44.929Q-22.988-44.809-22.862-44.624Q-22.735-44.440-22.735-44.197L-22.735-42.621Q-22.735-42.505-22.674-42.409Q-22.612-42.314-22.500-42.314Q-22.390-42.314-22.325-42.408Q-22.260-42.502-22.260-42.621L-22.260-43.069L-21.994-43.069L-21.994-42.621Q-21.994-42.351-22.221-42.186Q-22.448-42.020-22.729-42.020Q-22.937-42.020-23.074-42.174Q-23.211-42.327-23.234-42.543Q-23.381-42.276-23.663-42.131Q-23.945-41.986-24.270-41.986Q-24.547-41.986-24.831-42.061Q-25.114-42.136-25.307-42.315Q-25.501-42.495-25.501-42.782M-24.885-42.782Q-24.885-42.608-24.784-42.478Q-24.684-42.348-24.528-42.278Q-24.373-42.208-24.209-42.208Q-23.990-42.208-23.781-42.305Q-23.573-42.403-23.445-42.584Q-23.316-42.765-23.316-42.991L-23.316-43.719Q-23.641-43.719-24.007-43.628Q-24.373-43.537-24.629-43.325Q-24.885-43.114-24.885-42.782M-19.909-42.054L-21.512-42.054L-21.512-42.334Q-21.286-42.334-21.138-42.368Q-20.989-42.403-20.989-42.543L-20.989-46.162Q-20.989-46.432-21.096-46.494Q-21.204-46.555-21.512-46.555L-21.512-46.836L-20.435-46.911L-20.435-42.543Q-20.435-42.406-20.285-42.370Q-20.134-42.334-19.909-42.334L-19.909-42.054M-19.355-43.589Q-19.355-43.910-19.230-44.199Q-19.106-44.488-18.880-44.711Q-18.654-44.935-18.359-45.055Q-18.063-45.175-17.745-45.175Q-17.417-45.175-17.156-45.075Q-16.894-44.976-16.718-44.794Q-16.542-44.611-16.448-44.353Q-16.354-44.095-16.354-43.763Q-16.354-43.671-16.436-43.650L-18.692-43.650L-18.692-43.589Q-18.692-43.001-18.408-42.618Q-18.125-42.235-17.557-42.235Q-17.236-42.235-16.968-42.428Q-16.699-42.621-16.610-42.936Q-16.604-42.977-16.528-42.991L-16.436-42.991Q-16.354-42.967-16.354-42.895Q-16.354-42.888-16.361-42.861Q-16.474-42.464-16.845-42.225Q-17.215-41.986-17.639-41.986Q-18.077-41.986-18.477-42.194Q-18.877-42.403-19.116-42.770Q-19.355-43.137-19.355-43.589M-18.685-43.859L-16.870-43.859Q-16.870-44.136-16.968-44.388Q-17.065-44.641-17.263-44.797Q-17.461-44.952-17.745-44.952Q-18.022-44.952-18.236-44.794Q-18.449-44.635-18.567-44.380Q-18.685-44.125-18.685-43.859\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(106.937 34.203)\">\u003Cpath d=\"M-36.405-34.054L-38.935-34.054L-38.935-34.334Q-37.967-34.334-37.967-34.543L-37.967-38.162Q-38.360-37.974-38.982-37.974L-38.982-38.255Q-38.565-38.255-38.201-38.356Q-37.837-38.456-37.581-38.702L-37.455-38.702Q-37.390-38.685-37.373-38.617L-37.373-34.543Q-37.373-34.334-36.405-34.334L-36.405-34.054M-34.936-32.824Q-34.936-32.858-34.908-32.885Q-34.638-33.114-34.490-33.437Q-34.341-33.760-34.341-34.116L-34.341-34.153Q-34.450-34.054-34.614-34.054Q-34.795-34.054-34.915-34.174Q-35.035-34.293-35.035-34.474Q-35.035-34.649-34.915-34.768Q-34.795-34.888-34.614-34.888Q-34.358-34.888-34.238-34.649Q-34.119-34.409-34.119-34.116Q-34.119-33.716-34.288-33.345Q-34.457-32.974-34.754-32.718Q-34.785-32.697-34.813-32.697Q-34.854-32.697-34.895-32.738Q-34.936-32.779-34.936-32.824\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(106.937 34.203)\">\u003Cpath d=\"M-27.461-34.054L-30.346-34.054L-30.346-34.256Q-30.346-34.286-30.319-34.314L-29.071-35.531Q-28.999-35.606-28.957-35.648Q-28.914-35.691-28.835-35.770Q-28.422-36.183-28.191-36.541Q-27.960-36.898-27.960-37.322Q-27.960-37.554-28.039-37.757Q-28.118-37.961-28.259-38.111Q-28.401-38.262-28.596-38.342Q-28.791-38.422-29.023-38.422Q-29.334-38.422-29.592-38.263Q-29.850-38.104-29.980-37.827L-29.960-37.827Q-29.792-37.827-29.685-37.716Q-29.577-37.605-29.577-37.441Q-29.577-37.284-29.686-37.171Q-29.796-37.058-29.960-37.058Q-30.120-37.058-30.233-37.171Q-30.346-37.284-30.346-37.441Q-30.346-37.817-30.138-38.104Q-29.929-38.391-29.594-38.547Q-29.259-38.702-28.904-38.702Q-28.480-38.702-28.100-38.544Q-27.721-38.385-27.487-38.068Q-27.253-37.752-27.253-37.322Q-27.253-37.011-27.393-36.742Q-27.533-36.474-27.738-36.269Q-27.943-36.064-28.306-35.782Q-28.668-35.500-28.777-35.404L-29.632-34.676L-28.989-34.676Q-28.726-34.676-28.437-34.678Q-28.148-34.679-27.930-34.688Q-27.711-34.697-27.694-34.714Q-27.632-34.779-27.595-34.946Q-27.557-35.114-27.519-35.356L-27.253-35.356L-27.461-34.054M-25.992-32.824Q-25.992-32.858-25.964-32.885Q-25.694-33.114-25.546-33.437Q-25.397-33.760-25.397-34.116L-25.397-34.153Q-25.506-34.054-25.670-34.054Q-25.851-34.054-25.971-34.174Q-26.091-34.293-26.091-34.474Q-26.091-34.649-25.971-34.768Q-25.851-34.888-25.670-34.888Q-25.414-34.888-25.294-34.649Q-25.175-34.409-25.175-34.116Q-25.175-33.716-25.344-33.345Q-25.513-32.974-25.810-32.718Q-25.841-32.697-25.869-32.697Q-25.910-32.697-25.951-32.738Q-25.992-32.779-25.992-32.824\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(106.937 34.203)\">\u003Cpath d=\"M-19.525-35.202L-21.569-35.202L-21.569-35.483L-19.238-38.655Q-19.203-38.702-19.138-38.702L-19.002-38.702Q-18.957-38.702-18.930-38.675Q-18.903-38.648-18.903-38.603L-18.903-35.483L-18.140-35.483L-18.140-35.202L-18.903-35.202L-18.903-34.543Q-18.903-34.334-18.147-34.334L-18.147-34.054L-20.280-34.054L-20.280-34.334Q-19.525-34.334-19.525-34.543L-19.525-35.202M-19.477-37.927L-21.268-35.483L-19.477-35.483L-19.477-37.927M-17.047-32.824Q-17.047-32.858-17.019-32.885Q-16.749-33.114-16.601-33.437Q-16.452-33.760-16.452-34.116L-16.452-34.153Q-16.561-34.054-16.725-34.054Q-16.906-34.054-17.026-34.174Q-17.146-34.293-17.146-34.474Q-17.146-34.649-17.026-34.768Q-16.906-34.888-16.725-34.888Q-16.469-34.888-16.349-34.649Q-16.230-34.409-16.230-34.116Q-16.230-33.716-16.399-33.345Q-16.568-32.974-16.865-32.718Q-16.896-32.697-16.924-32.697Q-16.965-32.697-17.006-32.738Q-17.047-32.779-17.047-32.824\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(106.937 34.203)\">\u003Cpath d=\"M-12.519-35.131Q-12.519-35.572-12.216-35.893Q-11.914-36.214-11.462-36.406L-11.702-36.546Q-11.972-36.706-12.138-36.964Q-12.303-37.222-12.303-37.520Q-12.303-37.872-12.098-38.144Q-11.893-38.415-11.572-38.559Q-11.251-38.702-10.909-38.702Q-10.587-38.702-10.264-38.586Q-9.941-38.470-9.730-38.229Q-9.518-37.988-9.518-37.653Q-9.518-37.291-9.762-37.028Q-10.006-36.764-10.386-36.587L-9.986-36.351Q-9.791-36.238-9.632-36.069Q-9.473-35.900-9.386-35.691Q-9.299-35.483-9.299-35.250Q-9.299-34.847-9.533-34.543Q-9.767-34.239-10.141-34.076Q-10.516-33.914-10.909-33.914Q-11.295-33.914-11.664-34.051Q-12.033-34.187-12.276-34.464Q-12.519-34.741-12.519-35.131M-12.071-35.131Q-12.071-34.844-11.902-34.621Q-11.732-34.399-11.464-34.283Q-11.196-34.167-10.909-34.167Q-10.471-34.167-10.109-34.384Q-9.747-34.601-9.747-35.008Q-9.747-35.209-9.875-35.387Q-10.003-35.565-10.181-35.664L-11.203-36.259Q-11.442-36.149-11.640-35.983Q-11.838-35.818-11.955-35.602Q-12.071-35.387-12.071-35.131M-11.548-37.260L-10.628-36.727Q-10.321-36.887-10.119-37.120Q-9.918-37.352-9.918-37.653Q-9.918-37.892-10.063-38.082Q-10.208-38.272-10.440-38.371Q-10.673-38.470-10.909-38.470Q-11.131-38.470-11.360-38.400Q-11.589-38.330-11.746-38.173Q-11.903-38.015-11.903-37.786Q-11.903-37.472-11.548-37.260\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M82.615-14.137v-11.94\"\u002F>\u003Cpath stroke=\"none\" d=\"m82.615-28.076-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M-33.770-35.031L-39.083-35.031Q-39.161-35.038-39.210-35.087Q-39.258-35.136-39.258-35.214Q-39.258-35.284-39.211-35.335Q-39.165-35.386-39.083-35.398L-33.770-35.398Q-33.696-35.386-33.649-35.335Q-33.602-35.284-33.602-35.214Q-33.602-35.136-33.651-35.087Q-33.700-35.038-33.770-35.031M-33.770-36.718L-39.083-36.718Q-39.161-36.726-39.210-36.775Q-39.258-36.824-39.258-36.902Q-39.258-36.972-39.211-37.023Q-39.165-37.074-39.083-37.085L-33.770-37.085Q-33.696-37.074-33.649-37.023Q-33.602-36.972-33.602-36.902Q-33.602-36.824-33.651-36.775Q-33.700-36.726-33.770-36.718\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M-25.164-34.054L-27.629-34.054L-27.629-34.351Q-27.297-34.351-27.039-34.398Q-26.781-34.445-26.781-34.613L-26.781-38.956Q-26.781-39.222-27.629-39.222L-27.629-39.519L-25.164-39.519L-25.164-39.222Q-26.016-39.222-26.016-38.956L-26.016-34.613Q-26.016-34.351-25.164-34.351L-25.164-34.054M-22.703-34.054L-24.559-34.054L-24.559-34.351Q-24.285-34.351-24.117-34.398Q-23.949-34.445-23.949-34.613L-23.949-36.749Q-23.949-36.964-24.012-37.060Q-24.074-37.156-24.194-37.177Q-24.313-37.199-24.559-37.199L-24.559-37.495L-23.367-37.581L-23.367-36.847Q-23.254-37.062-23.061-37.230Q-22.867-37.398-22.629-37.490Q-22.391-37.581-22.137-37.581Q-21.176-37.581-21-36.870Q-20.817-37.199-20.488-37.390Q-20.160-37.581-19.781-37.581Q-18.606-37.581-18.606-36.503L-18.606-34.613Q-18.606-34.445-18.438-34.398Q-18.270-34.351-18-34.351L-18-34.054L-19.856-34.054L-19.856-34.351Q-19.582-34.351-19.414-34.396Q-19.246-34.441-19.246-34.613L-19.246-36.488Q-19.246-36.874-19.371-37.101Q-19.496-37.327-19.848-37.327Q-20.153-37.327-20.408-37.165Q-20.664-37.003-20.813-36.734Q-20.961-36.464-20.961-36.167L-20.961-34.613Q-20.961-34.445-20.791-34.398Q-20.621-34.351-20.352-34.351L-20.352-34.054L-22.207-34.054L-22.207-34.351Q-21.934-34.351-21.766-34.398Q-21.598-34.445-21.598-34.613L-21.598-36.488Q-21.598-36.874-21.723-37.101Q-21.848-37.327-22.199-37.327Q-22.504-37.327-22.760-37.165Q-23.016-37.003-23.164-36.734Q-23.313-36.464-23.313-36.167L-23.313-34.613Q-23.313-34.445-23.143-34.398Q-22.973-34.351-22.703-34.351L-22.703-34.054M-15.625-34.054L-17.481-34.054L-17.481-34.351Q-17.207-34.351-17.039-34.398Q-16.871-34.445-16.871-34.613L-16.871-36.749Q-16.871-36.964-16.934-37.060Q-16.996-37.156-17.115-37.177Q-17.235-37.199-17.481-37.199L-17.481-37.495L-16.289-37.581L-16.289-36.847Q-16.176-37.062-15.983-37.230Q-15.789-37.398-15.551-37.490Q-15.313-37.581-15.059-37.581Q-14.098-37.581-13.922-36.870Q-13.738-37.199-13.410-37.390Q-13.082-37.581-12.703-37.581Q-11.528-37.581-11.528-36.503L-11.528-34.613Q-11.528-34.445-11.360-34.398Q-11.192-34.351-10.922-34.351L-10.922-34.054L-12.778-34.054L-12.778-34.351Q-12.504-34.351-12.336-34.396Q-12.168-34.441-12.168-34.613L-12.168-36.488Q-12.168-36.874-12.293-37.101Q-12.418-37.327-12.770-37.327Q-13.074-37.327-13.330-37.165Q-13.586-37.003-13.735-36.734Q-13.883-36.464-13.883-36.167L-13.883-34.613Q-13.883-34.445-13.713-34.398Q-13.543-34.351-13.274-34.351L-13.274-34.054L-15.129-34.054L-15.129-34.351Q-14.856-34.351-14.688-34.398Q-14.520-34.445-14.520-34.613L-14.520-36.488Q-14.520-36.874-14.645-37.101Q-14.770-37.327-15.121-37.327Q-15.426-37.327-15.682-37.165Q-15.938-37.003-16.086-36.734Q-16.235-36.464-16.235-36.167L-16.235-34.613Q-16.235-34.445-16.065-34.398Q-15.895-34.351-15.625-34.351\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M-5.688-35.870L-8.161-35.870Q-8.239-35.882-8.288-35.931Q-8.336-35.980-8.336-36.054Q-8.336-36.128-8.288-36.177Q-8.239-36.226-8.161-36.238L-5.688-36.238L-5.688-38.718Q-5.661-38.886-5.504-38.886Q-5.430-38.886-5.381-38.837Q-5.332-38.788-5.321-38.718L-5.321-36.238L-2.848-36.238Q-2.680-36.206-2.680-36.054Q-2.680-35.902-2.848-35.870L-5.321-35.870L-5.321-33.390Q-5.332-33.320-5.381-33.271Q-5.430-33.222-5.504-33.222Q-5.661-33.222-5.688-33.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M2.402-34.054L0.043-34.054L0.043-34.351Q0.367-34.351 0.609-34.398Q0.851-34.445 0.851-34.613L0.851-38.956Q0.851-39.128 0.609-39.175Q0.367-39.222 0.043-39.222L0.043-39.519L2.636-39.519Q2.968-39.519 3.355-39.433Q3.742-39.347 4.089-39.173Q4.437-38.999 4.656-38.718Q4.875-38.437 4.875-38.070Q4.875-37.745 4.673-37.480Q4.472-37.214 4.166-37.038Q3.859-36.863 3.531-36.773Q3.898-36.652 4.158-36.382Q4.418-36.113 4.468-35.749L4.562-35.054Q4.632-34.605 4.730-34.374Q4.828-34.144 5.125-34.144Q5.371-34.144 5.503-34.361Q5.636-34.577 5.636-34.839Q5.656-34.913 5.738-34.933L5.820-34.933Q5.914-34.909 5.914-34.816Q5.914-34.585 5.816-34.370Q5.718-34.156 5.541-34.021Q5.363-33.886 5.132-33.886Q4.535-33.886 4.117-34.173Q3.699-34.460 3.699-35.031L3.699-35.726Q3.699-36.007 3.546-36.222Q3.394-36.437 3.144-36.550Q2.894-36.663 2.621-36.663L1.593-36.663L1.593-34.613Q1.593-34.449 1.837-34.400Q2.082-34.351 2.402-34.351L2.402-34.054M1.593-38.956L1.593-36.917L2.523-36.917Q2.843-36.917 3.111-36.970Q3.378-37.023 3.578-37.150Q3.777-37.277 3.894-37.509Q4.011-37.742 4.011-38.070Q4.011-38.722 3.615-38.972Q3.218-39.222 2.523-39.222L1.996-39.222Q1.777-39.222 1.685-39.179Q1.593-39.136 1.593-38.956M8.105-32.054L6.929-32.054L6.929-40.054L8.105-40.054L8.105-39.687L7.296-39.687L7.296-32.421L8.105-32.421\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M11.016-34.054L8.657-34.054L8.657-34.351Q8.981-34.351 9.223-34.398Q9.465-34.445 9.465-34.613L9.465-38.956Q9.465-39.128 9.223-39.175Q8.981-39.222 8.657-39.222L8.657-39.519L11.250-39.519Q11.582-39.519 11.969-39.433Q12.356-39.347 12.703-39.173Q13.051-38.999 13.270-38.718Q13.489-38.437 13.489-38.070Q13.489-37.745 13.287-37.480Q13.086-37.214 12.780-37.038Q12.473-36.863 12.145-36.773Q12.512-36.652 12.772-36.382Q13.032-36.113 13.082-35.749L13.176-35.054Q13.246-34.605 13.344-34.374Q13.442-34.144 13.739-34.144Q13.985-34.144 14.117-34.361Q14.250-34.577 14.250-34.839Q14.270-34.913 14.352-34.933L14.434-34.933Q14.528-34.909 14.528-34.816Q14.528-34.585 14.430-34.370Q14.332-34.156 14.155-34.021Q13.977-33.886 13.746-33.886Q13.149-33.886 12.731-34.173Q12.313-34.460 12.313-35.031L12.313-35.726Q12.313-36.007 12.160-36.222Q12.008-36.437 11.758-36.550Q11.508-36.663 11.235-36.663L10.207-36.663L10.207-34.613Q10.207-34.449 10.451-34.400Q10.696-34.351 11.016-34.351L11.016-34.054M10.207-38.956L10.207-36.917L11.137-36.917Q11.457-36.917 11.725-36.970Q11.992-37.023 12.192-37.150Q12.391-37.277 12.508-37.509Q12.625-37.742 12.625-38.070Q12.625-38.722 12.229-38.972Q11.832-39.222 11.137-39.222L10.610-39.222Q10.391-39.222 10.299-39.179Q10.207-39.136 10.207-38.956M15.703-34.054L15.422-34.054L15.422-38.773Q15.422-38.988 15.360-39.083Q15.297-39.179 15.180-39.200Q15.063-39.222 14.817-39.222L14.817-39.519L16.039-39.605L16.039-37.117Q16.516-37.581 17.215-37.581Q17.696-37.581 18.104-37.337Q18.512-37.093 18.748-36.679Q18.985-36.265 18.985-35.781Q18.985-35.406 18.836-35.077Q18.688-34.749 18.418-34.497Q18.149-34.245 17.805-34.111Q17.461-33.976 17.102-33.976Q16.782-33.976 16.483-34.124Q16.184-34.273 15.977-34.534L15.703-34.054M16.063-36.726L16.063-34.886Q16.215-34.589 16.475-34.409Q16.735-34.230 17.047-34.230Q17.473-34.230 17.741-34.449Q18.008-34.667 18.123-35.013Q18.239-35.359 18.239-35.781Q18.239-36.429 17.991-36.878Q17.742-37.327 17.145-37.327Q16.809-37.327 16.520-37.169Q16.231-37.011 16.063-36.726\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M20.640-32.054L19.465-32.054L19.465-32.421L20.273-32.421L20.273-39.687L19.465-39.687L19.465-40.054L20.640-40.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M26.652-35.870L24.179-35.870Q24.101-35.882 24.052-35.931Q24.004-35.980 24.004-36.054Q24.004-36.128 24.052-36.177Q24.101-36.226 24.179-36.238L26.652-36.238L26.652-38.718Q26.679-38.886 26.836-38.886Q26.910-38.886 26.959-38.837Q27.008-38.788 27.019-38.718L27.019-36.238L29.492-36.238Q29.660-36.206 29.660-36.054Q29.660-35.902 29.492-35.870L27.019-35.870L27.019-33.390Q27.008-33.320 26.959-33.271Q26.910-33.222 26.836-33.222Q26.679-33.222 26.652-33.390\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M34.742-34.054L32.383-34.054L32.383-34.351Q32.707-34.351 32.949-34.398Q33.191-34.445 33.191-34.613L33.191-38.956Q33.191-39.128 32.949-39.175Q32.707-39.222 32.383-39.222L32.383-39.519L34.976-39.519Q35.308-39.519 35.695-39.433Q36.082-39.347 36.429-39.173Q36.777-38.999 36.996-38.718Q37.215-38.437 37.215-38.070Q37.215-37.745 37.013-37.480Q36.812-37.214 36.506-37.038Q36.199-36.863 35.871-36.773Q36.238-36.652 36.498-36.382Q36.758-36.113 36.808-35.749L36.902-35.054Q36.972-34.605 37.070-34.374Q37.168-34.144 37.465-34.144Q37.711-34.144 37.843-34.361Q37.976-34.577 37.976-34.839Q37.996-34.913 38.078-34.933L38.160-34.933Q38.254-34.909 38.254-34.816Q38.254-34.585 38.156-34.370Q38.058-34.156 37.881-34.021Q37.703-33.886 37.472-33.886Q36.875-33.886 36.457-34.173Q36.039-34.460 36.039-35.031L36.039-35.726Q36.039-36.007 35.886-36.222Q35.734-36.437 35.484-36.550Q35.234-36.663 34.961-36.663L33.933-36.663L33.933-34.613Q33.933-34.449 34.177-34.400Q34.422-34.351 34.742-34.351L34.742-34.054M33.933-38.956L33.933-36.917L34.863-36.917Q35.183-36.917 35.451-36.970Q35.718-37.023 35.918-37.150Q36.117-37.277 36.234-37.509Q36.351-37.742 36.351-38.070Q36.351-38.722 35.955-38.972Q35.558-39.222 34.863-39.222L34.336-39.222Q34.117-39.222 34.025-39.179Q33.933-39.136 33.933-38.956M40.445-32.054L39.269-32.054L39.269-40.054L40.445-40.054L40.445-39.687L39.636-39.687L39.636-32.421L40.445-32.421\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M43.356-34.054L40.997-34.054L40.997-34.351Q41.321-34.351 41.563-34.398Q41.805-34.445 41.805-34.613L41.805-38.956Q41.805-39.128 41.563-39.175Q41.321-39.222 40.997-39.222L40.997-39.519L43.590-39.519Q43.922-39.519 44.309-39.433Q44.696-39.347 45.043-39.173Q45.391-38.999 45.610-38.718Q45.829-38.437 45.829-38.070Q45.829-37.745 45.627-37.480Q45.426-37.214 45.120-37.038Q44.813-36.863 44.485-36.773Q44.852-36.652 45.112-36.382Q45.372-36.113 45.422-35.749L45.516-35.054Q45.586-34.605 45.684-34.374Q45.782-34.144 46.079-34.144Q46.325-34.144 46.458-34.361Q46.590-34.577 46.590-34.839Q46.610-34.913 46.692-34.933L46.774-34.933Q46.868-34.909 46.868-34.816Q46.868-34.585 46.770-34.370Q46.672-34.156 46.495-34.021Q46.317-33.886 46.086-33.886Q45.489-33.886 45.071-34.173Q44.653-34.460 44.653-35.031L44.653-35.726Q44.653-36.007 44.500-36.222Q44.348-36.437 44.098-36.550Q43.848-36.663 43.575-36.663L42.547-36.663L42.547-34.613Q42.547-34.449 42.791-34.400Q43.036-34.351 43.356-34.351L43.356-34.054M42.547-38.956L42.547-36.917L43.477-36.917Q43.797-36.917 44.065-36.970Q44.333-37.023 44.532-37.150Q44.731-37.277 44.848-37.509Q44.965-37.742 44.965-38.070Q44.965-38.722 44.569-38.972Q44.172-39.222 43.477-39.222L42.950-39.222Q42.731-39.222 42.639-39.179Q42.547-39.136 42.547-38.956M48.989-34.054L47.211-34.054L47.211-34.351Q47.485-34.351 47.653-34.398Q47.821-34.445 47.821-34.613L47.821-36.749Q47.821-36.964 47.764-37.060Q47.708-37.156 47.594-37.177Q47.481-37.199 47.235-37.199L47.235-37.495L48.434-37.581L48.434-34.613Q48.434-34.445 48.581-34.398Q48.727-34.351 48.989-34.351L48.989-34.054M47.547-38.976Q47.547-39.167 47.682-39.298Q47.817-39.429 48.012-39.429Q48.133-39.429 48.237-39.367Q48.340-39.304 48.403-39.200Q48.465-39.097 48.465-38.976Q48.465-38.781 48.334-38.646Q48.204-38.511 48.012-38.511Q47.813-38.511 47.680-38.644Q47.547-38.777 47.547-38.976\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M50.618-32.054L49.443-32.054L49.443-32.421L50.251-32.421L50.251-39.687L49.443-39.687L49.443-40.054L50.618-40.054\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M56.078-34.054L54.582-34.054L54.582-34.351Q55.215-34.351 55.637-34.831L56.406-35.742L55.414-36.941Q55.258-37.120 55.096-37.163Q54.933-37.206 54.629-37.206L54.629-37.503L56.316-37.503L56.316-37.206Q56.223-37.206 56.146-37.163Q56.070-37.120 56.070-37.031Q56.070-36.988 56.101-36.941L56.758-36.152L57.238-36.726Q57.355-36.863 57.355-36.999Q57.355-37.089 57.305-37.148Q57.254-37.206 57.172-37.206L57.172-37.503L58.660-37.503L58.660-37.206Q58.023-37.206 57.613-36.726L56.933-35.925L58.019-34.613Q58.180-34.437 58.340-34.394Q58.500-34.351 58.805-34.351L58.805-34.054L57.117-34.054L57.117-34.351Q57.207-34.351 57.285-34.394Q57.363-34.437 57.363-34.527Q57.363-34.550 57.332-34.613L56.590-35.519L56.004-34.831Q55.887-34.695 55.887-34.558Q55.887-34.472 55.937-34.411Q55.988-34.351 56.078-34.351\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.94 2)\">\u003Cpath d=\"M62.367-33.886L62.316-33.886Q62.281-33.886 62.255-33.915Q62.230-33.945 62.230-33.984L62.230-34.007L62.675-35.808Q62.691-35.870 62.765-35.870L62.871-35.870Q62.910-35.870 62.933-35.843Q62.957-35.816 62.957-35.773Q62.957-35.734 62.925-35.566Q62.894-35.398 62.894-35.312Q62.894-34.722 63.324-34.452Q63.753-34.183 64.375-34.183Q64.730-34.183 65.070-34.380Q65.410-34.577 65.623-34.909Q65.835-35.242 65.835-35.597Q65.835-35.894 65.668-36.111Q65.500-36.327 65.222-36.398L64.164-36.656Q63.898-36.718 63.683-36.888Q63.468-37.058 63.349-37.300Q63.230-37.542 63.230-37.824Q63.230-38.199 63.410-38.538Q63.589-38.878 63.886-39.136Q64.183-39.394 64.546-39.540Q64.910-39.687 65.277-39.687Q65.652-39.687 65.980-39.552Q66.308-39.417 66.500-39.132L66.964-39.663Q66.988-39.687 67.019-39.687L67.070-39.687Q67.109-39.687 67.132-39.659Q67.156-39.632 67.156-39.589L67.156-39.566L66.710-37.773Q66.683-37.702 66.621-37.702L66.515-37.702Q66.429-37.702 66.429-37.808Q66.460-37.984 66.460-38.199Q66.460-38.585 66.322-38.859Q66.183-39.132 65.916-39.273Q65.648-39.413 65.261-39.413Q64.929-39.413 64.595-39.242Q64.261-39.070 64.044-38.775Q63.828-38.480 63.828-38.144Q63.828-37.878 63.998-37.673Q64.168-37.468 64.437-37.398L65.492-37.144Q65.921-37.038 66.175-36.699Q66.429-36.359 66.429-35.917Q66.429-35.523 66.255-35.156Q66.082-34.788 65.779-34.499Q65.476-34.210 65.103-34.048Q64.730-33.886 64.347-33.886Q63.902-33.886 63.511-34.015Q63.121-34.144 62.886-34.437L62.421-33.909Q62.398-33.886 62.367-33.886\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The general addressing mode D(Rb,Ri,S). The effective address is the displacement plus the base register plus the scaled index; the operand is the memory found there.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:487.255px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 365.441 97.449\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-64.314-49.308H-7.41V-72.07h-56.905Z\"\u002F>\u003Cg transform=\"translate(-6.375 -31.699)\">\u003Cpath d=\"M-33.741-26.468Q-34.175-26.468-34.507-26.706Q-34.839-26.944-35.059-27.333Q-35.280-27.722-35.387-28.159Q-35.495-28.597-35.495-28.995Q-35.495-29.386-35.385-29.829Q-35.276-30.273-35.059-30.653Q-34.842-31.034-34.508-31.275Q-34.175-31.515-33.741-31.515Q-33.186-31.515-32.786-31.116Q-32.385-30.718-32.188-30.132Q-31.991-29.546-31.991-28.995Q-31.991-28.441-32.188-27.853Q-32.385-27.265-32.786-26.866Q-33.186-26.468-33.741-26.468M-33.741-27.026Q-33.440-27.026-33.223-27.243Q-33.007-27.460-32.880-27.788Q-32.753-28.116-32.692-28.462Q-32.632-28.808-32.632-29.089Q-32.632-29.339-32.694-29.665Q-32.757-29.991-32.887-30.282Q-33.018-30.573-33.231-30.763Q-33.444-30.952-33.741-30.952Q-34.116-30.952-34.368-30.640Q-34.620-30.327-34.737-29.894Q-34.854-29.460-34.854-29.089Q-34.854-28.691-34.741-28.210Q-34.628-27.730-34.380-27.378Q-34.132-27.026-33.741-27.026M-31.358-26.784L-31.358-26.874Q-31.319-27.081-31.112-27.105L-30.706-27.105L-29.776-28.323L-30.647-29.433L-31.065-29.433Q-31.260-29.452-31.311-29.675L-31.311-29.761Q-31.260-29.972-31.065-29.995L-29.905-29.995Q-29.706-29.972-29.655-29.761L-29.655-29.675Q-29.706-29.456-29.905-29.433L-30.014-29.433L-29.518-28.776L-29.042-29.433L-29.159-29.433Q-29.358-29.456-29.409-29.675L-29.409-29.761Q-29.358-29.972-29.159-29.995L-27.999-29.995Q-27.803-29.976-27.753-29.761L-27.753-29.675Q-27.803-29.456-27.999-29.433L-28.409-29.433L-29.257-28.323L-28.296-27.105L-27.889-27.105Q-27.690-27.081-27.639-26.874L-27.639-26.784Q-27.678-26.569-27.889-26.546L-29.042-26.546Q-29.249-26.569-29.288-26.784L-29.288-26.874Q-29.249-27.081-29.042-27.105L-28.913-27.105L-29.518-27.960L-30.104-27.105L-29.960-27.105Q-29.753-27.081-29.714-26.874L-29.714-26.784Q-29.753-26.569-29.960-26.546L-31.112-26.546Q-31.307-26.566-31.358-26.784M-27.018-27.960Q-27.018-28.245-26.862-28.499Q-26.706-28.753-26.456-28.927Q-26.206-29.101-25.921-29.187Q-26.159-29.261-26.385-29.403Q-26.612-29.546-26.755-29.755Q-26.897-29.964-26.897-30.210Q-26.897-30.608-26.651-30.903Q-26.405-31.198-26.022-31.357Q-25.639-31.515-25.249-31.515Q-24.858-31.515-24.475-31.357Q-24.092-31.198-23.846-30.900Q-23.600-30.601-23.600-30.210Q-23.600-29.964-23.743-29.757Q-23.885-29.550-24.112-29.405Q-24.339-29.261-24.577-29.187Q-24.124-29.050-23.803-28.724Q-23.483-28.398-23.483-27.960Q-23.483-27.523-23.741-27.179Q-23.999-26.835-24.409-26.651Q-24.819-26.468-25.249-26.468Q-25.678-26.468-26.089-26.650Q-26.499-26.831-26.758-27.175Q-27.018-27.519-27.018-27.960M-26.378-27.960Q-26.378-27.687-26.212-27.472Q-26.046-27.257-25.784-27.142Q-25.522-27.026-25.249-27.026Q-24.975-27.026-24.716-27.142Q-24.456-27.257-24.290-27.474Q-24.124-27.691-24.124-27.960Q-24.124-28.237-24.290-28.454Q-24.456-28.671-24.716-28.788Q-24.975-28.905-25.249-28.905Q-25.522-28.905-25.784-28.788Q-26.046-28.671-26.212-28.456Q-26.378-28.241-26.378-27.960M-26.257-30.210Q-26.257-29.972-26.100-29.804Q-25.944-29.636-25.708-29.552Q-25.471-29.468-25.249-29.468Q-25.030-29.468-24.792-29.552Q-24.553-29.636-24.397-29.806Q-24.241-29.976-24.241-30.210Q-24.241-30.444-24.397-30.614Q-24.553-30.784-24.792-30.868Q-25.030-30.952-25.249-30.952Q-25.471-30.952-25.708-30.868Q-25.944-30.784-26.100-30.616Q-26.257-30.448-26.257-30.210\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-15.165H-6.32v-22.762h-59.083Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-26.209 2.778)\">\u003Cpath d=\"M-34.678-26.280Q-34.678-26.343-34.647-26.386L-30.901-31.644Q-31.358-31.409-31.925-31.409Q-32.577-31.409-33.182-31.730Q-33.038-31.382-33.038-30.937Q-33.038-30.577-33.159-30.206Q-33.280-29.835-33.530-29.579Q-33.780-29.323-34.143-29.323Q-34.530-29.323-34.813-29.567Q-35.096-29.812-35.243-30.185Q-35.389-30.558-35.389-30.937Q-35.389-31.316-35.243-31.687Q-35.096-32.058-34.813-32.302Q-34.530-32.546-34.143-32.546Q-33.827-32.546-33.557-32.308Q-33.221-32.003-32.792-31.831Q-32.362-31.659-31.925-31.659Q-31.432-31.659-31.014-31.872Q-30.596-32.085-30.296-32.483Q-30.253-32.546-30.159-32.546Q-30.085-32.546-30.030-32.491Q-29.975-32.437-29.975-32.362Q-29.975-32.300-30.007-32.257L-34.350-26.163Q-34.397-26.097-34.495-26.097Q-34.577-26.097-34.628-26.148Q-34.678-26.198-34.678-26.280M-34.143-29.577Q-33.870-29.577-33.682-29.802Q-33.495-30.026-33.407-30.349Q-33.319-30.671-33.319-30.937Q-33.319-31.194-33.407-31.517Q-33.495-31.839-33.682-32.064Q-33.870-32.288-34.143-32.288Q-34.530-32.288-34.673-31.860Q-34.815-31.433-34.815-30.937Q-34.815-30.429-34.675-30.003Q-34.534-29.577-34.143-29.577M-30.366-26.097Q-30.753-26.097-31.036-26.343Q-31.319-26.589-31.467-26.962Q-31.616-27.335-31.616-27.714Q-31.616-27.987-31.530-28.275Q-31.444-28.562-31.290-28.796Q-31.135-29.030-30.899-29.177Q-30.663-29.323-30.366-29.323Q-30.085-29.323-29.878-29.171Q-29.671-29.019-29.532-28.776Q-29.393-28.534-29.327-28.253Q-29.260-27.972-29.260-27.714Q-29.260-27.355-29.382-26.982Q-29.503-26.608-29.753-26.353Q-30.003-26.097-30.366-26.097M-30.366-26.355Q-30.092-26.355-29.905-26.579Q-29.717-26.804-29.630-27.126Q-29.542-27.448-29.542-27.714Q-29.542-27.972-29.630-28.294Q-29.717-28.616-29.905-28.841Q-30.092-29.066-30.366-29.066Q-30.757-29.066-30.897-28.636Q-31.038-28.206-31.038-27.714Q-31.038-27.206-30.901-26.780Q-30.764-26.355-30.366-26.355\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-26.209 2.778)\">\u003Cpath d=\"M-28.555-26.784L-28.555-26.874Q-28.497-27.081-28.305-27.105L-27.594-27.105L-27.594-29.433L-28.305-29.433Q-28.501-29.456-28.555-29.675L-28.555-29.761Q-28.497-29.972-28.305-29.995L-27.204-29.995Q-27.005-29.976-26.954-29.761L-26.954-29.433Q-26.692-29.718-26.337-29.876Q-25.981-30.034-25.594-30.034Q-25.301-30.034-25.067-29.900Q-24.833-29.765-24.833-29.499Q-24.833-29.331-24.942-29.214Q-25.051-29.097-25.219-29.097Q-25.372-29.097-25.487-29.208Q-25.602-29.319-25.602-29.476Q-25.977-29.476-26.292-29.275Q-26.606-29.073-26.780-28.739Q-26.954-28.405-26.954-28.026L-26.954-27.105L-26.008-27.105Q-25.801-27.081-25.762-26.874L-25.762-26.784Q-25.801-26.569-26.008-26.546L-28.305-26.546Q-28.497-26.569-28.555-26.784M-22.669-26.507Q-23.133-26.507-23.499-26.757Q-23.864-27.007-24.069-27.411Q-24.274-27.816-24.274-28.273Q-24.274-28.616-24.149-28.937Q-24.024-29.257-23.792-29.507Q-23.559-29.757-23.255-29.896Q-22.950-30.034-22.594-30.034Q-22.083-30.034-21.676-29.714L-21.676-30.874L-22.098-30.874Q-22.309-30.898-22.348-31.112L-22.348-31.202Q-22.309-31.409-22.098-31.433L-21.286-31.433Q-21.087-31.409-21.036-31.202L-21.036-27.105L-20.610-27.105Q-20.403-27.081-20.364-26.874L-20.364-26.784Q-20.403-26.569-20.610-26.546L-21.426-26.546Q-21.626-26.569-21.676-26.784L-21.676-26.913Q-21.872-26.722-22.133-26.614Q-22.395-26.507-22.669-26.507M-22.630-27.066Q-22.270-27.066-22.018-27.335Q-21.766-27.605-21.676-27.980L-21.676-28.812Q-21.735-28.999-21.862-29.150Q-21.989-29.300-22.167-29.388Q-22.344-29.476-22.540-29.476Q-22.848-29.476-23.098-29.306Q-23.348-29.136-23.493-28.851Q-23.637-28.566-23.637-28.265Q-23.637-27.816-23.352-27.441Q-23.067-27.066-22.630-27.066M-20.028-26.784L-20.028-26.874Q-19.989-27.081-19.782-27.105L-19.376-27.105L-18.446-28.323L-19.317-29.433L-19.735-29.433Q-19.930-29.452-19.981-29.675L-19.981-29.761Q-19.930-29.972-19.735-29.995L-18.575-29.995Q-18.376-29.972-18.325-29.761L-18.325-29.675Q-18.376-29.456-18.575-29.433L-18.684-29.433L-18.188-28.776L-17.712-29.433L-17.829-29.433Q-18.028-29.456-18.079-29.675L-18.079-29.761Q-18.028-29.972-17.829-29.995L-16.669-29.995Q-16.473-29.976-16.423-29.761L-16.423-29.675Q-16.473-29.456-16.669-29.433L-17.079-29.433L-17.926-28.323L-16.965-27.105L-16.559-27.105Q-16.360-27.081-16.309-26.874L-16.309-26.784Q-16.348-26.569-16.559-26.546L-17.712-26.546Q-17.919-26.569-17.958-26.784L-17.958-26.874Q-17.919-27.081-17.712-27.105L-17.583-27.105L-18.188-27.960L-18.774-27.105L-18.630-27.105Q-18.423-27.081-18.383-26.874L-18.383-26.784Q-18.423-26.569-18.630-26.546L-19.782-26.546Q-19.977-26.566-20.028-26.784\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-26.209 2.778)\">\u003Cpath d=\"M-7.706-27.523L-13.019-27.523Q-13.097-27.530-13.146-27.579Q-13.194-27.628-13.194-27.706Q-13.194-27.776-13.147-27.827Q-13.101-27.878-13.019-27.890L-7.706-27.890Q-7.632-27.878-7.585-27.827Q-7.538-27.776-7.538-27.706Q-7.538-27.628-7.587-27.579Q-7.636-27.530-7.706-27.523M-7.706-29.210L-13.019-29.210Q-13.097-29.218-13.146-29.267Q-13.194-29.316-13.194-29.394Q-13.194-29.464-13.147-29.515Q-13.101-29.566-13.019-29.577L-7.706-29.577Q-7.632-29.566-7.585-29.515Q-7.538-29.464-7.538-29.394Q-7.538-29.316-7.587-29.267Q-7.636-29.218-7.706-29.210\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-26.209 2.778)\">\u003Cpath d=\"M-2.574-26.468Q-3.008-26.468-3.340-26.706Q-3.672-26.944-3.892-27.333Q-4.113-27.722-4.220-28.159Q-4.328-28.597-4.328-28.995Q-4.328-29.386-4.218-29.829Q-4.109-30.273-3.892-30.653Q-3.675-31.034-3.341-31.275Q-3.008-31.515-2.574-31.515Q-2.019-31.515-1.619-31.116Q-1.218-30.718-1.021-30.132Q-0.824-29.546-0.824-28.995Q-0.824-28.441-1.021-27.853Q-1.218-27.265-1.619-26.866Q-2.019-26.468-2.574-26.468M-2.574-27.026Q-2.273-27.026-2.056-27.243Q-1.840-27.460-1.713-27.788Q-1.586-28.116-1.525-28.462Q-1.465-28.808-1.465-29.089Q-1.465-29.339-1.527-29.665Q-1.590-29.991-1.720-30.282Q-1.851-30.573-2.064-30.763Q-2.277-30.952-2.574-30.952Q-2.949-30.952-3.201-30.640Q-3.453-30.327-3.570-29.894Q-3.687-29.460-3.687-29.089Q-3.687-28.691-3.574-28.210Q-3.461-27.730-3.213-27.378Q-2.965-27.026-2.574-27.026M-0.191-26.784L-0.191-26.874Q-0.152-27.081 0.055-27.105L0.461-27.105L1.391-28.323L0.520-29.433L0.102-29.433Q-0.093-29.452-0.144-29.675L-0.144-29.761Q-0.093-29.972 0.102-29.995L1.262-29.995Q1.461-29.972 1.512-29.761L1.512-29.675Q1.461-29.456 1.262-29.433L1.153-29.433L1.649-28.776L2.125-29.433L2.008-29.433Q1.809-29.456 1.758-29.675L1.758-29.761Q1.809-29.972 2.008-29.995L3.168-29.995Q3.364-29.976 3.414-29.761L3.414-29.675Q3.364-29.456 3.168-29.433L2.758-29.433L1.910-28.323L2.871-27.105L3.278-27.105Q3.477-27.081 3.528-26.874L3.528-26.784Q3.489-26.569 3.278-26.546L2.125-26.546Q1.918-26.569 1.879-26.784L1.879-26.874Q1.918-27.081 2.125-27.105L2.254-27.105L1.649-27.960L1.063-27.105L1.207-27.105Q1.414-27.081 1.453-26.874L1.453-26.784Q1.414-26.569 1.207-26.546L0.055-26.546Q-0.140-26.566-0.191-26.784M4.653-26.784L4.653-26.874Q4.703-27.081 4.903-27.105L5.719-27.105L5.719-30.288Q5.340-29.980 4.887-29.980Q4.657-29.980 4.606-30.210L4.606-30.300Q4.657-30.515 4.852-30.538Q5.180-30.538 5.434-30.776Q5.688-31.015 5.828-31.362Q5.899-31.491 6.055-31.515L6.110-31.515Q6.305-31.495 6.356-31.280L6.356-27.105L7.172-27.105Q7.371-27.081 7.422-26.874L7.422-26.784Q7.371-26.569 7.172-26.546L4.903-26.546Q4.703-26.569 4.653-26.784M10.164-26.468Q9.731-26.468 9.399-26.706Q9.067-26.944 8.846-27.333Q8.625-27.722 8.518-28.159Q8.410-28.597 8.410-28.995Q8.410-29.386 8.520-29.829Q8.629-30.273 8.846-30.653Q9.063-31.034 9.397-31.275Q9.731-31.515 10.164-31.515Q10.719-31.515 11.119-31.116Q11.520-30.718 11.717-30.132Q11.914-29.546 11.914-28.995Q11.914-28.441 11.717-27.853Q11.520-27.265 11.119-26.866Q10.719-26.468 10.164-26.468M10.164-27.026Q10.465-27.026 10.682-27.243Q10.899-27.460 11.026-27.788Q11.153-28.116 11.213-28.462Q11.274-28.808 11.274-29.089Q11.274-29.339 11.211-29.665Q11.149-29.991 11.018-30.282Q10.887-30.573 10.674-30.763Q10.461-30.952 10.164-30.952Q9.789-30.952 9.537-30.640Q9.285-30.327 9.168-29.894Q9.051-29.460 9.051-29.089Q9.051-28.691 9.164-28.210Q9.278-27.730 9.526-27.378Q9.774-27.026 10.164-27.026M14.410-26.468Q13.977-26.468 13.645-26.706Q13.313-26.944 13.092-27.333Q12.871-27.722 12.764-28.159Q12.657-28.597 12.657-28.995Q12.657-29.386 12.766-29.829Q12.875-30.273 13.092-30.653Q13.309-31.034 13.643-31.275Q13.977-31.515 14.410-31.515Q14.965-31.515 15.366-31.116Q15.766-30.718 15.963-30.132Q16.160-29.546 16.160-28.995Q16.160-28.441 15.963-27.853Q15.766-27.265 15.366-26.866Q14.965-26.468 14.410-26.468M14.410-27.026Q14.711-27.026 14.928-27.243Q15.145-27.460 15.272-27.788Q15.399-28.116 15.459-28.462Q15.520-28.808 15.520-29.089Q15.520-29.339 15.457-29.665Q15.395-29.991 15.264-30.282Q15.133-30.573 14.920-30.763Q14.707-30.952 14.410-30.952Q14.035-30.952 13.784-30.640Q13.532-30.327 13.414-29.894Q13.297-29.460 13.297-29.089Q13.297-28.691 13.410-28.210Q13.524-27.730 13.772-27.378Q14.020-27.026 14.410-27.026\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-64.314 18.979H-7.41V-3.784h-56.905Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-21.84 36.721)\">\u003Cpath d=\"M-35.069-27.179Q-34.878-26.905-34.522-26.778Q-34.167-26.651-33.784-26.651Q-33.448-26.651-33.239-26.837Q-33.030-27.023-32.934-27.316Q-32.839-27.608-32.839-27.921Q-32.839-28.245-32.936-28.540Q-33.034-28.835-33.247-29.019Q-33.460-29.202-33.792-29.202L-34.358-29.202Q-34.389-29.202-34.419-29.232Q-34.448-29.261-34.448-29.288L-34.448-29.370Q-34.448-29.405-34.419-29.431Q-34.389-29.456-34.358-29.456L-33.878-29.491Q-33.592-29.491-33.395-29.696Q-33.198-29.901-33.102-30.196Q-33.007-30.491-33.007-30.769Q-33.007-31.148-33.206-31.386Q-33.405-31.624-33.784-31.624Q-34.104-31.624-34.393-31.517Q-34.682-31.409-34.846-31.187Q-34.667-31.187-34.544-31.060Q-34.421-30.933-34.421-30.761Q-34.421-30.589-34.546-30.464Q-34.671-30.339-34.846-30.339Q-35.018-30.339-35.143-30.464Q-35.268-30.589-35.268-30.761Q-35.268-31.128-35.044-31.376Q-34.819-31.624-34.479-31.745Q-34.139-31.866-33.784-31.866Q-33.436-31.866-33.073-31.745Q-32.710-31.624-32.462-31.374Q-32.214-31.124-32.214-30.769Q-32.214-30.284-32.532-29.901Q-32.850-29.519-33.327-29.347Q-32.776-29.237-32.376-28.851Q-31.975-28.464-31.975-27.929Q-31.975-27.472-32.239-27.116Q-32.503-26.761-32.925-26.569Q-33.346-26.378-33.784-26.378Q-34.194-26.378-34.587-26.513Q-34.979-26.648-35.245-26.933Q-35.510-27.218-35.510-27.636Q-35.510-27.831-35.378-27.960Q-35.245-28.089-35.053-28.089Q-34.928-28.089-34.825-28.030Q-34.721-27.972-34.659-27.866Q-34.596-27.761-34.596-27.636Q-34.596-27.441-34.731-27.310Q-34.866-27.179-35.069-27.179\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.84 36.721)\">\u003Cpath d=\"M-27.153-26.546L-28.649-26.546L-28.649-26.843Q-28.016-26.843-27.594-27.323L-26.825-28.233L-27.817-29.433Q-27.973-29.612-28.135-29.655Q-28.298-29.698-28.602-29.698L-28.602-29.995L-26.915-29.995L-26.915-29.698Q-27.008-29.698-27.085-29.655Q-27.161-29.612-27.161-29.523Q-27.161-29.480-27.130-29.433L-26.473-28.644L-25.993-29.218Q-25.876-29.355-25.876-29.491Q-25.876-29.581-25.926-29.640Q-25.977-29.698-26.059-29.698L-26.059-29.995L-24.571-29.995L-24.571-29.698Q-25.208-29.698-25.618-29.218L-26.298-28.417L-25.212-27.105Q-25.051-26.929-24.891-26.886Q-24.731-26.843-24.426-26.843L-24.426-26.546L-26.114-26.546L-26.114-26.843Q-26.024-26.843-25.946-26.886Q-25.868-26.929-25.868-27.019Q-25.868-27.042-25.899-27.105L-26.641-28.011L-27.227-27.323Q-27.344-27.187-27.344-27.050Q-27.344-26.964-27.294-26.903Q-27.243-26.843-27.153-26.843\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.84 36.721)\">\u003Cpath d=\"M-18.979-27.858L-21.221-27.858L-21.221-28.155L-18.650-31.812Q-18.611-31.866-18.549-31.866L-18.404-31.866Q-18.354-31.866-18.322-31.835Q-18.291-31.804-18.291-31.753L-18.291-28.155L-17.459-28.155L-17.459-27.858L-18.291-27.858L-18.291-27.105Q-18.291-26.843-17.467-26.843L-17.467-26.546L-19.803-26.546L-19.803-26.843Q-18.979-26.843-18.979-27.105L-18.979-27.858M-18.924-30.960L-20.893-28.155L-18.924-28.155\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.84 36.721)\">\u003Cpath d=\"M-8.414-27.523L-13.727-27.523Q-13.805-27.530-13.854-27.579Q-13.902-27.628-13.902-27.706Q-13.902-27.776-13.855-27.827Q-13.809-27.878-13.727-27.890L-8.414-27.890Q-8.340-27.878-8.293-27.827Q-8.246-27.776-8.246-27.706Q-8.246-27.628-8.295-27.579Q-8.344-27.530-8.414-27.523M-8.414-29.210L-13.727-29.210Q-13.805-29.218-13.854-29.267Q-13.902-29.316-13.902-29.394Q-13.902-29.464-13.855-29.515Q-13.809-29.566-13.727-29.577L-8.414-29.577Q-8.340-29.566-8.293-29.515Q-8.246-29.464-8.246-29.394Q-8.246-29.316-8.295-29.267Q-8.344-29.218-8.414-29.210\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.84 36.721)\">\u003Cpath d=\"M-2.810-26.468Q-3.243-26.468-3.576-26.706Q-3.908-26.944-4.128-27.333Q-4.349-27.722-4.456-28.159Q-4.564-28.597-4.564-28.995Q-4.564-29.386-4.454-29.829Q-4.345-30.273-4.128-30.653Q-3.911-31.034-3.577-31.275Q-3.243-31.515-2.810-31.515Q-2.255-31.515-1.855-31.116Q-1.454-30.718-1.257-30.132Q-1.060-29.546-1.060-28.995Q-1.060-28.441-1.257-27.853Q-1.454-27.265-1.855-26.866Q-2.255-26.468-2.810-26.468M-2.810-27.026Q-2.509-27.026-2.292-27.243Q-2.076-27.460-1.949-27.788Q-1.822-28.116-1.761-28.462Q-1.701-28.808-1.701-29.089Q-1.701-29.339-1.763-29.665Q-1.826-29.991-1.956-30.282Q-2.087-30.573-2.300-30.763Q-2.513-30.952-2.810-30.952Q-3.185-30.952-3.437-30.640Q-3.689-30.327-3.806-29.894Q-3.923-29.460-3.923-29.089Q-3.923-28.691-3.810-28.210Q-3.697-27.730-3.449-27.378Q-3.201-27.026-2.810-27.026M-0.427-26.784L-0.427-26.874Q-0.388-27.081-0.181-27.105L0.225-27.105L1.155-28.323L0.284-29.433L-0.134-29.433Q-0.329-29.452-0.380-29.675L-0.380-29.761Q-0.329-29.972-0.134-29.995L1.026-29.995Q1.225-29.972 1.276-29.761L1.276-29.675Q1.225-29.456 1.026-29.433L0.917-29.433L1.413-28.776L1.889-29.433L1.772-29.433Q1.573-29.456 1.522-29.675L1.522-29.761Q1.573-29.972 1.772-29.995L2.932-29.995Q3.128-29.976 3.178-29.761L3.178-29.675Q3.128-29.456 2.932-29.433L2.522-29.433L1.674-28.323L2.635-27.105L3.042-27.105Q3.241-27.081 3.292-26.874L3.292-26.784Q3.253-26.569 3.042-26.546L1.889-26.546Q1.682-26.569 1.643-26.784L1.643-26.874Q1.682-27.081 1.889-27.105L2.018-27.105L1.413-27.960L0.827-27.105L0.971-27.105Q1.178-27.081 1.217-26.874L1.217-26.784Q1.178-26.569 0.971-26.546L-0.181-26.546Q-0.376-26.566-0.427-26.784M5.827-26.468Q5.378-26.468 5.012-26.692Q4.647-26.917 4.393-27.300Q4.139-27.683 4.014-28.126Q3.889-28.569 3.889-28.995Q3.889-29.421 4.014-29.860Q4.139-30.300 4.393-30.683Q4.647-31.066 5.006-31.290Q5.366-31.515 5.827-31.515Q6.104-31.515 6.362-31.423Q6.620-31.331 6.835-31.163L6.967-31.401Q6.995-31.452 7.049-31.483Q7.104-31.515 7.163-31.515L7.241-31.515Q7.335-31.503 7.397-31.444Q7.460-31.386 7.471-31.280L7.471-29.952Q7.460-29.851 7.397-29.788Q7.335-29.726 7.241-29.714L7.073-29.714Q6.971-29.726 6.909-29.792Q6.846-29.858 6.835-29.952Q6.796-30.218 6.673-30.442Q6.549-30.667 6.346-30.810Q6.143-30.952 5.882-30.952Q5.549-30.952 5.298-30.769Q5.046-30.585 4.874-30.284Q4.702-29.983 4.616-29.642Q4.530-29.300 4.530-28.995Q4.530-28.691 4.614-28.349Q4.698-28.007 4.870-27.704Q5.042-27.401 5.299-27.214Q5.557-27.026 5.889-27.026Q6.272-27.026 6.553-27.300Q6.835-27.573 6.835-27.960Q6.862-28.171 7.073-28.194L7.241-28.194Q7.471-28.155 7.471-27.929Q7.471-27.612 7.335-27.341Q7.198-27.069 6.964-26.872Q6.729-26.675 6.438-26.571Q6.147-26.468 5.827-26.468\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M55.187-15.165h56.906v-22.762H55.187Z\"\u002F>\u003Cg transform=\"translate(108.876 2.444)\">\u003Cpath d=\"M-33.741-26.468Q-34.175-26.468-34.507-26.706Q-34.839-26.944-35.059-27.333Q-35.280-27.722-35.387-28.159Q-35.495-28.597-35.495-28.995Q-35.495-29.386-35.385-29.829Q-35.276-30.273-35.059-30.653Q-34.842-31.034-34.508-31.275Q-34.175-31.515-33.741-31.515Q-33.186-31.515-32.786-31.116Q-32.385-30.718-32.188-30.132Q-31.991-29.546-31.991-28.995Q-31.991-28.441-32.188-27.853Q-32.385-27.265-32.786-26.866Q-33.186-26.468-33.741-26.468M-33.741-27.026Q-33.440-27.026-33.223-27.243Q-33.007-27.460-32.880-27.788Q-32.753-28.116-32.692-28.462Q-32.632-28.808-32.632-29.089Q-32.632-29.339-32.694-29.665Q-32.757-29.991-32.887-30.282Q-33.018-30.573-33.231-30.763Q-33.444-30.952-33.741-30.952Q-34.116-30.952-34.368-30.640Q-34.620-30.327-34.737-29.894Q-34.854-29.460-34.854-29.089Q-34.854-28.691-34.741-28.210Q-34.628-27.730-34.380-27.378Q-34.132-27.026-33.741-27.026M-31.358-26.784L-31.358-26.874Q-31.319-27.081-31.112-27.105L-30.706-27.105L-29.776-28.323L-30.647-29.433L-31.065-29.433Q-31.260-29.452-31.311-29.675L-31.311-29.761Q-31.260-29.972-31.065-29.995L-29.905-29.995Q-29.706-29.972-29.655-29.761L-29.655-29.675Q-29.706-29.456-29.905-29.433L-30.014-29.433L-29.518-28.776L-29.042-29.433L-29.159-29.433Q-29.358-29.456-29.409-29.675L-29.409-29.761Q-29.358-29.972-29.159-29.995L-27.999-29.995Q-27.803-29.976-27.753-29.761L-27.753-29.675Q-27.803-29.456-27.999-29.433L-28.409-29.433L-29.257-28.323L-28.296-27.105L-27.889-27.105Q-27.690-27.081-27.639-26.874L-27.639-26.784Q-27.678-26.569-27.889-26.546L-29.042-26.546Q-29.249-26.569-29.288-26.784L-29.288-26.874Q-29.249-27.081-29.042-27.105L-28.913-27.105L-29.518-27.960L-30.104-27.105L-29.960-27.105Q-29.753-27.081-29.714-26.874L-29.714-26.784Q-29.753-26.569-29.960-26.546L-31.112-26.546Q-31.307-26.566-31.358-26.784M-26.514-26.784L-26.514-26.874Q-26.464-27.081-26.264-27.105L-25.448-27.105L-25.448-30.288Q-25.827-29.980-26.280-29.980Q-26.510-29.980-26.561-30.210L-26.561-30.300Q-26.510-30.515-26.315-30.538Q-25.987-30.538-25.733-30.776Q-25.479-31.015-25.339-31.362Q-25.268-31.491-25.112-31.515L-25.057-31.515Q-24.862-31.495-24.811-31.280L-24.811-27.105L-23.995-27.105Q-23.796-27.081-23.745-26.874L-23.745-26.784Q-23.796-26.569-23.995-26.546L-26.264-26.546Q-26.464-26.569-26.514-26.784M-22.268-26.784L-22.268-26.874Q-22.217-27.081-22.018-27.105L-21.202-27.105L-21.202-30.288Q-21.581-29.980-22.034-29.980Q-22.264-29.980-22.315-30.210L-22.315-30.300Q-22.264-30.515-22.069-30.538Q-21.741-30.538-21.487-30.776Q-21.233-31.015-21.092-31.362Q-21.022-31.491-20.866-31.515L-20.811-31.515Q-20.616-31.495-20.565-31.280L-20.565-27.105L-19.749-27.105Q-19.550-27.081-19.499-26.874L-19.499-26.784Q-19.550-26.569-19.749-26.546L-22.018-26.546Q-22.217-26.569-22.268-26.784M-16.319-27.890L-18.389-27.890Q-18.585-27.913-18.639-28.132L-18.639-28.370Q-18.639-28.444-18.596-28.515L-16.749-31.386Q-16.663-31.515-16.510-31.515L-16.053-31.515Q-15.944-31.515-15.866-31.437Q-15.788-31.358-15.788-31.249L-15.788-28.448L-15.124-28.448Q-14.928-28.425-14.878-28.218L-14.878-28.132Q-14.928-27.913-15.124-27.890L-15.788-27.890L-15.788-27.105L-15.214-27.105Q-15.007-27.081-14.967-26.874L-14.967-26.784Q-15.007-26.569-15.214-26.546L-16.893-26.546Q-17.100-26.569-17.143-26.784L-17.143-26.874Q-17.100-27.081-16.893-27.105L-16.319-27.105L-16.319-27.890M-16.319-31.042L-17.991-28.448L-16.319-28.448\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"m-7.209-60.689 59.55 21.48\"\u002F>\u003Cpath stroke=\"none\" d=\"m54.787-38.327-3.207-3.368.761 2.486-2.173 1.427\"\u002F>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-6.12-26.546h58.307\"\u002F>\u003Cpath stroke=\"none\" d=\"m54.787-26.546-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"m-7.209 7.597 59.55-21.48\"\u002F>\u003Cpath stroke=\"none\" d=\"m54.787-14.765-4.619-.545 2.173 1.428-.761 2.485\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M177.534-36.504h62.596v-19.917h-62.596Z\"\u002F>\u003Cg transform=\"translate(241.152 -19.472)\">\u003Cpath d=\"M-35.143-27.011Q-35.143-27.194-35.007-27.331Q-34.870-27.468-34.678-27.468Q-34.487-27.468-34.354-27.335Q-34.221-27.202-34.221-27.011Q-34.221-26.812-34.354-26.679Q-34.487-26.546-34.678-26.546Q-34.870-26.546-35.007-26.683Q-35.143-26.819-35.143-27.011M-32.784-27.011Q-32.784-27.194-32.647-27.331Q-32.510-27.468-32.319-27.468Q-32.128-27.468-31.995-27.335Q-31.862-27.202-31.862-27.011Q-31.862-26.812-31.995-26.679Q-32.128-26.546-32.319-26.546Q-32.510-26.546-32.647-26.683Q-32.784-26.819-32.784-27.011M-30.425-27.011Q-30.425-27.194-30.288-27.331Q-30.151-27.468-29.960-27.468Q-29.768-27.468-29.635-27.335Q-29.503-27.202-29.503-27.011Q-29.503-26.812-29.635-26.679Q-29.768-26.546-29.960-26.546Q-30.151-26.546-30.288-26.683Q-30.425-26.819-30.425-27.011\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M177.534-16.587h62.596v-19.917h-62.596Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(225.093 2)\">\u003Cpath d=\"M-31.405-24.995L-33.260-24.995L-33.260-25.288Q-32.991-25.288-32.823-25.333Q-32.655-25.378-32.655-25.554L-32.655-27.003Q-32.858-26.757-33.159-26.612Q-33.460-26.468-33.792-26.468Q-34.276-26.468-34.688-26.710Q-35.100-26.952-35.341-27.364Q-35.581-27.776-35.581-28.273Q-35.581-28.769-35.325-29.183Q-35.069-29.597-34.639-29.835Q-34.210-30.073-33.717-30.073Q-33.362-30.073-33.055-29.894Q-32.749-29.714-32.557-29.401L-32.268-30.073L-32.014-30.073L-32.014-25.554Q-32.014-25.378-31.846-25.333Q-31.678-25.288-31.405-25.288L-31.405-24.995M-33.733-26.722Q-33.366-26.722-33.073-26.954Q-32.780-27.187-32.632-27.546L-32.632-28.882Q-32.725-29.265-32.999-29.528Q-33.272-29.792-33.647-29.792Q-34.007-29.792-34.280-29.562Q-34.553-29.331-34.696-28.974Q-34.839-28.616-34.839-28.265Q-34.839-27.929-34.714-27.567Q-34.589-27.206-34.337-26.964Q-34.085-26.722-33.733-26.722M-30.460-27.499L-30.460-29.241Q-30.460-29.456-30.522-29.552Q-30.585-29.648-30.704-29.669Q-30.823-29.691-31.069-29.691L-31.069-29.987L-29.823-30.073L-29.823-27.523L-29.823-27.499Q-29.823-27.187-29.768-27.025Q-29.714-26.862-29.563-26.792Q-29.413-26.722-29.092-26.722Q-28.663-26.722-28.389-27.060Q-28.116-27.398-28.116-27.843L-28.116-29.241Q-28.116-29.456-28.178-29.552Q-28.241-29.648-28.360-29.669Q-28.479-29.691-28.725-29.691L-28.725-29.987L-27.479-30.073L-27.479-27.288Q-27.479-27.077-27.417-26.982Q-27.354-26.886-27.235-26.864Q-27.116-26.843-26.870-26.843L-26.870-26.546L-28.092-26.468L-28.092-27.089Q-28.260-26.800-28.542-26.634Q-28.823-26.468-29.143-26.468Q-30.460-26.468-30.460-27.499M-26.327-27.378Q-26.327-27.862-25.925-28.157Q-25.522-28.452-24.971-28.571Q-24.421-28.691-23.928-28.691L-23.928-28.980Q-23.928-29.206-24.044-29.413Q-24.159-29.620-24.356-29.739Q-24.553-29.858-24.784-29.858Q-25.210-29.858-25.495-29.753Q-25.425-29.726-25.378-29.671Q-25.331-29.616-25.305-29.546Q-25.280-29.476-25.280-29.401Q-25.280-29.296-25.331-29.204Q-25.382-29.112-25.473-29.062Q-25.565-29.011-25.671-29.011Q-25.776-29.011-25.868-29.062Q-25.960-29.112-26.010-29.204Q-26.061-29.296-26.061-29.401Q-26.061-29.819-25.673-29.966Q-25.284-30.112-24.784-30.112Q-24.452-30.112-24.098-29.982Q-23.745-29.851-23.516-29.597Q-23.288-29.343-23.288-28.995L-23.288-27.194Q-23.288-27.062-23.216-26.952Q-23.143-26.843-23.014-26.843Q-22.889-26.843-22.821-26.948Q-22.753-27.054-22.753-27.194L-22.753-27.706L-22.471-27.706L-22.471-27.194Q-22.471-26.991-22.589-26.833Q-22.706-26.675-22.887-26.591Q-23.069-26.507-23.272-26.507Q-23.503-26.507-23.655-26.679Q-23.807-26.851-23.839-27.081Q-23.999-26.800-24.307-26.634Q-24.616-26.468-24.967-26.468Q-25.479-26.468-25.903-26.691Q-26.327-26.913-26.327-27.378M-25.639-27.378Q-25.639-27.093-25.413-26.907Q-25.186-26.722-24.893-26.722Q-24.647-26.722-24.423-26.839Q-24.198-26.956-24.063-27.159Q-23.928-27.362-23.928-27.616L-23.928-28.448Q-24.194-28.448-24.479-28.394Q-24.764-28.339-25.036-28.210Q-25.307-28.081-25.473-27.874Q-25.639-27.667-25.639-27.378M-20.362-26.468Q-20.842-26.468-21.251-26.712Q-21.659-26.956-21.897-27.370Q-22.135-27.784-22.135-28.273Q-22.135-28.765-21.878-29.181Q-21.620-29.597-21.188-29.835Q-20.757-30.073-20.264-30.073Q-19.643-30.073-19.194-29.636L-19.194-31.265Q-19.194-31.480-19.257-31.575Q-19.319-31.671-19.436-31.692Q-19.553-31.714-19.800-31.714L-19.800-32.011L-18.577-32.097L-18.577-27.288Q-18.577-27.077-18.514-26.982Q-18.452-26.886-18.335-26.864Q-18.217-26.843-17.967-26.843L-17.967-26.546L-19.217-26.468L-19.217-26.952Q-19.682-26.468-20.362-26.468M-20.296-26.722Q-19.956-26.722-19.663-26.913Q-19.370-27.105-19.217-27.401L-19.217-29.233Q-19.366-29.507-19.628-29.663Q-19.889-29.819-20.202-29.819Q-20.827-29.819-21.110-29.372Q-21.393-28.925-21.393-28.265Q-21.393-27.620-21.141-27.171Q-20.889-26.722-20.296-26.722\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(225.093 2)\">\u003Cpath d=\"M-13.023-26.577L-14.093-29.433Q-14.159-29.612-14.290-29.655Q-14.421-29.698-14.679-29.698L-14.679-29.995L-12.999-29.995L-12.999-29.698Q-13.449-29.698-13.449-29.499Q-13.445-29.483-13.443-29.466Q-13.441-29.448-13.441-29.433L-12.648-27.339L-11.937-29.249Q-11.972-29.343-11.972-29.388Q-11.972-29.433-12.007-29.433Q-12.074-29.612-12.204-29.655Q-12.335-29.698-12.589-29.698L-12.589-29.995L-10.999-29.995L-10.999-29.698Q-11.449-29.698-11.449-29.499Q-11.445-29.480-11.443-29.462Q-11.441-29.444-11.441-29.433L-10.609-27.218L-9.855-29.218Q-9.831-29.276-9.831-29.347Q-9.831-29.507-9.968-29.603Q-10.105-29.698-10.273-29.698L-10.273-29.995L-8.886-29.995L-8.886-29.698Q-9.120-29.698-9.298-29.571Q-9.476-29.444-9.558-29.218L-10.542-26.577Q-10.597-26.468-10.710-26.468L-10.769-26.468Q-10.882-26.468-10.925-26.577L-11.784-28.851L-12.640-26.577Q-12.679-26.468-12.800-26.468L-12.855-26.468Q-12.968-26.468-13.023-26.577\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(225.093 2)\">\u003Cpath d=\"M-8.707-28.241Q-8.707-28.745-8.451-29.177Q-8.195-29.608-7.759-29.860Q-7.324-30.112-6.824-30.112Q-6.437-30.112-6.095-29.968Q-5.754-29.823-5.492-29.562Q-5.230-29.300-5.088-28.964Q-4.945-28.628-4.945-28.241Q-4.945-27.749-5.209-27.339Q-5.472-26.929-5.902-26.698Q-6.332-26.468-6.824-26.468Q-7.316-26.468-7.750-26.700Q-8.183-26.933-8.445-27.341Q-8.707-27.749-8.707-28.241M-6.824-26.745Q-6.367-26.745-6.115-26.968Q-5.863-27.191-5.775-27.542Q-5.687-27.894-5.687-28.339Q-5.687-28.769-5.781-29.107Q-5.875-29.444-6.129-29.651Q-6.383-29.858-6.824-29.858Q-7.472-29.858-7.716-29.442Q-7.961-29.026-7.961-28.339Q-7.961-27.894-7.873-27.542Q-7.785-27.191-7.533-26.968Q-7.281-26.745-6.824-26.745M-2.453-26.546L-4.433-26.546L-4.433-26.843Q-4.164-26.843-3.996-26.888Q-3.828-26.933-3.828-27.105L-3.828-29.241Q-3.828-29.456-3.890-29.552Q-3.953-29.648-4.070-29.669Q-4.187-29.691-4.433-29.691L-4.433-29.987L-3.265-30.073L-3.265-29.288Q-3.187-29.499-3.035-29.685Q-2.883-29.870-2.683-29.972Q-2.484-30.073-2.258-30.073Q-2.011-30.073-1.820-29.929Q-1.629-29.784-1.629-29.554Q-1.629-29.398-1.734-29.288Q-1.840-29.179-1.996-29.179Q-2.152-29.179-2.261-29.288Q-2.371-29.398-2.371-29.554Q-2.371-29.714-2.265-29.819Q-2.590-29.819-2.804-29.591Q-3.019-29.362-3.115-29.023Q-3.211-28.683-3.211-28.378L-3.211-27.105Q-3.211-26.937-2.984-26.890Q-2.758-26.843-2.453-26.843L-2.453-26.546M0.668-26.468Q0.188-26.468-0.220-26.712Q-0.629-26.956-0.867-27.370Q-1.105-27.784-1.105-28.273Q-1.105-28.765-0.847-29.181Q-0.590-29.597-0.158-29.835Q0.274-30.073 0.766-30.073Q1.387-30.073 1.836-29.636L1.836-31.265Q1.836-31.480 1.774-31.575Q1.711-31.671 1.594-31.692Q1.477-31.714 1.231-31.714L1.231-32.011L2.453-32.097L2.453-27.288Q2.453-27.077 2.516-26.982Q2.578-26.886 2.696-26.864Q2.813-26.843 3.063-26.843L3.063-26.546L1.813-26.468L1.813-26.952Q1.348-26.468 0.668-26.468M0.735-26.722Q1.075-26.722 1.367-26.913Q1.660-27.105 1.813-27.401L1.813-29.233Q1.664-29.507 1.403-29.663Q1.141-29.819 0.828-29.819Q0.203-29.819-0.080-29.372Q-0.363-28.925-0.363-28.265Q-0.363-27.620-0.111-27.171Q0.141-26.722 0.735-26.722\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M177.534 3.33h62.596v-19.917h-62.596Z\"\u002F>\u003Cg transform=\"translate(241.152 20.361)\">\u003Cpath d=\"M-35.143-27.011Q-35.143-27.194-35.007-27.331Q-34.870-27.468-34.678-27.468Q-34.487-27.468-34.354-27.335Q-34.221-27.202-34.221-27.011Q-34.221-26.812-34.354-26.679Q-34.487-26.546-34.678-26.546Q-34.870-26.546-35.007-26.683Q-35.143-26.819-35.143-27.011M-32.784-27.011Q-32.784-27.194-32.647-27.331Q-32.510-27.468-32.319-27.468Q-32.128-27.468-31.995-27.335Q-31.862-27.202-31.862-27.011Q-31.862-26.812-31.995-26.679Q-32.128-26.546-32.319-26.546Q-32.510-26.546-32.647-26.683Q-32.784-26.819-32.784-27.011M-30.425-27.011Q-30.425-27.194-30.288-27.331Q-30.151-27.468-29.960-27.468Q-29.768-27.468-29.635-27.335Q-29.503-27.202-29.503-27.011Q-29.503-26.812-29.635-26.679Q-29.768-26.546-29.960-26.546Q-30.151-26.546-30.288-26.683Q-30.425-26.819-30.425-27.011\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(288.06 2.46)\">\u003Cpath d=\"M-35.526-27.378Q-35.526-27.862-35.124-28.157Q-34.721-28.452-34.171-28.571Q-33.620-28.691-33.128-28.691L-33.128-28.980Q-33.128-29.206-33.243-29.413Q-33.358-29.620-33.555-29.739Q-33.753-29.858-33.983-29.858Q-34.409-29.858-34.694-29.753Q-34.624-29.726-34.577-29.671Q-34.530-29.616-34.505-29.546Q-34.479-29.476-34.479-29.401Q-34.479-29.296-34.530-29.204Q-34.581-29.112-34.673-29.062Q-34.764-29.011-34.870-29.011Q-34.975-29.011-35.067-29.062Q-35.159-29.112-35.210-29.204Q-35.260-29.296-35.260-29.401Q-35.260-29.819-34.872-29.966Q-34.483-30.112-33.983-30.112Q-33.651-30.112-33.298-29.982Q-32.944-29.851-32.716-29.597Q-32.487-29.343-32.487-28.995L-32.487-27.194Q-32.487-27.062-32.415-26.952Q-32.342-26.843-32.214-26.843Q-32.089-26.843-32.020-26.948Q-31.952-27.054-31.952-27.194L-31.952-27.706L-31.671-27.706L-31.671-27.194Q-31.671-26.991-31.788-26.833Q-31.905-26.675-32.087-26.591Q-32.268-26.507-32.471-26.507Q-32.702-26.507-32.854-26.679Q-33.007-26.851-33.038-27.081Q-33.198-26.800-33.507-26.634Q-33.815-26.468-34.167-26.468Q-34.678-26.468-35.102-26.691Q-35.526-26.913-35.526-27.378M-34.839-27.378Q-34.839-27.093-34.612-26.907Q-34.385-26.722-34.092-26.722Q-33.846-26.722-33.622-26.839Q-33.397-26.956-33.262-27.159Q-33.128-27.362-33.128-27.616L-33.128-28.448Q-33.393-28.448-33.678-28.394Q-33.964-28.339-34.235-28.210Q-34.507-28.081-34.673-27.874Q-34.839-27.667-34.839-27.378M-30.753-27.507L-30.753-29.698L-31.456-29.698L-31.456-29.952Q-31.100-29.952-30.858-30.185Q-30.616-30.417-30.505-30.765Q-30.393-31.112-30.393-31.468L-30.112-31.468L-30.112-29.995L-28.936-29.995L-28.936-29.698L-30.112-29.698L-30.112-27.523Q-30.112-27.202-29.993-26.974Q-29.874-26.745-29.592-26.745Q-29.413-26.745-29.296-26.868Q-29.178-26.991-29.126-27.171Q-29.073-27.351-29.073-27.523L-29.073-27.995L-28.792-27.995L-28.792-27.507Q-28.792-27.253-28.897-27.013Q-29.003-26.773-29.200-26.620Q-29.397-26.468-29.655-26.468Q-29.971-26.468-30.223-26.591Q-30.475-26.714-30.614-26.948Q-30.753-27.183-30.753-27.507\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(288.06 2.46)\">\u003Cpath d=\"M-23.352-26.468Q-23.785-26.468-24.118-26.706Q-24.450-26.944-24.670-27.333Q-24.891-27.722-24.998-28.159Q-25.106-28.597-25.106-28.995Q-25.106-29.386-24.996-29.829Q-24.887-30.273-24.670-30.653Q-24.453-31.034-24.119-31.275Q-23.785-31.515-23.352-31.515Q-22.797-31.515-22.397-31.116Q-21.996-30.718-21.799-30.132Q-21.602-29.546-21.602-28.995Q-21.602-28.441-21.799-27.853Q-21.996-27.265-22.397-26.866Q-22.797-26.468-23.352-26.468M-23.352-27.026Q-23.051-27.026-22.834-27.243Q-22.618-27.460-22.491-27.788Q-22.364-28.116-22.303-28.462Q-22.243-28.808-22.243-29.089Q-22.243-29.339-22.305-29.665Q-22.368-29.991-22.498-30.282Q-22.629-30.573-22.842-30.763Q-23.055-30.952-23.352-30.952Q-23.727-30.952-23.979-30.640Q-24.231-30.327-24.348-29.894Q-24.465-29.460-24.465-29.089Q-24.465-28.691-24.352-28.210Q-24.239-27.730-23.991-27.378Q-23.743-27.026-23.352-27.026M-20.969-26.784L-20.969-26.874Q-20.930-27.081-20.723-27.105L-20.317-27.105L-19.387-28.323L-20.258-29.433L-20.676-29.433Q-20.871-29.452-20.922-29.675L-20.922-29.761Q-20.871-29.972-20.676-29.995L-19.516-29.995Q-19.317-29.972-19.266-29.761L-19.266-29.675Q-19.317-29.456-19.516-29.433L-19.625-29.433L-19.129-28.776L-18.653-29.433L-18.770-29.433Q-18.969-29.456-19.020-29.675L-19.020-29.761Q-18.969-29.972-18.770-29.995L-17.610-29.995Q-17.414-29.976-17.364-29.761L-17.364-29.675Q-17.414-29.456-17.610-29.433L-18.020-29.433L-18.868-28.323L-17.907-27.105L-17.500-27.105Q-17.301-27.081-17.250-26.874L-17.250-26.784Q-17.289-26.569-17.500-26.546L-18.653-26.546Q-18.860-26.569-18.899-26.784L-18.899-26.874Q-18.860-27.081-18.653-27.105L-18.524-27.105L-19.129-27.960L-19.715-27.105L-19.571-27.105Q-19.364-27.081-19.325-26.874L-19.325-26.784Q-19.364-26.569-19.571-26.546L-20.723-26.546Q-20.918-26.566-20.969-26.784M-16.125-26.784L-16.125-26.874Q-16.075-27.081-15.875-27.105L-15.059-27.105L-15.059-30.288Q-15.438-29.980-15.891-29.980Q-16.121-29.980-16.172-30.210L-16.172-30.300Q-16.121-30.515-15.926-30.538Q-15.598-30.538-15.344-30.776Q-15.090-31.015-14.950-31.362Q-14.879-31.491-14.723-31.515L-14.668-31.515Q-14.473-31.495-14.422-31.280L-14.422-27.105L-13.606-27.105Q-13.407-27.081-13.356-26.874L-13.356-26.784Q-13.407-26.569-13.606-26.546L-15.875-26.546Q-16.075-26.569-16.125-26.784M-11.879-26.784L-11.879-26.874Q-11.828-27.081-11.629-27.105L-10.813-27.105L-10.813-30.288Q-11.192-29.980-11.645-29.980Q-11.875-29.980-11.926-30.210L-11.926-30.300Q-11.875-30.515-11.680-30.538Q-11.352-30.538-11.098-30.776Q-10.844-31.015-10.703-31.362Q-10.633-31.491-10.477-31.515L-10.422-31.515Q-10.227-31.495-10.176-31.280L-10.176-27.105L-9.360-27.105Q-9.160-27.081-9.110-26.874L-9.110-26.784Q-9.160-26.569-9.360-26.546L-11.629-26.546Q-11.828-26.569-11.879-26.784M-5.930-27.890L-8-27.890Q-8.196-27.913-8.250-28.132L-8.250-28.370Q-8.250-28.444-8.207-28.515L-6.360-31.386Q-6.274-31.515-6.121-31.515L-5.664-31.515Q-5.555-31.515-5.477-31.437Q-5.399-31.358-5.399-31.249L-5.399-28.448L-4.735-28.448Q-4.539-28.425-4.489-28.218L-4.489-28.132Q-4.539-27.913-4.735-27.890L-5.399-27.890L-5.399-27.105L-4.825-27.105Q-4.618-27.081-4.578-26.874L-4.578-26.784Q-4.618-26.569-4.825-26.546L-6.504-26.546Q-6.711-26.569-6.754-26.784L-6.754-26.874Q-6.711-27.081-6.504-27.105L-5.930-27.105L-5.930-27.890M-5.930-31.042L-7.602-28.448L-5.930-28.448\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M112.493-26.546h62.241\"\u002F>\u003Cpath stroke=\"none\" d=\"m177.334-26.546-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg transform=\"translate(167.857 -3.733)\">\u003Cpath d=\"M-35.489-27.274Q-35.489-27.606-35.266-27.833Q-35.042-28.060-34.698-28.188Q-34.355-28.317-33.982-28.369Q-33.610-28.422-33.305-28.422L-33.305-28.675Q-33.305-28.880-33.413-29.060Q-33.521-29.239-33.702-29.342Q-33.883-29.444-34.091-29.444Q-34.498-29.444-34.734-29.352Q-34.645-29.315-34.599-29.231Q-34.553-29.147-34.553-29.045Q-34.553-28.949-34.599-28.870Q-34.645-28.792-34.726-28.747Q-34.806-28.703-34.895-28.703Q-35.045-28.703-35.146-28.800Q-35.247-28.898-35.247-29.045Q-35.247-29.667-34.091-29.667Q-33.880-29.667-33.630-29.603Q-33.381-29.540-33.179-29.421Q-32.977-29.301-32.851-29.116Q-32.724-28.932-32.724-28.689L-32.724-27.113Q-32.724-26.997-32.663-26.901Q-32.601-26.806-32.488-26.806Q-32.379-26.806-32.314-26.900Q-32.249-26.994-32.249-27.113L-32.249-27.561L-31.983-27.561L-31.983-27.113Q-31.983-26.843-32.210-26.678Q-32.437-26.512-32.717-26.512Q-32.926-26.512-33.063-26.666Q-33.199-26.819-33.223-27.035Q-33.370-26.768-33.652-26.623Q-33.934-26.478-34.259-26.478Q-34.536-26.478-34.820-26.553Q-35.103-26.628-35.296-26.807Q-35.489-26.987-35.489-27.274M-34.874-27.274Q-34.874-27.100-34.773-26.970Q-34.673-26.840-34.517-26.770Q-34.362-26.700-34.197-26.700Q-33.979-26.700-33.770-26.797Q-33.562-26.895-33.434-27.076Q-33.305-27.257-33.305-27.483L-33.305-28.211Q-33.630-28.211-33.996-28.120Q-34.362-28.029-34.618-27.817Q-34.874-27.606-34.874-27.274M-31.566-28.057Q-31.566-28.395-31.425-28.686Q-31.285-28.976-31.041-29.190Q-30.797-29.403-30.492-29.518Q-30.188-29.632-29.863-29.632Q-29.593-29.632-29.330-29.533Q-29.067-29.434-28.876-29.256L-28.876-30.654Q-28.876-30.924-28.983-30.986Q-29.091-31.047-29.402-31.047L-29.402-31.328L-28.325-31.403L-28.325-27.219Q-28.325-27.031-28.271-26.948Q-28.216-26.864-28.115-26.845Q-28.014-26.826-27.799-26.826L-27.799-26.546L-28.906-26.478L-28.906-26.895Q-29.323-26.478-29.949-26.478Q-30.380-26.478-30.752-26.690Q-31.125-26.901-31.345-27.262Q-31.566-27.623-31.566-28.057M-29.891-26.700Q-29.682-26.700-29.496-26.772Q-29.310-26.843-29.156-26.980Q-29.002-27.117-28.906-27.295L-28.906-28.904Q-28.992-29.051-29.137-29.171Q-29.282-29.291-29.452-29.350Q-29.621-29.410-29.802-29.410Q-30.362-29.410-30.631-29.021Q-30.899-28.631-30.899-28.050Q-30.899-27.479-30.665-27.089Q-30.431-26.700-29.891-26.700M-27.150-28.057Q-27.150-28.395-27.009-28.686Q-26.869-28.976-26.625-29.190Q-26.381-29.403-26.076-29.518Q-25.772-29.632-25.447-29.632Q-25.177-29.632-24.914-29.533Q-24.651-29.434-24.460-29.256L-24.460-30.654Q-24.460-30.924-24.567-30.986Q-24.675-31.047-24.986-31.047L-24.986-31.328L-23.909-31.403L-23.909-27.219Q-23.909-27.031-23.855-26.948Q-23.800-26.864-23.699-26.845Q-23.598-26.826-23.383-26.826L-23.383-26.546L-24.490-26.478L-24.490-26.895Q-24.907-26.478-25.533-26.478Q-25.964-26.478-26.336-26.690Q-26.709-26.901-26.929-27.262Q-27.150-27.623-27.150-28.057M-25.475-26.700Q-25.266-26.700-25.080-26.772Q-24.894-26.843-24.740-26.980Q-24.586-27.117-24.490-27.295L-24.490-28.904Q-24.576-29.051-24.721-29.171Q-24.866-29.291-25.036-29.350Q-25.205-29.410-25.386-29.410Q-25.946-29.410-26.215-29.021Q-26.483-28.631-26.483-28.050Q-26.483-27.479-26.249-27.089Q-26.015-26.700-25.475-26.700M-20.984-26.546L-22.720-26.546L-22.720-26.826Q-22.491-26.826-22.342-26.860Q-22.194-26.895-22.194-27.035L-22.194-28.884Q-22.194-29.154-22.301-29.215Q-22.409-29.277-22.720-29.277L-22.720-29.557L-21.691-29.632L-21.691-28.925Q-21.561-29.233-21.319-29.432Q-21.076-29.632-20.758-29.632Q-20.539-29.632-20.368-29.508Q-20.197-29.383-20.197-29.171Q-20.197-29.034-20.297-28.935Q-20.396-28.836-20.529-28.836Q-20.666-28.836-20.765-28.935Q-20.864-29.034-20.864-29.171Q-20.864-29.311-20.765-29.410Q-21.055-29.410-21.255-29.214Q-21.455-29.017-21.548-28.723Q-21.640-28.429-21.640-28.149L-21.640-27.035Q-21.640-26.826-20.984-26.826L-20.984-26.546M-19.654-28.081Q-19.654-28.402-19.529-28.691Q-19.404-28.980-19.179-29.203Q-18.953-29.427-18.658-29.547Q-18.362-29.667-18.044-29.667Q-17.716-29.667-17.455-29.567Q-17.193-29.468-17.017-29.286Q-16.841-29.103-16.747-28.845Q-16.653-28.587-16.653-28.255Q-16.653-28.163-16.735-28.142L-18.991-28.142L-18.991-28.081Q-18.991-27.493-18.707-27.110Q-18.424-26.727-17.856-26.727Q-17.535-26.727-17.267-26.920Q-16.998-27.113-16.909-27.428Q-16.903-27.469-16.827-27.483L-16.735-27.483Q-16.653-27.459-16.653-27.387Q-16.653-27.380-16.660-27.353Q-16.773-26.956-17.143-26.717Q-17.514-26.478-17.938-26.478Q-18.376-26.478-18.776-26.686Q-19.175-26.895-19.415-27.262Q-19.654-27.629-19.654-28.081M-18.984-28.351L-17.169-28.351Q-17.169-28.628-17.267-28.880Q-17.364-29.133-17.562-29.289Q-17.760-29.444-18.044-29.444Q-18.321-29.444-18.535-29.286Q-18.748-29.127-18.866-28.872Q-18.984-28.617-18.984-28.351M-16.065-26.553L-16.065-27.616Q-16.065-27.640-16.038-27.667Q-16.010-27.694-15.987-27.694L-15.877-27.694Q-15.812-27.694-15.799-27.636Q-15.703-27.202-15.457-26.951Q-15.211-26.700-14.797-26.700Q-14.455-26.700-14.202-26.833Q-13.949-26.966-13.949-27.274Q-13.949-27.431-14.043-27.546Q-14.137-27.660-14.276-27.729Q-14.414-27.797-14.582-27.835L-15.163-27.934Q-15.518-28.002-15.792-28.223Q-16.065-28.443-16.065-28.785Q-16.065-29.034-15.954-29.209Q-15.843-29.383-15.657-29.482Q-15.470-29.581-15.255-29.624Q-15.040-29.667-14.797-29.667Q-14.383-29.667-14.103-29.485L-13.888-29.660Q-13.878-29.663-13.871-29.665Q-13.864-29.667-13.854-29.667L-13.802-29.667Q-13.775-29.667-13.751-29.643Q-13.727-29.619-13.727-29.591L-13.727-28.744Q-13.727-28.723-13.751-28.696Q-13.775-28.669-13.802-28.669L-13.915-28.669Q-13.943-28.669-13.968-28.694Q-13.994-28.720-13.994-28.744Q-13.994-28.980-14.100-29.144Q-14.206-29.308-14.389-29.390Q-14.571-29.472-14.804-29.472Q-15.132-29.472-15.388-29.369Q-15.645-29.267-15.645-28.990Q-15.645-28.795-15.462-28.686Q-15.279-28.576-15.050-28.535L-14.476-28.429Q-14.230-28.381-14.016-28.253Q-13.802-28.125-13.666-27.922Q-13.529-27.718-13.529-27.469Q-13.529-26.956-13.895-26.717Q-14.260-26.478-14.797-26.478Q-15.293-26.478-15.624-26.772L-15.891-26.498Q-15.911-26.478-15.939-26.478L-15.987-26.478Q-16.010-26.478-16.038-26.505Q-16.065-26.532-16.065-26.553M-12.900-26.553L-12.900-27.616Q-12.900-27.640-12.873-27.667Q-12.845-27.694-12.821-27.694L-12.712-27.694Q-12.647-27.694-12.633-27.636Q-12.538-27.202-12.292-26.951Q-12.046-26.700-11.632-26.700Q-11.290-26.700-11.037-26.833Q-10.784-26.966-10.784-27.274Q-10.784-27.431-10.878-27.546Q-10.972-27.660-11.111-27.729Q-11.249-27.797-11.417-27.835L-11.998-27.934Q-12.353-28.002-12.627-28.223Q-12.900-28.443-12.900-28.785Q-12.900-29.034-12.789-29.209Q-12.678-29.383-12.492-29.482Q-12.305-29.581-12.090-29.624Q-11.875-29.667-11.632-29.667Q-11.218-29.667-10.938-29.485L-10.723-29.660Q-10.713-29.663-10.706-29.665Q-10.699-29.667-10.689-29.667L-10.637-29.667Q-10.610-29.667-10.586-29.643Q-10.562-29.619-10.562-29.591L-10.562-28.744Q-10.562-28.723-10.586-28.696Q-10.610-28.669-10.637-28.669L-10.750-28.669Q-10.778-28.669-10.803-28.694Q-10.829-28.720-10.829-28.744Q-10.829-28.980-10.935-29.144Q-11.041-29.308-11.224-29.390Q-11.406-29.472-11.639-29.472Q-11.967-29.472-12.223-29.369Q-12.480-29.267-12.480-28.990Q-12.480-28.795-12.297-28.686Q-12.114-28.576-11.885-28.535L-11.311-28.429Q-11.065-28.381-10.851-28.253Q-10.637-28.125-10.501-27.922Q-10.364-27.718-10.364-27.469Q-10.364-26.956-10.730-26.717Q-11.095-26.478-11.632-26.478Q-12.128-26.478-12.459-26.772L-12.726-26.498Q-12.746-26.478-12.774-26.478L-12.821-26.478Q-12.845-26.478-12.873-26.505Q-12.900-26.532-12.900-26.553\" 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\">Resolving 0x8(%rdx,%rcx,4) with %rdx=0x100 and %rcx=3. The three terms sum to the effective address 0x114; the operand is the quad word in memory at that address.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:373.040px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 279.780 113.821\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-14.004 -67.46)\">\u003Cpath d=\"M-1.708 1.537L-3.342 1.537L-3.342 1.257Q-3.113 1.257-2.964 1.223Q-2.815 1.188-2.815 1.048L-2.815-0.801Q-2.815-1.071-2.923-1.132Q-3.031-1.194-3.342-1.194L-3.342-1.474L-2.282-1.549L-2.282-0.900Q-2.111-1.208-1.807-1.379Q-1.503-1.549-1.158-1.549Q-0.758-1.549-0.481-1.409Q-0.204-1.269-0.119-0.921Q0.049-1.214 0.348-1.382Q0.647-1.549 0.992-1.549Q1.498-1.549 1.782-1.326Q2.066-1.102 2.066-0.606L2.066 1.048Q2.066 1.185 2.214 1.221Q2.363 1.257 2.588 1.257L2.588 1.537L0.958 1.537L0.958 1.257Q1.184 1.257 1.334 1.221Q1.484 1.185 1.484 1.048L1.484-0.592Q1.484-0.927 1.365-1.127Q1.245-1.327 0.931-1.327Q0.661-1.327 0.427-1.191Q0.192-1.054 0.054-0.820Q-0.084-0.586-0.084-0.312L-0.084 1.048Q-0.084 1.185 0.064 1.221Q0.213 1.257 0.439 1.257L0.439 1.537L-1.192 1.537L-1.192 1.257Q-0.963 1.257-0.814 1.223Q-0.665 1.188-0.665 1.048L-0.665-0.592Q-0.665-0.927-0.785-1.127Q-0.905-1.327-1.219-1.327Q-1.489-1.327-1.723-1.191Q-1.957-1.054-2.096-0.820Q-2.234-0.586-2.234-0.312L-2.234 1.048Q-2.234 1.185-2.084 1.221Q-1.933 1.257-1.708 1.257L-1.708 1.537M3.135 0.002Q3.135-0.319 3.260-0.608Q3.385-0.897 3.610-1.120Q3.836-1.344 4.132-1.464Q4.427-1.584 4.745-1.584Q5.073-1.584 5.335-1.484Q5.596-1.385 5.772-1.203Q5.948-1.020 6.042-0.762Q6.136-0.504 6.136-0.172Q6.136-0.080 6.054-0.059L3.798-0.059L3.798 0.002Q3.798 0.590 4.082 0.973Q4.366 1.356 4.933 1.356Q5.254 1.356 5.523 1.163Q5.791 0.970 5.880 0.655Q5.887 0.614 5.962 0.600L6.054 0.600Q6.136 0.624 6.136 0.696Q6.136 0.703 6.129 0.730Q6.017 1.127 5.646 1.366Q5.275 1.605 4.851 1.605Q4.414 1.605 4.014 1.397Q3.614 1.188 3.375 0.821Q3.135 0.454 3.135 0.002M3.805-0.268L5.620-0.268Q5.620-0.545 5.523-0.797Q5.425-1.050 5.227-1.206Q5.029-1.361 4.745-1.361Q4.468-1.361 4.255-1.203Q4.041-1.044 3.923-0.789Q3.805-0.534 3.805-0.268M8.406 1.537L6.772 1.537L6.772 1.257Q7.001 1.257 7.150 1.223Q7.298 1.188 7.298 1.048L7.298-0.801Q7.298-1.071 7.191-1.132Q7.083-1.194 6.772-1.194L6.772-1.474L7.832-1.549L7.832-0.900Q8.003-1.208 8.307-1.379Q8.611-1.549 8.956-1.549Q9.356-1.549 9.633-1.409Q9.910-1.269 9.995-0.921Q10.163-1.214 10.462-1.382Q10.761-1.549 11.106-1.549Q11.612-1.549 11.896-1.326Q12.179-1.102 12.179-0.606L12.179 1.048Q12.179 1.185 12.328 1.221Q12.477 1.257 12.702 1.257L12.702 1.537L11.072 1.537L11.072 1.257Q11.297 1.257 11.448 1.221Q11.598 1.185 11.598 1.048L11.598-0.592Q11.598-0.927 11.479-1.127Q11.359-1.327 11.045-1.327Q10.775-1.327 10.540-1.191Q10.306-1.054 10.168-0.820Q10.029-0.586 10.029-0.312L10.029 1.048Q10.029 1.185 10.178 1.221Q10.327 1.257 10.552 1.257L10.552 1.537L8.922 1.537L8.922 1.257Q9.151 1.257 9.300 1.223Q9.448 1.188 9.448 1.048L9.448-0.592Q9.448-0.927 9.329-1.127Q9.209-1.327 8.895-1.327Q8.625-1.327 8.390-1.191Q8.156-1.054 8.018-0.820Q7.879-0.586 7.879-0.312L7.879 1.048Q7.879 1.185 8.030 1.221Q8.180 1.257 8.406 1.257L8.406 1.537M13.249 0.054Q13.249-0.288 13.384-0.587Q13.519-0.886 13.758-1.110Q13.998-1.334 14.316-1.459Q14.633-1.584 14.965-1.584Q15.409-1.584 15.809-1.368Q16.209-1.153 16.443-0.775Q16.677-0.398 16.677 0.054Q16.677 0.395 16.536 0.679Q16.394 0.963 16.149 1.170Q15.905 1.376 15.596 1.491Q15.286 1.605 14.965 1.605Q14.534 1.605 14.133 1.404Q13.731 1.202 13.490 0.850Q13.249 0.498 13.249 0.054M14.965 1.356Q15.567 1.356 15.790 0.978Q16.014 0.600 16.014-0.032Q16.014-0.644 15.780-1.003Q15.546-1.361 14.965-1.361Q13.912-1.361 13.912-0.032Q13.912 0.600 14.138 0.978Q14.363 1.356 14.965 1.356M19.022 1.537L17.286 1.537L17.286 1.257Q17.515 1.257 17.663 1.223Q17.812 1.188 17.812 1.048L17.812-0.801Q17.812-1.071 17.704-1.132Q17.597-1.194 17.286-1.194L17.286-1.474L18.315-1.549L18.315-0.842Q18.444-1.150 18.687-1.349Q18.930-1.549 19.248-1.549Q19.466-1.549 19.637-1.425Q19.808-1.300 19.808-1.088Q19.808-0.951 19.709-0.852Q19.610-0.753 19.477-0.753Q19.340-0.753 19.241-0.852Q19.142-0.951 19.142-1.088Q19.142-1.228 19.241-1.327Q18.950-1.327 18.750-1.131Q18.550-0.934 18.458-0.640Q18.366-0.346 18.366-0.066L18.366 1.048Q18.366 1.257 19.022 1.257L19.022 1.537M20.728 2.672Q20.858 2.740 20.994 2.740Q21.165 2.740 21.316 2.651Q21.466 2.562 21.577 2.417Q21.688 2.272 21.767 2.104L22.030 1.537L20.861-0.989Q20.786-1.136 20.656-1.168Q20.526-1.201 20.294-1.201L20.294-1.481L21.815-1.481L21.815-1.201Q21.466-1.201 21.466-1.054Q21.469-1.033 21.471-1.016Q21.473-0.999 21.473-0.989L22.331 0.870L23.103-0.801Q23.137-0.869 23.137-0.948Q23.137-1.061 23.054-1.131Q22.970-1.201 22.857-1.201L22.857-1.481L24.053-1.481L24.053-1.201Q23.835-1.201 23.662-1.097Q23.489-0.992 23.397-0.801L22.061 2.104Q21.890 2.474 21.620 2.720Q21.350 2.966 20.994 2.966Q20.724 2.966 20.505 2.800Q20.287 2.634 20.287 2.371Q20.287 2.234 20.379 2.145Q20.471 2.057 20.611 2.057Q20.748 2.057 20.837 2.145Q20.926 2.234 20.926 2.371Q20.926 2.474 20.873 2.552Q20.820 2.631 20.728 2.672\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-32.157-34.03H24.75v-19.916h-56.906Z\"\u002F>\u003Cg transform=\"translate(-12.75 -43.08)\">\u003Cpath d=\"M-1.583 1.615Q-2.017 1.615-2.349 1.377Q-2.681 1.139-2.901 0.750Q-3.122 0.361-3.229-0.076Q-3.337-0.514-3.337-0.912Q-3.337-1.303-3.227-1.746Q-3.118-2.190-2.901-2.570Q-2.684-2.951-2.350-3.192Q-2.017-3.432-1.583-3.432Q-1.028-3.432-0.628-3.033Q-0.227-2.635-0.030-2.049Q0.167-1.463 0.167-0.912Q0.167-0.358-0.030 0.230Q-0.227 0.818-0.628 1.217Q-1.028 1.615-1.583 1.615M-1.583 1.057Q-1.282 1.057-1.065 0.840Q-0.849 0.623-0.722 0.295Q-0.595-0.033-0.534-0.379Q-0.474-0.725-0.474-1.006Q-0.474-1.256-0.536-1.582Q-0.599-1.908-0.729-2.199Q-0.860-2.490-1.073-2.680Q-1.286-2.869-1.583-2.869Q-1.958-2.869-2.210-2.557Q-2.462-2.244-2.579-1.811Q-2.696-1.377-2.696-1.006Q-2.696-0.608-2.583-0.127Q-2.470 0.353-2.222 0.705Q-1.974 1.057-1.583 1.057M0.800 1.299L0.800 1.209Q0.839 1.002 1.046 0.978L1.452 0.978L2.382-0.240L1.511-1.350L1.093-1.350Q0.898-1.369 0.847-1.592L0.847-1.678Q0.898-1.889 1.093-1.912L2.253-1.912Q2.452-1.889 2.503-1.678L2.503-1.592Q2.452-1.373 2.253-1.350L2.144-1.350L2.640-0.693L3.116-1.350L2.999-1.350Q2.800-1.373 2.749-1.592L2.749-1.678Q2.800-1.889 2.999-1.912L4.159-1.912Q4.355-1.893 4.405-1.678L4.405-1.592Q4.355-1.373 4.159-1.350L3.749-1.350L2.901-0.240L3.862 0.978L4.269 0.978Q4.468 1.002 4.519 1.209L4.519 1.299Q4.480 1.514 4.269 1.537L3.116 1.537Q2.909 1.514 2.870 1.299L2.870 1.209Q2.909 1.002 3.116 0.978L3.245 0.978L2.640 0.123L2.054 0.978L2.198 0.978Q2.405 1.002 2.444 1.209L2.444 1.299Q2.405 1.514 2.198 1.537L1.046 1.537Q0.851 1.517 0.800 1.299M5.214 1.299L5.214 1.224Q5.245 1.057 5.347 1.010L6.636-0.057Q6.968-0.334 7.150-0.486Q7.331-0.639 7.526-0.859Q7.722-1.080 7.843-1.330Q7.964-1.580 7.964-1.846Q7.964-2.170 7.788-2.404Q7.612-2.639 7.333-2.754Q7.054-2.869 6.733-2.869Q6.476-2.869 6.247-2.746Q6.019-2.623 5.917-2.408Q6.019-2.276 6.019-2.127Q6.019-1.967 5.900-1.844Q5.780-1.721 5.620-1.721Q5.444-1.721 5.329-1.846Q5.214-1.971 5.214-2.143Q5.214-2.436 5.349-2.678Q5.483-2.920 5.722-3.092Q5.960-3.264 6.228-3.348Q6.495-3.432 6.788-3.432Q7.269-3.432 7.685-3.242Q8.101-3.053 8.353-2.692Q8.605-2.330 8.605-1.846Q8.605-1.502 8.472-1.199Q8.339-0.897 8.114-0.637Q7.890-0.377 7.581-0.115Q7.273 0.146 7.062 0.322L6.253 0.978L7.964 0.978L7.964 0.834Q8.015 0.623 8.214 0.599L8.355 0.599Q8.554 0.619 8.605 0.834L8.605 1.299Q8.554 1.514 8.355 1.537L5.460 1.537Q5.265 1.517 5.214 1.299M9.460 1.299L9.460 1.224Q9.491 1.057 9.593 1.010L10.882-0.057Q11.214-0.334 11.396-0.486Q11.577-0.639 11.773-0.859Q11.968-1.080 12.089-1.330Q12.210-1.580 12.210-1.846Q12.210-2.170 12.034-2.404Q11.858-2.639 11.579-2.754Q11.300-2.869 10.980-2.869Q10.722-2.869 10.493-2.746Q10.265-2.623 10.163-2.408Q10.265-2.276 10.265-2.127Q10.265-1.967 10.146-1.844Q10.026-1.721 9.866-1.721Q9.691-1.721 9.575-1.846Q9.460-1.971 9.460-2.143Q9.460-2.436 9.595-2.678Q9.730-2.920 9.968-3.092Q10.206-3.264 10.474-3.348Q10.741-3.432 11.034-3.432Q11.515-3.432 11.931-3.242Q12.347-3.053 12.599-2.692Q12.851-2.330 12.851-1.846Q12.851-1.502 12.718-1.199Q12.585-0.897 12.360-0.637Q12.136-0.377 11.827-0.115Q11.519 0.146 11.308 0.322L10.499 0.978L12.210 0.978L12.210 0.834Q12.261 0.623 12.460 0.599L12.601 0.599Q12.800 0.619 12.851 0.834L12.851 1.299Q12.800 1.514 12.601 1.537L9.706 1.537Q9.511 1.517 9.460 1.299M15.401 1.615Q14.968 1.615 14.636 1.377Q14.304 1.139 14.083 0.750Q13.862 0.361 13.755-0.076Q13.648-0.514 13.648-0.912Q13.648-1.303 13.757-1.746Q13.866-2.190 14.083-2.570Q14.300-2.951 14.634-3.192Q14.968-3.432 15.401-3.432Q15.956-3.432 16.357-3.033Q16.757-2.635 16.954-2.049Q17.151-1.463 17.151-0.912Q17.151-0.358 16.954 0.230Q16.757 0.818 16.357 1.217Q15.956 1.615 15.401 1.615M15.401 1.057Q15.702 1.057 15.919 0.840Q16.136 0.623 16.263 0.295Q16.390-0.033 16.450-0.379Q16.511-0.725 16.511-1.006Q16.511-1.256 16.448-1.582Q16.386-1.908 16.255-2.199Q16.124-2.490 15.911-2.680Q15.698-2.869 15.401-2.869Q15.026-2.869 14.775-2.557Q14.523-2.244 14.405-1.811Q14.288-1.377 14.288-1.006Q14.288-0.608 14.401-0.127Q14.515 0.353 14.763 0.705Q15.011 1.057 15.401 1.057M19.648 1.615Q19.214 1.615 18.882 1.377Q18.550 1.139 18.329 0.750Q18.108 0.361 18.001-0.076Q17.894-0.514 17.894-0.912Q17.894-1.303 18.003-1.746Q18.112-2.190 18.329-2.570Q18.546-2.951 18.880-3.192Q19.214-3.432 19.648-3.432Q20.202-3.432 20.603-3.033Q21.003-2.635 21.200-2.049Q21.398-1.463 21.398-0.912Q21.398-0.358 21.200 0.230Q21.003 0.818 20.603 1.217Q20.202 1.615 19.648 1.615M19.648 1.057Q19.948 1.057 20.165 0.840Q20.382 0.623 20.509 0.295Q20.636-0.033 20.696-0.379Q20.757-0.725 20.757-1.006Q20.757-1.256 20.694-1.582Q20.632-1.908 20.501-2.199Q20.370-2.490 20.157-2.680Q19.944-2.869 19.648-2.869Q19.273-2.869 19.021-2.557Q18.769-2.244 18.651-1.811Q18.534-1.377 18.534-1.006Q18.534-0.608 18.648-0.127Q18.761 0.353 19.009 0.705Q19.257 1.057 19.648 1.057\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-32.157-11.267H24.75v-19.917h-56.906Z\"\u002F>\u003Cg transform=\"translate(-12.75 -20.318)\">\u003Cpath d=\"M-1.583 1.615Q-2.017 1.615-2.349 1.377Q-2.681 1.139-2.901 0.750Q-3.122 0.361-3.229-0.076Q-3.337-0.514-3.337-0.912Q-3.337-1.303-3.227-1.746Q-3.118-2.190-2.901-2.570Q-2.684-2.951-2.350-3.192Q-2.017-3.432-1.583-3.432Q-1.028-3.432-0.628-3.033Q-0.227-2.635-0.030-2.049Q0.167-1.463 0.167-0.912Q0.167-0.358-0.030 0.230Q-0.227 0.818-0.628 1.217Q-1.028 1.615-1.583 1.615M-1.583 1.057Q-1.282 1.057-1.065 0.840Q-0.849 0.623-0.722 0.295Q-0.595-0.033-0.534-0.379Q-0.474-0.725-0.474-1.006Q-0.474-1.256-0.536-1.582Q-0.599-1.908-0.729-2.199Q-0.860-2.490-1.073-2.680Q-1.286-2.869-1.583-2.869Q-1.958-2.869-2.210-2.557Q-2.462-2.244-2.579-1.811Q-2.696-1.377-2.696-1.006Q-2.696-0.608-2.583-0.127Q-2.470 0.353-2.222 0.705Q-1.974 1.057-1.583 1.057M0.800 1.299L0.800 1.209Q0.839 1.002 1.046 0.978L1.452 0.978L2.382-0.240L1.511-1.350L1.093-1.350Q0.898-1.369 0.847-1.592L0.847-1.678Q0.898-1.889 1.093-1.912L2.253-1.912Q2.452-1.889 2.503-1.678L2.503-1.592Q2.452-1.373 2.253-1.350L2.144-1.350L2.640-0.693L3.116-1.350L2.999-1.350Q2.800-1.373 2.749-1.592L2.749-1.678Q2.800-1.889 2.999-1.912L4.159-1.912Q4.355-1.893 4.405-1.678L4.405-1.592Q4.355-1.373 4.159-1.350L3.749-1.350L2.901-0.240L3.862 0.978L4.269 0.978Q4.468 1.002 4.519 1.209L4.519 1.299Q4.480 1.514 4.269 1.537L3.116 1.537Q2.909 1.514 2.870 1.299L2.870 1.209Q2.909 1.002 3.116 0.978L3.245 0.978L2.640 0.123L2.054 0.978L2.198 0.978Q2.405 1.002 2.444 1.209L2.444 1.299Q2.405 1.514 2.198 1.537L1.046 1.537Q0.851 1.517 0.800 1.299M5.644 1.299L5.644 1.209Q5.694 1.002 5.894 0.978L6.710 0.978L6.710-2.205Q6.331-1.897 5.878-1.897Q5.648-1.897 5.597-2.127L5.597-2.217Q5.648-2.432 5.843-2.455Q6.171-2.455 6.425-2.693Q6.679-2.932 6.819-3.279Q6.890-3.408 7.046-3.432L7.101-3.432Q7.296-3.412 7.347-3.197L7.347 0.978L8.163 0.978Q8.362 1.002 8.413 1.209L8.413 1.299Q8.362 1.514 8.163 1.537L5.894 1.537Q5.694 1.514 5.644 1.299M9.890 1.299L9.890 1.209Q9.941 1.002 10.140 0.978L10.956 0.978L10.956-2.205Q10.577-1.897 10.124-1.897Q9.894-1.897 9.843-2.127L9.843-2.217Q9.894-2.432 10.089-2.455Q10.417-2.455 10.671-2.693Q10.925-2.932 11.066-3.279Q11.136-3.408 11.292-3.432L11.347-3.432Q11.542-3.412 11.593-3.197L11.593 0.978L12.409 0.978Q12.608 1.002 12.659 1.209L12.659 1.299Q12.608 1.514 12.409 1.537L10.140 1.537Q9.941 1.514 9.890 1.299M14.136 1.299L14.136 1.209Q14.187 1.002 14.386 0.978L15.202 0.978L15.202-2.205Q14.823-1.897 14.370-1.897Q14.140-1.897 14.089-2.127L14.089-2.217Q14.140-2.432 14.335-2.455Q14.663-2.455 14.917-2.693Q15.171-2.932 15.312-3.279Q15.382-3.408 15.538-3.432L15.593-3.432Q15.788-3.412 15.839-3.197L15.839 0.978L16.655 0.978Q16.855 1.002 16.905 1.209L16.905 1.299Q16.855 1.514 16.655 1.537L14.386 1.537Q14.187 1.514 14.136 1.299M18.382 1.299L18.382 1.209Q18.433 1.002 18.632 0.978L19.448 0.978L19.448-2.205Q19.069-1.897 18.616-1.897Q18.386-1.897 18.335-2.127L18.335-2.217Q18.386-2.432 18.581-2.455Q18.909-2.455 19.163-2.693Q19.417-2.932 19.558-3.279Q19.628-3.408 19.784-3.432L19.839-3.432Q20.034-3.412 20.085-3.197L20.085 0.978L20.901 0.978Q21.101 1.002 21.151 1.209L21.151 1.299Q21.101 1.514 20.901 1.537L18.632 1.537Q18.433 1.514 18.382 1.299\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M-32.157 11.495H24.75V-8.422h-56.906Z\"\u002F>\u003Cg transform=\"translate(-8.5 2.444)\">\u003Cpath d=\"M-1.583 1.615Q-2.017 1.615-2.349 1.377Q-2.681 1.139-2.901 0.750Q-3.122 0.361-3.229-0.076Q-3.337-0.514-3.337-0.912Q-3.337-1.303-3.227-1.746Q-3.118-2.190-2.901-2.570Q-2.684-2.951-2.350-3.192Q-2.017-3.432-1.583-3.432Q-1.028-3.432-0.628-3.033Q-0.227-2.635-0.030-2.049Q0.167-1.463 0.167-0.912Q0.167-0.358-0.030 0.230Q-0.227 0.818-0.628 1.217Q-1.028 1.615-1.583 1.615M-1.583 1.057Q-1.282 1.057-1.065 0.840Q-0.849 0.623-0.722 0.295Q-0.595-0.033-0.534-0.379Q-0.474-0.725-0.474-1.006Q-0.474-1.256-0.536-1.582Q-0.599-1.908-0.729-2.199Q-0.860-2.490-1.073-2.680Q-1.286-2.869-1.583-2.869Q-1.958-2.869-2.210-2.557Q-2.462-2.244-2.579-1.811Q-2.696-1.377-2.696-1.006Q-2.696-0.608-2.583-0.127Q-2.470 0.353-2.222 0.705Q-1.974 1.057-1.583 1.057M0.800 1.299L0.800 1.209Q0.839 1.002 1.046 0.978L1.452 0.978L2.382-0.240L1.511-1.350L1.093-1.350Q0.898-1.369 0.847-1.592L0.847-1.678Q0.898-1.889 1.093-1.912L2.253-1.912Q2.452-1.889 2.503-1.678L2.503-1.592Q2.452-1.373 2.253-1.350L2.144-1.350L2.640-0.693L3.116-1.350L2.999-1.350Q2.800-1.373 2.749-1.592L2.749-1.678Q2.800-1.889 2.999-1.912L4.159-1.912Q4.355-1.893 4.405-1.678L4.405-1.592Q4.355-1.373 4.159-1.350L3.749-1.350L2.901-0.240L3.862 0.978L4.269 0.978Q4.468 1.002 4.519 1.209L4.519 1.299Q4.480 1.514 4.269 1.537L3.116 1.537Q2.909 1.514 2.870 1.299L2.870 1.209Q2.909 1.002 3.116 0.978L3.245 0.978L2.640 0.123L2.054 0.978L2.198 0.978Q2.405 1.002 2.444 1.209L2.444 1.299Q2.405 1.514 2.198 1.537L1.046 1.537Q0.851 1.517 0.800 1.299M5.214 1.299L5.214 1.224Q5.245 1.057 5.347 1.010L6.636-0.057Q6.968-0.334 7.150-0.486Q7.331-0.639 7.526-0.859Q7.722-1.080 7.843-1.330Q7.964-1.580 7.964-1.846Q7.964-2.170 7.788-2.404Q7.612-2.639 7.333-2.754Q7.054-2.869 6.733-2.869Q6.476-2.869 6.247-2.746Q6.019-2.623 5.917-2.408Q6.019-2.276 6.019-2.127Q6.019-1.967 5.900-1.844Q5.780-1.721 5.620-1.721Q5.444-1.721 5.329-1.846Q5.214-1.971 5.214-2.143Q5.214-2.436 5.349-2.678Q5.483-2.920 5.722-3.092Q5.960-3.264 6.228-3.348Q6.495-3.432 6.788-3.432Q7.269-3.432 7.685-3.242Q8.101-3.053 8.353-2.692Q8.605-2.330 8.605-1.846Q8.605-1.502 8.472-1.199Q8.339-0.897 8.114-0.637Q7.890-0.377 7.581-0.115Q7.273 0.146 7.062 0.322L6.253 0.978L7.964 0.978L7.964 0.834Q8.015 0.623 8.214 0.599L8.355 0.599Q8.554 0.619 8.605 0.834L8.605 1.299Q8.554 1.514 8.355 1.537L5.460 1.537Q5.265 1.517 5.214 1.299M9.265 1.299L9.265 1.209Q9.323 0.998 9.515 0.978L9.737 0.978L10.691-3.205Q10.714-3.322 10.810-3.397Q10.905-3.471 11.019-3.471L11.292-3.471Q11.405-3.471 11.501-3.395Q11.597-3.318 11.620-3.205L12.569 0.978L12.796 0.978Q13.003 1.002 13.042 1.209L13.042 1.299Q12.991 1.514 12.796 1.537L11.714 1.537Q11.519 1.514 11.468 1.299L11.468 1.209Q11.519 1.002 11.714 0.978L11.913 0.978Q11.784 0.412 11.761 0.330L10.546 0.330Q10.503 0.514 10.394 0.978L10.593 0.978Q10.792 1.002 10.843 1.209L10.843 1.299Q10.792 1.514 10.593 1.537L9.515 1.537Q9.308 1.514 9.265 1.299M10.667-0.233L11.644-0.233Q11.163-2.365 11.163-2.709L11.155-2.709Q11.155-2.526 11.015-1.842Q10.874-1.158 10.667-0.233\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-32.157 34.258H24.75V14.34h-56.906Z\"\u002F>\u003Cg transform=\"translate(-6.375 23.3)\">\u003Cpath d=\"M-2.138 0.978Q-2.138 0.756-1.972 0.590Q-1.806 0.424-1.575 0.424Q-1.427 0.424-1.300 0.502Q-1.173 0.580-1.099 0.705Q-1.024 0.830-1.024 0.978Q-1.024 1.205-1.190 1.371Q-1.356 1.537-1.575 1.537Q-1.802 1.537-1.970 1.369Q-2.138 1.201-2.138 0.978M2.108 0.978Q2.108 0.756 2.275 0.590Q2.441 0.424 2.671 0.424Q2.819 0.424 2.946 0.502Q3.073 0.580 3.148 0.705Q3.222 0.830 3.222 0.978Q3.222 1.205 3.056 1.371Q2.890 1.537 2.671 1.537Q2.444 1.537 2.276 1.369Q2.108 1.201 2.108 0.978M6.355 0.978Q6.355 0.756 6.521 0.590Q6.687 0.424 6.917 0.424Q7.066 0.424 7.192 0.502Q7.319 0.580 7.394 0.705Q7.468 0.830 7.468 0.978Q7.468 1.205 7.302 1.371Q7.136 1.537 6.917 1.537Q6.691 1.537 6.523 1.369Q6.355 1.201 6.355 0.978\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.566 -43.386)\">\u003Cpath d=\"M-1.848 1.605Q-2.227 1.605-2.518 1.397Q-2.808 1.188-3.002 0.848Q-3.195 0.508-3.289 0.125Q-3.383-0.257-3.383-0.606Q-3.383-0.948-3.287-1.336Q-3.191-1.724-3.002-2.057Q-2.812-2.390-2.520-2.600Q-2.227-2.811-1.848-2.811Q-1.363-2.811-1.012-2.462Q-0.662-2.113-0.489-1.601Q-0.317-1.088-0.317-0.606Q-0.317-0.121-0.489 0.394Q-0.662 0.908-1.012 1.257Q-1.363 1.605-1.848 1.605M-1.848 1.117Q-1.585 1.117-1.395 0.927Q-1.205 0.737-1.094 0.450Q-0.983 0.163-0.930-0.140Q-0.877-0.442-0.877-0.688Q-0.877-0.907-0.932-1.192Q-0.987-1.478-1.101-1.732Q-1.216-1.987-1.402-2.153Q-1.588-2.318-1.848-2.318Q-2.176-2.318-2.397-2.045Q-2.617-1.772-2.720-1.392Q-2.822-1.013-2.822-0.688Q-2.822-0.339-2.723 0.081Q-2.624 0.501-2.407 0.809Q-2.190 1.117-1.848 1.117M0.237 1.329L0.237 1.250Q0.271 1.069 0.452 1.048L0.808 1.048L1.621-0.018L0.859-0.989L0.493-0.989Q0.322-1.006 0.278-1.201L0.278-1.276Q0.322-1.461 0.493-1.481L1.508-1.481Q1.683-1.461 1.727-1.276L1.727-1.201Q1.683-1.009 1.508-0.989L1.413-0.989L1.847-0.415L2.264-0.989L2.161-0.989Q1.987-1.009 1.942-1.201L1.942-1.276Q1.987-1.461 2.161-1.481L3.176-1.481Q3.347-1.464 3.392-1.276L3.392-1.201Q3.347-1.009 3.176-0.989L2.817-0.989L2.076-0.018L2.917 1.048L3.272 1.048Q3.446 1.069 3.491 1.250L3.491 1.329Q3.457 1.516 3.272 1.537L2.264 1.537Q2.083 1.516 2.048 1.329L2.048 1.250Q2.083 1.069 2.264 1.048L2.377 1.048L1.847 0.300L1.334 1.048L1.461 1.048Q1.642 1.069 1.676 1.250L1.676 1.329Q1.642 1.516 1.461 1.537L0.452 1.537Q0.281 1.520 0.237 1.329M4.475 1.329L4.475 1.250Q4.520 1.069 4.694 1.048L5.408 1.048L5.408-1.737Q5.077-1.467 4.680-1.467Q4.479-1.467 4.434-1.669L4.434-1.748Q4.479-1.936 4.650-1.956Q4.937-1.956 5.159-2.165Q5.381-2.373 5.504-2.677Q5.566-2.790 5.702-2.811L5.750-2.811Q5.921-2.794 5.965-2.606L5.965 1.048L6.680 1.048Q6.854 1.069 6.899 1.250L6.899 1.329Q6.854 1.516 6.680 1.537L4.694 1.537Q4.520 1.516 4.475 1.329M9.298 1.605Q8.919 1.605 8.628 1.397Q8.338 1.188 8.144 0.848Q7.951 0.508 7.857 0.125Q7.763-0.257 7.763-0.606Q7.763-0.948 7.859-1.336Q7.955-1.724 8.144-2.057Q8.334-2.390 8.626-2.600Q8.919-2.811 9.298-2.811Q9.783-2.811 10.134-2.462Q10.484-2.113 10.657-1.601Q10.829-1.088 10.829-0.606Q10.829-0.121 10.657 0.394Q10.484 0.908 10.134 1.257Q9.783 1.605 9.298 1.605M9.298 1.117Q9.561 1.117 9.751 0.927Q9.941 0.737 10.052 0.450Q10.163 0.163 10.216-0.140Q10.269-0.442 10.269-0.688Q10.269-0.907 10.214-1.192Q10.159-1.478 10.045-1.732Q9.930-1.987 9.744-2.153Q9.558-2.318 9.298-2.318Q8.970-2.318 8.749-2.045Q8.529-1.772 8.426-1.392Q8.324-1.013 8.324-0.688Q8.324-0.339 8.423 0.081Q8.522 0.501 8.739 0.809Q8.956 1.117 9.298 1.117M13.013 1.605Q12.634 1.605 12.343 1.397Q12.053 1.188 11.860 0.848Q11.667 0.508 11.573 0.125Q11.479-0.257 11.479-0.606Q11.479-0.948 11.574-1.336Q11.670-1.724 11.860-2.057Q12.049-2.390 12.342-2.600Q12.634-2.811 13.013-2.811Q13.499-2.811 13.849-2.462Q14.199-2.113 14.372-1.601Q14.545-1.088 14.545-0.606Q14.545-0.121 14.372 0.394Q14.199 0.908 13.849 1.257Q13.499 1.605 13.013 1.605M13.013 1.117Q13.276 1.117 13.466 0.927Q13.656 0.737 13.767 0.450Q13.878 0.163 13.931-0.140Q13.984-0.442 13.984-0.688Q13.984-0.907 13.929-1.192Q13.875-1.478 13.760-1.732Q13.646-1.987 13.459-2.153Q13.273-2.318 13.013-2.318Q12.685-2.318 12.465-2.045Q12.244-1.772 12.142-1.392Q12.039-1.013 12.039-0.688Q12.039-0.339 12.138 0.081Q12.237 0.501 12.454 0.809Q12.671 1.117 13.013 1.117M16.729 1.605Q16.349 1.605 16.059 1.397Q15.768 1.188 15.575 0.848Q15.382 0.508 15.288 0.125Q15.194-0.257 15.194-0.606Q15.194-0.948 15.290-1.336Q15.385-1.724 15.575-2.057Q15.765-2.390 16.057-2.600Q16.349-2.811 16.729-2.811Q17.214-2.811 17.564-2.462Q17.915-2.113 18.087-1.601Q18.260-1.088 18.260-0.606Q18.260-0.121 18.087 0.394Q17.915 0.908 17.564 1.257Q17.214 1.605 16.729 1.605M16.729 1.117Q16.992 1.117 17.181 0.927Q17.371 0.737 17.482 0.450Q17.593 0.163 17.646-0.140Q17.699-0.442 17.699-0.688Q17.699-0.907 17.645-1.192Q17.590-1.478 17.475-1.732Q17.361-1.987 17.175-2.153Q16.988-2.318 16.729-2.318Q16.400-2.318 16.180-2.045Q15.960-1.772 15.857-1.392Q15.754-1.013 15.754-0.688Q15.754-0.339 15.854 0.081Q15.953 0.501 16.170 0.809Q16.387 1.117 16.729 1.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.566 -20.623)\">\u003Cpath d=\"M-1.848 1.605Q-2.227 1.605-2.518 1.397Q-2.808 1.188-3.002 0.848Q-3.195 0.508-3.289 0.125Q-3.383-0.257-3.383-0.606Q-3.383-0.948-3.287-1.336Q-3.191-1.724-3.002-2.057Q-2.812-2.390-2.520-2.600Q-2.227-2.811-1.848-2.811Q-1.363-2.811-1.012-2.462Q-0.662-2.113-0.489-1.601Q-0.317-1.088-0.317-0.606Q-0.317-0.121-0.489 0.394Q-0.662 0.908-1.012 1.257Q-1.363 1.605-1.848 1.605M-1.848 1.117Q-1.585 1.117-1.395 0.927Q-1.205 0.737-1.094 0.450Q-0.983 0.163-0.930-0.140Q-0.877-0.442-0.877-0.688Q-0.877-0.907-0.932-1.192Q-0.987-1.478-1.101-1.732Q-1.216-1.987-1.402-2.153Q-1.588-2.318-1.848-2.318Q-2.176-2.318-2.397-2.045Q-2.617-1.772-2.720-1.392Q-2.822-1.013-2.822-0.688Q-2.822-0.339-2.723 0.081Q-2.624 0.501-2.407 0.809Q-2.190 1.117-1.848 1.117M0.237 1.329L0.237 1.250Q0.271 1.069 0.452 1.048L0.808 1.048L1.621-0.018L0.859-0.989L0.493-0.989Q0.322-1.006 0.278-1.201L0.278-1.276Q0.322-1.461 0.493-1.481L1.508-1.481Q1.683-1.461 1.727-1.276L1.727-1.201Q1.683-1.009 1.508-0.989L1.413-0.989L1.847-0.415L2.264-0.989L2.161-0.989Q1.987-1.009 1.942-1.201L1.942-1.276Q1.987-1.461 2.161-1.481L3.176-1.481Q3.347-1.464 3.392-1.276L3.392-1.201Q3.347-1.009 3.176-0.989L2.817-0.989L2.076-0.018L2.917 1.048L3.272 1.048Q3.446 1.069 3.491 1.250L3.491 1.329Q3.457 1.516 3.272 1.537L2.264 1.537Q2.083 1.516 2.048 1.329L2.048 1.250Q2.083 1.069 2.264 1.048L2.377 1.048L1.847 0.300L1.334 1.048L1.461 1.048Q1.642 1.069 1.676 1.250L1.676 1.329Q1.642 1.516 1.461 1.537L0.452 1.537Q0.281 1.520 0.237 1.329M4.475 1.329L4.475 1.250Q4.520 1.069 4.694 1.048L5.408 1.048L5.408-1.737Q5.077-1.467 4.680-1.467Q4.479-1.467 4.434-1.669L4.434-1.748Q4.479-1.936 4.650-1.956Q4.937-1.956 5.159-2.165Q5.381-2.373 5.504-2.677Q5.566-2.790 5.702-2.811L5.750-2.811Q5.921-2.794 5.965-2.606L5.965 1.048L6.680 1.048Q6.854 1.069 6.899 1.250L6.899 1.329Q6.854 1.516 6.680 1.537L4.694 1.537Q4.520 1.516 4.475 1.329M9.298 1.605Q8.919 1.605 8.628 1.397Q8.338 1.188 8.144 0.848Q7.951 0.508 7.857 0.125Q7.763-0.257 7.763-0.606Q7.763-0.948 7.859-1.336Q7.955-1.724 8.144-2.057Q8.334-2.390 8.626-2.600Q8.919-2.811 9.298-2.811Q9.783-2.811 10.134-2.462Q10.484-2.113 10.657-1.601Q10.829-1.088 10.829-0.606Q10.829-0.121 10.657 0.394Q10.484 0.908 10.134 1.257Q9.783 1.605 9.298 1.605M9.298 1.117Q9.561 1.117 9.751 0.927Q9.941 0.737 10.052 0.450Q10.163 0.163 10.216-0.140Q10.269-0.442 10.269-0.688Q10.269-0.907 10.214-1.192Q10.159-1.478 10.045-1.732Q9.930-1.987 9.744-2.153Q9.558-2.318 9.298-2.318Q8.970-2.318 8.749-2.045Q8.529-1.772 8.426-1.392Q8.324-1.013 8.324-0.688Q8.324-0.339 8.423 0.081Q8.522 0.501 8.739 0.809Q8.956 1.117 9.298 1.117M13.013 1.605Q12.634 1.605 12.343 1.397Q12.053 1.188 11.860 0.848Q11.667 0.508 11.573 0.125Q11.479-0.257 11.479-0.606Q11.479-0.948 11.574-1.336Q11.670-1.724 11.860-2.057Q12.049-2.390 12.342-2.600Q12.634-2.811 13.013-2.811Q13.499-2.811 13.849-2.462Q14.199-2.113 14.372-1.601Q14.545-1.088 14.545-0.606Q14.545-0.121 14.372 0.394Q14.199 0.908 13.849 1.257Q13.499 1.605 13.013 1.605M13.013 1.117Q13.276 1.117 13.466 0.927Q13.656 0.737 13.767 0.450Q13.878 0.163 13.931-0.140Q13.984-0.442 13.984-0.688Q13.984-0.907 13.929-1.192Q13.875-1.478 13.760-1.732Q13.646-1.987 13.459-2.153Q13.273-2.318 13.013-2.318Q12.685-2.318 12.465-2.045Q12.244-1.772 12.142-1.392Q12.039-1.013 12.039-0.688Q12.039-0.339 12.138 0.081Q12.237 0.501 12.454 0.809Q12.671 1.117 13.013 1.117M15.180 0.300Q15.180 0.050 15.317-0.172Q15.454-0.394 15.672-0.546Q15.891-0.698 16.141-0.774Q15.932-0.838 15.734-0.963Q15.536-1.088 15.411-1.271Q15.286-1.454 15.286-1.669Q15.286-2.018 15.502-2.276Q15.717-2.534 16.052-2.672Q16.387-2.811 16.729-2.811Q17.070-2.811 17.405-2.672Q17.740-2.534 17.956-2.272Q18.171-2.011 18.171-1.669Q18.171-1.454 18.046-1.273Q17.921-1.091 17.723-0.965Q17.525-0.838 17.317-0.774Q17.713-0.654 17.993-0.369Q18.274-0.083 18.274 0.300Q18.274 0.683 18.048 0.983Q17.822 1.284 17.463 1.445Q17.105 1.605 16.729 1.605Q16.353 1.605 15.994 1.446Q15.635 1.287 15.408 0.987Q15.180 0.686 15.180 0.300M15.741 0.300Q15.741 0.539 15.886 0.727Q16.031 0.915 16.260 1.016Q16.489 1.117 16.729 1.117Q16.968 1.117 17.195 1.016Q17.422 0.915 17.568 0.725Q17.713 0.536 17.713 0.300Q17.713 0.057 17.568-0.133Q17.422-0.322 17.195-0.425Q16.968-0.527 16.729-0.527Q16.489-0.527 16.260-0.425Q16.031-0.322 15.886-0.134Q15.741 0.054 15.741 0.300M15.847-1.669Q15.847-1.461 15.983-1.314Q16.120-1.167 16.327-1.093Q16.534-1.020 16.729-1.020Q16.920-1.020 17.129-1.093Q17.337-1.167 17.474-1.315Q17.610-1.464 17.610-1.669Q17.610-1.874 17.474-2.023Q17.337-2.171 17.129-2.245Q16.920-2.318 16.729-2.318Q16.534-2.318 16.327-2.245Q16.120-2.171 15.983-2.025Q15.847-1.878 15.847-1.669\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-58.566 2.139)\">\u003Cpath d=\"M-1.848 1.605Q-2.227 1.605-2.518 1.397Q-2.808 1.188-3.002 0.848Q-3.195 0.508-3.289 0.125Q-3.383-0.257-3.383-0.606Q-3.383-0.948-3.287-1.336Q-3.191-1.724-3.002-2.057Q-2.812-2.390-2.520-2.600Q-2.227-2.811-1.848-2.811Q-1.363-2.811-1.012-2.462Q-0.662-2.113-0.489-1.601Q-0.317-1.088-0.317-0.606Q-0.317-0.121-0.489 0.394Q-0.662 0.908-1.012 1.257Q-1.363 1.605-1.848 1.605M-1.848 1.117Q-1.585 1.117-1.395 0.927Q-1.205 0.737-1.094 0.450Q-0.983 0.163-0.930-0.140Q-0.877-0.442-0.877-0.688Q-0.877-0.907-0.932-1.192Q-0.987-1.478-1.101-1.732Q-1.216-1.987-1.402-2.153Q-1.588-2.318-1.848-2.318Q-2.176-2.318-2.397-2.045Q-2.617-1.772-2.720-1.392Q-2.822-1.013-2.822-0.688Q-2.822-0.339-2.723 0.081Q-2.624 0.501-2.407 0.809Q-2.190 1.117-1.848 1.117M0.237 1.329L0.237 1.250Q0.271 1.069 0.452 1.048L0.808 1.048L1.621-0.018L0.859-0.989L0.493-0.989Q0.322-1.006 0.278-1.201L0.278-1.276Q0.322-1.461 0.493-1.481L1.508-1.481Q1.683-1.461 1.727-1.276L1.727-1.201Q1.683-1.009 1.508-0.989L1.413-0.989L1.847-0.415L2.264-0.989L2.161-0.989Q1.987-1.009 1.942-1.201L1.942-1.276Q1.987-1.461 2.161-1.481L3.176-1.481Q3.347-1.464 3.392-1.276L3.392-1.201Q3.347-1.009 3.176-0.989L2.817-0.989L2.076-0.018L2.917 1.048L3.272 1.048Q3.446 1.069 3.491 1.250L3.491 1.329Q3.457 1.516 3.272 1.537L2.264 1.537Q2.083 1.516 2.048 1.329L2.048 1.250Q2.083 1.069 2.264 1.048L2.377 1.048L1.847 0.300L1.334 1.048L1.461 1.048Q1.642 1.069 1.676 1.250L1.676 1.329Q1.642 1.516 1.461 1.537L0.452 1.537Q0.281 1.520 0.237 1.329M4.475 1.329L4.475 1.250Q4.520 1.069 4.694 1.048L5.408 1.048L5.408-1.737Q5.077-1.467 4.680-1.467Q4.479-1.467 4.434-1.669L4.434-1.748Q4.479-1.936 4.650-1.956Q4.937-1.956 5.159-2.165Q5.381-2.373 5.504-2.677Q5.566-2.790 5.702-2.811L5.750-2.811Q5.921-2.794 5.965-2.606L5.965 1.048L6.680 1.048Q6.854 1.069 6.899 1.250L6.899 1.329Q6.854 1.516 6.680 1.537L4.694 1.537Q4.520 1.516 4.475 1.329M9.298 1.605Q8.919 1.605 8.628 1.397Q8.338 1.188 8.144 0.848Q7.951 0.508 7.857 0.125Q7.763-0.257 7.763-0.606Q7.763-0.948 7.859-1.336Q7.955-1.724 8.144-2.057Q8.334-2.390 8.626-2.600Q8.919-2.811 9.298-2.811Q9.783-2.811 10.134-2.462Q10.484-2.113 10.657-1.601Q10.829-1.088 10.829-0.606Q10.829-0.121 10.657 0.394Q10.484 0.908 10.134 1.257Q9.783 1.605 9.298 1.605M9.298 1.117Q9.561 1.117 9.751 0.927Q9.941 0.737 10.052 0.450Q10.163 0.163 10.216-0.140Q10.269-0.442 10.269-0.688Q10.269-0.907 10.214-1.192Q10.159-1.478 10.045-1.732Q9.930-1.987 9.744-2.153Q9.558-2.318 9.298-2.318Q8.970-2.318 8.749-2.045Q8.529-1.772 8.426-1.392Q8.324-1.013 8.324-0.688Q8.324-0.339 8.423 0.081Q8.522 0.501 8.739 0.809Q8.956 1.117 9.298 1.117M11.906 1.329L11.906 1.250Q11.950 1.069 12.125 1.048L12.839 1.048L12.839-1.737Q12.507-1.467 12.111-1.467Q11.909-1.467 11.865-1.669L11.865-1.748Q11.909-1.936 12.080-1.956Q12.367-1.956 12.589-2.165Q12.812-2.373 12.935-2.677Q12.996-2.790 13.133-2.811L13.181-2.811Q13.352-2.794 13.396-2.606L13.396 1.048L14.110 1.048Q14.285 1.069 14.329 1.250L14.329 1.329Q14.285 1.516 14.110 1.537L12.125 1.537Q11.950 1.516 11.906 1.329M16.729 1.605Q16.349 1.605 16.059 1.397Q15.768 1.188 15.575 0.848Q15.382 0.508 15.288 0.125Q15.194-0.257 15.194-0.606Q15.194-0.948 15.290-1.336Q15.385-1.724 15.575-2.057Q15.765-2.390 16.057-2.600Q16.349-2.811 16.729-2.811Q17.214-2.811 17.564-2.462Q17.915-2.113 18.087-1.601Q18.260-1.088 18.260-0.606Q18.260-0.121 18.087 0.394Q17.915 0.908 17.564 1.257Q17.214 1.605 16.729 1.605M16.729 1.117Q16.992 1.117 17.181 0.927Q17.371 0.737 17.482 0.450Q17.593 0.163 17.646-0.140Q17.699-0.442 17.699-0.688Q17.699-0.907 17.645-1.192Q17.590-1.478 17.475-1.732Q17.361-1.987 17.175-2.153Q16.988-2.318 16.729-2.318Q16.400-2.318 16.180-2.045Q15.960-1.772 15.857-1.392Q15.754-1.013 15.754-0.688Q15.754-0.339 15.854 0.081Q15.953 0.501 16.170 0.809Q16.387 1.117 16.729 1.117\" 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(105.408 -28.13)\">\u003Cpath d=\"M-3.431-7.998Q-3.431-8.319-3.306-8.608Q-3.181-8.897-2.955-9.120Q-2.730-9.344-2.434-9.464Q-2.139-9.584-1.821-9.584Q-1.493-9.584-1.231-9.484Q-0.970-9.385-0.794-9.203Q-0.618-9.020-0.524-8.762Q-0.430-8.504-0.430-8.172Q-0.430-8.080-0.512-8.059L-2.767-8.059L-2.767-7.998Q-2.767-7.410-2.484-7.027Q-2.200-6.644-1.633-6.644Q-1.311-6.644-1.043-6.837Q-0.775-7.030-0.686-7.345Q-0.679-7.386-0.604-7.400L-0.512-7.400Q-0.430-7.376-0.430-7.304Q-0.430-7.297-0.436-7.270Q-0.549-6.873-0.920-6.634Q-1.291-6.395-1.715-6.395Q-2.152-6.395-2.552-6.603Q-2.952-6.812-3.191-7.179Q-3.431-7.546-3.431-7.998M-2.761-8.268L-0.946-8.268Q-0.946-8.545-1.043-8.797Q-1.141-9.050-1.339-9.206Q-1.537-9.361-1.821-9.361Q-2.098-9.361-2.311-9.203Q-2.525-9.044-2.643-8.789Q-2.761-8.534-2.761-8.268M1.956-6.463L0.223-6.463L0.223-6.743Q0.449-6.743 0.598-6.777Q0.746-6.812 0.746-6.952L0.746-9.201L0.158-9.201L0.158-9.481L0.746-9.481L0.746-10.298Q0.746-10.616 0.924-10.864Q1.102-11.111 1.392-11.252Q1.683-11.392 1.994-11.392Q2.250-11.392 2.453-11.250Q2.657-11.108 2.657-10.865Q2.657-10.729 2.558-10.630Q2.459-10.530 2.322-10.530Q2.185-10.530 2.086-10.630Q1.987-10.729 1.987-10.865Q1.987-11.046 2.127-11.139Q2.048-11.166 1.949-11.166Q1.741-11.166 1.587-11.033Q1.433-10.900 1.353-10.696Q1.273-10.493 1.273-10.284L1.273-9.481L2.161-9.481L2.161-9.201L1.300-9.201L1.300-6.952Q1.300-6.743 1.956-6.743\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M5.002-6.463L3.269-6.463L3.269-6.743Q3.495-6.743 3.644-6.777Q3.792-6.812 3.792-6.952L3.792-9.201L3.204-9.201L3.204-9.481L3.792-9.481L3.792-10.298Q3.792-10.616 3.970-10.864Q4.148-11.111 4.438-11.252Q4.729-11.392 5.040-11.392Q5.296-11.392 5.500-11.250Q5.703-11.108 5.703-10.865Q5.703-10.729 5.604-10.630Q5.505-10.530 5.368-10.530Q5.231-10.530 5.132-10.630Q5.033-10.729 5.033-10.865Q5.033-11.046 5.173-11.139Q5.095-11.166 4.995-11.166Q4.787-11.166 4.633-11.033Q4.479-10.900 4.399-10.696Q4.319-10.493 4.319-10.284L4.319-9.481L5.207-9.481L5.207-9.201L4.346-9.201L4.346-6.952Q4.346-6.743 5.002-6.743L5.002-6.463M6.082-6.883Q6.082-7.051 6.205-7.174Q6.328-7.297 6.503-7.297Q6.670-7.297 6.793-7.174Q6.916-7.051 6.916-6.883Q6.916-6.709 6.793-6.586Q6.670-6.463 6.503-6.463Q6.328-6.463 6.205-6.586Q6.082-6.709 6.082-6.883\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M11.561-7.191Q11.561-7.523 11.784-7.750Q12.008-7.977 12.352-8.105Q12.695-8.234 13.068-8.286Q13.440-8.339 13.745-8.339L13.745-8.592Q13.745-8.797 13.637-8.977Q13.529-9.156 13.348-9.259Q13.167-9.361 12.959-9.361Q12.552-9.361 12.316-9.269Q12.405-9.232 12.451-9.148Q12.497-9.064 12.497-8.962Q12.497-8.866 12.451-8.787Q12.405-8.709 12.324-8.664Q12.244-8.620 12.155-8.620Q12.005-8.620 11.904-8.717Q11.803-8.815 11.803-8.962Q11.803-9.584 12.959-9.584Q13.170-9.584 13.420-9.520Q13.669-9.457 13.871-9.338Q14.073-9.218 14.199-9.033Q14.326-8.849 14.326-8.606L14.326-7.030Q14.326-6.914 14.387-6.818Q14.449-6.723 14.562-6.723Q14.671-6.723 14.736-6.817Q14.801-6.911 14.801-7.030L14.801-7.478L15.067-7.478L15.067-7.030Q15.067-6.760 14.840-6.595Q14.613-6.429 14.333-6.429Q14.124-6.429 13.987-6.583Q13.851-6.736 13.827-6.952Q13.680-6.685 13.398-6.540Q13.116-6.395 12.791-6.395Q12.514-6.395 12.230-6.470Q11.947-6.545 11.754-6.724Q11.561-6.904 11.561-7.191M12.176-7.191Q12.176-7.017 12.277-6.887Q12.377-6.757 12.533-6.687Q12.688-6.617 12.853-6.617Q13.071-6.617 13.280-6.714Q13.488-6.812 13.616-6.993Q13.745-7.174 13.745-7.400L13.745-8.128Q13.420-8.128 13.054-8.037Q12.688-7.946 12.432-7.734Q12.176-7.523 12.176-7.191M15.484-7.974Q15.484-8.312 15.625-8.603Q15.765-8.893 16.009-9.107Q16.253-9.320 16.558-9.435Q16.862-9.549 17.187-9.549Q17.457-9.549 17.720-9.450Q17.983-9.351 18.174-9.173L18.174-10.571Q18.174-10.841 18.067-10.903Q17.959-10.964 17.648-10.964L17.648-11.245L18.725-11.320L18.725-7.136Q18.725-6.948 18.779-6.865Q18.834-6.781 18.935-6.762Q19.036-6.743 19.251-6.743L19.251-6.463L18.144-6.395L18.144-6.812Q17.727-6.395 17.101-6.395Q16.670-6.395 16.298-6.607Q15.925-6.818 15.705-7.179Q15.484-7.540 15.484-7.974M17.159-6.617Q17.368-6.617 17.554-6.689Q17.740-6.760 17.894-6.897Q18.048-7.034 18.144-7.212L18.144-8.821Q18.058-8.968 17.913-9.088Q17.768-9.208 17.598-9.267Q17.429-9.327 17.248-9.327Q16.688-9.327 16.419-8.938Q16.151-8.548 16.151-7.967Q16.151-7.396 16.385-7.006Q16.619-6.617 17.159-6.617M19.900-7.974Q19.900-8.312 20.041-8.603Q20.181-8.893 20.425-9.107Q20.669-9.320 20.974-9.435Q21.278-9.549 21.603-9.549Q21.873-9.549 22.136-9.450Q22.399-9.351 22.590-9.173L22.590-10.571Q22.590-10.841 22.483-10.903Q22.375-10.964 22.064-10.964L22.064-11.245L23.141-11.320L23.141-7.136Q23.141-6.948 23.195-6.865Q23.250-6.781 23.351-6.762Q23.452-6.743 23.667-6.743L23.667-6.463L22.560-6.395L22.560-6.812Q22.143-6.395 21.517-6.395Q21.086-6.395 20.714-6.607Q20.341-6.818 20.121-7.179Q19.900-7.540 19.900-7.974M21.575-6.617Q21.784-6.617 21.970-6.689Q22.156-6.760 22.310-6.897Q22.464-7.034 22.560-7.212L22.560-8.821Q22.474-8.968 22.329-9.088Q22.184-9.208 22.014-9.267Q21.845-9.327 21.664-9.327Q21.104-9.327 20.835-8.938Q20.567-8.548 20.567-7.967Q20.567-7.396 20.801-7.006Q21.035-6.617 21.575-6.617M26.066-6.463L24.330-6.463L24.330-6.743Q24.559-6.743 24.708-6.777Q24.856-6.812 24.856-6.952L24.856-8.801Q24.856-9.071 24.749-9.132Q24.641-9.194 24.330-9.194L24.330-9.474L25.359-9.549L25.359-8.842Q25.489-9.150 25.731-9.349Q25.974-9.549 26.292-9.549Q26.511-9.549 26.682-9.425Q26.853-9.300 26.853-9.088Q26.853-8.951 26.753-8.852Q26.654-8.753 26.521-8.753Q26.384-8.753 26.285-8.852Q26.186-8.951 26.186-9.088Q26.186-9.228 26.285-9.327Q25.995-9.327 25.795-9.131Q25.595-8.934 25.502-8.640Q25.410-8.346 25.410-8.066L25.410-6.952Q25.410-6.743 26.066-6.743L26.066-6.463M27.396-7.998Q27.396-8.319 27.521-8.608Q27.646-8.897 27.871-9.120Q28.097-9.344 28.392-9.464Q28.688-9.584 29.006-9.584Q29.334-9.584 29.595-9.484Q29.857-9.385 30.033-9.203Q30.209-9.020 30.303-8.762Q30.397-8.504 30.397-8.172Q30.397-8.080 30.315-8.059L28.059-8.059L28.059-7.998Q28.059-7.410 28.343-7.027Q28.626-6.644 29.194-6.644Q29.515-6.644 29.783-6.837Q30.052-7.030 30.141-7.345Q30.147-7.386 30.223-7.400L30.315-7.400Q30.397-7.376 30.397-7.304Q30.397-7.297 30.390-7.270Q30.277-6.873 29.907-6.634Q29.536-6.395 29.112-6.395Q28.674-6.395 28.274-6.603Q27.875-6.812 27.635-7.179Q27.396-7.546 27.396-7.998M28.066-8.268L29.881-8.268Q29.881-8.545 29.783-8.797Q29.686-9.050 29.488-9.206Q29.290-9.361 29.006-9.361Q28.729-9.361 28.515-9.203Q28.302-9.044 28.184-8.789Q28.066-8.534 28.066-8.268M30.985-6.470L30.985-7.533Q30.985-7.557 31.012-7.584Q31.040-7.611 31.063-7.611L31.173-7.611Q31.238-7.611 31.251-7.553Q31.347-7.119 31.593-6.868Q31.839-6.617 32.253-6.617Q32.595-6.617 32.848-6.750Q33.101-6.883 33.101-7.191Q33.101-7.348 33.007-7.463Q32.913-7.577 32.774-7.646Q32.636-7.714 32.468-7.752L31.887-7.851Q31.532-7.919 31.258-8.140Q30.985-8.360 30.985-8.702Q30.985-8.951 31.096-9.126Q31.207-9.300 31.393-9.399Q31.580-9.498 31.795-9.541Q32.010-9.584 32.253-9.584Q32.667-9.584 32.947-9.402L33.162-9.577Q33.172-9.580 33.179-9.582Q33.186-9.584 33.196-9.584L33.248-9.584Q33.275-9.584 33.299-9.560Q33.323-9.536 33.323-9.508L33.323-8.661Q33.323-8.640 33.299-8.613Q33.275-8.586 33.248-8.586L33.135-8.586Q33.107-8.586 33.082-8.611Q33.056-8.637 33.056-8.661Q33.056-8.897 32.950-9.061Q32.844-9.225 32.661-9.307Q32.479-9.389 32.246-9.389Q31.918-9.389 31.662-9.286Q31.405-9.184 31.405-8.907Q31.405-8.712 31.588-8.603Q31.771-8.493 32-8.452L32.574-8.346Q32.820-8.298 33.034-8.170Q33.248-8.042 33.384-7.839Q33.521-7.635 33.521-7.386Q33.521-6.873 33.155-6.634Q32.790-6.395 32.253-6.395Q31.757-6.395 31.426-6.689L31.159-6.415Q31.139-6.395 31.111-6.395L31.063-6.395Q31.040-6.395 31.012-6.422Q30.985-6.449 30.985-6.470M34.150-6.470L34.150-7.533Q34.150-7.557 34.177-7.584Q34.205-7.611 34.229-7.611L34.338-7.611Q34.403-7.611 34.417-7.553Q34.512-7.119 34.758-6.868Q35.004-6.617 35.418-6.617Q35.760-6.617 36.013-6.750Q36.266-6.883 36.266-7.191Q36.266-7.348 36.172-7.463Q36.078-7.577 35.939-7.646Q35.801-7.714 35.633-7.752L35.052-7.851Q34.697-7.919 34.423-8.140Q34.150-8.360 34.150-8.702Q34.150-8.951 34.261-9.126Q34.372-9.300 34.558-9.399Q34.745-9.498 34.960-9.541Q35.175-9.584 35.418-9.584Q35.832-9.584 36.112-9.402L36.327-9.577Q36.337-9.580 36.344-9.582Q36.351-9.584 36.361-9.584L36.413-9.584Q36.440-9.584 36.464-9.560Q36.488-9.536 36.488-9.508L36.488-8.661Q36.488-8.640 36.464-8.613Q36.440-8.586 36.413-8.586L36.300-8.586Q36.272-8.586 36.247-8.611Q36.221-8.637 36.221-8.661Q36.221-8.897 36.115-9.061Q36.009-9.225 35.826-9.307Q35.644-9.389 35.411-9.389Q35.083-9.389 34.827-9.286Q34.570-9.184 34.570-8.907Q34.570-8.712 34.753-8.603Q34.936-8.493 35.165-8.452L35.739-8.346Q35.985-8.298 36.199-8.170Q36.413-8.042 36.549-7.839Q36.686-7.635 36.686-7.386Q36.686-6.873 36.320-6.634Q35.955-6.395 35.418-6.395Q34.922-6.395 34.591-6.689L34.324-6.415Q34.304-6.395 34.276-6.395L34.229-6.395Q34.205-6.395 34.177-6.422Q34.150-6.449 34.150-6.470\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M45.201-7.270L40.368-7.270Q40.300-7.280 40.254-7.326Q40.208-7.372 40.208-7.444Q40.208-7.509 40.254-7.555Q40.300-7.601 40.368-7.611L45.201-7.611Q45.270-7.601 45.316-7.555Q45.362-7.509 45.362-7.444Q45.362-7.372 45.316-7.326Q45.270-7.280 45.201-7.270M45.201-8.808L40.368-8.808Q40.300-8.818 40.254-8.864Q40.208-8.910 40.208-8.982Q40.208-9.126 40.368-9.150L45.201-9.150Q45.362-9.126 45.362-8.982Q45.362-8.910 45.316-8.864Q45.270-8.818 45.201-8.808\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M49.673-6.463L49.406-6.463L49.406-10.571Q49.406-10.841 49.299-10.903Q49.191-10.964 48.880-10.964L48.880-11.245L49.960-11.320L49.960-9.150Q50.169-9.341 50.454-9.445Q50.739-9.549 51.037-9.549Q51.355-9.549 51.652-9.428Q51.949-9.307 52.172-9.091Q52.394-8.876 52.520-8.591Q52.647-8.305 52.647-7.974Q52.647-7.529 52.407-7.165Q52.168-6.801 51.775-6.598Q51.382-6.395 50.938-6.395Q50.743-6.395 50.553-6.451Q50.364-6.507 50.203-6.612Q50.042-6.716 49.902-6.877L49.673-6.463M49.988-8.808L49.988-7.191Q50.124-6.931 50.365-6.774Q50.606-6.617 50.883-6.617Q51.177-6.617 51.389-6.724Q51.601-6.832 51.734-7.024Q51.867-7.215 51.926-7.454Q51.984-7.693 51.984-7.974Q51.984-8.333 51.890-8.637Q51.796-8.941 51.568-9.134Q51.341-9.327 50.975-9.327Q50.675-9.327 50.408-9.191Q50.141-9.054 49.988-8.808M53.341-7.191Q53.341-7.523 53.564-7.750Q53.788-7.977 54.132-8.105Q54.475-8.234 54.848-8.286Q55.220-8.339 55.525-8.339L55.525-8.592Q55.525-8.797 55.417-8.977Q55.309-9.156 55.128-9.259Q54.947-9.361 54.739-9.361Q54.332-9.361 54.096-9.269Q54.185-9.232 54.231-9.148Q54.277-9.064 54.277-8.962Q54.277-8.866 54.231-8.787Q54.185-8.709 54.104-8.664Q54.024-8.620 53.935-8.620Q53.785-8.620 53.684-8.717Q53.583-8.815 53.583-8.962Q53.583-9.584 54.739-9.584Q54.950-9.584 55.200-9.520Q55.449-9.457 55.651-9.338Q55.853-9.218 55.979-9.033Q56.106-8.849 56.106-8.606L56.106-7.030Q56.106-6.914 56.167-6.818Q56.229-6.723 56.342-6.723Q56.451-6.723 56.516-6.817Q56.581-6.911 56.581-7.030L56.581-7.478L56.847-7.478L56.847-7.030Q56.847-6.760 56.620-6.595Q56.393-6.429 56.113-6.429Q55.904-6.429 55.767-6.583Q55.631-6.736 55.607-6.952Q55.460-6.685 55.178-6.540Q54.896-6.395 54.571-6.395Q54.294-6.395 54.010-6.470Q53.727-6.545 53.534-6.724Q53.341-6.904 53.341-7.191M53.956-7.191Q53.956-7.017 54.057-6.887Q54.157-6.757 54.313-6.687Q54.469-6.617 54.633-6.617Q54.851-6.617 55.060-6.714Q55.268-6.812 55.396-6.993Q55.525-7.174 55.525-7.400L55.525-8.128Q55.200-8.128 54.834-8.037Q54.469-7.946 54.212-7.734Q53.956-7.523 53.956-7.191M57.264-6.470L57.264-7.533Q57.264-7.557 57.292-7.584Q57.319-7.611 57.343-7.611L57.452-7.611Q57.517-7.611 57.531-7.553Q57.627-7.119 57.873-6.868Q58.119-6.617 58.532-6.617Q58.874-6.617 59.127-6.750Q59.380-6.883 59.380-7.191Q59.380-7.348 59.286-7.463Q59.192-7.577 59.054-7.646Q58.915-7.714 58.748-7.752L58.167-7.851Q57.811-7.919 57.538-8.140Q57.264-8.360 57.264-8.702Q57.264-8.951 57.375-9.126Q57.487-9.300 57.673-9.399Q57.859-9.498 58.074-9.541Q58.290-9.584 58.532-9.584Q58.946-9.584 59.226-9.402L59.442-9.577Q59.452-9.580 59.459-9.582Q59.466-9.584 59.476-9.584L59.527-9.584Q59.554-9.584 59.578-9.560Q59.602-9.536 59.602-9.508L59.602-8.661Q59.602-8.640 59.578-8.613Q59.554-8.586 59.527-8.586L59.414-8.586Q59.387-8.586 59.361-8.611Q59.336-8.637 59.336-8.661Q59.336-8.897 59.230-9.061Q59.124-9.225 58.941-9.307Q58.758-9.389 58.526-9.389Q58.198-9.389 57.941-9.286Q57.685-9.184 57.685-8.907Q57.685-8.712 57.868-8.603Q58.051-8.493 58.280-8.452L58.854-8.346Q59.100-8.298 59.313-8.170Q59.527-8.042 59.664-7.839Q59.801-7.635 59.801-7.386Q59.801-6.873 59.435-6.634Q59.069-6.395 58.532-6.395Q58.037-6.395 57.705-6.689L57.439-6.415Q57.418-6.395 57.391-6.395L57.343-6.395Q57.319-6.395 57.292-6.422Q57.264-6.449 57.264-6.470M60.388-7.998Q60.388-8.319 60.513-8.608Q60.638-8.897 60.864-9.120Q61.089-9.344 61.385-9.464Q61.680-9.584 61.998-9.584Q62.326-9.584 62.588-9.484Q62.849-9.385 63.025-9.203Q63.201-9.020 63.295-8.762Q63.389-8.504 63.389-8.172Q63.389-8.080 63.307-8.059L61.052-8.059L61.052-7.998Q61.052-7.410 61.335-7.027Q61.619-6.644 62.186-6.644Q62.508-6.644 62.776-6.837Q63.044-7.030 63.133-7.345Q63.140-7.386 63.215-7.400L63.307-7.400Q63.389-7.376 63.389-7.304Q63.389-7.297 63.383-7.270Q63.270-6.873 62.899-6.634Q62.528-6.395 62.104-6.395Q61.667-6.395 61.267-6.603Q60.867-6.812 60.628-7.179Q60.388-7.546 60.388-7.998M61.058-8.268L62.873-8.268Q62.873-8.545 62.776-8.797Q62.678-9.050 62.480-9.206Q62.282-9.361 61.998-9.361Q61.721-9.361 61.508-9.203Q61.294-9.044 61.176-8.789Q61.058-8.534 61.058-8.268\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M69.271-5.783L69.271-8.039L67.022-8.039Q66.954-8.049 66.908-8.095Q66.862-8.141 66.862-8.213Q66.862-8.357 67.022-8.380L69.271-8.380L69.271-10.636Q69.282-10.705 69.328-10.751Q69.374-10.797 69.446-10.797Q69.589-10.797 69.613-10.636L69.613-8.380L71.855-8.380Q72.016-8.357 72.016-8.213Q72.016-8.141 71.970-8.095Q71.924-8.049 71.855-8.039L69.613-8.039L69.613-5.783Q69.589-5.622 69.446-5.622Q69.374-5.622 69.328-5.668Q69.282-5.714 69.271-5.783\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M78.533-6.463L75.648-6.463L75.648-6.665Q75.648-6.695 75.675-6.723L76.923-7.940Q76.995-8.015 77.037-8.057Q77.080-8.100 77.159-8.179Q77.572-8.592 77.803-8.950Q78.034-9.307 78.034-9.731Q78.034-9.963 77.955-10.166Q77.876-10.370 77.735-10.520Q77.593-10.671 77.398-10.751Q77.203-10.831 76.971-10.831Q76.660-10.831 76.402-10.672Q76.144-10.513 76.014-10.236L76.034-10.236Q76.202-10.236 76.309-10.125Q76.417-10.014 76.417-9.850Q76.417-9.693 76.308-9.580Q76.198-9.467 76.034-9.467Q75.874-9.467 75.761-9.580Q75.648-9.693 75.648-9.850Q75.648-10.226 75.856-10.513Q76.065-10.800 76.400-10.956Q76.735-11.111 77.090-11.111Q77.514-11.111 77.894-10.953Q78.273-10.794 78.507-10.477Q78.741-10.161 78.741-9.731Q78.741-9.420 78.601-9.151Q78.461-8.883 78.256-8.678Q78.051-8.473 77.688-8.191Q77.326-7.909 77.217-7.813L76.362-7.085L77.005-7.085Q77.268-7.085 77.557-7.087Q77.846-7.088 78.064-7.097Q78.283-7.106 78.300-7.123Q78.362-7.188 78.399-7.355Q78.437-7.523 78.475-7.765L78.741-7.765\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M83.384-6.463L82.061-6.463L82.061-6.743Q82.622-6.743 83.001-7.143L83.716-7.940L82.803-8.989Q82.666-9.136 82.518-9.168Q82.369-9.201 82.102-9.201L82.102-9.481L83.603-9.481L83.603-9.201Q83.411-9.201 83.411-9.067Q83.411-9.037 83.442-8.989L84.037-8.305L84.478-8.801Q84.591-8.931 84.591-9.047Q84.591-9.109 84.553-9.155Q84.515-9.201 84.457-9.201L84.457-9.481L85.773-9.481L85.773-9.201Q85.213-9.201 84.833-8.801L84.211-8.100L85.206-6.952Q85.305-6.853 85.406-6.808Q85.507-6.764 85.618-6.754Q85.729-6.743 85.907-6.743L85.907-6.463L84.413-6.463L84.413-6.743Q84.478-6.743 84.538-6.777Q84.597-6.812 84.597-6.877Q84.597-6.924 84.567-6.952L83.890-7.738L83.357-7.143Q83.244-7.013 83.244-6.897Q83.244-6.832 83.285-6.788Q83.326-6.743 83.384-6.743\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M89.162-7.540Q89.162-7.981 89.465-8.302Q89.767-8.623 90.219-8.815L89.979-8.955Q89.709-9.115 89.543-9.373Q89.378-9.631 89.378-9.929Q89.378-10.281 89.583-10.553Q89.788-10.824 90.109-10.968Q90.430-11.111 90.772-11.111Q91.094-11.111 91.417-10.995Q91.740-10.879 91.951-10.638Q92.163-10.397 92.163-10.062Q92.163-9.700 91.919-9.437Q91.675-9.173 91.295-8.996L91.695-8.760Q91.890-8.647 92.049-8.478Q92.208-8.309 92.295-8.100Q92.382-7.892 92.382-7.659Q92.382-7.256 92.148-6.952Q91.914-6.648 91.540-6.485Q91.165-6.323 90.772-6.323Q90.386-6.323 90.017-6.460Q89.648-6.596 89.405-6.873Q89.162-7.150 89.162-7.540M89.610-7.540Q89.610-7.253 89.779-7.030Q89.949-6.808 90.217-6.692Q90.485-6.576 90.772-6.576Q91.210-6.576 91.572-6.793Q91.934-7.010 91.934-7.417Q91.934-7.618 91.806-7.796Q91.678-7.974 91.500-8.073L90.478-8.668Q90.239-8.558 90.041-8.392Q89.843-8.227 89.726-8.011Q89.610-7.796 89.610-7.540M90.133-9.669L91.053-9.136Q91.360-9.296 91.562-9.529Q91.763-9.761 91.763-10.062Q91.763-10.301 91.618-10.491Q91.473-10.681 91.241-10.780Q91.008-10.879 90.772-10.879Q90.550-10.879 90.321-10.809Q90.092-10.739 89.935-10.582Q89.778-10.424 89.778-10.195Q89.778-9.881 90.133-9.669\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M5.820 0.730L0.987 0.730Q0.919 0.720 0.873 0.674Q0.827 0.628 0.827 0.556Q0.827 0.491 0.873 0.445Q0.919 0.399 0.987 0.389L5.820 0.389Q5.889 0.399 5.935 0.445Q5.981 0.491 5.981 0.556Q5.981 0.628 5.935 0.674Q5.889 0.720 5.820 0.730M5.820-0.808L0.987-0.808Q0.919-0.818 0.873-0.864Q0.827-0.910 0.827-0.982Q0.827-1.126 0.987-1.150L5.820-1.150Q5.981-1.126 5.981-0.982Q5.981-0.910 5.935-0.864Q5.889-0.818 5.820-0.808\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M10.610 1.605Q10.231 1.605 9.940 1.397Q9.650 1.188 9.456 0.848Q9.263 0.508 9.169 0.125Q9.075-0.257 9.075-0.606Q9.075-0.948 9.171-1.336Q9.267-1.724 9.456-2.057Q9.646-2.390 9.938-2.600Q10.231-2.811 10.610-2.811Q11.095-2.811 11.446-2.462Q11.796-2.113 11.969-1.601Q12.141-1.088 12.141-0.606Q12.141-0.121 11.969 0.394Q11.796 0.908 11.446 1.257Q11.095 1.605 10.610 1.605M10.610 1.117Q10.873 1.117 11.063 0.927Q11.253 0.737 11.364 0.450Q11.475 0.163 11.528-0.140Q11.581-0.442 11.581-0.688Q11.581-0.907 11.526-1.192Q11.471-1.478 11.357-1.732Q11.242-1.987 11.056-2.153Q10.870-2.318 10.610-2.318Q10.282-2.318 10.061-2.045Q9.841-1.772 9.738-1.392Q9.636-1.013 9.636-0.688Q9.636-0.339 9.735 0.081Q9.834 0.501 10.051 0.809Q10.268 1.117 10.610 1.117M12.695 1.329L12.695 1.250Q12.729 1.069 12.910 1.048L13.266 1.048L14.079-0.018L13.317-0.989L12.951-0.989Q12.780-1.006 12.736-1.201L12.736-1.276Q12.780-1.461 12.951-1.481L13.966-1.481Q14.141-1.461 14.185-1.276L14.185-1.201Q14.141-1.009 13.966-0.989L13.871-0.989L14.305-0.415L14.722-0.989L14.619-0.989Q14.445-1.009 14.400-1.201L14.400-1.276Q14.445-1.461 14.619-1.481L15.634-1.481Q15.805-1.464 15.850-1.276L15.850-1.201Q15.805-1.009 15.634-0.989L15.275-0.989L14.534-0.018L15.375 1.048L15.730 1.048Q15.904 1.069 15.949 1.250L15.949 1.329Q15.915 1.516 15.730 1.537L14.722 1.537Q14.541 1.516 14.506 1.329L14.506 1.250Q14.541 1.069 14.722 1.048L14.835 1.048L14.305 0.300L13.792 1.048L13.919 1.048Q14.100 1.069 14.134 1.250L14.134 1.329Q14.100 1.516 13.919 1.537L12.910 1.537Q12.739 1.520 12.695 1.329M16.933 1.329L16.933 1.250Q16.978 1.069 17.152 1.048L17.866 1.048L17.866-1.737Q17.535-1.467 17.138-1.467Q16.937-1.467 16.892-1.669L16.892-1.748Q16.937-1.936 17.108-1.956Q17.395-1.956 17.617-2.165Q17.839-2.373 17.962-2.677Q18.024-2.790 18.160-2.811L18.208-2.811Q18.379-2.794 18.423-2.606L18.423 1.048L19.138 1.048Q19.312 1.069 19.357 1.250L19.357 1.329Q19.312 1.516 19.138 1.537L17.152 1.537Q16.978 1.516 16.933 1.329M21.756 1.605Q21.377 1.605 21.086 1.397Q20.796 1.188 20.602 0.848Q20.409 0.508 20.315 0.125Q20.221-0.257 20.221-0.606Q20.221-0.948 20.317-1.336Q20.413-1.724 20.602-2.057Q20.792-2.390 21.084-2.600Q21.377-2.811 21.756-2.811Q22.241-2.811 22.592-2.462Q22.942-2.113 23.115-1.601Q23.287-1.088 23.287-0.606Q23.287-0.121 23.115 0.394Q22.942 0.908 22.592 1.257Q22.241 1.605 21.756 1.605M21.756 1.117Q22.019 1.117 22.209 0.927Q22.399 0.737 22.510 0.450Q22.621 0.163 22.674-0.140Q22.727-0.442 22.727-0.688Q22.727-0.907 22.672-1.192Q22.617-1.478 22.503-1.732Q22.388-1.987 22.202-2.153Q22.016-2.318 21.756-2.318Q21.428-2.318 21.207-2.045Q20.987-1.772 20.884-1.392Q20.782-1.013 20.782-0.688Q20.782-0.339 20.881 0.081Q20.980 0.501 21.197 0.809Q21.414 1.117 21.756 1.117M25.471 1.605Q25.092 1.605 24.801 1.397Q24.511 1.188 24.318 0.848Q24.125 0.508 24.031 0.125Q23.937-0.257 23.937-0.606Q23.937-0.948 24.032-1.336Q24.128-1.724 24.318-2.057Q24.507-2.390 24.800-2.600Q25.092-2.811 25.471-2.811Q25.957-2.811 26.307-2.462Q26.657-2.113 26.830-1.601Q27.003-1.088 27.003-0.606Q27.003-0.121 26.830 0.394Q26.657 0.908 26.307 1.257Q25.957 1.605 25.471 1.605M25.471 1.117Q25.734 1.117 25.924 0.927Q26.114 0.737 26.225 0.450Q26.336 0.163 26.389-0.140Q26.442-0.442 26.442-0.688Q26.442-0.907 26.387-1.192Q26.333-1.478 26.218-1.732Q26.104-1.987 25.917-2.153Q25.731-2.318 25.471-2.318Q25.143-2.318 24.923-2.045Q24.702-1.772 24.600-1.392Q24.497-1.013 24.497-0.688Q24.497-0.339 24.596 0.081Q24.695 0.501 24.912 0.809Q25.129 1.117 25.471 1.117M29.187 1.605Q28.807 1.605 28.517 1.397Q28.226 1.188 28.033 0.848Q27.840 0.508 27.746 0.125Q27.652-0.257 27.652-0.606Q27.652-0.948 27.748-1.336Q27.843-1.724 28.033-2.057Q28.223-2.390 28.515-2.600Q28.807-2.811 29.187-2.811Q29.672-2.811 30.022-2.462Q30.373-2.113 30.545-1.601Q30.718-1.088 30.718-0.606Q30.718-0.121 30.545 0.394Q30.373 0.908 30.022 1.257Q29.672 1.605 29.187 1.605M29.187 1.117Q29.450 1.117 29.639 0.927Q29.829 0.737 29.940 0.450Q30.051 0.163 30.104-0.140Q30.157-0.442 30.157-0.688Q30.157-0.907 30.103-1.192Q30.048-1.478 29.933-1.732Q29.819-1.987 29.633-2.153Q29.446-2.318 29.187-2.318Q28.858-2.318 28.638-2.045Q28.418-1.772 28.315-1.392Q28.212-1.013 28.212-0.688Q28.212-0.339 28.312 0.081Q28.411 0.501 28.628 0.809Q28.845 1.117 29.187 1.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M35.785 2.217L35.785-0.039L33.536-0.039Q33.468-0.049 33.422-0.095Q33.376-0.141 33.376-0.213Q33.376-0.357 33.536-0.380L35.785-0.380L35.785-2.636Q35.796-2.705 35.842-2.751Q35.888-2.797 35.960-2.797Q36.103-2.797 36.127-2.636L36.127-0.380L38.369-0.380Q38.530-0.357 38.530-0.213Q38.530-0.141 38.484-0.095Q38.438-0.049 38.369-0.039L36.127-0.039L36.127 2.217Q36.103 2.378 35.960 2.378Q35.888 2.378 35.842 2.332Q35.796 2.286 35.785 2.217\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M42.703 1.605Q42.324 1.605 42.033 1.397Q41.743 1.188 41.549 0.848Q41.356 0.508 41.262 0.125Q41.168-0.257 41.168-0.606Q41.168-0.948 41.264-1.336Q41.360-1.724 41.549-2.057Q41.739-2.390 42.031-2.600Q42.324-2.811 42.703-2.811Q43.188-2.811 43.539-2.462Q43.889-2.113 44.062-1.601Q44.234-1.088 44.234-0.606Q44.234-0.121 44.062 0.394Q43.889 0.908 43.539 1.257Q43.188 1.605 42.703 1.605M42.703 1.117Q42.966 1.117 43.156 0.927Q43.346 0.737 43.457 0.450Q43.568 0.163 43.621-0.140Q43.674-0.442 43.674-0.688Q43.674-0.907 43.619-1.192Q43.564-1.478 43.450-1.732Q43.335-1.987 43.149-2.153Q42.963-2.318 42.703-2.318Q42.375-2.318 42.154-2.045Q41.934-1.772 41.831-1.392Q41.729-1.013 41.729-0.688Q41.729-0.339 41.828 0.081Q41.927 0.501 42.144 0.809Q42.361 1.117 42.703 1.117M44.788 1.329L44.788 1.250Q44.822 1.069 45.003 1.048L45.359 1.048L46.172-0.018L45.410-0.989L45.044-0.989Q44.873-1.006 44.829-1.201L44.829-1.276Q44.873-1.461 45.044-1.481L46.059-1.481Q46.234-1.461 46.278-1.276L46.278-1.201Q46.234-1.009 46.059-0.989L45.964-0.989L46.398-0.415L46.815-0.989L46.712-0.989Q46.538-1.009 46.493-1.201L46.493-1.276Q46.538-1.461 46.712-1.481L47.727-1.481Q47.898-1.464 47.943-1.276L47.943-1.201Q47.898-1.009 47.727-0.989L47.368-0.989L46.627-0.018L47.468 1.048L47.823 1.048Q47.997 1.069 48.042 1.250L48.042 1.329Q48.008 1.516 47.823 1.537L46.815 1.537Q46.634 1.516 46.599 1.329L46.599 1.250Q46.634 1.069 46.815 1.048L46.928 1.048L46.398 0.300L45.885 1.048L46.012 1.048Q46.193 1.069 46.227 1.250L46.227 1.329Q46.193 1.516 46.012 1.537L45.003 1.537Q44.832 1.520 44.788 1.329M49.026 1.329L49.026 1.250Q49.071 1.069 49.245 1.048L49.959 1.048L49.959-1.737Q49.628-1.467 49.231-1.467Q49.030-1.467 48.985-1.669L48.985-1.748Q49.030-1.936 49.201-1.956Q49.488-1.956 49.710-2.165Q49.932-2.373 50.055-2.677Q50.117-2.790 50.253-2.811L50.301-2.811Q50.472-2.794 50.516-2.606L50.516 1.048L51.231 1.048Q51.405 1.069 51.450 1.250L51.450 1.329Q51.405 1.516 51.231 1.537L49.245 1.537Q49.071 1.516 49.026 1.329M53.849 1.605Q53.470 1.605 53.179 1.397Q52.889 1.188 52.695 0.848Q52.502 0.508 52.408 0.125Q52.314-0.257 52.314-0.606Q52.314-0.948 52.410-1.336Q52.506-1.724 52.695-2.057Q52.885-2.390 53.177-2.600Q53.470-2.811 53.849-2.811Q54.334-2.811 54.685-2.462Q55.035-2.113 55.208-1.601Q55.380-1.088 55.380-0.606Q55.380-0.121 55.208 0.394Q55.035 0.908 54.685 1.257Q54.334 1.605 53.849 1.605M53.849 1.117Q54.112 1.117 54.302 0.927Q54.492 0.737 54.603 0.450Q54.714 0.163 54.767-0.140Q54.820-0.442 54.820-0.688Q54.820-0.907 54.765-1.192Q54.710-1.478 54.596-1.732Q54.481-1.987 54.295-2.153Q54.109-2.318 53.849-2.318Q53.521-2.318 53.300-2.045Q53.080-1.772 52.977-1.392Q52.875-1.013 52.875-0.688Q52.875-0.339 52.974 0.081Q53.073 0.501 53.290 0.809Q53.507 1.117 53.849 1.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M63.481 0.730L58.648 0.730Q58.580 0.720 58.534 0.674Q58.488 0.628 58.488 0.556Q58.488 0.491 58.534 0.445Q58.580 0.399 58.648 0.389L63.481 0.389Q63.550 0.399 63.596 0.445Q63.642 0.491 63.642 0.556Q63.642 0.628 63.596 0.674Q63.550 0.720 63.481 0.730M63.481-0.808L58.648-0.808Q58.580-0.818 58.534-0.864Q58.488-0.910 58.488-0.982Q58.488-1.126 58.648-1.150L63.481-1.150Q63.642-1.126 63.642-0.982Q63.642-0.910 63.596-0.864Q63.550-0.818 63.481-0.808\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(105.408 -28.13)\">\u003Cpath d=\"M68.270 1.605Q67.891 1.605 67.600 1.397Q67.310 1.188 67.116 0.848Q66.923 0.508 66.829 0.125Q66.735-0.257 66.735-0.606Q66.735-0.948 66.831-1.336Q66.927-1.724 67.116-2.057Q67.306-2.390 67.598-2.600Q67.891-2.811 68.270-2.811Q68.755-2.811 69.106-2.462Q69.456-2.113 69.629-1.601Q69.801-1.088 69.801-0.606Q69.801-0.121 69.629 0.394Q69.456 0.908 69.106 1.257Q68.755 1.605 68.270 1.605M68.270 1.117Q68.533 1.117 68.723 0.927Q68.913 0.737 69.024 0.450Q69.135 0.163 69.188-0.140Q69.241-0.442 69.241-0.688Q69.241-0.907 69.186-1.192Q69.131-1.478 69.017-1.732Q68.902-1.987 68.716-2.153Q68.530-2.318 68.270-2.318Q67.942-2.318 67.721-2.045Q67.501-1.772 67.398-1.392Q67.296-1.013 67.296-0.688Q67.296-0.339 67.395 0.081Q67.494 0.501 67.711 0.809Q67.928 1.117 68.270 1.117M70.355 1.329L70.355 1.250Q70.389 1.069 70.570 1.048L70.926 1.048L71.739-0.018L70.977-0.989L70.611-0.989Q70.440-1.006 70.396-1.201L70.396-1.276Q70.440-1.461 70.611-1.481L71.626-1.481Q71.801-1.461 71.845-1.276L71.845-1.201Q71.801-1.009 71.626-0.989L71.531-0.989L71.965-0.415L72.382-0.989L72.279-0.989Q72.105-1.009 72.060-1.201L72.060-1.276Q72.105-1.461 72.279-1.481L73.294-1.481Q73.465-1.464 73.510-1.276L73.510-1.201Q73.465-1.009 73.294-0.989L72.935-0.989L72.194-0.018L73.035 1.048L73.390 1.048Q73.564 1.069 73.609 1.250L73.609 1.329Q73.575 1.516 73.390 1.537L72.382 1.537Q72.201 1.516 72.166 1.329L72.166 1.250Q72.201 1.069 72.382 1.048L72.495 1.048L71.965 0.300L71.452 1.048L71.579 1.048Q71.760 1.069 71.794 1.250L71.794 1.329Q71.760 1.516 71.579 1.537L70.570 1.537Q70.399 1.520 70.355 1.329M74.593 1.329L74.593 1.250Q74.638 1.069 74.812 1.048L75.526 1.048L75.526-1.737Q75.195-1.467 74.798-1.467Q74.597-1.467 74.552-1.669L74.552-1.748Q74.597-1.936 74.768-1.956Q75.055-1.956 75.277-2.165Q75.499-2.373 75.622-2.677Q75.684-2.790 75.820-2.811L75.868-2.811Q76.039-2.794 76.083-2.606L76.083 1.048L76.798 1.048Q76.972 1.069 77.017 1.250L77.017 1.329Q76.972 1.516 76.798 1.537L74.812 1.537Q74.638 1.516 74.593 1.329M79.416 1.605Q79.037 1.605 78.746 1.397Q78.456 1.188 78.262 0.848Q78.069 0.508 77.975 0.125Q77.881-0.257 77.881-0.606Q77.881-0.948 77.977-1.336Q78.073-1.724 78.262-2.057Q78.452-2.390 78.744-2.600Q79.037-2.811 79.416-2.811Q79.901-2.811 80.252-2.462Q80.602-2.113 80.775-1.601Q80.947-1.088 80.947-0.606Q80.947-0.121 80.775 0.394Q80.602 0.908 80.252 1.257Q79.901 1.605 79.416 1.605M79.416 1.117Q79.679 1.117 79.869 0.927Q80.059 0.737 80.170 0.450Q80.281 0.163 80.334-0.140Q80.387-0.442 80.387-0.688Q80.387-0.907 80.332-1.192Q80.277-1.478 80.163-1.732Q80.048-1.987 79.862-2.153Q79.676-2.318 79.416-2.318Q79.088-2.318 78.867-2.045Q78.647-1.772 78.544-1.392Q78.442-1.013 78.442-0.688Q78.442-0.339 78.541 0.081Q78.640 0.501 78.857 0.809Q79.074 1.117 79.416 1.117M82.024 1.329L82.024 1.250Q82.068 1.069 82.243 1.048L82.957 1.048L82.957-1.737Q82.625-1.467 82.229-1.467Q82.027-1.467 81.983-1.669L81.983-1.748Q82.027-1.936 82.198-1.956Q82.485-1.956 82.707-2.165Q82.930-2.373 83.053-2.677Q83.114-2.790 83.251-2.811L83.299-2.811Q83.470-2.794 83.514-2.606L83.514 1.048L84.228 1.048Q84.403 1.069 84.447 1.250L84.447 1.329Q84.403 1.516 84.228 1.537L82.243 1.537Q82.068 1.516 82.024 1.329M86.847 1.605Q86.467 1.605 86.177 1.397Q85.886 1.188 85.693 0.848Q85.500 0.508 85.406 0.125Q85.312-0.257 85.312-0.606Q85.312-0.948 85.408-1.336Q85.503-1.724 85.693-2.057Q85.883-2.390 86.175-2.600Q86.467-2.811 86.847-2.811Q87.332-2.811 87.682-2.462Q88.033-2.113 88.205-1.601Q88.378-1.088 88.378-0.606Q88.378-0.121 88.205 0.394Q88.033 0.908 87.682 1.257Q87.332 1.605 86.847 1.605M86.847 1.117Q87.110 1.117 87.299 0.927Q87.489 0.737 87.600 0.450Q87.711 0.163 87.764-0.140Q87.817-0.442 87.817-0.688Q87.817-0.907 87.763-1.192Q87.708-1.478 87.593-1.732Q87.479-1.987 87.293-2.153Q87.106-2.318 86.847-2.318Q86.518-2.318 86.298-2.045Q86.078-1.772 85.975-1.392Q85.872-1.013 85.872-0.688Q85.872-0.339 85.972 0.081Q86.071 0.501 86.288 0.809Q86.505 1.117 86.847 1.117\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M149.94-22.226 73.118 1.537h-45.57\"\u002F>\u003Cpath stroke=\"none\" d=\"m24.949 1.537 4.16 2.08-1.56-2.08 1.56-2.08\"\u002F>\u003Cg transform=\"translate(33.492 -3.733)\">\u003Cpath d=\"M-3.390 1.530L-3.390 0.467Q-3.390 0.443-3.362 0.416Q-3.335 0.389-3.311 0.389L-3.202 0.389Q-3.137 0.389-3.123 0.447Q-3.027 0.881-2.781 1.132Q-2.535 1.383-2.121 1.383Q-1.780 1.383-1.527 1.250Q-1.274 1.117-1.274 0.809Q-1.274 0.652-1.368 0.537Q-1.462 0.423-1.600 0.354Q-1.739 0.286-1.906 0.248L-2.487 0.149Q-2.843 0.081-3.116-0.140Q-3.390-0.360-3.390-0.702Q-3.390-0.951-3.278-1.126Q-3.167-1.300-2.981-1.399Q-2.795-1.498-2.579-1.541Q-2.364-1.584-2.121-1.584Q-1.708-1.584-1.428-1.402L-1.212-1.577Q-1.202-1.580-1.195-1.582Q-1.188-1.584-1.178-1.584L-1.127-1.584Q-1.100-1.584-1.076-1.560Q-1.052-1.536-1.052-1.508L-1.052-0.661Q-1.052-0.640-1.076-0.613Q-1.100-0.586-1.127-0.586L-1.240-0.586Q-1.267-0.586-1.293-0.611Q-1.318-0.637-1.318-0.661Q-1.318-0.897-1.424-1.061Q-1.530-1.225-1.713-1.307Q-1.896-1.389-2.128-1.389Q-2.456-1.389-2.713-1.286Q-2.969-1.184-2.969-0.907Q-2.969-0.712-2.786-0.603Q-2.603-0.493-2.374-0.452L-1.800-0.346Q-1.554-0.298-1.340-0.170Q-1.127-0.042-0.990 0.161Q-0.853 0.365-0.853 0.614Q-0.853 1.127-1.219 1.366Q-1.585 1.605-2.121 1.605Q-2.617 1.605-2.949 1.311L-3.215 1.585Q-3.236 1.605-3.263 1.605L-3.311 1.605Q-3.335 1.605-3.362 1.578Q-3.390 1.551-3.390 1.530M-0.266 0.002Q-0.266-0.319-0.141-0.608Q-0.016-0.897 0.210-1.120Q0.435-1.344 0.731-1.464Q1.026-1.584 1.344-1.584Q1.672-1.584 1.934-1.484Q2.195-1.385 2.371-1.203Q2.547-1.020 2.641-0.762Q2.735-0.504 2.735-0.172Q2.735-0.080 2.653-0.059L0.398-0.059L0.398 0.002Q0.398 0.590 0.681 0.973Q0.965 1.356 1.532 1.356Q1.854 1.356 2.122 1.163Q2.390 0.970 2.479 0.655Q2.486 0.614 2.561 0.600L2.653 0.600Q2.735 0.624 2.735 0.696Q2.735 0.703 2.729 0.730Q2.616 1.127 2.245 1.366Q1.874 1.605 1.450 1.605Q1.013 1.605 0.613 1.397Q0.213 1.188-0.026 0.821Q-0.266 0.454-0.266 0.002M0.404-0.268L2.219-0.268Q2.219-0.545 2.122-0.797Q2.025-1.050 1.826-1.206Q1.628-1.361 1.344-1.361Q1.067-1.361 0.854-1.203Q0.640-1.044 0.522-0.789Q0.404-0.534 0.404-0.268M4.991 1.537L3.388 1.537L3.388 1.257Q3.614 1.257 3.763 1.223Q3.911 1.188 3.911 1.048L3.911-2.571Q3.911-2.841 3.804-2.903Q3.696-2.964 3.388-2.964L3.388-3.245L4.465-3.320L4.465 1.048Q4.465 1.185 4.615 1.221Q4.766 1.257 4.991 1.257L4.991 1.537M5.545 0.002Q5.545-0.319 5.670-0.608Q5.795-0.897 6.020-1.120Q6.246-1.344 6.541-1.464Q6.837-1.584 7.155-1.584Q7.483-1.584 7.744-1.484Q8.006-1.385 8.182-1.203Q8.358-1.020 8.452-0.762Q8.546-0.504 8.546-0.172Q8.546-0.080 8.464-0.059L6.208-0.059L6.208 0.002Q6.208 0.590 6.492 0.973Q6.775 1.356 7.343 1.356Q7.664 1.356 7.932 1.163Q8.201 0.970 8.290 0.655Q8.296 0.614 8.372 0.600L8.464 0.600Q8.546 0.624 8.546 0.696Q8.546 0.703 8.539 0.730Q8.426 1.127 8.056 1.366Q7.685 1.605 7.261 1.605Q6.823 1.605 6.423 1.397Q6.024 1.188 5.784 0.821Q5.545 0.454 5.545 0.002M6.215-0.268L8.030-0.268Q8.030-0.545 7.932-0.797Q7.835-1.050 7.637-1.206Q7.439-1.361 7.155-1.361Q6.878-1.361 6.664-1.203Q6.451-1.044 6.333-0.789Q6.215-0.534 6.215-0.268M9.134 0.026Q9.134-0.302 9.269-0.603Q9.404-0.903 9.640-1.124Q9.876-1.344 10.180-1.464Q10.484-1.584 10.809-1.584Q11.315-1.584 11.663-1.481Q12.012-1.379 12.012-1.003Q12.012-0.856 11.914-0.755Q11.817-0.654 11.670-0.654Q11.516-0.654 11.417-0.753Q11.318-0.852 11.318-1.003Q11.318-1.191 11.458-1.283Q11.256-1.334 10.816-1.334Q10.460-1.334 10.231-1.138Q10.002-0.941 9.901-0.632Q9.800-0.322 9.800 0.026Q9.800 0.375 9.927 0.681Q10.053 0.987 10.308 1.171Q10.563 1.356 10.918 1.356Q11.140 1.356 11.325 1.272Q11.509 1.188 11.644 1.033Q11.779 0.877 11.838 0.669Q11.851 0.614 11.906 0.614L12.019 0.614Q12.049 0.614 12.072 0.638Q12.094 0.662 12.094 0.696L12.094 0.717Q12.008 1.004 11.820 1.202Q11.632 1.400 11.368 1.503Q11.103 1.605 10.809 1.605Q10.378 1.605 9.990 1.399Q9.602 1.192 9.368 0.829Q9.134 0.467 9.134 0.026M13.208 0.696L13.208-1.201L12.569-1.201L12.569-1.423Q12.887-1.423 13.104-1.633Q13.321-1.843 13.422-2.153Q13.523-2.462 13.523-2.770L13.789-2.770L13.789-1.481L14.866-1.481L14.866-1.201L13.789-1.201L13.789 0.683Q13.789 0.959 13.893 1.158Q13.998 1.356 14.257 1.356Q14.415 1.356 14.521 1.252Q14.627 1.147 14.676 0.994Q14.726 0.840 14.726 0.683L14.726 0.269L14.992 0.269L14.992 0.696Q14.992 0.922 14.893 1.132Q14.794 1.342 14.609 1.474Q14.425 1.605 14.196 1.605Q13.758 1.605 13.483 1.368Q13.208 1.130 13.208 0.696\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M121.488 28.567h56.905V8.65h-56.905Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(129.561 19.85)\">\u003Cpath d=\"M-2.520 1.803Q-2.520 1.740-2.489 1.697L1.257-3.561Q0.800-3.326 0.233-3.326Q-0.419-3.326-1.024-3.647Q-0.880-3.299-0.880-2.854Q-0.880-2.494-1.001-2.123Q-1.122-1.752-1.372-1.496Q-1.622-1.240-1.985-1.240Q-2.372-1.240-2.655-1.484Q-2.938-1.729-3.085-2.102Q-3.231-2.475-3.231-2.854Q-3.231-3.233-3.085-3.604Q-2.938-3.975-2.655-4.219Q-2.372-4.463-1.985-4.463Q-1.669-4.463-1.399-4.225Q-1.063-3.920-0.634-3.748Q-0.204-3.576 0.233-3.576Q0.726-3.576 1.144-3.789Q1.562-4.002 1.862-4.401Q1.905-4.463 1.999-4.463Q2.073-4.463 2.128-4.408Q2.183-4.354 2.183-4.279Q2.183-4.217 2.151-4.174L-2.192 1.920Q-2.239 1.986-2.337 1.986Q-2.419 1.986-2.470 1.935Q-2.520 1.885-2.520 1.803M-1.985-1.494Q-1.712-1.494-1.524-1.719Q-1.337-1.943-1.249-2.266Q-1.161-2.588-1.161-2.854Q-1.161-3.111-1.249-3.434Q-1.337-3.756-1.524-3.981Q-1.712-4.205-1.985-4.205Q-2.372-4.205-2.515-3.777Q-2.657-3.350-2.657-2.854Q-2.657-2.346-2.517-1.920Q-2.376-1.494-1.985-1.494M1.792 1.986Q1.405 1.986 1.122 1.740Q0.839 1.494 0.691 1.121Q0.542 0.748 0.542 0.369Q0.542 0.096 0.628-0.192Q0.714-0.479 0.868-0.713Q1.023-0.947 1.259-1.094Q1.495-1.240 1.792-1.240Q2.073-1.240 2.280-1.088Q2.487-0.936 2.626-0.693Q2.765-0.451 2.831-0.170Q2.898 0.111 2.898 0.369Q2.898 0.728 2.776 1.101Q2.655 1.474 2.405 1.730Q2.155 1.986 1.792 1.986M1.792 1.728Q2.066 1.728 2.253 1.504Q2.441 1.279 2.528 0.957Q2.616 0.635 2.616 0.369Q2.616 0.111 2.528-0.211Q2.441-0.533 2.253-0.758Q2.066-0.983 1.792-0.983Q1.401-0.983 1.261-0.553Q1.120-0.123 1.120 0.369Q1.120 0.877 1.257 1.303Q1.394 1.728 1.792 1.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(129.561 19.85)\">\u003Cpath d=\"M3.602 1.299L3.602 1.209Q3.660 1.002 3.852 0.978L4.563 0.978L4.563-1.350L3.852-1.350Q3.656-1.373 3.602-1.592L3.602-1.678Q3.660-1.889 3.852-1.912L4.953-1.912Q5.152-1.893 5.203-1.678L5.203-1.350Q5.465-1.635 5.820-1.793Q6.176-1.951 6.563-1.951Q6.856-1.951 7.090-1.817Q7.324-1.682 7.324-1.416Q7.324-1.248 7.215-1.131Q7.106-1.014 6.938-1.014Q6.785-1.014 6.670-1.125Q6.555-1.236 6.555-1.393Q6.180-1.393 5.865-1.192Q5.551-0.990 5.377-0.656Q5.203-0.322 5.203 0.057L5.203 0.978L6.149 0.978Q6.356 1.002 6.395 1.209L6.395 1.299Q6.356 1.514 6.149 1.537L3.852 1.537Q3.660 1.514 3.602 1.299M8.031 0.424Q8.031-0.022 8.445-0.279Q8.859-0.537 9.400-0.637Q9.941-0.736 10.449-0.744Q10.449-0.959 10.315-1.111Q10.180-1.264 9.973-1.340Q9.766-1.416 9.555-1.416Q9.211-1.416 9.051-1.393L9.051-1.334Q9.051-1.166 8.932-1.051Q8.813-0.936 8.649-0.936Q8.473-0.936 8.358-1.059Q8.242-1.182 8.242-1.350Q8.242-1.756 8.623-1.865Q9.004-1.975 9.563-1.975Q9.832-1.975 10.100-1.897Q10.367-1.818 10.592-1.668Q10.816-1.518 10.953-1.297Q11.090-1.076 11.090-0.799L11.090 0.920Q11.090 0.978 11.617 0.978Q11.813 0.998 11.863 1.209L11.863 1.299Q11.813 1.514 11.617 1.537L11.473 1.537Q11.129 1.537 10.900 1.490Q10.672 1.443 10.527 1.256Q10.066 1.576 9.359 1.576Q9.024 1.576 8.719 1.435Q8.414 1.295 8.223 1.033Q8.031 0.771 8.031 0.424M8.672 0.432Q8.672 0.705 8.914 0.861Q9.156 1.017 9.441 1.017Q9.660 1.017 9.893 0.959Q10.125 0.900 10.287 0.762Q10.449 0.623 10.449 0.400L10.449-0.190Q10.168-0.190 9.752-0.133Q9.336-0.076 9.004 0.062Q8.672 0.201 8.672 0.432M12.129 1.299L12.129 1.209Q12.168 1.002 12.375 0.978L12.781 0.978L13.711-0.240L12.840-1.350L12.422-1.350Q12.227-1.369 12.176-1.592L12.176-1.678Q12.227-1.889 12.422-1.912L13.582-1.912Q13.781-1.889 13.832-1.678L13.832-1.592Q13.781-1.373 13.582-1.350L13.473-1.350L13.969-0.693L14.445-1.350L14.328-1.350Q14.129-1.373 14.078-1.592L14.078-1.678Q14.129-1.889 14.328-1.912L15.488-1.912Q15.684-1.893 15.734-1.678L15.734-1.592Q15.684-1.373 15.488-1.350L15.078-1.350L14.231-0.240L15.191 0.978L15.598 0.978Q15.797 1.002 15.848 1.209L15.848 1.299Q15.809 1.514 15.598 1.537L14.445 1.537Q14.238 1.514 14.199 1.299L14.199 1.209Q14.238 1.002 14.445 0.978L14.574 0.978L13.969 0.123L13.383 0.978L13.527 0.978Q13.734 1.002 13.774 1.209L13.774 1.299Q13.734 1.514 13.527 1.537L12.375 1.537Q12.180 1.517 12.129 1.299\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(129.561 19.85)\">\u003Cpath d=\"M24.452 0.560L19.139 0.560Q19.061 0.553 19.012 0.504Q18.964 0.455 18.964 0.377Q18.964 0.307 19.011 0.256Q19.057 0.205 19.139 0.193L24.452 0.193Q24.526 0.205 24.573 0.256Q24.620 0.307 24.620 0.377Q24.620 0.455 24.571 0.504Q24.522 0.553 24.452 0.560M24.452-1.127L19.139-1.127Q19.061-1.135 19.012-1.184Q18.964-1.233 18.964-1.311Q18.964-1.381 19.011-1.432Q19.057-1.483 19.139-1.494L24.452-1.494Q24.526-1.483 24.573-1.432Q24.620-1.381 24.620-1.311Q24.620-1.233 24.571-1.184Q24.522-1.135 24.452-1.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(129.561 19.85)\">\u003Cpath d=\"M29.584 1.615Q29.151 1.615 28.818 1.377Q28.486 1.139 28.266 0.750Q28.045 0.361 27.938-0.076Q27.830-0.514 27.830-0.912Q27.830-1.303 27.940-1.746Q28.049-2.190 28.266-2.570Q28.483-2.951 28.817-3.192Q29.151-3.432 29.584-3.432Q30.139-3.432 30.539-3.033Q30.940-2.635 31.137-2.049Q31.334-1.463 31.334-0.912Q31.334-0.358 31.137 0.230Q30.940 0.818 30.539 1.217Q30.139 1.615 29.584 1.615M29.584 1.057Q29.885 1.057 30.102 0.840Q30.318 0.623 30.445 0.295Q30.572-0.033 30.633-0.379Q30.693-0.725 30.693-1.006Q30.693-1.256 30.631-1.582Q30.568-1.908 30.438-2.199Q30.307-2.490 30.094-2.680Q29.881-2.869 29.584-2.869Q29.209-2.869 28.957-2.557Q28.705-2.244 28.588-1.811Q28.471-1.377 28.471-1.006Q28.471-0.608 28.584-0.127Q28.697 0.353 28.945 0.705Q29.193 1.057 29.584 1.057M31.967 1.299L31.967 1.209Q32.006 1.002 32.213 0.978L32.619 0.978L33.549-0.240L32.678-1.350L32.260-1.350Q32.065-1.369 32.014-1.592L32.014-1.678Q32.065-1.889 32.260-1.912L33.420-1.912Q33.619-1.889 33.670-1.678L33.670-1.592Q33.619-1.373 33.420-1.350L33.311-1.350L33.807-0.693L34.283-1.350L34.166-1.350Q33.967-1.373 33.916-1.592L33.916-1.678Q33.967-1.889 34.166-1.912L35.326-1.912Q35.522-1.893 35.572-1.678L35.572-1.592Q35.522-1.373 35.326-1.350L34.916-1.350L34.068-0.240L35.029 0.978L35.436 0.978Q35.635 1.002 35.686 1.209L35.686 1.299Q35.647 1.514 35.436 1.537L34.283 1.537Q34.076 1.514 34.037 1.299L34.037 1.209Q34.076 1.002 34.283 0.978L34.412 0.978L33.807 0.123L33.221 0.978L33.365 0.978Q33.572 1.002 33.611 1.209L33.611 1.299Q33.572 1.514 33.365 1.537L32.213 1.537Q32.018 1.517 31.967 1.299M36.381 1.299L36.381 1.224Q36.412 1.057 36.514 1.010L37.803-0.057Q38.135-0.334 38.317-0.486Q38.498-0.639 38.693-0.859Q38.889-1.080 39.010-1.330Q39.131-1.580 39.131-1.846Q39.131-2.170 38.955-2.404Q38.779-2.639 38.500-2.754Q38.221-2.869 37.901-2.869Q37.643-2.869 37.414-2.746Q37.186-2.623 37.084-2.408Q37.186-2.276 37.186-2.127Q37.186-1.967 37.067-1.844Q36.947-1.721 36.787-1.721Q36.611-1.721 36.496-1.846Q36.381-1.971 36.381-2.143Q36.381-2.436 36.516-2.678Q36.651-2.920 36.889-3.092Q37.127-3.264 37.395-3.348Q37.662-3.432 37.955-3.432Q38.436-3.432 38.852-3.242Q39.268-3.053 39.520-2.692Q39.772-2.330 39.772-1.846Q39.772-1.502 39.639-1.199Q39.506-0.897 39.281-0.637Q39.057-0.377 38.748-0.115Q38.440 0.146 38.229 0.322L37.420 0.978L39.131 0.978L39.131 0.834Q39.182 0.623 39.381 0.599L39.522 0.599Q39.721 0.619 39.772 0.834L39.772 1.299Q39.721 1.514 39.522 1.537L36.627 1.537Q36.432 1.517 36.381 1.299M40.432 1.299L40.432 1.209Q40.490 0.998 40.682 0.978L40.904 0.978L41.858-3.205Q41.881-3.322 41.977-3.397Q42.072-3.471 42.186-3.471L42.459-3.471Q42.572-3.471 42.668-3.395Q42.764-3.318 42.787-3.205L43.736 0.978L43.963 0.978Q44.170 1.002 44.209 1.209L44.209 1.299Q44.158 1.514 43.963 1.537L42.881 1.537Q42.686 1.514 42.635 1.299L42.635 1.209Q42.686 1.002 42.881 0.978L43.080 0.978Q42.951 0.412 42.928 0.330L41.713 0.330Q41.670 0.514 41.561 0.978L41.760 0.978Q41.959 1.002 42.010 1.209L42.010 1.299Q41.959 1.514 41.760 1.537L40.682 1.537Q40.475 1.514 40.432 1.299M41.834-0.233L42.811-0.233Q42.330-2.365 42.330-2.709L42.322-2.709Q42.322-2.526 42.182-1.842Q42.041-1.158 41.834-0.233\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-3.704 11.695C53.2 24.3 53.2 24.3 118.497 18.825\"\u002F>\u003Cpath stroke=\"none\" d=\"m121.088 18.609-4.32-1.725 1.729 1.942-1.38 2.203\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(46.142 29.32)\">\u003Cpath d=\"M-3.390 0.026Q-3.390-0.302-3.255-0.603Q-3.120-0.903-2.884-1.124Q-2.648-1.344-2.344-1.464Q-2.039-1.584-1.715-1.584Q-1.209-1.584-0.860-1.481Q-0.512-1.379-0.512-1.003Q-0.512-0.856-0.609-0.755Q-0.706-0.654-0.853-0.654Q-1.007-0.654-1.106-0.753Q-1.205-0.852-1.205-1.003Q-1.205-1.191-1.065-1.283Q-1.267-1.334-1.708-1.334Q-2.063-1.334-2.292-1.138Q-2.521-0.941-2.622-0.632Q-2.723-0.322-2.723 0.026Q-2.723 0.375-2.597 0.681Q-2.470 0.987-2.215 1.171Q-1.961 1.356-1.605 1.356Q-1.383 1.356-1.199 1.272Q-1.014 1.188-0.879 1.033Q-0.744 0.877-0.686 0.669Q-0.672 0.614-0.618 0.614L-0.505 0.614Q-0.474 0.614-0.452 0.638Q-0.430 0.662-0.430 0.696L-0.430 0.717Q-0.515 1.004-0.703 1.202Q-0.891 1.400-1.156 1.503Q-1.421 1.605-1.715 1.605Q-2.145 1.605-2.533 1.399Q-2.921 1.192-3.155 0.829Q-3.390 0.467-3.390 0.026M0.117 0.054Q0.117-0.288 0.252-0.587Q0.387-0.886 0.627-1.110Q0.866-1.334 1.184-1.459Q1.502-1.584 1.833-1.584Q2.277-1.584 2.677-1.368Q3.077-1.153 3.311-0.775Q3.546-0.398 3.546 0.054Q3.546 0.395 3.404 0.679Q3.262 0.963 3.017 1.170Q2.773 1.376 2.464 1.491Q2.154 1.605 1.833 1.605Q1.402 1.605 1.001 1.404Q0.599 1.202 0.358 0.850Q0.117 0.498 0.117 0.054M1.833 1.356Q2.435 1.356 2.659 0.978Q2.882 0.600 2.882-0.032Q2.882-0.644 2.648-1.003Q2.414-1.361 1.833-1.361Q0.780-1.361 0.780-0.032Q0.780 0.600 1.006 0.978Q1.232 1.356 1.833 1.356M5.784 2.894L4.154 2.894L4.154 2.614Q4.383 2.614 4.532 2.579Q4.680 2.545 4.680 2.405L4.680-0.941Q4.680-1.112 4.544-1.153Q4.407-1.194 4.154-1.194L4.154-1.474L5.234-1.549L5.234-1.143Q5.456-1.344 5.743-1.447Q6.030-1.549 6.338-1.549Q6.765-1.549 7.129-1.336Q7.493-1.122 7.707-0.758Q7.921-0.394 7.921 0.026Q7.921 0.471 7.681 0.835Q7.442 1.199 7.049 1.402Q6.656 1.605 6.212 1.605Q5.945 1.605 5.697 1.505Q5.449 1.404 5.261 1.223L5.261 2.405Q5.261 2.542 5.410 2.578Q5.559 2.614 5.784 2.614L5.784 2.894M5.261-0.794L5.261 0.816Q5.395 1.069 5.637 1.226Q5.880 1.383 6.157 1.383Q6.485 1.383 6.738 1.182Q6.991 0.980 7.124 0.662Q7.257 0.344 7.257 0.026Q7.257-0.203 7.192-0.432Q7.128-0.661 6.999-0.859Q6.871-1.057 6.676-1.177Q6.482-1.296 6.249-1.296Q5.955-1.296 5.687-1.167Q5.419-1.037 5.261-0.794\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.142 29.32)\">\u003Cpath d=\"M8.688 2.672Q8.818 2.740 8.955 2.740Q9.126 2.740 9.276 2.651Q9.427 2.562 9.538 2.417Q9.649 2.272 9.727 2.104L9.991 1.537L8.822-0.989Q8.747-1.136 8.617-1.168Q8.487-1.201 8.254-1.201L8.254-1.481L9.775-1.481L9.775-1.201Q9.427-1.201 9.427-1.054Q9.430-1.033 9.432-1.016Q9.434-0.999 9.434-0.989L10.291 0.870L11.064-0.801Q11.098-0.869 11.098-0.948Q11.098-1.061 11.014-1.131Q10.931-1.201 10.818-1.201L10.818-1.481L12.014-1.481L12.014-1.201Q11.795-1.201 11.623-1.097Q11.450-0.992 11.358-0.801L10.021 2.104Q9.851 2.474 9.581 2.720Q9.310 2.966 8.955 2.966Q8.685 2.966 8.466 2.800Q8.247 2.634 8.247 2.371Q8.247 2.234 8.340 2.145Q8.432 2.057 8.572 2.057Q8.709 2.057 8.798 2.145Q8.887 2.234 8.887 2.371Q8.887 2.474 8.834 2.552Q8.781 2.631 8.688 2.672\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.142 29.32)\">\u003Cpath d=\"M15.314 0.460Q15.314 0.019 15.617-0.302Q15.919-0.623 16.371-0.815L16.131-0.955Q15.861-1.115 15.695-1.373Q15.530-1.631 15.530-1.929Q15.530-2.281 15.735-2.553Q15.940-2.824 16.261-2.968Q16.582-3.111 16.924-3.111Q17.246-3.111 17.569-2.995Q17.892-2.879 18.103-2.638Q18.315-2.397 18.315-2.062Q18.315-1.700 18.071-1.437Q17.827-1.173 17.447-0.996L17.847-0.760Q18.042-0.647 18.201-0.478Q18.360-0.309 18.447-0.100Q18.534 0.108 18.534 0.341Q18.534 0.744 18.300 1.048Q18.066 1.352 17.692 1.515Q17.317 1.677 16.924 1.677Q16.538 1.677 16.169 1.540Q15.800 1.404 15.557 1.127Q15.314 0.850 15.314 0.460M15.762 0.460Q15.762 0.747 15.931 0.970Q16.101 1.192 16.369 1.308Q16.637 1.424 16.924 1.424Q17.362 1.424 17.724 1.207Q18.086 0.990 18.086 0.583Q18.086 0.382 17.958 0.204Q17.830 0.026 17.652-0.073L16.630-0.668Q16.391-0.558 16.193-0.392Q15.995-0.227 15.878-0.011Q15.762 0.204 15.762 0.460M16.285-1.669L17.205-1.136Q17.512-1.296 17.714-1.529Q17.915-1.761 17.915-2.062Q17.915-2.301 17.770-2.491Q17.625-2.681 17.393-2.780Q17.160-2.879 16.924-2.879Q16.702-2.879 16.473-2.809Q16.244-2.739 16.087-2.582Q15.930-2.424 15.930-2.195Q15.930-1.881 16.285-1.669\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.142 29.32)\">\u003Cpath d=\"M22.736 1.537L22.469 1.537L22.469-2.571Q22.469-2.841 22.362-2.903Q22.254-2.964 21.943-2.964L21.943-3.245L23.023-3.320L23.023-1.150Q23.232-1.341 23.517-1.445Q23.802-1.549 24.100-1.549Q24.418-1.549 24.715-1.428Q25.012-1.307 25.235-1.091Q25.457-0.876 25.583-0.591Q25.710-0.305 25.710 0.026Q25.710 0.471 25.470 0.835Q25.231 1.199 24.838 1.402Q24.445 1.605 24.001 1.605Q23.806 1.605 23.616 1.549Q23.427 1.493 23.266 1.388Q23.105 1.284 22.965 1.123L22.736 1.537M23.051-0.808L23.051 0.809Q23.187 1.069 23.428 1.226Q23.669 1.383 23.946 1.383Q24.240 1.383 24.452 1.276Q24.664 1.168 24.797 0.976Q24.930 0.785 24.989 0.546Q25.047 0.307 25.047 0.026Q25.047-0.333 24.953-0.637Q24.859-0.941 24.631-1.134Q24.404-1.327 24.038-1.327Q23.738-1.327 23.471-1.191Q23.204-1.054 23.051-0.808\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(46.142 29.32)\">\u003Cpath d=\"M26.466 2.672Q26.596 2.740 26.733 2.740Q26.904 2.740 27.054 2.651Q27.205 2.562 27.316 2.417Q27.427 2.272 27.505 2.104L27.769 1.537L26.600-0.989Q26.525-1.136 26.395-1.168Q26.265-1.201 26.032-1.201L26.032-1.481L27.553-1.481L27.553-1.201Q27.205-1.201 27.205-1.054Q27.208-1.033 27.210-1.016Q27.212-0.999 27.212-0.989L28.069 0.870L28.842-0.801Q28.876-0.869 28.876-0.948Q28.876-1.061 28.792-1.131Q28.709-1.201 28.596-1.201L28.596-1.481L29.792-1.481L29.792-1.201Q29.573-1.201 29.401-1.097Q29.228-0.992 29.136-0.801L27.799 2.104Q27.629 2.474 27.359 2.720Q27.088 2.966 26.733 2.966Q26.463 2.966 26.244 2.800Q26.025 2.634 26.025 2.371Q26.025 2.234 26.118 2.145Q26.210 2.057 26.350 2.057Q26.487 2.057 26.576 2.145Q26.665 2.234 26.665 2.371Q26.665 2.474 26.612 2.552Q26.559 2.631 26.466 2.672M30.859 0.696L30.859-1.201L30.219-1.201L30.219-1.423Q30.537-1.423 30.754-1.633Q30.971-1.843 31.072-2.153Q31.173-2.462 31.173-2.770L31.440-2.770L31.440-1.481L32.516-1.481L32.516-1.201L31.440-1.201L31.440 0.683Q31.440 0.959 31.544 1.158Q31.648 1.356 31.908 1.356Q32.065 1.356 32.171 1.252Q32.277 1.147 32.327 0.994Q32.376 0.840 32.376 0.683L32.376 0.269L32.643 0.269L32.643 0.696Q32.643 0.922 32.544 1.132Q32.444 1.342 32.260 1.474Q32.075 1.605 31.846 1.605Q31.409 1.605 31.134 1.368Q30.859 1.130 30.859 0.696M33.412 0.002Q33.412-0.319 33.536-0.608Q33.661-0.897 33.887-1.120Q34.112-1.344 34.408-1.464Q34.704-1.584 35.022-1.584Q35.350-1.584 35.611-1.484Q35.873-1.385 36.049-1.203Q36.225-1.020 36.319-0.762Q36.413-0.504 36.413-0.172Q36.413-0.080 36.331-0.059L34.075-0.059L34.075 0.002Q34.075 0.590 34.359 0.973Q34.642 1.356 35.210 1.356Q35.531 1.356 35.799 1.163Q36.067 0.970 36.156 0.655Q36.163 0.614 36.238 0.600L36.331 0.600Q36.413 0.624 36.413 0.696Q36.413 0.703 36.406 0.730Q36.293 1.127 35.922 1.366Q35.551 1.605 35.128 1.605Q34.690 1.605 34.290 1.397Q33.890 1.188 33.651 0.821Q33.412 0.454 33.412 0.002M34.082-0.268L35.897-0.268Q35.897-0.545 35.799-0.797Q35.702-1.050 35.504-1.206Q35.305-1.361 35.022-1.361Q34.745-1.361 34.531-1.203Q34.317-1.044 34.200-0.789Q34.082-0.534 34.082-0.268M37.001 1.530L37.001 0.467Q37.001 0.443 37.028 0.416Q37.055 0.389 37.079 0.389L37.189 0.389Q37.254 0.389 37.267 0.447Q37.363 0.881 37.609 1.132Q37.855 1.383 38.269 1.383Q38.610 1.383 38.863 1.250Q39.116 1.117 39.116 0.809Q39.116 0.652 39.022 0.537Q38.928 0.423 38.790 0.354Q38.651 0.286 38.484 0.248L37.903 0.149Q37.547 0.081 37.274-0.140Q37.001-0.360 37.001-0.702Q37.001-0.951 37.112-1.126Q37.223-1.300 37.409-1.399Q37.595-1.498 37.811-1.541Q38.026-1.584 38.269-1.584Q38.682-1.584 38.963-1.402L39.178-1.577Q39.188-1.580 39.195-1.582Q39.202-1.584 39.212-1.584L39.263-1.584Q39.291-1.584 39.315-1.560Q39.338-1.536 39.338-1.508L39.338-0.661Q39.338-0.640 39.315-0.613Q39.291-0.586 39.263-0.586L39.150-0.586Q39.123-0.586 39.098-0.611Q39.072-0.637 39.072-0.661Q39.072-0.897 38.966-1.061Q38.860-1.225 38.677-1.307Q38.494-1.389 38.262-1.389Q37.934-1.389 37.677-1.286Q37.421-1.184 37.421-0.907Q37.421-0.712 37.604-0.603Q37.787-0.493 38.016-0.452L38.590-0.346Q38.836-0.298 39.050-0.170Q39.263-0.042 39.400 0.161Q39.537 0.365 39.537 0.614Q39.537 1.127 39.171 1.366Q38.805 1.605 38.269 1.605Q37.773 1.605 37.442 1.311L37.175 1.585Q37.154 1.605 37.127 1.605L37.079 1.605Q37.055 1.605 37.028 1.578Q37.001 1.551 37.001 1.530\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">movq (%rdx,%rcx,8), %rax with %rdx=0x1000 and %rcx=2. The effective address 0x1010 selects the third 8-byte element; its value 0x2A is copied into %rax while the base and index registers keep their values.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:503.016px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 377.262 82.458\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-65.403-22.66h51.215v-22.762h-51.215Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-15.347 2)\">\u003Cpath d=\"M-39.444-35.455Q-39.444-35.740-39.288-35.994Q-39.132-36.248-38.882-36.422Q-38.632-36.596-38.347-36.682Q-38.585-36.756-38.812-36.898Q-39.038-37.041-39.181-37.250Q-39.323-37.459-39.323-37.705Q-39.323-38.103-39.077-38.398Q-38.831-38.693-38.448-38.852Q-38.066-39.010-37.675-39.010Q-37.284-39.010-36.901-38.852Q-36.519-38.693-36.273-38.395Q-36.026-38.096-36.026-37.705Q-36.026-37.459-36.169-37.252Q-36.312-37.045-36.538-36.900Q-36.765-36.756-37.003-36.682Q-36.550-36.545-36.230-36.219Q-35.909-35.893-35.909-35.455Q-35.909-35.018-36.167-34.674Q-36.425-34.330-36.835-34.146Q-37.245-33.963-37.675-33.963Q-38.105-33.963-38.515-34.145Q-38.925-34.326-39.185-34.670Q-39.444-35.014-39.444-35.455M-38.804-35.455Q-38.804-35.182-38.638-34.967Q-38.472-34.752-38.210-34.637Q-37.948-34.521-37.675-34.521Q-37.401-34.521-37.142-34.637Q-36.882-34.752-36.716-34.969Q-36.550-35.186-36.550-35.455Q-36.550-35.732-36.716-35.949Q-36.882-36.166-37.142-36.283Q-37.401-36.400-37.675-36.400Q-37.948-36.400-38.210-36.283Q-38.472-36.166-38.638-35.951Q-38.804-35.736-38.804-35.455M-38.683-37.705Q-38.683-37.467-38.526-37.299Q-38.370-37.131-38.134-37.047Q-37.898-36.963-37.675-36.963Q-37.456-36.963-37.218-37.047Q-36.980-37.131-36.823-37.301Q-36.667-37.471-36.667-37.705Q-36.667-37.939-36.823-38.109Q-36.980-38.279-37.218-38.363Q-37.456-38.447-37.675-38.447Q-37.898-38.447-38.134-38.363Q-38.370-38.279-38.526-38.111Q-38.683-37.943-38.683-37.705\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.347 2)\">\u003Cpath d=\"M-32.929-32.049Q-33.542-32.506-33.944-33.141Q-34.347-33.775-34.542-34.521Q-34.737-35.268-34.737-36.041Q-34.737-36.814-34.542-37.561Q-34.347-38.307-33.944-38.941Q-33.542-39.576-32.929-40.033Q-32.917-40.037-32.909-40.039Q-32.901-40.041-32.890-40.041L-32.812-40.041Q-32.773-40.041-32.747-40.014Q-32.722-39.986-32.722-39.943Q-32.722-39.893-32.753-39.873Q-33.261-39.420-33.583-38.797Q-33.905-38.174-34.046-37.478Q-34.187-36.783-34.187-36.041Q-34.187-35.307-34.048-34.607Q-33.909-33.908-33.585-33.283Q-33.261-32.658-32.753-32.209Q-32.722-32.189-32.722-32.139Q-32.722-32.096-32.747-32.068Q-32.773-32.041-32.812-32.041L-32.890-32.041Q-32.898-32.045-32.907-32.047Q-32.917-32.049-32.929-32.049M-31.058-33.775Q-31.058-33.838-31.026-33.881L-27.280-39.139Q-27.737-38.904-28.304-38.904Q-28.956-38.904-29.562-39.225Q-29.417-38.877-29.417-38.432Q-29.417-38.072-29.538-37.701Q-29.659-37.330-29.909-37.074Q-30.159-36.818-30.523-36.818Q-30.909-36.818-31.192-37.062Q-31.476-37.307-31.622-37.680Q-31.769-38.053-31.769-38.432Q-31.769-38.811-31.622-39.182Q-31.476-39.553-31.192-39.797Q-30.909-40.041-30.523-40.041Q-30.206-40.041-29.937-39.803Q-29.601-39.498-29.171-39.326Q-28.741-39.154-28.304-39.154Q-27.812-39.154-27.394-39.367Q-26.976-39.580-26.675-39.978Q-26.632-40.041-26.538-40.041Q-26.464-40.041-26.409-39.986Q-26.355-39.932-26.355-39.857Q-26.355-39.795-26.386-39.752L-30.730-33.658Q-30.776-33.592-30.874-33.592Q-30.956-33.592-31.007-33.643Q-31.058-33.693-31.058-33.775M-30.523-37.072Q-30.249-37.072-30.062-37.297Q-29.874-37.521-29.786-37.844Q-29.698-38.166-29.698-38.432Q-29.698-38.689-29.786-39.012Q-29.874-39.334-30.062-39.559Q-30.249-39.783-30.523-39.783Q-30.909-39.783-31.052-39.355Q-31.194-38.928-31.194-38.432Q-31.194-37.924-31.054-37.498Q-30.913-37.072-30.523-37.072M-26.745-33.592Q-27.132-33.592-27.415-33.838Q-27.698-34.084-27.847-34.457Q-27.995-34.830-27.995-35.209Q-27.995-35.482-27.909-35.770Q-27.823-36.057-27.669-36.291Q-27.515-36.525-27.278-36.672Q-27.042-36.818-26.745-36.818Q-26.464-36.818-26.257-36.666Q-26.050-36.514-25.911-36.271Q-25.773-36.029-25.706-35.748Q-25.640-35.467-25.640-35.209Q-25.640-34.850-25.761-34.477Q-25.882-34.103-26.132-33.848Q-26.382-33.592-26.745-33.592M-26.745-33.850Q-26.472-33.850-26.284-34.074Q-26.097-34.299-26.009-34.621Q-25.921-34.943-25.921-35.209Q-25.921-35.467-26.009-35.789Q-26.097-36.111-26.284-36.336Q-26.472-36.561-26.745-36.561Q-27.136-36.561-27.276-36.131Q-27.417-35.701-27.417-35.209Q-27.417-34.701-27.280-34.275Q-27.144-33.850-26.745-33.850\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.347 2)\">\u003Cpath d=\"M-24.934-34.279L-24.934-34.369Q-24.876-34.576-24.684-34.600L-23.973-34.600L-23.973-36.928L-24.684-36.928Q-24.880-36.951-24.934-37.170L-24.934-37.256Q-24.876-37.467-24.684-37.490L-23.583-37.490Q-23.384-37.471-23.333-37.256L-23.333-36.928Q-23.071-37.213-22.716-37.371Q-22.360-37.529-21.973-37.529Q-21.680-37.529-21.446-37.395Q-21.212-37.260-21.212-36.994Q-21.212-36.826-21.321-36.709Q-21.430-36.592-21.598-36.592Q-21.751-36.592-21.866-36.703Q-21.981-36.814-21.981-36.971Q-22.356-36.971-22.671-36.770Q-22.985-36.568-23.159-36.234Q-23.333-35.900-23.333-35.521L-23.333-34.600L-22.387-34.600Q-22.180-34.576-22.141-34.369L-22.141-34.279Q-22.180-34.064-22.387-34.041L-24.684-34.041Q-24.876-34.064-24.934-34.279M-20.505-35.154Q-20.505-35.600-20.091-35.857Q-19.677-36.115-19.136-36.215Q-18.595-36.314-18.087-36.322Q-18.087-36.537-18.221-36.689Q-18.356-36.842-18.563-36.918Q-18.770-36.994-18.981-36.994Q-19.325-36.994-19.485-36.971L-19.485-36.912Q-19.485-36.744-19.604-36.629Q-19.723-36.514-19.887-36.514Q-20.063-36.514-20.178-36.637Q-20.294-36.760-20.294-36.928Q-20.294-37.334-19.913-37.443Q-19.532-37.553-18.973-37.553Q-18.704-37.553-18.436-37.475Q-18.169-37.396-17.944-37.246Q-17.720-37.096-17.583-36.875Q-17.446-36.654-17.446-36.377L-17.446-34.658Q-17.446-34.600-16.919-34.600Q-16.723-34.580-16.673-34.369L-16.673-34.279Q-16.723-34.064-16.919-34.041L-17.063-34.041Q-17.407-34.041-17.636-34.088Q-17.864-34.135-18.009-34.322Q-18.469-34.002-19.177-34.002Q-19.512-34.002-19.817-34.143Q-20.122-34.283-20.313-34.545Q-20.505-34.807-20.505-35.154M-19.864-35.146Q-19.864-34.873-19.622-34.717Q-19.380-34.561-19.094-34.561Q-18.876-34.561-18.643-34.619Q-18.411-34.678-18.249-34.816Q-18.087-34.955-18.087-35.178L-18.087-35.768Q-18.368-35.768-18.784-35.711Q-19.200-35.654-19.532-35.516Q-19.864-35.377-19.864-35.146M-16.407-34.279L-16.407-34.369Q-16.368-34.576-16.161-34.600L-15.755-34.600L-14.825-35.818L-15.696-36.928L-16.114-36.928Q-16.309-36.947-16.360-37.170L-16.360-37.256Q-16.309-37.467-16.114-37.490L-14.954-37.490Q-14.755-37.467-14.704-37.256L-14.704-37.170Q-14.755-36.951-14.954-36.928L-15.063-36.928L-14.567-36.271L-14.091-36.928L-14.208-36.928Q-14.407-36.951-14.458-37.170L-14.458-37.256Q-14.407-37.467-14.208-37.490L-13.048-37.490Q-12.852-37.471-12.802-37.256L-12.802-37.170Q-12.852-36.951-13.048-36.928L-13.458-36.928L-14.305-35.818L-13.344-34.600L-12.938-34.600Q-12.739-34.576-12.688-34.369L-12.688-34.279Q-12.727-34.064-12.938-34.041L-14.091-34.041Q-14.298-34.064-14.337-34.279L-14.337-34.369Q-14.298-34.576-14.091-34.600L-13.962-34.600L-14.567-35.455L-15.153-34.600L-15.009-34.600Q-14.802-34.576-14.762-34.369L-14.762-34.279Q-14.802-34.064-15.009-34.041L-16.161-34.041Q-16.356-34.061-16.407-34.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-15.347 2)\">\u003Cpath d=\"M-11.766-32.041L-11.848-32.041Q-11.884-32.041-11.909-32.070Q-11.934-32.100-11.934-32.139Q-11.934-32.189-11.903-32.209Q-11.516-32.545-11.233-32.994Q-10.950-33.443-10.784-33.943Q-10.618-34.443-10.544-34.961Q-10.469-35.478-10.469-36.041Q-10.469-36.611-10.544-37.127Q-10.618-37.643-10.784-38.139Q-10.950-38.635-11.229-39.082Q-11.509-39.529-11.903-39.873Q-11.934-39.893-11.934-39.943Q-11.934-39.982-11.909-40.012Q-11.884-40.041-11.848-40.041L-11.766-40.041Q-11.755-40.041-11.745-40.039Q-11.735-40.037-11.727-40.033Q-11.114-39.576-10.712-38.941Q-10.309-38.307-10.114-37.561Q-9.919-36.814-9.919-36.041Q-9.919-35.268-10.114-34.521Q-10.309-33.775-10.712-33.141Q-11.114-32.506-11.727-32.049Q-11.739-32.049-11.747-32.047Q-11.755-32.045-11.766-32.041\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-14.06 28.78)\">\u003Cpath d=\"M-39.523-35.524Q-39.523-35.866-39.388-36.165Q-39.253-36.464-39.013-36.688Q-38.774-36.912-38.456-37.037Q-38.138-37.162-37.807-37.162Q-37.362-37.162-36.963-36.946Q-36.563-36.731-36.328-36.353Q-36.094-35.976-36.094-35.524Q-36.094-35.183-36.236-34.899Q-36.378-34.615-36.622-34.408Q-36.867-34.202-37.176-34.087Q-37.485-33.973-37.807-33.973Q-38.237-33.973-38.639-34.174Q-39.041-34.376-39.282-34.728Q-39.523-35.080-39.523-35.524M-37.807-34.222Q-37.205-34.222-36.981-34.600Q-36.757-34.978-36.757-35.610Q-36.757-36.222-36.992-36.581Q-37.226-36.939-37.807-36.939Q-38.859-36.939-38.859-35.610Q-38.859-34.978-38.634-34.600Q-38.408-34.222-37.807-34.222M-33.856-32.684L-35.486-32.684L-35.486-32.964Q-35.257-32.964-35.108-32.999Q-34.960-33.033-34.960-33.173L-34.960-36.519Q-34.960-36.690-35.096-36.731Q-35.233-36.772-35.486-36.772L-35.486-37.052L-34.406-37.127L-34.406-36.721Q-34.184-36.922-33.897-37.025Q-33.609-37.127-33.302-37.127Q-32.875-37.127-32.511-36.914Q-32.147-36.700-31.933-36.336Q-31.719-35.972-31.719-35.552Q-31.719-35.107-31.959-34.743Q-32.198-34.379-32.591-34.176Q-32.984-33.973-33.428-33.973Q-33.695-33.973-33.943-34.073Q-34.191-34.174-34.379-34.355L-34.379-33.173Q-34.379-33.036-34.230-33Q-34.081-32.964-33.856-32.964L-33.856-32.684M-34.379-36.372L-34.379-34.762Q-34.245-34.509-34.003-34.352Q-33.760-34.195-33.483-34.195Q-33.155-34.195-32.902-34.396Q-32.649-34.598-32.516-34.916Q-32.382-35.234-32.382-35.552Q-32.382-35.781-32.447-36.010Q-32.512-36.239-32.640-36.437Q-32.769-36.635-32.963-36.755Q-33.158-36.874-33.391-36.874Q-33.685-36.874-33.953-36.745Q-34.221-36.615-34.379-36.372\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-14.06 28.78)\">\u003Cpath d=\"M-30.905-35.576Q-30.905-35.897-30.780-36.186Q-30.655-36.475-30.429-36.698Q-30.204-36.922-29.908-37.042Q-29.613-37.162-29.295-37.162Q-28.967-37.162-28.705-37.062Q-28.444-36.963-28.268-36.781Q-28.092-36.598-27.998-36.340Q-27.904-36.082-27.904-35.750Q-27.904-35.658-27.986-35.637L-30.241-35.637L-30.241-35.576Q-30.241-34.988-29.958-34.605Q-29.674-34.222-29.107-34.222Q-28.785-34.222-28.517-34.415Q-28.249-34.608-28.160-34.923Q-28.153-34.964-28.078-34.978L-27.986-34.978Q-27.904-34.954-27.904-34.882Q-27.904-34.875-27.910-34.848Q-28.023-34.451-28.394-34.212Q-28.765-33.973-29.189-33.973Q-29.626-33.973-30.026-34.181Q-30.426-34.390-30.665-34.757Q-30.905-35.124-30.905-35.576M-30.235-35.846L-28.420-35.846Q-28.420-36.123-28.517-36.375Q-28.615-36.628-28.813-36.784Q-29.011-36.939-29.295-36.939Q-29.572-36.939-29.785-36.781Q-29.999-36.622-30.117-36.367Q-30.235-36.112-30.235-35.846M-25.566-34.041L-27.302-34.041L-27.302-34.321Q-27.073-34.321-26.924-34.355Q-26.776-34.390-26.776-34.530L-26.776-36.379Q-26.776-36.649-26.883-36.710Q-26.991-36.772-27.302-36.772L-27.302-37.052L-26.273-37.127L-26.273-36.420Q-26.143-36.728-25.901-36.927Q-25.658-37.127-25.340-37.127Q-25.121-37.127-24.950-37.003Q-24.780-36.878-24.780-36.666Q-24.780-36.529-24.879-36.430Q-24.978-36.331-25.111-36.331Q-25.248-36.331-25.347-36.430Q-25.446-36.529-25.446-36.666Q-25.446-36.806-25.347-36.905Q-25.637-36.905-25.837-36.709Q-26.037-36.512-26.130-36.218Q-26.222-35.924-26.222-35.644L-26.222-34.530Q-26.222-34.321-25.566-34.321L-25.566-34.041M-24.137-34.769Q-24.137-35.101-23.913-35.328Q-23.689-35.555-23.346-35.683Q-23.002-35.812-22.630-35.864Q-22.257-35.917-21.953-35.917L-21.953-36.170Q-21.953-36.375-22.061-36.555Q-22.168-36.734-22.349-36.837Q-22.531-36.939-22.739-36.939Q-23.146-36.939-23.382-36.847Q-23.293-36.810-23.247-36.726Q-23.200-36.642-23.200-36.540Q-23.200-36.444-23.247-36.365Q-23.293-36.287-23.373-36.242Q-23.453-36.198-23.542-36.198Q-23.693-36.198-23.793-36.295Q-23.894-36.393-23.894-36.540Q-23.894-37.162-22.739-37.162Q-22.527-37.162-22.278-37.098Q-22.028-37.035-21.826-36.916Q-21.625-36.796-21.498-36.611Q-21.372-36.427-21.372-36.184L-21.372-34.608Q-21.372-34.492-21.310-34.396Q-21.249-34.301-21.136-34.301Q-21.027-34.301-20.962-34.395Q-20.897-34.489-20.897-34.608L-20.897-35.056L-20.630-35.056L-20.630-34.608Q-20.630-34.338-20.857-34.173Q-21.085-34.007-21.365-34.007Q-21.574-34.007-21.710-34.161Q-21.847-34.314-21.871-34.530Q-22.018-34.263-22.300-34.118Q-22.582-33.973-22.907-33.973Q-23.183-33.973-23.467-34.048Q-23.751-34.123-23.944-34.302Q-24.137-34.482-24.137-34.769M-23.522-34.769Q-23.522-34.595-23.421-34.465Q-23.320-34.335-23.165-34.265Q-23.009-34.195-22.845-34.195Q-22.626-34.195-22.418-34.292Q-22.209-34.390-22.081-34.571Q-21.953-34.752-21.953-34.978L-21.953-35.706Q-22.278-35.706-22.643-35.615Q-23.009-35.524-23.265-35.312Q-23.522-35.101-23.522-34.769M-18.532-34.041L-20.165-34.041L-20.165-34.321Q-19.936-34.321-19.788-34.355Q-19.639-34.390-19.639-34.530L-19.639-36.379Q-19.639-36.649-19.747-36.710Q-19.854-36.772-20.165-36.772L-20.165-37.052L-19.106-37.127L-19.106-36.478Q-18.935-36.786-18.631-36.957Q-18.326-37.127-17.981-37.127Q-17.475-37.127-17.192-36.904Q-16.908-36.680-16.908-36.184L-16.908-34.530Q-16.908-34.393-16.759-34.357Q-16.611-34.321-16.385-34.321L-16.385-34.041L-18.015-34.041L-18.015-34.321Q-17.786-34.321-17.638-34.355Q-17.489-34.390-17.489-34.530L-17.489-36.170Q-17.489-36.505-17.609-36.705Q-17.728-36.905-18.043-36.905Q-18.313-36.905-18.547-36.769Q-18.781-36.632-18.919-36.398Q-19.058-36.164-19.058-35.890L-19.058-34.530Q-19.058-34.393-18.907-34.357Q-18.757-34.321-18.532-34.321L-18.532-34.041M-15.797-35.552Q-15.797-35.890-15.657-36.181Q-15.517-36.471-15.272-36.685Q-15.028-36.898-14.724-37.013Q-14.420-37.127-14.095-37.127Q-13.825-37.127-13.562-37.028Q-13.299-36.929-13.107-36.751L-13.107-38.149Q-13.107-38.419-13.215-38.481Q-13.323-38.542-13.634-38.542L-13.634-38.823L-12.557-38.898L-12.557-34.714Q-12.557-34.526-12.502-34.443Q-12.448-34.359-12.347-34.340Q-12.246-34.321-12.031-34.321L-12.031-34.041L-13.138-33.973L-13.138-34.390Q-13.555-33.973-14.180-33.973Q-14.611-33.973-14.984-34.185Q-15.356-34.396-15.577-34.757Q-15.797-35.118-15.797-35.552M-14.122-34.195Q-13.914-34.195-13.728-34.267Q-13.541-34.338-13.387-34.475Q-13.234-34.612-13.138-34.790L-13.138-36.399Q-13.223-36.546-13.369-36.666Q-13.514-36.786-13.683-36.845Q-13.852-36.905-14.033-36.905Q-14.594-36.905-14.862-36.516Q-15.131-36.126-15.131-35.545Q-15.131-34.974-14.897-34.584Q-14.662-34.195-14.122-34.195\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M31.336-22.66H82.55v-22.762H31.336Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(76.194 2.778)\">\u003Cpath d=\"M-39.460-34.873Q-39.460-35.357-39.058-35.652Q-38.655-35.947-38.105-36.066Q-37.554-36.186-37.062-36.186L-37.062-36.475Q-37.062-36.701-37.177-36.908Q-37.292-37.115-37.489-37.234Q-37.687-37.353-37.917-37.353Q-38.343-37.353-38.628-37.248Q-38.558-37.221-38.511-37.166Q-38.464-37.111-38.439-37.041Q-38.413-36.971-38.413-36.896Q-38.413-36.791-38.464-36.699Q-38.515-36.607-38.607-36.557Q-38.698-36.506-38.804-36.506Q-38.909-36.506-39.001-36.557Q-39.093-36.607-39.144-36.699Q-39.194-36.791-39.194-36.896Q-39.194-37.314-38.806-37.461Q-38.417-37.607-37.917-37.607Q-37.585-37.607-37.232-37.477Q-36.878-37.346-36.650-37.092Q-36.421-36.838-36.421-36.490L-36.421-34.689Q-36.421-34.557-36.349-34.447Q-36.276-34.338-36.148-34.338Q-36.023-34.338-35.954-34.443Q-35.886-34.549-35.886-34.689L-35.886-35.201L-35.605-35.201L-35.605-34.689Q-35.605-34.486-35.722-34.328Q-35.839-34.170-36.021-34.086Q-36.202-34.002-36.405-34.002Q-36.636-34.002-36.788-34.174Q-36.941-34.346-36.972-34.576Q-37.132-34.295-37.441-34.129Q-37.749-33.963-38.101-33.963Q-38.612-33.963-39.036-34.186Q-39.460-34.408-39.460-34.873M-38.773-34.873Q-38.773-34.588-38.546-34.402Q-38.319-34.217-38.026-34.217Q-37.780-34.217-37.556-34.334Q-37.331-34.451-37.196-34.654Q-37.062-34.857-37.062-35.111L-37.062-35.943Q-37.327-35.943-37.612-35.889Q-37.898-35.834-38.169-35.705Q-38.441-35.576-38.607-35.369Q-38.773-35.162-38.773-34.873M-33.495-33.963Q-33.976-33.963-34.384-34.207Q-34.792-34.451-35.030-34.865Q-35.269-35.279-35.269-35.768Q-35.269-36.260-35.011-36.676Q-34.753-37.092-34.321-37.330Q-33.890-37.568-33.398-37.568Q-32.776-37.568-32.327-37.131L-32.327-38.760Q-32.327-38.975-32.390-39.070Q-32.452-39.166-32.569-39.187Q-32.687-39.209-32.933-39.209L-32.933-39.506L-31.710-39.592L-31.710-34.783Q-31.710-34.572-31.648-34.477Q-31.585-34.381-31.468-34.359Q-31.351-34.338-31.101-34.338L-31.101-34.041L-32.351-33.963L-32.351-34.447Q-32.816-33.963-33.495-33.963M-33.429-34.217Q-33.089-34.217-32.796-34.408Q-32.503-34.600-32.351-34.896L-32.351-36.728Q-32.499-37.002-32.761-37.158Q-33.023-37.314-33.335-37.314Q-33.960-37.314-34.243-36.867Q-34.526-36.420-34.526-35.760Q-34.526-35.115-34.275-34.666Q-34.023-34.217-33.429-34.217M-28.776-33.963Q-29.257-33.963-29.665-34.207Q-30.073-34.451-30.312-34.865Q-30.550-35.279-30.550-35.768Q-30.550-36.260-30.292-36.676Q-30.034-37.092-29.603-37.330Q-29.171-37.568-28.679-37.568Q-28.058-37.568-27.608-37.131L-27.608-38.760Q-27.608-38.975-27.671-39.070Q-27.733-39.166-27.851-39.187Q-27.968-39.209-28.214-39.209L-28.214-39.506L-26.991-39.592L-26.991-34.783Q-26.991-34.572-26.929-34.477Q-26.866-34.381-26.749-34.359Q-26.632-34.338-26.382-34.338L-26.382-34.041L-27.632-33.963L-27.632-34.447Q-28.097-33.963-28.776-33.963M-28.710-34.217Q-28.370-34.217-28.077-34.408Q-27.784-34.600-27.632-34.896L-27.632-36.728Q-27.780-37.002-28.042-37.158Q-28.304-37.314-28.616-37.314Q-29.241-37.314-29.525-36.867Q-29.808-36.420-29.808-35.760Q-29.808-35.115-29.556-34.666Q-29.304-34.217-28.710-34.217M-23.866-34.041L-25.847-34.041L-25.847-34.338Q-25.577-34.338-25.409-34.383Q-25.241-34.428-25.241-34.600L-25.241-36.736Q-25.241-36.951-25.304-37.047Q-25.366-37.143-25.483-37.164Q-25.601-37.186-25.847-37.186L-25.847-37.482L-24.679-37.568L-24.679-36.783Q-24.601-36.994-24.448-37.180Q-24.296-37.365-24.097-37.467Q-23.898-37.568-23.671-37.568Q-23.425-37.568-23.233-37.424Q-23.042-37.279-23.042-37.049Q-23.042-36.893-23.148-36.783Q-23.253-36.674-23.409-36.674Q-23.566-36.674-23.675-36.783Q-23.784-36.893-23.784-37.049Q-23.784-37.209-23.679-37.314Q-24.003-37.314-24.218-37.086Q-24.433-36.857-24.528-36.518Q-24.624-36.178-24.624-35.873L-24.624-34.600Q-24.624-34.432-24.398-34.385Q-24.171-34.338-23.866-34.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(76.194 2.778)\">\u003Cpath d=\"M-17.834-33.963Q-18.267-33.963-18.600-34.201Q-18.932-34.439-19.152-34.828Q-19.373-35.217-19.480-35.654Q-19.588-36.092-19.588-36.490Q-19.588-36.881-19.478-37.324Q-19.369-37.768-19.152-38.148Q-18.935-38.529-18.601-38.770Q-18.267-39.010-17.834-39.010Q-17.279-39.010-16.879-38.611Q-16.478-38.213-16.281-37.627Q-16.084-37.041-16.084-36.490Q-16.084-35.936-16.281-35.348Q-16.478-34.760-16.879-34.361Q-17.279-33.963-17.834-33.963M-17.834-34.521Q-17.533-34.521-17.316-34.738Q-17.100-34.955-16.973-35.283Q-16.846-35.611-16.785-35.957Q-16.725-36.303-16.725-36.584Q-16.725-36.834-16.787-37.160Q-16.850-37.486-16.980-37.777Q-17.111-38.068-17.324-38.258Q-17.537-38.447-17.834-38.447Q-18.209-38.447-18.461-38.135Q-18.713-37.822-18.830-37.389Q-18.947-36.955-18.947-36.584Q-18.947-36.186-18.834-35.705Q-18.721-35.225-18.473-34.873Q-18.225-34.521-17.834-34.521M-15.451-34.279L-15.451-34.369Q-15.412-34.576-15.205-34.600L-14.799-34.600L-13.869-35.818L-14.740-36.928L-15.158-36.928Q-15.353-36.947-15.404-37.170L-15.404-37.256Q-15.353-37.467-15.158-37.490L-13.998-37.490Q-13.799-37.467-13.748-37.256L-13.748-37.170Q-13.799-36.951-13.998-36.928L-14.107-36.928L-13.611-36.271L-13.135-36.928L-13.252-36.928Q-13.451-36.951-13.502-37.170L-13.502-37.256Q-13.451-37.467-13.252-37.490L-12.092-37.490Q-11.896-37.471-11.846-37.256L-11.846-37.170Q-11.896-36.951-12.092-36.928L-12.502-36.928L-13.350-35.818L-12.389-34.600L-11.982-34.600Q-11.783-34.576-11.732-34.369L-11.732-34.279Q-11.771-34.064-11.982-34.041L-13.135-34.041Q-13.342-34.064-13.381-34.279L-13.381-34.369Q-13.342-34.576-13.135-34.600L-13.006-34.600L-13.611-35.455L-14.197-34.600L-14.053-34.600Q-13.846-34.576-13.807-34.369L-13.807-34.279Q-13.846-34.064-14.053-34.041L-15.205-34.041Q-15.400-34.061-15.451-34.279M-10.607-34.279L-10.607-34.369Q-10.557-34.576-10.357-34.600L-9.541-34.600L-9.541-37.783Q-9.920-37.475-10.373-37.475Q-10.603-37.475-10.654-37.705L-10.654-37.795Q-10.603-38.010-10.408-38.033Q-10.080-38.033-9.826-38.271Q-9.572-38.510-9.432-38.857Q-9.361-38.986-9.205-39.010L-9.150-39.010Q-8.955-38.990-8.904-38.775L-8.904-34.600L-8.088-34.600Q-7.889-34.576-7.838-34.369L-7.838-34.279Q-7.889-34.064-8.088-34.041L-10.357-34.041Q-10.557-34.064-10.607-34.279M-5.096-33.963Q-5.529-33.963-5.861-34.201Q-6.193-34.439-6.414-34.828Q-6.635-35.217-6.742-35.654Q-6.850-36.092-6.850-36.490Q-6.850-36.881-6.740-37.324Q-6.631-37.768-6.414-38.148Q-6.197-38.529-5.863-38.770Q-5.529-39.010-5.096-39.010Q-4.541-39.010-4.141-38.611Q-3.740-38.213-3.543-37.627Q-3.346-37.041-3.346-36.490Q-3.346-35.936-3.543-35.348Q-3.740-34.760-4.141-34.361Q-4.541-33.963-5.096-33.963M-5.096-34.521Q-4.795-34.521-4.578-34.738Q-4.361-34.955-4.234-35.283Q-4.107-35.611-4.047-35.957Q-3.986-36.303-3.986-36.584Q-3.986-36.834-4.049-37.160Q-4.111-37.486-4.242-37.777Q-4.373-38.068-4.586-38.258Q-4.799-38.447-5.096-38.447Q-5.471-38.447-5.723-38.135Q-5.975-37.822-6.092-37.389Q-6.209-36.955-6.209-36.584Q-6.209-36.186-6.096-35.705Q-5.982-35.225-5.734-34.873Q-5.486-34.521-5.096-34.521M-2.619-35.455Q-2.619-35.740-2.463-35.994Q-2.307-36.248-2.057-36.422Q-1.807-36.596-1.521-36.682Q-1.760-36.756-1.986-36.898Q-2.213-37.041-2.355-37.250Q-2.498-37.459-2.498-37.705Q-2.498-38.103-2.252-38.398Q-2.006-38.693-1.623-38.852Q-1.240-39.010-0.850-39.010Q-0.459-39.010-0.076-38.852Q0.307-38.693 0.553-38.395Q0.799-38.096 0.799-37.705Q0.799-37.459 0.656-37.252Q0.514-37.045 0.287-36.900Q0.061-36.756-0.178-36.682Q0.275-36.545 0.596-36.219Q0.916-35.893 0.916-35.455Q0.916-35.018 0.658-34.674Q0.400-34.330-0.010-34.146Q-0.420-33.963-0.850-33.963Q-1.279-33.963-1.689-34.145Q-2.100-34.326-2.359-34.670Q-2.619-35.014-2.619-35.455M-1.978-35.455Q-1.978-35.182-1.812-34.967Q-1.646-34.752-1.385-34.637Q-1.123-34.521-0.850-34.521Q-0.576-34.521-0.316-34.637Q-0.057-34.752 0.109-34.969Q0.275-35.186 0.275-35.455Q0.275-35.732 0.109-35.949Q-0.057-36.166-0.316-36.283Q-0.576-36.400-0.850-36.400Q-1.123-36.400-1.385-36.283Q-1.646-36.166-1.812-35.951Q-1.978-35.736-1.978-35.455M-1.857-37.705Q-1.857-37.467-1.701-37.299Q-1.545-37.131-1.309-37.047Q-1.072-36.963-0.850-36.963Q-0.631-36.963-0.392-37.047Q-0.154-37.131 0.002-37.301Q0.158-37.471 0.158-37.705Q0.158-37.939 0.002-38.109Q-0.154-38.279-0.392-38.363Q-0.631-38.447-0.850-38.447Q-1.072-38.447-1.309-38.363Q-1.545-38.279-1.701-38.111Q-1.857-37.943-1.857-37.705\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M-13.988-34.041h42.324\"\u002F>\u003Cpath stroke=\"none\" d=\"m30.936-34.041-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg transform=\"translate(33.457 -5.094)\">\u003Cpath d=\"M-39.482-35.552Q-39.482-35.880-39.347-36.181Q-39.212-36.481-38.976-36.702Q-38.740-36.922-38.436-37.042Q-38.131-37.162-37.807-37.162Q-37.301-37.162-36.952-37.059Q-36.604-36.957-36.604-36.581Q-36.604-36.434-36.701-36.333Q-36.798-36.232-36.945-36.232Q-37.099-36.232-37.198-36.331Q-37.297-36.430-37.297-36.581Q-37.297-36.769-37.157-36.861Q-37.359-36.912-37.800-36.912Q-38.155-36.912-38.384-36.716Q-38.613-36.519-38.714-36.210Q-38.815-35.900-38.815-35.552Q-38.815-35.203-38.689-34.897Q-38.562-34.591-38.307-34.407Q-38.053-34.222-37.697-34.222Q-37.475-34.222-37.291-34.306Q-37.106-34.390-36.971-34.545Q-36.836-34.701-36.778-34.909Q-36.764-34.964-36.710-34.964L-36.597-34.964Q-36.566-34.964-36.544-34.940Q-36.522-34.916-36.522-34.882L-36.522-34.861Q-36.607-34.574-36.795-34.376Q-36.983-34.178-37.248-34.075Q-37.513-33.973-37.807-33.973Q-38.237-33.973-38.625-34.179Q-39.013-34.386-39.247-34.749Q-39.482-35.111-39.482-35.552M-35.975-35.524Q-35.975-35.866-35.840-36.165Q-35.705-36.464-35.465-36.688Q-35.226-36.912-34.908-37.037Q-34.590-37.162-34.259-37.162Q-33.815-37.162-33.415-36.946Q-33.015-36.731-32.781-36.353Q-32.546-35.976-32.546-35.524Q-32.546-35.183-32.688-34.899Q-32.830-34.615-33.075-34.408Q-33.319-34.202-33.628-34.087Q-33.938-33.973-34.259-33.973Q-34.690-33.973-35.091-34.174Q-35.493-34.376-35.734-34.728Q-35.975-35.080-35.975-35.524M-34.259-34.222Q-33.657-34.222-33.433-34.600Q-33.210-34.978-33.210-35.610Q-33.210-36.222-33.444-36.581Q-33.678-36.939-34.259-36.939Q-35.312-36.939-35.312-35.610Q-35.312-34.978-35.086-34.600Q-34.860-34.222-34.259-34.222M-30.270-34.041L-31.904-34.041L-31.904-34.321Q-31.675-34.321-31.526-34.355Q-31.378-34.390-31.378-34.530L-31.378-36.379Q-31.378-36.649-31.485-36.710Q-31.593-36.772-31.904-36.772L-31.904-37.052L-30.844-37.127L-30.844-36.478Q-30.673-36.786-30.369-36.957Q-30.065-37.127-29.720-37.127Q-29.320-37.127-29.043-36.987Q-28.766-36.847-28.681-36.499Q-28.513-36.792-28.214-36.960Q-27.915-37.127-27.570-37.127Q-27.064-37.127-26.780-36.904Q-26.497-36.680-26.497-36.184L-26.497-34.530Q-26.497-34.393-26.348-34.357Q-26.199-34.321-25.974-34.321L-25.974-34.041L-27.604-34.041L-27.604-34.321Q-27.379-34.321-27.228-34.357Q-27.078-34.393-27.078-34.530L-27.078-36.170Q-27.078-36.505-27.197-36.705Q-27.317-36.905-27.631-36.905Q-27.901-36.905-28.136-36.769Q-28.370-36.632-28.508-36.398Q-28.647-36.164-28.647-35.890L-28.647-34.530Q-28.647-34.393-28.498-34.357Q-28.349-34.321-28.124-34.321L-28.124-34.041L-29.754-34.041L-29.754-34.321Q-29.525-34.321-29.376-34.355Q-29.228-34.390-29.228-34.530L-29.228-36.170Q-29.228-36.505-29.347-36.705Q-29.467-36.905-29.781-36.905Q-30.051-36.905-30.286-36.769Q-30.520-36.632-30.658-36.398Q-30.796-36.164-30.796-35.890L-30.796-34.530Q-30.796-34.393-30.646-34.357Q-30.496-34.321-30.270-34.321L-30.270-34.041M-23.742-32.684L-25.372-32.684L-25.372-32.964Q-25.143-32.964-24.994-32.999Q-24.846-33.033-24.846-33.173L-24.846-36.519Q-24.846-36.690-24.983-36.731Q-25.119-36.772-25.372-36.772L-25.372-37.052L-24.292-37.127L-24.292-36.721Q-24.070-36.922-23.783-37.025Q-23.496-37.127-23.188-37.127Q-22.761-37.127-22.397-36.914Q-22.033-36.700-21.819-36.336Q-21.606-35.972-21.606-35.552Q-21.606-35.107-21.845-34.743Q-22.084-34.379-22.477-34.176Q-22.870-33.973-23.315-33.973Q-23.581-33.973-23.829-34.073Q-24.077-34.174-24.265-34.355L-24.265-33.173Q-24.265-33.036-24.116-33Q-23.967-32.964-23.742-32.964L-23.742-32.684M-24.265-36.372L-24.265-34.762Q-24.131-34.509-23.889-34.352Q-23.646-34.195-23.369-34.195Q-23.041-34.195-22.788-34.396Q-22.535-34.598-22.402-34.916Q-22.269-35.234-22.269-35.552Q-22.269-35.781-22.334-36.010Q-22.399-36.239-22.527-36.437Q-22.655-36.635-22.850-36.755Q-23.045-36.874-23.277-36.874Q-23.571-36.874-23.839-36.745Q-24.108-36.615-24.265-36.372M-20.396-34.875L-20.396-36.379Q-20.396-36.649-20.503-36.710Q-20.611-36.772-20.922-36.772L-20.922-37.052L-19.815-37.127L-19.815-34.895L-19.815-34.875Q-19.815-34.595-19.763-34.451Q-19.712-34.308-19.570-34.251Q-19.428-34.195-19.141-34.195Q-18.888-34.195-18.683-34.335Q-18.478-34.475-18.362-34.701Q-18.246-34.926-18.246-35.176L-18.246-36.379Q-18.246-36.649-18.353-36.710Q-18.461-36.772-18.772-36.772L-18.772-37.052L-17.665-37.127L-17.665-34.714Q-17.665-34.523-17.612-34.441Q-17.559-34.359-17.458-34.340Q-17.357-34.321-17.142-34.321L-17.142-34.041L-18.218-33.973L-18.218-34.537Q-18.328-34.355-18.473-34.232Q-18.618-34.109-18.805-34.041Q-18.991-33.973-19.192-33.973Q-20.396-33.973-20.396-34.875M-16.027-34.882L-16.027-36.779L-16.667-36.779L-16.667-37.001Q-16.349-37.001-16.132-37.211Q-15.915-37.421-15.814-37.731Q-15.713-38.040-15.713-38.348L-15.446-38.348L-15.446-37.059L-14.370-37.059L-14.370-36.779L-15.446-36.779L-15.446-34.895Q-15.446-34.619-15.342-34.420Q-15.238-34.222-14.978-34.222Q-14.821-34.222-14.715-34.326Q-14.609-34.431-14.559-34.584Q-14.510-34.738-14.510-34.895L-14.510-35.309L-14.243-35.309L-14.243-34.882Q-14.243-34.656-14.342-34.446Q-14.442-34.236-14.626-34.104Q-14.811-33.973-15.040-33.973Q-15.477-33.973-15.752-34.210Q-16.027-34.448-16.027-34.882M-13.474-35.576Q-13.474-35.897-13.349-36.186Q-13.225-36.475-12.999-36.698Q-12.774-36.922-12.478-37.042Q-12.182-37.162-11.864-37.162Q-11.536-37.162-11.275-37.062Q-11.013-36.963-10.837-36.781Q-10.661-36.598-10.567-36.340Q-10.473-36.082-10.473-35.750Q-10.473-35.658-10.555-35.637L-12.811-35.637L-12.811-35.576Q-12.811-34.988-12.527-34.605Q-12.244-34.222-11.676-34.222Q-11.355-34.222-11.087-34.415Q-10.818-34.608-10.730-34.923Q-10.723-34.964-10.648-34.978L-10.555-34.978Q-10.473-34.954-10.473-34.882Q-10.473-34.875-10.480-34.848Q-10.593-34.451-10.964-34.212Q-11.335-33.973-11.758-33.973Q-12.196-33.973-12.596-34.181Q-12.996-34.390-13.235-34.757Q-13.474-35.124-13.474-35.576M-12.804-35.846L-10.989-35.846Q-10.989-36.123-11.087-36.375Q-11.184-36.628-11.382-36.784Q-11.581-36.939-11.864-36.939Q-12.141-36.939-12.355-36.781Q-12.568-36.622-12.686-36.367Q-12.804-36.112-12.804-35.846\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M141.213-48.267h59.083V-71.03h-59.083Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(184.341 -22.83)\">\u003Cpath d=\"M-38.612-33.775Q-38.612-33.838-38.581-33.881L-34.835-39.139Q-35.292-38.904-35.858-38.904Q-36.511-38.904-37.116-39.225Q-36.972-38.877-36.972-38.432Q-36.972-38.072-37.093-37.701Q-37.214-37.330-37.464-37.074Q-37.714-36.818-38.077-36.818Q-38.464-36.818-38.747-37.062Q-39.030-37.307-39.177-37.680Q-39.323-38.053-39.323-38.432Q-39.323-38.811-39.177-39.182Q-39.030-39.553-38.747-39.797Q-38.464-40.041-38.077-40.041Q-37.761-40.041-37.491-39.803Q-37.155-39.498-36.726-39.326Q-36.296-39.154-35.858-39.154Q-35.366-39.154-34.948-39.367Q-34.530-39.580-34.230-39.978Q-34.187-40.041-34.093-40.041Q-34.019-40.041-33.964-39.986Q-33.909-39.932-33.909-39.857Q-33.909-39.795-33.941-39.752L-38.284-33.658Q-38.331-33.592-38.429-33.592Q-38.511-33.592-38.562-33.643Q-38.612-33.693-38.612-33.775M-38.077-37.072Q-37.804-37.072-37.616-37.297Q-37.429-37.521-37.341-37.844Q-37.253-38.166-37.253-38.432Q-37.253-38.689-37.341-39.012Q-37.429-39.334-37.616-39.559Q-37.804-39.783-38.077-39.783Q-38.464-39.783-38.607-39.355Q-38.749-38.928-38.749-38.432Q-38.749-37.924-38.608-37.498Q-38.468-37.072-38.077-37.072M-34.300-33.592Q-34.687-33.592-34.970-33.838Q-35.253-34.084-35.401-34.457Q-35.550-34.830-35.550-35.209Q-35.550-35.482-35.464-35.770Q-35.378-36.057-35.224-36.291Q-35.069-36.525-34.833-36.672Q-34.597-36.818-34.300-36.818Q-34.019-36.818-33.812-36.666Q-33.605-36.514-33.466-36.271Q-33.327-36.029-33.261-35.748Q-33.194-35.467-33.194-35.209Q-33.194-34.850-33.316-34.477Q-33.437-34.103-33.687-33.848Q-33.937-33.592-34.300-33.592M-34.300-33.850Q-34.026-33.850-33.839-34.074Q-33.651-34.299-33.564-34.621Q-33.476-34.943-33.476-35.209Q-33.476-35.467-33.564-35.789Q-33.651-36.111-33.839-36.336Q-34.026-36.561-34.300-36.561Q-34.691-36.561-34.831-36.131Q-34.972-35.701-34.972-35.209Q-34.972-34.701-34.835-34.275Q-34.698-33.850-34.300-33.850\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(184.341 -22.83)\">\u003Cpath d=\"M-32.489-34.279L-32.489-34.369Q-32.431-34.576-32.239-34.600L-31.528-34.600L-31.528-36.928L-32.239-36.928Q-32.435-36.951-32.489-37.170L-32.489-37.256Q-32.431-37.467-32.239-37.490L-31.138-37.490Q-30.939-37.471-30.888-37.256L-30.888-36.928Q-30.626-37.213-30.271-37.371Q-29.915-37.529-29.528-37.529Q-29.235-37.529-29.001-37.395Q-28.767-37.260-28.767-36.994Q-28.767-36.826-28.876-36.709Q-28.985-36.592-29.153-36.592Q-29.306-36.592-29.421-36.703Q-29.536-36.814-29.536-36.971Q-29.911-36.971-30.226-36.770Q-30.540-36.568-30.714-36.234Q-30.888-35.900-30.888-35.521L-30.888-34.600L-29.942-34.600Q-29.735-34.576-29.696-34.369L-29.696-34.279Q-29.735-34.064-29.942-34.041L-32.239-34.041Q-32.431-34.064-32.489-34.279M-27.907-35.768Q-27.907-36.248-27.663-36.662Q-27.419-37.076-27.003-37.314Q-26.587-37.553-26.107-37.553Q-25.552-37.553-25.173-37.443Q-24.794-37.334-24.794-36.928Q-24.794-36.760-24.907-36.637Q-25.021-36.514-25.192-36.514Q-25.364-36.514-25.483-36.629Q-25.603-36.744-25.603-36.912L-25.603-36.971Q-25.763-36.994-26.099-36.994Q-26.427-36.994-26.694-36.824Q-26.962-36.654-27.114-36.371Q-27.267-36.088-27.267-35.768Q-27.267-35.447-27.095-35.166Q-26.923-34.885-26.638-34.723Q-26.353-34.561-26.025-34.561Q-25.712-34.561-25.585-34.664Q-25.458-34.768-25.341-34.957Q-25.224-35.146-25.107-35.162L-24.939-35.162Q-24.833-35.150-24.769-35.082Q-24.704-35.014-24.704-34.912Q-24.704-34.865-24.724-34.826Q-24.833-34.533-25.036-34.353Q-25.239-34.174-25.515-34.088Q-25.790-34.002-26.107-34.002Q-26.591-34.002-27.007-34.240Q-27.423-34.478-27.665-34.881Q-27.907-35.283-27.907-35.768M-23.962-34.279L-23.962-34.369Q-23.923-34.576-23.716-34.600L-23.310-34.600L-22.380-35.818L-23.251-36.928L-23.669-36.928Q-23.864-36.947-23.915-37.170L-23.915-37.256Q-23.864-37.467-23.669-37.490L-22.509-37.490Q-22.310-37.467-22.259-37.256L-22.259-37.170Q-22.310-36.951-22.509-36.928L-22.618-36.928L-22.122-36.271L-21.646-36.928L-21.763-36.928Q-21.962-36.951-22.013-37.170L-22.013-37.256Q-21.962-37.467-21.763-37.490L-20.603-37.490Q-20.407-37.471-20.357-37.256L-20.357-37.170Q-20.407-36.951-20.603-36.928L-21.013-36.928L-21.860-35.818L-20.900-34.600L-20.493-34.600Q-20.294-34.576-20.243-34.369L-20.243-34.279Q-20.282-34.064-20.493-34.041L-21.646-34.041Q-21.853-34.064-21.892-34.279L-21.892-34.369Q-21.853-34.576-21.646-34.600L-21.517-34.600L-22.122-35.455L-22.708-34.600L-22.564-34.600Q-22.357-34.576-22.317-34.369L-22.317-34.279Q-22.357-34.064-22.564-34.041L-23.716-34.041Q-23.911-34.061-23.962-34.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(184.341 -22.83)\">\u003Cpath d=\"M-11.640-35.018L-16.953-35.018Q-17.031-35.025-17.080-35.074Q-17.128-35.123-17.128-35.201Q-17.128-35.271-17.081-35.322Q-17.035-35.373-16.953-35.385L-11.640-35.385Q-11.566-35.373-11.519-35.322Q-11.472-35.271-11.472-35.201Q-11.472-35.123-11.521-35.074Q-11.570-35.025-11.640-35.018M-11.640-36.705L-16.953-36.705Q-17.031-36.713-17.080-36.762Q-17.128-36.811-17.128-36.889Q-17.128-36.959-17.081-37.010Q-17.035-37.061-16.953-37.072L-11.640-37.072Q-11.566-37.061-11.519-37.010Q-11.472-36.959-11.472-36.889Q-11.472-36.811-11.521-36.762Q-11.570-36.713-11.640-36.705\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(184.341 -22.83)\">\u003Cpath d=\"M-6.508-33.963Q-6.941-33.963-7.274-34.201Q-7.606-34.439-7.826-34.828Q-8.047-35.217-8.154-35.654Q-8.262-36.092-8.262-36.490Q-8.262-36.881-8.152-37.324Q-8.043-37.768-7.826-38.148Q-7.609-38.529-7.275-38.770Q-6.941-39.010-6.508-39.010Q-5.953-39.010-5.553-38.611Q-5.152-38.213-4.955-37.627Q-4.758-37.041-4.758-36.490Q-4.758-35.936-4.955-35.348Q-5.152-34.760-5.553-34.361Q-5.953-33.963-6.508-33.963M-6.508-34.521Q-6.207-34.521-5.990-34.738Q-5.774-34.955-5.647-35.283Q-5.520-35.611-5.459-35.957Q-5.399-36.303-5.399-36.584Q-5.399-36.834-5.461-37.160Q-5.524-37.486-5.654-37.777Q-5.785-38.068-5.998-38.258Q-6.211-38.447-6.508-38.447Q-6.883-38.447-7.135-38.135Q-7.387-37.822-7.504-37.389Q-7.621-36.955-7.621-36.584Q-7.621-36.186-7.508-35.705Q-7.395-35.225-7.147-34.873Q-6.899-34.521-6.508-34.521M-4.125-34.279L-4.125-34.369Q-4.086-34.576-3.879-34.600L-3.473-34.600L-2.543-35.818L-3.414-36.928L-3.832-36.928Q-4.027-36.947-4.078-37.170L-4.078-37.256Q-4.027-37.467-3.832-37.490L-2.672-37.490Q-2.473-37.467-2.422-37.256L-2.422-37.170Q-2.473-36.951-2.672-36.928L-2.781-36.928L-2.285-36.271L-1.809-36.928L-1.926-36.928Q-2.125-36.951-2.176-37.170L-2.176-37.256Q-2.125-37.467-1.926-37.490L-0.766-37.490Q-0.570-37.471-0.520-37.256L-0.520-37.170Q-0.570-36.951-0.766-36.928L-1.176-36.928L-2.024-35.818L-1.063-34.600L-0.656-34.600Q-0.457-34.576-0.406-34.369L-0.406-34.279Q-0.445-34.064-0.656-34.041L-1.809-34.041Q-2.016-34.064-2.055-34.279L-2.055-34.369Q-2.016-34.576-1.809-34.600L-1.680-34.600L-2.285-35.455L-2.871-34.600L-2.727-34.600Q-2.520-34.576-2.481-34.369L-2.481-34.279Q-2.520-34.064-2.727-34.041L-3.879-34.041Q-4.074-34.061-4.125-34.279M0.719-34.279L0.719-34.369Q0.769-34.576 0.969-34.600L1.785-34.600L1.785-37.783Q1.406-37.475 0.953-37.475Q0.723-37.475 0.672-37.705L0.672-37.795Q0.723-38.010 0.918-38.033Q1.246-38.033 1.500-38.271Q1.754-38.510 1.894-38.857Q1.965-38.986 2.121-39.010L2.176-39.010Q2.371-38.990 2.422-38.775L2.422-34.600L3.238-34.600Q3.437-34.576 3.488-34.369L3.488-34.279Q3.437-34.064 3.238-34.041L0.969-34.041Q0.769-34.064 0.719-34.279M6.230-33.963Q5.797-33.963 5.465-34.201Q5.133-34.439 4.912-34.828Q4.691-35.217 4.584-35.654Q4.476-36.092 4.476-36.490Q4.476-36.881 4.586-37.324Q4.695-37.768 4.912-38.148Q5.129-38.529 5.463-38.770Q5.797-39.010 6.230-39.010Q6.785-39.010 7.185-38.611Q7.586-38.213 7.783-37.627Q7.980-37.041 7.980-36.490Q7.980-35.936 7.783-35.348Q7.586-34.760 7.185-34.361Q6.785-33.963 6.230-33.963M6.230-34.521Q6.531-34.521 6.748-34.738Q6.965-34.955 7.092-35.283Q7.219-35.611 7.279-35.957Q7.340-36.303 7.340-36.584Q7.340-36.834 7.277-37.160Q7.215-37.486 7.084-37.777Q6.953-38.068 6.740-38.258Q6.527-38.447 6.230-38.447Q5.855-38.447 5.603-38.135Q5.351-37.822 5.234-37.389Q5.117-36.955 5.117-36.584Q5.117-36.186 5.230-35.705Q5.344-35.225 5.592-34.873Q5.840-34.521 6.230-34.521M8.707-35.455Q8.707-35.740 8.863-35.994Q9.019-36.248 9.269-36.422Q9.519-36.596 9.805-36.682Q9.566-36.756 9.340-36.898Q9.113-37.041 8.971-37.250Q8.828-37.459 8.828-37.705Q8.828-38.103 9.074-38.398Q9.320-38.693 9.703-38.852Q10.086-39.010 10.476-39.010Q10.867-39.010 11.250-38.852Q11.633-38.693 11.879-38.395Q12.125-38.096 12.125-37.705Q12.125-37.459 11.982-37.252Q11.840-37.045 11.613-36.900Q11.387-36.756 11.148-36.682Q11.601-36.545 11.922-36.219Q12.242-35.893 12.242-35.455Q12.242-35.018 11.984-34.674Q11.726-34.330 11.316-34.146Q10.906-33.963 10.476-33.963Q10.047-33.963 9.637-34.145Q9.226-34.326 8.967-34.670Q8.707-35.014 8.707-35.455M9.348-35.455Q9.348-35.182 9.514-34.967Q9.680-34.752 9.941-34.637Q10.203-34.521 10.476-34.521Q10.750-34.521 11.010-34.637Q11.269-34.752 11.435-34.969Q11.601-35.186 11.601-35.455Q11.601-35.732 11.435-35.949Q11.269-36.166 11.010-36.283Q10.750-36.400 10.476-36.400Q10.203-36.400 9.941-36.283Q9.680-36.166 9.514-35.951Q9.348-35.736 9.348-35.455M9.469-37.705Q9.469-37.467 9.625-37.299Q9.781-37.131 10.017-37.047Q10.254-36.963 10.476-36.963Q10.695-36.963 10.934-37.047Q11.172-37.131 11.328-37.301Q11.484-37.471 11.484-37.705Q11.484-37.939 11.328-38.109Q11.172-38.279 10.934-38.363Q10.695-38.447 10.476-38.447Q10.254-38.447 10.017-38.363Q9.781-38.279 9.625-38.111Q9.469-37.943 9.469-37.705\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M56.943-45.822V-59.65h81.47\"\u002F>\u003Cpath stroke=\"none\" d=\"m141.013-59.649-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(66.23 -29.34)\">\u003Cpath d=\"M-39.347-34.279L-39.347-34.369Q-39.296-34.576-39.101-34.600L-37.995-34.600L-37.995-38.369L-39.101-38.369Q-39.296-38.393-39.347-38.607L-39.347-38.697Q-39.296-38.904-39.101-38.928L-37.605-38.928Q-37.413-38.904-37.355-38.697L-37.355-34.600L-36.253-34.600Q-36.054-34.576-36.003-34.369L-36.003-34.279Q-36.054-34.064-36.253-34.041L-39.101-34.041Q-39.296-34.064-39.347-34.279M-32.038-35.529L-34.480-35.529Q-34.425-35.252-34.228-35.029Q-34.030-34.807-33.753-34.684Q-33.476-34.561-33.191-34.561Q-32.718-34.561-32.495-34.850Q-32.487-34.861-32.431-34.967Q-32.374-35.072-32.325-35.115Q-32.276-35.158-32.183-35.170L-32.038-35.170Q-31.847-35.150-31.788-34.936L-31.788-34.881Q-31.855-34.580-32.085-34.383Q-32.316-34.186-32.628-34.094Q-32.941-34.002-33.245-34.002Q-33.730-34.002-34.169-34.230Q-34.608-34.459-34.876-34.859Q-35.144-35.260-35.144-35.752L-35.144-35.811Q-35.144-36.279-34.898-36.682Q-34.651-37.084-34.243-37.318Q-33.835-37.553-33.366-37.553Q-32.862-37.553-32.509-37.330Q-32.155-37.107-31.972-36.719Q-31.788-36.330-31.788-35.826L-31.788-35.768Q-31.847-35.553-32.038-35.529M-34.472-36.080L-32.444-36.080Q-32.491-36.490-32.730-36.742Q-32.968-36.994-33.366-36.994Q-33.761-36.994-34.067-36.732Q-34.374-36.471-34.472-36.080M-30.898-35.154Q-30.898-35.600-30.483-35.857Q-30.069-36.115-29.528-36.215Q-28.987-36.314-28.480-36.322Q-28.480-36.537-28.614-36.689Q-28.749-36.842-28.956-36.918Q-29.163-36.994-29.374-36.994Q-29.718-36.994-29.878-36.971L-29.878-36.912Q-29.878-36.744-29.997-36.629Q-30.116-36.514-30.280-36.514Q-30.456-36.514-30.571-36.637Q-30.687-36.760-30.687-36.928Q-30.687-37.334-30.306-37.443Q-29.925-37.553-29.366-37.553Q-29.097-37.553-28.829-37.475Q-28.562-37.396-28.337-37.246Q-28.112-37.096-27.976-36.875Q-27.839-36.654-27.839-36.377L-27.839-34.658Q-27.839-34.600-27.312-34.600Q-27.116-34.580-27.066-34.369L-27.066-34.279Q-27.116-34.064-27.312-34.041L-27.456-34.041Q-27.800-34.041-28.028-34.088Q-28.257-34.135-28.401-34.322Q-28.862-34.002-29.569-34.002Q-29.905-34.002-30.210-34.143Q-30.515-34.283-30.706-34.545Q-30.898-34.807-30.898-35.154M-30.257-35.146Q-30.257-34.873-30.015-34.717Q-29.773-34.561-29.487-34.561Q-29.269-34.561-29.036-34.619Q-28.804-34.678-28.642-34.816Q-28.480-34.955-28.480-35.178L-28.480-35.768Q-28.761-35.768-29.177-35.711Q-29.593-35.654-29.925-35.516Q-30.257-35.377-30.257-35.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.23 -29.34)\">\u003Cpath d=\"M-26.327-34.506Q-26.327-34.689-26.191-34.826Q-26.054-34.963-25.862-34.963Q-25.671-34.963-25.538-34.830Q-25.405-34.697-25.405-34.506Q-25.405-34.307-25.538-34.174Q-25.671-34.041-25.862-34.041Q-26.054-34.041-26.191-34.178Q-26.327-34.314-26.327-34.506M-26.327-37.033Q-26.327-37.217-26.191-37.353Q-26.054-37.490-25.862-37.490Q-25.671-37.490-25.538-37.357Q-25.405-37.225-25.405-37.033Q-25.405-36.834-25.538-36.701Q-25.671-36.568-25.862-36.568Q-26.054-36.568-26.191-36.705Q-26.327-36.842-26.327-37.033\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.23 -29.34)\">\u003Cpath d=\"M-20.044-35.002L-20.044-37.193L-20.747-37.193L-20.747-37.447Q-20.391-37.447-20.149-37.680Q-19.907-37.912-19.796-38.260Q-19.684-38.607-19.684-38.963L-19.403-38.963L-19.403-37.490L-18.227-37.490L-18.227-37.193L-19.403-37.193L-19.403-35.018Q-19.403-34.697-19.284-34.469Q-19.165-34.240-18.884-34.240Q-18.704-34.240-18.587-34.363Q-18.469-34.486-18.417-34.666Q-18.364-34.846-18.364-35.018L-18.364-35.490L-18.083-35.490L-18.083-35.002Q-18.083-34.748-18.188-34.508Q-18.294-34.268-18.491-34.115Q-18.688-33.963-18.946-33.963Q-19.262-33.963-19.514-34.086Q-19.766-34.209-19.905-34.443Q-20.044-34.678-20.044-35.002M-15.434-34.041L-17.290-34.041L-17.290-34.338Q-17.016-34.338-16.848-34.385Q-16.680-34.432-16.680-34.600L-16.680-38.760Q-16.680-38.975-16.743-39.070Q-16.805-39.166-16.925-39.187Q-17.044-39.209-17.290-39.209L-17.290-39.506L-16.067-39.592L-16.067-36.889Q-15.942-37.100-15.755-37.250Q-15.567-37.400-15.341-37.484Q-15.114-37.568-14.868-37.568Q-13.700-37.568-13.700-36.490L-13.700-34.600Q-13.700-34.432-13.530-34.385Q-13.360-34.338-13.091-34.338L-13.091-34.041L-14.946-34.041L-14.946-34.338Q-14.673-34.338-14.505-34.385Q-14.337-34.432-14.337-34.600L-14.337-36.475Q-14.337-36.857-14.458-37.086Q-14.579-37.314-14.930-37.314Q-15.243-37.314-15.497-37.152Q-15.751-36.990-15.897-36.721Q-16.044-36.451-16.044-36.154L-16.044-34.600Q-16.044-34.432-15.874-34.385Q-15.704-34.338-15.434-34.338L-15.434-34.041M-12.645-35.795Q-12.645-36.275-12.413-36.691Q-12.180-37.107-11.770-37.357Q-11.360-37.607-10.884-37.607Q-10.153-37.607-9.755-37.166Q-9.356-36.725-9.356-35.994Q-9.356-35.889-9.450-35.865L-11.899-35.865L-11.899-35.795Q-11.899-35.385-11.778-35.029Q-11.657-34.674-11.386-34.457Q-11.114-34.240-10.684-34.240Q-10.321-34.240-10.024-34.469Q-9.727-34.697-9.626-35.049Q-9.618-35.096-9.532-35.111L-9.450-35.111Q-9.356-35.084-9.356-35.002Q-9.356-34.994-9.364-34.963Q-9.427-34.736-9.565-34.553Q-9.704-34.369-9.895-34.236Q-10.087-34.103-10.305-34.033Q-10.524-33.963-10.762-33.963Q-11.134-33.963-11.471-34.100Q-11.809-34.236-12.077-34.488Q-12.344-34.740-12.495-35.080Q-12.645-35.420-12.645-35.795M-11.891-36.103L-9.930-36.103Q-9.930-36.408-10.032-36.699Q-10.134-36.990-10.350-37.172Q-10.567-37.353-10.884-37.353Q-11.184-37.353-11.415-37.166Q-11.645-36.978-11.768-36.687Q-11.891-36.396-11.891-36.103\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(66.23 -29.34)\">\u003Cpath d=\"M-5.932-34.873Q-5.932-35.357-5.530-35.652Q-5.127-35.947-4.577-36.066Q-4.026-36.186-3.534-36.186L-3.534-36.475Q-3.534-36.701-3.649-36.908Q-3.764-37.115-3.961-37.234Q-4.159-37.353-4.389-37.353Q-4.815-37.353-5.100-37.248Q-5.030-37.221-4.983-37.166Q-4.936-37.111-4.911-37.041Q-4.885-36.971-4.885-36.896Q-4.885-36.791-4.936-36.699Q-4.987-36.607-5.079-36.557Q-5.170-36.506-5.276-36.506Q-5.381-36.506-5.473-36.557Q-5.565-36.607-5.616-36.699Q-5.666-36.791-5.666-36.896Q-5.666-37.314-5.278-37.461Q-4.889-37.607-4.389-37.607Q-4.057-37.607-3.704-37.477Q-3.350-37.346-3.122-37.092Q-2.893-36.838-2.893-36.490L-2.893-34.689Q-2.893-34.557-2.821-34.447Q-2.748-34.338-2.620-34.338Q-2.495-34.338-2.426-34.443Q-2.358-34.549-2.358-34.689L-2.358-35.201L-2.077-35.201L-2.077-34.689Q-2.077-34.486-2.194-34.328Q-2.311-34.170-2.493-34.086Q-2.674-34.002-2.877-34.002Q-3.108-34.002-3.260-34.174Q-3.413-34.346-3.444-34.576Q-3.604-34.295-3.913-34.129Q-4.221-33.963-4.573-33.963Q-5.084-33.963-5.508-34.186Q-5.932-34.408-5.932-34.873M-5.245-34.873Q-5.245-34.588-5.018-34.402Q-4.791-34.217-4.498-34.217Q-4.252-34.217-4.028-34.334Q-3.803-34.451-3.668-34.654Q-3.534-34.857-3.534-35.111L-3.534-35.943Q-3.799-35.943-4.084-35.889Q-4.370-35.834-4.641-35.705Q-4.913-35.576-5.079-35.369Q-5.245-35.162-5.245-34.873M0.033-33.963Q-0.448-33.963-0.856-34.207Q-1.264-34.451-1.502-34.865Q-1.741-35.279-1.741-35.768Q-1.741-36.260-1.483-36.676Q-1.225-37.092-0.793-37.330Q-0.362-37.568 0.130-37.568Q0.752-37.568 1.201-37.131L1.201-38.760Q1.201-38.975 1.138-39.070Q1.076-39.166 0.959-39.187Q0.841-39.209 0.595-39.209L0.595-39.506L1.818-39.592L1.818-34.783Q1.818-34.572 1.880-34.477Q1.943-34.381 2.060-34.359Q2.177-34.338 2.427-34.338L2.427-34.041L1.177-33.963L1.177-34.447Q0.712-33.963 0.033-33.963M0.099-34.217Q0.439-34.217 0.732-34.408Q1.025-34.600 1.177-34.896L1.177-36.728Q1.029-37.002 0.767-37.158Q0.505-37.314 0.193-37.314Q-0.432-37.314-0.715-36.867Q-0.998-36.420-0.998-35.760Q-0.998-35.115-0.747-34.666Q-0.495-34.217 0.099-34.217M4.752-33.963Q4.271-33.963 3.863-34.207Q3.455-34.451 3.216-34.865Q2.978-35.279 2.978-35.768Q2.978-36.260 3.236-36.676Q3.494-37.092 3.925-37.330Q4.357-37.568 4.849-37.568Q5.470-37.568 5.920-37.131L5.920-38.760Q5.920-38.975 5.857-39.070Q5.795-39.166 5.677-39.187Q5.560-39.209 5.314-39.209L5.314-39.506L6.537-39.592L6.537-34.783Q6.537-34.572 6.599-34.477Q6.662-34.381 6.779-34.359Q6.896-34.338 7.146-34.338L7.146-34.041L5.896-33.963L5.896-34.447Q5.431-33.963 4.752-33.963M4.818-34.217Q5.158-34.217 5.451-34.408Q5.744-34.600 5.896-34.896L5.896-36.728Q5.748-37.002 5.486-37.158Q5.224-37.314 4.912-37.314Q4.287-37.314 4.003-36.867Q3.720-36.420 3.720-35.760Q3.720-35.115 3.972-34.666Q4.224-34.217 4.818-34.217M9.662-34.041L7.681-34.041L7.681-34.338Q7.951-34.338 8.119-34.383Q8.287-34.428 8.287-34.600L8.287-36.736Q8.287-36.951 8.224-37.047Q8.162-37.143 8.044-37.164Q7.927-37.186 7.681-37.186L7.681-37.482L8.849-37.568L8.849-36.783Q8.927-36.994 9.080-37.180Q9.232-37.365 9.431-37.467Q9.630-37.568 9.857-37.568Q10.103-37.568 10.294-37.424Q10.486-37.279 10.486-37.049Q10.486-36.893 10.380-36.783Q10.275-36.674 10.119-36.674Q9.962-36.674 9.853-36.783Q9.744-36.893 9.744-37.049Q9.744-37.209 9.849-37.314Q9.525-37.314 9.310-37.086Q9.095-36.857 9-36.518Q8.904-36.178 8.904-35.873L8.904-34.600Q8.904-34.432 9.130-34.385Q9.357-34.338 9.662-34.338L9.662-34.041M10.966-35.795Q10.966-36.275 11.199-36.691Q11.431-37.107 11.841-37.357Q12.252-37.607 12.728-37.607Q13.459-37.607 13.857-37.166Q14.255-36.725 14.255-35.994Q14.255-35.889 14.162-35.865L11.712-35.865L11.712-35.795Q11.712-35.385 11.834-35.029Q11.955-34.674 12.226-34.457Q12.498-34.240 12.927-34.240Q13.291-34.240 13.587-34.469Q13.884-34.697 13.986-35.049Q13.994-35.096 14.080-35.111L14.162-35.111Q14.255-35.084 14.255-35.002Q14.255-34.994 14.248-34.963Q14.185-34.736 14.046-34.553Q13.908-34.369 13.716-34.236Q13.525-34.103 13.306-34.033Q13.087-33.963 12.849-33.963Q12.478-33.963 12.140-34.100Q11.802-34.236 11.535-34.488Q11.267-34.740 11.117-35.080Q10.966-35.420 10.966-35.795M11.720-36.103L13.681-36.103Q13.681-36.408 13.580-36.699Q13.478-36.990 13.261-37.172Q13.044-37.353 12.728-37.353Q12.427-37.353 12.197-37.166Q11.966-36.978 11.843-36.687Q11.720-36.396 11.720-36.103M14.787-34.049L14.787-35.271Q14.787-35.299 14.818-35.330Q14.849-35.361 14.873-35.361L14.978-35.361Q15.048-35.361 15.064-35.299Q15.127-34.978 15.265-34.738Q15.404-34.498 15.636-34.357Q15.869-34.217 16.177-34.217Q16.416-34.217 16.625-34.277Q16.834-34.338 16.970-34.486Q17.107-34.635 17.107-34.881Q17.107-35.135 16.896-35.301Q16.685-35.467 16.416-35.521L15.794-35.635Q15.388-35.713 15.087-35.969Q14.787-36.225 14.787-36.600Q14.787-36.967 14.988-37.189Q15.189-37.412 15.513-37.510Q15.837-37.607 16.177-37.607Q16.642-37.607 16.939-37.400L17.162-37.584Q17.185-37.607 17.216-37.607L17.267-37.607Q17.298-37.607 17.326-37.580Q17.353-37.553 17.353-37.521L17.353-36.537Q17.353-36.506 17.328-36.477Q17.302-36.447 17.267-36.447L17.162-36.447Q17.127-36.447 17.099-36.475Q17.072-36.502 17.072-36.537Q17.072-36.936 16.820-37.156Q16.568-37.377 16.169-37.377Q15.814-37.377 15.531-37.254Q15.248-37.131 15.248-36.826Q15.248-36.607 15.449-36.475Q15.650-36.342 15.896-36.299L16.521-36.186Q16.951-36.096 17.259-35.799Q17.568-35.502 17.568-35.088Q17.568-34.518 17.169-34.240Q16.771-33.963 16.177-33.963Q15.627-33.963 15.275-34.299L14.978-33.986Q14.955-33.963 14.919-33.963L14.873-33.963Q14.849-33.963 14.818-33.994Q14.787-34.025 14.787-34.049M18.138-34.049L18.138-35.271Q18.138-35.299 18.169-35.330Q18.201-35.361 18.224-35.361L18.330-35.361Q18.400-35.361 18.416-35.299Q18.478-34.978 18.617-34.738Q18.755-34.498 18.988-34.357Q19.220-34.217 19.529-34.217Q19.767-34.217 19.976-34.277Q20.185-34.338 20.322-34.486Q20.459-34.635 20.459-34.881Q20.459-35.135 20.248-35.301Q20.037-35.467 19.767-35.521L19.146-35.635Q18.740-35.713 18.439-35.969Q18.138-36.225 18.138-36.600Q18.138-36.967 18.339-37.189Q18.541-37.412 18.865-37.510Q19.189-37.607 19.529-37.607Q19.994-37.607 20.291-37.400L20.513-37.584Q20.537-37.607 20.568-37.607L20.619-37.607Q20.650-37.607 20.677-37.580Q20.705-37.553 20.705-37.521L20.705-36.537Q20.705-36.506 20.679-36.477Q20.654-36.447 20.619-36.447L20.513-36.447Q20.478-36.447 20.451-36.475Q20.423-36.502 20.423-36.537Q20.423-36.936 20.171-37.156Q19.919-37.377 19.521-37.377Q19.166-37.377 18.882-37.254Q18.599-37.131 18.599-36.826Q18.599-36.607 18.800-36.475Q19.002-36.342 19.248-36.299L19.873-36.186Q20.302-36.096 20.611-35.799Q20.919-35.502 20.919-35.088Q20.919-34.518 20.521-34.240Q20.123-33.963 19.529-33.963Q18.978-33.963 18.627-34.299L18.330-33.986Q18.306-33.963 18.271-33.963L18.224-33.963Q18.201-33.963 18.169-33.994Q18.138-34.025 18.138-34.049\" 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=\"M145.147 2.947h51.215v-22.762h-51.215Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(195.18 27.607)\">\u003Cpath d=\"M-38.644-34.041L-38.925-34.041L-38.925-38.760Q-38.925-38.975-38.987-39.070Q-39.050-39.166-39.167-39.187Q-39.284-39.209-39.530-39.209L-39.530-39.506L-38.308-39.592L-38.308-37.103Q-37.831-37.568-37.132-37.568Q-36.651-37.568-36.243-37.324Q-35.835-37.080-35.599-36.666Q-35.362-36.252-35.362-35.768Q-35.362-35.393-35.511-35.064Q-35.659-34.736-35.929-34.484Q-36.198-34.232-36.542-34.098Q-36.886-33.963-37.245-33.963Q-37.566-33.963-37.864-34.111Q-38.163-34.260-38.370-34.521L-38.644-34.041M-38.284-36.713L-38.284-34.873Q-38.132-34.576-37.872-34.396Q-37.612-34.217-37.300-34.217Q-36.874-34.217-36.607-34.436Q-36.339-34.654-36.224-35Q-36.108-35.346-36.108-35.768Q-36.108-36.416-36.357-36.865Q-36.605-37.314-37.202-37.314Q-37.538-37.314-37.827-37.156Q-38.116-36.998-38.284-36.713\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(195.18 27.607)\">\u003Cpath d=\"M-34.654-32.744Q-34.540-32.666-34.365-32.666Q-34.076-32.666-33.855-32.879Q-33.634-33.092-33.509-33.393L-33.220-34.041L-34.494-36.928Q-34.576-37.103-34.720-37.148Q-34.865-37.193-35.134-37.193L-35.134-37.490L-33.415-37.490L-33.415-37.193Q-33.837-37.193-33.837-37.010Q-33.837-36.998-33.822-36.928L-32.884-34.803L-32.052-36.713Q-32.013-36.803-32.013-36.881Q-32.013-37.021-32.115-37.107Q-32.216-37.193-32.357-37.193L-32.357-37.490L-31.005-37.490L-31.005-37.193Q-31.259-37.193-31.453-37.068Q-31.646-36.943-31.751-36.713L-33.197-33.393Q-33.310-33.139-33.476-32.916Q-33.642-32.693-33.871-32.551Q-34.099-32.408-34.365-32.408Q-34.662-32.408-34.902-32.600Q-35.142-32.791-35.142-33.080Q-35.142-33.236-35.037-33.338Q-34.931-33.439-34.783-33.439Q-34.677-33.439-34.597-33.393Q-34.517-33.346-34.470-33.268Q-34.423-33.189-34.423-33.080Q-34.423-32.959-34.484-32.871Q-34.544-32.783-34.654-32.744M-29.966-35.002L-29.966-37.193L-30.669-37.193L-30.669-37.447Q-30.314-37.447-30.072-37.680Q-29.830-37.912-29.718-38.260Q-29.607-38.607-29.607-38.963L-29.326-38.963L-29.326-37.490L-28.150-37.490L-28.150-37.193L-29.326-37.193L-29.326-35.018Q-29.326-34.697-29.206-34.469Q-29.087-34.240-28.806-34.240Q-28.626-34.240-28.509-34.363Q-28.392-34.486-28.339-34.666Q-28.287-34.846-28.287-35.018L-28.287-35.490L-28.005-35.490L-28.005-35.002Q-28.005-34.748-28.111-34.508Q-28.216-34.268-28.414-34.115Q-28.611-33.963-28.869-33.963Q-29.185-33.963-29.437-34.086Q-29.689-34.209-29.828-34.443Q-29.966-34.678-29.966-35.002M-27.287-35.795Q-27.287-36.275-27.054-36.691Q-26.822-37.107-26.412-37.357Q-26.001-37.607-25.525-37.607Q-24.794-37.607-24.396-37.166Q-23.998-36.725-23.998-35.994Q-23.998-35.889-24.091-35.865L-26.540-35.865L-26.540-35.795Q-26.540-35.385-26.419-35.029Q-26.298-34.674-26.027-34.457Q-25.755-34.240-25.326-34.240Q-24.962-34.240-24.665-34.469Q-24.369-34.697-24.267-35.049Q-24.259-35.096-24.173-35.111L-24.091-35.111Q-23.998-35.084-23.998-35.002Q-23.998-34.994-24.005-34.963Q-24.068-34.736-24.206-34.553Q-24.345-34.369-24.537-34.236Q-24.728-34.103-24.947-34.033Q-25.165-33.963-25.404-33.963Q-25.775-33.963-26.113-34.100Q-26.451-34.236-26.718-34.488Q-26.986-34.740-27.136-35.080Q-27.287-35.420-27.287-35.795M-26.533-36.103L-24.572-36.103Q-24.572-36.408-24.673-36.699Q-24.775-36.990-24.992-37.172Q-25.208-37.353-25.525-37.353Q-25.826-37.353-26.056-37.166Q-26.287-36.978-26.410-36.687Q-26.533-36.396-26.533-36.103M-23.466-34.049L-23.466-35.271Q-23.466-35.299-23.435-35.330Q-23.404-35.361-23.380-35.361L-23.275-35.361Q-23.205-35.361-23.189-35.299Q-23.126-34.978-22.988-34.738Q-22.849-34.498-22.617-34.357Q-22.384-34.217-22.076-34.217Q-21.837-34.217-21.628-34.277Q-21.419-34.338-21.283-34.486Q-21.146-34.635-21.146-34.881Q-21.146-35.135-21.357-35.301Q-21.568-35.467-21.837-35.521L-22.458-35.635Q-22.865-35.713-23.165-35.969Q-23.466-36.225-23.466-36.600Q-23.466-36.967-23.265-37.189Q-23.064-37.412-22.740-37.510Q-22.415-37.607-22.076-37.607Q-21.611-37.607-21.314-37.400L-21.091-37.584Q-21.068-37.607-21.037-37.607L-20.986-37.607Q-20.955-37.607-20.927-37.580Q-20.900-37.553-20.900-37.521L-20.900-36.537Q-20.900-36.506-20.925-36.477Q-20.951-36.447-20.986-36.447L-21.091-36.447Q-21.126-36.447-21.154-36.475Q-21.181-36.502-21.181-36.537Q-21.181-36.936-21.433-37.156Q-21.685-37.377-22.083-37.377Q-22.439-37.377-22.722-37.254Q-23.005-37.131-23.005-36.826Q-23.005-36.607-22.804-36.475Q-22.603-36.342-22.357-36.299L-21.732-36.186Q-21.302-36.096-20.994-35.799Q-20.685-35.502-20.685-35.088Q-20.685-34.518-21.083-34.240Q-21.482-33.963-22.076-33.963Q-22.626-33.963-22.978-34.299L-23.275-33.986Q-23.298-33.963-23.333-33.963L-23.380-33.963Q-23.404-33.963-23.435-33.994Q-23.466-34.025-23.466-34.049\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(195.18 27.607)\">\u003Cpath d=\"M-14.995-35.385L-17.066-35.385Q-17.261-35.408-17.316-35.627L-17.316-35.865Q-17.316-35.939-17.273-36.010L-15.425-38.881Q-15.339-39.010-15.187-39.010L-14.730-39.010Q-14.620-39.010-14.542-38.932Q-14.464-38.853-14.464-38.744L-14.464-35.943L-13.800-35.943Q-13.605-35.920-13.554-35.713L-13.554-35.627Q-13.605-35.408-13.800-35.385L-14.464-35.385L-14.464-34.600L-13.890-34.600Q-13.683-34.576-13.644-34.369L-13.644-34.279Q-13.683-34.064-13.890-34.041L-15.570-34.041Q-15.777-34.064-15.820-34.279L-15.820-34.369Q-15.777-34.576-15.570-34.600L-14.995-34.600L-14.995-35.385M-14.995-38.537L-16.667-35.943L-14.995-35.943L-14.995-38.537M-12.882-34.279L-12.882-34.353Q-12.851-34.521-12.749-34.568L-11.460-35.635Q-11.128-35.912-10.947-36.064Q-10.765-36.217-10.570-36.437Q-10.374-36.658-10.253-36.908Q-10.132-37.158-10.132-37.424Q-10.132-37.748-10.308-37.982Q-10.484-38.217-10.763-38.332Q-11.042-38.447-11.363-38.447Q-11.620-38.447-11.849-38.324Q-12.077-38.201-12.179-37.986Q-12.077-37.853-12.077-37.705Q-12.077-37.545-12.197-37.422Q-12.316-37.299-12.476-37.299Q-12.652-37.299-12.767-37.424Q-12.882-37.549-12.882-37.721Q-12.882-38.014-12.747-38.256Q-12.613-38.498-12.374-38.670Q-12.136-38.842-11.868-38.926Q-11.601-39.010-11.308-39.010Q-10.827-39.010-10.411-38.820Q-9.995-38.631-9.743-38.270Q-9.491-37.908-9.491-37.424Q-9.491-37.080-9.624-36.777Q-9.757-36.475-9.982-36.215Q-10.206-35.955-10.515-35.693Q-10.824-35.432-11.034-35.256L-11.843-34.600L-10.132-34.600L-10.132-34.744Q-10.081-34.955-9.882-34.978L-9.741-34.978Q-9.542-34.959-9.491-34.744L-9.491-34.279Q-9.542-34.064-9.741-34.041L-12.636-34.041Q-12.831-34.061-12.882-34.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M247.577 2.947h51.215v-22.762h-51.215Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(293.147 28.385)\">\u003Cpath d=\"M-38.612-33.775Q-38.612-33.838-38.581-33.881L-34.835-39.139Q-35.292-38.904-35.858-38.904Q-36.511-38.904-37.116-39.225Q-36.972-38.877-36.972-38.432Q-36.972-38.072-37.093-37.701Q-37.214-37.330-37.464-37.074Q-37.714-36.818-38.077-36.818Q-38.464-36.818-38.747-37.062Q-39.030-37.307-39.177-37.680Q-39.323-38.053-39.323-38.432Q-39.323-38.811-39.177-39.182Q-39.030-39.553-38.747-39.797Q-38.464-40.041-38.077-40.041Q-37.761-40.041-37.491-39.803Q-37.155-39.498-36.726-39.326Q-36.296-39.154-35.858-39.154Q-35.366-39.154-34.948-39.367Q-34.530-39.580-34.230-39.978Q-34.187-40.041-34.093-40.041Q-34.019-40.041-33.964-39.986Q-33.909-39.932-33.909-39.857Q-33.909-39.795-33.941-39.752L-38.284-33.658Q-38.331-33.592-38.429-33.592Q-38.511-33.592-38.562-33.643Q-38.612-33.693-38.612-33.775M-38.077-37.072Q-37.804-37.072-37.616-37.297Q-37.429-37.521-37.341-37.844Q-37.253-38.166-37.253-38.432Q-37.253-38.689-37.341-39.012Q-37.429-39.334-37.616-39.559Q-37.804-39.783-38.077-39.783Q-38.464-39.783-38.607-39.355Q-38.749-38.928-38.749-38.432Q-38.749-37.924-38.608-37.498Q-38.468-37.072-38.077-37.072M-34.300-33.592Q-34.687-33.592-34.970-33.838Q-35.253-34.084-35.401-34.457Q-35.550-34.830-35.550-35.209Q-35.550-35.482-35.464-35.770Q-35.378-36.057-35.224-36.291Q-35.069-36.525-34.833-36.672Q-34.597-36.818-34.300-36.818Q-34.019-36.818-33.812-36.666Q-33.605-36.514-33.466-36.271Q-33.327-36.029-33.261-35.748Q-33.194-35.467-33.194-35.209Q-33.194-34.850-33.316-34.477Q-33.437-34.103-33.687-33.848Q-33.937-33.592-34.300-33.592M-34.300-33.850Q-34.026-33.850-33.839-34.074Q-33.651-34.299-33.564-34.621Q-33.476-34.943-33.476-35.209Q-33.476-35.467-33.564-35.789Q-33.651-36.111-33.839-36.336Q-34.026-36.561-34.300-36.561Q-34.691-36.561-34.831-36.131Q-34.972-35.701-34.972-35.209Q-34.972-34.701-34.835-34.275Q-34.698-33.850-34.300-33.850\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.147 28.385)\">\u003Cpath d=\"M-32.489-34.279L-32.489-34.369Q-32.431-34.576-32.239-34.600L-31.528-34.600L-31.528-36.928L-32.239-36.928Q-32.435-36.951-32.489-37.170L-32.489-37.256Q-32.431-37.467-32.239-37.490L-31.138-37.490Q-30.939-37.471-30.888-37.256L-30.888-36.928Q-30.626-37.213-30.271-37.371Q-29.915-37.529-29.528-37.529Q-29.235-37.529-29.001-37.395Q-28.767-37.260-28.767-36.994Q-28.767-36.826-28.876-36.709Q-28.985-36.592-29.153-36.592Q-29.306-36.592-29.421-36.703Q-29.536-36.814-29.536-36.971Q-29.911-36.971-30.226-36.770Q-30.540-36.568-30.714-36.234Q-30.888-35.900-30.888-35.521L-30.888-34.600L-29.942-34.600Q-29.735-34.576-29.696-34.369L-29.696-34.279Q-29.735-34.064-29.942-34.041L-32.239-34.041Q-32.431-34.064-32.489-34.279M-26.603-34.002Q-27.067-34.002-27.433-34.252Q-27.798-34.502-28.003-34.906Q-28.208-35.311-28.208-35.768Q-28.208-36.111-28.083-36.432Q-27.958-36.752-27.726-37.002Q-27.493-37.252-27.189-37.391Q-26.884-37.529-26.528-37.529Q-26.017-37.529-25.610-37.209L-25.610-38.369L-26.032-38.369Q-26.243-38.393-26.282-38.607L-26.282-38.697Q-26.243-38.904-26.032-38.928L-25.220-38.928Q-25.021-38.904-24.970-38.697L-24.970-34.600L-24.544-34.600Q-24.337-34.576-24.298-34.369L-24.298-34.279Q-24.337-34.064-24.544-34.041L-25.360-34.041Q-25.560-34.064-25.610-34.279L-25.610-34.408Q-25.806-34.217-26.067-34.109Q-26.329-34.002-26.603-34.002M-26.564-34.561Q-26.204-34.561-25.952-34.830Q-25.700-35.100-25.610-35.475L-25.610-36.307Q-25.669-36.494-25.796-36.645Q-25.923-36.795-26.101-36.883Q-26.278-36.971-26.474-36.971Q-26.782-36.971-27.032-36.801Q-27.282-36.631-27.427-36.346Q-27.571-36.061-27.571-35.760Q-27.571-35.311-27.286-34.936Q-27.001-34.561-26.564-34.561M-23.962-34.279L-23.962-34.369Q-23.923-34.576-23.716-34.600L-23.310-34.600L-22.380-35.818L-23.251-36.928L-23.669-36.928Q-23.864-36.947-23.915-37.170L-23.915-37.256Q-23.864-37.467-23.669-37.490L-22.509-37.490Q-22.310-37.467-22.259-37.256L-22.259-37.170Q-22.310-36.951-22.509-36.928L-22.618-36.928L-22.122-36.271L-21.646-36.928L-21.763-36.928Q-21.962-36.951-22.013-37.170L-22.013-37.256Q-21.962-37.467-21.763-37.490L-20.603-37.490Q-20.407-37.471-20.357-37.256L-20.357-37.170Q-20.407-36.951-20.603-36.928L-21.013-36.928L-21.860-35.818L-20.900-34.600L-20.493-34.600Q-20.294-34.576-20.243-34.369L-20.243-34.279Q-20.282-34.064-20.493-34.041L-21.646-34.041Q-21.853-34.064-21.892-34.279L-21.892-34.369Q-21.853-34.576-21.646-34.600L-21.517-34.600L-22.122-35.455L-22.708-34.600L-22.564-34.600Q-22.357-34.576-22.317-34.369L-22.317-34.279Q-22.357-34.064-22.564-34.041L-23.716-34.041Q-23.911-34.061-23.962-34.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.147 28.385)\">\u003Cpath d=\"M-11.640-35.018L-16.953-35.018Q-17.031-35.025-17.080-35.074Q-17.128-35.123-17.128-35.201Q-17.128-35.271-17.081-35.322Q-17.035-35.373-16.953-35.385L-11.640-35.385Q-11.566-35.373-11.519-35.322Q-11.472-35.271-11.472-35.201Q-11.472-35.123-11.521-35.074Q-11.570-35.025-11.640-35.018M-11.640-36.705L-16.953-36.705Q-17.031-36.713-17.080-36.762Q-17.128-36.811-17.128-36.889Q-17.128-36.959-17.081-37.010Q-17.035-37.061-16.953-37.072L-11.640-37.072Q-11.566-37.061-11.519-37.010Q-11.472-36.959-11.472-36.889Q-11.472-36.811-11.521-36.762Q-11.570-36.713-11.640-36.705\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(293.147 28.385)\">\u003Cpath d=\"M-6.070-35.385L-8.141-35.385Q-8.336-35.408-8.391-35.627L-8.391-35.865Q-8.391-35.939-8.348-36.010L-6.500-38.881Q-6.414-39.010-6.262-39.010L-5.805-39.010Q-5.695-39.010-5.617-38.932Q-5.539-38.853-5.539-38.744L-5.539-35.943L-4.875-35.943Q-4.680-35.920-4.629-35.713L-4.629-35.627Q-4.680-35.408-4.875-35.385L-5.539-35.385L-5.539-34.600L-4.965-34.600Q-4.758-34.576-4.719-34.369L-4.719-34.279Q-4.758-34.064-4.965-34.041L-6.645-34.041Q-6.852-34.064-6.895-34.279L-6.895-34.369Q-6.852-34.576-6.645-34.600L-6.070-34.600L-6.070-35.385M-6.070-38.537L-7.742-35.943L-6.070-35.943L-6.070-38.537M-3.957-34.279L-3.957-34.353Q-3.926-34.521-3.824-34.568L-2.535-35.635Q-2.203-35.912-2.022-36.064Q-1.840-36.217-1.645-36.437Q-1.449-36.658-1.328-36.908Q-1.207-37.158-1.207-37.424Q-1.207-37.748-1.383-37.982Q-1.559-38.217-1.838-38.332Q-2.117-38.447-2.438-38.447Q-2.695-38.447-2.924-38.324Q-3.152-38.201-3.254-37.986Q-3.152-37.853-3.152-37.705Q-3.152-37.545-3.272-37.422Q-3.391-37.299-3.551-37.299Q-3.727-37.299-3.842-37.424Q-3.957-37.549-3.957-37.721Q-3.957-38.014-3.822-38.256Q-3.688-38.498-3.449-38.670Q-3.211-38.842-2.943-38.926Q-2.676-39.010-2.383-39.010Q-1.902-39.010-1.486-38.820Q-1.070-38.631-0.818-38.270Q-0.566-37.908-0.566-37.424Q-0.566-37.080-0.699-36.777Q-0.832-36.475-1.057-36.215Q-1.281-35.955-1.590-35.693Q-1.899-35.432-2.109-35.256L-2.918-34.600L-1.207-34.600L-1.207-34.744Q-1.156-34.955-0.957-34.978L-0.816-34.978Q-0.617-34.959-0.566-34.744L-0.566-34.279Q-0.617-34.064-0.816-34.041L-3.711-34.041Q-3.906-34.061-3.957-34.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M56.943-22.26v13.826h85.404\"\u002F>\u003Cpath stroke=\"none\" d=\"m144.947-8.434-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(123.505 34.896)\">\u003Cpath d=\"M-39.851-34.279L-39.851-34.369Q-39.800-34.580-39.605-34.600L-39.405-34.600L-39.405-36.928L-39.605-36.928Q-39.812-36.951-39.851-37.170L-39.851-37.256Q-39.800-37.471-39.605-37.490L-39.124-37.490Q-38.933-37.467-38.874-37.256Q-38.554-37.529-38.140-37.529Q-37.948-37.529-37.780-37.420Q-37.612-37.311-37.538-37.139Q-37.362-37.330-37.140-37.430Q-36.917-37.529-36.675-37.529Q-36.257-37.529-36.103-37.187Q-35.948-36.846-35.948-36.377L-35.948-34.600L-35.749-34.600Q-35.538-34.576-35.499-34.369L-35.499-34.279Q-35.550-34.064-35.749-34.041L-36.566-34.041Q-36.761-34.064-36.812-34.279L-36.812-34.369Q-36.761-34.576-36.566-34.600L-36.476-34.600L-36.476-36.346Q-36.476-36.971-36.726-36.971Q-37.058-36.971-37.235-36.660Q-37.413-36.350-37.413-35.986L-37.413-34.600L-37.210-34.600Q-37.003-34.576-36.964-34.369L-36.964-34.279Q-37.015-34.064-37.210-34.041L-38.026-34.041Q-38.226-34.064-38.276-34.279L-38.276-34.369Q-38.226-34.576-38.026-34.600L-37.941-34.600L-37.941-36.346Q-37.941-36.971-38.187-36.971Q-38.519-36.971-38.696-36.658Q-38.874-36.346-38.874-35.986L-38.874-34.600L-38.675-34.600Q-38.468-34.576-38.429-34.369L-38.429-34.279Q-38.480-34.061-38.675-34.041L-39.605-34.041Q-39.812-34.064-39.851-34.279M-33.429-34.002Q-33.901-34.002-34.286-34.246Q-34.671-34.490-34.894-34.900Q-35.116-35.311-35.116-35.768Q-35.116-36.111-34.991-36.434Q-34.866-36.756-34.636-37.010Q-34.405-37.264-34.099-37.408Q-33.792-37.553-33.429-37.553Q-33.066-37.553-32.753-37.406Q-32.441-37.260-32.218-37.014Q-31.995-36.768-31.868-36.447Q-31.741-36.127-31.741-35.768Q-31.741-35.311-31.966-34.898Q-32.191-34.486-32.575-34.244Q-32.960-34.002-33.429-34.002M-33.429-34.561Q-32.964-34.561-32.673-34.955Q-32.382-35.350-32.382-35.834Q-32.382-36.127-32.517-36.395Q-32.651-36.662-32.892-36.828Q-33.132-36.994-33.429-36.994Q-33.733-36.994-33.972-36.828Q-34.210-36.662-34.345-36.395Q-34.480-36.127-34.480-35.834Q-34.480-35.353-34.187-34.957Q-33.894-34.561-33.429-34.561M-29.648-34.264L-30.534-36.928L-30.855-36.928Q-31.054-36.951-31.105-37.170L-31.105-37.256Q-31.054-37.467-30.855-37.490L-29.694-37.490Q-29.499-37.471-29.448-37.256L-29.448-37.170Q-29.499-36.951-29.694-36.928L-29.976-36.928L-29.183-34.553L-28.394-36.928L-28.671-36.928Q-28.870-36.951-28.921-37.170L-28.921-37.256Q-28.870-37.467-28.671-37.490L-27.511-37.490Q-27.316-37.467-27.265-37.256L-27.265-37.170Q-27.316-36.951-27.511-36.928L-27.831-36.928L-28.718-34.264Q-28.761-34.150-28.862-34.076Q-28.964-34.002-29.089-34.002L-29.280-34.002Q-29.398-34.002-29.501-34.074Q-29.605-34.146-29.648-34.264\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(123.505 34.896)\">\u003Cpath d=\"M-26.327-34.506Q-26.327-34.689-26.191-34.826Q-26.054-34.963-25.862-34.963Q-25.671-34.963-25.538-34.830Q-25.405-34.697-25.405-34.506Q-25.405-34.307-25.538-34.174Q-25.671-34.041-25.862-34.041Q-26.054-34.041-26.191-34.178Q-26.327-34.314-26.327-34.506M-26.327-37.033Q-26.327-37.217-26.191-37.353Q-26.054-37.490-25.862-37.490Q-25.671-37.490-25.538-37.357Q-25.405-37.225-25.405-37.033Q-25.405-36.834-25.538-36.701Q-25.671-36.568-25.862-36.568Q-26.054-36.568-26.191-36.705Q-26.327-36.842-26.327-37.033\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(123.505 34.896)\">\u003Cpath d=\"M-18.755-34.041L-20.587-34.041L-20.587-34.338Q-20.313-34.338-20.145-34.385Q-19.977-34.432-19.977-34.600L-19.977-38.760Q-19.977-38.975-20.040-39.070Q-20.102-39.166-20.221-39.187Q-20.341-39.209-20.587-39.209L-20.587-39.506L-19.364-39.592L-19.364-34.600Q-19.364-34.432-19.196-34.385Q-19.028-34.338-18.755-34.338L-18.755-34.041M-18.309-35.736Q-18.309-36.240-18.053-36.672Q-17.798-37.103-17.362-37.355Q-16.927-37.607-16.427-37.607Q-16.040-37.607-15.698-37.463Q-15.356-37.318-15.094-37.057Q-14.833-36.795-14.690-36.459Q-14.548-36.123-14.548-35.736Q-14.548-35.244-14.811-34.834Q-15.075-34.424-15.505-34.193Q-15.934-33.963-16.427-33.963Q-16.919-33.963-17.352-34.195Q-17.786-34.428-18.048-34.836Q-18.309-35.244-18.309-35.736M-16.427-34.240Q-15.970-34.240-15.718-34.463Q-15.466-34.686-15.378-35.037Q-15.290-35.389-15.290-35.834Q-15.290-36.264-15.384-36.602Q-15.477-36.939-15.731-37.146Q-15.985-37.353-16.427-37.353Q-17.075-37.353-17.319-36.937Q-17.563-36.521-17.563-35.834Q-17.563-35.389-17.475-35.037Q-17.387-34.686-17.136-34.463Q-16.884-34.240-16.427-34.240M-13.966-34.873Q-13.966-35.357-13.563-35.652Q-13.161-35.947-12.610-36.066Q-12.059-36.186-11.567-36.186L-11.567-36.475Q-11.567-36.701-11.682-36.908Q-11.798-37.115-11.995-37.234Q-12.192-37.353-12.423-37.353Q-12.848-37.353-13.134-37.248Q-13.063-37.221-13.016-37.166Q-12.970-37.111-12.944-37.041Q-12.919-36.971-12.919-36.896Q-12.919-36.791-12.970-36.699Q-13.020-36.607-13.112-36.557Q-13.204-36.506-13.309-36.506Q-13.415-36.506-13.507-36.557Q-13.598-36.607-13.649-36.699Q-13.700-36.791-13.700-36.896Q-13.700-37.314-13.311-37.461Q-12.923-37.607-12.423-37.607Q-12.091-37.607-11.737-37.477Q-11.384-37.346-11.155-37.092Q-10.927-36.838-10.927-36.490L-10.927-34.689Q-10.927-34.557-10.854-34.447Q-10.782-34.338-10.653-34.338Q-10.528-34.338-10.460-34.443Q-10.391-34.549-10.391-34.689L-10.391-35.201L-10.110-35.201L-10.110-34.689Q-10.110-34.486-10.227-34.328Q-10.344-34.170-10.526-34.086Q-10.708-34.002-10.911-34.002Q-11.141-34.002-11.294-34.174Q-11.446-34.346-11.477-34.576Q-11.637-34.295-11.946-34.129Q-12.255-33.963-12.606-33.963Q-13.118-33.963-13.542-34.186Q-13.966-34.408-13.966-34.873M-13.278-34.873Q-13.278-34.588-13.052-34.402Q-12.825-34.217-12.532-34.217Q-12.286-34.217-12.061-34.334Q-11.837-34.451-11.702-34.654Q-11.567-34.857-11.567-35.111L-11.567-35.943Q-11.833-35.943-12.118-35.889Q-12.403-35.834-12.675-35.705Q-12.946-35.576-13.112-35.369Q-13.278-35.162-13.278-34.873M-8.001-33.963Q-8.481-33.963-8.889-34.207Q-9.298-34.451-9.536-34.865Q-9.774-35.279-9.774-35.768Q-9.774-36.260-9.516-36.676Q-9.259-37.092-8.827-37.330Q-8.395-37.568-7.903-37.568Q-7.282-37.568-6.833-37.131L-6.833-38.760Q-6.833-38.975-6.895-39.070Q-6.958-39.166-7.075-39.187Q-7.192-39.209-7.438-39.209L-7.438-39.506L-6.216-39.592L-6.216-34.783Q-6.216-34.572-6.153-34.477Q-6.091-34.381-5.973-34.359Q-5.856-34.338-5.606-34.338L-5.606-34.041L-6.856-33.963L-6.856-34.447Q-7.321-33.963-8.001-33.963M-7.934-34.217Q-7.595-34.217-7.302-34.408Q-7.009-34.600-6.856-34.896L-6.856-36.728Q-7.005-37.002-7.266-37.158Q-7.528-37.314-7.841-37.314Q-8.466-37.314-8.749-36.867Q-9.032-36.420-9.032-35.760Q-9.032-35.115-8.780-34.666Q-8.528-34.217-7.934-34.217\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M196.562-8.434h48.215\"\u002F>\u003Cpath stroke=\"none\" d=\"m247.377-8.434-4.16-2.08 1.56 2.08-1.56 2.08\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">mov versus lea on the same operand. Both compute the address from the operand; mov then loads the bytes living there, while lea stops at the address and stores the number itself, never touching memory.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:357.922px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 268.441 94.290\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-23.379 -69.243)\">\u003Cpath d=\"M-35.799 5.861L-36.080 5.861L-36.080 1.142Q-36.080 0.927-36.142 0.832Q-36.205 0.736-36.322 0.715Q-36.439 0.693-36.685 0.693L-36.685 0.396L-35.463 0.310L-35.463 2.798Q-34.986 2.334-34.287 2.334Q-33.806 2.334-33.398 2.578Q-32.990 2.822-32.754 3.236Q-32.517 3.650-32.517 4.134Q-32.517 4.509-32.666 4.838Q-32.814 5.166-33.084 5.418Q-33.353 5.670-33.697 5.804Q-34.041 5.939-34.400 5.939Q-34.721 5.939-35.019 5.791Q-35.318 5.642-35.525 5.381L-35.799 5.861M-35.439 3.189L-35.439 5.029Q-35.287 5.326-35.027 5.506Q-34.767 5.685-34.455 5.685Q-34.029 5.685-33.762 5.466Q-33.494 5.248-33.379 4.902Q-33.264 4.556-33.264 4.134Q-33.264 3.486-33.512 3.037Q-33.760 2.588-34.357 2.588Q-34.693 2.588-34.982 2.746Q-35.271 2.904-35.439 3.189\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.379 -69.243)\">\u003Cpath d=\"M-31.754 4.107Q-31.754 3.627-31.521 3.211Q-31.289 2.795-30.879 2.545Q-30.469 2.295-29.992 2.295Q-29.262 2.295-28.863 2.736Q-28.465 3.177-28.465 3.908Q-28.465 4.013-28.558 4.037L-31.008 4.037L-31.008 4.107Q-31.008 4.517-30.887 4.873Q-30.765 5.228-30.494 5.445Q-30.222 5.662-29.793 5.662Q-29.430 5.662-29.133 5.433Q-28.836 5.205-28.734 4.853Q-28.726 4.806-28.640 4.791L-28.558 4.791Q-28.465 4.818-28.465 4.900Q-28.465 4.908-28.472 4.939Q-28.535 5.166-28.674 5.349Q-28.812 5.533-29.004 5.666Q-29.195 5.798-29.414 5.869Q-29.633 5.939-29.871 5.939Q-30.242 5.939-30.580 5.802Q-30.918 5.666-31.185 5.414Q-31.453 5.162-31.603 4.822Q-31.754 4.482-31.754 4.107M-31 3.798L-29.039 3.798Q-29.039 3.494-29.140 3.203Q-29.242 2.912-29.459 2.730Q-29.676 2.548-29.992 2.548Q-30.293 2.548-30.523 2.736Q-30.754 2.923-30.877 3.215Q-31 3.506-31 3.798M-25.910 5.861L-27.894 5.861L-27.894 5.564Q-27.621 5.564-27.453 5.517Q-27.285 5.470-27.285 5.302L-27.285 2.709L-27.926 2.709L-27.926 2.412L-27.285 2.412L-27.285 1.478Q-27.285 1.213-27.168 0.976Q-27.051 0.740-26.857 0.576Q-26.664 0.412-26.416 0.320Q-26.168 0.228-25.902 0.228Q-25.617 0.228-25.392 0.386Q-25.168 0.545-25.168 0.822Q-25.168 0.978-25.273 1.088Q-25.379 1.197-25.543 1.197Q-25.699 1.197-25.808 1.088Q-25.918 0.978-25.918 0.822Q-25.918 0.615-25.758 0.509Q-25.855 0.486-25.949 0.486Q-26.180 0.486-26.351 0.642Q-26.523 0.798-26.609 1.035Q-26.695 1.271-26.695 1.494L-26.695 2.412L-25.726 2.412L-25.726 2.709L-26.672 2.709L-26.672 5.302Q-26.672 5.470-26.445 5.517Q-26.219 5.564-25.910 5.564L-25.910 5.861M-25.383 4.166Q-25.383 3.662-25.127 3.230Q-24.871 2.798-24.435 2.547Q-24 2.295-23.500 2.295Q-23.113 2.295-22.771 2.439Q-22.430 2.584-22.168 2.845Q-21.906 3.107-21.763 3.443Q-21.621 3.779-21.621 4.166Q-21.621 4.658-21.885 5.068Q-22.148 5.478-22.578 5.709Q-23.008 5.939-23.500 5.939Q-23.992 5.939-24.426 5.707Q-24.859 5.474-25.121 5.066Q-25.383 4.658-25.383 4.166M-23.500 5.662Q-23.043 5.662-22.791 5.439Q-22.539 5.216-22.451 4.865Q-22.363 4.513-22.363 4.068Q-22.363 3.638-22.457 3.300Q-22.551 2.963-22.805 2.756Q-23.058 2.548-23.500 2.548Q-24.148 2.548-24.392 2.965Q-24.637 3.381-24.637 4.068Q-24.637 4.513-24.549 4.865Q-24.461 5.216-24.209 5.439Q-23.957 5.662-23.500 5.662M-19.129 5.861L-21.109 5.861L-21.109 5.564Q-20.840 5.564-20.672 5.519Q-20.504 5.474-20.504 5.302L-20.504 3.166Q-20.504 2.951-20.566 2.855Q-20.629 2.759-20.746 2.738Q-20.863 2.716-21.109 2.716L-21.109 2.420L-19.941 2.334L-19.941 3.119Q-19.863 2.908-19.711 2.722Q-19.558 2.537-19.359 2.435Q-19.160 2.334-18.933 2.334Q-18.687 2.334-18.496 2.478Q-18.305 2.623-18.305 2.853Q-18.305 3.009-18.410 3.119Q-18.515 3.228-18.672 3.228Q-18.828 3.228-18.937 3.119Q-19.047 3.009-19.047 2.853Q-19.047 2.693-18.941 2.588Q-19.265 2.588-19.480 2.816Q-19.695 3.045-19.791 3.384Q-19.887 3.724-19.887 4.029L-19.887 5.302Q-19.887 5.470-19.660 5.517Q-19.433 5.564-19.129 5.564L-19.129 5.861M-17.824 4.107Q-17.824 3.627-17.592 3.211Q-17.359 2.795-16.949 2.545Q-16.539 2.295-16.062 2.295Q-15.332 2.295-14.933 2.736Q-14.535 3.177-14.535 3.908Q-14.535 4.013-14.629 4.037L-17.078 4.037L-17.078 4.107Q-17.078 4.517-16.957 4.873Q-16.836 5.228-16.564 5.445Q-16.293 5.662-15.863 5.662Q-15.500 5.662-15.203 5.433Q-14.906 5.205-14.805 4.853Q-14.797 4.806-14.711 4.791L-14.629 4.791Q-14.535 4.818-14.535 4.900Q-14.535 4.908-14.543 4.939Q-14.605 5.166-14.744 5.349Q-14.883 5.533-15.074 5.666Q-15.265 5.798-15.484 5.869Q-15.703 5.939-15.941 5.939Q-16.312 5.939-16.650 5.802Q-16.988 5.666-17.256 5.414Q-17.523 5.162-17.674 4.822Q-17.824 4.482-17.824 4.107M-17.070 3.798L-15.109 3.798Q-15.109 3.494-15.211 3.203Q-15.312 2.912-15.529 2.730Q-15.746 2.548-16.062 2.548Q-16.363 2.548-16.594 2.736Q-16.824 2.923-16.947 3.215Q-17.070 3.506-17.070 3.798\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.379 -69.243)\">\u003Cpath d=\"M-11.373 7.404L-11.373 7.318Q-11.330 7.099-11.123 7.076L-10.701 7.076L-10.701 2.974L-11.123 2.974Q-11.330 2.951-11.373 2.732L-11.373 2.646Q-11.326 2.435-11.123 2.412L-10.306 2.412Q-10.111 2.431-10.060 2.646L-10.060 2.716Q-9.849 2.548-9.586 2.461Q-9.322 2.373-9.052 2.373Q-8.713 2.373-8.416 2.517Q-8.119 2.662-7.904 2.914Q-7.689 3.166-7.574 3.478Q-7.459 3.791-7.459 4.134Q-7.459 4.599-7.685 5.009Q-7.912 5.420-8.298 5.660Q-8.685 5.900-9.154 5.900Q-9.673 5.900-10.060 5.533L-10.060 7.076L-9.634 7.076Q-9.427 7.099-9.388 7.318L-9.388 7.404Q-9.427 7.615-9.634 7.638L-11.123 7.638Q-11.326 7.615-11.373 7.404M-9.197 5.341Q-8.888 5.341-8.638 5.172Q-8.388 5.002-8.244 4.720Q-8.099 4.439-8.099 4.134Q-8.099 3.845-8.224 3.566Q-8.349 3.287-8.582 3.109Q-8.814 2.931-9.115 2.931Q-9.435 2.931-9.697 3.117Q-9.959 3.302-10.060 3.603L-10.060 4.455Q-9.970 4.822-9.750 5.082Q-9.529 5.341-9.197 5.341M-6.455 5.006L-6.455 2.974L-6.877 2.974Q-7.084 2.951-7.127 2.732L-7.127 2.646Q-7.080 2.435-6.877 2.412L-6.060 2.412Q-5.865 2.435-5.814 2.646L-5.814 4.974Q-5.814 5.209-5.644 5.275Q-5.474 5.341-5.189 5.341Q-4.982 5.341-4.787 5.265Q-4.591 5.189-4.466 5.039Q-4.341 4.888-4.341 4.677L-4.341 2.974L-4.763 2.974Q-4.974 2.951-5.013 2.732L-5.013 2.646Q-4.974 2.435-4.763 2.412L-3.951 2.412Q-3.752 2.435-3.701 2.646L-3.701 5.302L-3.275 5.302Q-3.068 5.326-3.029 5.533L-3.029 5.623Q-3.068 5.838-3.275 5.861L-4.091 5.861Q-4.291 5.838-4.341 5.638Q-4.744 5.900-5.252 5.900Q-5.486 5.900-5.701 5.859Q-5.916 5.818-6.082 5.716Q-6.248 5.615-6.351 5.437Q-6.455 5.259-6.455 5.006M-2.365 5.662L-2.365 4.748Q-2.338 4.541-2.127 4.517L-1.959 4.517Q-1.795 4.541-1.736 4.701Q-1.533 5.341-0.806 5.341Q-0.599 5.341-0.371 5.306Q-0.142 5.271 0.026 5.156Q0.194 5.041 0.194 4.838Q0.194 4.627-0.029 4.513Q-0.252 4.400-0.525 4.357L-1.224 4.244Q-2.365 4.033-2.365 3.310Q-2.365 3.021-2.220 2.832Q-2.076 2.642-1.836 2.535Q-1.595 2.427-1.339 2.388Q-1.084 2.349-0.806 2.349Q-0.556 2.349-0.363 2.379Q-0.170 2.408-0.005 2.486Q0.073 2.369 0.202 2.349L0.280 2.349Q0.377 2.361 0.440 2.423Q0.502 2.486 0.514 2.580L0.514 3.287Q0.502 3.381 0.440 3.447Q0.377 3.513 0.280 3.525L0.112 3.525Q0.018 3.513-0.048 3.447Q-0.115 3.381-0.127 3.287Q-0.127 2.908-0.822 2.908Q-1.170 2.908-1.488 2.990Q-1.806 3.072-1.806 3.318Q-1.806 3.584-1.134 3.693L-0.431 3.814Q0.053 3.896 0.403 4.144Q0.752 4.392 0.752 4.838Q0.752 5.228 0.516 5.470Q0.280 5.713-0.070 5.806Q-0.420 5.900-0.806 5.900Q-1.384 5.900-1.783 5.646Q-1.853 5.771-1.902 5.828Q-1.951 5.884-2.056 5.900L-2.127 5.900Q-2.341 5.877-2.365 5.662M1.366 5.623L1.366 5.533Q1.409 5.326 1.616 5.302L2.037 5.302L2.037 1.533L1.616 1.533Q1.409 1.509 1.366 1.295L1.366 1.205Q1.409 0.998 1.616 0.974L2.432 0.974Q2.627 0.998 2.678 1.205L2.678 2.756Q3.139 2.373 3.737 2.373Q4.084 2.373 4.323 2.513Q4.561 2.654 4.676 2.912Q4.791 3.170 4.791 3.525L4.791 5.302L5.217 5.302Q5.424 5.326 5.463 5.533L5.463 5.623Q5.424 5.838 5.217 5.861L3.823 5.861Q3.627 5.838 3.577 5.623L3.577 5.533Q3.627 5.322 3.823 5.302L4.151 5.302L4.151 3.556Q4.151 3.248 4.061 3.090Q3.971 2.931 3.678 2.931Q3.409 2.931 3.180 3.062Q2.952 3.193 2.815 3.422Q2.678 3.650 2.678 3.916L2.678 5.302L3.104 5.302Q3.311 5.326 3.350 5.533L3.350 5.623Q3.311 5.838 3.104 5.861L1.616 5.861Q1.409 5.838 1.366 5.623M7.854 7.404L7.854 7.318Q7.905 7.099 8.100 7.076L8.565 7.076L8.565 5.478Q8.112 5.900 7.502 5.900Q7.147 5.900 6.842 5.757Q6.537 5.615 6.305 5.365Q6.073 5.115 5.948 4.793Q5.823 4.470 5.823 4.134Q5.823 3.650 6.061 3.250Q6.299 2.849 6.705 2.611Q7.112 2.373 7.588 2.373Q8.151 2.373 8.565 2.763L8.565 2.603Q8.616 2.392 8.815 2.373L8.955 2.373Q9.155 2.396 9.205 2.603L9.205 7.076L9.670 7.076Q9.866 7.099 9.916 7.318L9.916 7.404Q9.866 7.615 9.670 7.638L8.100 7.638Q7.905 7.615 7.854 7.404M7.549 5.341Q7.920 5.341 8.196 5.088Q8.471 4.834 8.565 4.470L8.565 3.853Q8.522 3.615 8.399 3.402Q8.276 3.189 8.078 3.060Q7.881 2.931 7.639 2.931Q7.323 2.931 7.051 3.097Q6.780 3.263 6.621 3.545Q6.463 3.826 6.463 4.142Q6.463 4.607 6.778 4.974Q7.092 5.341 7.549 5.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-24.014h56.905V-43.93h-56.905Z\"\u002F>\u003Cg transform=\"translate(-3.542 -39.39)\">\u003Cpath d=\"M-36.232 5.396Q-36.232 5.213-36.096 5.076Q-35.959 4.939-35.767 4.939Q-35.576 4.939-35.443 5.072Q-35.310 5.205-35.310 5.396Q-35.310 5.595-35.443 5.728Q-35.576 5.861-35.767 5.861Q-35.959 5.861-36.096 5.724Q-36.232 5.588-36.232 5.396M-33.873 5.396Q-33.873 5.213-33.736 5.076Q-33.599 4.939-33.408 4.939Q-33.217 4.939-33.084 5.072Q-32.951 5.205-32.951 5.396Q-32.951 5.595-33.084 5.728Q-33.217 5.861-33.408 5.861Q-33.599 5.861-33.736 5.724Q-33.873 5.588-33.873 5.396M-31.514 5.396Q-31.514 5.213-31.377 5.076Q-31.240 4.939-31.049 4.939Q-30.857 4.939-30.724 5.072Q-30.592 5.205-30.592 5.396Q-30.592 5.595-30.724 5.728Q-30.857 5.861-31.049 5.861Q-31.240 5.861-31.377 5.724Q-31.514 5.588-31.514 5.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-4.097h56.905v-19.917h-56.905Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-13.222 -17.917)\">\u003Cpath d=\"M-36.713 4.166Q-36.713 3.662-36.457 3.230Q-36.201 2.798-35.765 2.547Q-35.330 2.295-34.830 2.295Q-34.443 2.295-34.101 2.439Q-33.760 2.584-33.498 2.845Q-33.236 3.107-33.094 3.443Q-32.951 3.779-32.951 4.166Q-32.951 4.658-33.215 5.068Q-33.478 5.478-33.908 5.709Q-34.338 5.939-34.830 5.939Q-35.322 5.939-35.756 5.707Q-36.189 5.474-36.451 5.066Q-36.713 4.658-36.713 4.166M-34.830 5.662Q-34.373 5.662-34.121 5.439Q-33.869 5.216-33.781 4.865Q-33.693 4.513-33.693 4.068Q-33.693 3.638-33.787 3.300Q-33.881 2.963-34.135 2.756Q-34.389 2.548-34.830 2.548Q-35.478 2.548-35.722 2.965Q-35.967 3.381-35.967 4.068Q-35.967 4.513-35.879 4.865Q-35.791 5.216-35.539 5.439Q-35.287 5.662-34.830 5.662M-30.553 5.861L-32.385 5.861L-32.385 5.564Q-32.111 5.564-31.943 5.517Q-31.775 5.470-31.775 5.302L-31.775 1.142Q-31.775 0.927-31.838 0.832Q-31.900 0.736-32.019 0.715Q-32.139 0.693-32.385 0.693L-32.385 0.396L-31.162 0.310L-31.162 5.302Q-31.162 5.470-30.994 5.517Q-30.826 5.564-30.553 5.564L-30.553 5.861M-28.291 5.939Q-28.771 5.939-29.180 5.695Q-29.588 5.451-29.826 5.037Q-30.064 4.623-30.064 4.134Q-30.064 3.642-29.806 3.226Q-29.549 2.810-29.117 2.572Q-28.685 2.334-28.193 2.334Q-27.572 2.334-27.123 2.771L-27.123 1.142Q-27.123 0.927-27.185 0.832Q-27.248 0.736-27.365 0.715Q-27.482 0.693-27.728 0.693L-27.728 0.396L-26.506 0.310L-26.506 5.119Q-26.506 5.330-26.443 5.425Q-26.381 5.521-26.264 5.543Q-26.146 5.564-25.896 5.564L-25.896 5.861L-27.146 5.939L-27.146 5.455Q-27.611 5.939-28.291 5.939M-28.224 5.685Q-27.885 5.685-27.592 5.494Q-27.299 5.302-27.146 5.006L-27.146 3.173Q-27.295 2.900-27.556 2.744Q-27.818 2.588-28.131 2.588Q-28.756 2.588-29.039 3.035Q-29.322 3.482-29.322 4.142Q-29.322 4.787-29.070 5.236Q-28.818 5.685-28.224 5.685\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.222 -17.917)\">\u003Cpath d=\"M-21.921 4.900L-21.921 2.709L-22.624 2.709L-22.624 2.455Q-22.268 2.455-22.026 2.222Q-21.784 1.990-21.673 1.642Q-21.561 1.295-21.561 0.939L-21.280 0.939L-21.280 2.412L-20.104 2.412L-20.104 2.709L-21.280 2.709L-21.280 4.884Q-21.280 5.205-21.161 5.433Q-21.042 5.662-20.761 5.662Q-20.581 5.662-20.464 5.539Q-20.346 5.416-20.294 5.236Q-20.241 5.056-20.241 4.884L-20.241 4.412L-19.960 4.412L-19.960 4.900Q-19.960 5.154-20.065 5.394Q-20.171 5.634-20.368 5.787Q-20.565 5.939-20.823 5.939Q-21.139 5.939-21.391 5.816Q-21.643 5.693-21.782 5.459Q-21.921 5.224-21.921 4.900M-19.241 4.166Q-19.241 3.662-18.985 3.230Q-18.729 2.798-18.294 2.547Q-17.858 2.295-17.358 2.295Q-16.971 2.295-16.630 2.439Q-16.288 2.584-16.026 2.845Q-15.764 3.107-15.622 3.443Q-15.479 3.779-15.479 4.166Q-15.479 4.658-15.743 5.068Q-16.007 5.478-16.436 5.709Q-16.866 5.939-17.358 5.939Q-17.850 5.939-18.284 5.707Q-18.718 5.474-18.979 5.066Q-19.241 4.658-19.241 4.166M-17.358 5.662Q-16.901 5.662-16.649 5.439Q-16.397 5.216-16.309 4.865Q-16.221 4.513-16.221 4.068Q-16.221 3.638-16.315 3.300Q-16.409 2.963-16.663 2.756Q-16.917 2.548-17.358 2.548Q-18.007 2.548-18.251 2.965Q-18.495 3.381-18.495 4.068Q-18.495 4.513-18.407 4.865Q-18.319 5.216-18.067 5.439Q-17.815 5.662-17.358 5.662M-13.112 7.412L-14.968 7.412L-14.968 7.119Q-14.698 7.119-14.530 7.074Q-14.362 7.029-14.362 6.853L-14.362 3.029Q-14.362 2.822-14.518 2.769Q-14.675 2.716-14.968 2.716L-14.968 2.420L-13.745 2.334L-13.745 2.798Q-13.514 2.576-13.200 2.455Q-12.886 2.334-12.546 2.334Q-12.073 2.334-11.669 2.580Q-11.264 2.826-11.032 3.242Q-10.800 3.658-10.800 4.134Q-10.800 4.509-10.948 4.838Q-11.096 5.166-11.366 5.418Q-11.636 5.670-11.979 5.804Q-12.323 5.939-12.682 5.939Q-12.971 5.939-13.243 5.818Q-13.514 5.697-13.721 5.486L-13.721 6.853Q-13.721 7.029-13.554 7.074Q-13.386 7.119-13.112 7.119L-13.112 7.412M-13.721 3.197L-13.721 5.037Q-13.569 5.326-13.307 5.506Q-13.046 5.685-12.737 5.685Q-12.452 5.685-12.229 5.547Q-12.007 5.408-11.854 5.177Q-11.702 4.947-11.624 4.675Q-11.546 4.404-11.546 4.134Q-11.546 3.802-11.671 3.445Q-11.796 3.088-12.044 2.851Q-12.292 2.615-12.639 2.615Q-12.964 2.615-13.259 2.771Q-13.554 2.927-13.721 3.197\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-65.403 15.82h56.905V-4.097h-56.905Z\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(40.522 -18.07)\">\u003Cpath d=\"M-36.237 6.975L-36.237 6.938L-35.950 3.810Q-35.950 3.783-35.927 3.757Q-35.905 3.732-35.874 3.732L-35.762 3.732Q-35.731 3.732-35.707 3.756Q-35.683 3.779-35.683 3.810L-35.403 6.938L-35.403 6.975Q-35.403 7.136-35.527 7.247Q-35.652 7.358-35.816 7.358Q-35.984 7.358-36.110 7.245Q-36.237 7.132-36.237 6.975M-36.237 2.775Q-36.237 2.607-36.114 2.484Q-35.991 2.361-35.816 2.361Q-35.649 2.361-35.526 2.484Q-35.403 2.607-35.403 2.775Q-35.403 2.942-35.526 3.069Q-35.649 3.195-35.816 3.195Q-35.991 3.195-36.114 3.069Q-36.237 2.942-36.237 2.775M-32.491 4.607L-34.548 4.607L-34.548 4.104L-32.491 4.104\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.522 -18.07)\">\u003Cpath d=\"M-28.163 6.087Q-28.163 6.042-28.136 5.987L-24.728 1.407Q-25.169 1.612-25.644 1.612Q-26.232 1.612-26.799 1.325Q-26.666 1.636-26.666 2.019Q-26.666 2.334-26.779 2.662Q-26.892 2.990-27.121 3.210Q-27.350 3.431-27.674 3.431Q-28.016 3.431-28.278 3.221Q-28.539 3.010-28.674 2.682Q-28.809 2.354-28.809 2.019Q-28.809 1.688-28.674 1.360Q-28.539 1.031-28.278 0.821Q-28.016 0.611-27.674 0.611Q-27.391 0.611-27.141 0.819Q-26.820 1.093-26.442 1.240Q-26.065 1.387-25.651 1.387Q-25.214 1.387-24.824 1.206Q-24.434 1.025-24.181 0.679Q-24.123 0.611-24.041 0.611Q-23.973 0.611-23.923 0.661Q-23.874 0.710-23.874 0.778Q-23.874 0.823-23.901 0.878L-27.849 6.175Q-27.903 6.254-27.989 6.254Q-28.061 6.254-28.112 6.203Q-28.163 6.152-28.163 6.087M-27.674 3.209Q-27.432 3.209-27.263 3.014Q-27.093 2.819-27.013 2.537Q-26.933 2.255-26.933 2.019Q-26.933 1.852-26.977 1.642Q-27.022 1.431-27.107 1.257Q-27.193 1.083-27.340 0.960Q-27.486 0.837-27.674 0.837Q-28.030 0.837-28.156 1.207Q-28.283 1.578-28.283 2.019Q-28.283 2.464-28.156 2.836Q-28.030 3.209-27.674 3.209M-24.236 6.254Q-24.578 6.254-24.839 6.042Q-25.101 5.830-25.236 5.502Q-25.371 5.174-25.371 4.839Q-25.371 4.507-25.236 4.181Q-25.101 3.855-24.839 3.643Q-24.578 3.431-24.236 3.431Q-23.915 3.431-23.686 3.651Q-23.457 3.872-23.342 4.200Q-23.228 4.528-23.228 4.839Q-23.228 5.153-23.342 5.483Q-23.457 5.813-23.686 6.034Q-23.915 6.254-24.236 6.254M-24.236 6.028Q-23.993 6.028-23.822 5.832Q-23.652 5.635-23.573 5.357Q-23.494 5.078-23.494 4.839Q-23.494 4.672-23.539 4.461Q-23.583 4.251-23.669 4.077Q-23.754 3.903-23.901 3.779Q-24.048 3.656-24.236 3.656Q-24.591 3.656-24.718 4.027Q-24.844 4.398-24.844 4.839Q-24.844 5.283-24.718 5.656Q-24.591 6.028-24.236 6.028\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.522 -18.07)\">\u003Cpath d=\"M-22.533 5.653L-22.533 5.574Q-22.482 5.393-22.314 5.372L-21.692 5.372L-21.692 3.335L-22.314 3.335Q-22.485 3.315-22.533 3.123L-22.533 3.048Q-22.482 2.863-22.314 2.843L-21.351 2.843Q-21.176 2.860-21.132 3.048L-21.132 3.335Q-20.903 3.086-20.592 2.947Q-20.281 2.809-19.942 2.809Q-19.686 2.809-19.481 2.927Q-19.276 3.045-19.276 3.277Q-19.276 3.424-19.372 3.527Q-19.467 3.629-19.614 3.629Q-19.748 3.629-19.848 3.532Q-19.949 3.434-19.949 3.298Q-20.277 3.298-20.552 3.474Q-20.828 3.650-20.980 3.942Q-21.132 4.234-21.132 4.566L-21.132 5.372L-20.305 5.372Q-20.124 5.393-20.089 5.574L-20.089 5.653Q-20.124 5.840-20.305 5.861L-22.314 5.861Q-22.482 5.840-22.533 5.653M-18.500 5.687L-18.500 4.887Q-18.476 4.706-18.291 4.685L-18.145 4.685Q-18.001 4.706-17.950 4.846Q-17.772 5.406-17.136 5.406Q-16.955 5.406-16.755 5.376Q-16.555 5.345-16.408 5.244Q-16.261 5.143-16.261 4.965Q-16.261 4.781-16.456 4.682Q-16.651 4.583-16.890 4.545L-17.502 4.446Q-18.500 4.261-18.500 3.629Q-18.500 3.376-18.374 3.210Q-18.247 3.045-18.037 2.951Q-17.827 2.857-17.603 2.822Q-17.379 2.788-17.136 2.788Q-16.917 2.788-16.748 2.814Q-16.579 2.840-16.436 2.908Q-16.367 2.805-16.254 2.788L-16.186 2.788Q-16.101 2.798-16.046 2.853Q-15.991 2.908-15.981 2.990L-15.981 3.609Q-15.991 3.691-16.046 3.749Q-16.101 3.807-16.186 3.817L-16.333 3.817Q-16.415 3.807-16.473 3.749Q-16.531 3.691-16.541 3.609Q-16.541 3.277-17.150 3.277Q-17.454 3.277-17.733 3.349Q-18.011 3.421-18.011 3.636Q-18.011 3.868-17.423 3.964L-16.808 4.070Q-16.384 4.142-16.078 4.359Q-15.772 4.576-15.772 4.965Q-15.772 5.307-15.979 5.519Q-16.186 5.731-16.492 5.813Q-16.798 5.895-17.136 5.895Q-17.642 5.895-17.991 5.673Q-18.052 5.782-18.095 5.832Q-18.138 5.882-18.230 5.895L-18.291 5.895Q-18.479 5.875-18.500 5.687M-15.236 7.211L-15.236 7.136Q-15.198 6.944-15.017 6.924L-14.648 6.924L-14.648 3.335L-15.017 3.335Q-15.198 3.315-15.236 3.123L-15.236 3.048Q-15.195 2.863-15.017 2.843L-14.303 2.843Q-14.132 2.860-14.087 3.048L-14.087 3.110Q-13.903 2.963-13.672 2.886Q-13.441 2.809-13.206 2.809Q-12.908 2.809-12.648 2.935Q-12.389 3.062-12.201 3.282Q-12.013 3.503-11.912 3.776Q-11.811 4.049-11.811 4.350Q-11.811 4.757-12.009 5.116Q-12.207 5.475-12.546 5.685Q-12.884 5.895-13.294 5.895Q-13.749 5.895-14.087 5.574L-14.087 6.924L-13.715 6.924Q-13.534 6.944-13.499 7.136L-13.499 7.211Q-13.534 7.396-13.715 7.416L-15.017 7.416Q-15.195 7.396-15.236 7.211M-13.332 5.406Q-13.062 5.406-12.843 5.258Q-12.624 5.109-12.498 4.863Q-12.372 4.617-12.372 4.350Q-12.372 4.097-12.481 3.853Q-12.590 3.609-12.794 3.453Q-12.997 3.298-13.260 3.298Q-13.541 3.298-13.770 3.460Q-13.999 3.622-14.087 3.885L-14.087 4.631Q-14.009 4.952-13.816 5.179Q-13.623 5.406-13.332 5.406\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(40.522 2.43)\">\u003Cpath d=\"M-34.969 5.861L-36.572 5.861L-36.572 5.581Q-36.346 5.581-36.197 5.547Q-36.049 5.512-36.049 5.372L-36.049 1.753Q-36.049 1.483-36.156 1.421Q-36.264 1.360-36.572 1.360L-36.572 1.079L-35.495 1.004L-35.495 5.372Q-35.495 5.509-35.345 5.545Q-35.194 5.581-34.969 5.581L-34.969 5.861M-34.415 4.378Q-34.415 4.036-34.280 3.737Q-34.145 3.438-33.906 3.214Q-33.666 2.990-33.348 2.865Q-33.031 2.740-32.699 2.740Q-32.255 2.740-31.855 2.956Q-31.455 3.171-31.221 3.549Q-30.987 3.926-30.987 4.378Q-30.987 4.719-31.128 5.003Q-31.270 5.287-31.515 5.494Q-31.759 5.700-32.068 5.815Q-32.378 5.929-32.699 5.929Q-33.130 5.929-33.531 5.728Q-33.933 5.526-34.174 5.174Q-34.415 4.822-34.415 4.378M-32.699 5.680Q-32.097 5.680-31.874 5.302Q-31.650 4.924-31.650 4.292Q-31.650 3.680-31.884 3.321Q-32.118 2.963-32.699 2.963Q-33.752 2.963-33.752 4.292Q-33.752 4.924-33.526 5.302Q-33.301 5.680-32.699 5.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.522 2.43)\">\u003Cpath d=\"M-29.214 5.834L-30.195 3.335Q-30.256 3.192-30.374 3.157Q-30.492 3.123-30.708 3.123L-30.708 2.843L-29.228 2.843L-29.228 3.123Q-29.607 3.123-29.607 3.284Q-29.607 3.294-29.593 3.335L-28.879 5.167L-28.206 3.462Q-28.236 3.390-28.236 3.362Q-28.236 3.335-28.264 3.335Q-28.325 3.188-28.443 3.156Q-28.561 3.123-28.773 3.123L-28.773 2.843L-27.375 2.843L-27.375 3.123Q-27.751 3.123-27.751 3.284Q-27.751 3.315-27.744 3.335L-26.989 5.273L-26.302 3.523Q-26.281 3.472-26.281 3.417Q-26.281 3.277-26.394 3.200Q-26.507 3.123-26.647 3.123L-26.647 2.843L-25.427 2.843L-25.427 3.123Q-25.632 3.123-25.787 3.229Q-25.943 3.335-26.015 3.523L-26.920 5.834Q-26.955 5.929-27.067 5.929L-27.136 5.929Q-27.245 5.929-27.283 5.834L-28.065 3.831L-28.852 5.834Q-28.886 5.929-28.999 5.929L-29.067 5.929Q-29.176 5.929-29.214 5.834\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.522 2.43)\">\u003Cpath d=\"M-25.150 4.326Q-25.150 4.005-25.025 3.716Q-24.900 3.427-24.674 3.204Q-24.449 2.980-24.153 2.860Q-23.858 2.740-23.540 2.740Q-23.212 2.740-22.950 2.840Q-22.689 2.939-22.513 3.121Q-22.337 3.304-22.243 3.562Q-22.149 3.820-22.149 4.152Q-22.149 4.244-22.231 4.265L-24.486 4.265L-24.486 4.326Q-24.486 4.914-24.203 5.297Q-23.919 5.680-23.352 5.680Q-23.030 5.680-22.762 5.487Q-22.494 5.294-22.405 4.979Q-22.398 4.938-22.323 4.924L-22.231 4.924Q-22.149 4.948-22.149 5.020Q-22.149 5.027-22.155 5.054Q-22.268 5.451-22.639 5.690Q-23.010 5.929-23.434 5.929Q-23.871 5.929-24.271 5.721Q-24.671 5.512-24.910 5.145Q-25.150 4.778-25.150 4.326M-24.480 4.056L-22.665 4.056Q-22.665 3.779-22.762 3.527Q-22.860 3.274-23.058 3.118Q-23.256 2.963-23.540 2.963Q-23.817 2.963-24.030 3.121Q-24.244 3.280-24.362 3.535Q-24.480 3.790-24.480 4.056M-19.811 5.861L-21.547 5.861L-21.547 5.581Q-21.318 5.581-21.169 5.547Q-21.021 5.512-21.021 5.372L-21.021 3.523Q-21.021 3.253-21.128 3.192Q-21.236 3.130-21.547 3.130L-21.547 2.850L-20.518 2.775L-20.518 3.482Q-20.388 3.174-20.146 2.975Q-19.903 2.775-19.585 2.775Q-19.366 2.775-19.195 2.899Q-19.025 3.024-19.025 3.236Q-19.025 3.373-19.124 3.472Q-19.223 3.571-19.356 3.571Q-19.493 3.571-19.592 3.472Q-19.691 3.373-19.691 3.236Q-19.691 3.096-19.592 2.997Q-19.882 2.997-20.082 3.193Q-20.282 3.390-20.375 3.684Q-20.467 3.978-20.467 4.258L-20.467 5.372Q-20.467 5.581-19.811 5.581\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(40.522 2.43)\">\u003Cpath d=\"M-15.675 5.133Q-15.675 4.801-15.452 4.574Q-15.228 4.347-14.884 4.219Q-14.541 4.090-14.168 4.038Q-13.796 3.985-13.491 3.985L-13.491 3.732Q-13.491 3.527-13.599 3.347Q-13.707 3.168-13.888 3.065Q-14.069 2.963-14.277 2.963Q-14.684 2.963-14.920 3.055Q-14.831 3.092-14.785 3.176Q-14.739 3.260-14.739 3.362Q-14.739 3.458-14.785 3.537Q-14.831 3.615-14.912 3.660Q-14.992 3.704-15.081 3.704Q-15.231 3.704-15.332 3.607Q-15.433 3.509-15.433 3.362Q-15.433 2.740-14.277 2.740Q-14.066 2.740-13.816 2.804Q-13.567 2.867-13.365 2.986Q-13.163 3.106-13.037 3.291Q-12.910 3.475-12.910 3.718L-12.910 5.294Q-12.910 5.410-12.849 5.506Q-12.787 5.601-12.674 5.601Q-12.565 5.601-12.500 5.507Q-12.435 5.413-12.435 5.294L-12.435 4.846L-12.169 4.846L-12.169 5.294Q-12.169 5.564-12.396 5.729Q-12.623 5.895-12.903 5.895Q-13.112 5.895-13.249 5.741Q-13.385 5.588-13.409 5.372Q-13.556 5.639-13.838 5.784Q-14.120 5.929-14.445 5.929Q-14.722 5.929-15.006 5.854Q-15.289 5.779-15.482 5.600Q-15.675 5.420-15.675 5.133M-15.060 5.133Q-15.060 5.307-14.959 5.437Q-14.859 5.567-14.703 5.637Q-14.548 5.707-14.383 5.707Q-14.165 5.707-13.956 5.610Q-13.748 5.512-13.620 5.331Q-13.491 5.150-13.491 4.924L-13.491 4.196Q-13.816 4.196-14.182 4.287Q-14.548 4.378-14.804 4.590Q-15.060 4.801-15.060 5.133M-11.752 4.350Q-11.752 4.012-11.611 3.721Q-11.471 3.431-11.227 3.217Q-10.983 3.004-10.678 2.889Q-10.374 2.775-10.049 2.775Q-9.779 2.775-9.516 2.874Q-9.253 2.973-9.062 3.151L-9.062 1.753Q-9.062 1.483-9.169 1.421Q-9.277 1.360-9.588 1.360L-9.588 1.079L-8.511 1.004L-8.511 5.188Q-8.511 5.376-8.457 5.459Q-8.402 5.543-8.301 5.562Q-8.200 5.581-7.985 5.581L-7.985 5.861L-9.092 5.929L-9.092 5.512Q-9.509 5.929-10.135 5.929Q-10.566 5.929-10.938 5.717Q-11.311 5.506-11.531 5.145Q-11.752 4.784-11.752 4.350M-10.077 5.707Q-9.868 5.707-9.682 5.635Q-9.496 5.564-9.342 5.427Q-9.188 5.290-9.092 5.112L-9.092 3.503Q-9.178 3.356-9.323 3.236Q-9.468 3.116-9.638 3.057Q-9.807 2.997-9.988 2.997Q-10.548 2.997-10.817 3.386Q-11.085 3.776-11.085 4.357Q-11.085 4.928-10.851 5.318Q-10.617 5.707-10.077 5.707M-7.336 4.350Q-7.336 4.012-7.195 3.721Q-7.055 3.431-6.811 3.217Q-6.567 3.004-6.262 2.889Q-5.958 2.775-5.633 2.775Q-5.363 2.775-5.100 2.874Q-4.837 2.973-4.646 3.151L-4.646 1.753Q-4.646 1.483-4.753 1.421Q-4.861 1.360-5.172 1.360L-5.172 1.079L-4.095 1.004L-4.095 5.188Q-4.095 5.376-4.041 5.459Q-3.986 5.543-3.885 5.562Q-3.784 5.581-3.569 5.581L-3.569 5.861L-4.676 5.929L-4.676 5.512Q-5.093 5.929-5.719 5.929Q-6.150 5.929-6.522 5.717Q-6.895 5.506-7.115 5.145Q-7.336 4.784-7.336 4.350M-5.661 5.707Q-5.452 5.707-5.266 5.635Q-5.080 5.564-4.926 5.427Q-4.772 5.290-4.676 5.112L-4.676 3.503Q-4.762 3.356-4.907 3.236Q-5.052 3.116-5.222 3.057Q-5.391 2.997-5.572 2.997Q-6.132 2.997-6.401 3.386Q-6.669 3.776-6.669 4.357Q-6.669 4.928-6.435 5.318Q-6.201 5.707-5.661 5.707M-1.170 5.861L-2.906 5.861L-2.906 5.581Q-2.677 5.581-2.528 5.547Q-2.380 5.512-2.380 5.372L-2.380 3.523Q-2.380 3.253-2.487 3.192Q-2.595 3.130-2.906 3.130L-2.906 2.850L-1.877 2.775L-1.877 3.482Q-1.747 3.174-1.505 2.975Q-1.262 2.775-0.944 2.775Q-0.725 2.775-0.554 2.899Q-0.383 3.024-0.383 3.236Q-0.383 3.373-0.483 3.472Q-0.582 3.571-0.715 3.571Q-0.852 3.571-0.951 3.472Q-1.050 3.373-1.050 3.236Q-1.050 3.096-0.951 2.997Q-1.241 2.997-1.441 3.193Q-1.641 3.390-1.734 3.684Q-1.826 3.978-1.826 4.258L-1.826 5.372Q-1.826 5.581-1.170 5.581\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(110.975 -69.243)\">\u003Cpath d=\"M-36.615 5.029Q-36.615 4.545-36.213 4.250Q-35.810 3.955-35.260 3.836Q-34.709 3.716-34.217 3.716L-34.217 3.427Q-34.217 3.201-34.332 2.994Q-34.447 2.787-34.644 2.668Q-34.842 2.548-35.072 2.548Q-35.498 2.548-35.783 2.654Q-35.713 2.681-35.666 2.736Q-35.619 2.791-35.594 2.861Q-35.568 2.931-35.568 3.006Q-35.568 3.111-35.619 3.203Q-35.670 3.295-35.762 3.345Q-35.853 3.396-35.959 3.396Q-36.064 3.396-36.156 3.345Q-36.248 3.295-36.299 3.203Q-36.349 3.111-36.349 3.006Q-36.349 2.588-35.961 2.441Q-35.572 2.295-35.072 2.295Q-34.740 2.295-34.387 2.425Q-34.033 2.556-33.805 2.810Q-33.576 3.064-33.576 3.412L-33.576 5.213Q-33.576 5.345-33.504 5.455Q-33.431 5.564-33.303 5.564Q-33.178 5.564-33.109 5.459Q-33.041 5.353-33.041 5.213L-33.041 4.701L-32.760 4.701L-32.760 5.213Q-32.760 5.416-32.877 5.574Q-32.994 5.732-33.176 5.816Q-33.357 5.900-33.560 5.900Q-33.791 5.900-33.943 5.728Q-34.096 5.556-34.127 5.326Q-34.287 5.607-34.596 5.773Q-34.904 5.939-35.256 5.939Q-35.767 5.939-36.191 5.716Q-36.615 5.494-36.615 5.029M-35.928 5.029Q-35.928 5.314-35.701 5.500Q-35.474 5.685-35.181 5.685Q-34.935 5.685-34.711 5.568Q-34.486 5.451-34.351 5.248Q-34.217 5.045-34.217 4.791L-34.217 3.959Q-34.482 3.959-34.767 4.013Q-35.053 4.068-35.324 4.197Q-35.596 4.326-35.762 4.533Q-35.928 4.740-35.928 5.029M-30.400 5.861L-32.385 5.861L-32.385 5.564Q-32.111 5.564-31.943 5.517Q-31.775 5.470-31.775 5.302L-31.775 2.709L-32.416 2.709L-32.416 2.412L-31.775 2.412L-31.775 1.478Q-31.775 1.213-31.658 0.976Q-31.541 0.740-31.347 0.576Q-31.154 0.412-30.906 0.320Q-30.658 0.228-30.392 0.228Q-30.107 0.228-29.883 0.386Q-29.658 0.545-29.658 0.822Q-29.658 0.978-29.764 1.088Q-29.869 1.197-30.033 1.197Q-30.189 1.197-30.299 1.088Q-30.408 0.978-30.408 0.822Q-30.408 0.615-30.248 0.509Q-30.346 0.486-30.439 0.486Q-30.670 0.486-30.842 0.642Q-31.014 0.798-31.099 1.035Q-31.185 1.271-31.185 1.494L-31.185 2.412L-30.217 2.412L-30.217 2.709L-31.162 2.709L-31.162 5.302Q-31.162 5.470-30.935 5.517Q-30.709 5.564-30.400 5.564L-30.400 5.861M-29.248 4.900L-29.248 2.709L-29.951 2.709L-29.951 2.455Q-29.596 2.455-29.353 2.222Q-29.111 1.990-29 1.642Q-28.889 1.295-28.889 0.939L-28.607 0.939L-28.607 2.412L-27.431 2.412L-27.431 2.709L-28.607 2.709L-28.607 4.884Q-28.607 5.205-28.488 5.433Q-28.369 5.662-28.088 5.662Q-27.908 5.662-27.791 5.539Q-27.674 5.416-27.621 5.236Q-27.568 5.056-27.568 4.884L-27.568 4.412L-27.287 4.412L-27.287 4.900Q-27.287 5.154-27.392 5.394Q-27.498 5.634-27.695 5.787Q-27.892 5.939-28.150 5.939Q-28.467 5.939-28.719 5.816Q-28.971 5.693-29.109 5.459Q-29.248 5.224-29.248 4.900M-26.568 4.107Q-26.568 3.627-26.336 3.211Q-26.103 2.795-25.693 2.545Q-25.283 2.295-24.806 2.295Q-24.076 2.295-23.678 2.736Q-23.279 3.177-23.279 3.908Q-23.279 4.013-23.373 4.037L-25.822 4.037L-25.822 4.107Q-25.822 4.517-25.701 4.873Q-25.580 5.228-25.308 5.445Q-25.037 5.662-24.607 5.662Q-24.244 5.662-23.947 5.433Q-23.650 5.205-23.549 4.853Q-23.541 4.806-23.455 4.791L-23.373 4.791Q-23.279 4.818-23.279 4.900Q-23.279 4.908-23.287 4.939Q-23.349 5.166-23.488 5.349Q-23.627 5.533-23.818 5.666Q-24.010 5.798-24.228 5.869Q-24.447 5.939-24.685 5.939Q-25.056 5.939-25.394 5.802Q-25.732 5.666-26 5.414Q-26.267 5.162-26.418 4.822Q-26.568 4.482-26.568 4.107M-25.814 3.798L-23.853 3.798Q-23.853 3.494-23.955 3.203Q-24.056 2.912-24.273 2.730Q-24.490 2.548-24.806 2.548Q-25.107 2.548-25.338 2.736Q-25.568 2.923-25.691 3.215Q-25.814 3.506-25.814 3.798M-20.783 5.861L-22.764 5.861L-22.764 5.564Q-22.494 5.564-22.326 5.519Q-22.158 5.474-22.158 5.302L-22.158 3.166Q-22.158 2.951-22.221 2.855Q-22.283 2.759-22.400 2.738Q-22.517 2.716-22.764 2.716L-22.764 2.420L-21.596 2.334L-21.596 3.119Q-21.517 2.908-21.365 2.722Q-21.213 2.537-21.014 2.435Q-20.814 2.334-20.588 2.334Q-20.342 2.334-20.150 2.478Q-19.959 2.623-19.959 2.853Q-19.959 3.009-20.064 3.119Q-20.170 3.228-20.326 3.228Q-20.482 3.228-20.592 3.119Q-20.701 3.009-20.701 2.853Q-20.701 2.693-20.596 2.588Q-20.920 2.588-21.135 2.816Q-21.349 3.045-21.445 3.384Q-21.541 3.724-21.541 4.029L-21.541 5.302Q-21.541 5.470-21.314 5.517Q-21.088 5.564-20.783 5.564\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(110.975 -69.243)\">\u003Cpath d=\"M-16.804 7.404L-16.804 7.318Q-16.761 7.099-16.554 7.076L-16.132 7.076L-16.132 2.974L-16.554 2.974Q-16.761 2.951-16.804 2.732L-16.804 2.646Q-16.757 2.435-16.554 2.412L-15.737 2.412Q-15.542 2.431-15.491 2.646L-15.491 2.716Q-15.280 2.548-15.017 2.461Q-14.753 2.373-14.483 2.373Q-14.144 2.373-13.847 2.517Q-13.550 2.662-13.335 2.914Q-13.120 3.166-13.005 3.478Q-12.890 3.791-12.890 4.134Q-12.890 4.599-13.116 5.009Q-13.343 5.420-13.729 5.660Q-14.116 5.900-14.585 5.900Q-15.104 5.900-15.491 5.533L-15.491 7.076L-15.065 7.076Q-14.858 7.099-14.819 7.318L-14.819 7.404Q-14.858 7.615-15.065 7.638L-16.554 7.638Q-16.757 7.615-16.804 7.404M-14.628 5.341Q-14.319 5.341-14.069 5.172Q-13.819 5.002-13.675 4.720Q-13.530 4.439-13.530 4.134Q-13.530 3.845-13.655 3.566Q-13.780 3.287-14.013 3.109Q-14.245 2.931-14.546 2.931Q-14.866 2.931-15.128 3.117Q-15.390 3.302-15.491 3.603L-15.491 4.455Q-15.401 4.822-15.181 5.082Q-14.960 5.341-14.628 5.341M-11.886 5.006L-11.886 2.974L-12.308 2.974Q-12.515 2.951-12.558 2.732L-12.558 2.646Q-12.511 2.435-12.308 2.412L-11.491 2.412Q-11.296 2.435-11.245 2.646L-11.245 4.974Q-11.245 5.209-11.075 5.275Q-10.905 5.341-10.620 5.341Q-10.413 5.341-10.218 5.265Q-10.022 5.189-9.897 5.039Q-9.772 4.888-9.772 4.677L-9.772 2.974L-10.194 2.974Q-10.405 2.951-10.444 2.732L-10.444 2.646Q-10.405 2.435-10.194 2.412L-9.382 2.412Q-9.183 2.435-9.132 2.646L-9.132 5.302L-8.706 5.302Q-8.499 5.326-8.460 5.533L-8.460 5.623Q-8.499 5.838-8.706 5.861L-9.522 5.861Q-9.722 5.838-9.772 5.638Q-10.175 5.900-10.683 5.900Q-10.917 5.900-11.132 5.859Q-11.347 5.818-11.513 5.716Q-11.679 5.615-11.782 5.437Q-11.886 5.259-11.886 5.006M-7.796 5.662L-7.796 4.748Q-7.769 4.541-7.558 4.517L-7.390 4.517Q-7.226 4.541-7.167 4.701Q-6.964 5.341-6.237 5.341Q-6.030 5.341-5.802 5.306Q-5.573 5.271-5.405 5.156Q-5.237 5.041-5.237 4.838Q-5.237 4.627-5.460 4.513Q-5.683 4.400-5.956 4.357L-6.655 4.244Q-7.796 4.033-7.796 3.310Q-7.796 3.021-7.651 2.832Q-7.507 2.642-7.267 2.535Q-7.026 2.427-6.770 2.388Q-6.515 2.349-6.237 2.349Q-5.987 2.349-5.794 2.379Q-5.601 2.408-5.436 2.486Q-5.358 2.369-5.229 2.349L-5.151 2.349Q-5.054 2.361-4.991 2.423Q-4.929 2.486-4.917 2.580L-4.917 3.287Q-4.929 3.381-4.991 3.447Q-5.054 3.513-5.151 3.525L-5.319 3.525Q-5.413 3.513-5.479 3.447Q-5.546 3.381-5.558 3.287Q-5.558 2.908-6.253 2.908Q-6.601 2.908-6.919 2.990Q-7.237 3.072-7.237 3.318Q-7.237 3.584-6.565 3.693L-5.862 3.814Q-5.378 3.896-5.028 4.144Q-4.679 4.392-4.679 4.838Q-4.679 5.228-4.915 5.470Q-5.151 5.713-5.501 5.806Q-5.851 5.900-6.237 5.900Q-6.815 5.900-7.214 5.646Q-7.284 5.771-7.333 5.828Q-7.382 5.884-7.487 5.900L-7.558 5.900Q-7.772 5.877-7.796 5.662M-4.065 5.623L-4.065 5.533Q-4.022 5.326-3.815 5.302L-3.394 5.302L-3.394 1.533L-3.815 1.533Q-4.022 1.509-4.065 1.295L-4.065 1.205Q-4.022 0.998-3.815 0.974L-2.999 0.974Q-2.804 0.998-2.753 1.205L-2.753 2.756Q-2.292 2.373-1.694 2.373Q-1.347 2.373-1.108 2.513Q-0.870 2.654-0.755 2.912Q-0.640 3.170-0.640 3.525L-0.640 5.302L-0.214 5.302Q-0.007 5.326 0.032 5.533L0.032 5.623Q-0.007 5.838-0.214 5.861L-1.608 5.861Q-1.804 5.838-1.854 5.623L-1.854 5.533Q-1.804 5.322-1.608 5.302L-1.280 5.302L-1.280 3.556Q-1.280 3.248-1.370 3.090Q-1.460 2.931-1.753 2.931Q-2.022 2.931-2.251 3.062Q-2.479 3.193-2.616 3.422Q-2.753 3.650-2.753 3.916L-2.753 5.302L-2.327 5.302Q-2.120 5.326-2.081 5.533L-2.081 5.623Q-2.120 5.838-2.327 5.861L-3.815 5.861Q-4.022 5.838-4.065 5.623M2.423 7.404L2.423 7.318Q2.474 7.099 2.669 7.076L3.134 7.076L3.134 5.478Q2.681 5.900 2.071 5.900Q1.716 5.900 1.411 5.757Q1.106 5.615 0.874 5.365Q0.642 5.115 0.517 4.793Q0.392 4.470 0.392 4.134Q0.392 3.650 0.630 3.250Q0.868 2.849 1.274 2.611Q1.681 2.373 2.157 2.373Q2.720 2.373 3.134 2.763L3.134 2.603Q3.185 2.392 3.384 2.373L3.524 2.373Q3.724 2.396 3.774 2.603L3.774 7.076L4.239 7.076Q4.435 7.099 4.485 7.318L4.485 7.404Q4.435 7.615 4.239 7.638L2.669 7.638Q2.474 7.615 2.423 7.404M2.118 5.341Q2.489 5.341 2.765 5.088Q3.040 4.834 3.134 4.470L3.134 3.853Q3.091 3.615 2.968 3.402Q2.845 3.189 2.647 3.060Q2.450 2.931 2.208 2.931Q1.892 2.931 1.620 3.097Q1.349 3.263 1.190 3.545Q1.032 3.826 1.032 4.142Q1.032 4.607 1.347 4.974Q1.661 5.341 2.118 5.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(110.975 -69.243)\">\u003Cpath d=\"M9.306 6.220Q9.306 6.166 9.329 6.099L11.595 0.494Q11.688 0.310 11.884 0.310Q12.009 0.310 12.097 0.398Q12.185 0.486 12.185 0.615Q12.185 0.673 12.161 0.732L9.899 6.341Q9.798 6.525 9.618 6.525Q9.493 6.525 9.399 6.435Q9.306 6.345 9.306 6.220M11.884 6.525Q11.532 6.525 11.351 6.185Q11.169 5.845 11.169 5.463Q11.169 5.076 11.349 4.736Q11.528 4.396 11.884 4.396Q12.122 4.396 12.280 4.566Q12.438 4.736 12.513 4.980Q12.587 5.224 12.587 5.463Q12.587 5.697 12.513 5.941Q12.438 6.185 12.280 6.355Q12.122 6.525 11.884 6.525M11.884 5.966Q11.966 5.935 12.013 5.767Q12.060 5.599 12.060 5.463Q12.060 5.326 12.013 5.156Q11.966 4.986 11.884 4.959Q11.798 4.986 11.747 5.154Q11.696 5.322 11.696 5.463Q11.696 5.591 11.747 5.763Q11.798 5.935 11.884 5.966M9.618 2.447Q9.376 2.447 9.216 2.277Q9.056 2.107 8.981 1.861Q8.907 1.615 8.907 1.373Q8.907 0.990 9.087 0.650Q9.267 0.310 9.618 0.310Q9.856 0.310 10.015 0.480Q10.173 0.650 10.247 0.894Q10.321 1.138 10.321 1.373Q10.321 1.615 10.247 1.861Q10.173 2.107 10.015 2.277Q9.856 2.447 9.618 2.447M9.618 1.884Q9.708 1.841 9.751 1.685Q9.794 1.529 9.794 1.373Q9.794 1.244 9.747 1.068Q9.700 0.892 9.610 0.869Q9.595 0.869 9.565 0.904Q9.536 0.939 9.528 0.959Q9.435 1.146 9.435 1.373Q9.435 1.509 9.483 1.681Q9.532 1.853 9.618 1.884M13.095 5.623L13.095 5.533Q13.153 5.326 13.345 5.302L14.056 5.302L14.056 2.974L13.345 2.974Q13.149 2.951 13.095 2.732L13.095 2.646Q13.153 2.435 13.345 2.412L14.446 2.412Q14.646 2.431 14.696 2.646L14.696 2.974Q14.958 2.689 15.313 2.531Q15.669 2.373 16.056 2.373Q16.349 2.373 16.583 2.507Q16.817 2.642 16.817 2.908Q16.817 3.076 16.708 3.193Q16.599 3.310 16.431 3.310Q16.278 3.310 16.163 3.199Q16.048 3.088 16.048 2.931Q15.673 2.931 15.358 3.132Q15.044 3.334 14.870 3.668Q14.696 4.002 14.696 4.381L14.696 5.302L15.642 5.302Q15.849 5.326 15.888 5.533L15.888 5.623Q15.849 5.838 15.642 5.861L13.345 5.861Q13.153 5.838 13.095 5.623M17.524 4.748Q17.524 4.302 17.938 4.045Q18.353 3.787 18.894 3.687Q19.435 3.588 19.942 3.580Q19.942 3.365 19.808 3.213Q19.673 3.060 19.466 2.984Q19.259 2.908 19.048 2.908Q18.704 2.908 18.544 2.931L18.544 2.990Q18.544 3.158 18.425 3.273Q18.306 3.388 18.142 3.388Q17.966 3.388 17.851 3.265Q17.735 3.142 17.735 2.974Q17.735 2.568 18.116 2.459Q18.497 2.349 19.056 2.349Q19.325 2.349 19.593 2.427Q19.860 2.506 20.085 2.656Q20.310 2.806 20.446 3.027Q20.583 3.248 20.583 3.525L20.583 5.244Q20.583 5.302 21.110 5.302Q21.306 5.322 21.356 5.533L21.356 5.623Q21.306 5.838 21.110 5.861L20.966 5.861Q20.622 5.861 20.394 5.814Q20.165 5.767 20.021 5.580Q19.560 5.900 18.853 5.900Q18.517 5.900 18.212 5.759Q17.907 5.619 17.716 5.357Q17.524 5.095 17.524 4.748M18.165 4.756Q18.165 5.029 18.407 5.185Q18.649 5.341 18.935 5.341Q19.153 5.341 19.386 5.283Q19.618 5.224 19.780 5.086Q19.942 4.947 19.942 4.724L19.942 4.134Q19.661 4.134 19.245 4.191Q18.829 4.248 18.497 4.386Q18.165 4.525 18.165 4.756M21.622 5.623L21.622 5.533Q21.661 5.326 21.868 5.302L22.274 5.302L23.204 4.084L22.333 2.974L21.915 2.974Q21.720 2.955 21.669 2.732L21.669 2.646Q21.720 2.435 21.915 2.412L23.075 2.412Q23.274 2.435 23.325 2.646L23.325 2.732Q23.274 2.951 23.075 2.974L22.966 2.974L23.462 3.631L23.938 2.974L23.821 2.974Q23.622 2.951 23.571 2.732L23.571 2.646Q23.622 2.435 23.821 2.412L24.981 2.412Q25.177 2.431 25.228 2.646L25.228 2.732Q25.177 2.951 24.981 2.974L24.571 2.974L23.724 4.084L24.685 5.302L25.091 5.302Q25.290 5.326 25.341 5.533L25.341 5.623Q25.302 5.838 25.091 5.861L23.938 5.861Q23.731 5.838 23.692 5.623L23.692 5.533Q23.731 5.326 23.938 5.302L24.067 5.302L23.462 4.447L22.876 5.302L23.021 5.302Q23.228 5.326 23.267 5.533L23.267 5.623Q23.228 5.838 23.021 5.861L21.868 5.861Q21.673 5.841 21.622 5.623\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M76.86-24.014h56.906V-43.93H76.86Z\"\u002F>\u003Cg transform=\"translate(138.722 -39.39)\">\u003Cpath d=\"M-36.232 5.396Q-36.232 5.213-36.096 5.076Q-35.959 4.939-35.767 4.939Q-35.576 4.939-35.443 5.072Q-35.310 5.205-35.310 5.396Q-35.310 5.595-35.443 5.728Q-35.576 5.861-35.767 5.861Q-35.959 5.861-36.096 5.724Q-36.232 5.588-36.232 5.396M-33.873 5.396Q-33.873 5.213-33.736 5.076Q-33.599 4.939-33.408 4.939Q-33.217 4.939-33.084 5.072Q-32.951 5.205-32.951 5.396Q-32.951 5.595-33.084 5.728Q-33.217 5.861-33.408 5.861Q-33.599 5.861-33.736 5.724Q-33.873 5.588-33.873 5.396M-31.514 5.396Q-31.514 5.213-31.377 5.076Q-31.240 4.939-31.049 4.939Q-30.857 4.939-30.724 5.072Q-30.592 5.205-30.592 5.396Q-30.592 5.595-30.724 5.728Q-30.857 5.861-31.049 5.861Q-31.240 5.861-31.377 5.724Q-31.514 5.588-31.514 5.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M76.86-4.097h56.906v-19.917H76.86Z\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(129.041 -17.917)\">\u003Cpath d=\"M-36.713 4.166Q-36.713 3.662-36.457 3.230Q-36.201 2.798-35.765 2.547Q-35.330 2.295-34.830 2.295Q-34.443 2.295-34.101 2.439Q-33.760 2.584-33.498 2.845Q-33.236 3.107-33.094 3.443Q-32.951 3.779-32.951 4.166Q-32.951 4.658-33.215 5.068Q-33.478 5.478-33.908 5.709Q-34.338 5.939-34.830 5.939Q-35.322 5.939-35.756 5.707Q-36.189 5.474-36.451 5.066Q-36.713 4.658-36.713 4.166M-34.830 5.662Q-34.373 5.662-34.121 5.439Q-33.869 5.216-33.781 4.865Q-33.693 4.513-33.693 4.068Q-33.693 3.638-33.787 3.300Q-33.881 2.963-34.135 2.756Q-34.389 2.548-34.830 2.548Q-35.478 2.548-35.722 2.965Q-35.967 3.381-35.967 4.068Q-35.967 4.513-35.879 4.865Q-35.791 5.216-35.539 5.439Q-35.287 5.662-34.830 5.662M-30.553 5.861L-32.385 5.861L-32.385 5.564Q-32.111 5.564-31.943 5.517Q-31.775 5.470-31.775 5.302L-31.775 1.142Q-31.775 0.927-31.838 0.832Q-31.900 0.736-32.019 0.715Q-32.139 0.693-32.385 0.693L-32.385 0.396L-31.162 0.310L-31.162 5.302Q-31.162 5.470-30.994 5.517Q-30.826 5.564-30.553 5.564L-30.553 5.861M-28.291 5.939Q-28.771 5.939-29.180 5.695Q-29.588 5.451-29.826 5.037Q-30.064 4.623-30.064 4.134Q-30.064 3.642-29.806 3.226Q-29.549 2.810-29.117 2.572Q-28.685 2.334-28.193 2.334Q-27.572 2.334-27.123 2.771L-27.123 1.142Q-27.123 0.927-27.185 0.832Q-27.248 0.736-27.365 0.715Q-27.482 0.693-27.728 0.693L-27.728 0.396L-26.506 0.310L-26.506 5.119Q-26.506 5.330-26.443 5.425Q-26.381 5.521-26.264 5.543Q-26.146 5.564-25.896 5.564L-25.896 5.861L-27.146 5.939L-27.146 5.455Q-27.611 5.939-28.291 5.939M-28.224 5.685Q-27.885 5.685-27.592 5.494Q-27.299 5.302-27.146 5.006L-27.146 3.173Q-27.295 2.900-27.556 2.744Q-27.818 2.588-28.131 2.588Q-28.756 2.588-29.039 3.035Q-29.322 3.482-29.322 4.142Q-29.322 4.787-29.070 5.236Q-28.818 5.685-28.224 5.685\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(129.041 -17.917)\">\u003Cpath d=\"M-21.921 4.900L-21.921 2.709L-22.624 2.709L-22.624 2.455Q-22.268 2.455-22.026 2.222Q-21.784 1.990-21.673 1.642Q-21.561 1.295-21.561 0.939L-21.280 0.939L-21.280 2.412L-20.104 2.412L-20.104 2.709L-21.280 2.709L-21.280 4.884Q-21.280 5.205-21.161 5.433Q-21.042 5.662-20.761 5.662Q-20.581 5.662-20.464 5.539Q-20.346 5.416-20.294 5.236Q-20.241 5.056-20.241 4.884L-20.241 4.412L-19.960 4.412L-19.960 4.900Q-19.960 5.154-20.065 5.394Q-20.171 5.634-20.368 5.787Q-20.565 5.939-20.823 5.939Q-21.139 5.939-21.391 5.816Q-21.643 5.693-21.782 5.459Q-21.921 5.224-21.921 4.900M-19.241 4.166Q-19.241 3.662-18.985 3.230Q-18.729 2.798-18.294 2.547Q-17.858 2.295-17.358 2.295Q-16.971 2.295-16.630 2.439Q-16.288 2.584-16.026 2.845Q-15.764 3.107-15.622 3.443Q-15.479 3.779-15.479 4.166Q-15.479 4.658-15.743 5.068Q-16.007 5.478-16.436 5.709Q-16.866 5.939-17.358 5.939Q-17.850 5.939-18.284 5.707Q-18.718 5.474-18.979 5.066Q-19.241 4.658-19.241 4.166M-17.358 5.662Q-16.901 5.662-16.649 5.439Q-16.397 5.216-16.309 4.865Q-16.221 4.513-16.221 4.068Q-16.221 3.638-16.315 3.300Q-16.409 2.963-16.663 2.756Q-16.917 2.548-17.358 2.548Q-18.007 2.548-18.251 2.965Q-18.495 3.381-18.495 4.068Q-18.495 4.513-18.407 4.865Q-18.319 5.216-18.067 5.439Q-17.815 5.662-17.358 5.662M-13.112 7.412L-14.968 7.412L-14.968 7.119Q-14.698 7.119-14.530 7.074Q-14.362 7.029-14.362 6.853L-14.362 3.029Q-14.362 2.822-14.518 2.769Q-14.675 2.716-14.968 2.716L-14.968 2.420L-13.745 2.334L-13.745 2.798Q-13.514 2.576-13.200 2.455Q-12.886 2.334-12.546 2.334Q-12.073 2.334-11.669 2.580Q-11.264 2.826-11.032 3.242Q-10.800 3.658-10.800 4.134Q-10.800 4.509-10.948 4.838Q-11.096 5.166-11.366 5.418Q-11.636 5.670-11.979 5.804Q-12.323 5.939-12.682 5.939Q-12.971 5.939-13.243 5.818Q-13.514 5.697-13.721 5.486L-13.721 6.853Q-13.721 7.029-13.554 7.074Q-13.386 7.119-13.112 7.119L-13.112 7.412M-13.721 3.197L-13.721 5.037Q-13.569 5.326-13.307 5.506Q-13.046 5.685-12.737 5.685Q-12.452 5.685-12.229 5.547Q-12.007 5.408-11.854 5.177Q-11.702 4.947-11.624 4.675Q-11.546 4.404-11.546 4.134Q-11.546 3.802-11.671 3.445Q-11.796 3.088-12.044 2.851Q-12.292 2.615-12.639 2.615Q-12.964 2.615-13.259 2.771Q-13.554 2.927-13.721 3.197\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath d=\"M76.86 15.82h56.906V-4.097H76.86Z\"\u002F>\u003Cg transform=\"translate(133.764 2.444)\">\u003Cpath d=\"M-36.271 6.220Q-36.271 6.166-36.248 6.099L-33.982 0.494Q-33.889 0.310-33.693 0.310Q-33.568 0.310-33.480 0.398Q-33.392 0.486-33.392 0.615Q-33.392 0.673-33.416 0.732L-35.678 6.341Q-35.779 6.525-35.959 6.525Q-36.084 6.525-36.178 6.435Q-36.271 6.345-36.271 6.220M-33.693 6.525Q-34.045 6.525-34.226 6.185Q-34.408 5.845-34.408 5.463Q-34.408 5.076-34.228 4.736Q-34.049 4.396-33.693 4.396Q-33.455 4.396-33.297 4.566Q-33.139 4.736-33.064 4.980Q-32.990 5.224-32.990 5.463Q-32.990 5.697-33.064 5.941Q-33.139 6.185-33.297 6.355Q-33.455 6.525-33.693 6.525M-33.693 5.966Q-33.611 5.935-33.564 5.767Q-33.517 5.599-33.517 5.463Q-33.517 5.326-33.564 5.156Q-33.611 4.986-33.693 4.959Q-33.779 4.986-33.830 5.154Q-33.881 5.322-33.881 5.463Q-33.881 5.591-33.830 5.763Q-33.779 5.935-33.693 5.966M-35.959 2.447Q-36.201 2.447-36.361 2.277Q-36.521 2.107-36.596 1.861Q-36.670 1.615-36.670 1.373Q-36.670 0.990-36.490 0.650Q-36.310 0.310-35.959 0.310Q-35.721 0.310-35.562 0.480Q-35.404 0.650-35.330 0.894Q-35.256 1.138-35.256 1.373Q-35.256 1.615-35.330 1.861Q-35.404 2.107-35.562 2.277Q-35.721 2.447-35.959 2.447M-35.959 1.884Q-35.869 1.841-35.826 1.685Q-35.783 1.529-35.783 1.373Q-35.783 1.244-35.830 1.068Q-35.877 0.892-35.967 0.869Q-35.982 0.869-36.012 0.904Q-36.041 0.939-36.049 0.959Q-36.142 1.146-36.142 1.373Q-36.142 1.509-36.094 1.681Q-36.045 1.853-35.959 1.884M-32.482 5.623L-32.482 5.533Q-32.424 5.326-32.232 5.302L-31.521 5.302L-31.521 2.974L-32.232 2.974Q-32.428 2.951-32.482 2.732L-32.482 2.646Q-32.424 2.435-32.232 2.412L-31.131 2.412Q-30.931 2.431-30.881 2.646L-30.881 2.974Q-30.619 2.689-30.264 2.531Q-29.908 2.373-29.521 2.373Q-29.228 2.373-28.994 2.507Q-28.760 2.642-28.760 2.908Q-28.760 3.076-28.869 3.193Q-28.978 3.310-29.146 3.310Q-29.299 3.310-29.414 3.199Q-29.529 3.088-29.529 2.931Q-29.904 2.931-30.219 3.132Q-30.533 3.334-30.707 3.668Q-30.881 4.002-30.881 4.381L-30.881 5.302L-29.935 5.302Q-29.728 5.326-29.689 5.533L-29.689 5.623Q-29.728 5.838-29.935 5.861L-32.232 5.861Q-32.424 5.838-32.482 5.623M-28.053 4.748Q-28.053 4.302-27.639 4.045Q-27.224 3.787-26.683 3.687Q-26.142 3.588-25.635 3.580Q-25.635 3.365-25.769 3.213Q-25.904 3.060-26.111 2.984Q-26.318 2.908-26.529 2.908Q-26.873 2.908-27.033 2.931L-27.033 2.990Q-27.033 3.158-27.152 3.273Q-27.271 3.388-27.435 3.388Q-27.611 3.388-27.726 3.265Q-27.842 3.142-27.842 2.974Q-27.842 2.568-27.461 2.459Q-27.080 2.349-26.521 2.349Q-26.252 2.349-25.984 2.427Q-25.717 2.506-25.492 2.656Q-25.267 2.806-25.131 3.027Q-24.994 3.248-24.994 3.525L-24.994 5.244Q-24.994 5.302-24.467 5.302Q-24.271 5.322-24.221 5.533L-24.221 5.623Q-24.271 5.838-24.467 5.861L-24.611 5.861Q-24.955 5.861-25.183 5.814Q-25.412 5.767-25.556 5.580Q-26.017 5.900-26.724 5.900Q-27.060 5.900-27.365 5.759Q-27.670 5.619-27.861 5.357Q-28.053 5.095-28.053 4.748M-27.412 4.756Q-27.412 5.029-27.170 5.185Q-26.928 5.341-26.642 5.341Q-26.424 5.341-26.191 5.283Q-25.959 5.224-25.797 5.086Q-25.635 4.947-25.635 4.724L-25.635 4.134Q-25.916 4.134-26.332 4.191Q-26.748 4.248-27.080 4.386Q-27.412 4.525-27.412 4.756M-23.955 5.623L-23.955 5.533Q-23.916 5.326-23.709 5.302L-23.303 5.302L-22.373 4.084L-23.244 2.974L-23.662 2.974Q-23.857 2.955-23.908 2.732L-23.908 2.646Q-23.857 2.435-23.662 2.412L-22.502 2.412Q-22.303 2.435-22.252 2.646L-22.252 2.732Q-22.303 2.951-22.502 2.974L-22.611 2.974L-22.115 3.631L-21.639 2.974L-21.756 2.974Q-21.955 2.951-22.006 2.732L-22.006 2.646Q-21.955 2.435-21.756 2.412L-20.596 2.412Q-20.400 2.431-20.349 2.646L-20.349 2.732Q-20.400 2.951-20.596 2.974L-21.006 2.974L-21.853 4.084L-20.892 5.302L-20.486 5.302Q-20.287 5.326-20.236 5.533L-20.236 5.623Q-20.275 5.838-20.486 5.861L-21.639 5.861Q-21.846 5.838-21.885 5.623L-21.885 5.533Q-21.846 5.326-21.639 5.302L-21.510 5.302L-22.115 4.447L-22.701 5.302L-22.556 5.302Q-22.349 5.326-22.310 5.533L-22.310 5.623Q-22.349 5.838-22.556 5.861L-23.709 5.861Q-23.904 5.841-23.955 5.623\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M-36.237 6.975L-36.237 6.938L-35.950 3.810Q-35.950 3.783-35.927 3.757Q-35.905 3.732-35.874 3.732L-35.762 3.732Q-35.731 3.732-35.707 3.756Q-35.683 3.779-35.683 3.810L-35.403 6.938L-35.403 6.975Q-35.403 7.136-35.527 7.247Q-35.652 7.358-35.816 7.358Q-35.984 7.358-36.110 7.245Q-36.237 7.132-36.237 6.975M-36.237 2.775Q-36.237 2.607-36.114 2.484Q-35.991 2.361-35.816 2.361Q-35.649 2.361-35.526 2.484Q-35.403 2.607-35.403 2.775Q-35.403 2.942-35.526 3.069Q-35.649 3.195-35.816 3.195Q-35.991 3.195-36.114 3.069Q-36.237 2.942-36.237 2.775M-32.491 4.607L-34.548 4.607L-34.548 4.104L-32.491 4.104\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M-28.163 6.087Q-28.163 6.042-28.136 5.987L-24.728 1.407Q-25.169 1.612-25.644 1.612Q-26.232 1.612-26.799 1.325Q-26.666 1.636-26.666 2.019Q-26.666 2.334-26.779 2.662Q-26.892 2.990-27.121 3.210Q-27.350 3.431-27.674 3.431Q-28.016 3.431-28.278 3.221Q-28.539 3.010-28.674 2.682Q-28.809 2.354-28.809 2.019Q-28.809 1.688-28.674 1.360Q-28.539 1.031-28.278 0.821Q-28.016 0.611-27.674 0.611Q-27.391 0.611-27.141 0.819Q-26.820 1.093-26.442 1.240Q-26.065 1.387-25.651 1.387Q-25.214 1.387-24.824 1.206Q-24.434 1.025-24.181 0.679Q-24.123 0.611-24.041 0.611Q-23.973 0.611-23.923 0.661Q-23.874 0.710-23.874 0.778Q-23.874 0.823-23.901 0.878L-27.849 6.175Q-27.903 6.254-27.989 6.254Q-28.061 6.254-28.112 6.203Q-28.163 6.152-28.163 6.087M-27.674 3.209Q-27.432 3.209-27.263 3.014Q-27.093 2.819-27.013 2.537Q-26.933 2.255-26.933 2.019Q-26.933 1.852-26.977 1.642Q-27.022 1.431-27.107 1.257Q-27.193 1.083-27.340 0.960Q-27.486 0.837-27.674 0.837Q-28.030 0.837-28.156 1.207Q-28.283 1.578-28.283 2.019Q-28.283 2.464-28.156 2.836Q-28.030 3.209-27.674 3.209M-24.236 6.254Q-24.578 6.254-24.839 6.042Q-25.101 5.830-25.236 5.502Q-25.371 5.174-25.371 4.839Q-25.371 4.507-25.236 4.181Q-25.101 3.855-24.839 3.643Q-24.578 3.431-24.236 3.431Q-23.915 3.431-23.686 3.651Q-23.457 3.872-23.342 4.200Q-23.228 4.528-23.228 4.839Q-23.228 5.153-23.342 5.483Q-23.457 5.813-23.686 6.034Q-23.915 6.254-24.236 6.254M-24.236 6.028Q-23.993 6.028-23.822 5.832Q-23.652 5.635-23.573 5.357Q-23.494 5.078-23.494 4.839Q-23.494 4.672-23.539 4.461Q-23.583 4.251-23.669 4.077Q-23.754 3.903-23.901 3.779Q-24.048 3.656-24.236 3.656Q-24.591 3.656-24.718 4.027Q-24.844 4.398-24.844 4.839Q-24.844 5.283-24.718 5.656Q-24.591 6.028-24.236 6.028\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M-22.533 5.653L-22.533 5.574Q-22.482 5.393-22.314 5.372L-21.692 5.372L-21.692 3.335L-22.314 3.335Q-22.485 3.315-22.533 3.123L-22.533 3.048Q-22.482 2.863-22.314 2.843L-21.351 2.843Q-21.176 2.860-21.132 3.048L-21.132 3.335Q-20.903 3.086-20.592 2.947Q-20.281 2.809-19.942 2.809Q-19.686 2.809-19.481 2.927Q-19.276 3.045-19.276 3.277Q-19.276 3.424-19.372 3.527Q-19.467 3.629-19.614 3.629Q-19.748 3.629-19.848 3.532Q-19.949 3.434-19.949 3.298Q-20.277 3.298-20.552 3.474Q-20.828 3.650-20.980 3.942Q-21.132 4.234-21.132 4.566L-21.132 5.372L-20.305 5.372Q-20.124 5.393-20.089 5.574L-20.089 5.653Q-20.124 5.840-20.305 5.861L-22.314 5.861Q-22.482 5.840-22.533 5.653M-18.500 5.687L-18.500 4.887Q-18.476 4.706-18.291 4.685L-18.145 4.685Q-18.001 4.706-17.950 4.846Q-17.772 5.406-17.136 5.406Q-16.955 5.406-16.755 5.376Q-16.555 5.345-16.408 5.244Q-16.261 5.143-16.261 4.965Q-16.261 4.781-16.456 4.682Q-16.651 4.583-16.890 4.545L-17.502 4.446Q-18.500 4.261-18.500 3.629Q-18.500 3.376-18.374 3.210Q-18.247 3.045-18.037 2.951Q-17.827 2.857-17.603 2.822Q-17.379 2.788-17.136 2.788Q-16.917 2.788-16.748 2.814Q-16.579 2.840-16.436 2.908Q-16.367 2.805-16.254 2.788L-16.186 2.788Q-16.101 2.798-16.046 2.853Q-15.991 2.908-15.981 2.990L-15.981 3.609Q-15.991 3.691-16.046 3.749Q-16.101 3.807-16.186 3.817L-16.333 3.817Q-16.415 3.807-16.473 3.749Q-16.531 3.691-16.541 3.609Q-16.541 3.277-17.150 3.277Q-17.454 3.277-17.733 3.349Q-18.011 3.421-18.011 3.636Q-18.011 3.868-17.423 3.964L-16.808 4.070Q-16.384 4.142-16.078 4.359Q-15.772 4.576-15.772 4.965Q-15.772 5.307-15.979 5.519Q-16.186 5.731-16.492 5.813Q-16.798 5.895-17.136 5.895Q-17.642 5.895-17.991 5.673Q-18.052 5.782-18.095 5.832Q-18.138 5.882-18.230 5.895L-18.291 5.895Q-18.479 5.875-18.500 5.687M-15.236 7.211L-15.236 7.136Q-15.198 6.944-15.017 6.924L-14.648 6.924L-14.648 3.335L-15.017 3.335Q-15.198 3.315-15.236 3.123L-15.236 3.048Q-15.195 2.863-15.017 2.843L-14.303 2.843Q-14.132 2.860-14.087 3.048L-14.087 3.110Q-13.903 2.963-13.672 2.886Q-13.441 2.809-13.206 2.809Q-12.908 2.809-12.648 2.935Q-12.389 3.062-12.201 3.282Q-12.013 3.503-11.912 3.776Q-11.811 4.049-11.811 4.350Q-11.811 4.757-12.009 5.116Q-12.207 5.475-12.546 5.685Q-12.884 5.895-13.294 5.895Q-13.749 5.895-14.087 5.574L-14.087 6.924L-13.715 6.924Q-13.534 6.944-13.499 7.136L-13.499 7.211Q-13.534 7.396-13.715 7.416L-15.017 7.416Q-15.195 7.396-15.236 7.211M-13.332 5.406Q-13.062 5.406-12.843 5.258Q-12.624 5.109-12.498 4.863Q-12.372 4.617-12.372 4.350Q-12.372 4.097-12.481 3.853Q-12.590 3.609-12.794 3.453Q-12.997 3.298-13.260 3.298Q-13.541 3.298-13.770 3.460Q-13.999 3.622-14.087 3.885L-14.087 4.631Q-14.009 4.952-13.816 5.179Q-13.623 5.406-13.332 5.406\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(182.785 1.75)\">\u003Cpath d=\"M-6.433 7.611Q-6.983 7.211-7.354 6.656Q-7.725 6.100-7.906 5.454Q-8.087 4.808-8.087 4.111Q-8.087 3.598-7.987 3.103Q-7.886 2.607-7.681 2.156Q-7.476 1.705-7.163 1.313Q-6.850 0.922-6.433 0.618Q-6.423 0.614-6.416 0.613Q-6.409 0.611-6.399 0.611L-6.331 0.611Q-6.296 0.611-6.274 0.635Q-6.252 0.659-6.252 0.696Q-6.252 0.741-6.279 0.758Q-6.628 1.059-6.881 1.443Q-7.134 1.828-7.286 2.269Q-7.438 2.710-7.510 3.166Q-7.582 3.622-7.582 4.111Q-7.582 5.112-7.272 5.999Q-6.963 6.886-6.279 7.471Q-6.252 7.488-6.252 7.532Q-6.252 7.570-6.274 7.594Q-6.296 7.618-6.331 7.618L-6.399 7.618Q-6.406 7.614-6.414 7.613Q-6.423 7.611-6.433 7.611M-3.559 4.607L-5.616 4.607L-5.616 4.104L-3.559 4.104L-3.559 4.607M-2.690 4.784Q-2.690 4.343-2.388 4.022Q-2.085 3.701-1.634 3.509L-1.874 3.369Q-2.144 3.209-2.309 2.951Q-2.475 2.693-2.475 2.395Q-2.475 2.043-2.270 1.771Q-2.065 1.500-1.744 1.356Q-1.422 1.213-1.081 1.213Q-0.759 1.213-0.436 1.329Q-0.113 1.445 0.099 1.686Q0.310 1.927 0.310 2.262Q0.310 2.624 0.066 2.887Q-0.178 3.151-0.558 3.328L-0.158 3.564Q0.037 3.677 0.196 3.846Q0.355 4.015 0.442 4.224Q0.529 4.432 0.529 4.665Q0.529 5.068 0.295 5.372Q0.061 5.676-0.313 5.839Q-0.688 6.001-1.081 6.001Q-1.467 6.001-1.836 5.864Q-2.205 5.728-2.448 5.451Q-2.690 5.174-2.690 4.784M-2.243 4.784Q-2.243 5.071-2.074 5.294Q-1.904 5.516-1.636 5.632Q-1.368 5.748-1.081 5.748Q-0.643 5.748-0.281 5.531Q0.081 5.314 0.081 4.907Q0.081 4.706-0.047 4.528Q-0.175 4.350-0.353 4.251L-1.375 3.656Q-1.614 3.766-1.812 3.932Q-2.010 4.097-2.127 4.313Q-2.243 4.528-2.243 4.784M-1.720 2.655L-0.800 3.188Q-0.493 3.028-0.291 2.795Q-0.089 2.563-0.089 2.262Q-0.089 2.023-0.235 1.833Q-0.380 1.643-0.612 1.544Q-0.845 1.445-1.081 1.445Q-1.303 1.445-1.532 1.515Q-1.761 1.585-1.918 1.742Q-2.075 1.900-2.075 2.129Q-2.075 2.443-1.720 2.655M1.548 7.618L1.479 7.618Q1.445 7.618 1.423 7.592Q1.401 7.567 1.401 7.532Q1.401 7.488 1.432 7.471Q1.787 7.167 2.037 6.777Q2.286 6.387 2.438 5.955Q2.590 5.523 2.660 5.054Q2.730 4.586 2.730 4.111Q2.730 3.632 2.660 3.166Q2.590 2.699 2.436 2.264Q2.283 1.828 2.031 1.440Q1.780 1.052 1.432 0.758Q1.401 0.741 1.401 0.696Q1.401 0.662 1.423 0.637Q1.445 0.611 1.479 0.611L1.548 0.611Q1.558 0.611 1.567 0.613Q1.575 0.614 1.585 0.618Q2.129 1.018 2.501 1.571Q2.874 2.125 3.055 2.771Q3.236 3.417 3.236 4.111Q3.236 4.812 3.055 5.459Q2.874 6.107 2.500 6.661Q2.125 7.215 1.585 7.611Q1.575 7.611 1.567 7.613Q1.558 7.614 1.548 7.618\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg style=\"stroke-width:.8\">\u003Cpath fill=\"none\" d=\"M54.098-33.972V3.262\"\u002F>\u003Cpath stroke=\"none\" d=\"m54.098 5.861 2.08-4.16-2.08 1.56-2.08-1.56\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(70.666 -50.888)\">\u003Cpath d=\"M-36.678 6.394Q-36.678 6.148-36.481 5.964Q-36.284 5.779-36.028 5.700Q-36.165 5.588-36.237 5.427Q-36.308 5.266-36.308 5.085Q-36.308 4.764-36.097 4.518Q-36.431 4.220-36.431 3.810Q-36.431 3.349-36.042 3.062Q-35.652 2.775-35.174 2.775Q-34.702 2.775-34.367 3.021Q-34.193 2.867-33.982 2.785Q-33.772 2.703-33.543 2.703Q-33.379 2.703-33.258 2.810Q-33.137 2.918-33.137 3.082Q-33.137 3.178-33.208 3.250Q-33.280 3.321-33.372 3.321Q-33.472 3.321-33.542 3.248Q-33.612 3.174-33.612 3.075Q-33.612 3.021-33.598 2.990L-33.591 2.976Q-33.584 2.956-33.576 2.945Q-33.567 2.935-33.564 2.928Q-33.919 2.928-34.206 3.151Q-33.919 3.444-33.919 3.810Q-33.919 4.125-34.104 4.357Q-34.288 4.590-34.577 4.718Q-34.866 4.846-35.174 4.846Q-35.375 4.846-35.567 4.796Q-35.758 4.747-35.936 4.637Q-36.028 4.764-36.028 4.907Q-36.028 5.089-35.900 5.224Q-35.772 5.359-35.587 5.359L-34.955 5.359Q-34.507 5.359-34.138 5.430Q-33.769 5.502-33.509 5.731Q-33.249 5.960-33.249 6.394Q-33.249 6.715-33.545 6.917Q-33.841 7.119-34.244 7.208Q-34.647 7.297-34.962 7.297Q-35.280 7.297-35.683 7.208Q-36.086 7.119-36.382 6.917Q-36.678 6.715-36.678 6.394M-36.223 6.394Q-36.223 6.623-36.004 6.772Q-35.785 6.921-35.493 6.989Q-35.201 7.057-34.962 7.057Q-34.798 7.057-34.589 7.021Q-34.381 6.986-34.174 6.905Q-33.967 6.825-33.836 6.697Q-33.704 6.569-33.704 6.394Q-33.704 6.042-34.085 5.948Q-34.466 5.854-34.969 5.854L-35.587 5.854Q-35.826 5.854-36.025 6.005Q-36.223 6.155-36.223 6.394M-35.174 4.607Q-34.507 4.607-34.507 3.810Q-34.507 3.010-35.174 3.010Q-35.844 3.010-35.844 3.810Q-35.844 4.607-35.174 4.607M-30.905 5.861L-32.641 5.861L-32.641 5.581Q-32.412 5.581-32.263 5.547Q-32.115 5.512-32.115 5.372L-32.115 3.523Q-32.115 3.253-32.222 3.192Q-32.330 3.130-32.641 3.130L-32.641 2.850L-31.612 2.775L-31.612 3.482Q-31.482 3.174-31.240 2.975Q-30.997 2.775-30.679 2.775Q-30.460 2.775-30.289 2.899Q-30.118 3.024-30.118 3.236Q-30.118 3.373-30.218 3.472Q-30.317 3.571-30.450 3.571Q-30.587 3.571-30.686 3.472Q-30.785 3.373-30.785 3.236Q-30.785 3.096-30.686 2.997Q-30.976 2.997-31.176 3.193Q-31.376 3.390-31.469 3.684Q-31.561 3.978-31.561 4.258L-31.561 5.372Q-31.561 5.581-30.905 5.581L-30.905 5.861M-29.575 4.378Q-29.575 4.036-29.440 3.737Q-29.305 3.438-29.066 3.214Q-28.826 2.990-28.509 2.865Q-28.191 2.740-27.859 2.740Q-27.415 2.740-27.015 2.956Q-26.615 3.171-26.381 3.549Q-26.147 3.926-26.147 4.378Q-26.147 4.719-26.289 5.003Q-26.430 5.287-26.675 5.494Q-26.919 5.700-27.229 5.815Q-27.538 5.929-27.859 5.929Q-28.290 5.929-28.691 5.728Q-29.093 5.526-29.334 5.174Q-29.575 4.822-29.575 4.378M-27.859 5.680Q-27.258 5.680-27.034 5.302Q-26.810 4.924-26.810 4.292Q-26.810 3.680-27.044 3.321Q-27.278 2.963-27.859 2.963Q-28.912 2.963-28.912 4.292Q-28.912 4.924-28.686 5.302Q-28.461 5.680-27.859 5.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(70.666 -50.888)\">\u003Cpath d=\"M-24.367 5.834L-25.348 3.335Q-25.409 3.192-25.527 3.157Q-25.645 3.123-25.861 3.123L-25.861 2.843L-24.381 2.843L-24.381 3.123Q-24.760 3.123-24.760 3.284Q-24.760 3.294-24.746 3.335L-24.032 5.167L-23.359 3.462Q-23.389 3.390-23.389 3.362Q-23.389 3.335-23.417 3.335Q-23.478 3.188-23.596 3.156Q-23.714 3.123-23.926 3.123L-23.926 2.843L-22.528 2.843L-22.528 3.123Q-22.904 3.123-22.904 3.284Q-22.904 3.315-22.897 3.335L-22.142 5.273L-21.455 3.523Q-21.434 3.472-21.434 3.417Q-21.434 3.277-21.547 3.200Q-21.660 3.123-21.800 3.123L-21.800 2.843L-20.580 2.843L-20.580 3.123Q-20.785 3.123-20.940 3.229Q-21.096 3.335-21.168 3.523L-22.073 5.834Q-22.108 5.929-22.220 5.929L-22.289 5.929Q-22.398 5.929-22.436 5.834L-23.218 3.831L-24.005 5.834Q-24.039 5.929-24.152 5.929L-24.220 5.929Q-24.329 5.929-24.367 5.834M-20.050 5.854L-20.050 4.791Q-20.050 4.767-20.023 4.740Q-19.995 4.713-19.971 4.713L-19.862 4.713Q-19.797 4.713-19.783 4.771Q-19.688 5.205-19.442 5.456Q-19.195 5.707-18.782 5.707Q-18.440 5.707-18.187 5.574Q-17.934 5.441-17.934 5.133Q-17.934 4.976-18.028 4.861Q-18.122 4.747-18.261 4.678Q-18.399 4.610-18.567 4.572L-19.148 4.473Q-19.503 4.405-19.777 4.184Q-20.050 3.964-20.050 3.622Q-20.050 3.373-19.939 3.198Q-19.828 3.024-19.642 2.925Q-19.455 2.826-19.240 2.783Q-19.025 2.740-18.782 2.740Q-18.368 2.740-18.088 2.922L-17.873 2.747Q-17.862 2.744-17.856 2.742Q-17.849 2.740-17.839 2.740L-17.787 2.740Q-17.760 2.740-17.736 2.764Q-17.712 2.788-17.712 2.816L-17.712 3.663Q-17.712 3.684-17.736 3.711Q-17.760 3.738-17.787 3.738L-17.900 3.738Q-17.927 3.738-17.953 3.713Q-17.979 3.687-17.979 3.663Q-17.979 3.427-18.085 3.263Q-18.191 3.099-18.373 3.017Q-18.556 2.935-18.789 2.935Q-19.117 2.935-19.373 3.038Q-19.630 3.140-19.630 3.417Q-19.630 3.612-19.447 3.721Q-19.264 3.831-19.035 3.872L-18.461 3.978Q-18.215 4.026-18.001 4.154Q-17.787 4.282-17.651 4.485Q-17.514 4.689-17.514 4.938Q-17.514 5.451-17.880 5.690Q-18.245 5.929-18.782 5.929Q-19.277 5.929-19.609 5.635L-19.876 5.909Q-19.896 5.929-19.923 5.929L-19.971 5.929Q-19.995 5.929-20.023 5.902Q-20.050 5.875-20.050 5.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(70.666 -50.888)\">\u003Cpath d=\"M-14.184 4.350Q-14.184 4.012-14.043 3.721Q-13.903 3.431-13.659 3.217Q-13.415 3.004-13.110 2.889Q-12.806 2.775-12.481 2.775Q-12.211 2.775-11.948 2.874Q-11.685 2.973-11.494 3.151L-11.494 1.753Q-11.494 1.483-11.601 1.421Q-11.709 1.360-12.020 1.360L-12.020 1.079L-10.943 1.004L-10.943 5.188Q-10.943 5.376-10.889 5.459Q-10.834 5.543-10.733 5.562Q-10.632 5.581-10.417 5.581L-10.417 5.861L-11.524 5.929L-11.524 5.512Q-11.941 5.929-12.567 5.929Q-12.998 5.929-13.370 5.717Q-13.743 5.506-13.963 5.145Q-14.184 4.784-14.184 4.350M-12.509 5.707Q-12.300 5.707-12.114 5.635Q-11.928 5.564-11.774 5.427Q-11.620 5.290-11.524 5.112L-11.524 3.503Q-11.610 3.356-11.755 3.236Q-11.900 3.116-12.070 3.057Q-12.239 2.997-12.420 2.997Q-12.980 2.997-13.249 3.386Q-13.517 3.776-13.517 4.357Q-13.517 4.928-13.283 5.318Q-13.049 5.707-12.509 5.707M-9.809 4.378Q-9.809 4.036-9.674 3.737Q-9.539 3.438-9.299 3.214Q-9.060 2.990-8.742 2.865Q-8.424 2.740-8.093 2.740Q-7.648 2.740-7.248 2.956Q-6.849 3.171-6.614 3.549Q-6.380 3.926-6.380 4.378Q-6.380 4.719-6.522 5.003Q-6.664 5.287-6.908 5.494Q-7.153 5.700-7.462 5.815Q-7.771 5.929-8.093 5.929Q-8.523 5.929-8.925 5.728Q-9.327 5.526-9.568 5.174Q-9.809 4.822-9.809 4.378M-8.093 5.680Q-7.491 5.680-7.267 5.302Q-7.043 4.924-7.043 4.292Q-7.043 3.680-7.278 3.321Q-7.512 2.963-8.093 2.963Q-9.145 2.963-9.145 4.292Q-9.145 4.924-8.920 5.302Q-8.694 5.680-8.093 5.680\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(70.666 -50.888)\">\u003Cpath d=\"M-4.608 5.834L-5.589 3.335Q-5.650 3.192-5.768 3.157Q-5.886 3.123-6.102 3.123L-6.102 2.843L-4.622 2.843L-4.622 3.123Q-5.001 3.123-5.001 3.284Q-5.001 3.294-4.987 3.335L-4.273 5.167L-3.600 3.462Q-3.630 3.390-3.630 3.362Q-3.630 3.335-3.658 3.335Q-3.719 3.188-3.837 3.156Q-3.955 3.123-4.167 3.123L-4.167 2.843L-2.769 2.843L-2.769 3.123Q-3.145 3.123-3.145 3.284Q-3.145 3.315-3.138 3.335L-2.383 5.273L-1.696 3.523Q-1.675 3.472-1.675 3.417Q-1.675 3.277-1.788 3.200Q-1.901 3.123-2.041 3.123L-2.041 2.843L-0.821 2.843L-0.821 3.123Q-1.026 3.123-1.181 3.229Q-1.337 3.335-1.409 3.523L-2.314 5.834Q-2.349 5.929-2.461 5.929L-2.530 5.929Q-2.639 5.929-2.677 5.834L-3.459 3.831L-4.246 5.834Q-4.280 5.929-4.393 5.929L-4.461 5.929Q-4.570 5.929-4.608 5.834M1.391 5.861L-0.243 5.861L-0.243 5.581Q-0.014 5.581 0.135 5.547Q0.283 5.512 0.283 5.372L0.283 3.523Q0.283 3.253 0.176 3.192Q0.068 3.130-0.243 3.130L-0.243 2.850L0.816 2.775L0.816 3.424Q0.987 3.116 1.292 2.945Q1.596 2.775 1.941 2.775Q2.447 2.775 2.731 2.998Q3.014 3.222 3.014 3.718L3.014 5.372Q3.014 5.509 3.163 5.545Q3.312 5.581 3.537 5.581L3.537 5.861L1.907 5.861L1.907 5.581Q2.136 5.581 2.284 5.547Q2.433 5.512 2.433 5.372L2.433 3.732Q2.433 3.397 2.314 3.197Q2.194 2.997 1.879 2.997Q1.609 2.997 1.375 3.133Q1.141 3.270 1.003 3.504Q0.864 3.738 0.864 4.012L0.864 5.372Q0.864 5.509 1.015 5.545Q1.165 5.581 1.391 5.581\" 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\">pushq %rax decrements %rsp by 8 and stores the value at the new top; the stack grows downward, so the top sits at the lowest address. popq reverses this, reading the top and raising %rsp back.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:199.172px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 149.379 88.913\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" d=\"M-39.926-53.576h85.358V-72.07h-85.358Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-38.102 -40.93)\">\u003Cpath d=\"M3.888-19.918Q3.888-19.963 3.915-20.018L7.323-24.598Q6.882-24.393 6.407-24.393Q5.819-24.393 5.252-24.680Q5.385-24.369 5.385-23.986Q5.385-23.671 5.272-23.343Q5.159-23.015 4.930-22.795Q4.701-22.574 4.377-22.574Q4.035-22.574 3.773-22.784Q3.512-22.995 3.377-23.323Q3.242-23.651 3.242-23.986Q3.242-24.317 3.377-24.645Q3.512-24.974 3.773-25.184Q4.035-25.394 4.377-25.394Q4.660-25.394 4.910-25.186Q5.231-24.912 5.609-24.765Q5.986-24.618 6.400-24.618Q6.837-24.618 7.227-24.799Q7.617-24.980 7.870-25.326Q7.928-25.394 8.010-25.394Q8.078-25.394 8.128-25.344Q8.177-25.295 8.177-25.227Q8.177-25.182 8.150-25.127L4.202-19.830Q4.148-19.751 4.062-19.751Q3.990-19.751 3.939-19.802Q3.888-19.853 3.888-19.918M4.377-22.796Q4.619-22.796 4.788-22.991Q4.958-23.186 5.038-23.468Q5.118-23.750 5.118-23.986Q5.118-24.153 5.074-24.363Q5.029-24.574 4.944-24.748Q4.858-24.922 4.711-25.045Q4.565-25.168 4.377-25.168Q4.021-25.168 3.895-24.798Q3.768-24.427 3.768-23.986Q3.768-23.541 3.895-23.169Q4.021-22.796 4.377-22.796M7.815-19.751Q7.473-19.751 7.212-19.963Q6.950-20.175 6.815-20.503Q6.680-20.831 6.680-21.166Q6.680-21.498 6.815-21.824Q6.950-22.150 7.212-22.362Q7.473-22.574 7.815-22.574Q8.136-22.574 8.365-22.354Q8.594-22.133 8.709-21.805Q8.823-21.477 8.823-21.166Q8.823-20.852 8.709-20.522Q8.594-20.192 8.365-19.971Q8.136-19.751 7.815-19.751M7.815-19.977Q8.058-19.977 8.229-20.173Q8.399-20.370 8.478-20.648Q8.557-20.927 8.557-21.166Q8.557-21.333 8.512-21.544Q8.468-21.754 8.382-21.928Q8.297-22.102 8.150-22.226Q8.003-22.349 7.815-22.349Q7.460-22.349 7.333-21.978Q7.207-21.607 7.207-21.166Q7.207-20.722 7.333-20.349Q7.460-19.977 7.815-19.977\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.102 -40.93)\">\u003Cpath d=\"M9.517-20.352L9.517-20.431Q9.568-20.612 9.736-20.633L10.358-20.633L10.358-22.670L9.736-22.670Q9.565-22.690 9.517-22.882L9.517-22.957Q9.568-23.142 9.736-23.162L10.699-23.162Q10.874-23.145 10.918-22.957L10.918-22.670Q11.147-22.919 11.458-23.058Q11.769-23.196 12.108-23.196Q12.364-23.196 12.569-23.078Q12.774-22.960 12.774-22.728Q12.774-22.581 12.678-22.478Q12.583-22.376 12.436-22.376Q12.302-22.376 12.202-22.473Q12.101-22.571 12.101-22.707Q11.773-22.707 11.498-22.531Q11.222-22.355 11.070-22.063Q10.918-21.771 10.918-21.439L10.918-20.633L11.745-20.633Q11.926-20.612 11.961-20.431L11.961-20.352Q11.926-20.165 11.745-20.144L9.736-20.144Q9.568-20.165 9.517-20.352M13.550-20.318L13.550-21.118Q13.574-21.299 13.759-21.320L13.905-21.320Q14.049-21.299 14.100-21.159Q14.278-20.599 14.914-20.599Q15.095-20.599 15.295-20.629Q15.495-20.660 15.642-20.761Q15.789-20.862 15.789-21.040Q15.789-21.224 15.594-21.323Q15.399-21.422 15.160-21.460L14.548-21.559Q13.550-21.744 13.550-22.376Q13.550-22.629 13.676-22.795Q13.803-22.960 14.013-23.054Q14.223-23.148 14.447-23.183Q14.671-23.217 14.914-23.217Q15.133-23.217 15.302-23.191Q15.471-23.165 15.614-23.097Q15.683-23.200 15.796-23.217L15.864-23.217Q15.949-23.206 16.004-23.152Q16.059-23.097 16.069-23.015L16.069-22.396Q16.059-22.314 16.004-22.256Q15.949-22.198 15.864-22.188L15.717-22.188Q15.635-22.198 15.577-22.256Q15.519-22.314 15.509-22.396Q15.509-22.728 14.900-22.728Q14.596-22.728 14.317-22.656Q14.039-22.584 14.039-22.369Q14.039-22.137 14.627-22.041L15.242-21.935Q15.666-21.863 15.972-21.646Q16.278-21.429 16.278-21.040Q16.278-20.698 16.071-20.486Q15.864-20.274 15.558-20.192Q15.252-20.110 14.914-20.110Q14.408-20.110 14.059-20.332Q13.998-20.223 13.955-20.173Q13.912-20.123 13.820-20.110L13.759-20.110Q13.571-20.130 13.550-20.318M16.814-18.794L16.814-18.869Q16.852-19.061 17.033-19.081L17.402-19.081L17.402-22.670L17.033-22.670Q16.852-22.690 16.814-22.882L16.814-22.957Q16.855-23.142 17.033-23.162L17.747-23.162Q17.918-23.145 17.963-22.957L17.963-22.895Q18.147-23.042 18.378-23.119Q18.609-23.196 18.844-23.196Q19.142-23.196 19.402-23.070Q19.661-22.943 19.849-22.723Q20.037-22.502 20.138-22.229Q20.239-21.956 20.239-21.655Q20.239-21.248 20.041-20.889Q19.843-20.530 19.504-20.320Q19.166-20.110 18.756-20.110Q18.301-20.110 17.963-20.431L17.963-19.081L18.335-19.081Q18.516-19.061 18.551-18.869L18.551-18.794Q18.516-18.609 18.335-18.589L17.033-18.589Q16.855-18.609 16.814-18.794M18.718-20.599Q18.988-20.599 19.207-20.747Q19.426-20.896 19.552-21.142Q19.678-21.388 19.678-21.655Q19.678-21.908 19.569-22.152Q19.460-22.396 19.256-22.552Q19.053-22.707 18.790-22.707Q18.509-22.707 18.280-22.545Q18.051-22.383 17.963-22.120L17.963-21.374Q18.041-21.053 18.234-20.826Q18.427-20.599 18.718-20.599\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.102 -40.93)\">\u003Cpath d=\"M28.237-20.951L23.404-20.951Q23.336-20.961 23.290-21.007Q23.244-21.053 23.244-21.125Q23.244-21.190 23.290-21.236Q23.336-21.282 23.404-21.292L28.237-21.292Q28.306-21.282 28.352-21.236Q28.398-21.190 28.398-21.125Q28.398-21.053 28.352-21.007Q28.306-20.961 28.237-20.951M28.237-22.489L23.404-22.489Q23.336-22.499 23.290-22.545Q23.244-22.591 23.244-22.663Q23.244-22.807 23.404-22.831L28.237-22.831Q28.398-22.807 28.398-22.663Q28.398-22.591 28.352-22.545Q28.306-22.499 28.237-22.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.102 -40.93)\">\u003Cpath d=\"M33.026-20.076Q32.647-20.076 32.356-20.284Q32.066-20.493 31.872-20.833Q31.679-21.173 31.585-21.556Q31.491-21.938 31.491-22.287Q31.491-22.629 31.587-23.017Q31.683-23.405 31.872-23.738Q32.062-24.071 32.354-24.281Q32.647-24.492 33.026-24.492Q33.511-24.492 33.862-24.143Q34.212-23.794 34.385-23.282Q34.557-22.769 34.557-22.287Q34.557-21.802 34.385-21.287Q34.212-20.773 33.862-20.424Q33.511-20.076 33.026-20.076M33.026-20.564Q33.289-20.564 33.479-20.754Q33.669-20.944 33.780-21.231Q33.891-21.518 33.944-21.821Q33.997-22.123 33.997-22.369Q33.997-22.588 33.942-22.873Q33.887-23.159 33.773-23.413Q33.658-23.668 33.472-23.834Q33.286-23.999 33.026-23.999Q32.698-23.999 32.477-23.726Q32.257-23.453 32.154-23.073Q32.052-22.694 32.052-22.369Q32.052-22.020 32.151-21.600Q32.250-21.180 32.467-20.872Q32.684-20.564 33.026-20.564M35.111-20.352L35.111-20.431Q35.145-20.612 35.326-20.633L35.682-20.633L36.495-21.699L35.733-22.670L35.367-22.670Q35.196-22.687 35.152-22.882L35.152-22.957Q35.196-23.142 35.367-23.162L36.382-23.162Q36.557-23.142 36.601-22.957L36.601-22.882Q36.557-22.690 36.382-22.670L36.287-22.670L36.721-22.096L37.138-22.670L37.035-22.670Q36.861-22.690 36.816-22.882L36.816-22.957Q36.861-23.142 37.035-23.162L38.050-23.162Q38.221-23.145 38.266-22.957L38.266-22.882Q38.221-22.690 38.050-22.670L37.691-22.670L36.950-21.699L37.791-20.633L38.146-20.633Q38.320-20.612 38.365-20.431L38.365-20.352Q38.331-20.165 38.146-20.144L37.138-20.144Q36.957-20.165 36.922-20.352L36.922-20.431Q36.957-20.612 37.138-20.633L37.251-20.633L36.721-21.381L36.208-20.633L36.335-20.633Q36.516-20.612 36.550-20.431L36.550-20.352Q36.516-20.165 36.335-20.144L35.326-20.144Q35.155-20.161 35.111-20.352M41.673-21.446L39.537-21.446Q39.585-21.204 39.758-21.009Q39.930-20.814 40.173-20.706Q40.416-20.599 40.665-20.599Q41.079-20.599 41.274-20.852Q41.280-20.862 41.330-20.954Q41.379-21.046 41.422-21.084Q41.465-21.122 41.547-21.132L41.673-21.132Q41.841-21.115 41.892-20.927L41.892-20.879Q41.834-20.616 41.632-20.443Q41.431-20.270 41.157-20.190Q40.884-20.110 40.617-20.110Q40.193-20.110 39.809-20.310Q39.424-20.510 39.190-20.860Q38.956-21.210 38.956-21.641L38.956-21.692Q38.956-22.102 39.171-22.455Q39.387-22.807 39.744-23.012Q40.101-23.217 40.511-23.217Q40.952-23.217 41.262-23.022Q41.571-22.827 41.732-22.487Q41.892-22.147 41.892-21.706L41.892-21.655Q41.841-21.467 41.673-21.446M39.544-21.928L41.318-21.928Q41.277-22.287 41.068-22.508Q40.860-22.728 40.511-22.728Q40.166-22.728 39.898-22.499Q39.629-22.270 39.544-21.928M44.172-20.076Q43.793-20.076 43.502-20.284Q43.212-20.493 43.018-20.833Q42.825-21.173 42.731-21.556Q42.637-21.938 42.637-22.287Q42.637-22.629 42.733-23.017Q42.829-23.405 43.018-23.738Q43.208-24.071 43.500-24.281Q43.793-24.492 44.172-24.492Q44.657-24.492 45.008-24.143Q45.358-23.794 45.531-23.282Q45.703-22.769 45.703-22.287Q45.703-21.802 45.531-21.287Q45.358-20.773 45.008-20.424Q44.657-20.076 44.172-20.076M44.172-20.564Q44.435-20.564 44.625-20.754Q44.815-20.944 44.926-21.231Q45.037-21.518 45.090-21.821Q45.143-22.123 45.143-22.369Q45.143-22.588 45.088-22.873Q45.033-23.159 44.919-23.413Q44.804-23.668 44.618-23.834Q44.432-23.999 44.172-23.999Q43.844-23.999 43.623-23.726Q43.403-23.453 43.300-23.073Q43.198-22.694 43.198-22.369Q43.198-22.020 43.297-21.600Q43.396-21.180 43.613-20.872Q43.830-20.564 44.172-20.564M46.780-20.352L46.780-20.431Q46.824-20.612 46.999-20.633L47.713-20.633L47.713-23.418Q47.381-23.148 46.985-23.148Q46.783-23.148 46.739-23.350L46.739-23.429Q46.783-23.617 46.954-23.637Q47.241-23.637 47.463-23.846Q47.686-24.054 47.809-24.358Q47.870-24.471 48.007-24.492L48.055-24.492Q48.226-24.475 48.270-24.287L48.270-20.633L48.984-20.633Q49.159-20.612 49.203-20.431L49.203-20.352Q49.159-20.165 48.984-20.144L46.999-20.144Q46.824-20.165 46.780-20.352M50.054-21.381Q50.054-21.631 50.191-21.853Q50.328-22.075 50.546-22.227Q50.765-22.379 51.015-22.455Q50.806-22.519 50.608-22.644Q50.410-22.769 50.285-22.952Q50.160-23.135 50.160-23.350Q50.160-23.699 50.376-23.957Q50.591-24.215 50.926-24.353Q51.261-24.492 51.603-24.492Q51.944-24.492 52.279-24.353Q52.614-24.215 52.830-23.953Q53.045-23.692 53.045-23.350Q53.045-23.135 52.920-22.954Q52.795-22.772 52.597-22.646Q52.399-22.519 52.191-22.455Q52.587-22.335 52.867-22.050Q53.148-21.764 53.148-21.381Q53.148-20.998 52.922-20.698Q52.696-20.397 52.337-20.236Q51.979-20.076 51.603-20.076Q51.227-20.076 50.868-20.235Q50.509-20.394 50.282-20.694Q50.054-20.995 50.054-21.381M50.615-21.381Q50.615-21.142 50.760-20.954Q50.905-20.766 51.134-20.665Q51.363-20.564 51.603-20.564Q51.842-20.564 52.069-20.665Q52.296-20.766 52.442-20.956Q52.587-21.145 52.587-21.381Q52.587-21.624 52.442-21.814Q52.296-22.003 52.069-22.106Q51.842-22.208 51.603-22.208Q51.363-22.208 51.134-22.106Q50.905-22.003 50.760-21.815Q50.615-21.627 50.615-21.381M50.721-23.350Q50.721-23.142 50.858-22.995Q50.994-22.848 51.201-22.774Q51.408-22.701 51.603-22.701Q51.794-22.701 52.003-22.774Q52.211-22.848 52.348-22.996Q52.484-23.145 52.484-23.350Q52.484-23.555 52.348-23.704Q52.211-23.852 52.003-23.926Q51.794-23.999 51.603-23.999Q51.408-23.999 51.201-23.926Q50.994-23.852 50.858-23.706Q50.721-23.559 50.721-23.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-38.102 -40.93)\">\u003Cpath d=\"M58.621-18.394Q58.071-18.794 57.700-19.349Q57.329-19.905 57.148-20.551Q56.967-21.197 56.967-21.894Q56.967-22.407 57.067-22.902Q57.168-23.398 57.373-23.849Q57.578-24.300 57.891-24.692Q58.204-25.083 58.621-25.387Q58.631-25.391 58.638-25.392Q58.645-25.394 58.655-25.394L58.723-25.394Q58.758-25.394 58.780-25.370Q58.802-25.346 58.802-25.309Q58.802-25.264 58.775-25.247Q58.426-24.946 58.173-24.562Q57.920-24.177 57.768-23.736Q57.616-23.295 57.544-22.839Q57.472-22.383 57.472-21.894Q57.472-20.893 57.782-20.006Q58.091-19.119 58.775-18.534Q58.802-18.517 58.802-18.473Q58.802-18.435 58.780-18.411Q58.758-18.387 58.723-18.387L58.655-18.387Q58.648-18.391 58.640-18.392Q58.631-18.394 58.621-18.394M59.612-20.151L59.612-21.214Q59.612-21.238 59.639-21.265Q59.667-21.292 59.691-21.292L59.800-21.292Q59.865-21.292 59.879-21.234Q59.974-20.800 60.220-20.549Q60.467-20.298 60.880-20.298Q61.222-20.298 61.475-20.431Q61.728-20.564 61.728-20.872Q61.728-21.029 61.634-21.144Q61.540-21.258 61.401-21.327Q61.263-21.395 61.095-21.433L60.514-21.532Q60.159-21.600 59.885-21.821Q59.612-22.041 59.612-22.383Q59.612-22.632 59.723-22.807Q59.834-22.981 60.021-23.080Q60.207-23.179 60.422-23.222Q60.637-23.265 60.880-23.265Q61.294-23.265 61.574-23.083L61.789-23.258Q61.800-23.261 61.806-23.263Q61.813-23.265 61.823-23.265L61.875-23.265Q61.902-23.265 61.926-23.241Q61.950-23.217 61.950-23.189L61.950-22.342Q61.950-22.321 61.926-22.294Q61.902-22.267 61.875-22.267L61.762-22.267Q61.735-22.267 61.709-22.292Q61.683-22.318 61.683-22.342Q61.683-22.578 61.577-22.742Q61.471-22.906 61.289-22.988Q61.106-23.070 60.873-23.070Q60.545-23.070 60.289-22.967Q60.032-22.865 60.032-22.588Q60.032-22.393 60.215-22.284Q60.398-22.174 60.627-22.133L61.201-22.027Q61.448-21.979 61.661-21.851Q61.875-21.723 62.011-21.520Q62.148-21.316 62.148-21.067Q62.148-20.554 61.782-20.315Q61.417-20.076 60.880-20.076Q60.385-20.076 60.053-20.370L59.786-20.096Q59.766-20.076 59.739-20.076L59.691-20.076Q59.667-20.076 59.639-20.103Q59.612-20.130 59.612-20.151M63.303-20.985L63.303-22.882L62.664-22.882L62.664-23.104Q62.982-23.104 63.199-23.314Q63.416-23.524 63.517-23.834Q63.618-24.143 63.618-24.451L63.885-24.451L63.885-23.162L64.961-23.162L64.961-22.882L63.885-22.882L63.885-20.998Q63.885-20.722 63.989-20.523Q64.093-20.325 64.353-20.325Q64.510-20.325 64.616-20.429Q64.722-20.534 64.771-20.687Q64.821-20.841 64.821-20.998L64.821-21.412L65.088-21.412L65.088-20.985Q65.088-20.759 64.989-20.549Q64.889-20.339 64.705-20.207Q64.520-20.076 64.291-20.076Q63.854-20.076 63.579-20.313Q63.303-20.551 63.303-20.985M65.956-20.872Q65.956-21.204 66.180-21.431Q66.404-21.658 66.747-21.786Q67.091-21.915 67.463-21.967Q67.836-22.020 68.140-22.020L68.140-22.273Q68.140-22.478 68.032-22.658Q67.925-22.837 67.743-22.940Q67.562-23.042 67.354-23.042Q66.947-23.042 66.711-22.950Q66.800-22.913 66.846-22.829Q66.892-22.745 66.892-22.643Q66.892-22.547 66.846-22.468Q66.800-22.390 66.720-22.345Q66.639-22.301 66.551-22.301Q66.400-22.301 66.299-22.398Q66.198-22.496 66.198-22.643Q66.198-23.265 67.354-23.265Q67.566-23.265 67.815-23.201Q68.065-23.138 68.266-23.019Q68.468-22.899 68.594-22.714Q68.721-22.530 68.721-22.287L68.721-20.711Q68.721-20.595 68.782-20.499Q68.844-20.404 68.957-20.404Q69.066-20.404 69.131-20.498Q69.196-20.592 69.196-20.711L69.196-21.159L69.463-21.159L69.463-20.711Q69.463-20.441 69.235-20.276Q69.008-20.110 68.728-20.110Q68.519-20.110 68.383-20.264Q68.246-20.417 68.222-20.633Q68.075-20.366 67.793-20.221Q67.511-20.076 67.186-20.076Q66.909-20.076 66.626-20.151Q66.342-20.226 66.149-20.405Q65.956-20.585 65.956-20.872M66.571-20.872Q66.571-20.698 66.672-20.568Q66.773-20.438 66.928-20.368Q67.084-20.298 67.248-20.298Q67.467-20.298 67.675-20.395Q67.884-20.493 68.012-20.674Q68.140-20.855 68.140-21.081L68.140-21.809Q67.815-21.809 67.449-21.718Q67.084-21.627 66.827-21.415Q66.571-21.204 66.571-20.872M71.630-20.144L69.893-20.144L69.893-20.424Q70.122-20.424 70.271-20.458Q70.420-20.493 70.420-20.633L70.420-22.482Q70.420-22.752 70.312-22.813Q70.204-22.875 69.893-22.875L69.893-23.155L70.922-23.230L70.922-22.523Q71.052-22.831 71.295-23.030Q71.537-23.230 71.855-23.230Q72.074-23.230 72.245-23.106Q72.416-22.981 72.416-22.769Q72.416-22.632 72.317-22.533Q72.218-22.434 72.084-22.434Q71.948-22.434 71.848-22.533Q71.749-22.632 71.749-22.769Q71.749-22.909 71.848-23.008Q71.558-23.008 71.358-22.812Q71.158-22.615 71.066-22.321Q70.973-22.027 70.973-21.747L70.973-20.633Q70.973-20.424 71.630-20.424L71.630-20.144M73.527-20.985L73.527-22.882L72.887-22.882L72.887-23.104Q73.205-23.104 73.422-23.314Q73.639-23.524 73.740-23.834Q73.841-24.143 73.841-24.451L74.108-24.451L74.108-23.162L75.184-23.162L75.184-22.882L74.108-22.882L74.108-20.998Q74.108-20.722 74.212-20.523Q74.316-20.325 74.576-20.325Q74.733-20.325 74.839-20.429Q74.945-20.534 74.995-20.687Q75.044-20.841 75.044-20.998L75.044-21.412L75.311-21.412L75.311-20.985Q75.311-20.759 75.212-20.549Q75.113-20.339 74.928-20.207Q74.743-20.076 74.514-20.076Q74.077-20.076 73.802-20.313Q73.527-20.551 73.527-20.985M76.442-18.387L76.374-18.387Q76.340-18.387 76.317-18.413Q76.295-18.438 76.295-18.473Q76.295-18.517 76.326-18.534Q76.681-18.838 76.931-19.228Q77.180-19.618 77.333-20.050Q77.485-20.482 77.555-20.951Q77.625-21.419 77.625-21.894Q77.625-22.373 77.555-22.839Q77.485-23.306 77.331-23.741Q77.177-24.177 76.926-24.565Q76.675-24.953 76.326-25.247Q76.295-25.264 76.295-25.309Q76.295-25.343 76.317-25.368Q76.340-25.394 76.374-25.394L76.442-25.394Q76.452-25.394 76.461-25.392Q76.469-25.391 76.480-25.387Q77.023-24.987 77.396-24.434Q77.768-23.880 77.949-23.234Q78.131-22.588 78.131-21.894Q78.131-21.193 77.949-20.546Q77.768-19.898 77.394-19.344Q77.020-18.790 76.480-18.394Q76.469-18.394 76.461-18.392Q76.452-18.391 76.442-18.387\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-32.236H70.909V-50.73H-65.403Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M2.815-18.794L2.815-18.869Q2.852-19.061 3.033-19.081L3.402-19.081L3.402-22.670L3.033-22.670Q2.852-22.690 2.815-22.882L2.815-22.957Q2.856-23.142 3.033-23.162L3.748-23.162Q3.919-23.145 3.963-22.957L3.963-22.895Q4.148-23.042 4.378-23.119Q4.609-23.196 4.845-23.196Q5.142-23.196 5.402-23.070Q5.662-22.943 5.850-22.723Q6.038-22.502 6.138-22.229Q6.239-21.956 6.239-21.655Q6.239-21.248 6.041-20.889Q5.843-20.530 5.504-20.320Q5.166-20.110 4.756-20.110Q4.301-20.110 3.963-20.431L3.963-19.081L4.336-19.081Q4.517-19.061 4.551-18.869L4.551-18.794Q4.517-18.609 4.336-18.589L3.033-18.589Q2.856-18.609 2.815-18.794M4.718-20.599Q4.988-20.599 5.207-20.747Q5.426-20.896 5.552-21.142Q5.679-21.388 5.679-21.655Q5.679-21.908 5.569-22.152Q5.460-22.396 5.257-22.552Q5.053-22.707 4.790-22.707Q4.510-22.707 4.281-22.545Q4.052-22.383 3.963-22.120L3.963-21.374Q4.042-21.053 4.235-20.826Q4.428-20.599 4.718-20.599M7.118-20.893L7.118-22.670L6.749-22.670Q6.567-22.690 6.530-22.882L6.530-22.957Q6.571-23.142 6.749-23.162L7.463-23.162Q7.634-23.142 7.678-22.957L7.678-20.920Q7.678-20.715 7.827-20.657Q7.976-20.599 8.225-20.599Q8.406-20.599 8.577-20.665Q8.748-20.732 8.857-20.863Q8.967-20.995 8.967-21.180L8.967-22.670L8.598-22.670Q8.413-22.690 8.379-22.882L8.379-22.957Q8.413-23.142 8.598-23.162L9.309-23.162Q9.483-23.142 9.527-22.957L9.527-20.633L9.900-20.633Q10.081-20.612 10.115-20.431L10.115-20.352Q10.081-20.165 9.900-20.144L9.186-20.144Q9.011-20.165 8.967-20.339Q8.615-20.110 8.170-20.110Q7.965-20.110 7.777-20.146Q7.589-20.182 7.444-20.270Q7.299-20.359 7.208-20.515Q7.118-20.670 7.118-20.893M10.696-20.318L10.696-21.118Q10.720-21.299 10.905-21.320L11.052-21.320Q11.195-21.299 11.247-21.159Q11.424-20.599 12.060-20.599Q12.241-20.599 12.441-20.629Q12.641-20.660 12.788-20.761Q12.935-20.862 12.935-21.040Q12.935-21.224 12.740-21.323Q12.545-21.422 12.306-21.460L11.694-21.559Q10.696-21.744 10.696-22.376Q10.696-22.629 10.823-22.795Q10.949-22.960 11.159-23.054Q11.370-23.148 11.594-23.183Q11.817-23.217 12.060-23.217Q12.279-23.217 12.448-23.191Q12.617-23.165 12.761-23.097Q12.829-23.200 12.942-23.217L13.010-23.217Q13.096-23.206 13.150-23.152Q13.205-23.097 13.215-23.015L13.215-22.396Q13.205-22.314 13.150-22.256Q13.096-22.198 13.010-22.188L12.863-22.188Q12.781-22.198 12.723-22.256Q12.665-22.314 12.655-22.396Q12.655-22.728 12.046-22.728Q11.742-22.728 11.464-22.656Q11.185-22.584 11.185-22.369Q11.185-22.137 11.773-22.041L12.388-21.935Q12.812-21.863 13.118-21.646Q13.424-21.429 13.424-21.040Q13.424-20.698 13.217-20.486Q13.010-20.274 12.704-20.192Q12.399-20.110 12.060-20.110Q11.554-20.110 11.206-20.332Q11.144-20.223 11.101-20.173Q11.059-20.123 10.966-20.110L10.905-20.110Q10.717-20.130 10.696-20.318M13.961-20.352L13.961-20.431Q13.998-20.612 14.179-20.633L14.548-20.633L14.548-23.931L14.179-23.931Q13.998-23.952 13.961-24.140L13.961-24.218Q13.998-24.399 14.179-24.420L14.894-24.420Q15.065-24.399 15.109-24.218L15.109-22.861Q15.512-23.196 16.035-23.196Q16.339-23.196 16.548-23.073Q16.756-22.950 16.857-22.725Q16.958-22.499 16.958-22.188L16.958-20.633L17.331-20.633Q17.512-20.612 17.546-20.431L17.546-20.352Q17.512-20.165 17.331-20.144L16.110-20.144Q15.940-20.165 15.895-20.352L15.895-20.431Q15.940-20.616 16.110-20.633L16.398-20.633L16.398-22.161Q16.398-22.431 16.319-22.569Q16.240-22.707 15.984-22.707Q15.748-22.707 15.548-22.593Q15.348-22.478 15.229-22.279Q15.109-22.079 15.109-21.846L15.109-20.633L15.482-20.633Q15.663-20.612 15.697-20.431L15.697-20.352Q15.663-20.165 15.482-20.144L14.179-20.144Q13.998-20.165 13.961-20.352M19.638-18.794L19.638-18.869Q19.682-19.061 19.853-19.081L20.260-19.081L20.260-20.479Q19.863-20.110 19.330-20.110Q19.019-20.110 18.753-20.235Q18.486-20.359 18.283-20.578Q18.079-20.797 17.970-21.079Q17.860-21.361 17.860-21.655Q17.860-22.079 18.069-22.429Q18.277-22.779 18.633-22.988Q18.988-23.196 19.405-23.196Q19.898-23.196 20.260-22.854L20.260-22.995Q20.304-23.179 20.479-23.196L20.602-23.196Q20.776-23.176 20.820-22.995L20.820-19.081L21.227-19.081Q21.398-19.061 21.442-18.869L21.442-18.794Q21.398-18.609 21.227-18.589L19.853-18.589Q19.682-18.609 19.638-18.794M19.371-20.599Q19.696-20.599 19.937-20.821Q20.178-21.043 20.260-21.361L20.260-21.901Q20.222-22.109 20.115-22.296Q20.007-22.482 19.834-22.595Q19.662-22.707 19.450-22.707Q19.173-22.707 18.935-22.562Q18.698-22.417 18.559-22.171Q18.421-21.925 18.421-21.648Q18.421-21.241 18.696-20.920Q18.971-20.599 19.371-20.599\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M25.176-19.918Q25.176-19.963 25.203-20.018L28.611-24.598Q28.170-24.393 27.695-24.393Q27.107-24.393 26.540-24.680Q26.673-24.369 26.673-23.986Q26.673-23.671 26.560-23.343Q26.447-23.015 26.218-22.795Q25.989-22.574 25.665-22.574Q25.323-22.574 25.061-22.784Q24.800-22.995 24.665-23.323Q24.530-23.651 24.530-23.986Q24.530-24.317 24.665-24.645Q24.800-24.974 25.061-25.184Q25.323-25.394 25.665-25.394Q25.948-25.394 26.198-25.186Q26.519-24.912 26.897-24.765Q27.274-24.618 27.688-24.618Q28.125-24.618 28.515-24.799Q28.905-24.980 29.158-25.326Q29.216-25.394 29.298-25.394Q29.366-25.394 29.416-25.344Q29.465-25.295 29.465-25.227Q29.465-25.182 29.438-25.127L25.490-19.830Q25.436-19.751 25.350-19.751Q25.278-19.751 25.227-19.802Q25.176-19.853 25.176-19.918M25.665-22.796Q25.907-22.796 26.076-22.991Q26.246-23.186 26.326-23.468Q26.406-23.750 26.406-23.986Q26.406-24.153 26.362-24.363Q26.317-24.574 26.232-24.748Q26.146-24.922 25.999-25.045Q25.853-25.168 25.665-25.168Q25.309-25.168 25.183-24.798Q25.056-24.427 25.056-23.986Q25.056-23.541 25.183-23.169Q25.309-22.796 25.665-22.796M29.103-19.751Q28.761-19.751 28.500-19.963Q28.238-20.175 28.103-20.503Q27.968-20.831 27.968-21.166Q27.968-21.498 28.103-21.824Q28.238-22.150 28.500-22.362Q28.761-22.574 29.103-22.574Q29.424-22.574 29.653-22.354Q29.882-22.133 29.997-21.805Q30.111-21.477 30.111-21.166Q30.111-20.852 29.997-20.522Q29.882-20.192 29.653-19.971Q29.424-19.751 29.103-19.751M29.103-19.977Q29.346-19.977 29.517-20.173Q29.687-20.370 29.766-20.648Q29.845-20.927 29.845-21.166Q29.845-21.333 29.800-21.544Q29.756-21.754 29.670-21.928Q29.585-22.102 29.438-22.226Q29.291-22.349 29.103-22.349Q28.748-22.349 28.621-21.978Q28.495-21.607 28.495-21.166Q28.495-20.722 28.621-20.349Q28.748-19.977 29.103-19.977\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M30.806-20.352L30.806-20.431Q30.857-20.612 31.025-20.633L31.647-20.633L31.647-22.670L31.025-22.670Q30.854-22.690 30.806-22.882L30.806-22.957Q30.857-23.142 31.025-23.162L31.988-23.162Q32.163-23.145 32.207-22.957L32.207-22.670Q32.436-22.919 32.747-23.058Q33.058-23.196 33.397-23.196Q33.653-23.196 33.858-23.078Q34.063-22.960 34.063-22.728Q34.063-22.581 33.967-22.478Q33.872-22.376 33.725-22.376Q33.591-22.376 33.491-22.473Q33.390-22.571 33.390-22.707Q33.062-22.707 32.787-22.531Q32.511-22.355 32.359-22.063Q32.207-21.771 32.207-21.439L32.207-20.633L33.034-20.633Q33.215-20.612 33.250-20.431L33.250-20.352Q33.215-20.165 33.034-20.144L31.025-20.144Q30.857-20.165 30.806-20.352M34.682-21.118Q34.682-21.508 35.044-21.733Q35.406-21.959 35.880-22.046Q36.353-22.133 36.798-22.140Q36.798-22.328 36.680-22.461Q36.562-22.595 36.381-22.661Q36.199-22.728 36.015-22.728Q35.714-22.728 35.574-22.707L35.574-22.656Q35.574-22.509 35.470-22.408Q35.365-22.308 35.222-22.308Q35.068-22.308 34.967-22.415Q34.866-22.523 34.866-22.670Q34.866-23.025 35.200-23.121Q35.533-23.217 36.022-23.217Q36.257-23.217 36.492-23.148Q36.726-23.080 36.922-22.948Q37.119-22.817 37.238-22.624Q37.358-22.431 37.358-22.188L37.358-20.684Q37.358-20.633 37.819-20.633Q37.990-20.616 38.035-20.431L38.035-20.352Q37.990-20.165 37.819-20.144L37.693-20.144Q37.392-20.144 37.192-20.185Q36.992-20.226 36.866-20.390Q36.463-20.110 35.844-20.110Q35.550-20.110 35.283-20.233Q35.017-20.356 34.849-20.585Q34.682-20.814 34.682-21.118M35.242-21.111Q35.242-20.872 35.454-20.735Q35.666-20.599 35.916-20.599Q36.107-20.599 36.310-20.650Q36.514-20.701 36.656-20.822Q36.798-20.944 36.798-21.139L36.798-21.655Q36.551-21.655 36.187-21.605Q35.823-21.556 35.533-21.434Q35.242-21.313 35.242-21.111M38.267-20.352L38.267-20.431Q38.301-20.612 38.483-20.633L38.838-20.633L39.652-21.699L38.889-22.670L38.524-22.670Q38.353-22.687 38.308-22.882L38.308-22.957Q38.353-23.142 38.524-23.162L39.539-23.162Q39.713-23.142 39.757-22.957L39.757-22.882Q39.713-22.690 39.539-22.670L39.443-22.670L39.877-22.096L40.294-22.670L40.192-22.670Q40.017-22.690 39.973-22.882L39.973-22.957Q40.017-23.142 40.192-23.162L41.207-23.162Q41.378-23.145 41.422-22.957L41.422-22.882Q41.378-22.690 41.207-22.670L40.848-22.670L40.106-21.699L40.947-20.633L41.302-20.633Q41.477-20.612 41.521-20.431L41.521-20.352Q41.487-20.165 41.302-20.144L40.294-20.144Q40.113-20.165 40.079-20.352L40.079-20.431Q40.113-20.612 40.294-20.633L40.407-20.633L39.877-21.381L39.364-20.633L39.491-20.633Q39.672-20.612 39.706-20.431L39.706-20.352Q39.672-20.165 39.491-20.144L38.483-20.144Q38.312-20.161 38.267-20.352\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M42.481-20.564Q42.481-20.732 42.604-20.855Q42.727-20.978 42.902-20.978Q43.069-20.978 43.192-20.855Q43.315-20.732 43.315-20.564Q43.315-20.390 43.192-20.267Q43.069-20.144 42.902-20.144Q42.727-20.144 42.604-20.267Q42.481-20.390 42.481-20.564M42.481-22.748Q42.481-22.916 42.604-23.039Q42.727-23.162 42.902-23.162Q43.069-23.162 43.192-23.039Q43.315-22.916 43.315-22.748Q43.315-22.574 43.192-22.451Q43.069-22.328 42.902-22.328Q42.727-22.328 42.604-22.451Q42.481-22.574 42.481-22.748\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M48.722-19.918Q48.722-19.963 48.749-20.018L52.157-24.598Q51.716-24.393 51.241-24.393Q50.653-24.393 50.086-24.680Q50.219-24.369 50.219-23.986Q50.219-23.671 50.106-23.343Q49.993-23.015 49.764-22.795Q49.535-22.574 49.211-22.574Q48.869-22.574 48.607-22.784Q48.346-22.995 48.211-23.323Q48.076-23.651 48.076-23.986Q48.076-24.317 48.211-24.645Q48.346-24.974 48.607-25.184Q48.869-25.394 49.211-25.394Q49.494-25.394 49.744-25.186Q50.065-24.912 50.443-24.765Q50.820-24.618 51.234-24.618Q51.671-24.618 52.061-24.799Q52.451-24.980 52.704-25.326Q52.762-25.394 52.844-25.394Q52.912-25.394 52.962-25.344Q53.011-25.295 53.011-25.227Q53.011-25.182 52.984-25.127L49.036-19.830Q48.982-19.751 48.896-19.751Q48.824-19.751 48.773-19.802Q48.722-19.853 48.722-19.918M49.211-22.796Q49.453-22.796 49.622-22.991Q49.792-23.186 49.872-23.468Q49.952-23.750 49.952-23.986Q49.952-24.153 49.908-24.363Q49.863-24.574 49.778-24.748Q49.692-24.922 49.545-25.045Q49.399-25.168 49.211-25.168Q48.855-25.168 48.729-24.798Q48.602-24.427 48.602-23.986Q48.602-23.541 48.729-23.169Q48.855-22.796 49.211-22.796M52.649-19.751Q52.307-19.751 52.046-19.963Q51.784-20.175 51.649-20.503Q51.514-20.831 51.514-21.166Q51.514-21.498 51.649-21.824Q51.784-22.150 52.046-22.362Q52.307-22.574 52.649-22.574Q52.970-22.574 53.199-22.354Q53.428-22.133 53.543-21.805Q53.657-21.477 53.657-21.166Q53.657-20.852 53.543-20.522Q53.428-20.192 53.199-19.971Q52.970-19.751 52.649-19.751M52.649-19.977Q52.892-19.977 53.063-20.173Q53.233-20.370 53.312-20.648Q53.391-20.927 53.391-21.166Q53.391-21.333 53.346-21.544Q53.302-21.754 53.216-21.928Q53.131-22.102 52.984-22.226Q52.837-22.349 52.649-22.349Q52.294-22.349 52.167-21.978Q52.041-21.607 52.041-21.166Q52.041-20.722 52.167-20.349Q52.294-19.977 52.649-19.977\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M54.351-20.352L54.351-20.431Q54.402-20.612 54.570-20.633L55.192-20.633L55.192-22.670L54.570-22.670Q54.399-22.690 54.351-22.882L54.351-22.957Q54.402-23.142 54.570-23.162L55.533-23.162Q55.708-23.145 55.752-22.957L55.752-22.670Q55.981-22.919 56.292-23.058Q56.603-23.196 56.942-23.196Q57.198-23.196 57.403-23.078Q57.608-22.960 57.608-22.728Q57.608-22.581 57.512-22.478Q57.417-22.376 57.270-22.376Q57.136-22.376 57.036-22.473Q56.935-22.571 56.935-22.707Q56.607-22.707 56.332-22.531Q56.056-22.355 55.904-22.063Q55.752-21.771 55.752-21.439L55.752-20.633L56.579-20.633Q56.760-20.612 56.795-20.431L56.795-20.352Q56.760-20.165 56.579-20.144L54.570-20.144Q54.402-20.165 54.351-20.352M58.384-20.318L58.384-21.118Q58.408-21.299 58.593-21.320L58.739-21.320Q58.883-21.299 58.934-21.159Q59.112-20.599 59.748-20.599Q59.929-20.599 60.129-20.629Q60.329-20.660 60.476-20.761Q60.623-20.862 60.623-21.040Q60.623-21.224 60.428-21.323Q60.233-21.422 59.994-21.460L59.382-21.559Q58.384-21.744 58.384-22.376Q58.384-22.629 58.510-22.795Q58.637-22.960 58.847-23.054Q59.057-23.148 59.281-23.183Q59.505-23.217 59.748-23.217Q59.967-23.217 60.136-23.191Q60.305-23.165 60.448-23.097Q60.517-23.200 60.630-23.217L60.698-23.217Q60.783-23.206 60.838-23.152Q60.893-23.097 60.903-23.015L60.903-22.396Q60.893-22.314 60.838-22.256Q60.783-22.198 60.698-22.188L60.551-22.188Q60.469-22.198 60.411-22.256Q60.353-22.314 60.343-22.396Q60.343-22.728 59.734-22.728Q59.430-22.728 59.151-22.656Q58.873-22.584 58.873-22.369Q58.873-22.137 59.461-22.041L60.076-21.935Q60.500-21.863 60.806-21.646Q61.112-21.429 61.112-21.040Q61.112-20.698 60.905-20.486Q60.698-20.274 60.392-20.192Q60.086-20.110 59.748-20.110Q59.242-20.110 58.893-20.332Q58.832-20.223 58.789-20.173Q58.746-20.123 58.654-20.110L58.593-20.110Q58.405-20.130 58.384-20.318M61.648-18.794L61.648-18.869Q61.686-19.061 61.867-19.081L62.236-19.081L62.236-22.670L61.867-22.670Q61.686-22.690 61.648-22.882L61.648-22.957Q61.689-23.142 61.867-23.162L62.581-23.162Q62.752-23.145 62.797-22.957L62.797-22.895Q62.981-23.042 63.212-23.119Q63.443-23.196 63.678-23.196Q63.976-23.196 64.236-23.070Q64.495-22.943 64.683-22.723Q64.871-22.502 64.972-22.229Q65.073-21.956 65.073-21.655Q65.073-21.248 64.875-20.889Q64.677-20.530 64.338-20.320Q64-20.110 63.590-20.110Q63.135-20.110 62.797-20.431L62.797-19.081L63.169-19.081Q63.350-19.061 63.385-18.869L63.385-18.794Q63.350-18.609 63.169-18.589L61.867-18.589Q61.689-18.609 61.648-18.794M63.552-20.599Q63.822-20.599 64.041-20.747Q64.260-20.896 64.386-21.142Q64.512-21.388 64.512-21.655Q64.512-21.908 64.403-22.152Q64.294-22.396 64.090-22.552Q63.887-22.707 63.624-22.707Q63.343-22.707 63.114-22.545Q62.885-22.383 62.797-22.120L62.797-21.374Q62.875-21.053 63.068-20.826Q63.261-20.599 63.552-20.599\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M73.071-20.951L68.238-20.951Q68.170-20.961 68.124-21.007Q68.078-21.053 68.078-21.125Q68.078-21.190 68.124-21.236Q68.170-21.282 68.238-21.292L73.071-21.292Q73.140-21.282 73.186-21.236Q73.232-21.190 73.232-21.125Q73.232-21.053 73.186-21.007Q73.140-20.961 73.071-20.951M73.071-22.489L68.238-22.489Q68.170-22.499 68.124-22.545Q68.078-22.591 68.078-22.663Q68.078-22.807 68.238-22.831L73.071-22.831Q73.232-22.807 73.232-22.663Q73.232-22.591 73.186-22.545Q73.140-22.499 73.071-22.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M77.860-20.076Q77.481-20.076 77.190-20.284Q76.900-20.493 76.706-20.833Q76.513-21.173 76.419-21.556Q76.325-21.938 76.325-22.287Q76.325-22.629 76.421-23.017Q76.517-23.405 76.706-23.738Q76.896-24.071 77.188-24.281Q77.481-24.492 77.860-24.492Q78.345-24.492 78.696-24.143Q79.046-23.794 79.219-23.282Q79.391-22.769 79.391-22.287Q79.391-21.802 79.219-21.287Q79.046-20.773 78.696-20.424Q78.345-20.076 77.860-20.076M77.860-20.564Q78.123-20.564 78.313-20.754Q78.503-20.944 78.614-21.231Q78.725-21.518 78.778-21.821Q78.831-22.123 78.831-22.369Q78.831-22.588 78.776-22.873Q78.721-23.159 78.607-23.413Q78.492-23.668 78.306-23.834Q78.120-23.999 77.860-23.999Q77.532-23.999 77.311-23.726Q77.091-23.453 76.988-23.073Q76.886-22.694 76.886-22.369Q76.886-22.020 76.985-21.600Q77.084-21.180 77.301-20.872Q77.518-20.564 77.860-20.564M79.945-20.352L79.945-20.431Q79.979-20.612 80.160-20.633L80.516-20.633L81.329-21.699L80.567-22.670L80.201-22.670Q80.030-22.687 79.986-22.882L79.986-22.957Q80.030-23.142 80.201-23.162L81.216-23.162Q81.391-23.142 81.435-22.957L81.435-22.882Q81.391-22.690 81.216-22.670L81.121-22.670L81.555-22.096L81.972-22.670L81.869-22.670Q81.695-22.690 81.650-22.882L81.650-22.957Q81.695-23.142 81.869-23.162L82.884-23.162Q83.055-23.145 83.100-22.957L83.100-22.882Q83.055-22.690 82.884-22.670L82.525-22.670L81.784-21.699L82.625-20.633L82.980-20.633Q83.154-20.612 83.199-20.431L83.199-20.352Q83.165-20.165 82.980-20.144L81.972-20.144Q81.791-20.165 81.756-20.352L81.756-20.431Q81.791-20.612 81.972-20.633L82.085-20.633L81.555-21.381L81.042-20.633L81.169-20.633Q81.350-20.612 81.384-20.431L81.384-20.352Q81.350-20.165 81.169-20.144L80.160-20.144Q79.989-20.161 79.945-20.352M86.507-21.446L84.371-21.446Q84.419-21.204 84.592-21.009Q84.764-20.814 85.007-20.706Q85.250-20.599 85.499-20.599Q85.913-20.599 86.108-20.852Q86.114-20.862 86.164-20.954Q86.213-21.046 86.256-21.084Q86.299-21.122 86.381-21.132L86.507-21.132Q86.675-21.115 86.726-20.927L86.726-20.879Q86.668-20.616 86.466-20.443Q86.265-20.270 85.991-20.190Q85.718-20.110 85.451-20.110Q85.027-20.110 84.643-20.310Q84.258-20.510 84.024-20.860Q83.790-21.210 83.790-21.641L83.790-21.692Q83.790-22.102 84.005-22.455Q84.221-22.807 84.578-23.012Q84.935-23.217 85.345-23.217Q85.786-23.217 86.096-23.022Q86.405-22.827 86.566-22.487Q86.726-22.147 86.726-21.706L86.726-21.655Q86.675-21.467 86.507-21.446M84.378-21.928L86.152-21.928Q86.111-22.287 85.902-22.508Q85.694-22.728 85.345-22.728Q85-22.728 84.732-22.499Q84.463-22.270 84.378-21.928M89.006-20.076Q88.627-20.076 88.336-20.284Q88.046-20.493 87.852-20.833Q87.659-21.173 87.565-21.556Q87.471-21.938 87.471-22.287Q87.471-22.629 87.567-23.017Q87.663-23.405 87.852-23.738Q88.042-24.071 88.334-24.281Q88.627-24.492 89.006-24.492Q89.491-24.492 89.842-24.143Q90.192-23.794 90.365-23.282Q90.537-22.769 90.537-22.287Q90.537-21.802 90.365-21.287Q90.192-20.773 89.842-20.424Q89.491-20.076 89.006-20.076M89.006-20.564Q89.269-20.564 89.459-20.754Q89.649-20.944 89.760-21.231Q89.871-21.518 89.924-21.821Q89.977-22.123 89.977-22.369Q89.977-22.588 89.922-22.873Q89.867-23.159 89.753-23.413Q89.638-23.668 89.452-23.834Q89.266-23.999 89.006-23.999Q88.678-23.999 88.457-23.726Q88.237-23.453 88.134-23.073Q88.032-22.694 88.032-22.369Q88.032-22.020 88.131-21.600Q88.230-21.180 88.447-20.872Q88.664-20.564 89.006-20.564M91.614-20.352L91.614-20.431Q91.658-20.612 91.833-20.633L92.547-20.633L92.547-23.418Q92.215-23.148 91.819-23.148Q91.617-23.148 91.573-23.350L91.573-23.429Q91.617-23.617 91.788-23.637Q92.075-23.637 92.297-23.846Q92.520-24.054 92.643-24.358Q92.704-24.471 92.841-24.492L92.889-24.492Q93.060-24.475 93.104-24.287L93.104-20.633L93.818-20.633Q93.993-20.612 94.037-20.431L94.037-20.352Q93.993-20.165 93.818-20.144L91.833-20.144Q91.658-20.165 91.614-20.352M96.437-20.076Q96.057-20.076 95.767-20.284Q95.476-20.493 95.283-20.833Q95.090-21.173 94.996-21.556Q94.902-21.938 94.902-22.287Q94.902-22.629 94.998-23.017Q95.093-23.405 95.283-23.738Q95.473-24.071 95.765-24.281Q96.057-24.492 96.437-24.492Q96.922-24.492 97.272-24.143Q97.623-23.794 97.795-23.282Q97.968-22.769 97.968-22.287Q97.968-21.802 97.795-21.287Q97.623-20.773 97.272-20.424Q96.922-20.076 96.437-20.076M96.437-20.564Q96.700-20.564 96.889-20.754Q97.079-20.944 97.190-21.231Q97.301-21.518 97.354-21.821Q97.407-22.123 97.407-22.369Q97.407-22.588 97.353-22.873Q97.298-23.159 97.183-23.413Q97.069-23.668 96.883-23.834Q96.696-23.999 96.437-23.999Q96.108-23.999 95.888-23.726Q95.668-23.453 95.565-23.073Q95.462-22.694 95.462-22.369Q95.462-22.020 95.562-21.600Q95.661-21.180 95.878-20.872Q96.095-20.564 96.437-20.564\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M99.130-18.914Q99.130-18.948 99.158-18.975Q99.428-19.204 99.577-19.527Q99.725-19.850 99.725-20.206L99.725-20.243Q99.616-20.144 99.452-20.144Q99.271-20.144 99.151-20.264Q99.031-20.383 99.031-20.564Q99.031-20.739 99.151-20.858Q99.271-20.978 99.452-20.978Q99.708-20.978 99.828-20.739Q99.947-20.499 99.947-20.206Q99.947-19.806 99.778-19.435Q99.609-19.064 99.312-18.808Q99.281-18.787 99.254-18.787Q99.213-18.787 99.171-18.828Q99.130-18.869 99.130-18.914\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M105.271-20.144L103.637-20.144L103.637-20.424Q103.866-20.424 104.015-20.458Q104.164-20.493 104.164-20.633L104.164-22.482Q104.164-22.752 104.056-22.813Q103.948-22.875 103.637-22.875L103.637-23.155L104.697-23.230L104.697-22.581Q104.868-22.889 105.172-23.060Q105.476-23.230 105.821-23.230Q106.221-23.230 106.498-23.090Q106.775-22.950 106.860-22.602Q107.028-22.895 107.327-23.063Q107.626-23.230 107.971-23.230Q108.477-23.230 108.761-23.007Q109.045-22.783 109.045-22.287L109.045-20.633Q109.045-20.496 109.193-20.460Q109.342-20.424 109.567-20.424L109.567-20.144L107.937-20.144L107.937-20.424Q108.163-20.424 108.313-20.460Q108.463-20.496 108.463-20.633L108.463-22.273Q108.463-22.608 108.344-22.808Q108.224-23.008 107.910-23.008Q107.640-23.008 107.406-22.872Q107.171-22.735 107.033-22.501Q106.895-22.267 106.895-21.993L106.895-20.633Q106.895-20.496 107.043-20.460Q107.192-20.424 107.418-20.424L107.418-20.144L105.787-20.144L105.787-20.424Q106.016-20.424 106.165-20.458Q106.314-20.493 106.314-20.633L106.314-22.273Q106.314-22.608 106.194-22.808Q106.074-23.008 105.760-23.008Q105.490-23.008 105.256-22.872Q105.022-22.735 104.883-22.501Q104.745-22.267 104.745-21.993L104.745-20.633Q104.745-20.496 104.895-20.460Q105.046-20.424 105.271-20.424L105.271-20.144M110.114-21.679Q110.114-22 110.239-22.289Q110.364-22.578 110.589-22.801Q110.815-23.025 111.111-23.145Q111.406-23.265 111.724-23.265Q112.052-23.265 112.314-23.165Q112.575-23.066 112.751-22.884Q112.927-22.701 113.021-22.443Q113.115-22.185 113.115-21.853Q113.115-21.761 113.033-21.740L110.777-21.740L110.777-21.679Q110.777-21.091 111.061-20.708Q111.345-20.325 111.912-20.325Q112.233-20.325 112.502-20.518Q112.770-20.711 112.859-21.026Q112.866-21.067 112.941-21.081L113.033-21.081Q113.115-21.057 113.115-20.985Q113.115-20.978 113.108-20.951Q112.996-20.554 112.625-20.315Q112.254-20.076 111.830-20.076Q111.393-20.076 110.993-20.284Q110.593-20.493 110.354-20.860Q110.114-21.227 110.114-21.679M110.784-21.949L112.599-21.949Q112.599-22.226 112.502-22.478Q112.404-22.731 112.206-22.887Q112.008-23.042 111.724-23.042Q111.447-23.042 111.234-22.884Q111.020-22.725 110.902-22.470Q110.784-22.215 110.784-21.949M115.385-20.144L113.751-20.144L113.751-20.424Q113.980-20.424 114.129-20.458Q114.277-20.493 114.277-20.633L114.277-22.482Q114.277-22.752 114.170-22.813Q114.062-22.875 113.751-22.875L113.751-23.155L114.811-23.230L114.811-22.581Q114.982-22.889 115.286-23.060Q115.590-23.230 115.935-23.230Q116.335-23.230 116.612-23.090Q116.889-22.950 116.974-22.602Q117.142-22.895 117.441-23.063Q117.740-23.230 118.085-23.230Q118.591-23.230 118.875-23.007Q119.158-22.783 119.158-22.287L119.158-20.633Q119.158-20.496 119.307-20.460Q119.456-20.424 119.681-20.424L119.681-20.144L118.051-20.144L118.051-20.424Q118.276-20.424 118.427-20.460Q118.577-20.496 118.577-20.633L118.577-22.273Q118.577-22.608 118.458-22.808Q118.338-23.008 118.024-23.008Q117.754-23.008 117.519-22.872Q117.285-22.735 117.147-22.501Q117.008-22.267 117.008-21.993L117.008-20.633Q117.008-20.496 117.157-20.460Q117.306-20.424 117.531-20.424L117.531-20.144L115.901-20.144L115.901-20.424Q116.130-20.424 116.279-20.458Q116.427-20.493 116.427-20.633L116.427-22.273Q116.427-22.608 116.308-22.808Q116.188-23.008 115.874-23.008Q115.604-23.008 115.369-22.872Q115.135-22.735 114.997-22.501Q114.858-22.267 114.858-21.993L114.858-20.633Q114.858-20.496 115.009-20.460Q115.159-20.424 115.385-20.424\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M128.146-20.951L123.313-20.951Q123.245-20.961 123.199-21.007Q123.153-21.053 123.153-21.125Q123.153-21.190 123.199-21.236Q123.245-21.282 123.313-21.292L128.146-21.292Q128.215-21.282 128.261-21.236Q128.307-21.190 128.307-21.125Q128.307-21.053 128.261-21.007Q128.215-20.961 128.146-20.951M128.146-22.489L123.313-22.489Q123.245-22.499 123.199-22.545Q123.153-22.591 123.153-22.663Q123.153-22.807 123.313-22.831L128.146-22.831Q128.307-22.807 128.307-22.663Q128.307-22.591 128.261-22.545Q128.215-22.499 128.146-22.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 -19.492)\">\u003Cpath d=\"M132.053-20.458Q132.173-20.342 132.350-20.300Q132.528-20.257 132.744-20.257Q132.983-20.257 133.193-20.366Q133.403-20.476 133.557-20.658Q133.711-20.841 133.810-21.074Q133.977-21.501 133.977-22.321Q133.827-22.027 133.564-21.848Q133.301-21.668 132.983-21.668Q132.549-21.668 132.202-21.877Q131.855-22.085 131.657-22.446Q131.458-22.807 131.458-23.230Q131.458-23.565 131.588-23.854Q131.718-24.143 131.949-24.357Q132.180-24.570 132.479-24.681Q132.778-24.792 133.109-24.792Q133.967-24.792 134.323-24.078Q134.678-23.364 134.678-22.407Q134.678-21.990 134.550-21.562Q134.422-21.135 134.165-20.780Q133.909-20.424 133.547-20.214Q133.184-20.004 132.744-20.004Q132.289-20.004 131.971-20.192Q131.653-20.380 131.653-20.804Q131.653-20.954 131.752-21.053Q131.851-21.152 132.002-21.152Q132.070-21.152 132.137-21.125Q132.204-21.098 132.248-21.053Q132.292-21.009 132.320-20.942Q132.347-20.875 132.347-20.804Q132.347-20.674 132.267-20.576Q132.186-20.479 132.053-20.458M133.024-21.894Q133.318-21.894 133.533-22.072Q133.748-22.249 133.856-22.525Q133.964-22.800 133.964-23.090Q133.964-23.135 133.962-23.162Q133.960-23.189 133.957-23.224Q133.960-23.234 133.962-23.241Q133.964-23.248 133.964-23.258Q133.964-23.760 133.766-24.160Q133.567-24.560 133.109-24.560Q132.542-24.560 132.349-24.201Q132.156-23.842 132.156-23.230Q132.156-22.844 132.210-22.561Q132.265-22.277 132.460-22.085Q132.655-21.894 133.024-21.894\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-65.403-10.897H70.909V-29.39H-65.403Z\"\u002F>\u003Cg stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M2.815-18.794L2.815-18.869Q2.852-19.061 3.033-19.081L3.402-19.081L3.402-22.670L3.033-22.670Q2.852-22.690 2.815-22.882L2.815-22.957Q2.856-23.142 3.033-23.162L3.748-23.162Q3.919-23.145 3.963-22.957L3.963-22.895Q4.148-23.042 4.378-23.119Q4.609-23.196 4.845-23.196Q5.142-23.196 5.402-23.070Q5.662-22.943 5.850-22.723Q6.038-22.502 6.138-22.229Q6.239-21.956 6.239-21.655Q6.239-21.248 6.041-20.889Q5.843-20.530 5.504-20.320Q5.166-20.110 4.756-20.110Q4.301-20.110 3.963-20.431L3.963-19.081L4.336-19.081Q4.517-19.061 4.551-18.869L4.551-18.794Q4.517-18.609 4.336-18.589L3.033-18.589Q2.856-18.609 2.815-18.794M4.718-20.599Q4.988-20.599 5.207-20.747Q5.426-20.896 5.552-21.142Q5.679-21.388 5.679-21.655Q5.679-21.908 5.569-22.152Q5.460-22.396 5.257-22.552Q5.053-22.707 4.790-22.707Q4.510-22.707 4.281-22.545Q4.052-22.383 3.963-22.120L3.963-21.374Q4.042-21.053 4.235-20.826Q4.428-20.599 4.718-20.599M7.118-20.893L7.118-22.670L6.749-22.670Q6.567-22.690 6.530-22.882L6.530-22.957Q6.571-23.142 6.749-23.162L7.463-23.162Q7.634-23.142 7.678-22.957L7.678-20.920Q7.678-20.715 7.827-20.657Q7.976-20.599 8.225-20.599Q8.406-20.599 8.577-20.665Q8.748-20.732 8.857-20.863Q8.967-20.995 8.967-21.180L8.967-22.670L8.598-22.670Q8.413-22.690 8.379-22.882L8.379-22.957Q8.413-23.142 8.598-23.162L9.309-23.162Q9.483-23.142 9.527-22.957L9.527-20.633L9.900-20.633Q10.081-20.612 10.115-20.431L10.115-20.352Q10.081-20.165 9.900-20.144L9.186-20.144Q9.011-20.165 8.967-20.339Q8.615-20.110 8.170-20.110Q7.965-20.110 7.777-20.146Q7.589-20.182 7.444-20.270Q7.299-20.359 7.208-20.515Q7.118-20.670 7.118-20.893M10.696-20.318L10.696-21.118Q10.720-21.299 10.905-21.320L11.052-21.320Q11.195-21.299 11.247-21.159Q11.424-20.599 12.060-20.599Q12.241-20.599 12.441-20.629Q12.641-20.660 12.788-20.761Q12.935-20.862 12.935-21.040Q12.935-21.224 12.740-21.323Q12.545-21.422 12.306-21.460L11.694-21.559Q10.696-21.744 10.696-22.376Q10.696-22.629 10.823-22.795Q10.949-22.960 11.159-23.054Q11.370-23.148 11.594-23.183Q11.817-23.217 12.060-23.217Q12.279-23.217 12.448-23.191Q12.617-23.165 12.761-23.097Q12.829-23.200 12.942-23.217L13.010-23.217Q13.096-23.206 13.150-23.152Q13.205-23.097 13.215-23.015L13.215-22.396Q13.205-22.314 13.150-22.256Q13.096-22.198 13.010-22.188L12.863-22.188Q12.781-22.198 12.723-22.256Q12.665-22.314 12.655-22.396Q12.655-22.728 12.046-22.728Q11.742-22.728 11.464-22.656Q11.185-22.584 11.185-22.369Q11.185-22.137 11.773-22.041L12.388-21.935Q12.812-21.863 13.118-21.646Q13.424-21.429 13.424-21.040Q13.424-20.698 13.217-20.486Q13.010-20.274 12.704-20.192Q12.399-20.110 12.060-20.110Q11.554-20.110 11.206-20.332Q11.144-20.223 11.101-20.173Q11.059-20.123 10.966-20.110L10.905-20.110Q10.717-20.130 10.696-20.318M13.961-20.352L13.961-20.431Q13.998-20.612 14.179-20.633L14.548-20.633L14.548-23.931L14.179-23.931Q13.998-23.952 13.961-24.140L13.961-24.218Q13.998-24.399 14.179-24.420L14.894-24.420Q15.065-24.399 15.109-24.218L15.109-22.861Q15.512-23.196 16.035-23.196Q16.339-23.196 16.548-23.073Q16.756-22.950 16.857-22.725Q16.958-22.499 16.958-22.188L16.958-20.633L17.331-20.633Q17.512-20.612 17.546-20.431L17.546-20.352Q17.512-20.165 17.331-20.144L16.110-20.144Q15.940-20.165 15.895-20.352L15.895-20.431Q15.940-20.616 16.110-20.633L16.398-20.633L16.398-22.161Q16.398-22.431 16.319-22.569Q16.240-22.707 15.984-22.707Q15.748-22.707 15.548-22.593Q15.348-22.478 15.229-22.279Q15.109-22.079 15.109-21.846L15.109-20.633L15.482-20.633Q15.663-20.612 15.697-20.431L15.697-20.352Q15.663-20.165 15.482-20.144L14.179-20.144Q13.998-20.165 13.961-20.352M19.638-18.794L19.638-18.869Q19.682-19.061 19.853-19.081L20.260-19.081L20.260-20.479Q19.863-20.110 19.330-20.110Q19.019-20.110 18.753-20.235Q18.486-20.359 18.283-20.578Q18.079-20.797 17.970-21.079Q17.860-21.361 17.860-21.655Q17.860-22.079 18.069-22.429Q18.277-22.779 18.633-22.988Q18.988-23.196 19.405-23.196Q19.898-23.196 20.260-22.854L20.260-22.995Q20.304-23.179 20.479-23.196L20.602-23.196Q20.776-23.176 20.820-22.995L20.820-19.081L21.227-19.081Q21.398-19.061 21.442-18.869L21.442-18.794Q21.398-18.609 21.227-18.589L19.853-18.589Q19.682-18.609 19.638-18.794M19.371-20.599Q19.696-20.599 19.937-20.821Q20.178-21.043 20.260-21.361L20.260-21.901Q20.222-22.109 20.115-22.296Q20.007-22.482 19.834-22.595Q19.662-22.707 19.450-22.707Q19.173-22.707 18.935-22.562Q18.698-22.417 18.559-22.171Q18.421-21.925 18.421-21.648Q18.421-21.241 18.696-20.920Q18.971-20.599 19.371-20.599\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M25.176-19.918Q25.176-19.963 25.203-20.018L28.611-24.598Q28.170-24.393 27.695-24.393Q27.107-24.393 26.540-24.680Q26.673-24.369 26.673-23.986Q26.673-23.671 26.560-23.343Q26.447-23.015 26.218-22.795Q25.989-22.574 25.665-22.574Q25.323-22.574 25.061-22.784Q24.800-22.995 24.665-23.323Q24.530-23.651 24.530-23.986Q24.530-24.317 24.665-24.645Q24.800-24.974 25.061-25.184Q25.323-25.394 25.665-25.394Q25.948-25.394 26.198-25.186Q26.519-24.912 26.897-24.765Q27.274-24.618 27.688-24.618Q28.125-24.618 28.515-24.799Q28.905-24.980 29.158-25.326Q29.216-25.394 29.298-25.394Q29.366-25.394 29.416-25.344Q29.465-25.295 29.465-25.227Q29.465-25.182 29.438-25.127L25.490-19.830Q25.436-19.751 25.350-19.751Q25.278-19.751 25.227-19.802Q25.176-19.853 25.176-19.918M25.665-22.796Q25.907-22.796 26.076-22.991Q26.246-23.186 26.326-23.468Q26.406-23.750 26.406-23.986Q26.406-24.153 26.362-24.363Q26.317-24.574 26.232-24.748Q26.146-24.922 25.999-25.045Q25.853-25.168 25.665-25.168Q25.309-25.168 25.183-24.798Q25.056-24.427 25.056-23.986Q25.056-23.541 25.183-23.169Q25.309-22.796 25.665-22.796M29.103-19.751Q28.761-19.751 28.500-19.963Q28.238-20.175 28.103-20.503Q27.968-20.831 27.968-21.166Q27.968-21.498 28.103-21.824Q28.238-22.150 28.500-22.362Q28.761-22.574 29.103-22.574Q29.424-22.574 29.653-22.354Q29.882-22.133 29.997-21.805Q30.111-21.477 30.111-21.166Q30.111-20.852 29.997-20.522Q29.882-20.192 29.653-19.971Q29.424-19.751 29.103-19.751M29.103-19.977Q29.346-19.977 29.517-20.173Q29.687-20.370 29.766-20.648Q29.845-20.927 29.845-21.166Q29.845-21.333 29.800-21.544Q29.756-21.754 29.670-21.928Q29.585-22.102 29.438-22.226Q29.291-22.349 29.103-22.349Q28.748-22.349 28.621-21.978Q28.495-21.607 28.495-21.166Q28.495-20.722 28.621-20.349Q28.748-19.977 29.103-19.977\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M30.806-20.352L30.806-20.431Q30.857-20.612 31.025-20.633L31.647-20.633L31.647-22.670L31.025-22.670Q30.854-22.690 30.806-22.882L30.806-22.957Q30.857-23.142 31.025-23.162L31.988-23.162Q32.163-23.145 32.207-22.957L32.207-22.670Q32.436-22.919 32.747-23.058Q33.058-23.196 33.397-23.196Q33.653-23.196 33.858-23.078Q34.063-22.960 34.063-22.728Q34.063-22.581 33.967-22.478Q33.872-22.376 33.725-22.376Q33.591-22.376 33.491-22.473Q33.390-22.571 33.390-22.707Q33.062-22.707 32.787-22.531Q32.511-22.355 32.359-22.063Q32.207-21.771 32.207-21.439L32.207-20.633L33.034-20.633Q33.215-20.612 33.250-20.431L33.250-20.352Q33.215-20.165 33.034-20.144L31.025-20.144Q30.857-20.165 30.806-20.352M34.976-20.352L34.976-23.931L34.607-23.931Q34.425-23.952 34.388-24.140L34.388-24.218Q34.425-24.399 34.607-24.420L35.321-24.420Q35.492-24.399 35.536-24.218L35.536-22.895Q35.721-23.042 35.952-23.119Q36.182-23.196 36.418-23.196Q36.715-23.196 36.975-23.070Q37.235-22.943 37.423-22.723Q37.611-22.502 37.712-22.229Q37.813-21.956 37.813-21.655Q37.813-21.248 37.614-20.889Q37.416-20.530 37.078-20.320Q36.739-20.110 36.329-20.110Q35.875-20.110 35.536-20.431L35.536-20.352Q35.492-20.161 35.321-20.144L35.194-20.144Q35.027-20.165 34.976-20.352M36.292-20.599Q36.562-20.599 36.780-20.747Q36.999-20.896 37.126-21.142Q37.252-21.388 37.252-21.655Q37.252-21.908 37.143-22.152Q37.033-22.396 36.830-22.552Q36.627-22.707 36.363-22.707Q36.083-22.707 35.854-22.545Q35.625-22.383 35.536-22.120L35.536-21.374Q35.615-21.053 35.808-20.826Q36.001-20.599 36.292-20.599M38.267-20.352L38.267-20.431Q38.301-20.612 38.483-20.633L38.838-20.633L39.652-21.699L38.889-22.670L38.524-22.670Q38.353-22.687 38.308-22.882L38.308-22.957Q38.353-23.142 38.524-23.162L39.539-23.162Q39.713-23.142 39.757-22.957L39.757-22.882Q39.713-22.690 39.539-22.670L39.443-22.670L39.877-22.096L40.294-22.670L40.192-22.670Q40.017-22.690 39.973-22.882L39.973-22.957Q40.017-23.142 40.192-23.162L41.207-23.162Q41.378-23.145 41.422-22.957L41.422-22.882Q41.378-22.690 41.207-22.670L40.848-22.670L40.106-21.699L40.947-20.633L41.302-20.633Q41.477-20.612 41.521-20.431L41.521-20.352Q41.487-20.165 41.302-20.144L40.294-20.144Q40.113-20.165 40.079-20.352L40.079-20.431Q40.113-20.612 40.294-20.633L40.407-20.633L39.877-21.381L39.364-20.633L39.491-20.633Q39.672-20.612 39.706-20.431L39.706-20.352Q39.672-20.165 39.491-20.144L38.483-20.144Q38.312-20.161 38.267-20.352\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M42.481-20.564Q42.481-20.732 42.604-20.855Q42.727-20.978 42.902-20.978Q43.069-20.978 43.192-20.855Q43.315-20.732 43.315-20.564Q43.315-20.390 43.192-20.267Q43.069-20.144 42.902-20.144Q42.727-20.144 42.604-20.267Q42.481-20.390 42.481-20.564M42.481-22.748Q42.481-22.916 42.604-23.039Q42.727-23.162 42.902-23.162Q43.069-23.162 43.192-23.039Q43.315-22.916 43.315-22.748Q43.315-22.574 43.192-22.451Q43.069-22.328 42.902-22.328Q42.727-22.328 42.604-22.451Q42.481-22.574 42.481-22.748\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M48.722-19.918Q48.722-19.963 48.749-20.018L52.157-24.598Q51.716-24.393 51.241-24.393Q50.653-24.393 50.086-24.680Q50.219-24.369 50.219-23.986Q50.219-23.671 50.106-23.343Q49.993-23.015 49.764-22.795Q49.535-22.574 49.211-22.574Q48.869-22.574 48.607-22.784Q48.346-22.995 48.211-23.323Q48.076-23.651 48.076-23.986Q48.076-24.317 48.211-24.645Q48.346-24.974 48.607-25.184Q48.869-25.394 49.211-25.394Q49.494-25.394 49.744-25.186Q50.065-24.912 50.443-24.765Q50.820-24.618 51.234-24.618Q51.671-24.618 52.061-24.799Q52.451-24.980 52.704-25.326Q52.762-25.394 52.844-25.394Q52.912-25.394 52.962-25.344Q53.011-25.295 53.011-25.227Q53.011-25.182 52.984-25.127L49.036-19.830Q48.982-19.751 48.896-19.751Q48.824-19.751 48.773-19.802Q48.722-19.853 48.722-19.918M49.211-22.796Q49.453-22.796 49.622-22.991Q49.792-23.186 49.872-23.468Q49.952-23.750 49.952-23.986Q49.952-24.153 49.908-24.363Q49.863-24.574 49.778-24.748Q49.692-24.922 49.545-25.045Q49.399-25.168 49.211-25.168Q48.855-25.168 48.729-24.798Q48.602-24.427 48.602-23.986Q48.602-23.541 48.729-23.169Q48.855-22.796 49.211-22.796M52.649-19.751Q52.307-19.751 52.046-19.963Q51.784-20.175 51.649-20.503Q51.514-20.831 51.514-21.166Q51.514-21.498 51.649-21.824Q51.784-22.150 52.046-22.362Q52.307-22.574 52.649-22.574Q52.970-22.574 53.199-22.354Q53.428-22.133 53.543-21.805Q53.657-21.477 53.657-21.166Q53.657-20.852 53.543-20.522Q53.428-20.192 53.199-19.971Q52.970-19.751 52.649-19.751M52.649-19.977Q52.892-19.977 53.063-20.173Q53.233-20.370 53.312-20.648Q53.391-20.927 53.391-21.166Q53.391-21.333 53.346-21.544Q53.302-21.754 53.216-21.928Q53.131-22.102 52.984-22.226Q52.837-22.349 52.649-22.349Q52.294-22.349 52.167-21.978Q52.041-21.607 52.041-21.166Q52.041-20.722 52.167-20.349Q52.294-19.977 52.649-19.977\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M54.351-20.352L54.351-20.431Q54.402-20.612 54.570-20.633L55.192-20.633L55.192-22.670L54.570-22.670Q54.399-22.690 54.351-22.882L54.351-22.957Q54.402-23.142 54.570-23.162L55.533-23.162Q55.708-23.145 55.752-22.957L55.752-22.670Q55.981-22.919 56.292-23.058Q56.603-23.196 56.942-23.196Q57.198-23.196 57.403-23.078Q57.608-22.960 57.608-22.728Q57.608-22.581 57.512-22.478Q57.417-22.376 57.270-22.376Q57.136-22.376 57.036-22.473Q56.935-22.571 56.935-22.707Q56.607-22.707 56.332-22.531Q56.056-22.355 55.904-22.063Q55.752-21.771 55.752-21.439L55.752-20.633L56.579-20.633Q56.760-20.612 56.795-20.431L56.795-20.352Q56.760-20.165 56.579-20.144L54.570-20.144Q54.402-20.165 54.351-20.352M58.384-20.318L58.384-21.118Q58.408-21.299 58.593-21.320L58.739-21.320Q58.883-21.299 58.934-21.159Q59.112-20.599 59.748-20.599Q59.929-20.599 60.129-20.629Q60.329-20.660 60.476-20.761Q60.623-20.862 60.623-21.040Q60.623-21.224 60.428-21.323Q60.233-21.422 59.994-21.460L59.382-21.559Q58.384-21.744 58.384-22.376Q58.384-22.629 58.510-22.795Q58.637-22.960 58.847-23.054Q59.057-23.148 59.281-23.183Q59.505-23.217 59.748-23.217Q59.967-23.217 60.136-23.191Q60.305-23.165 60.448-23.097Q60.517-23.200 60.630-23.217L60.698-23.217Q60.783-23.206 60.838-23.152Q60.893-23.097 60.903-23.015L60.903-22.396Q60.893-22.314 60.838-22.256Q60.783-22.198 60.698-22.188L60.551-22.188Q60.469-22.198 60.411-22.256Q60.353-22.314 60.343-22.396Q60.343-22.728 59.734-22.728Q59.430-22.728 59.151-22.656Q58.873-22.584 58.873-22.369Q58.873-22.137 59.461-22.041L60.076-21.935Q60.500-21.863 60.806-21.646Q61.112-21.429 61.112-21.040Q61.112-20.698 60.905-20.486Q60.698-20.274 60.392-20.192Q60.086-20.110 59.748-20.110Q59.242-20.110 58.893-20.332Q58.832-20.223 58.789-20.173Q58.746-20.123 58.654-20.110L58.593-20.110Q58.405-20.130 58.384-20.318M61.648-18.794L61.648-18.869Q61.686-19.061 61.867-19.081L62.236-19.081L62.236-22.670L61.867-22.670Q61.686-22.690 61.648-22.882L61.648-22.957Q61.689-23.142 61.867-23.162L62.581-23.162Q62.752-23.145 62.797-22.957L62.797-22.895Q62.981-23.042 63.212-23.119Q63.443-23.196 63.678-23.196Q63.976-23.196 64.236-23.070Q64.495-22.943 64.683-22.723Q64.871-22.502 64.972-22.229Q65.073-21.956 65.073-21.655Q65.073-21.248 64.875-20.889Q64.677-20.530 64.338-20.320Q64-20.110 63.590-20.110Q63.135-20.110 62.797-20.431L62.797-19.081L63.169-19.081Q63.350-19.061 63.385-18.869L63.385-18.794Q63.350-18.609 63.169-18.589L61.867-18.589Q61.689-18.609 61.648-18.794M63.552-20.599Q63.822-20.599 64.041-20.747Q64.260-20.896 64.386-21.142Q64.512-21.388 64.512-21.655Q64.512-21.908 64.403-22.152Q64.294-22.396 64.090-22.552Q63.887-22.707 63.624-22.707Q63.343-22.707 63.114-22.545Q62.885-22.383 62.797-22.120L62.797-21.374Q62.875-21.053 63.068-20.826Q63.261-20.599 63.552-20.599\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M73.071-20.951L68.238-20.951Q68.170-20.961 68.124-21.007Q68.078-21.053 68.078-21.125Q68.078-21.190 68.124-21.236Q68.170-21.282 68.238-21.292L73.071-21.292Q73.140-21.282 73.186-21.236Q73.232-21.190 73.232-21.125Q73.232-21.053 73.186-21.007Q73.140-20.961 73.071-20.951M73.071-22.489L68.238-22.489Q68.170-22.499 68.124-22.545Q68.078-22.591 68.078-22.663Q68.078-22.807 68.238-22.831L73.071-22.831Q73.232-22.807 73.232-22.663Q73.232-22.591 73.186-22.545Q73.140-22.499 73.071-22.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M77.860-20.076Q77.481-20.076 77.190-20.284Q76.900-20.493 76.706-20.833Q76.513-21.173 76.419-21.556Q76.325-21.938 76.325-22.287Q76.325-22.629 76.421-23.017Q76.517-23.405 76.706-23.738Q76.896-24.071 77.188-24.281Q77.481-24.492 77.860-24.492Q78.345-24.492 78.696-24.143Q79.046-23.794 79.219-23.282Q79.391-22.769 79.391-22.287Q79.391-21.802 79.219-21.287Q79.046-20.773 78.696-20.424Q78.345-20.076 77.860-20.076M77.860-20.564Q78.123-20.564 78.313-20.754Q78.503-20.944 78.614-21.231Q78.725-21.518 78.778-21.821Q78.831-22.123 78.831-22.369Q78.831-22.588 78.776-22.873Q78.721-23.159 78.607-23.413Q78.492-23.668 78.306-23.834Q78.120-23.999 77.860-23.999Q77.532-23.999 77.311-23.726Q77.091-23.453 76.988-23.073Q76.886-22.694 76.886-22.369Q76.886-22.020 76.985-21.600Q77.084-21.180 77.301-20.872Q77.518-20.564 77.860-20.564M79.945-20.352L79.945-20.431Q79.979-20.612 80.160-20.633L80.516-20.633L81.329-21.699L80.567-22.670L80.201-22.670Q80.030-22.687 79.986-22.882L79.986-22.957Q80.030-23.142 80.201-23.162L81.216-23.162Q81.391-23.142 81.435-22.957L81.435-22.882Q81.391-22.690 81.216-22.670L81.121-22.670L81.555-22.096L81.972-22.670L81.869-22.670Q81.695-22.690 81.650-22.882L81.650-22.957Q81.695-23.142 81.869-23.162L82.884-23.162Q83.055-23.145 83.100-22.957L83.100-22.882Q83.055-22.690 82.884-22.670L82.525-22.670L81.784-21.699L82.625-20.633L82.980-20.633Q83.154-20.612 83.199-20.431L83.199-20.352Q83.165-20.165 82.980-20.144L81.972-20.144Q81.791-20.165 81.756-20.352L81.756-20.431Q81.791-20.612 81.972-20.633L82.085-20.633L81.555-21.381L81.042-20.633L81.169-20.633Q81.350-20.612 81.384-20.431L81.384-20.352Q81.350-20.165 81.169-20.144L80.160-20.144Q79.989-20.161 79.945-20.352M86.507-21.446L84.371-21.446Q84.419-21.204 84.592-21.009Q84.764-20.814 85.007-20.706Q85.250-20.599 85.499-20.599Q85.913-20.599 86.108-20.852Q86.114-20.862 86.164-20.954Q86.213-21.046 86.256-21.084Q86.299-21.122 86.381-21.132L86.507-21.132Q86.675-21.115 86.726-20.927L86.726-20.879Q86.668-20.616 86.466-20.443Q86.265-20.270 85.991-20.190Q85.718-20.110 85.451-20.110Q85.027-20.110 84.643-20.310Q84.258-20.510 84.024-20.860Q83.790-21.210 83.790-21.641L83.790-21.692Q83.790-22.102 84.005-22.455Q84.221-22.807 84.578-23.012Q84.935-23.217 85.345-23.217Q85.786-23.217 86.096-23.022Q86.405-22.827 86.566-22.487Q86.726-22.147 86.726-21.706L86.726-21.655Q86.675-21.467 86.507-21.446M84.378-21.928L86.152-21.928Q86.111-22.287 85.902-22.508Q85.694-22.728 85.345-22.728Q85-22.728 84.732-22.499Q84.463-22.270 84.378-21.928M89.006-20.076Q88.627-20.076 88.336-20.284Q88.046-20.493 87.852-20.833Q87.659-21.173 87.565-21.556Q87.471-21.938 87.471-22.287Q87.471-22.629 87.567-23.017Q87.663-23.405 87.852-23.738Q88.042-24.071 88.334-24.281Q88.627-24.492 89.006-24.492Q89.491-24.492 89.842-24.143Q90.192-23.794 90.365-23.282Q90.537-22.769 90.537-22.287Q90.537-21.802 90.365-21.287Q90.192-20.773 89.842-20.424Q89.491-20.076 89.006-20.076M89.006-20.564Q89.269-20.564 89.459-20.754Q89.649-20.944 89.760-21.231Q89.871-21.518 89.924-21.821Q89.977-22.123 89.977-22.369Q89.977-22.588 89.922-22.873Q89.867-23.159 89.753-23.413Q89.638-23.668 89.452-23.834Q89.266-23.999 89.006-23.999Q88.678-23.999 88.457-23.726Q88.237-23.453 88.134-23.073Q88.032-22.694 88.032-22.369Q88.032-22.020 88.131-21.600Q88.230-21.180 88.447-20.872Q88.664-20.564 89.006-20.564M92.721-20.076Q92.342-20.076 92.051-20.284Q91.761-20.493 91.568-20.833Q91.375-21.173 91.281-21.556Q91.187-21.938 91.187-22.287Q91.187-22.629 91.282-23.017Q91.378-23.405 91.568-23.738Q91.757-24.071 92.050-24.281Q92.342-24.492 92.721-24.492Q93.207-24.492 93.557-24.143Q93.907-23.794 94.080-23.282Q94.253-22.769 94.253-22.287Q94.253-21.802 94.080-21.287Q93.907-20.773 93.557-20.424Q93.207-20.076 92.721-20.076M92.721-20.564Q92.984-20.564 93.174-20.754Q93.364-20.944 93.475-21.231Q93.586-21.518 93.639-21.821Q93.692-22.123 93.692-22.369Q93.692-22.588 93.637-22.873Q93.583-23.159 93.468-23.413Q93.354-23.668 93.167-23.834Q92.981-23.999 92.721-23.999Q92.393-23.999 92.173-23.726Q91.952-23.453 91.850-23.073Q91.747-22.694 91.747-22.369Q91.747-22.020 91.846-21.600Q91.945-21.180 92.162-20.872Q92.379-20.564 92.721-20.564M94.888-21.381Q94.888-21.631 95.025-21.853Q95.162-22.075 95.380-22.227Q95.599-22.379 95.849-22.455Q95.640-22.519 95.442-22.644Q95.244-22.769 95.119-22.952Q94.994-23.135 94.994-23.350Q94.994-23.699 95.210-23.957Q95.425-24.215 95.760-24.353Q96.095-24.492 96.437-24.492Q96.778-24.492 97.113-24.353Q97.448-24.215 97.664-23.953Q97.879-23.692 97.879-23.350Q97.879-23.135 97.754-22.954Q97.629-22.772 97.431-22.646Q97.233-22.519 97.025-22.455Q97.421-22.335 97.701-22.050Q97.982-21.764 97.982-21.381Q97.982-20.998 97.756-20.698Q97.530-20.397 97.171-20.236Q96.813-20.076 96.437-20.076Q96.061-20.076 95.702-20.235Q95.343-20.394 95.116-20.694Q94.888-20.995 94.888-21.381M95.449-21.381Q95.449-21.142 95.594-20.954Q95.739-20.766 95.968-20.665Q96.197-20.564 96.437-20.564Q96.676-20.564 96.903-20.665Q97.130-20.766 97.276-20.956Q97.421-21.145 97.421-21.381Q97.421-21.624 97.276-21.814Q97.130-22.003 96.903-22.106Q96.676-22.208 96.437-22.208Q96.197-22.208 95.968-22.106Q95.739-22.003 95.594-21.815Q95.449-21.627 95.449-21.381M95.555-23.350Q95.555-23.142 95.692-22.995Q95.828-22.848 96.035-22.774Q96.242-22.701 96.437-22.701Q96.628-22.701 96.837-22.774Q97.045-22.848 97.182-22.996Q97.318-23.145 97.318-23.350Q97.318-23.555 97.182-23.704Q97.045-23.852 96.837-23.926Q96.628-23.999 96.437-23.999Q96.242-23.999 96.035-23.926Q95.828-23.852 95.692-23.706Q95.555-23.559 95.555-23.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M99.130-18.914Q99.130-18.948 99.158-18.975Q99.428-19.204 99.577-19.527Q99.725-19.850 99.725-20.206L99.725-20.243Q99.616-20.144 99.452-20.144Q99.271-20.144 99.151-20.264Q99.031-20.383 99.031-20.564Q99.031-20.739 99.151-20.858Q99.271-20.978 99.452-20.978Q99.708-20.978 99.828-20.739Q99.947-20.499 99.947-20.206Q99.947-19.806 99.778-19.435Q99.609-19.064 99.312-18.808Q99.281-18.787 99.254-18.787Q99.213-18.787 99.171-18.828Q99.130-18.869 99.130-18.914\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M105.271-20.144L103.637-20.144L103.637-20.424Q103.866-20.424 104.015-20.458Q104.164-20.493 104.164-20.633L104.164-22.482Q104.164-22.752 104.056-22.813Q103.948-22.875 103.637-22.875L103.637-23.155L104.697-23.230L104.697-22.581Q104.868-22.889 105.172-23.060Q105.476-23.230 105.821-23.230Q106.221-23.230 106.498-23.090Q106.775-22.950 106.860-22.602Q107.028-22.895 107.327-23.063Q107.626-23.230 107.971-23.230Q108.477-23.230 108.761-23.007Q109.045-22.783 109.045-22.287L109.045-20.633Q109.045-20.496 109.193-20.460Q109.342-20.424 109.567-20.424L109.567-20.144L107.937-20.144L107.937-20.424Q108.163-20.424 108.313-20.460Q108.463-20.496 108.463-20.633L108.463-22.273Q108.463-22.608 108.344-22.808Q108.224-23.008 107.910-23.008Q107.640-23.008 107.406-22.872Q107.171-22.735 107.033-22.501Q106.895-22.267 106.895-21.993L106.895-20.633Q106.895-20.496 107.043-20.460Q107.192-20.424 107.418-20.424L107.418-20.144L105.787-20.144L105.787-20.424Q106.016-20.424 106.165-20.458Q106.314-20.493 106.314-20.633L106.314-22.273Q106.314-22.608 106.194-22.808Q106.074-23.008 105.760-23.008Q105.490-23.008 105.256-22.872Q105.022-22.735 104.883-22.501Q104.745-22.267 104.745-21.993L104.745-20.633Q104.745-20.496 104.895-20.460Q105.046-20.424 105.271-20.424L105.271-20.144M110.114-21.679Q110.114-22 110.239-22.289Q110.364-22.578 110.589-22.801Q110.815-23.025 111.111-23.145Q111.406-23.265 111.724-23.265Q112.052-23.265 112.314-23.165Q112.575-23.066 112.751-22.884Q112.927-22.701 113.021-22.443Q113.115-22.185 113.115-21.853Q113.115-21.761 113.033-21.740L110.777-21.740L110.777-21.679Q110.777-21.091 111.061-20.708Q111.345-20.325 111.912-20.325Q112.233-20.325 112.502-20.518Q112.770-20.711 112.859-21.026Q112.866-21.067 112.941-21.081L113.033-21.081Q113.115-21.057 113.115-20.985Q113.115-20.978 113.108-20.951Q112.996-20.554 112.625-20.315Q112.254-20.076 111.830-20.076Q111.393-20.076 110.993-20.284Q110.593-20.493 110.354-20.860Q110.114-21.227 110.114-21.679M110.784-21.949L112.599-21.949Q112.599-22.226 112.502-22.478Q112.404-22.731 112.206-22.887Q112.008-23.042 111.724-23.042Q111.447-23.042 111.234-22.884Q111.020-22.725 110.902-22.470Q110.784-22.215 110.784-21.949M115.385-20.144L113.751-20.144L113.751-20.424Q113.980-20.424 114.129-20.458Q114.277-20.493 114.277-20.633L114.277-22.482Q114.277-22.752 114.170-22.813Q114.062-22.875 113.751-22.875L113.751-23.155L114.811-23.230L114.811-22.581Q114.982-22.889 115.286-23.060Q115.590-23.230 115.935-23.230Q116.335-23.230 116.612-23.090Q116.889-22.950 116.974-22.602Q117.142-22.895 117.441-23.063Q117.740-23.230 118.085-23.230Q118.591-23.230 118.875-23.007Q119.158-22.783 119.158-22.287L119.158-20.633Q119.158-20.496 119.307-20.460Q119.456-20.424 119.681-20.424L119.681-20.144L118.051-20.144L118.051-20.424Q118.276-20.424 118.427-20.460Q118.577-20.496 118.577-20.633L118.577-22.273Q118.577-22.608 118.458-22.808Q118.338-23.008 118.024-23.008Q117.754-23.008 117.519-22.872Q117.285-22.735 117.147-22.501Q117.008-22.267 117.008-21.993L117.008-20.633Q117.008-20.496 117.157-20.460Q117.306-20.424 117.531-20.424L117.531-20.144L115.901-20.144L115.901-20.424Q116.130-20.424 116.279-20.458Q116.427-20.493 116.427-20.633L116.427-22.273Q116.427-22.608 116.308-22.808Q116.188-23.008 115.874-23.008Q115.604-23.008 115.369-22.872Q115.135-22.735 114.997-22.501Q114.858-22.267 114.858-21.993L114.858-20.633Q114.858-20.496 115.009-20.460Q115.159-20.424 115.385-20.424\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M128.146-20.951L123.313-20.951Q123.245-20.961 123.199-21.007Q123.153-21.053 123.153-21.125Q123.153-21.190 123.199-21.236Q123.245-21.282 123.313-21.292L128.146-21.292Q128.215-21.282 128.261-21.236Q128.307-21.190 128.307-21.125Q128.307-21.053 128.261-21.007Q128.215-20.961 128.146-20.951M128.146-22.489L123.313-22.489Q123.245-22.499 123.199-22.545Q123.153-22.591 123.153-22.663Q123.153-22.807 123.313-22.831L128.146-22.831Q128.307-22.807 128.307-22.663Q128.307-22.591 128.261-22.545Q128.215-22.499 128.146-22.489\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-66.156 1.847)\">\u003Cpath d=\"M133.396-21.292L131.352-21.292L131.352-21.573L133.683-24.745Q133.718-24.792 133.783-24.792L133.919-24.792Q133.964-24.792 133.991-24.765Q134.018-24.738 134.018-24.693L134.018-21.573L134.781-21.573L134.781-21.292L134.018-21.292L134.018-20.633Q134.018-20.424 134.774-20.424L134.774-20.144L132.641-20.144L132.641-20.424Q133.396-20.424 133.396-20.633L133.396-21.292M133.444-24.017L131.653-21.573L133.444-21.573\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-63.85 10.443H69.355V-8.051H-63.85Z\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"7\">\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M2.815-18.794L2.815-18.869Q2.852-19.061 3.033-19.081L3.402-19.081L3.402-22.670L3.033-22.670Q2.852-22.690 2.815-22.882L2.815-22.957Q2.856-23.142 3.033-23.162L3.748-23.162Q3.919-23.145 3.963-22.957L3.963-22.895Q4.148-23.042 4.378-23.119Q4.609-23.196 4.845-23.196Q5.142-23.196 5.402-23.070Q5.662-22.943 5.850-22.723Q6.038-22.502 6.138-22.229Q6.239-21.956 6.239-21.655Q6.239-21.248 6.041-20.889Q5.843-20.530 5.504-20.320Q5.166-20.110 4.756-20.110Q4.301-20.110 3.963-20.431L3.963-19.081L4.336-19.081Q4.517-19.061 4.551-18.869L4.551-18.794Q4.517-18.609 4.336-18.589L3.033-18.589Q2.856-18.609 2.815-18.794M4.718-20.599Q4.988-20.599 5.207-20.747Q5.426-20.896 5.552-21.142Q5.679-21.388 5.679-21.655Q5.679-21.908 5.569-22.152Q5.460-22.396 5.257-22.552Q5.053-22.707 4.790-22.707Q4.510-22.707 4.281-22.545Q4.052-22.383 3.963-22.120L3.963-21.374Q4.042-21.053 4.235-20.826Q4.428-20.599 4.718-20.599M8.324-20.110Q7.911-20.110 7.574-20.323Q7.237-20.537 7.043-20.896Q6.848-21.255 6.848-21.655Q6.848-21.956 6.957-22.238Q7.066-22.519 7.268-22.742Q7.470-22.964 7.738-23.090Q8.006-23.217 8.324-23.217Q8.642-23.217 8.916-23.089Q9.189-22.960 9.384-22.745Q9.579-22.530 9.690-22.249Q9.801-21.969 9.801-21.655Q9.801-21.255 9.604-20.894Q9.408-20.534 9.071-20.322Q8.734-20.110 8.324-20.110M8.324-20.599Q8.731-20.599 8.986-20.944Q9.240-21.289 9.240-21.713Q9.240-21.969 9.122-22.203Q9.004-22.437 8.794-22.583Q8.584-22.728 8.324-22.728Q8.058-22.728 7.849-22.583Q7.641-22.437 7.523-22.203Q7.405-21.969 7.405-21.713Q7.405-21.292 7.661-20.946Q7.918-20.599 8.324-20.599M10.245-18.794L10.245-18.869Q10.283-19.061 10.464-19.081L10.833-19.081L10.833-22.670L10.464-22.670Q10.283-22.690 10.245-22.882L10.245-22.957Q10.286-23.142 10.464-23.162L11.178-23.162Q11.349-23.145 11.394-22.957L11.394-22.895Q11.578-23.042 11.809-23.119Q12.040-23.196 12.275-23.196Q12.573-23.196 12.833-23.070Q13.092-22.943 13.280-22.723Q13.468-22.502 13.569-22.229Q13.670-21.956 13.670-21.655Q13.670-21.248 13.472-20.889Q13.274-20.530 12.935-20.320Q12.597-20.110 12.187-20.110Q11.732-20.110 11.394-20.431L11.394-19.081L11.766-19.081Q11.947-19.061 11.982-18.869L11.982-18.794Q11.947-18.609 11.766-18.589L10.464-18.589Q10.286-18.609 10.245-18.794M12.149-20.599Q12.419-20.599 12.638-20.747Q12.857-20.896 12.983-21.142Q13.109-21.388 13.109-21.655Q13.109-21.908 13-22.152Q12.891-22.396 12.687-22.552Q12.484-22.707 12.221-22.707Q11.941-22.707 11.711-22.545Q11.482-22.383 11.394-22.120L11.394-21.374Q11.472-21.053 11.665-20.826Q11.858-20.599 12.149-20.599M15.922-18.794L15.922-18.869Q15.967-19.061 16.138-19.081L16.545-19.081L16.545-20.479Q16.148-20.110 15.615-20.110Q15.304-20.110 15.037-20.235Q14.771-20.359 14.567-20.578Q14.364-20.797 14.254-21.079Q14.145-21.361 14.145-21.655Q14.145-22.079 14.354-22.429Q14.562-22.779 14.918-22.988Q15.273-23.196 15.690-23.196Q16.182-23.196 16.545-22.854L16.545-22.995Q16.589-23.179 16.763-23.196L16.886-23.196Q17.061-23.176 17.105-22.995L17.105-19.081L17.512-19.081Q17.683-19.061 17.727-18.869L17.727-18.794Q17.683-18.609 17.512-18.589L16.138-18.589Q15.967-18.609 15.922-18.794M15.656-20.599Q15.981-20.599 16.222-20.821Q16.462-21.043 16.545-21.361L16.545-21.901Q16.507-22.109 16.399-22.296Q16.292-22.482 16.119-22.595Q15.946-22.707 15.734-22.707Q15.458-22.707 15.220-22.562Q14.982-22.417 14.844-22.171Q14.706-21.925 14.706-21.648Q14.706-21.241 14.981-20.920Q15.256-20.599 15.656-20.599\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M21.458-19.918Q21.458-19.963 21.485-20.018L24.893-24.598Q24.452-24.393 23.977-24.393Q23.389-24.393 22.822-24.680Q22.955-24.369 22.955-23.986Q22.955-23.671 22.842-23.343Q22.729-23.015 22.500-22.795Q22.271-22.574 21.947-22.574Q21.605-22.574 21.343-22.784Q21.082-22.995 20.947-23.323Q20.812-23.651 20.812-23.986Q20.812-24.317 20.947-24.645Q21.082-24.974 21.343-25.184Q21.605-25.394 21.947-25.394Q22.230-25.394 22.480-25.186Q22.801-24.912 23.179-24.765Q23.556-24.618 23.970-24.618Q24.407-24.618 24.797-24.799Q25.187-24.980 25.440-25.326Q25.498-25.394 25.580-25.394Q25.648-25.394 25.698-25.344Q25.747-25.295 25.747-25.227Q25.747-25.182 25.720-25.127L21.772-19.830Q21.718-19.751 21.632-19.751Q21.560-19.751 21.509-19.802Q21.458-19.853 21.458-19.918M21.947-22.796Q22.189-22.796 22.358-22.991Q22.528-23.186 22.608-23.468Q22.688-23.750 22.688-23.986Q22.688-24.153 22.644-24.363Q22.599-24.574 22.514-24.748Q22.428-24.922 22.281-25.045Q22.135-25.168 21.947-25.168Q21.591-25.168 21.465-24.798Q21.338-24.427 21.338-23.986Q21.338-23.541 21.465-23.169Q21.591-22.796 21.947-22.796M25.385-19.751Q25.043-19.751 24.782-19.963Q24.520-20.175 24.385-20.503Q24.250-20.831 24.250-21.166Q24.250-21.498 24.385-21.824Q24.520-22.150 24.782-22.362Q25.043-22.574 25.385-22.574Q25.706-22.574 25.935-22.354Q26.164-22.133 26.279-21.805Q26.393-21.477 26.393-21.166Q26.393-20.852 26.279-20.522Q26.164-20.192 25.935-19.971Q25.706-19.751 25.385-19.751M25.385-19.977Q25.628-19.977 25.799-20.173Q25.969-20.370 26.048-20.648Q26.127-20.927 26.127-21.166Q26.127-21.333 26.082-21.544Q26.038-21.754 25.952-21.928Q25.867-22.102 25.720-22.226Q25.573-22.349 25.385-22.349Q25.030-22.349 24.903-21.978Q24.777-21.607 24.777-21.166Q24.777-20.722 24.903-20.349Q25.030-19.977 25.385-19.977\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M27.087-20.352L27.087-20.431Q27.138-20.612 27.306-20.633L27.928-20.633L27.928-22.670L27.306-22.670Q27.135-22.690 27.087-22.882L27.087-22.957Q27.138-23.142 27.306-23.162L28.269-23.162Q28.444-23.145 28.488-22.957L28.488-22.670Q28.717-22.919 29.028-23.058Q29.339-23.196 29.678-23.196Q29.934-23.196 30.139-23.078Q30.344-22.960 30.344-22.728Q30.344-22.581 30.248-22.478Q30.153-22.376 30.006-22.376Q29.872-22.376 29.772-22.473Q29.671-22.571 29.671-22.707Q29.343-22.707 29.068-22.531Q28.792-22.355 28.640-22.063Q28.488-21.771 28.488-21.439L28.488-20.633L29.315-20.633Q29.496-20.612 29.531-20.431L29.531-20.352Q29.496-20.165 29.315-20.144L27.306-20.144Q27.138-20.165 27.087-20.352M31.096-21.655Q31.096-22.075 31.310-22.437Q31.523-22.800 31.887-23.008Q32.251-23.217 32.672-23.217Q33.157-23.217 33.489-23.121Q33.820-23.025 33.820-22.670Q33.820-22.523 33.721-22.415Q33.622-22.308 33.472-22.308Q33.321-22.308 33.217-22.408Q33.113-22.509 33.113-22.656L33.113-22.707Q32.973-22.728 32.679-22.728Q32.392-22.728 32.157-22.579Q31.923-22.431 31.790-22.183Q31.657-21.935 31.657-21.655Q31.657-21.374 31.807-21.128Q31.957-20.882 32.207-20.740Q32.456-20.599 32.744-20.599Q33.017-20.599 33.128-20.689Q33.239-20.780 33.342-20.946Q33.444-21.111 33.547-21.125L33.694-21.125Q33.786-21.115 33.842-21.055Q33.899-20.995 33.899-20.906Q33.899-20.865 33.882-20.831Q33.786-20.575 33.608-20.417Q33.431-20.260 33.190-20.185Q32.949-20.110 32.672-20.110Q32.248-20.110 31.884-20.318Q31.520-20.527 31.308-20.879Q31.096-21.231 31.096-21.655M34.548-20.352L34.548-20.431Q34.582-20.612 34.764-20.633L35.119-20.633L35.933-21.699L35.170-22.670L34.805-22.670Q34.634-22.687 34.589-22.882L34.589-22.957Q34.634-23.142 34.805-23.162L35.820-23.162Q35.994-23.142 36.038-22.957L36.038-22.882Q35.994-22.690 35.820-22.670L35.724-22.670L36.158-22.096L36.575-22.670L36.473-22.670Q36.298-22.690 36.254-22.882L36.254-22.957Q36.298-23.142 36.473-23.162L37.488-23.162Q37.659-23.145 37.703-22.957L37.703-22.882Q37.659-22.690 37.488-22.670L37.129-22.670L36.387-21.699L37.228-20.633L37.583-20.633Q37.758-20.612 37.802-20.431L37.802-20.352Q37.768-20.165 37.583-20.144L36.575-20.144Q36.394-20.165 36.360-20.352L36.360-20.431Q36.394-20.612 36.575-20.633L36.688-20.633L36.158-21.381L35.645-20.633L35.772-20.633Q35.953-20.612 35.987-20.431L35.987-20.352Q35.953-20.165 35.772-20.144L34.764-20.144Q34.593-20.161 34.548-20.352\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M38.762-20.564Q38.762-20.732 38.885-20.855Q39.008-20.978 39.183-20.978Q39.350-20.978 39.473-20.855Q39.596-20.732 39.596-20.564Q39.596-20.390 39.473-20.267Q39.350-20.144 39.183-20.144Q39.008-20.144 38.885-20.267Q38.762-20.390 38.762-20.564M38.762-22.748Q38.762-22.916 38.885-23.039Q39.008-23.162 39.183-23.162Q39.350-23.162 39.473-23.039Q39.596-22.916 39.596-22.748Q39.596-22.574 39.473-22.451Q39.350-22.328 39.183-22.328Q39.008-22.328 38.885-22.451Q38.762-22.574 38.762-22.748\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M45.003-19.918Q45.003-19.963 45.030-20.018L48.438-24.598Q47.997-24.393 47.522-24.393Q46.934-24.393 46.367-24.680Q46.500-24.369 46.500-23.986Q46.500-23.671 46.387-23.343Q46.274-23.015 46.045-22.795Q45.816-22.574 45.492-22.574Q45.150-22.574 44.888-22.784Q44.627-22.995 44.492-23.323Q44.357-23.651 44.357-23.986Q44.357-24.317 44.492-24.645Q44.627-24.974 44.888-25.184Q45.150-25.394 45.492-25.394Q45.775-25.394 46.025-25.186Q46.346-24.912 46.724-24.765Q47.101-24.618 47.515-24.618Q47.952-24.618 48.342-24.799Q48.732-24.980 48.985-25.326Q49.043-25.394 49.125-25.394Q49.193-25.394 49.243-25.344Q49.292-25.295 49.292-25.227Q49.292-25.182 49.265-25.127L45.317-19.830Q45.263-19.751 45.177-19.751Q45.105-19.751 45.054-19.802Q45.003-19.853 45.003-19.918M45.492-22.796Q45.734-22.796 45.903-22.991Q46.073-23.186 46.153-23.468Q46.233-23.750 46.233-23.986Q46.233-24.153 46.189-24.363Q46.144-24.574 46.059-24.748Q45.973-24.922 45.826-25.045Q45.680-25.168 45.492-25.168Q45.136-25.168 45.010-24.798Q44.883-24.427 44.883-23.986Q44.883-23.541 45.010-23.169Q45.136-22.796 45.492-22.796M48.930-19.751Q48.588-19.751 48.327-19.963Q48.065-20.175 47.930-20.503Q47.795-20.831 47.795-21.166Q47.795-21.498 47.930-21.824Q48.065-22.150 48.327-22.362Q48.588-22.574 48.930-22.574Q49.251-22.574 49.480-22.354Q49.709-22.133 49.824-21.805Q49.938-21.477 49.938-21.166Q49.938-20.852 49.824-20.522Q49.709-20.192 49.480-19.971Q49.251-19.751 48.930-19.751M48.930-19.977Q49.173-19.977 49.344-20.173Q49.514-20.370 49.593-20.648Q49.672-20.927 49.672-21.166Q49.672-21.333 49.627-21.544Q49.583-21.754 49.497-21.928Q49.412-22.102 49.265-22.226Q49.118-22.349 48.930-22.349Q48.575-22.349 48.448-21.978Q48.322-21.607 48.322-21.166Q48.322-20.722 48.448-20.349Q48.575-19.977 48.930-19.977\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M50.632-20.352L50.632-20.431Q50.683-20.612 50.851-20.633L51.473-20.633L51.473-22.670L50.851-22.670Q50.680-22.690 50.632-22.882L50.632-22.957Q50.683-23.142 50.851-23.162L51.814-23.162Q51.989-23.145 52.033-22.957L52.033-22.670Q52.262-22.919 52.573-23.058Q52.884-23.196 53.223-23.196Q53.479-23.196 53.684-23.078Q53.889-22.960 53.889-22.728Q53.889-22.581 53.793-22.478Q53.698-22.376 53.551-22.376Q53.417-22.376 53.317-22.473Q53.216-22.571 53.216-22.707Q52.888-22.707 52.613-22.531Q52.337-22.355 52.185-22.063Q52.033-21.771 52.033-21.439L52.033-20.633L52.860-20.633Q53.041-20.612 53.076-20.431L53.076-20.352Q53.041-20.165 52.860-20.144L50.851-20.144Q50.683-20.165 50.632-20.352M54.641-21.655Q54.641-22.075 54.855-22.437Q55.068-22.800 55.432-23.008Q55.796-23.217 56.217-23.217Q56.702-23.217 57.034-23.121Q57.365-23.025 57.365-22.670Q57.365-22.523 57.266-22.415Q57.167-22.308 57.017-22.308Q56.866-22.308 56.762-22.408Q56.658-22.509 56.658-22.656L56.658-22.707Q56.518-22.728 56.224-22.728Q55.937-22.728 55.702-22.579Q55.468-22.431 55.335-22.183Q55.202-21.935 55.202-21.655Q55.202-21.374 55.352-21.128Q55.502-20.882 55.752-20.740Q56.001-20.599 56.289-20.599Q56.562-20.599 56.673-20.689Q56.784-20.780 56.887-20.946Q56.989-21.111 57.092-21.125L57.239-21.125Q57.331-21.115 57.387-21.055Q57.444-20.995 57.444-20.906Q57.444-20.865 57.427-20.831Q57.331-20.575 57.153-20.417Q56.976-20.260 56.735-20.185Q56.494-20.110 56.217-20.110Q55.793-20.110 55.429-20.318Q55.065-20.527 54.853-20.879Q54.641-21.231 54.641-21.655M58.093-20.352L58.093-20.431Q58.127-20.612 58.309-20.633L58.664-20.633L59.478-21.699L58.715-22.670L58.350-22.670Q58.179-22.687 58.134-22.882L58.134-22.957Q58.179-23.142 58.350-23.162L59.365-23.162Q59.539-23.142 59.583-22.957L59.583-22.882Q59.539-22.690 59.365-22.670L59.269-22.670L59.703-22.096L60.120-22.670L60.018-22.670Q59.843-22.690 59.799-22.882L59.799-22.957Q59.843-23.142 60.018-23.162L61.033-23.162Q61.204-23.145 61.248-22.957L61.248-22.882Q61.204-22.690 61.033-22.670L60.674-22.670L59.932-21.699L60.773-20.633L61.128-20.633Q61.303-20.612 61.347-20.431L61.347-20.352Q61.313-20.165 61.128-20.144L60.120-20.144Q59.939-20.165 59.905-20.352L59.905-20.431Q59.939-20.612 60.120-20.633L60.233-20.633L59.703-21.381L59.190-20.633L59.317-20.633Q59.498-20.612 59.532-20.431L59.532-20.352Q59.498-20.165 59.317-20.144L58.309-20.144Q58.138-20.161 58.093-20.352\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M69.352-20.951L64.519-20.951Q64.451-20.961 64.405-21.007Q64.359-21.053 64.359-21.125Q64.359-21.190 64.405-21.236Q64.451-21.282 64.519-21.292L69.352-21.292Q69.421-21.282 69.467-21.236Q69.513-21.190 69.513-21.125Q69.513-21.053 69.467-21.007Q69.421-20.961 69.352-20.951M69.352-22.489L64.519-22.489Q64.451-22.499 64.405-22.545Q64.359-22.591 64.359-22.663Q64.359-22.807 64.519-22.831L69.352-22.831Q69.513-22.807 69.513-22.663Q69.513-22.591 69.467-22.545Q69.421-22.499 69.352-22.489\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M74.602-21.292L72.558-21.292L72.558-21.573L74.889-24.745Q74.924-24.792 74.989-24.792L75.125-24.792Q75.170-24.792 75.197-24.765Q75.224-24.738 75.224-24.693L75.224-21.573L75.987-21.573L75.987-21.292L75.224-21.292L75.224-20.633Q75.224-20.424 75.980-20.424L75.980-20.144L73.847-20.144L73.847-20.424Q74.602-20.424 74.602-20.633L74.602-21.292M74.650-24.017L72.859-21.573L74.650-21.573L74.650-24.017M77.080-18.914Q77.080-18.948 77.108-18.975Q77.378-19.204 77.526-19.527Q77.675-19.850 77.675-20.206L77.675-20.243Q77.566-20.144 77.402-20.144Q77.221-20.144 77.101-20.264Q76.981-20.383 76.981-20.564Q76.981-20.739 77.101-20.858Q77.221-20.978 77.402-20.978Q77.658-20.978 77.778-20.739Q77.897-20.499 77.897-20.206Q77.897-19.806 77.728-19.435Q77.559-19.064 77.262-18.808Q77.231-18.787 77.203-18.787Q77.162-18.787 77.121-18.828Q77.080-18.869 77.080-18.914\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M82.365-19.918Q82.365-19.963 82.392-20.018L85.800-24.598Q85.359-24.393 84.884-24.393Q84.296-24.393 83.729-24.680Q83.862-24.369 83.862-23.986Q83.862-23.671 83.749-23.343Q83.636-23.015 83.407-22.795Q83.178-22.574 82.854-22.574Q82.512-22.574 82.250-22.784Q81.989-22.995 81.854-23.323Q81.719-23.651 81.719-23.986Q81.719-24.317 81.854-24.645Q81.989-24.974 82.250-25.184Q82.512-25.394 82.854-25.394Q83.137-25.394 83.387-25.186Q83.708-24.912 84.086-24.765Q84.463-24.618 84.877-24.618Q85.314-24.618 85.704-24.799Q86.094-24.980 86.347-25.326Q86.405-25.394 86.487-25.394Q86.555-25.394 86.605-25.344Q86.654-25.295 86.654-25.227Q86.654-25.182 86.627-25.127L82.679-19.830Q82.625-19.751 82.539-19.751Q82.467-19.751 82.416-19.802Q82.365-19.853 82.365-19.918M82.854-22.796Q83.096-22.796 83.265-22.991Q83.435-23.186 83.515-23.468Q83.595-23.750 83.595-23.986Q83.595-24.153 83.551-24.363Q83.506-24.574 83.421-24.748Q83.335-24.922 83.188-25.045Q83.042-25.168 82.854-25.168Q82.498-25.168 82.372-24.798Q82.245-24.427 82.245-23.986Q82.245-23.541 82.372-23.169Q82.498-22.796 82.854-22.796M86.292-19.751Q85.950-19.751 85.689-19.963Q85.427-20.175 85.292-20.503Q85.157-20.831 85.157-21.166Q85.157-21.498 85.292-21.824Q85.427-22.150 85.689-22.362Q85.950-22.574 86.292-22.574Q86.613-22.574 86.842-22.354Q87.071-22.133 87.186-21.805Q87.300-21.477 87.300-21.166Q87.300-20.852 87.186-20.522Q87.071-20.192 86.842-19.971Q86.613-19.751 86.292-19.751M86.292-19.977Q86.535-19.977 86.706-20.173Q86.876-20.370 86.955-20.648Q87.034-20.927 87.034-21.166Q87.034-21.333 86.989-21.544Q86.945-21.754 86.859-21.928Q86.774-22.102 86.627-22.226Q86.480-22.349 86.292-22.349Q85.937-22.349 85.810-21.978Q85.684-21.607 85.684-21.166Q85.684-20.722 85.810-20.349Q85.937-19.977 86.292-19.977\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M87.994-20.352L87.994-20.431Q88.045-20.612 88.213-20.633L88.835-20.633L88.835-22.670L88.213-22.670Q88.042-22.690 87.994-22.882L87.994-22.957Q88.045-23.142 88.213-23.162L89.176-23.162Q89.351-23.145 89.395-22.957L89.395-22.670Q89.624-22.919 89.935-23.058Q90.246-23.196 90.585-23.196Q90.841-23.196 91.046-23.078Q91.251-22.960 91.251-22.728Q91.251-22.581 91.155-22.478Q91.060-22.376 90.913-22.376Q90.779-22.376 90.679-22.473Q90.578-22.571 90.578-22.707Q90.250-22.707 89.975-22.531Q89.699-22.355 89.547-22.063Q89.395-21.771 89.395-21.439L89.395-20.633L90.222-20.633Q90.403-20.612 90.438-20.431L90.438-20.352Q90.403-20.165 90.222-20.144L88.213-20.144Q88.045-20.165 87.994-20.352M92.027-20.318L92.027-21.118Q92.051-21.299 92.236-21.320L92.382-21.320Q92.526-21.299 92.577-21.159Q92.755-20.599 93.391-20.599Q93.572-20.599 93.772-20.629Q93.972-20.660 94.119-20.761Q94.266-20.862 94.266-21.040Q94.266-21.224 94.071-21.323Q93.876-21.422 93.637-21.460L93.025-21.559Q92.027-21.744 92.027-22.376Q92.027-22.629 92.153-22.795Q92.280-22.960 92.490-23.054Q92.700-23.148 92.924-23.183Q93.148-23.217 93.391-23.217Q93.610-23.217 93.779-23.191Q93.948-23.165 94.091-23.097Q94.160-23.200 94.273-23.217L94.341-23.217Q94.426-23.206 94.481-23.152Q94.536-23.097 94.546-23.015L94.546-22.396Q94.536-22.314 94.481-22.256Q94.426-22.198 94.341-22.188L94.194-22.188Q94.112-22.198 94.054-22.256Q93.996-22.314 93.986-22.396Q93.986-22.728 93.377-22.728Q93.073-22.728 92.794-22.656Q92.516-22.584 92.516-22.369Q92.516-22.137 93.104-22.041L93.719-21.935Q94.143-21.863 94.449-21.646Q94.755-21.429 94.755-21.040Q94.755-20.698 94.548-20.486Q94.341-20.274 94.035-20.192Q93.729-20.110 93.391-20.110Q92.885-20.110 92.536-20.332Q92.475-20.223 92.432-20.173Q92.389-20.123 92.297-20.110L92.236-20.110Q92.048-20.130 92.027-20.318M95.291-18.794L95.291-18.869Q95.329-19.061 95.510-19.081L95.879-19.081L95.879-22.670L95.510-22.670Q95.329-22.690 95.291-22.882L95.291-22.957Q95.332-23.142 95.510-23.162L96.224-23.162Q96.395-23.145 96.440-22.957L96.440-22.895Q96.624-23.042 96.855-23.119Q97.086-23.196 97.321-23.196Q97.619-23.196 97.879-23.070Q98.138-22.943 98.326-22.723Q98.514-22.502 98.615-22.229Q98.716-21.956 98.716-21.655Q98.716-21.248 98.518-20.889Q98.320-20.530 97.981-20.320Q97.643-20.110 97.233-20.110Q96.778-20.110 96.440-20.431L96.440-19.081L96.812-19.081Q96.993-19.061 97.028-18.869L97.028-18.794Q96.993-18.609 96.812-18.589L95.510-18.589Q95.332-18.609 95.291-18.794M97.195-20.599Q97.465-20.599 97.684-20.747Q97.903-20.896 98.029-21.142Q98.155-21.388 98.155-21.655Q98.155-21.908 98.046-22.152Q97.937-22.396 97.733-22.552Q97.530-22.707 97.267-22.707Q96.987-22.707 96.757-22.545Q96.528-22.383 96.440-22.120L96.440-21.374Q96.518-21.053 96.711-20.826Q96.904-20.599 97.195-20.599\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M106.714-20.951L101.881-20.951Q101.813-20.961 101.767-21.007Q101.721-21.053 101.721-21.125Q101.721-21.190 101.767-21.236Q101.813-21.282 101.881-21.292L106.714-21.292Q106.783-21.282 106.829-21.236Q106.875-21.190 106.875-21.125Q106.875-21.053 106.829-21.007Q106.783-20.961 106.714-20.951M106.714-22.489L101.881-22.489Q101.813-22.499 101.767-22.545Q101.721-22.591 101.721-22.663Q101.721-22.807 101.881-22.831L106.714-22.831Q106.875-22.807 106.875-22.663Q106.875-22.591 106.829-22.545Q106.783-22.499 106.714-22.489\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-64.603 23.187)\">\u003Cpath d=\"M111.503-20.076Q111.124-20.076 110.833-20.284Q110.543-20.493 110.349-20.833Q110.156-21.173 110.062-21.556Q109.968-21.938 109.968-22.287Q109.968-22.629 110.064-23.017Q110.160-23.405 110.349-23.738Q110.539-24.071 110.831-24.281Q111.124-24.492 111.503-24.492Q111.988-24.492 112.339-24.143Q112.689-23.794 112.862-23.282Q113.034-22.769 113.034-22.287Q113.034-21.802 112.862-21.287Q112.689-20.773 112.339-20.424Q111.988-20.076 111.503-20.076M111.503-20.564Q111.766-20.564 111.956-20.754Q112.146-20.944 112.257-21.231Q112.368-21.518 112.421-21.821Q112.474-22.123 112.474-22.369Q112.474-22.588 112.419-22.873Q112.364-23.159 112.250-23.413Q112.135-23.668 111.949-23.834Q111.763-23.999 111.503-23.999Q111.175-23.999 110.954-23.726Q110.734-23.453 110.631-23.073Q110.529-22.694 110.529-22.369Q110.529-22.020 110.628-21.600Q110.727-21.180 110.944-20.872Q111.161-20.564 111.503-20.564M113.588-20.352L113.588-20.431Q113.622-20.612 113.803-20.633L114.159-20.633L114.972-21.699L114.210-22.670L113.844-22.670Q113.673-22.687 113.629-22.882L113.629-22.957Q113.673-23.142 113.844-23.162L114.859-23.162Q115.034-23.142 115.078-22.957L115.078-22.882Q115.034-22.690 114.859-22.670L114.764-22.670L115.198-22.096L115.615-22.670L115.512-22.670Q115.338-22.690 115.293-22.882L115.293-22.957Q115.338-23.142 115.512-23.162L116.527-23.162Q116.698-23.145 116.743-22.957L116.743-22.882Q116.698-22.690 116.527-22.670L116.168-22.670L115.427-21.699L116.268-20.633L116.623-20.633Q116.797-20.612 116.842-20.431L116.842-20.352Q116.808-20.165 116.623-20.144L115.615-20.144Q115.434-20.165 115.399-20.352L115.399-20.431Q115.434-20.612 115.615-20.633L115.728-20.633L115.198-21.381L114.685-20.633L114.812-20.633Q114.993-20.612 115.027-20.431L115.027-20.352Q114.993-20.165 114.812-20.144L113.803-20.144Q113.632-20.161 113.588-20.352M120.150-21.446L118.014-21.446Q118.062-21.204 118.235-21.009Q118.407-20.814 118.650-20.706Q118.893-20.599 119.142-20.599Q119.556-20.599 119.751-20.852Q119.757-20.862 119.807-20.954Q119.856-21.046 119.899-21.084Q119.942-21.122 120.024-21.132L120.150-21.132Q120.318-21.115 120.369-20.927L120.369-20.879Q120.311-20.616 120.109-20.443Q119.908-20.270 119.634-20.190Q119.361-20.110 119.094-20.110Q118.670-20.110 118.286-20.310Q117.901-20.510 117.667-20.860Q117.433-21.210 117.433-21.641L117.433-21.692Q117.433-22.102 117.648-22.455Q117.864-22.807 118.221-23.012Q118.578-23.217 118.988-23.217Q119.429-23.217 119.739-23.022Q120.048-22.827 120.209-22.487Q120.369-22.147 120.369-21.706L120.369-21.655Q120.318-21.467 120.150-21.446M118.021-21.928L119.795-21.928Q119.754-22.287 119.545-22.508Q119.337-22.728 118.988-22.728Q118.643-22.728 118.375-22.499Q118.106-22.270 118.021-21.928M122.649-20.076Q122.270-20.076 121.979-20.284Q121.689-20.493 121.495-20.833Q121.302-21.173 121.208-21.556Q121.114-21.938 121.114-22.287Q121.114-22.629 121.210-23.017Q121.306-23.405 121.495-23.738Q121.685-24.071 121.977-24.281Q122.270-24.492 122.649-24.492Q123.134-24.492 123.485-24.143Q123.835-23.794 124.008-23.282Q124.180-22.769 124.180-22.287Q124.180-21.802 124.008-21.287Q123.835-20.773 123.485-20.424Q123.134-20.076 122.649-20.076M122.649-20.564Q122.912-20.564 123.102-20.754Q123.292-20.944 123.403-21.231Q123.514-21.518 123.567-21.821Q123.620-22.123 123.620-22.369Q123.620-22.588 123.565-22.873Q123.510-23.159 123.396-23.413Q123.281-23.668 123.095-23.834Q122.909-23.999 122.649-23.999Q122.321-23.999 122.100-23.726Q121.880-23.453 121.777-23.073Q121.675-22.694 121.675-22.369Q121.675-22.020 121.774-21.600Q121.873-21.180 122.090-20.872Q122.307-20.564 122.649-20.564M125.257-20.352L125.257-20.431Q125.301-20.612 125.476-20.633L126.190-20.633L126.190-23.418Q125.858-23.148 125.462-23.148Q125.260-23.148 125.216-23.350L125.216-23.429Q125.260-23.617 125.431-23.637Q125.718-23.637 125.940-23.846Q126.163-24.054 126.286-24.358Q126.347-24.471 126.484-24.492L126.532-24.492Q126.703-24.475 126.747-24.287L126.747-20.633L127.461-20.633Q127.636-20.612 127.680-20.431L127.680-20.352Q127.636-20.165 127.461-20.144L125.476-20.144Q125.301-20.165 125.257-20.352M130.080-20.076Q129.700-20.076 129.410-20.284Q129.119-20.493 128.926-20.833Q128.733-21.173 128.639-21.556Q128.545-21.938 128.545-22.287Q128.545-22.629 128.641-23.017Q128.736-23.405 128.926-23.738Q129.116-24.071 129.408-24.281Q129.700-24.492 130.080-24.492Q130.565-24.492 130.915-24.143Q131.266-23.794 131.438-23.282Q131.611-22.769 131.611-22.287Q131.611-21.802 131.438-21.287Q131.266-20.773 130.915-20.424Q130.565-20.076 130.080-20.076M130.080-20.564Q130.343-20.564 130.532-20.754Q130.722-20.944 130.833-21.231Q130.944-21.518 130.997-21.821Q131.050-22.123 131.050-22.369Q131.050-22.588 130.996-22.873Q130.941-23.159 130.826-23.413Q130.712-23.668 130.526-23.834Q130.339-23.999 130.080-23.999Q129.751-23.999 129.531-23.726Q129.311-23.453 129.208-23.073Q129.105-22.694 129.105-22.369Q129.105-22.020 129.205-21.600Q129.304-21.180 129.521-20.872Q129.738-20.564 130.080-20.564\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">pushq %rax then pushq %rbx then popq %rcx, tracing %rsp (low bytes shown). Each push lowers %rsp by 8 and writes; the pop reads the top and raises %rsp by 8, so it returns the last value pushed (4) and restores the pointer.\u003C\u002Ffigcaption>",1785117681797]