[{"data":1,"prerenderedAt":7837},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":304,"course-wordcounts":2382,"ref-card-index":3294,"tikz:11926f65395bf8ea314a3e7234b1bf932116c96e4ac43b1329f19d67046a989e":7828,"tikz:92c8f6c2b03d74587db2ea6857fe6cf2e90db2fd397f8624e6fc38af3a7b9bfb":7829,"tikz:4a13e7c8cb9e9ffcc89c356a9bfe9ce1d7b80d7ea1c0ac1c9e132e9f2b68b1f7":7830,"tikz:9b05eaf399cf1ef8962a3267185f2802e88e8a8343fdf85df7c4235c5b80b2e7":7831,"tikz:27a32d59e70751ec7d4ec6b263ed4577746b84cfcdd9acbb199044e051528595":7832,"tikz:2b10fc017a1801b2f57a656fec7e8168622769937f10bff947a3ed44cde8fb9d":7833,"tikz:5c7a65852926e1a76f53d691012e6d811e92c5349f7fb61073eaae54e0af0166":7834,"tikz:fffd69f3852997cd4b3fcbc2dbd6d2a3786c40d40a86d654cd5d0eff05054084":7835,"tikz:03af87e261a8a33852ce16a6b325e3260e39f3d3d94c6b90f9f8cc600d1f84c9":7836},[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":147,"blurb":306,"body":307,"brief":2355,"category":2356,"description":2357,"draft":2358,"extension":2359,"meta":2360,"module":138,"navigation":2362,"path":148,"practice":2363,"rawbody":2364,"readingTime":2365,"seo":2370,"sources":2371,"status":2378,"stem":2379,"summary":150,"topics":2380,"__hash__":2381},"course\u002F03.computer-architecture\u002F04.processor-design\u002F02.the-seq-stages.md","",{"type":308,"value":309,"toc":2344},"minimark",[310,333,338,345,891,894,941,1066,1070,1195,1199,1293,1297,1326,1329,1346,1350,1498,1501,1605,1609,1686,1689,1707,1733,1736,1771,1775,1804,1807,1815,1887,1927,1947,1951,2031,2034,2093,2112,2115,2145,2229,2233,2236,2239,2243,2250,2272,2327],[311,312,313,314,318,319,323,324,327,328,332],"p",{},"The ",[315,316,317],"a",{"href":143},"last lesson","\nnamed the six SEQ stages and gave each a one-line job. That is not enough to build\nanything: a circuit needs the ",[320,321,322],"em",{},"exact"," value on every wire, for ",[320,325,326],{},"every"," instruction.\nThis lesson supplies it. For each Y86-64 instruction we fill in a ",[329,330,331],"strong",{},"stage table",":\nsix rows, one per stage, each holding the precise computation that instruction\nrequires of that stage. These tables are the specification of the processor; lessons 3 through\n5 are just the work of realizing them in hardware. Get a table wrong here and the\nsilicon runs the wrong program.",[334,335,337],"h2",{"id":336},"the-signals-every-stage-produces","The signals every stage produces",[311,339,340,341,344],{},"Before the tables, the vocabulary. Each stage produces named ",[329,342,343],{},"signals"," that later\nstages consume, and the same names recur in every table.",[346,347,348,541,668,692,779,882],"ul",{},[349,350,351,354,355,359,360,363,364,367,368,371,372,375,376,379,380,504,505,521,522,537,538,540],"li",{},[329,352,353],{},"Fetch"," produces ",[356,357,358],"code",{},"icode:ifun"," (the opcode), ",[356,361,362],{},"rA",", ",[356,365,366],{},"rB"," (register IDs, if the\ninstruction has a register byte), ",[356,369,370],{},"valC"," (the 8-byte constant, if present), and\n",[356,373,374],{},"valP",", the address of the ",[329,377,378],{},"following"," instruction:\n",[381,382,385],"span",{"className":383},[384],"katex",[381,386,390,421,447,467,489],{"className":387,"ariaHidden":389},[388],"katex-html","true",[381,391,394,399,408,413,418],{"className":392},[393],"base",[381,395],{"className":396,"style":398},[397],"strut","height:0.6111em;",[381,400,404],{"className":401},[402,403],"mord","text",[381,405,374],{"className":406},[402,407],"texttt",[381,409],{"className":410,"style":412},[411],"mspace","margin-right:0.2778em;",[381,414,417],{"className":415},[416],"mrel","=",[381,419],{"className":420,"style":412},[411],[381,422,424,428,435,439,444],{"className":423},[393],[381,425],{"className":426,"style":427},[397],"height:0.6944em;vertical-align:-0.0833em;",[381,429,431],{"className":430},[402,403],[381,432,434],{"className":433},[402,407],"PC",[381,436],{"className":437,"style":438},[411],"margin-right:0.2222em;",[381,440,443],{"className":441},[442],"mbin","+",[381,445],{"className":446,"style":438},[411],[381,448,450,454,458,461,464],{"className":449},[393],[381,451],{"className":452,"style":453},[397],"height:0.7278em;vertical-align:-0.0833em;",[381,455,457],{"className":456},[402],"1",[381,459],{"className":460,"style":438},[411],[381,462,443],{"className":463},[442],[381,465],{"className":466,"style":438},[411],[381,468,470,474,480,483,486],{"className":469},[393],[381,471],{"className":472,"style":473},[397],"height:0.6667em;vertical-align:-0.0833em;",[381,475,479],{"className":476,"style":478},[402,477],"mathnormal","margin-right:0.0278em;","r",[381,481],{"className":482,"style":438},[411],[381,484,443],{"className":485},[442],[381,487],{"className":488,"style":438},[411],[381,490,492,496,500],{"className":491},[393],[381,493],{"className":494,"style":495},[397],"height:0.6444em;",[381,497,499],{"className":498},[402],"8",[381,501,503],{"className":502},[402,477],"c",", where ",[381,506,508],{"className":507},[384],[381,509,511],{"className":510,"ariaHidden":389},[388],[381,512,514,518],{"className":513},[393],[381,515],{"className":516,"style":517},[397],"height:0.4306em;",[381,519,479],{"className":520,"style":478},[402,477]," is 1 if the instruction has\na register byte and ",[381,523,525],{"className":524},[384],[381,526,528],{"className":527,"ariaHidden":389},[388],[381,529,531,534],{"className":530},[393],[381,532],{"className":533,"style":517},[397],[381,535,503],{"className":536},[402,477]," is 1 if it has a ",[356,539,370],{},".",[349,542,543,546,547,363,550,553,554,363,611,660,661,363,664,667],{},[329,544,545],{},"Decode"," selects two source register IDs ",[356,548,549],{},"srcA",[356,551,552],{},"srcB"," and reads\n",[381,555,557],{"className":556},[384],[381,558,560,583],{"className":559,"ariaHidden":389},[388],[381,561,563,566,573,576,580],{"className":562},[393],[381,564],{"className":565,"style":398},[397],[381,567,569],{"className":568},[402,403],[381,570,572],{"className":571},[402,407],"valA",[381,574],{"className":575,"style":412},[411],[381,577,579],{"className":578},[416],"←",[381,581],{"className":582,"style":412},[411],[381,584,586,590,595,600,606],{"className":585},[393],[381,587],{"className":588,"style":589},[397],"height:1em;vertical-align:-0.25em;",[381,591,594],{"className":592,"style":593},[402,477],"margin-right:0.0077em;","R",[381,596,599],{"className":597},[598],"mopen","[",[381,601,603],{"className":602},[402,403],[381,604,549],{"className":605},[402,407],[381,607,610],{"className":608},[609],"mclose","]",[381,612,614],{"className":613},[384],[381,615,617,639],{"className":616,"ariaHidden":389},[388],[381,618,620,623,630,633,636],{"className":619},[393],[381,621],{"className":622,"style":398},[397],[381,624,626],{"className":625},[402,403],[381,627,629],{"className":628},[402,407],"valB",[381,631],{"className":632,"style":412},[411],[381,634,579],{"className":635},[416],[381,637],{"className":638,"style":412},[411],[381,640,642,645,648,651,657],{"className":641},[393],[381,643],{"className":644,"style":589},[397],[381,646,594],{"className":647,"style":593},[402,477],[381,649,599],{"className":650},[598],[381,652,654],{"className":653},[402,403],[381,655,552],{"className":656},[402,407],[381,658,610],{"className":659},[609],".\nIt also selects two destination IDs ",[356,662,663],{},"dstE",[356,665,666],{},"dstM"," for write-back.",[349,669,670,673,674,363,677,680,681,684,685,688,689,540],{},[329,671,672],{},"Execute"," drives the ALU with inputs ",[356,675,676],{},"aluA",[356,678,679],{},"aluB"," and a function, producing\n",[356,682,683],{},"valE","; on ",[356,686,687],{},"OPq"," it sets the condition codes; for branches and conditional moves it\ncomputes ",[356,690,691],{},"Cnd",[349,693,694,697,698,747,748,778],{},[329,695,696],{},"Memory"," computes an address, then reads (",[381,699,701],{"className":700},[384],[381,702,704,726],{"className":703,"ariaHidden":389},[388],[381,705,707,710,717,720,723],{"className":706},[393],[381,708],{"className":709,"style":398},[397],[381,711,713],{"className":712},[402,403],[381,714,716],{"className":715},[402,407],"valM",[381,718],{"className":719,"style":412},[411],[381,721,579],{"className":722},[416],[381,724],{"className":725,"style":412},[411],[381,727,729,732,737,740,744],{"className":728},[393],[381,730],{"className":731,"style":589},[397],[381,733,736],{"className":734,"style":735},[402,477],"margin-right:0.109em;","M",[381,738,599],{"className":739},[598],[381,741],{"className":742,"style":743},[411],"margin-right:0.1667em;",[381,745,610],{"className":746},[609],") or\nwrites (",[381,749,751],{"className":750},[384],[381,752,754],{"className":753,"ariaHidden":389},[388],[381,755,757,760,763,766,769,772,775],{"className":756},[393],[381,758],{"className":759,"style":589},[397],[381,761,736],{"className":762,"style":735},[402,477],[381,764,599],{"className":765},[598],[381,767],{"className":768,"style":743},[411],[381,770,610],{"className":771},[609],[381,773],{"className":774,"style":412},[411],[381,776,579],{"className":777},[416],").",[349,780,781,784,785,833,834,540],{},[329,782,783],{},"Write-back"," writes ",[381,786,788],{"className":787},[384],[381,789,791,821],{"className":790,"ariaHidden":389},[388],[381,792,794,797,800,803,809,812,815,818],{"className":793},[393],[381,795],{"className":796,"style":589},[397],[381,798,594],{"className":799,"style":593},[402,477],[381,801,599],{"className":802},[598],[381,804,806],{"className":805},[402,403],[381,807,663],{"className":808},[402,407],[381,810,610],{"className":811},[609],[381,813],{"className":814,"style":412},[411],[381,816,579],{"className":817},[416],[381,819],{"className":820,"style":412},[411],[381,822,824,827],{"className":823},[393],[381,825],{"className":826,"style":398},[397],[381,828,830],{"className":829},[402,403],[381,831,683],{"className":832},[402,407]," and\n",[381,835,837],{"className":836},[384],[381,838,840,870],{"className":839,"ariaHidden":389},[388],[381,841,843,846,849,852,858,861,864,867],{"className":842},[393],[381,844],{"className":845,"style":589},[397],[381,847,594],{"className":848,"style":593},[402,477],[381,850,599],{"className":851},[598],[381,853,855],{"className":854},[402,403],[381,856,666],{"className":857},[402,407],[381,859,610],{"className":860},[609],[381,862],{"className":863,"style":412},[411],[381,865,579],{"className":866},[416],[381,868],{"className":869,"style":412},[411],[381,871,873,876],{"className":872},[393],[381,874],{"className":875,"style":398},[397],[381,877,879],{"className":878},[402,403],[381,880,716],{"className":881},[402,407],[349,883,884,887,888,540],{},[329,885,886],{},"PC update"," picks ",[356,889,890],{},"newPC",[311,892,893],{},"The names follow a discipline that reading stage tables fluently depends on.",[895,896,898],"callout",{"type":897},"note",[311,899,900,903,904,907,908,910,911,914,915,917,918,921,922,924,925,928,929,931,932,934,935,937,938,940],{},[329,901,902],{},"Convention (Signal naming)."," The last letter of each ",[356,905,906],{},"val"," name says where the\nvalue was produced: ",[356,909,370],{}," is the ",[329,912,913],{},"C","onstant read from the instruction bytes,\n",[356,916,374],{}," the incremented ",[329,919,920],{},"P","C, ",[356,923,683],{}," the ",[329,926,927],{},"E","xecute-stage ALU result, ",[356,930,716],{}," the\nword the ",[329,933,736],{},"emory stage read. ",[356,936,572],{}," and ",[356,939,629],{}," are whatever the register file's\nA and B read ports returned. A stage table never invents a new name; if a value\nappears in some row, one earlier row (or the register file or memory) produced it\nunder exactly that name.",[311,942,943,944,937,947,950,951,1052,1053,1055,1056,937,1059,1062,1063,1065],{},"The discipline pays off when tables look alike. ",[356,945,946],{},"pushq",[356,948,949],{},"call"," both write\n",[381,952,954],{"className":953},[384],[381,955,957,1040],{"className":956,"ariaHidden":389},[388],[381,958,960,963,1019,1022,1028,1031,1034,1037],{"className":959},[393],[381,961],{"className":962,"style":589},[397],[381,964,966,969],{"className":965},[402],[381,967,736],{"className":968,"style":735},[402,477],[381,970,973],{"className":971},[972],"msupsub",[381,974,978,1010],{"className":975},[976,977],"vlist-t","vlist-t2",[381,979,982,1005],{"className":980},[981],"vlist-r",[381,983,987],{"className":984,"style":986},[985],"vlist","height:0.3011em;",[381,988,990,995],{"style":989},"top:-2.55em;margin-left:-0.109em;margin-right:0.05em;",[381,991],{"className":992,"style":994},[993],"pstrut","height:2.7em;",[381,996,1002],{"className":997},[998,999,1000,1001],"sizing","reset-size6","size3","mtight",[381,1003,499],{"className":1004},[402,1001],[381,1006,1009],{"className":1007},[1008],"vlist-s","​",[381,1011,1013],{"className":1012},[981],[381,1014,1017],{"className":1015,"style":1016},[985],"height:0.15em;",[381,1018],{},[381,1020,599],{"className":1021},[598],[381,1023,1025],{"className":1024},[402,403],[381,1026,683],{"className":1027},[402,407],[381,1029,610],{"className":1030},[609],[381,1032],{"className":1033,"style":412},[411],[381,1035,579],{"className":1036},[416],[381,1038],{"className":1039,"style":412},[411],[381,1041,1043,1047],{"className":1042},[393],[381,1044],{"className":1045,"style":1046},[397],"height:0.313em;",[381,1048,1051],{"className":1049},[1050],"minner","⋯"," in Memory, and the names tell you the address\nwas computed by the ALU (",[356,1054,683],{},"), not read from a register. ",[356,1057,1058],{},"popq",[356,1060,1061],{},"ret"," both\nread at ",[356,1064,572],{},", and the name tells you the address came straight from a register\nread, bypassing the ALU.",[334,1067,1069],{"id":1068},"reading-a-stage-table-opq","Reading a stage table: OPq",[311,1071,1072,1073,1076,1077,363,1080,363,1083,1086,1087,1090,1091,1094,1095,937,1097,1099,1100,1194],{},"Take the arithmetic instruction ",[356,1074,1075],{},"OPq rA, rB"," (which covers ",[356,1078,1079],{},"addq",[356,1081,1082],{},"subq",[356,1084,1085],{},"andq",",\n",[356,1088,1089],{},"xorq"," — the ",[356,1092,1093],{},"ifun"," selects which). It reads both ",[356,1096,362],{},[356,1098,366],{},", computes\n",[381,1101,1103],{"className":1102},[384],[381,1104,1106,1136,1173],{"className":1105,"ariaHidden":389},[388],[381,1107,1109,1112,1115,1118,1124,1127,1130,1133],{"className":1108},[393],[381,1110],{"className":1111,"style":589},[397],[381,1113,594],{"className":1114,"style":593},[402,477],[381,1116,599],{"className":1117},[598],[381,1119,1121],{"className":1120},[402,403],[381,1122,366],{"className":1123},[402,407],[381,1125,610],{"className":1126},[609],[381,1128],{"className":1129,"style":412},[411],[381,1131,579],{"className":1132},[416],[381,1134],{"className":1135,"style":412},[411],[381,1137,1139,1142,1145,1148,1154,1157,1160,1170],{"className":1138},[393],[381,1140],{"className":1141,"style":589},[397],[381,1143,594],{"className":1144,"style":593},[402,477],[381,1146,599],{"className":1147},[598],[381,1149,1151],{"className":1150},[402,403],[381,1152,366],{"className":1153},[402,407],[381,1155,610],{"className":1156},[609],[381,1158],{"className":1159,"style":438},[411],[381,1161,1163],{"className":1162},[442],[381,1164,1166],{"className":1165},[402,403],[381,1167,1169],{"className":1168},[402],"OP",[381,1171],{"className":1172,"style":438},[411],[381,1174,1176,1179,1182,1185,1191],{"className":1175},[393],[381,1177],{"className":1178,"style":589},[397],[381,1180,594],{"className":1181,"style":593},[402,477],[381,1183,599],{"className":1184},[598],[381,1186,1188],{"className":1187},[402,403],[381,1189,362],{"className":1190},[402,407],[381,1192,610],{"className":1193},[609],", sets\nthe condition codes, and falls through to the next instruction. Every stage gets a\nconcrete value.",[1196,1197],"tikz-figure",{"hash":1198},"11926f65395bf8ea314a3e7234b1bf932116c96e4ac43b1329f19d67046a989e",[311,1200,1201,1202,1204,1205,937,1207,1209,1210,1212,1213,1215,1216,1218,1219,1221,1222,1218,1224,1226,1227,1230,1231,1234,1235,540],{},"For ",[356,1203,687],{}," the source registers are exactly ",[356,1206,362],{},[356,1208,366],{},", and the one destination is\n",[356,1211,366],{},", written from ",[356,1214,683],{},". The ALU's second operand ",[356,1217,676],{}," is ",[356,1220,572],{}," and its first\n",[356,1223,679],{},[356,1225,629],{},", and the result is ",[356,1228,1229],{},"valB OP valA"," — order matters, because\n",[356,1232,1233],{},"subq rA, rB"," must compute ",[381,1236,1238],{"className":1237},[384],[381,1239,1241,1272],{"className":1240,"ariaHidden":389},[388],[381,1242,1244,1247,1250,1253,1259,1262,1265,1269],{"className":1243},[393],[381,1245],{"className":1246,"style":589},[397],[381,1248,594],{"className":1249,"style":593},[402,477],[381,1251,599],{"className":1252},[598],[381,1254,1256],{"className":1255},[402,403],[381,1257,366],{"className":1258},[402,407],[381,1260,610],{"className":1261},[609],[381,1263],{"className":1264,"style":438},[411],[381,1266,1268],{"className":1267},[442],"−",[381,1270],{"className":1271,"style":438},[411],[381,1273,1275,1278,1281,1284,1290],{"className":1274},[393],[381,1276],{"className":1277,"style":589},[397],[381,1279,594],{"className":1280,"style":593},[402,477],[381,1282,599],{"className":1283},[598],[381,1285,1287],{"className":1286},[402,403],[381,1288,362],{"className":1289},[402,407],[381,1291,610],{"className":1292},[609],[334,1294,1296],{"id":1295},"the-trivial-pair-nop-and-halt","The trivial pair: nop and halt",[311,1298,1299,1300,1303,1304,1306,1307,1310,1311,1313,1314,1317,1318,1321,1322,1325],{},"Two instructions do almost nothing, and their tables say so. ",[356,1301,1302],{},"nop"," occupies\na byte and a cycle: fetch it, compute ",[356,1305,374],{},", and fall through; every other row is\nempty. ",[356,1308,1309],{},"halt"," is one row stranger: it too fetches and computes ",[356,1312,374],{},", but it also\nsets the status ",[356,1315,1316],{},"Stat"," to ",[356,1319,1320],{},"HLT",", and a machine whose status is not ",[356,1323,1324],{},"AOK"," does not\nbegin another cycle, so the PC-update row is moot. Nothing else in the datapath\nmoves.",[1196,1327],{"hash":1328},"92c8f6c2b03d74587db2ea6857fe6cf2e90db2fd397f8624e6fc38af3a7b9bfb",[311,1330,1331,1332,1334,1335,1338,1339,1342,1343,1345],{},"Idle rows are not wasted rows. ",[356,1333,1302],{}," still takes a full cycle, because in SEQ every\ninstruction takes exactly one cycle regardless of how little it does, a fact with\nconsequences for ",[315,1336,1337],{"href":158},"timing",",\nsince the clock must be slow enough for the ",[320,1340,1341],{},"longest"," instruction, and ",[356,1344,1302],{}," then\npays for time it never uses.",[334,1347,1349],{"id":1348},"register-moves-rrmovq-cmovxx-irmovq","Register moves: rrmovq, cmovXX, irmovq",[311,1351,1352,1353,1356,1357,1360,1361,1364,1365,1368,1369,1427,1428,1368,1431,1488,1489,1493,1494,1497],{},"The register-to-register move ",[356,1354,1355],{},"rrmovq rA, rB"," and the immediate move ",[356,1358,1359],{},"irmovq V, rB","\nshare a trick: neither has any arithmetic to do, but both route their value\n",[329,1362,1363],{},"through the ALU anyway",", adding zero. ",[356,1366,1367],{},"rrmovq"," computes\n",[381,1370,1372],{"className":1371},[384],[381,1373,1375,1396,1415],{"className":1374,"ariaHidden":389},[388],[381,1376,1378,1381,1387,1390,1393],{"className":1377},[393],[381,1379],{"className":1380,"style":398},[397],[381,1382,1384],{"className":1383},[402,403],[381,1385,683],{"className":1386},[402,407],[381,1388],{"className":1389,"style":412},[411],[381,1391,417],{"className":1392},[416],[381,1394],{"className":1395,"style":412},[411],[381,1397,1399,1402,1406,1409,1412],{"className":1398},[393],[381,1400],{"className":1401,"style":453},[397],[381,1403,1405],{"className":1404},[402],"0",[381,1407],{"className":1408,"style":438},[411],[381,1410,443],{"className":1411},[442],[381,1413],{"className":1414,"style":438},[411],[381,1416,1418,1421],{"className":1417},[393],[381,1419],{"className":1420,"style":398},[397],[381,1422,1424],{"className":1423},[402,403],[381,1425,572],{"className":1426},[402,407],"; ",[356,1429,1430],{},"irmovq",[381,1432,1434],{"className":1433},[384],[381,1435,1437,1458,1476],{"className":1436,"ariaHidden":389},[388],[381,1438,1440,1443,1449,1452,1455],{"className":1439},[393],[381,1441],{"className":1442,"style":398},[397],[381,1444,1446],{"className":1445},[402,403],[381,1447,683],{"className":1448},[402,407],[381,1450],{"className":1451,"style":412},[411],[381,1453,417],{"className":1454},[416],[381,1456],{"className":1457,"style":412},[411],[381,1459,1461,1464,1467,1470,1473],{"className":1460},[393],[381,1462],{"className":1463,"style":453},[397],[381,1465,1405],{"className":1466},[402],[381,1468],{"className":1469,"style":438},[411],[381,1471,443],{"className":1472},[442],[381,1474],{"className":1475,"style":438},[411],[381,1477,1479,1482],{"className":1478},[393],[381,1480],{"className":1481,"style":398},[397],[381,1483,1485],{"className":1484},[402,403],[381,1486,370],{"className":1487},[402,407],". The ALU is sitting in the middle of the\ndatapath whether we use it or not, so the cheapest path from ",[1490,1491,1492],"q",{},"value in hand"," to\n",[1490,1495,1496],{},"register write port"," is straight through it with the other input forced to zero.",[1196,1499],{"hash":1500},"4a13e7c8cb9e9ffcc89c356a9bfe9ce1d7b80d7ea1c0ac1c9e132e9f2b68b1f7",[311,1502,1503,1504,1507,1508,1510,1511,1514,1515,1517,1518,1589,1590,1592,1593,1595,1596,1599,1600,1602,1603,540],{},"The conditional moves ",[356,1505,1506],{},"cmovXX rA, rB"," share ",[356,1509,1367],{},"'s ",[356,1512,1513],{},"icode"," (they differ only in\n",[356,1516,1093],{},") and its table, with one addition: Execute also evaluates\n",[381,1519,1521],{"className":1520},[384],[381,1522,1524,1545],{"className":1523,"ariaHidden":389},[388],[381,1525,1527,1530,1536,1539,1542],{"className":1526},[393],[381,1528],{"className":1529,"style":398},[397],[381,1531,1533],{"className":1532},[402,403],[381,1534,691],{"className":1535},[402,407],[381,1537],{"className":1538,"style":412},[411],[381,1540,417],{"className":1541},[416],[381,1543],{"className":1544,"style":412},[411],[381,1546,1548,1551,1559,1563,1571,1576,1579,1585],{"className":1547},[393],[381,1549],{"className":1550,"style":589},[397],[381,1552,1554],{"className":1553},[402],[381,1555,1558],{"className":1556},[402,1557],"mathrm","Cond",[381,1560,1562],{"className":1561},[598],"(",[381,1564,1566],{"className":1565},[402],[381,1567,1570],{"className":1568},[402,1569],"mathtt","CC",[381,1572,1575],{"className":1573},[1574],"mpunct",",",[381,1577],{"className":1578,"style":743},[411],[381,1580,1582],{"className":1581},[402],[381,1583,1093],{"className":1584},[402,1569],[381,1586,1588],{"className":1587},[609],")",", and Write-back happens\nonly when ",[356,1591,691],{}," holds: the destination select ",[356,1594,663],{}," becomes ",[356,1597,1598],{},"RNONE"," on a failed\ncondition, so the write port idles and ",[356,1601,366],{}," keeps its old value. The move is\nsquashed, not skipped: the instruction still spends its cycle and still falls\nthrough to ",[356,1604,374],{},[334,1606,1608],{"id":1607},"memory-instructions-rmmovq-and-mrmovq","Memory instructions: rmmovq and mrmovq",[311,1610,1611,1612,1614,1615,1617,1618,1621,1622,1625,1626,1427,1673,1676,1677,1679,1680,1682,1683,1685],{},"The memory instructions use the ",[329,1613,672],{}," stage as an address adder and give the\n",[329,1616,696],{}," stage real work. ",[356,1619,1620],{},"rmmovq rA, D(rB)"," stores ",[356,1623,1624],{},"R[rA]"," to memory at\n",[381,1627,1629],{"className":1628},[384],[381,1630,1632,1652],{"className":1631,"ariaHidden":389},[388],[381,1633,1635,1639,1643,1646,1649],{"className":1634},[393],[381,1636],{"className":1637,"style":1638},[397],"height:0.7667em;vertical-align:-0.0833em;",[381,1640,1642],{"className":1641,"style":478},[402,477],"D",[381,1644],{"className":1645,"style":438},[411],[381,1647,443],{"className":1648},[442],[381,1650],{"className":1651,"style":438},[411],[381,1653,1655,1658,1661,1664,1670],{"className":1654},[393],[381,1656],{"className":1657,"style":589},[397],[381,1659,594],{"className":1660,"style":593},[402,477],[381,1662,599],{"className":1663},[598],[381,1665,1667],{"className":1666},[402,403],[381,1668,366],{"className":1669},[402,407],[381,1671,610],{"className":1672},[609],[356,1674,1675],{},"mrmovq D(rB), rA"," loads from the same address into ",[356,1678,362],{},". The\nALU adds the displacement ",[356,1681,370],{}," to the base ",[356,1684,629],{}," in both cases; the difference is\nonly the direction of the memory access and which register, if any, is written.",[1196,1687],{"hash":1688},"9b05eaf399cf1ef8962a3267185f2802e88e8a8343fdf85df7c4235c5b80b2e7",[311,1690,1691,1694,1695,784,1698,1700,1701,1703,1704,1706],{},[356,1692,1693],{},"rmmovq"," writes a register in no stage (its Write-back row is empty), while\n",[356,1696,1697],{},"mrmovq",[356,1699,362],{}," from ",[356,1702,716],{},". Compare the two Memory rows: the same address\n",[356,1705,683],{}," appears on both, once as a write target, once as a read source: one address\ncomputation serves both directions.",[311,1708,1709,1710,1713,1714,1717,1718,1721,1722,1725,1726,1729,1730,540],{},"It is worth running one table with real numbers, because the abstract rows hide how\nlittle arithmetic each stage does. Take ",[356,1711,1712],{},"mrmovq 8(%rdx), %rax"," with ",[356,1715,1716],{},"%rdx = 0x200","\nand the eight bytes at address ",[356,1719,1720],{},"0x208"," holding the value ",[356,1723,1724],{},"0x2a",". The bytes of the\ninstruction, laid out by the assembler, are ",[356,1727,1728],{},"50 02"," then the 8-byte displacement ",[356,1731,1732],{},"08 00 00 00 00 00 00 00",[1196,1734],{"hash":1735},"27a32d59e70751ec7d4ec6b263ed4577746b84cfcdd9acbb199044e051528595",[311,1737,1738,1739,1742,1743,1746,1747,363,1750,1753,1754,1757,1758,1761,1762,363,1764,1766,1767,1770],{},"Five of the six rows carry a concrete value, and every one is forced by an earlier\nrow or by prior state: ",[356,1740,1741],{},"valC = 0x8"," came out of the instruction bytes, ",[356,1744,1745],{},"valB = 0x200","\nwas already in ",[356,1748,1749],{},"%rdx",[356,1751,1752],{},"valE = 0x208"," is the one addition the ALU performs, and\n",[356,1755,1756],{},"valM = 0x2a"," is what memory returned at that address. Nothing in the table is a\nchoice; the only decisions — ",[320,1759,1760],{},"which"," register feeds ",[356,1763,552],{},[320,1765,1760],{}," ALU function runs,\n",[320,1768,1769],{},"whether"," memory reads — belong to the control logic of the next lesson. The stage\ntable is what the control logic must arrange to be true.",[334,1772,1774],{"id":1773},"stack-instructions-pushq-and-popq","Stack instructions: pushq and popq",[311,1776,1777,1778,1781,1782,1794,1803],{},"The stack instructions are where the ALU does an off-to-the-side adjustment of ",[356,1779,1780],{},"%rsp",".\n",[329,1783,1784,1787,1788,1790,1791,1793],{},[356,1785,1786],{},"pushq rA"," decrements ",[356,1789,1780],{}," by 8, then stores ",[356,1792,1624],{}," at the new top.",[329,1795,1796,1799,1800,1802],{},[356,1797,1798],{},"popq rA"," reads the word at the current top, then increments ",[356,1801,1780],{}," by 8."," The\norder matters and the tables make it exact.",[1196,1805],{"hash":1806},"2b10fc017a1801b2f57a656fec7e8168622769937f10bff947a3ed44cde8fb9d",[311,1808,1809,1810,1218,1812,1814],{},"Both tables hide edge cases that surface exactly when ",[356,1811,362],{},[356,1813,1780],{}," itself, and\nboth are resolved by reading the rows in order.",[895,1816,1818],{"type":1817},"lemma",[311,1819,1820,1823,1824,1827,1828,1830,1831,1834,1835,1883,1884,1886],{},[329,1821,1822],{},"Invariant (pushq %rsp pushes the old value)."," ",[356,1825,1826],{},"pushq %rsp"," stores the value\n",[356,1829,1780],{}," held ",[320,1832,1833],{},"before"," the instruction, not the decremented one. The table forces\nthis: Decode reads ",[381,1836,1838],{"className":1837},[384],[381,1839,1841,1862],{"className":1840,"ariaHidden":389},[388],[381,1842,1844,1847,1853,1856,1859],{"className":1843},[393],[381,1845],{"className":1846,"style":398},[397],[381,1848,1850],{"className":1849},[402,403],[381,1851,572],{"className":1852},[402,407],[381,1854],{"className":1855,"style":412},[411],[381,1857,417],{"className":1858},[416],[381,1860],{"className":1861,"style":412},[411],[381,1863,1865,1868,1871,1874,1880],{"className":1864},[393],[381,1866],{"className":1867,"style":589},[397],[381,1869,594],{"className":1870,"style":593},[402,477],[381,1872,599],{"className":1873},[598],[381,1875,1877],{"className":1876},[402,403],[381,1878,1780],{"className":1879},[402,407],[381,1881,610],{"className":1882},[609]," before Execute computes the\ndecrement, and Memory stores ",[356,1885,572],{},". A design that pushed the decremented pointer\nwould be self-consistent too — the encoding does not decide — so this is a\nspecification choice, made to match x86-64's behavior.",[895,1888,1889],{"type":1817},[311,1890,1891,1823,1894,1897,1898,1900,1901,1903,1904,1906,1907,937,1909,1911,1912,1914,1915,1917,1918,1920,1921,1926],{},[329,1892,1893],{},"Invariant (popq %rsp loads, not increments).",[356,1895,1896],{},"popq %rsp"," leaves ",[356,1899,1780],{}," holding\nthe value read from memory. Its Write-back row writes ",[356,1902,1780],{}," twice — ",[356,1905,683],{}," through\n",[356,1908,663],{},[356,1910,716],{}," through ",[356,1913,666],{}," — and the definition says the ",[356,1916,736],{}," write wins. So\n",[356,1919,1896],{}," means ",[1490,1922,1923,1924],{},"load the top-of-stack word into ",[356,1925,1780],{},", and the increment is\ndiscarded.",[311,1928,1929,1930,1932,1933,1935,1936,1938,1939,1941,1942,1938,1944,1946],{},"For every other ",[356,1931,362],{},", the two write ports of the register file are what let ",[356,1934,1058],{},"\nupdate ",[356,1937,1780],{}," (from ",[356,1940,683],{},") and ",[356,1943,362],{},[356,1945,716],{},") in the same cycle, the reason\nthe register file was built with two write ports at all.",[334,1948,1950],{"id":1949},"control-transfer-jxx-call-ret","Control transfer: jXX, call, ret",[311,1952,1953,1954,1956,1957,1960,1961,1963,1964,2027,2028,2030],{},"The control instructions are the ones that make ",[356,1955,890],{}," interesting. Start with the\njumps: ",[356,1958,1959],{},"jXX Dest"," carries the destination in ",[356,1962,370],{}," and needs neither the register\nfile nor the ALU. Its whole Execute row is the evaluation of the branch condition\n",[381,1965,1967],{"className":1966},[384],[381,1968,1970,1991],{"className":1969,"ariaHidden":389},[388],[381,1971,1973,1976,1982,1985,1988],{"className":1972},[393],[381,1974],{"className":1975,"style":398},[397],[381,1977,1979],{"className":1978},[402,403],[381,1980,691],{"className":1981},[402,407],[381,1983],{"className":1984,"style":412},[411],[381,1986,417],{"className":1987},[416],[381,1989],{"className":1990,"style":412},[411],[381,1992,1994,1997,2003,2006,2012,2015,2018,2024],{"className":1993},[393],[381,1995],{"className":1996,"style":589},[397],[381,1998,2000],{"className":1999},[402],[381,2001,1558],{"className":2002},[402,1557],[381,2004,1562],{"className":2005},[598],[381,2007,2009],{"className":2008},[402],[381,2010,1570],{"className":2011},[402,1569],[381,2013,1575],{"className":2014},[1574],[381,2016],{"className":2017,"style":743},[411],[381,2019,2021],{"className":2020},[402],[381,2022,1093],{"className":2023},[402,1569],[381,2025,1588],{"className":2026},[609]," from the condition codes\nthat some earlier ",[356,2029,687],{}," left behind.",[1196,2032],{"hash":2033},"5c7a65852926e1a76f53d691012e6d811e92c5349f7fb61073eaae54e0af0166",[311,2035,2036,2037,2040,2041,363,2044,363,2047,363,2050,363,2053,363,2056,2059,2060,363,2063,363,2066,2069,2070,2072,2073,2075,2076,2079,2080,2083,2084,2086,2087,2090,2091,540],{},"The seven conditions (",[356,2038,2039],{},"jmp"," always, then ",[356,2042,2043],{},"jle",[356,2045,2046],{},"jl",[356,2048,2049],{},"je",[356,2051,2052],{},"jne",[356,2054,2055],{},"jge",[356,2057,2058],{},"jg",") are\nBoolean functions of ",[356,2061,2062],{},"ZF",[356,2064,2065],{},"SF",[356,2067,2068],{},"OF",", selected by ",[356,2071,1093],{},", the same ",[356,2074,1558],{}," unit the\n",[356,2077,2078],{},"cmovXX"," family uses, derived in the\n",[315,2081,2082],{"href":153},"next lesson",".\nAn untaken jump is a ",[356,2085,1302],{}," that cost nine bytes: it computes ",[356,2088,2089],{},"Cnd = 0"," and falls\nthrough to ",[356,2092,374],{},[311,2094,2095,937,2098,2100,2101,2103,2104,2106,2107,1427,2109,2111],{},[356,2096,2097],{},"call Dest",[356,2099,1061],{}," complete the set. ",[356,2102,949],{}," pushes the return address ",[356,2105,374],{}," and\njumps to ",[356,2108,370],{},[356,2110,1061],{}," pops the return address into the PC.",[1196,2113],{"hash":2114},"fffd69f3852997cd4b3fcbc2dbd6d2a3786c40d40a86d654cd5d0eff05054084",[311,2116,2117,937,2119,2121,2122,2124,2125,1621,2127,2129,2130,1218,2132,2134,2135,2137,2138,937,2140,2142,2143,540],{},[356,2118,949],{},[356,2120,946],{}," share their Execute and Memory shape — decrement ",[356,2123,1780],{},", store at\nthe new top — but ",[356,2126,949],{},[356,2128,374],{}," (the return address) rather than a register\nvalue, and its ",[356,2131,890],{},[356,2133,370],{},", not ",[356,2136,374],{},". ",[356,2139,1061],{},[356,2141,1058],{}," are the mirror image:\nread from the old top, increment ",[356,2144,1780],{},[311,2146,2147,2149,2150,2152,2155,2156,2174,2175,2193,2194,2196,2197,2200,2201,2134,2203,2205,2206,937,2208,2210,2211,2213,2214,2216,2217,2219,2220,2222,2223,937,2226],{},[356,2148,1061],{}," deserves a slower look, because one byte of encoding drives more machinery\nthan any other instruction its size. It names no register, yet it uses ",[356,2151,1780],{},[329,2153,2154],{},"three times",": Decode reads it twice (",[381,2157,2159],{"className":2158},[384],[381,2160,2162],{"className":2161,"ariaHidden":389},[388],[381,2163,2165,2168],{"className":2164},[393],[381,2166],{"className":2167,"style":398},[397],[381,2169,2171],{"className":2170},[402,403],[381,2172,549],{"className":2173},[402,407]," supplies the memory address,\n",[381,2176,2178],{"className":2177},[384],[381,2179,2181],{"className":2180,"ariaHidden":389},[388],[381,2182,2184,2187],{"className":2183},[393],[381,2185],{"className":2186,"style":398},[397],[381,2188,2190],{"className":2189},[402,403],[381,2191,552],{"className":2192},[402,407]," the value to increment), and Write-back stores the incremented\npointer through ",[356,2195,663],{},". On top of that it reads data memory at the ",[320,2198,2199],{},"old"," top\n(",[356,2202,572],{},[356,2204,683],{}," — read the Memory row carefully) and commandeers the PC mux.\nThe single difference between ",[356,2207,1061],{},[356,2209,1058],{}," is the last row: ",[356,2212,1061],{}," sends ",[356,2215,716],{},"\nto the PC, while ",[356,2218,1058],{}," sends it to a register and falls through to ",[356,2221,374],{},". That one\nmux input is the entire difference between ",[1490,2224,2225],{},"return from a function",[1490,2227,2228],{},"pop a value.",[334,2230,2232],{"id":2231},"the-vertical-view-six-stages-every-instruction","The vertical view: six stages, every instruction",[311,2234,2235],{},"Stacking the stages vertically, every instruction is the same column of six boxes —\nonly the contents of the boxes change. This shape mirrors how lesson 4 lays out the\ncomplete datapath: six horizontal bands, Fetch at the bottom, PC update at the top.",[1196,2237],{"hash":2238},"03af87e261a8a33852ce16a6b325e3260e39f3d3d94c6b90f9f8cc600d1f84c9",[334,2240,2242],{"id":2241},"stage-tables-as-the-ancestor-of-micro-ops","Stage tables as the ancestor of micro-ops",[311,2244,2245,2246,2249],{},"A stage table is a claim that every instruction, however different its surface\nsyntax, decomposes into the ",[320,2247,2248],{},"same"," small vocabulary of primitive steps: a register\nread, one ALU operation, at most one memory access, a register write, a PC choice.\nThat decomposition is also how real high-performance processors run a complicated\ninstruction set.",[311,2251,2252,2253,2256,2257,2260,2261,2264,2265,2267,2268,2271],{},"Modern x86-64 cores do not execute their sprawling CISC instructions directly.\nInstead, the front end ",[329,2254,2255],{},"cracks"," each architectural instruction into a sequence of\nuniform internal operations, the ",[1490,2258,2259],{},"micro-operations"," (µops) mentioned in CS:APP's RISC\nversus CISC aside (Bryant & O'Hallaron, ",[320,2262,2263],{},"CS:APP"," §4.1) and developed in its treatment\nof modern processors (§5.7). A Y86-64 ",[356,2266,946],{}," already shows the pattern in miniature:\nits stage table is ",[1490,2269,2270],{},"subtract 8, then store,"," which is exactly two µops' worth of work\nriding on one instruction. On a real x86 machine, an instruction with a\nmemory-operand-and-arithmetic form similarly expands into a load µop, an ALU µop, and\nsometimes a store µop — each of which looks like one filled-in row of a stage table.\nThe back end then schedules these uniform µops out of order across duplicated\nfunctional units. The reason the translation is even possible is the reason stage\ntables are worth writing: once you have reduced every instruction to a fixed sequence\nof primitive stage operations, the hardware that carries out any one primitive can be\nbuilt once and shared by all. The SEQ tables are that reduction done by hand, for a\nsmall enough ISA that the whole vocabulary fits on a page.",[895,2273,2274],{"type":897},[311,2275,2276,2279,2280,2282,2283,2285,2286,2288,2289,1787,2291,2293,2294,2296,2297,2299,2300,2302,2303,2306,2307,937,2309,1427,2311,1621,2313,2106,2315,2317,2318,2320,2321,2323,2324,2326],{},[329,2277,2278],{},"Takeaway."," Every Y86-64 instruction flows through the same six stages, and a\nstage table records what each stage computes for it. The recurring traps are\nsmall and exact: ",[356,2281,687],{}," computes ",[356,2284,1229],{}," and writes ",[356,2287,366],{},"; the moves pass\ntheir value through the ALU by adding 0; ",[356,2290,946],{},[356,2292,1780],{}," then stores the\n",[320,2295,2199],{}," value while ",[356,2298,1058],{}," reads the old top then increments; ",[356,2301,1896],{}," keeps the\nloaded word; ",[356,2304,2305],{},"jXX"," touches nothing but ",[356,2308,370],{},[356,2310,691],{},[356,2312,949],{},[356,2314,374],{},[356,2316,370],{}," while ",[356,2319,1061],{}," uses ",[356,2322,1780],{}," three times and loads ",[356,2325,716],{}," into the PC.\nThese tables are the processor's specification — the rest of the module turns\nthem into wires.",[311,2328,2329,2330,2332,2333,363,2335,2337,2338,2340,2341,2343],{},"With every instruction's stage table fixed, the\n",[315,2331,2082],{"href":153},"\nderives the control signals — ",[356,2334,549],{},[356,2336,663],{},", the ALU function, the memory\ncontrols, ",[356,2339,890],{}," — that select among these computations from ",[356,2342,1513],{}," alone.",{"title":306,"searchDepth":17,"depth":17,"links":2345},[2346,2347,2348,2349,2350,2351,2352,2353,2354],{"id":336,"depth":17,"text":337},{"id":1068,"depth":17,"text":1069},{"id":1295,"depth":17,"text":1296},{"id":1348,"depth":17,"text":1349},{"id":1607,"depth":17,"text":1608},{"id":1773,"depth":17,"text":1774},{"id":1949,"depth":17,"text":1950},{"id":2231,"depth":17,"text":2232},{"id":2241,"depth":17,"text":2242},[],"computer-science","The last lesson\nnamed the six SEQ stages and gave each a one-line job. That is not enough to build\nanything: a circuit needs the exact value on every wire, for every instruction.\nThis lesson supplies it. For each Y86-64 instruction we fill in a stage table:\nsix rows, one per stage, each holding the precise computation that instruction\nrequires of that stage. These tables are the specification of the processor; lessons 3 through\n5 are just the work of realizing them in hardware. Get a table wrong here and the\nsilicon runs the wrong program.",false,"md",{"moduleNumber":29,"lessonNumber":17,"order":2361},402,true,[],"---\ntitle: The SEQ Stages\nmodule: Processor Design\nmoduleNumber: 4\nlessonNumber: 2\norder: 402\nsummary: >\n  The six SEQ stages, made exact. For every Y86-64 instruction — halt, nop, the\n  moves, OPq, the jumps, call and ret, pushq and popq — we write down what Fetch,\n  Decode, Execute, Memory, Write-back, and PC update each compute, as\n  per-instruction stage tables with every row justified. Once the tables are filled\n  in, the processor is fully specified; the remaining lessons turn them into wires.\ntopics: [Processor Design]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4.3 Sequential Y86-64 Implementations\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)\"\n---\n\nThe [last lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle)\nnamed the six SEQ stages and gave each a one-line job. That is not enough to build\nanything: a circuit needs the _exact_ value on every wire, for _every_ instruction.\nThis lesson supplies it. For each Y86-64 instruction we fill in a **stage table**:\nsix rows, one per stage, each holding the precise computation that instruction\nrequires of that stage. These tables are the specification of the processor; lessons 3 through\n5 are just the work of realizing them in hardware. Get a table wrong here and the\nsilicon runs the wrong program.\n\n## The signals every stage produces\n\nBefore the tables, the vocabulary. Each stage produces named **signals** that later\nstages consume, and the same names recur in every table.\n\n- **Fetch** produces `icode:ifun` (the opcode), `rA`, `rB` (register IDs, if the\n  instruction has a register byte), `valC` (the 8-byte constant, if present), and\n  `valP`, the address of the **following** instruction:\n  $\\texttt{valP} = \\texttt{PC} + 1 + r + 8c$, where $r$ is 1 if the instruction has\n  a register byte and $c$ is 1 if it has a `valC`.\n- **Decode** selects two source register IDs `srcA`, `srcB` and reads\n  $\\texttt{valA} \\leftarrow R[\\texttt{srcA}]$, $\\texttt{valB} \\leftarrow R[\\texttt{srcB}]$.\n  It also selects two destination IDs `dstE`, `dstM` for write-back.\n- **Execute** drives the ALU with inputs `aluA`, `aluB` and a function, producing\n  `valE`; on `OPq` it sets the condition codes; for branches and conditional moves it\n  computes `Cnd`.\n- **Memory** computes an address, then reads ($\\texttt{valM} \\leftarrow M[\\,]$) or\n  writes ($M[\\,] \\leftarrow$).\n- **Write-back** writes $R[\\texttt{dstE}] \\leftarrow \\texttt{valE}$ and\n  $R[\\texttt{dstM}] \\leftarrow \\texttt{valM}$.\n- **PC update** picks `newPC`.\n\nThe names follow a discipline that reading stage tables fluently depends on.\n\n> **Convention (Signal naming).** The last letter of each `val` name says where the\n> value was produced: `valC` is the **C**onstant read from the instruction bytes,\n> `valP` the incremented **P**C, `valE` the **E**xecute-stage ALU result, `valM` the\n> word the **M**emory stage read. `valA` and `valB` are whatever the register file's\n> A and B read ports returned. A stage table never invents a new name; if a value\n> appears in some row, one earlier row (or the register file or memory) produced it\n> under exactly that name.\n\nThe discipline pays off when tables look alike. `pushq` and `call` both write\n$M_8[\\texttt{valE}] \\leftarrow \\cdots$ in Memory, and the names tell you the address\nwas computed by the ALU (`valE`), not read from a register. `popq` and `ret` both\nread at `valA`, and the name tells you the address came straight from a register\nread, bypassing the ALU.\n\n## Reading a stage table: OPq\n\nTake the arithmetic instruction `OPq rA, rB` (which covers `addq`, `subq`, `andq`,\n`xorq` — the `ifun` selects which). It reads both `rA` and `rB`, computes\n$R[\\texttt{rB}] \\leftarrow R[\\texttt{rB}] \\mathbin{\\text{OP}} R[\\texttt{rA}]$, sets\nthe condition codes, and falls through to the next instruction. Every stage gets a\nconcrete value.\n\n$$\n% caption: The OPq rA,rB stage table. Decode reads both operands; Execute applies the\n% caption: ifun-selected ALU op to valB OP valA and sets the condition codes; Memory\n% caption: is idle; Write-back stores valE into rB; PC falls through to valP.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize},\n  row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-2.6,0.45) -- (10.2,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{icode{:}ifun} = M_1[\\mathtt{PC}]$;\\ \\ $\\mathtt{rA{:}rB} = M_1[\\mathtt{PC}{+}1]$;\\ \\ $\\mathtt{valP}=\\mathtt{PC}{+}2$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{rA}]$;\\ \\ $\\mathtt{valB} = R[\\mathtt{rB}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}\\ \\mathrm{OP}\\ \\mathtt{valA}$;\\ \\ set CC (ZF\u002FSF\u002FOF)},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{rB}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (-0.1,\\y) {\\stage};\n    \\node[row] at (0.2,\\y) {\\comp};\n    \\draw[acc!40] (-2.6,\\y-0.42) -- (10.2,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nFor `OPq` the source registers are exactly `rA` and `rB`, and the one destination is\n`rB`, written from `valE`. The ALU's second operand `aluA` is `valA` and its first\n`aluB` is `valB`, and the result is `valB OP valA` — order matters, because\n`subq rA, rB` must compute $R[\\texttt{rB}] - R[\\texttt{rA}]$.\n\n## The trivial pair: nop and halt\n\nTwo instructions do almost nothing, and their tables say so. `nop` occupies\na byte and a cycle: fetch it, compute `valP`, and fall through; every other row is\nempty. `halt` is one row stranger: it too fetches and computes `valP`, but it also\nsets the status `Stat` to `HLT`, and a machine whose status is not `AOK` does not\nbegin another cycle, so the PC-update row is moot. Nothing else in the datapath\nmoves.\n\n$$\n% caption: nop (left) and halt (right). Both fetch one byte and compute valP; nop\n% caption: falls through, while halt sets Stat to HLT so no further cycle begins.\n% caption: Every other stage is idle for both.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=west, text=acc] at (-2.7,0.95) {\\texttt{nop}};\n  \\draw[acc!40] (-2.7,0.45) -- (4.6,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{icode{:}ifun} = M_1[\\mathtt{PC}]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}1$},\n    -0.85\u002F{Decode}\u002F{-},\n    -1.7\u002F{Execute}\u002F{-},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{-},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (-0.2,\\y) {\\stage};\n    \\node[row] at (0.1,\\y) {\\comp};\n    \\draw[acc!40] (-2.7,\\y-0.42) -- (4.6,\\y-0.42);\n  }\n  \\node[anchor=west, text=acc] at (6.1,0.95) {\\texttt{halt}};\n  \\draw[acc!40] (6.1,0.45) -- (13.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{icode{:}ifun} = M_1[\\mathtt{PC}]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}1$},\n    -0.85\u002F{Decode}\u002F{-},\n    -1.7\u002F{Execute}\u002F{-},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{-},\n    -4.25\u002F{PC update}\u002F{Stat = HLT; machine stops}} {\n    \\node[lbl] at (6.6,\\y) {\\stage};\n    \\node[row] at (6.9,\\y) {\\comp};\n    \\draw[acc!40] (6.1,\\y-0.42) -- (13.4,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nIdle rows are not wasted rows. `nop` still takes a full cycle, because in SEQ every\ninstruction takes exactly one cycle regardless of how little it does, a fact with\nconsequences for [timing](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq),\nsince the clock must be slow enough for the _longest_ instruction, and `nop` then\npays for time it never uses.\n\n## Register moves: rrmovq, cmovXX, irmovq\n\nThe register-to-register move `rrmovq rA, rB` and the immediate move `irmovq V, rB`\nshare a trick: neither has any arithmetic to do, but both route their value\n**through the ALU anyway**, adding zero. `rrmovq` computes\n$\\texttt{valE} = 0 + \\texttt{valA}$; `irmovq` computes\n$\\texttt{valE} = 0 + \\texttt{valC}$. The ALU is sitting in the middle of the\ndatapath whether we use it or not, so the cheapest path from \"value in hand\" to\n\"register write port\" is straight through it with the other input forced to zero.\n\n$$\n% caption: rrmovq rA,rB (left) and irmovq V,rB (right). Both pass their value through\n% caption: the ALU by adding 0 — valA for rrmovq, valC for irmovq — and write valE\n% caption: into rB. The cmovXX variants add Cnd in Execute and write only if it holds.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=west, text=acc] at (-2.7,0.95) {\\texttt{rrmovq rA,rB}};\n  \\draw[acc!40] (-2.7,0.45) -- (4.9,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{rA{:}rB} = M_1[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}2$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{rA}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=0+\\mathtt{valA}$},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{rB}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (-0.2,\\y) {\\stage};\n    \\node[row] at (0.1,\\y) {\\comp};\n    \\draw[acc!40] (-2.7,\\y-0.42) -- (4.9,\\y-0.42);\n  }\n  \\node[anchor=west, text=acc] at (6.4,0.95) {\\texttt{irmovq V,rB}};\n  \\draw[acc!40] (6.4,0.45) -- (14.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{rA{:}rB} = M_1[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valC} = M_8[\\mathtt{PC}{+}2]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}10$},\n    -0.85\u002F{Decode}\u002F{-},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=0+\\mathtt{valC}$},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{rB}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (6.9,\\y) {\\stage};\n    \\node[row] at (7.2,\\y) {\\comp};\n    \\draw[acc!40] (6.4,\\y-0.42) -- (14.4,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nThe conditional moves `cmovXX rA, rB` share `rrmovq`'s `icode` (they differ only in\n`ifun`) and its table, with one addition: Execute also evaluates\n$\\texttt{Cnd} = \\mathrm{Cond}(\\mathtt{CC}, \\mathtt{ifun})$, and Write-back happens\nonly when `Cnd` holds: the destination select `dstE` becomes `RNONE` on a failed\ncondition, so the write port idles and `rB` keeps its old value. The move is\nsquashed, not skipped: the instruction still spends its cycle and still falls\nthrough to `valP`.\n\n## Memory instructions: rmmovq and mrmovq\n\nThe memory instructions use the **Execute** stage as an address adder and give the\n**Memory** stage real work. `rmmovq rA, D(rB)` stores `R[rA]` to memory at\n$D + R[\\texttt{rB}]$; `mrmovq D(rB), rA` loads from the same address into `rA`. The\nALU adds the displacement `valC` to the base `valB` in both cases; the difference is\nonly the direction of the memory access and which register, if any, is written.\n\n$$\n% caption: rmmovq rA,D(rB) (left) and mrmovq D(rB),rA (right). Both add valC to valB\n% caption: in Execute to form the address. rmmovq writes valA to that address and\n% caption: writes no register; mrmovq reads valM from it and writes valM into rA.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % left table: rmmovq\n  \\node[anchor=west, text=acc] at (-2.6,0.95) {\\texttt{rmmovq rA,D(rB)}};\n  \\draw[acc!40] (-2.6,0.45) -- (5.3,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{valC} = M_8[\\mathtt{PC}{+}2]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}10$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{rA}]$;\\ $\\mathtt{valB} = R[\\mathtt{rB}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}+\\mathtt{valC}$},\n    -2.55\u002F{Memory}\u002F{$M_8[\\mathtt{valE}] = \\mathtt{valA}$},\n    -3.4\u002F{Write-back}\u002F{-},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (-0.1,\\y) {\\stage};\n    \\node[row] at (0.2,\\y) {\\comp};\n    \\draw[acc!40] (-2.6,\\y-0.42) -- (5.3,\\y-0.42);\n  }\n  % right table: mrmovq\n  \\node[anchor=west, text=acc] at (6.8,0.95) {\\texttt{mrmovq D(rB),rA}};\n  \\draw[acc!40] (6.8,0.45) -- (14.7,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{valC} = M_8[\\mathtt{PC}{+}2]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}10$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valB} = R[\\mathtt{rB}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}+\\mathtt{valC}$},\n    -2.55\u002F{Memory}\u002F{$\\mathtt{valM} = M_8[\\mathtt{valE}]$},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{rA}] = \\mathtt{valM}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (7.3,\\y) {\\stage};\n    \\node[row] at (7.6,\\y) {\\comp};\n    \\draw[acc!40] (6.8,\\y-0.42) -- (14.7,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\n`rmmovq` writes a register in no stage (its Write-back row is empty), while\n`mrmovq` writes `rA` from `valM`. Compare the two Memory rows: the same address\n`valE` appears on both, once as a write target, once as a read source: one address\ncomputation serves both directions.\n\nIt is worth running one table with real numbers, because the abstract rows hide how\nlittle arithmetic each stage does. Take `mrmovq 8(%rdx), %rax` with `%rdx = 0x200`\nand the eight bytes at address `0x208` holding the value `0x2a`. The bytes of the\ninstruction, laid out by the assembler, are `50 02` then the 8-byte displacement `08\n00 00 00 00 00 00 00`.\n\n$$\n% caption: mrmovq 8(%rdx),%rax traced with %rdx = 0x200 and M[0x208] = 0x2a. Fetch\n% caption: pulls valC = 8; Decode reads valB = 0x200; Execute adds to valE = 0x208;\n% caption: Memory reads valM = 0x2a from that address; Write-back stores it into %rax.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-2.6,0.45) -- (11.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{icode:ifun $=$ 5:0; rA:rB $=$ 0:2; valC $=$ 0x8; valP $=$ PC $+$ 10},\n    -0.85\u002F{Decode}\u002F{srcB $=$ rB $=$ \\%rdx: valB $=$ 0x200},\n    -1.7\u002F{Execute}\u002F{valE $=$ valB $+$ valC $=$ 0x200 $+$ 0x8 $=$ 0x208},\n    -2.55\u002F{Memory}\u002F{valM $= M_8[\\mathtt{0x208}] =$ 0x2a},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rax}] =$ valM $=$ 0x2a},\n    -4.25\u002F{PC update}\u002F{PC $=$ valP}} {\n    \\node[lbl] at (-0.1,\\y) {\\stage};\n    \\node[row] at (0.2,\\y) {\\comp};\n    \\draw[acc!40] (-2.6,\\y-0.42) -- (11.4,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nFive of the six rows carry a concrete value, and every one is forced by an earlier\nrow or by prior state: `valC = 0x8` came out of the instruction bytes, `valB = 0x200`\nwas already in `%rdx`, `valE = 0x208` is the one addition the ALU performs, and\n`valM = 0x2a` is what memory returned at that address. Nothing in the table is a\nchoice; the only decisions — _which_ register feeds `srcB`, _which_ ALU function runs,\n_whether_ memory reads — belong to the control logic of the next lesson. The stage\ntable is what the control logic must arrange to be true.\n\n## Stack instructions: pushq and popq\n\nThe stack instructions are where the ALU does an off-to-the-side adjustment of `%rsp`.\n**`pushq rA` decrements `%rsp` by 8, then stores `R[rA]` at the new top.**\n**`popq rA` reads the word at the current top, then increments `%rsp` by 8.** The\norder matters and the tables make it exact.\n\n$$\n% caption: pushq rA (left) decrements %rsp by 8 in Execute, then stores valA at the\n% caption: new top, and writes the decremented pointer back. popq rA (right)\n% caption: increments %rsp by 8 but reads from the OLD top (valA, the unincremented\n% caption: %rsp), writing both the incremented pointer (dstE) and the loaded word.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=west, text=acc] at (-2.7,0.95) {\\texttt{pushq rA}};\n  \\draw[acc!40] (-2.7,0.45) -- (5.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{rA{:}rB} = M_1[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}2$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{rA}]$;\\ $\\mathtt{valB} = R[\\mathtt{\\%rsp}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}$ - 8},\n    -2.55\u002F{Memory}\u002F{$M_8[\\mathtt{valE}] = \\mathtt{valA}$},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (-0.2,\\y) {\\stage};\n    \\node[row] at (0.1,\\y) {\\comp};\n    \\draw[acc!40] (-2.7,\\y-0.42) -- (5.4,\\y-0.42);\n  }\n  \\node[anchor=west, text=acc] at (6.9,0.95) {\\texttt{popq rA}};\n  \\draw[acc!40] (6.9,0.45) -- (15.0,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{rA{:}rB} = M_1[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}2$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{\\%rsp}]$;\\ $\\mathtt{valB} = R[\\mathtt{\\%rsp}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}+8$},\n    -2.55\u002F{Memory}\u002F{$\\mathtt{valM} = M_8[\\mathtt{valA}]$},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{valE}$;\\ $R[\\mathtt{rA}] = \\mathtt{valM}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valP}$}} {\n    \\node[lbl] at (7.0,\\y) {\\stage};\n    \\node[row] at (7.3,\\y) {\\comp};\n    \\draw[acc!40] (6.9,\\y-0.42) -- (15.0,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nBoth tables hide edge cases that surface exactly when `rA` is `%rsp` itself, and\nboth are resolved by reading the rows in order.\n\n> **Invariant (pushq %rsp pushes the old value).** `pushq %rsp` stores the value\n> `%rsp` held _before_ the instruction, not the decremented one. The table forces\n> this: Decode reads $\\texttt{valA} = R[\\texttt{\\%rsp}]$ before Execute computes the\n> decrement, and Memory stores `valA`. A design that pushed the decremented pointer\n> would be self-consistent too — the encoding does not decide — so this is a\n> specification choice, made to match x86-64's behavior.\n\n> **Invariant (popq %rsp loads, not increments).** `popq %rsp` leaves `%rsp` holding\n> the value read from memory. Its Write-back row writes `%rsp` twice — `valE` through\n> `dstE` and `valM` through `dstM` — and the definition says the `M` write wins. So\n> `popq %rsp` means \"load the top-of-stack word into `%rsp`\", and the increment is\n> discarded.\n\nFor every other `rA`, the two write ports of the register file are what let `popq`\nupdate `%rsp` (from `valE`) and `rA` (from `valM`) in the same cycle, the reason\nthe register file was built with two write ports at all.\n\n## Control transfer: jXX, call, ret\n\nThe control instructions are the ones that make `newPC` interesting. Start with the\njumps: `jXX Dest` carries the destination in `valC` and needs neither the register\nfile nor the ALU. Its whole Execute row is the evaluation of the branch condition\n$\\texttt{Cnd} = \\mathrm{Cond}(\\mathtt{CC}, \\mathtt{ifun})$ from the condition codes\nthat some earlier `OPq` left behind.\n\n$$\n% caption: The jXX Dest stage table. Fetch reads the 8-byte destination valC; Execute\n% caption: evaluates Cnd from the condition codes and ifun; nothing touches the\n% caption: register file or memory. PC update picks valC if Cnd holds, else valP.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-2.6,0.45) -- (9.4,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{icode{:}ifun} = M_1[\\mathtt{PC}]$;\\ $\\mathtt{valC} = M_8[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}9$},\n    -0.85\u002F{Decode}\u002F{-},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{Cnd} = \\mathrm{Cond}(\\mathtt{CC},\\mathtt{ifun})$},\n    -2.55\u002F{Memory}\u002F{-},\n    -3.4\u002F{Write-back}\u002F{-},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{Cnd}$ ? $\\mathtt{valC}$ : $\\mathtt{valP}$}} {\n    \\node[lbl] at (-0.1,\\y) {\\stage};\n    \\node[row] at (0.2,\\y) {\\comp};\n    \\draw[acc!40] (-2.6,\\y-0.42) -- (9.4,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\nThe seven conditions (`jmp` always, then `jle`, `jl`, `je`, `jne`, `jge`, `jg`) are\nBoolean functions of `ZF`, `SF`, `OF`, selected by `ifun`, the same `Cond` unit the\n`cmovXX` family uses, derived in the\n[next lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing).\nAn untaken jump is a `nop` that cost nine bytes: it computes `Cnd = 0` and falls\nthrough to `valP`.\n\n`call Dest` and `ret` complete the set. `call` pushes the return address `valP` and\njumps to `valC`; `ret` pops the return address into the PC.\n\n$$\n% caption: call Dest (left) decrements %rsp, stores the return address valP at the new\n% caption: top, and sets newPC to the call target valC. ret (right) reads valM from\n% caption: the current top, increments %rsp, and sets newPC to that loaded address.\n\\begin{tikzpicture}[font=\\footnotesize,\n  lbl\u002F.style={anchor=east, text=acc, font=\\scriptsize}, row\u002F.style={anchor=west}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[anchor=west, text=acc] at (-2.7,0.95) {\\texttt{call Dest}};\n  \\draw[acc!40] (-2.7,0.45) -- (5.5,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{valC} = M_8[\\mathtt{PC}{+}1]$;\\ $\\mathtt{valP}=\\mathtt{PC}{+}9$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valB} = R[\\mathtt{\\%rsp}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}$ - 8},\n    -2.55\u002F{Memory}\u002F{$M_8[\\mathtt{valE}] = \\mathtt{valP}$},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valC}$}} {\n    \\node[lbl] at (-0.2,\\y) {\\stage};\n    \\node[row] at (0.1,\\y) {\\comp};\n    \\draw[acc!40] (-2.7,\\y-0.42) -- (5.5,\\y-0.42);\n  }\n  \\node[anchor=west, text=acc] at (7.0,0.95) {\\texttt{ret}};\n  \\draw[acc!40] (7.0,0.45) -- (15.2,0.45);\n  \\foreach \\y\u002F\\stage\u002F\\comp in {\n    0\u002F{Fetch}\u002F{$\\mathtt{valP}=\\mathtt{PC}{+}1$},\n    -0.85\u002F{Decode}\u002F{$\\mathtt{valA} = R[\\mathtt{\\%rsp}]$;\\ $\\mathtt{valB} = R[\\mathtt{\\%rsp}]$},\n    -1.7\u002F{Execute}\u002F{$\\mathtt{valE}=\\mathtt{valB}+8$},\n    -2.55\u002F{Memory}\u002F{$\\mathtt{valM} = M_8[\\mathtt{valA}]$},\n    -3.4\u002F{Write-back}\u002F{$R[\\mathtt{\\%rsp}] = \\mathtt{valE}$},\n    -4.25\u002F{PC update}\u002F{$\\mathtt{PC} = \\mathtt{valM}$}} {\n    \\node[lbl] at (7.1,\\y) {\\stage};\n    \\node[row] at (7.4,\\y) {\\comp};\n    \\draw[acc!40] (7.0,\\y-0.42) -- (15.2,\\y-0.42);\n  }\n\\end{tikzpicture}\n$$\n\n`call` and `pushq` share their Execute and Memory shape — decrement `%rsp`, store at\nthe new top — but `call` stores `valP` (the return address) rather than a register\nvalue, and its `newPC` is `valC`, not `valP`. `ret` and `popq` are the mirror image:\nread from the old top, increment `%rsp`.\n\n`ret` deserves a slower look, because one byte of encoding drives more machinery\nthan any other instruction its size. It names no register, yet it uses `%rsp`\n**three times**: Decode reads it twice ($\\texttt{srcA}$ supplies the memory address,\n$\\texttt{srcB}$ the value to increment), and Write-back stores the incremented\npointer through `dstE`. On top of that it reads data memory at the _old_ top\n(`valA`, not `valE` — read the Memory row carefully) and commandeers the PC mux.\nThe single difference between `ret` and `popq` is the last row: `ret` sends `valM`\nto the PC, while `popq` sends it to a register and falls through to `valP`. That one\nmux input is the entire difference between \"return from a function\" and \"pop a\nvalue.\"\n\n## The vertical view: six stages, every instruction\n\nStacking the stages vertically, every instruction is the same column of six boxes —\nonly the contents of the boxes change. This shape mirrors how lesson 4 lays out the\ncomplete datapath: six horizontal bands, Fetch at the bottom, PC update at the top.\n\n$$\n% caption: The six SEQ stages as a single vertical column, the common skeleton of\n% caption: every Y86-64 instruction. The contents differ per instruction (the tables\n% caption: above); the order and the signal hand-off between stages never do.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  s\u002F.style={draw, fill=acc!8, minimum width=34mm, minimum height=10mm,\n            align=center, inner sep=2pt}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[s] (f) at (0,0)     {Fetch};\n  \\node[s] (d) at (0,-1.5)  {Decode};\n  \\node[s] (e) at (0,-3.0)  {Execute};\n  \\node[s] (m) at (0,-4.5)  {Memory};\n  \\node[s] (w) at (0,-6.0)  {Write-back};\n  \\node[s] (p) at (0,-7.5)  {PC update};\n  \\foreach \\a\u002F\\b in {f\u002Fd, d\u002Fe, e\u002Fm, m\u002Fw, w\u002Fp} \\draw[->] (\\a.south) -- (\\b.north);\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (1.9,-0.75) {icode, ifun, rA, rB, valC, valP};\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (1.9,-2.25) {valA, valB};\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (1.9,-3.75) {valE, Cnd};\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (1.9,-5.25) {valM};\n  \\node[anchor=west, font=\\scriptsize, text=acc] at (1.9,-6.75) {(register state)};\n\\end{tikzpicture}\n$$\n\n## Stage tables as the ancestor of micro-ops\n\nA stage table is a claim that every instruction, however different its surface\nsyntax, decomposes into the _same_ small vocabulary of primitive steps: a register\nread, one ALU operation, at most one memory access, a register write, a PC choice.\nThat decomposition is also how real high-performance processors run a complicated\ninstruction set.\n\nModern x86-64 cores do not execute their sprawling CISC instructions directly.\nInstead, the front end **cracks** each architectural instruction into a sequence of\nuniform internal operations, the \"micro-operations\" (µops) mentioned in CS:APP's RISC\nversus CISC aside (Bryant & O'Hallaron, _CS:APP_ §4.1) and developed in its treatment\nof modern processors (§5.7). A Y86-64 `pushq` already shows the pattern in miniature:\nits stage table is \"subtract 8, then store,\" which is exactly two µops' worth of work\nriding on one instruction. On a real x86 machine, an instruction with a\nmemory-operand-and-arithmetic form similarly expands into a load µop, an ALU µop, and\nsometimes a store µop — each of which looks like one filled-in row of a stage table.\nThe back end then schedules these uniform µops out of order across duplicated\nfunctional units. The reason the translation is even possible is the reason stage\ntables are worth writing: once you have reduced every instruction to a fixed sequence\nof primitive stage operations, the hardware that carries out any one primitive can be\nbuilt once and shared by all. The SEQ tables are that reduction done by hand, for a\nsmall enough ISA that the whole vocabulary fits on a page.\n\n> **Takeaway.** Every Y86-64 instruction flows through the same six stages, and a\n> stage table records what each stage computes for it. The recurring traps are\n> small and exact: `OPq` computes `valB OP valA` and writes `rB`; the moves pass\n> their value through the ALU by adding 0; `pushq` decrements `%rsp` then stores the\n> _old_ value while `popq` reads the old top then increments; `popq %rsp` keeps the\n> loaded word; `jXX` touches nothing but `valC` and `Cnd`; `call` stores `valP` and\n> jumps to `valC` while `ret` uses `%rsp` three times and loads `valM` into the PC.\n> These tables are the processor's specification — the rest of the module turns\n> them into wires.\n\nWith every instruction's stage table fixed, the\n[next lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing)\nderives the control signals — `srcA`, `dstE`, the ALU function, the memory\ncontrols, `newPC` — that select among these computations from `icode` alone.\n",{"text":2366,"minutes":2367,"time":2368,"words":2369},"10 min read",9.225,553500,1845,{"title":147,"description":2357},[2372,2375],{"book":2373,"ref":2374},"Bryant & O'Hallaron","CS:APP — §4.3 Sequential Y86-64 Implementations",{"book":2376,"ref":2377},"Bistriceanu","Computer Architecture Notes — §5 CPU Implementation (Executing an instruction; Hardwired control)","available","03.computer-architecture\u002F04.processor-design\u002F02.the-seq-stages",[138],"nQ7AQQgYpqO0e7n1Eg4B_37lT7aHZNVv5iBY_tnTfZM",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":2383,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2384,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2385,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2386,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2387,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2388,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2389,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2390,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2391,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2392,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2393,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2394,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2395,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2396,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2397,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2398,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2399,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2400,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2401,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2402,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2403,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2404,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2405,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2406,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2407,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2408,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2409,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2410,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2411,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2412,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2413,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2414,"\u002Falgorithms\u002Fsequences\u002Ftries":2415,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2416,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2417,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2418,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2419,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2420,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2421,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2422,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2423,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2424,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2425,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2426,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2427,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2428,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2429,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2430,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2431,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2432,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2433,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2434,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2435,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2436,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2437,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2438,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2439,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2440,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2441,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2442,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2443,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2444,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2445,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2446,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2447,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2448,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2449,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2450,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2451,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2452,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2453,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2454,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2455,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2456,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2457,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2458,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2459,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2460,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2461,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2462,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2463,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":2464,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":2465,"\u002Falgorithms":2466,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":2467,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":2468,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":2469,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":2470,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":2471,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":2472,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":2473,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":2474,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":2475,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":2476,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":2477,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":2478,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":2479,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":2480,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":2481,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":2482,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":2483,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":2484,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":2485,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":2486,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":2487,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":2488,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":2489,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":2490,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":2491,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":2492,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":2493,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":2494,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":2495,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":2496,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":2497,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":2498,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":2499,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":2500,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":2481,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":2501,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":2502,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":2503,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":2471,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":2504,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":2505,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":2506,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":2507,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":2508,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":2509,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":2510,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":2511,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":2512,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":2513,"\u002Fcalculus":2514,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":2515,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":2516,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":2517,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":2518,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":2519,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":2520,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":2521,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":2522,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":2523,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":2524,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":2525,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":2526,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":2527,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":2528,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":2529,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":2530,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":2531,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":2532,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":2533,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":2534,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":2535,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":2536,"\u002Fmechanics\u002Frotation\u002Frolling-motion":2537,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":2538,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":2539,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":2540,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":2541,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":2542,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":2543,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":2544,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":2545,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":2546,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":2547,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":2548,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":2549,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":2550,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":2551,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":2552,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":2553,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":2554,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":2555,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":2556,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":2557,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":2558,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":2559,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":2560,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":2561,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":2562,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":2563,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":2564,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":2565,"\u002Fmechanics":2566,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":2567,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":2568,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":2569,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":2570,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":2571,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":2572,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":2573,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":2574,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":2575,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":2576,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":2577,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":2578,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":2555,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":2579,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":2580,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":2581,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":2551,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":2416,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":2582,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":2542,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":2583,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":2584,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":2585,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":2586,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":2587,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":2588,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":2589,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":2590,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":2591,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":2516,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":2592,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":2593,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":2594,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":2595,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":2596,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":2597,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":2598,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":2599,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":2534,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":2533,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":2600,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":2601,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":2602,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":2603,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":2604,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":2605,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":2606,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":2607,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":2608,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":2560,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":2558,"\u002Felectricity-and-magnetism":2609,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":2610,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":2611,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":2612,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":2613,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":2614,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":2615,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":2616,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":2617,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":2618,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":2468,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":2619,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":2620,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":2472,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":2621,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":2622,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":2623,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":2624,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":2625,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":2626,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2627,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2628,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2629,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2630,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2631,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2632,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2633,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2634,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2635,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2636,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2637,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2638,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2639,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2640,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":2507,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2641,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2642,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2643,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2644,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2645,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2646,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2647,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2648,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2649,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2650,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2651,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2652,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2653,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2654,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2655,"\u002Flinear-algebra":2656,"\u002Ftheory-of-computation":2657,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2658,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2659,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2660,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2661,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2662,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2663,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2664,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2665,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2666,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2667,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2668,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2669,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2670,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2671,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2672,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2673,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2674,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2675,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2676,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2677,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2678,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2679,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2680,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2369,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2681,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2682,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2683,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2684,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2685,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2686,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2687,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2688,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2689,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2690,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2691,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2692,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2693,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2694,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2695,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2696,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2697,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2698,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2699,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2700,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2701,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2702,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2703,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2704,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":2705,"\u002Fcomputer-architecture":2657,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2706,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2707,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2708,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":2472,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2709,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":2471,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":2478,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2710,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2711,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":2512,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2712,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2713,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2714,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2715,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2716,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2717,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2718,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2719,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2720,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2721,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2722,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2723,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2718,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2724,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2725,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2726,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2727,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2728,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2729,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2730,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2731,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2732,"\u002Fdifferential-equations":2733,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2734,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2735,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2736,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2737,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":2617,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2738,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2739,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2740,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2741,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2742,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2743,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":2487,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2744,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2745,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2746,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2747,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2748,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2749,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2750,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2751,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2752,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2753,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2708,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2754,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2755,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2756,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2757,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":2758,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2638,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2759,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2760,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2648,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2761,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2762,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2763,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2764,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2765,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2766,"\u002Frelativity":2767,"\u002Fphysical-computing":2657,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2768,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2747,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2769,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2770,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2771,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2772,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2773,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2774,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2775,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2723,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2648,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2776,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2777,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2778,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2779,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2775,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2780,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2755,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":2509,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2781,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2782,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":2489,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2783,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2784,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2785,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2786,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2787,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2788,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2789,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2790,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2791,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2747,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2792,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2793,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2794,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2781,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":2470,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2795,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2796,"\u002Fquantum-mechanics":2797,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2731,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2798,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2799,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":2621,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2800,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":2507,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2801,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2802,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2644,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2753,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2803,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2804,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2805,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2806,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2807,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2780,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2808,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":2614,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2809,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2810,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":2468,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2811,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2812,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2769,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":2497,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2648,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2813,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2814,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2633,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2757,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2815,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2816,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2817,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2653,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2818,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2819,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2820,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2820,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2821,"\u002Freal-analysis":2822,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2823,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2824,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2825,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2826,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2827,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2828,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2829,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2830,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2831,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2832,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2796,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2833,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2825,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2742,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2834,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2835,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2836,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2837,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2838,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2839,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2840,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2841,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2835,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2842,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2811,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2843,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2844,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2845,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2846,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2847,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2848,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2849,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2850,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2851,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2852,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":2486,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2853,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2854,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2727,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2855,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2856,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2784,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2856,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2857,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2858,"\u002Fabstract-algebra":2859,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2860,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2861,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2862,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2863,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2864,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2776,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2865,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2866,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2867,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2868,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2869,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2870,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2871,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":2611,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2739,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":2486,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2872,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":2470,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2873,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2874,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":2508,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2801,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2875,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2876,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2877,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2878,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2879,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2880,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2881,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2882,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2883,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2884,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2885,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2886,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2887,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2888,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2832,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2889,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2890,"\u002Fatomic-physics":2891,"\u002Fdatabases":2657,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2892,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2893,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2894,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2823,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2895,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2896,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2897,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2898,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2899,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2900,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2901,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2902,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2903,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2904,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2905,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2906,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2907,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2908,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2909,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2910,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2911,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2912,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2913,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2914,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2905,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2915,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2916,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2917,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2918,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2919,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2864,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2920,"\u002Fcategory-theory":2921,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2922,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2923,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2924,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2925,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2926,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2927,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2886,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2928,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2929,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2930,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2931,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2932,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2933,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2934,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2935,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2936,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2937,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2938,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2939,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2940,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2941,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2942,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2943,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2944,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2945,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2946,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2947,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2948,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2949,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2950,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2951,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2952,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2953,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2954,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2898,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2955,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2956,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2957,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2958,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2959,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2960,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2961,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":2451,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2962,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2963,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2686,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2964,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2965,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2966,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2967,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2968,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2969,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2970,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2971,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2972,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2973,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2974,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2975,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2660,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2976,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2977,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2978,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2979,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2696,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2980,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2981,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2982,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2983,"\u002Fdeep-learning":2657,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2984,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2781,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2985,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2986,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2987,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2988,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2989,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2990,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2991,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2992,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2828,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2993,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2994,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2995,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2715,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":2509,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2996,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2997,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2998,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2643,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2999,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":3000,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2720,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2648,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":3001,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":2617,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":2487,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":2503,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":3002,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":3003,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":3004,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2635,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":3005,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":2497,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":3006,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":3007,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3008,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":3009,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2830,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":3010,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":3011,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":3012,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":3013,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2776,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":3014,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2754,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":3015,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":2616,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":3016,"\u002Fstatistical-mechanics":3017,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":3018,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":2482,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2741,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":3019,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":3020,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":3021,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":3022,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":3023,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":3024,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":2615,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":3025,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":3026,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":3027,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":3028,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2757,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":3029,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":3030,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":3031,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":3032,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":3033,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2812,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2756,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":3034,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":3035,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":3036,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":3037,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2747,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":3038,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":3039,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2984,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2884,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":2612,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":3040,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":2478,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":3041,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":3042,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":2623,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":3043,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2877,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":3044,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":2470,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":3045,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":2481,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":3046,"\u002Fcondensed-matter":2797,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":3047,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":3048,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":3049,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":3050,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":2495,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":3051,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":3052,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":2495,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":3053,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2907,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":3054,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":3055,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":3056,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":3054,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":3057,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":3058,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":3059,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":3060,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":3061,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":3062,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":3063,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":3064,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2985,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":3065,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":3058,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":3066,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":3067,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2700,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":3068,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2885,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":3069,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":3070,"\u002Flogic":3071,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":3072,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":3073,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2686,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":3074,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":3075,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":3076,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":3077,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":3067,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":3078,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":3079,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":3080,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2978,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":3081,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":3082,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":3083,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":3084,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":3085,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2703,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":3086,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":3087,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":3088,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":3089,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2894,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":3090,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":3066,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":3091,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":3092,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":3093,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2714,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":3094,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2844,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":3095,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":3096,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2677,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":3097,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":3098,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":3099,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":3100,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":3101,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2954,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":3102,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":3103,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":3104,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2989,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":3105,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":3106,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":3107,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2703,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2770,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":3108,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":3109,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":3110,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":3111,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":3112,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":3113,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":3114,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":3115,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":3116,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":3117,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":3118,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":3119,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":3120,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":3121,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":3122,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":3123,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":3124,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":3125,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":3126,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":3127,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":3128,"\u002Freinforcement-learning":2657,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":3129,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":3130,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":3131,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":3132,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":3133,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":3134,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":3135,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":3136,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":3137,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":3138,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":3139,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":3140,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":3141,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2983,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2838,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":3142,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":3143,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":3144,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":3145,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":3146,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":3147,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2965,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":3148,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":3149,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":3150,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":3151,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":3152,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":3153,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":3154,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":3155,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":3156,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":3157,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":3158,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":3159,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2897,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":3149,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":3160,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":2438,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":3161,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":3162,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":3163,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":3164,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":3165,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2946,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":3166,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":3167,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":3168,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":3169,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":3170,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":3171,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":3172,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":3173,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":3174,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":3175,"\u002Fartificial-intelligence":2657,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2913,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":3176,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":2474,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":2472,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":3007,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":3177,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":2500,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2809,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":3178,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":3179,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":3180,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2869,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":3181,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":3182,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":3183,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":3068,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":3184,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":3185,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":2484,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2712,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":3186,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2813,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":3187,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":3188,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2708,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2796,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":3189,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":3190,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":3191,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":2479,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2853,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2715,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":3192,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2763,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2827,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":3193,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":3194,"\u002Fnuclear-physics":3195,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":3196,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":3197,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2834,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":3198,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":3199,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":3200,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2682,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":3201,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":3202,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2979,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":3203,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":3148,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":3204,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":3205,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":3206,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":3207,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":3208,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":3209,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":3210,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2661,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":3211,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":3212,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":3154,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":3213,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":3214,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":3215,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":3216,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":3217,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":3218,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":3219,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":3220,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":3078,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":3221,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":3222,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":3223,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":3224,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":3225,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":3226,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":3227,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":3228,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":3229,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":3230,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":3231,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":3232,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2932,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":3099,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2688,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":3233,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":3234,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":3235,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":3236,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2946,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":3237,"\u002Fnatural-language-processing":2657,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":3238,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2854,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":3239,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2999,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":3240,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":3241,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":3189,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":3242,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":3243,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2804,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":2507,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":3244,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":2758,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":3245,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2791,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":3246,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":3045,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":3247,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":3248,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":3014,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":3249,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":2478,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":3250,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":3251,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":3252,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2795,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":3011,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":3253,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":3254,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2870,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":3255,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2915,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":3256,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":3257,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2804,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2837,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":3258,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":3259,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":3260,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2893,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":3261,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2635,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":3262,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2737,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":3263,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":3264,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":3061,"\u002Fparticle-physics":3265,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2855,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":3009,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":3266,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2794,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":3267,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2854,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2766,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":3268,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":3269,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":3270,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":3271,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":3272,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":3060,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2991,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":3273,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":3274,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":3275,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":3276,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":3188,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":3277,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2750,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2813,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2795,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":3278,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2879,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":2496,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":3279,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":3280,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":3010,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":3281,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":3282,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":3283,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":3284,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":2477,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":3285,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":3286,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2737,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":3287,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":3288,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":3003,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2659,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":3289,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":3290,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2915,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2901,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2913,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":3010,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":3291,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":2476,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2668,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":3292,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2754,"\u002Fastrophysics-cosmology":2859,"\u002Fcolophon":3293,"\u002F":2657},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,3152,1799,1670,1027,960,1095,1291,986,897,1209,1055,1817,1801,1593,1465,1196,1464,1201,1230,1435,1684,1461,1926,1500,1409,1284,1774,1869,162,1487,1122,1188,1001,1351,982,1005,979,1325,1046,943,1279,824,1008,989,1798,1277,1025,987,1043,1211,1074,981,939,1002,739,1139,1108,1013,1070,978,1458,1317,157,1357,1077,2355,1116,1037,1178,1637,1314,1109,1056,1702,1474,1071,1158,832,993,1404,1024,1068,1339,1106,1264,1248,913,1848,1328,1633,1224,1143,135,1378,959,1028,998,911,1527,1203,1266,1483,1165,990,938,965,1257,1418,1099,942,1352,956,1035,1398,1003,1094,1292,138,1721,1827,1449,1354,1148,1184,1285,1281,1213,1290,1271,1252,1274,1778,1591,1503,1437,1571,1584,1957,1117,1781,1648,1342,1667,1510,1965,1607,1365,1849,1259,1303,1356,1238,2208,1564,173,1671,1286,1227,1638,1529,668,1078,918,709,865,880,940,1534,1015,874,922,841,794,1194,822,1105,1658,1359,1296,1438,1921,1844,1570,1429,1324,1400,140,1787,1558,1654,1492,1747,2224,2002,2009,1323,1349,1785,1573,1722,1829,1353,1548,1552,1583,1624,1585,1245,1364,1514,1343,1397,1355,2211,1481,1770,160,2388,2293,2256,2552,2569,2478,2039,2496,2578,2814,2519,2461,2587,2492,2714,3278,2654,3050,2447,2849,2238,2369,2061,2214,2602,2563,2186,2985,2749,3364,2038,2282,2409,2126,2573,2206,2176,2268,2182,2402,2705,2633,2414,2213,2801,3313,3410,3195,1952,2017,1509,2537,2645,2027,2415,2838,2356,1906,3184,2950,2807,2954,1683,1316,1034,1138,1763,1822,1705,1246,1701,1097,1104,1187,1032,1083,1228,916,1489,1033,1652,997,692,837,1023,888,864,1089,1231,1214,1675,1156,1075,1520,1309,139,1205,1051,735,1123,1072,915,567,768,825,1253,983,1007,762,1058,861,862,971,1208,1149,1145,1029,1084,927,810,838,857,807,936,949,2321,1622,1069,1113,1057,854,1958,1528,1618,2049,1432,1679,1796,1685,1346,1275,1476,1505,1610,2018,1599,1215,1838,1909,132,3902,2215,2240,3266,3208,3073,2454,2969,2451,1875,2728,1884,2371,2516,2842,1690,1904,2346,3146,1386,2607,1966,2668,1665,2885,1606,2577,3074,2869,2403,2433,2082,1939,1587,2460,2747,2032,2642,1619,3123,1993,2090,2339,3829,1737,2622,2340,2322,3828,4409,2305,3411,2510,4527,3030,3569,3043,2457,1946,2277,2044,2909,1693,1945,2093,2399,2115,2898,2742,2242,3895,3378,3376,2769,2223,3062,3262,2651,2949,2768,3128,2423,1977,2087,2866,3388,2830,2210,2489,2884,3945,2099,2713,3402,1692,2931,4195,3989,3206,4391,3004,3704,3494,2902,999,881,901,919,748,869,1018,1045,1049,1333,954,1092,1019,976,1771,1480,1396,953,1026,161,3533,2495,1818,3007,2595,3427,3537,2216,1895,2304,3396,1739,2073,1962,2203,1767,2666,2264,2276,2852,1807,3735,1560,4144,1669,1676,1972,2418,3291,1525,2040,2766,2337,2220,2800,3001,2078,1759,2836,1896,2026,1758,1543,1047,896,946,1060,1384,1482,815,1414,1322,1440,1240,1468,1098,1133,847,1009,1381,1052,1191,1258,1370,1712,1441,1199,957,1079,150,1262,1417,1368,1219,1136,1064,1463,1636,1059,931,1115,1736,1174,1376,1363,1411,1247,1746,1313,1299,1617,1102,1076,1495,1265,1193,1263,80,{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":3295,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":3299,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":3303,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":3307,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":3311,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":3315,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":3319,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":3324,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":3328,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":3332,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":3336,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":3341,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":3345,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":3349,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":3353,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":3358,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":3362,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":3366,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":3370,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":3374,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":3378,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":3382,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":3386,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":3390,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":3394,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":3398,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":3402,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":3407,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":3411,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":3415,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":3419,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":3423,"\u002Falgorithms\u002Fsequences\u002Ftries":3427,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":3431,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":3435,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":3440,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":3444,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":3448,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":3452,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":3456,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":3460,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":3464,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":3468,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":3472,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":3476,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":3480,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":3484,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":3488,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":3492,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":3497,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":3501,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":3505,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":3509,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":3513,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":3518,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":3522,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":3526,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":3530,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":3534,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":3538,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":3542,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":3546,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":3550,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":3554,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":3558,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":3563,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":3567,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":3571,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":3575,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":3580,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":3584,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":3588,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":3592,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":3596,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":3600,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":3604,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":3609,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":3613,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":3617,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":3621,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":3626,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3630,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3634,"\u002Falgorithms":3638,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3641,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3646,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3650,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3654,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3658,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3663,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3667,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3671,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3675,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3680,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3684,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3688,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3692,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3697,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3701,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3705,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3710,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3714,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3718,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3723,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3727,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3731,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3736,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3740,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3744,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3748,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3753,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3757,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3761,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3766,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3770,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3774,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3778,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3782,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3787,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3791,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3795,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3799,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3803,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3808,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3811,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3815,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3819,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3823,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3828,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3832,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3836,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3840,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3844,"\u002Fcalculus":3848,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3851,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3855,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3859,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3864,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3868,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3872,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3876,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3880,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3885,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3889,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3893,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3897,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3901,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3906,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3910,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3914,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3918,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3922,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3927,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3931,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3935,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3940,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3944,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3948,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3952,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3956,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3960,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3965,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3969,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3973,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3977,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3981,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3985,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3989,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3994,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3998,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":4002,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":4006,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":4010,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":4014,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":4018,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":4022,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":4026,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":4030,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":4034,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":4038,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":4043,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":4047,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":4051,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":4055,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":4059,"\u002Fmechanics":4063,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":4066,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":4071,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":4075,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":4079,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":4083,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":4087,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":4092,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":4096,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":4101,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":4105,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":4109,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":4113,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":4117,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":4122,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":4126,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":4130,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":4134,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":4139,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":4143,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":4147,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":4152,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":4156,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":4160,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":4164,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":4168,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":4173,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":4177,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":4181,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":4185,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":4189,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":4193,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":4198,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":4202,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":4206,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":4210,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":4214,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":4218,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":4222,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":4226,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":4231,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":4235,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":4239,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":4243,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":4247,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":4252,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":4256,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":4260,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":4264,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":4268,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":4273,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":4277,"\u002Felectricity-and-magnetism":4281,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":4284,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":4289,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":4293,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":4297,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":4301,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":4305,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":4310,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":4314,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":4318,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":4322,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":4326,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":4331,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":4335,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":4339,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":4344,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":4348,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":4352,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":4356,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":4360,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":4364,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":4368,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":4373,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":4377,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":4381,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":4385,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":4389,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":4393,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":4397,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":4402,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":4406,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":4410,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":4414,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":4418,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":4422,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":4427,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":4431,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":4435,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":4439,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":4443,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":4448,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":4452,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":4456,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":4460,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":4464,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":4468,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":4473,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":4477,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":4481,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":4485,"\u002Flinear-algebra":4489,"\u002Ftheory-of-computation":4492,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":4495,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":4496,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":4497,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":4498,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":4499,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":4500,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":4501,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":4502,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":4503,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":4504,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":4505,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":4506,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":4507,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":4508,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":4509,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":4510,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":4511,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":4512,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":4513,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":4514,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":4515,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":4516,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":4517,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":4518,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":4519,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":4520,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":4521,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":4522,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":4523,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":4524,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":4525,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":4526,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":4527,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":4528,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":4529,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":4530,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":4531,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":4532,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":4533,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":4534,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":4535,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":4536,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":4537,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":4538,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":4539,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":4540,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":4541,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":4542,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":4543,"\u002Fcomputer-architecture":4544,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":4547,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":4551,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":4555,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":4560,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":4564,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":4568,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":4572,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":4576,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":4580,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":4585,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":4589,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":4593,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":4597,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":4601,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":4605,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":4610,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":4614,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":4618,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":4623,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":4627,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4632,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4636,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4640,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4645,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4649,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4654,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4658,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4662,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4667,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4671,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4675,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4680,"\u002Fdifferential-equations":4684,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4687,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4692,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4696,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4700,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4704,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4708,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4713,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4717,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4721,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4725,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4730,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4734,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4738,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4742,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4747,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4751,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4755,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4759,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4764,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4768,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4772,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4776,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4780,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4784,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4789,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4793,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4797,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4802,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4806,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4810,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4814,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4819,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4823,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4827,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4832,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4836,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4840,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4845,"\u002Frelativity":4849,"\u002Fphysical-computing":4852,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4855,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4860,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4864,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4868,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4872,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4877,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4881,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4885,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4890,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4894,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4898,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4902,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4906,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4910,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4915,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4919,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4923,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4927,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4931,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4935,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4940,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4944,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4948,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4952,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4956,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4960,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4964,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4969,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4973,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4977,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4982,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4986,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4990,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4995,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4999,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":5004,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":5008,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":5012,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":5016,"\u002Fquantum-mechanics":5020,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":5023,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":5028,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":5032,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":5036,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":5040,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":5045,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":5049,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":5053,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":5057,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":5061,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":5065,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":5070,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":5074,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":5078,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":5082,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":5086,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":5090,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":5094,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":5098,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":5102,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":5106,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":5110,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":5115,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":5119,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":5123,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":5127,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":5132,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":5136,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":5140,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":5143,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":5147,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":5152,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":5156,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":5160,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":5164,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":5169,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":5173,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":5177,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":5181,"\u002Freal-analysis":5185,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":5188,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":5192,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":5196,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":5201,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":5205,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":5209,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":5213,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":5218,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":5222,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":5226,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":5230,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":5234,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":5238,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":5243,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":5247,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":5251,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":5255,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":5260,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":5264,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":5268,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":5272,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":5277,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":5281,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":5285,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":5290,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":5294,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":5298,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":5302,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":5307,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":5311,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":5315,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":5319,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":5324,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":5328,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":5332,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":5337,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":5341,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":5345,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":5349,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":5354,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":5358,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":5362,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":5366,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":5370,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":5375,"\u002Fabstract-algebra":5379,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":5382,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":5387,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":5391,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":5395,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":5399,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":5403,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":5408,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":5412,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":5416,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":5420,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":5424,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":5428,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":5432,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":5437,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":5441,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":5445,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":5449,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":5454,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":5458,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":5462,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":5467,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":5471,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":5475,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":5479,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":5483,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":5487,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":5492,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":5496,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":5500,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":5505,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":5509,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":5513,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":5517,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":5522,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":5526,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":5530,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":5535,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":5539,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":5543,"\u002Fatomic-physics":5547,"\u002Fdatabases":5550,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":5553,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":5557,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":5561,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":5565,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":5569,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":5573,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":5577,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":5582,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":5586,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":5590,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":5595,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":5599,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":5603,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":5608,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":5612,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":5616,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":5620,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":5624,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5629,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5633,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5637,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5641,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5646,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5650,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5654,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5658,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5663,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5667,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5671,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5675,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5680,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5684,"\u002Fcategory-theory":5688,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5691,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5695,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5699,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5703,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5706,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5710,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5714,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5718,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5723,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5727,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5731,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5735,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5739,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5744,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5748,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5752,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5756,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5760,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5765,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5769,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5773,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5777,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5782,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5786,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5790,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5794,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5798,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5802,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5806,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5810,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5814,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5819,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5823,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5827,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5831,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5835,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5840,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5844,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5848,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5852,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5856,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5860,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5864,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5869,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5873,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5877,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5882,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5886,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5890,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5894,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5898,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5902,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5906,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5911,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5915,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5919,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5923,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5927,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5931,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5935,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5939,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5943,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5947,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5951,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5956,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5960,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5964,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5968,"\u002Fdeep-learning":5972,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5975,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5979,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5983,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5987,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5991,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5995,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":6000,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":6004,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":6008,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":6012,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":6017,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":6021,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":6025,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":6029,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":6034,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":6038,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":6042,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":6046,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":6050,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":6055,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":6059,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":6063,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":6068,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":6072,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":6076,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":6081,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":6085,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":6089,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":6093,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":6098,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":6102,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":6106,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":6110,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":6114,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":6118,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":6123,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":6127,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":6131,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":6135,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":6140,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":6144,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":6148,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":6153,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":6157,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":6161,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":6165,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":6169,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":6174,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":6178,"\u002Fstatistical-mechanics":6182,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":6185,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":6190,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":6194,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":6198,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":6202,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":6207,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":6211,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":6215,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":6219,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":6224,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":6228,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":6232,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":6236,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":6241,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":6245,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":6249,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":6253,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":6258,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":6262,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":6266,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":6270,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":6275,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":6279,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":6283,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":6287,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":6292,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":6296,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":6300,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":6304,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":6308,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":6313,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":6317,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":6322,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":6326,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":6330,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":6334,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":6339,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":6343,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":6347,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":6351,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":6355,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":6360,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":6364,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":6368,"\u002Fcondensed-matter":6372,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":6375,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":6379,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":6384,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":6388,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":6392,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":6396,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":6400,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":6404,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":6408,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":6413,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":6417,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":6421,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":6425,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":6430,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":6434,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":6438,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":6442,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":6447,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":6451,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":6455,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":6459,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":6464,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":6468,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":6472,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":6476,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":6481,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":6485,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":6489,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":6494,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":6498,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":6503,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":6507,"\u002Flogic":6511,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":6514,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":6518,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":6522,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":6526,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":6530,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":6534,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":6538,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":6542,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":6546,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":6550,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":6554,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":6558,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":6562,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":6566,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":6570,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":6574,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":6578,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":6582,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":6586,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":6591,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":6595,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":6599,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":6603,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":6607,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":6611,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":6615,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":6619,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":6623,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":6627,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6631,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6635,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6639,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6643,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6647,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6651,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6655,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6659,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6663,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6667,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6671,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6675,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6680,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6684,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6688,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6692,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6696,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6700,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6704,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6708,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6712,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6716,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6720,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6724,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6728,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6732,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6736,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6740,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6744,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6748,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6752,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6756,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6760,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6764,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6769,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6773,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6777,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6781,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6785,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6789,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6793,"\u002Freinforcement-learning":6797,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6799,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6803,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6807,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6811,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6815,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6820,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6824,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6828,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6832,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6836,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6840,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6844,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6848,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6852,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6856,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6860,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6864,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6869,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6873,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6877,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6881,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6885,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6889,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6893,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6897,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6901,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6905,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6909,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6913,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6918,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6922,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6926,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6930,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6934,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6938,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6942,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6945,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6949,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6953,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6958,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6962,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6966,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6970,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6973,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6977,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6981,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6985,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6990,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6994,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6998,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":7002,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":7006,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":7010,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":7014,"\u002Fartificial-intelligence":7018,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":7021,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":7026,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":7030,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":7034,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":7038,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":7042,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":7047,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":7051,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":7055,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":7059,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":7064,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":7068,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":7072,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":7076,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":7081,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":7085,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":7090,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":7094,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":7099,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":7103,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":7107,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":7111,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":7116,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":7120,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":7124,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":7129,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":7133,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":7137,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":7142,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":7146,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":7151,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":7155,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":7159,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":7164,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":7168,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":7172,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":7176,"\u002Fnuclear-physics":7180,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":7183,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":7187,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":7191,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":7195,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":7199,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":7203,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":7208,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":7212,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":7216,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":7220,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":7225,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":7229,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":7233,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":7237,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":7241,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":7245,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":7249,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":7252,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":7255,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":7259,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":7263,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":7267,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":7272,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":7276,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":7280,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":7284,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":7288,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":7292,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":7296,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":7300,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":7304,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":7308,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":7312,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":7316,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":7320,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":7324,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":7328,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":7332,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":7336,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":7340,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":7344,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":7348,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":7352,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":7356,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":7360,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":7364,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":7368,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":7372,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":7376,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":7380,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":7385,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":7389,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":7393,"\u002Fnatural-language-processing":7397,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":7400,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":7404,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":7408,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":7412,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":7417,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":7421,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":7425,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":7429,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":7434,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":7438,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":7442,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":7446,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":7451,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":7455,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":7459,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":7463,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":7468,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":7472,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":7476,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":7481,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":7485,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":7489,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":7493,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":7498,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":7502,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":7506,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":7510,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":7515,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":7519,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":7523,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":7527,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":7532,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":7536,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":7540,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":7544,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":7548,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":7553,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":7557,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":7561,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":7566,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":7570,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":7574,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":7578,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":7582,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":7586,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":7590,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":7594,"\u002Fparticle-physics":7598,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":7601,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":7606,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":7610,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":7614,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":7619,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":7623,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":7627,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7631,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7636,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7640,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7644,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7648,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7653,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7657,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7661,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7665,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7670,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7674,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7678,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7682,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7687,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7691,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7695,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7700,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7704,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7708,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7712,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7716,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7720,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7724,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7728,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7732,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7737,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7741,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7745,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7749,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7754,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7758,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7762,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7766,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7770,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7775,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7779,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7782,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7786,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7790,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7795,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7799,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7803,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7807,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7811,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7815,"\u002Fastrophysics-cosmology":7819,"\u002Fcolophon":7822,"\u002F":7825},{"path":3296,"title":3297,"module":5,"summary":3298},"\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":3300,"title":3301,"module":5,"summary":3302},"\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":3304,"title":3305,"module":5,"summary":3306},"\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":3308,"title":3309,"module":5,"summary":3310},"\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":3312,"title":3313,"module":5,"summary":3314},"\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":3316,"title":3317,"module":5,"summary":3318},"\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":3320,"title":3321,"module":3322,"summary":3323},"\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":3325,"title":3326,"module":3322,"summary":3327},"\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":3329,"title":3330,"module":3322,"summary":3331},"\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":3333,"title":3334,"module":3322,"summary":3335},"\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":3337,"title":3338,"module":3339,"summary":3340},"\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":3342,"title":3343,"module":3339,"summary":3344},"\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":3346,"title":3347,"module":3339,"summary":3348},"\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":3350,"title":3351,"module":3339,"summary":3352},"\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":3354,"title":3355,"module":3356,"summary":3357},"\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":3359,"title":3360,"module":3356,"summary":3361},"\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":3363,"title":3364,"module":3356,"summary":3365},"\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":3367,"title":3368,"module":3356,"summary":3369},"\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":3371,"title":3372,"module":3356,"summary":3373},"\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":3375,"title":3376,"module":3356,"summary":3377},"\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":3379,"title":3380,"module":3356,"summary":3381},"\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":3383,"title":3384,"module":3356,"summary":3385},"\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":3387,"title":3388,"module":3356,"summary":3389},"\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":3391,"title":3392,"module":3356,"summary":3393},"\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":3395,"title":3396,"module":3356,"summary":3397},"\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":3399,"title":3400,"module":3356,"summary":3401},"\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":3403,"title":3404,"module":3405,"summary":3406},"\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":3408,"title":3409,"module":3405,"summary":3410},"\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":3412,"title":3413,"module":3405,"summary":3414},"\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":3416,"title":3417,"module":3405,"summary":3418},"\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":3420,"title":3421,"module":3405,"summary":3422},"\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":3424,"title":3425,"module":3405,"summary":3426},"\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":3428,"title":3429,"module":3405,"summary":3430},"\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":3432,"title":3433,"module":3405,"summary":3434},"\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":3436,"title":3437,"module":3438,"summary":3439},"\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":3441,"title":3442,"module":3438,"summary":3443},"\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":3445,"title":3446,"module":3438,"summary":3447},"\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":3449,"title":3450,"module":3438,"summary":3451},"\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":3453,"title":3454,"module":3438,"summary":3455},"\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":3457,"title":3458,"module":3438,"summary":3459},"\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":3461,"title":3462,"module":3438,"summary":3463},"\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":3465,"title":3466,"module":3438,"summary":3467},"\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":3469,"title":3470,"module":3438,"summary":3471},"\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":3473,"title":3474,"module":3438,"summary":3475},"\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":3477,"title":3478,"module":3438,"summary":3479},"\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":3481,"title":3482,"module":3438,"summary":3483},"\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":3485,"title":3486,"module":3438,"summary":3487},"\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":3489,"title":3490,"module":3438,"summary":3491},"\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":3493,"title":3494,"module":3495,"summary":3496},"\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":3498,"title":3499,"module":3495,"summary":3500},"\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":3502,"title":3503,"module":3495,"summary":3504},"\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":3506,"title":3507,"module":3495,"summary":3508},"\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":3510,"title":3511,"module":3495,"summary":3512},"\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":3514,"title":3515,"module":3516,"summary":3517},"\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":3519,"title":3520,"module":3516,"summary":3521},"\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":3523,"title":3524,"module":3516,"summary":3525},"\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":3527,"title":3528,"module":3516,"summary":3529},"\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":3531,"title":3532,"module":3516,"summary":3533},"\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":3535,"title":3536,"module":3516,"summary":3537},"\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":3539,"title":3540,"module":3516,"summary":3541},"\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":3543,"title":3544,"module":3516,"summary":3545},"\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":3547,"title":3548,"module":3516,"summary":3549},"\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":3551,"title":3552,"module":3516,"summary":3553},"\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":3555,"title":3556,"module":3516,"summary":3557},"\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":3559,"title":3560,"module":3561,"summary":3562},"\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":3564,"title":3565,"module":3561,"summary":3566},"\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":3568,"title":3569,"module":3561,"summary":3570},"\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":3572,"title":3573,"module":3561,"summary":3574},"\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":3576,"title":3577,"module":3578,"summary":3579},"\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":3581,"title":3582,"module":3578,"summary":3583},"\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":3585,"title":3586,"module":3578,"summary":3587},"\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":3589,"title":3590,"module":3578,"summary":3591},"\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":3593,"title":3594,"module":3578,"summary":3595},"\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":3597,"title":3598,"module":3578,"summary":3599},"\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":3601,"title":3602,"module":3578,"summary":3603},"\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":3605,"title":3606,"module":3607,"summary":3608},"\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":3610,"title":3611,"module":3607,"summary":3612},"\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":3614,"title":3615,"module":3607,"summary":3616},"\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":3618,"title":3619,"module":3607,"summary":3620},"\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":3622,"title":3623,"module":3624,"summary":3625},"\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":3627,"title":3628,"module":3624,"summary":3629},"\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":3631,"title":3632,"module":3624,"summary":3633},"\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":3635,"title":3636,"module":3624,"summary":3637},"\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":3639,"title":3640,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3642,"title":3643,"module":3644,"summary":3645},"\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":3647,"title":3648,"module":3644,"summary":3649},"\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":3651,"title":3652,"module":3644,"summary":3653},"\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":3655,"title":3656,"module":3644,"summary":3657},"\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":3659,"title":3660,"module":3661,"summary":3662},"\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":3664,"title":3665,"module":3661,"summary":3666},"\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":3668,"title":3669,"module":3661,"summary":3670},"\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":3672,"title":3673,"module":3661,"summary":3674},"\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":3676,"title":3677,"module":3678,"summary":3679},"\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":3681,"title":3682,"module":3678,"summary":3683},"\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":3685,"title":3686,"module":3678,"summary":3687},"\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":3689,"title":3690,"module":3678,"summary":3691},"\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":3693,"title":3694,"module":3695,"summary":3696},"\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":3698,"title":3699,"module":3695,"summary":3700},"\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":3702,"title":3703,"module":3695,"summary":3704},"\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":3706,"title":3707,"module":3708,"summary":3709},"\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":3711,"title":3712,"module":3708,"summary":3713},"\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":3715,"title":3716,"module":3708,"summary":3717},"\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":3719,"title":3720,"module":3721,"summary":3722},"\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":3724,"title":3725,"module":3721,"summary":3726},"\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":3728,"title":3729,"module":3721,"summary":3730},"\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":3732,"title":3733,"module":3734,"summary":3735},"\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":3737,"title":3738,"module":3734,"summary":3739},"\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":3741,"title":3742,"module":3734,"summary":3743},"\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":3745,"title":3746,"module":3734,"summary":3747},"\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":3749,"title":3750,"module":3751,"summary":3752},"\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":3754,"title":3755,"module":3751,"summary":3756},"\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":3758,"title":3759,"module":3751,"summary":3760},"\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":3762,"title":3763,"module":3764,"summary":3765},"\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":3767,"title":3768,"module":3764,"summary":3769},"\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":3771,"title":3772,"module":3764,"summary":3773},"\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":3775,"title":3776,"module":3764,"summary":3777},"\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":3779,"title":3780,"module":3764,"summary":3781},"\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":3783,"title":3784,"module":3785,"summary":3786},"\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":3788,"title":3789,"module":3785,"summary":3790},"\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":3792,"title":3793,"module":3785,"summary":3794},"\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":3796,"title":3797,"module":3785,"summary":3798},"\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":3800,"title":3801,"module":3785,"summary":3802},"\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":3804,"title":3805,"module":3806,"summary":3807},"\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":3809,"title":3806,"module":3806,"summary":3810},"\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":3812,"title":3813,"module":3806,"summary":3814},"\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":3816,"title":3817,"module":3806,"summary":3818},"\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":3820,"title":3821,"module":3806,"summary":3822},"\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":3824,"title":3825,"module":3826,"summary":3827},"\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":3829,"title":3830,"module":3826,"summary":3831},"\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":3833,"title":3834,"module":3826,"summary":3835},"\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":3837,"title":3838,"module":3826,"summary":3839},"\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":3841,"title":3842,"module":3826,"summary":3843},"\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":3845,"title":3846,"module":3826,"summary":3847},"\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":3849,"title":3850,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3852,"title":3853,"module":5,"summary":3854},"\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":3856,"title":3857,"module":5,"summary":3858},"\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":3860,"title":3861,"module":3862,"summary":3863},"\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":3865,"title":3866,"module":3862,"summary":3867},"\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":3869,"title":3870,"module":3862,"summary":3871},"\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":3873,"title":3874,"module":3862,"summary":3875},"\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":3877,"title":3878,"module":3862,"summary":3879},"\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":3881,"title":3882,"module":3883,"summary":3884},"\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":3886,"title":3887,"module":3883,"summary":3888},"\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":3890,"title":3891,"module":3883,"summary":3892},"\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":3894,"title":3895,"module":3883,"summary":3896},"\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":3898,"title":3899,"module":3883,"summary":3900},"\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":3902,"title":3903,"module":3904,"summary":3905},"\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":3907,"title":3908,"module":3904,"summary":3909},"\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":3911,"title":3912,"module":3904,"summary":3913},"\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":3915,"title":3916,"module":3904,"summary":3917},"\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":3919,"title":3920,"module":3904,"summary":3921},"\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":3923,"title":3924,"module":3925,"summary":3926},"\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":3928,"title":3929,"module":3925,"summary":3930},"\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":3932,"title":3933,"module":3925,"summary":3934},"\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":3936,"title":3937,"module":3938,"summary":3939},"\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":3941,"title":3942,"module":3938,"summary":3943},"\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":3945,"title":3946,"module":3938,"summary":3947},"\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":3949,"title":3950,"module":3938,"summary":3951},"\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":3953,"title":3954,"module":3938,"summary":3955},"\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":3957,"title":3958,"module":3938,"summary":3959},"\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":3961,"title":3962,"module":3963,"summary":3964},"\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":3966,"title":3967,"module":3963,"summary":3968},"\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":3970,"title":3971,"module":3963,"summary":3972},"\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":3974,"title":3975,"module":3963,"summary":3976},"\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":3978,"title":3979,"module":3963,"summary":3980},"\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":3982,"title":3983,"module":3963,"summary":3984},"\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":3986,"title":3987,"module":3963,"summary":3988},"\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":3990,"title":3991,"module":3992,"summary":3993},"\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":3995,"title":3996,"module":3992,"summary":3997},"\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":3999,"title":4000,"module":3992,"summary":4001},"\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":4003,"title":4004,"module":3992,"summary":4005},"\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":4007,"title":4008,"module":3992,"summary":4009},"\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":4011,"title":4012,"module":3992,"summary":4013},"\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":4015,"title":4016,"module":3992,"summary":4017},"\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":4019,"title":4020,"module":3992,"summary":4021},"\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":4023,"title":4024,"module":3992,"summary":4025},"\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":4027,"title":4028,"module":3992,"summary":4029},"\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":4031,"title":4032,"module":3992,"summary":4033},"\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":4035,"title":4036,"module":3992,"summary":4037},"\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":4039,"title":4040,"module":4041,"summary":4042},"\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":4044,"title":4045,"module":4041,"summary":4046},"\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":4048,"title":4049,"module":4041,"summary":4050},"\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":4052,"title":4053,"module":4041,"summary":4054},"\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":4056,"title":4057,"module":4041,"summary":4058},"\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":4060,"title":4061,"module":4041,"summary":4062},"\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":4064,"title":4065,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":4067,"title":4068,"module":4069,"summary":4070},"\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":4072,"title":4073,"module":4069,"summary":4074},"\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":4076,"title":4077,"module":4069,"summary":4078},"\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":4080,"title":4081,"module":4069,"summary":4082},"\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":4084,"title":4085,"module":4069,"summary":4086},"\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":4088,"title":4089,"module":4090,"summary":4091},"\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":4093,"title":4094,"module":4090,"summary":4095},"\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":4097,"title":4098,"module":4099,"summary":4100},"\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":4102,"title":4103,"module":4099,"summary":4104},"\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":4106,"title":4107,"module":4099,"summary":4108},"\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":4110,"title":4111,"module":4099,"summary":4112},"\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":4114,"title":4115,"module":4099,"summary":4116},"\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":4118,"title":4119,"module":4120,"summary":4121},"\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":4123,"title":4124,"module":4120,"summary":4125},"\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":4127,"title":4128,"module":4120,"summary":4129},"\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":4131,"title":4132,"module":4120,"summary":4133},"\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":4135,"title":4136,"module":4137,"summary":4138},"\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":4140,"title":4141,"module":4137,"summary":4142},"\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":4144,"title":4145,"module":4137,"summary":4146},"\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":4148,"title":4149,"module":4150,"summary":4151},"\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":4153,"title":4154,"module":4150,"summary":4155},"\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":4157,"title":4158,"module":4150,"summary":4159},"\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":4161,"title":4162,"module":4150,"summary":4163},"\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":4165,"title":4166,"module":4150,"summary":4167},"\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":4169,"title":4170,"module":4171,"summary":4172},"\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":4174,"title":4175,"module":4171,"summary":4176},"\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":4178,"title":4179,"module":4171,"summary":4180},"\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":4182,"title":4183,"module":4171,"summary":4184},"\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":4186,"title":4187,"module":4171,"summary":4188},"\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":4190,"title":4191,"module":4171,"summary":4192},"\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":4194,"title":4195,"module":4196,"summary":4197},"\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":4199,"title":4200,"module":4196,"summary":4201},"\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":4203,"title":4204,"module":4196,"summary":4205},"\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":4207,"title":4208,"module":4196,"summary":4209},"\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":4211,"title":4212,"module":4196,"summary":4213},"\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":4215,"title":4216,"module":4196,"summary":4217},"\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":4219,"title":4220,"module":4196,"summary":4221},"\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":4223,"title":4224,"module":4196,"summary":4225},"\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":4227,"title":4228,"module":4229,"summary":4230},"\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":4232,"title":4233,"module":4229,"summary":4234},"\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":4236,"title":4237,"module":4229,"summary":4238},"\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":4240,"title":4241,"module":4229,"summary":4242},"\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":4244,"title":4245,"module":4229,"summary":4246},"\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":4248,"title":4249,"module":4250,"summary":4251},"\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":4253,"title":4254,"module":4250,"summary":4255},"\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":4257,"title":4258,"module":4250,"summary":4259},"\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":4261,"title":4262,"module":4250,"summary":4263},"\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":4265,"title":4266,"module":4250,"summary":4267},"\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":4269,"title":4270,"module":4271,"summary":4272},"\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":4274,"title":4275,"module":4271,"summary":4276},"\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":4278,"title":4279,"module":4271,"summary":4280},"\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":4282,"title":4283,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":4285,"title":4286,"module":4287,"summary":4288},"\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":4290,"title":4291,"module":4287,"summary":4292},"\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":4294,"title":4295,"module":4287,"summary":4296},"\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":4298,"title":4299,"module":4287,"summary":4300},"\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":4302,"title":4303,"module":4287,"summary":4304},"\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":4306,"title":4307,"module":4308,"summary":4309},"\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":4311,"title":4312,"module":4308,"summary":4313},"\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":4315,"title":4316,"module":4308,"summary":4317},"\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":4319,"title":4320,"module":4308,"summary":4321},"\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":4323,"title":4324,"module":4308,"summary":4325},"\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":4327,"title":4328,"module":4329,"summary":4330},"\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":4332,"title":4333,"module":4329,"summary":4334},"\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":4336,"title":4337,"module":4329,"summary":4338},"\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":4340,"title":4341,"module":4342,"summary":4343},"\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":4345,"title":4346,"module":4342,"summary":4347},"\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":4349,"title":4350,"module":4342,"summary":4351},"\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":4353,"title":4354,"module":4342,"summary":4355},"\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":4357,"title":4358,"module":4342,"summary":4359},"\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":4361,"title":4362,"module":4342,"summary":4363},"\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":4365,"title":4366,"module":4342,"summary":4367},"\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":4369,"title":4370,"module":4371,"summary":4372},"\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":4374,"title":4375,"module":4371,"summary":4376},"\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":4378,"title":4379,"module":4371,"summary":4380},"\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":4382,"title":4383,"module":4371,"summary":4384},"\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":4386,"title":4387,"module":4371,"summary":4388},"\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":4390,"title":4391,"module":4371,"summary":4392},"\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":4394,"title":4395,"module":4371,"summary":4396},"\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":4398,"title":4399,"module":4400,"summary":4401},"\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":4403,"title":4404,"module":4400,"summary":4405},"\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":4407,"title":4408,"module":4400,"summary":4409},"\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":4411,"title":4412,"module":4400,"summary":4413},"\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":4415,"title":4416,"module":4400,"summary":4417},"\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":4419,"title":4420,"module":4400,"summary":4421},"\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":4423,"title":4424,"module":4425,"summary":4426},"\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":4428,"title":4429,"module":4425,"summary":4430},"\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":4432,"title":4433,"module":4425,"summary":4434},"\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":4436,"title":4437,"module":4425,"summary":4438},"\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":4440,"title":4441,"module":4425,"summary":4442},"\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":4444,"title":4445,"module":4446,"summary":4447},"\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":4449,"title":4450,"module":4446,"summary":4451},"\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":4453,"title":4454,"module":4446,"summary":4455},"\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":4457,"title":4458,"module":4446,"summary":4459},"\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":4461,"title":4462,"module":4446,"summary":4463},"\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":4465,"title":4466,"module":4446,"summary":4467},"\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":4469,"title":4470,"module":4471,"summary":4472},"\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":4474,"title":4475,"module":4471,"summary":4476},"\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":4478,"title":4479,"module":4471,"summary":4480},"\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":4482,"title":4483,"module":4471,"summary":4484},"\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":4486,"title":4487,"module":4471,"summary":4488},"\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":4490,"title":4491,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":4493,"title":4494,"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":4545,"title":4546,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":4548,"title":4549,"module":5,"summary":4550},"\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":4552,"title":4553,"module":5,"summary":4554},"\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":4556,"title":4557,"module":4558,"summary":4559},"\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":4561,"title":4562,"module":4558,"summary":4563},"\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":4565,"title":4566,"module":4558,"summary":4567},"\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":4569,"title":4570,"module":4558,"summary":4571},"\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":4573,"title":4574,"module":4558,"summary":4575},"\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":4577,"title":4578,"module":4558,"summary":4579},"\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":4581,"title":4582,"module":4583,"summary":4584},"\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":4586,"title":4587,"module":4583,"summary":4588},"\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":4590,"title":4591,"module":4583,"summary":4592},"\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":4594,"title":4595,"module":4583,"summary":4596},"\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":4598,"title":4599,"module":4583,"summary":4600},"\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":4602,"title":4603,"module":4583,"summary":4604},"\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":4606,"title":4607,"module":4608,"summary":4609},"\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":4611,"title":4612,"module":4608,"summary":4613},"\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":4615,"title":4616,"module":4608,"summary":4617},"\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":4619,"title":4620,"module":4621,"summary":4622},"\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":4624,"title":4625,"module":4621,"summary":4626},"\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":4628,"title":4629,"module":4630,"summary":4631},"\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":4633,"title":4634,"module":4630,"summary":4635},"\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":4637,"title":4638,"module":4630,"summary":4639},"\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":4641,"title":4642,"module":4643,"summary":4644},"\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":4646,"title":4647,"module":4643,"summary":4648},"\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":4650,"title":4651,"module":4652,"summary":4653},"\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":4655,"title":4656,"module":4652,"summary":4657},"\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":4659,"title":4660,"module":4652,"summary":4661},"\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":4663,"title":4664,"module":4665,"summary":4666},"\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":4668,"title":4669,"module":4665,"summary":4670},"\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":4672,"title":4673,"module":4665,"summary":4674},"\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":4676,"title":4677,"module":4678,"summary":4679},"\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":4681,"title":4682,"module":4678,"summary":4683},"\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":4685,"title":4686,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4688,"title":4689,"module":4690,"summary":4691},"\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":4693,"title":4694,"module":4690,"summary":4695},"\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":4697,"title":4698,"module":4690,"summary":4699},"\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":4701,"title":4702,"module":4690,"summary":4703},"\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":4705,"title":4706,"module":4690,"summary":4707},"\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":4709,"title":4710,"module":4711,"summary":4712},"\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":4714,"title":4715,"module":4711,"summary":4716},"\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":4718,"title":4719,"module":4711,"summary":4720},"\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":4722,"title":4723,"module":4711,"summary":4724},"\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":4726,"title":4727,"module":4728,"summary":4729},"\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":4731,"title":4732,"module":4728,"summary":4733},"\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":4735,"title":4736,"module":4728,"summary":4737},"\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":4739,"title":4740,"module":4728,"summary":4741},"\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":4743,"title":4744,"module":4745,"summary":4746},"\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":4748,"title":4749,"module":4745,"summary":4750},"\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":4752,"title":4753,"module":4745,"summary":4754},"\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":4756,"title":4757,"module":4745,"summary":4758},"\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":4760,"title":4761,"module":4762,"summary":4763},"\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":4765,"title":4766,"module":4762,"summary":4767},"\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":4769,"title":4770,"module":4762,"summary":4771},"\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":4773,"title":4774,"module":4762,"summary":4775},"\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":4777,"title":4778,"module":4762,"summary":4779},"\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":4781,"title":4782,"module":4762,"summary":4783},"\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":4785,"title":4786,"module":4787,"summary":4788},"\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":4790,"title":4791,"module":4787,"summary":4792},"\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":4794,"title":4795,"module":4787,"summary":4796},"\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":4798,"title":4799,"module":4800,"summary":4801},"\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":4803,"title":4804,"module":4800,"summary":4805},"\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":4807,"title":4808,"module":4800,"summary":4809},"\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":4811,"title":4812,"module":4800,"summary":4813},"\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":4815,"title":4816,"module":4817,"summary":4818},"\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":4820,"title":4821,"module":4817,"summary":4822},"\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":4824,"title":4825,"module":4817,"summary":4826},"\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":4828,"title":4829,"module":4830,"summary":4831},"\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":4833,"title":4834,"module":4830,"summary":4835},"\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":4837,"title":4838,"module":4830,"summary":4839},"\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":4841,"title":4842,"module":4843,"summary":4844},"\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":4846,"title":4847,"module":4843,"summary":4848},"\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":4850,"title":4851,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4853,"title":4854,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4856,"title":4857,"module":4858,"summary":4859},"\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":4861,"title":4862,"module":4858,"summary":4863},"\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":4865,"title":4866,"module":4858,"summary":4867},"\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":4869,"title":4870,"module":4858,"summary":4871},"\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":4873,"title":4874,"module":4875,"summary":4876},"\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":4878,"title":4879,"module":4875,"summary":4880},"\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":4882,"title":4883,"module":4875,"summary":4884},"\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":4886,"title":4887,"module":4888,"summary":4889},"\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":4891,"title":4892,"module":4888,"summary":4893},"\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":4895,"title":4896,"module":4888,"summary":4897},"\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":4899,"title":4900,"module":4888,"summary":4901},"\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":4903,"title":4904,"module":4888,"summary":4905},"\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":4907,"title":4908,"module":4888,"summary":4909},"\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":4911,"title":4912,"module":4913,"summary":4914},"\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":4916,"title":4917,"module":4913,"summary":4918},"\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":4920,"title":4921,"module":4913,"summary":4922},"\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":4924,"title":4925,"module":4913,"summary":4926},"\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":4928,"title":4929,"module":4913,"summary":4930},"\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":4932,"title":4933,"module":4913,"summary":4934},"\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":4936,"title":4937,"module":4938,"summary":4939},"\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":4941,"title":4942,"module":4938,"summary":4943},"\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":4945,"title":4946,"module":4938,"summary":4947},"\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":4949,"title":4950,"module":4938,"summary":4951},"\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":4953,"title":4954,"module":3950,"summary":4955},"\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":4957,"title":4958,"module":3950,"summary":4959},"\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":4961,"title":4962,"module":3950,"summary":4963},"\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":4965,"title":4966,"module":4967,"summary":4968},"\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":4970,"title":4971,"module":4967,"summary":4972},"\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":4974,"title":4975,"module":4967,"summary":4976},"\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":4978,"title":4979,"module":4980,"summary":4981},"\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":4983,"title":4984,"module":4980,"summary":4985},"\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":4987,"title":4988,"module":4980,"summary":4989},"\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":4991,"title":4992,"module":4993,"summary":4994},"\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":4996,"title":4997,"module":4993,"summary":4998},"\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":5000,"title":5001,"module":5002,"summary":5003},"\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":5005,"title":5006,"module":5002,"summary":5007},"\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":5009,"title":5010,"module":5002,"summary":5011},"\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":5013,"title":5014,"module":5002,"summary":5015},"\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":5017,"title":5018,"module":5002,"summary":5019},"\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":5021,"title":5022,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":5024,"title":5025,"module":5026,"summary":5027},"\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":5029,"title":5030,"module":5026,"summary":5031},"\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":5033,"title":5034,"module":5026,"summary":5035},"\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":5037,"title":5038,"module":5026,"summary":5039},"\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":5041,"title":5042,"module":5043,"summary":5044},"\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":5046,"title":5047,"module":5043,"summary":5048},"\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":5050,"title":5051,"module":5043,"summary":5052},"\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":5054,"title":5055,"module":5043,"summary":5056},"\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":5058,"title":5059,"module":5043,"summary":5060},"\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":5062,"title":5063,"module":5043,"summary":5064},"\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":5066,"title":5067,"module":5068,"summary":5069},"\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":5071,"title":5072,"module":5068,"summary":5073},"\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":5075,"title":5076,"module":5068,"summary":5077},"\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":5079,"title":5080,"module":5068,"summary":5081},"\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":5083,"title":5084,"module":5068,"summary":5085},"\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":5087,"title":5088,"module":3644,"summary":5089},"\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":5091,"title":5092,"module":3644,"summary":5093},"\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":5095,"title":5096,"module":3644,"summary":5097},"\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":5099,"title":5100,"module":3644,"summary":5101},"\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":5103,"title":5104,"module":3644,"summary":5105},"\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":5107,"title":5108,"module":3644,"summary":5109},"\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":5111,"title":5112,"module":5113,"summary":5114},"\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":5116,"title":5117,"module":5113,"summary":5118},"\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":5120,"title":5121,"module":5113,"summary":5122},"\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":5124,"title":5125,"module":5113,"summary":5126},"\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":5128,"title":5129,"module":5130,"summary":5131},"\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":5133,"title":5134,"module":5130,"summary":5135},"\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":5137,"title":5138,"module":5130,"summary":5139},"\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":5141,"title":3699,"module":5130,"summary":5142},"\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":5144,"title":5145,"module":5130,"summary":5146},"\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":5148,"title":5149,"module":5150,"summary":5151},"\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":5153,"title":5154,"module":5150,"summary":5155},"\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":5157,"title":5158,"module":5150,"summary":5159},"\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":5161,"title":5162,"module":5150,"summary":5163},"\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":5165,"title":5166,"module":5167,"summary":5168},"\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":5170,"title":5171,"module":5167,"summary":5172},"\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":5174,"title":5175,"module":5167,"summary":5176},"\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":5178,"title":5179,"module":5167,"summary":5180},"\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":5182,"title":5183,"module":5167,"summary":5184},"\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":5186,"title":5187,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":5189,"title":5190,"module":5,"summary":5191},"\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":5193,"title":5194,"module":5,"summary":5195},"\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":5197,"title":5198,"module":5199,"summary":5200},"\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":5202,"title":5203,"module":5199,"summary":5204},"\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":5206,"title":5207,"module":5199,"summary":5208},"\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":5210,"title":5211,"module":5199,"summary":5212},"\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":5214,"title":5215,"module":5216,"summary":5217},"\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":5219,"title":5220,"module":5216,"summary":5221},"\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":5223,"title":5224,"module":5216,"summary":5225},"\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":5227,"title":5228,"module":5216,"summary":5229},"\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":5231,"title":5232,"module":5216,"summary":5233},"\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":5235,"title":5236,"module":5216,"summary":5237},"\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":5239,"title":5240,"module":5241,"summary":5242},"\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":5244,"title":5245,"module":5241,"summary":5246},"\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":5248,"title":5249,"module":5241,"summary":5250},"\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":5252,"title":5253,"module":5241,"summary":5254},"\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":5256,"title":5257,"module":5258,"summary":5259},"\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":5261,"title":5262,"module":5258,"summary":5263},"\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":5265,"title":5266,"module":5258,"summary":5267},"\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":5269,"title":5270,"module":5258,"summary":5271},"\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":5273,"title":5274,"module":5275,"summary":5276},"\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":5278,"title":5279,"module":5275,"summary":5280},"\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":5282,"title":5283,"module":5275,"summary":5284},"\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":5286,"title":5287,"module":5288,"summary":5289},"\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":5291,"title":5292,"module":5288,"summary":5293},"\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":5295,"title":5296,"module":5288,"summary":5297},"\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":5299,"title":5300,"module":5288,"summary":5301},"\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":5303,"title":5304,"module":5305,"summary":5306},"\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":5308,"title":5309,"module":5305,"summary":5310},"\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":5312,"title":5313,"module":5305,"summary":5314},"\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":5316,"title":5317,"module":5305,"summary":5318},"\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":5320,"title":5321,"module":5322,"summary":5323},"\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":5325,"title":5326,"module":5322,"summary":5327},"\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":5329,"title":5330,"module":5322,"summary":5331},"\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":5333,"title":5334,"module":5335,"summary":5336},"\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":5338,"title":5339,"module":5335,"summary":5340},"\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":5342,"title":5343,"module":5335,"summary":5344},"\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":5346,"title":5347,"module":5335,"summary":5348},"\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":5350,"title":5351,"module":5352,"summary":5353},"\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":5355,"title":5356,"module":5352,"summary":5357},"\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":5359,"title":5360,"module":5352,"summary":5361},"\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":5363,"title":5364,"module":5352,"summary":5365},"\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":5367,"title":5368,"module":5352,"summary":5369},"\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":5371,"title":5372,"module":5373,"summary":5374},"\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":5376,"title":5377,"module":5373,"summary":5378},"\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":5380,"title":5381,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":5383,"title":5384,"module":5385,"summary":5386},"\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":5388,"title":5389,"module":5385,"summary":5390},"\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":5392,"title":5393,"module":5385,"summary":5394},"\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":5396,"title":5397,"module":5385,"summary":5398},"\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":5400,"title":5401,"module":5385,"summary":5402},"\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":5404,"title":5405,"module":5406,"summary":5407},"\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":5409,"title":5410,"module":5406,"summary":5411},"\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":5413,"title":5414,"module":5406,"summary":5415},"\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":5417,"title":5418,"module":5406,"summary":5419},"\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":5421,"title":5422,"module":5406,"summary":5423},"\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":5425,"title":5426,"module":5406,"summary":5427},"\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":5429,"title":5430,"module":5406,"summary":5431},"\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":5433,"title":5434,"module":5435,"summary":5436},"\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":5438,"title":5439,"module":5435,"summary":5440},"\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":5442,"title":5443,"module":5435,"summary":5444},"\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":5446,"title":5447,"module":5435,"summary":5448},"\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":5450,"title":5451,"module":5452,"summary":5453},"\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":5455,"title":5456,"module":5452,"summary":5457},"\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":5459,"title":5460,"module":5452,"summary":5461},"\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":5463,"title":5464,"module":5465,"summary":5466},"\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":5468,"title":5469,"module":5465,"summary":5470},"\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":5472,"title":5473,"module":5465,"summary":5474},"\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":5476,"title":5477,"module":5465,"summary":5478},"\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":5480,"title":5481,"module":5465,"summary":5482},"\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":5484,"title":5485,"module":5465,"summary":5486},"\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":5488,"title":5489,"module":5490,"summary":5491},"\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":5493,"title":5494,"module":5490,"summary":5495},"\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":5497,"title":5498,"module":5490,"summary":5499},"\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":5501,"title":5502,"module":5503,"summary":5504},"\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":5506,"title":5507,"module":5503,"summary":5508},"\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":5510,"title":5511,"module":5503,"summary":5512},"\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":5514,"title":5515,"module":5503,"summary":5516},"\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":5518,"title":5519,"module":5520,"summary":5521},"\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":5523,"title":5524,"module":5520,"summary":5525},"\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":5527,"title":5528,"module":5520,"summary":5529},"\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":5531,"title":5532,"module":5533,"summary":5534},"\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":5536,"title":5537,"module":5533,"summary":5538},"\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":5540,"title":5541,"module":5533,"summary":5542},"\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":5544,"title":5545,"module":5533,"summary":5546},"\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":5548,"title":5549,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":5551,"title":5552,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":5554,"title":5555,"module":5,"summary":5556},"\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":5558,"title":5559,"module":5,"summary":5560},"\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":5562,"title":5563,"module":5,"summary":5564},"\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":5566,"title":5567,"module":5,"summary":5568},"\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":5570,"title":5571,"module":5,"summary":5572},"\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":5574,"title":5575,"module":5,"summary":5576},"\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":5578,"title":5579,"module":5580,"summary":5581},"\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":5583,"title":5584,"module":5580,"summary":5585},"\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":5587,"title":5588,"module":5580,"summary":5589},"\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":5591,"title":5592,"module":5593,"summary":5594},"\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":5596,"title":5597,"module":5593,"summary":5598},"\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":5600,"title":5601,"module":5593,"summary":5602},"\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":5604,"title":5605,"module":5606,"summary":5607},"\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":5609,"title":5610,"module":5606,"summary":5611},"\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":5613,"title":5614,"module":5606,"summary":5615},"\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":5617,"title":5618,"module":5606,"summary":5619},"\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":5621,"title":5622,"module":5606,"summary":5623},"\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":5625,"title":5626,"module":5627,"summary":5628},"\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":5630,"title":5631,"module":5627,"summary":5632},"\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":5634,"title":5635,"module":5627,"summary":5636},"\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":5638,"title":5639,"module":5627,"summary":5640},"\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":5642,"title":5643,"module":5644,"summary":5645},"\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":5647,"title":5648,"module":5644,"summary":5649},"\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":5651,"title":5652,"module":5644,"summary":5653},"\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":5655,"title":5656,"module":5644,"summary":5657},"\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":5659,"title":5660,"module":5661,"summary":5662},"\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":5664,"title":5665,"module":5661,"summary":5666},"\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":5668,"title":5669,"module":5661,"summary":5670},"\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":5672,"title":5673,"module":5661,"summary":5674},"\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":5676,"title":5677,"module":5678,"summary":5679},"\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":5681,"title":5682,"module":5678,"summary":5683},"\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":5685,"title":5686,"module":5678,"summary":5687},"\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":5689,"title":5690,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5692,"title":4491,"module":5693,"summary":5694},"\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":5696,"title":5697,"module":5693,"summary":5698},"\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":5700,"title":5701,"module":5693,"summary":5702},"\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":5704,"title":3850,"module":5693,"summary":5705},"\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":5707,"title":5708,"module":5,"summary":5709},"\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":5711,"title":5712,"module":5,"summary":5713},"\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":5715,"title":5716,"module":5,"summary":5717},"\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":5719,"title":5720,"module":5721,"summary":5722},"\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":5724,"title":5725,"module":5721,"summary":5726},"\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":5728,"title":5729,"module":5721,"summary":5730},"\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":5732,"title":5733,"module":5721,"summary":5734},"\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":5736,"title":5737,"module":5721,"summary":5738},"\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":5740,"title":5741,"module":5742,"summary":5743},"\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":5745,"title":5746,"module":5742,"summary":5747},"\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":5749,"title":5750,"module":5742,"summary":5751},"\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":5753,"title":5754,"module":5742,"summary":5755},"\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":5757,"title":5758,"module":5742,"summary":5759},"\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":5761,"title":5762,"module":5763,"summary":5764},"\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":5766,"title":5767,"module":5763,"summary":5768},"\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":5770,"title":5771,"module":5763,"summary":5772},"\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":5774,"title":5775,"module":5763,"summary":5776},"\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":5778,"title":5779,"module":5780,"summary":5781},"\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":5783,"title":5784,"module":5780,"summary":5785},"\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":5787,"title":5788,"module":5780,"summary":5789},"\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":5791,"title":5792,"module":5780,"summary":5793},"\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":5795,"title":5796,"module":5780,"summary":5797},"\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":5799,"title":5800,"module":5780,"summary":5801},"\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":5803,"title":5804,"module":5780,"summary":5805},"\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":5807,"title":5808,"module":5780,"summary":5809},"\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":5811,"title":5812,"module":5780,"summary":5813},"\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":5815,"title":5816,"module":5817,"summary":5818},"\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":5820,"title":5821,"module":5817,"summary":5822},"\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":5824,"title":5825,"module":5817,"summary":5826},"\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":5828,"title":5829,"module":5817,"summary":5830},"\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":5832,"title":5833,"module":5817,"summary":5834},"\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":5836,"title":5837,"module":5838,"summary":5839},"\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":5841,"title":5842,"module":5838,"summary":5843},"\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":5845,"title":5846,"module":5838,"summary":5847},"\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":5849,"title":5850,"module":5838,"summary":5851},"\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":5853,"title":5854,"module":5838,"summary":5855},"\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":5857,"title":5858,"module":5838,"summary":5859},"\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":5861,"title":5862,"module":5838,"summary":5863},"\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":5865,"title":5866,"module":5867,"summary":5868},"\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":5870,"title":5871,"module":5867,"summary":5872},"\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":5874,"title":5875,"module":5867,"summary":5876},"\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":5878,"title":5879,"module":5880,"summary":5881},"\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":5883,"title":5884,"module":5880,"summary":5885},"\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":5887,"title":5888,"module":5880,"summary":5889},"\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":5891,"title":5892,"module":5880,"summary":5893},"\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":5895,"title":5896,"module":5880,"summary":5897},"\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":5899,"title":5900,"module":5880,"summary":5901},"\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":5903,"title":5904,"module":5880,"summary":5905},"\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":5907,"title":5908,"module":5909,"summary":5910},"\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":5912,"title":5913,"module":5909,"summary":5914},"\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":5916,"title":5917,"module":5909,"summary":5918},"\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":5920,"title":5921,"module":5909,"summary":5922},"\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":5924,"title":5925,"module":5909,"summary":5926},"\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":5928,"title":5929,"module":5909,"summary":5930},"\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":5932,"title":5933,"module":5909,"summary":5934},"\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":5936,"title":5937,"module":5909,"summary":5938},"\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":5940,"title":5941,"module":5909,"summary":5942},"\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":5944,"title":5945,"module":5909,"summary":5946},"\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":5948,"title":5949,"module":5909,"summary":5950},"\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":5952,"title":5953,"module":5954,"summary":5955},"\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":5957,"title":5958,"module":5954,"summary":5959},"\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":5961,"title":5962,"module":5954,"summary":5963},"\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":5965,"title":5966,"module":5954,"summary":5967},"\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":5969,"title":5970,"module":5954,"summary":5971},"\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":5973,"title":5974,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5976,"title":5977,"module":4041,"summary":5978},"\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":5980,"title":5981,"module":4041,"summary":5982},"\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":5984,"title":5985,"module":4041,"summary":5986},"\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":5988,"title":5989,"module":4041,"summary":5990},"\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":5992,"title":5993,"module":4041,"summary":5994},"\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":5996,"title":5997,"module":5998,"summary":5999},"\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":6001,"title":6002,"module":5998,"summary":6003},"\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":6005,"title":6006,"module":5998,"summary":6007},"\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":6009,"title":6010,"module":5998,"summary":6011},"\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":6013,"title":6014,"module":6015,"summary":6016},"\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":6018,"title":6019,"module":6015,"summary":6020},"\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":6022,"title":6023,"module":6015,"summary":6024},"\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":6026,"title":6027,"module":6015,"summary":6028},"\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":6030,"title":6031,"module":6032,"summary":6033},"\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":6035,"title":6036,"module":6032,"summary":6037},"\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":6039,"title":6040,"module":6032,"summary":6041},"\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":6043,"title":6044,"module":6032,"summary":6045},"\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":6047,"title":6048,"module":6032,"summary":6049},"\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":6051,"title":6052,"module":6053,"summary":6054},"\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":6056,"title":6057,"module":6053,"summary":6058},"\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":6060,"title":6061,"module":6053,"summary":6062},"\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":6064,"title":6065,"module":6066,"summary":6067},"\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":6069,"title":6070,"module":6066,"summary":6071},"\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":6073,"title":6074,"module":6066,"summary":6075},"\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":6077,"title":6078,"module":6079,"summary":6080},"\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":6082,"title":6083,"module":6079,"summary":6084},"\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":6086,"title":6087,"module":6079,"summary":6088},"\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":6090,"title":6091,"module":6079,"summary":6092},"\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":6094,"title":6095,"module":6096,"summary":6097},"\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":6099,"title":6100,"module":6096,"summary":6101},"\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":6103,"title":6104,"module":6096,"summary":6105},"\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":6107,"title":6108,"module":6096,"summary":6109},"\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":6111,"title":6112,"module":6096,"summary":6113},"\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":6115,"title":6116,"module":6096,"summary":6117},"\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":6119,"title":6120,"module":6121,"summary":6122},"\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":6124,"title":6125,"module":6121,"summary":6126},"\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":6128,"title":6129,"module":6121,"summary":6130},"\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":6132,"title":6133,"module":6121,"summary":6134},"\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":6136,"title":6137,"module":6138,"summary":6139},"\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":6141,"title":6142,"module":6138,"summary":6143},"\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":6145,"title":6146,"module":6138,"summary":6147},"\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":6149,"title":6150,"module":6151,"summary":6152},"\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":6154,"title":6155,"module":6151,"summary":6156},"\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":6158,"title":6159,"module":6151,"summary":6160},"\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":6162,"title":6163,"module":6151,"summary":6164},"\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":6166,"title":6167,"module":6151,"summary":6168},"\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":6170,"title":6171,"module":6172,"summary":6173},"\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":6175,"title":6176,"module":6172,"summary":6177},"\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":6179,"title":6180,"module":6172,"summary":6181},"\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":6183,"title":6184,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":6186,"title":6187,"module":6188,"summary":6189},"\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":6191,"title":6192,"module":6188,"summary":6193},"\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":6195,"title":6196,"module":6188,"summary":6197},"\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":6199,"title":6200,"module":6188,"summary":6201},"\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":6203,"title":6204,"module":6205,"summary":6206},"\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":6208,"title":6209,"module":6205,"summary":6210},"\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":6212,"title":6213,"module":6205,"summary":6214},"\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":6216,"title":6217,"module":6205,"summary":6218},"\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":6220,"title":6221,"module":6222,"summary":6223},"\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":6225,"title":6226,"module":6222,"summary":6227},"\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":6229,"title":6230,"module":6222,"summary":6231},"\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":6233,"title":6234,"module":6222,"summary":6235},"\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":6237,"title":6238,"module":6239,"summary":6240},"\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":6242,"title":6243,"module":6239,"summary":6244},"\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":6246,"title":6247,"module":6239,"summary":6248},"\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":6250,"title":6251,"module":6239,"summary":6252},"\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":6254,"title":6255,"module":6256,"summary":6257},"\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":6259,"title":6260,"module":6256,"summary":6261},"\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":6263,"title":6264,"module":6256,"summary":6265},"\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":6267,"title":6268,"module":6256,"summary":6269},"\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":6271,"title":6272,"module":6273,"summary":6274},"\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":6276,"title":6277,"module":6273,"summary":6278},"\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":6280,"title":6281,"module":6273,"summary":6282},"\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":6284,"title":6285,"module":6273,"summary":6286},"\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":6288,"title":6289,"module":6290,"summary":6291},"\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":6293,"title":6294,"module":6290,"summary":6295},"\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":6297,"title":6298,"module":6290,"summary":6299},"\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":6301,"title":6302,"module":6290,"summary":6303},"\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":6305,"title":6306,"module":6290,"summary":6307},"\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":6309,"title":6310,"module":6311,"summary":6312},"\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":6314,"title":6315,"module":6311,"summary":6316},"\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":6318,"title":6319,"module":6320,"summary":6321},"\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":6323,"title":6324,"module":6320,"summary":6325},"\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":6327,"title":6328,"module":6320,"summary":6329},"\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":6331,"title":6332,"module":6320,"summary":6333},"\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":6335,"title":6336,"module":6337,"summary":6338},"\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":6340,"title":6341,"module":6337,"summary":6342},"\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":6344,"title":6345,"module":6337,"summary":6346},"\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":6348,"title":6349,"module":6337,"summary":6350},"\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":6352,"title":6353,"module":6337,"summary":6354},"\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":6356,"title":6357,"module":6358,"summary":6359},"\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":6361,"title":6362,"module":6358,"summary":6363},"\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":6365,"title":6366,"module":6358,"summary":6367},"\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":6369,"title":6370,"module":6358,"summary":6371},"\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":6373,"title":6374,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":6376,"title":6377,"module":5,"summary":6378},"\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":6380,"title":6381,"module":6382,"summary":6383},"\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":6385,"title":6386,"module":6382,"summary":6387},"\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":6389,"title":6390,"module":6382,"summary":6391},"\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":6393,"title":6394,"module":6382,"summary":6395},"\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":6397,"title":6398,"module":6382,"summary":6399},"\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":6401,"title":6402,"module":6382,"summary":6403},"\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":6405,"title":6406,"module":6382,"summary":6407},"\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":6409,"title":6410,"module":6411,"summary":6412},"\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":6414,"title":6415,"module":6411,"summary":6416},"\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":6418,"title":6419,"module":6411,"summary":6420},"\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":6422,"title":6423,"module":6411,"summary":6424},"\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":6426,"title":6427,"module":6428,"summary":6429},"\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":6431,"title":6432,"module":6428,"summary":6433},"\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":6435,"title":6436,"module":6428,"summary":6437},"\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":6439,"title":6440,"module":6428,"summary":6441},"\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":6443,"title":6444,"module":6445,"summary":6446},"\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":6448,"title":6449,"module":6445,"summary":6450},"\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":6452,"title":6453,"module":6445,"summary":6454},"\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":6456,"title":6457,"module":6445,"summary":6458},"\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":6460,"title":6461,"module":6462,"summary":6463},"\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":6465,"title":6466,"module":6462,"summary":6467},"\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":6469,"title":6470,"module":6462,"summary":6471},"\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":6473,"title":6474,"module":6462,"summary":6475},"\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":6477,"title":6478,"module":6479,"summary":6480},"\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":6482,"title":6483,"module":6479,"summary":6484},"\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":6486,"title":6487,"module":6479,"summary":6488},"\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":6490,"title":6491,"module":6492,"summary":6493},"\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":6495,"title":6496,"module":6492,"summary":6497},"\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":6499,"title":6500,"module":6501,"summary":6502},"\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":6504,"title":6505,"module":6501,"summary":6506},"\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":6508,"title":6509,"module":6501,"summary":6510},"\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":6512,"title":6513,"module":306,"summary":306},"\u002Flogic","Logic",{"path":6515,"title":6516,"module":5,"summary":6517},"\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":6519,"title":6520,"module":5,"summary":6521},"\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":6523,"title":6524,"module":5,"summary":6525},"\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":6527,"title":6528,"module":5,"summary":6529},"\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":6531,"title":6532,"module":5,"summary":6533},"\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":6535,"title":6536,"module":5,"summary":6537},"\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":6539,"title":3516,"module":6540,"summary":6541},"\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":6543,"title":6544,"module":6540,"summary":6545},"\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":6547,"title":6548,"module":6540,"summary":6549},"\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":6551,"title":6552,"module":6540,"summary":6553},"\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":6555,"title":6556,"module":6540,"summary":6557},"\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":6559,"title":6560,"module":6540,"summary":6561},"\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":6563,"title":6564,"module":6540,"summary":6565},"\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":6567,"title":6568,"module":6540,"summary":6569},"\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":6571,"title":6572,"module":6540,"summary":6573},"\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":6575,"title":6576,"module":6540,"summary":6577},"\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":6579,"title":6580,"module":6540,"summary":6581},"\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":6583,"title":6584,"module":6540,"summary":6585},"\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":6587,"title":6588,"module":6589,"summary":6590},"\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":6592,"title":6593,"module":6589,"summary":6594},"\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":6596,"title":6597,"module":6589,"summary":6598},"\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":6600,"title":6601,"module":6589,"summary":6602},"\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":6604,"title":6605,"module":6589,"summary":6606},"\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":6608,"title":6609,"module":6589,"summary":6610},"\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":6612,"title":6613,"module":6589,"summary":6614},"\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":6616,"title":6617,"module":6589,"summary":6618},"\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":6620,"title":6621,"module":6589,"summary":6622},"\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":6624,"title":6625,"module":6589,"summary":6626},"\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":6628,"title":6629,"module":6589,"summary":6630},"\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":6632,"title":6633,"module":6589,"summary":6634},"\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":6636,"title":6637,"module":6589,"summary":6638},"\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":6640,"title":6641,"module":6589,"summary":6642},"\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":6644,"title":5962,"module":6645,"summary":6646},"\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":6648,"title":6649,"module":6645,"summary":6650},"\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":6652,"title":6653,"module":6645,"summary":6654},"\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":6656,"title":6657,"module":6645,"summary":6658},"\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":6660,"title":6661,"module":6645,"summary":6662},"\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":6664,"title":6665,"module":6645,"summary":6666},"\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":6668,"title":6669,"module":6645,"summary":6670},"\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":6672,"title":6673,"module":6645,"summary":6674},"\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":6676,"title":6677,"module":6678,"summary":6679},"\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":6681,"title":6682,"module":6678,"summary":6683},"\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":6685,"title":6686,"module":6678,"summary":6687},"\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":6689,"title":6690,"module":6678,"summary":6691},"\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":6693,"title":6694,"module":6678,"summary":6695},"\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":6697,"title":6698,"module":6678,"summary":6699},"\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":6701,"title":6702,"module":6678,"summary":6703},"\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":6705,"title":6706,"module":6678,"summary":6707},"\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":6709,"title":6710,"module":6678,"summary":6711},"\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":6713,"title":6714,"module":6678,"summary":6715},"\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":6717,"title":6718,"module":6678,"summary":6719},"\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":6721,"title":6722,"module":6678,"summary":6723},"\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":6725,"title":6726,"module":6678,"summary":6727},"\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":6729,"title":6730,"module":6678,"summary":6731},"\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":6733,"title":6734,"module":6678,"summary":6735},"\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":6737,"title":6738,"module":6678,"summary":6739},"\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":6741,"title":6742,"module":6678,"summary":6743},"\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":6745,"title":6746,"module":6678,"summary":6747},"\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":6749,"title":6750,"module":6678,"summary":6751},"\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":6753,"title":6754,"module":6678,"summary":6755},"\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":6757,"title":6758,"module":6678,"summary":6759},"\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":6761,"title":6762,"module":6678,"summary":6763},"\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":6765,"title":6766,"module":6767,"summary":6768},"\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":6770,"title":6771,"module":6767,"summary":6772},"\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":6774,"title":6775,"module":6767,"summary":6776},"\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":6778,"title":6779,"module":6767,"summary":6780},"\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":6782,"title":6783,"module":6767,"summary":6784},"\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":6786,"title":6787,"module":6767,"summary":6788},"\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":6790,"title":6791,"module":6767,"summary":6792},"\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":6794,"title":6795,"module":6767,"summary":6796},"\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":6798,"title":5954,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6800,"title":6801,"module":5,"summary":6802},"\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":6804,"title":6805,"module":5,"summary":6806},"\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":6808,"title":6809,"module":5,"summary":6810},"\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":6812,"title":6813,"module":5,"summary":6814},"\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":6816,"title":6817,"module":6818,"summary":6819},"\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":6821,"title":6822,"module":6818,"summary":6823},"\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":6825,"title":6826,"module":6818,"summary":6827},"\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":6829,"title":6830,"module":6818,"summary":6831},"\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":6833,"title":6834,"module":6818,"summary":6835},"\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":6837,"title":6838,"module":6818,"summary":6839},"\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":6841,"title":6842,"module":6818,"summary":6843},"\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":6845,"title":6846,"module":6818,"summary":6847},"\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":6849,"title":6850,"module":6818,"summary":6851},"\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":6853,"title":6854,"module":6818,"summary":6855},"\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":6857,"title":6858,"module":6818,"summary":6859},"\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":6861,"title":6862,"module":6818,"summary":6863},"\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":6865,"title":6866,"module":6867,"summary":6868},"\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":6870,"title":6871,"module":6867,"summary":6872},"\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":6874,"title":6875,"module":6867,"summary":6876},"\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":6878,"title":6879,"module":6867,"summary":6880},"\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":6882,"title":6883,"module":6867,"summary":6884},"\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":6886,"title":6887,"module":6867,"summary":6888},"\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":6890,"title":6891,"module":6867,"summary":6892},"\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":6894,"title":6895,"module":6867,"summary":6896},"\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":6898,"title":6899,"module":6867,"summary":6900},"\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":6902,"title":6903,"module":6867,"summary":6904},"\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":6906,"title":6907,"module":6867,"summary":6908},"\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":6910,"title":6911,"module":6867,"summary":6912},"\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":6914,"title":6915,"module":6916,"summary":6917},"\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":6919,"title":6920,"module":6916,"summary":6921},"\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":6923,"title":6924,"module":6916,"summary":6925},"\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":6927,"title":6928,"module":6916,"summary":6929},"\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":6931,"title":6932,"module":6916,"summary":6933},"\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":6935,"title":6936,"module":6916,"summary":6937},"\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":6939,"title":6940,"module":6916,"summary":6941},"\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":6943,"title":6532,"module":6916,"summary":6944},"\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":6946,"title":6947,"module":6916,"summary":6948},"\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":6950,"title":6951,"module":6916,"summary":6952},"\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":6954,"title":6955,"module":6956,"summary":6957},"\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":6959,"title":6960,"module":6956,"summary":6961},"\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":6963,"title":6964,"module":6956,"summary":6965},"\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":6967,"title":6968,"module":6956,"summary":6969},"\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":6971,"title":5954,"module":6956,"summary":6972},"\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":6974,"title":6975,"module":6956,"summary":6976},"\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":6978,"title":6979,"module":6956,"summary":6980},"\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":6982,"title":6983,"module":6956,"summary":6984},"\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":6986,"title":6987,"module":6988,"summary":6989},"\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":6991,"title":6992,"module":6988,"summary":6993},"\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":6995,"title":6996,"module":6988,"summary":6997},"\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":6999,"title":7000,"module":6988,"summary":7001},"\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":7003,"title":7004,"module":6988,"summary":7005},"\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":7007,"title":7008,"module":6988,"summary":7009},"\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":7011,"title":7012,"module":6988,"summary":7013},"\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":7015,"title":7016,"module":6988,"summary":7017},"\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":7019,"title":7020,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":7022,"title":7023,"module":7024,"summary":7025},"\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":7027,"title":7028,"module":7024,"summary":7029},"\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":7031,"title":7032,"module":7024,"summary":7033},"\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":7035,"title":7036,"module":7024,"summary":7037},"\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":7039,"title":7040,"module":7024,"summary":7041},"\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":7043,"title":7044,"module":7045,"summary":7046},"\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":7048,"title":7049,"module":7045,"summary":7050},"\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":7052,"title":7053,"module":7045,"summary":7054},"\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":7056,"title":7057,"module":7045,"summary":7058},"\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":7060,"title":7061,"module":7062,"summary":7063},"\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":7065,"title":7066,"module":7062,"summary":7067},"\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":7069,"title":7070,"module":7062,"summary":7071},"\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":7073,"title":7074,"module":7062,"summary":7075},"\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":7077,"title":7078,"module":7079,"summary":7080},"\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":7082,"title":7083,"module":7079,"summary":7084},"\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":7086,"title":7087,"module":7088,"summary":7089},"\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":7091,"title":7092,"module":7088,"summary":7093},"\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":7095,"title":7096,"module":7097,"summary":7098},"\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":7100,"title":7101,"module":7097,"summary":7102},"\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":7104,"title":7105,"module":7097,"summary":7106},"\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":7108,"title":7109,"module":7097,"summary":7110},"\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":7112,"title":7113,"module":7114,"summary":7115},"\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":7117,"title":7118,"module":7114,"summary":7119},"\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":7121,"title":7122,"module":7114,"summary":7123},"\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":7125,"title":7126,"module":7127,"summary":7128},"\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":7130,"title":7131,"module":7127,"summary":7132},"\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":7134,"title":7135,"module":7127,"summary":7136},"\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":7138,"title":7139,"module":7140,"summary":7141},"\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":7143,"title":7144,"module":7140,"summary":7145},"\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":7147,"title":7148,"module":7149,"summary":7150},"\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":7152,"title":7153,"module":7149,"summary":7154},"\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":7156,"title":7157,"module":7149,"summary":7158},"\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":7160,"title":7161,"module":7162,"summary":7163},"\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":7165,"title":7166,"module":7162,"summary":7167},"\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":7169,"title":7170,"module":7162,"summary":7171},"\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":7173,"title":7174,"module":7162,"summary":7175},"\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":7177,"title":7178,"module":7162,"summary":7179},"\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":7181,"title":7182,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":7184,"title":7185,"module":5,"summary":7186},"\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":7188,"title":7189,"module":5,"summary":7190},"\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":7192,"title":7193,"module":5,"summary":7194},"\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":7196,"title":7197,"module":5,"summary":7198},"\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":7200,"title":7201,"module":5,"summary":7202},"\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":7204,"title":7205,"module":7206,"summary":7207},"\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":7209,"title":7210,"module":7206,"summary":7211},"\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":7213,"title":7214,"module":7206,"summary":7215},"\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":7217,"title":7218,"module":7206,"summary":7219},"\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":7221,"title":7222,"module":7223,"summary":7224},"\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":7226,"title":7227,"module":7223,"summary":7228},"\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":7230,"title":7231,"module":7223,"summary":7232},"\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":7234,"title":7235,"module":3763,"summary":7236},"\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":7238,"title":7239,"module":3763,"summary":7240},"\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":7242,"title":7243,"module":3763,"summary":7244},"\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":7246,"title":7247,"module":4245,"summary":7248},"\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":7250,"title":5800,"module":4245,"summary":7251},"\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":7253,"title":5908,"module":4245,"summary":7254},"\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":7256,"title":7257,"module":4245,"summary":7258},"\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":7260,"title":7261,"module":4245,"summary":7262},"\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":7264,"title":7265,"module":4245,"summary":7266},"\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":7268,"title":7269,"module":7270,"summary":7271},"\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":7273,"title":7274,"module":7270,"summary":7275},"\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":7277,"title":7278,"module":7270,"summary":7279},"\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":7281,"title":7282,"module":7270,"summary":7283},"\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":7285,"title":7286,"module":7270,"summary":7287},"\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":7289,"title":7290,"module":7270,"summary":7291},"\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":7293,"title":7294,"module":7270,"summary":7295},"\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":7297,"title":7298,"module":7270,"summary":7299},"\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":7301,"title":7302,"module":7270,"summary":7303},"\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":7305,"title":7306,"module":7270,"summary":7307},"\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":7309,"title":7310,"module":7270,"summary":7311},"\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":7313,"title":7314,"module":7270,"summary":7315},"\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":7317,"title":7318,"module":7270,"summary":7319},"\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":7321,"title":7322,"module":7270,"summary":7323},"\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":7325,"title":7326,"module":7270,"summary":7327},"\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":7329,"title":7330,"module":7270,"summary":7331},"\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":7333,"title":7334,"module":7270,"summary":7335},"\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":7337,"title":7338,"module":7270,"summary":7339},"\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":7341,"title":7342,"module":7270,"summary":7343},"\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":7345,"title":7346,"module":7270,"summary":7347},"\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":7349,"title":7350,"module":5896,"summary":7351},"\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":7353,"title":7354,"module":5896,"summary":7355},"\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":7357,"title":7358,"module":5896,"summary":7359},"\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":7361,"title":7362,"module":5896,"summary":7363},"\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":7365,"title":7366,"module":5896,"summary":7367},"\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":7369,"title":7370,"module":5896,"summary":7371},"\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":7373,"title":7374,"module":5896,"summary":7375},"\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":7377,"title":7378,"module":5896,"summary":7379},"\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":7381,"title":7382,"module":7383,"summary":7384},"\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":7386,"title":7387,"module":7383,"summary":7388},"\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":7390,"title":7391,"module":7383,"summary":7392},"\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":7394,"title":7395,"module":7383,"summary":7396},"\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":7398,"title":7399,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":7401,"title":7402,"module":5,"summary":7403},"\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":7405,"title":7406,"module":5,"summary":7407},"\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":7409,"title":7410,"module":5,"summary":7411},"\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":7413,"title":7414,"module":7415,"summary":7416},"\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":7418,"title":7419,"module":7415,"summary":7420},"\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":7422,"title":7423,"module":7415,"summary":7424},"\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":7426,"title":7427,"module":7415,"summary":7428},"\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":7430,"title":7431,"module":7432,"summary":7433},"\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":7435,"title":7436,"module":7432,"summary":7437},"\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":7439,"title":7440,"module":7432,"summary":7441},"\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":7443,"title":7444,"module":7432,"summary":7445},"\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":7447,"title":7448,"module":7449,"summary":7450},"\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":7452,"title":7453,"module":7449,"summary":7454},"\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":7456,"title":7457,"module":7449,"summary":7458},"\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":7460,"title":7461,"module":7449,"summary":7462},"\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":7464,"title":7465,"module":7466,"summary":7467},"\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":7469,"title":7470,"module":7466,"summary":7471},"\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":7473,"title":7474,"module":7466,"summary":7475},"\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":7477,"title":7478,"module":7479,"summary":7480},"\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":7482,"title":7483,"module":7479,"summary":7484},"\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":7486,"title":7487,"module":7479,"summary":7488},"\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":7490,"title":7491,"module":7479,"summary":7492},"\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":7494,"title":7495,"module":7496,"summary":7497},"\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":7499,"title":7500,"module":7496,"summary":7501},"\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":7503,"title":7504,"module":7496,"summary":7505},"\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":7507,"title":7508,"module":7496,"summary":7509},"\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":7511,"title":7512,"module":7513,"summary":7514},"\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":7516,"title":7517,"module":7513,"summary":7518},"\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":7520,"title":7521,"module":7513,"summary":7522},"\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":7524,"title":7525,"module":7513,"summary":7526},"\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":7528,"title":7529,"module":7530,"summary":7531},"\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":7533,"title":7534,"module":7530,"summary":7535},"\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":7537,"title":7538,"module":7530,"summary":7539},"\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":7541,"title":7542,"module":7530,"summary":7543},"\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":7545,"title":7546,"module":7530,"summary":7547},"\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":7549,"title":7550,"module":7551,"summary":7552},"\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":7554,"title":7555,"module":7551,"summary":7556},"\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":7558,"title":7559,"module":7551,"summary":7560},"\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":7562,"title":7563,"module":7564,"summary":7565},"\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":7567,"title":7568,"module":7564,"summary":7569},"\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":7571,"title":7572,"module":7564,"summary":7573},"\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":7575,"title":7576,"module":7576,"summary":7577},"\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":7579,"title":7580,"module":7576,"summary":7581},"\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":7583,"title":7584,"module":7576,"summary":7585},"\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":7587,"title":7588,"module":7576,"summary":7589},"\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":7591,"title":7592,"module":7576,"summary":7593},"\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":7595,"title":7596,"module":7576,"summary":7597},"\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":7599,"title":7600,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":7602,"title":7603,"module":7604,"summary":7605},"\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":7607,"title":7608,"module":7604,"summary":7609},"\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":7611,"title":7612,"module":7604,"summary":7613},"\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":7615,"title":7616,"module":7617,"summary":7618},"\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":7620,"title":7621,"module":7617,"summary":7622},"\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":7624,"title":7625,"module":7617,"summary":7626},"\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":7628,"title":7629,"module":7617,"summary":7630},"\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":7632,"title":7633,"module":7634,"summary":7635},"\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":7637,"title":7638,"module":7634,"summary":7639},"\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":7641,"title":7642,"module":7634,"summary":7643},"\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":7645,"title":7646,"module":7634,"summary":7647},"\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":7649,"title":7650,"module":7651,"summary":7652},"\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":7654,"title":7655,"module":7651,"summary":7656},"\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":7658,"title":7659,"module":7651,"summary":7660},"\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":7662,"title":7663,"module":7651,"summary":7664},"\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":7666,"title":7667,"module":7668,"summary":7669},"\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":7671,"title":7672,"module":7668,"summary":7673},"\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":7675,"title":7676,"module":7668,"summary":7677},"\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":7679,"title":7680,"module":7668,"summary":7681},"\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":7683,"title":7684,"module":7685,"summary":7686},"\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":7688,"title":7689,"module":7685,"summary":7690},"\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":7692,"title":7693,"module":7685,"summary":7694},"\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":7696,"title":7697,"module":7698,"summary":7699},"\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":7701,"title":7702,"module":7698,"summary":7703},"\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":7705,"title":7706,"module":7698,"summary":7707},"\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":7709,"title":7710,"module":7698,"summary":7711},"\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":7713,"title":6129,"module":7714,"summary":7715},"\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":7717,"title":7718,"module":7714,"summary":7719},"\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":7721,"title":7722,"module":7714,"summary":7723},"\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":7725,"title":7726,"module":7714,"summary":7727},"\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":7729,"title":7730,"module":7714,"summary":7731},"\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":7733,"title":7734,"module":7735,"summary":7736},"\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":7738,"title":7739,"module":7735,"summary":7740},"\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":7742,"title":7743,"module":7735,"summary":7744},"\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":7746,"title":7747,"module":7735,"summary":7748},"\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":7750,"title":7751,"module":7752,"summary":7753},"\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":7755,"title":7756,"module":7752,"summary":7757},"\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":7759,"title":7760,"module":7752,"summary":7761},"\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":7763,"title":7764,"module":7752,"summary":7765},"\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":7767,"title":7768,"module":7752,"summary":7769},"\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":7771,"title":7772,"module":7773,"summary":7774},"\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":7776,"title":7777,"module":7773,"summary":7778},"\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":7780,"title":4847,"module":7773,"summary":7781},"\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":7783,"title":7784,"module":7773,"summary":7785},"\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":7787,"title":7788,"module":7773,"summary":7789},"\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":7791,"title":7792,"module":7793,"summary":7794},"\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":7796,"title":7797,"module":7793,"summary":7798},"\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":7800,"title":7801,"module":7793,"summary":7802},"\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":7804,"title":7805,"module":7793,"summary":7806},"\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":7808,"title":7809,"module":7793,"summary":7810},"\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":7812,"title":7813,"module":7793,"summary":7814},"\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":7816,"title":7817,"module":7793,"summary":7818},"\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":7820,"title":7821,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7823,"title":7824,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":7826,"title":7827,"module":306,"summary":306},"\u002F","Study Notes","\u003Csvg style=\"width:100%;max-width:503.016px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 377.262 152.078\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-72.07h364.195\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M11.267-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.137-64.048L13.349-62.411L13.082-62.411Q13.004-63.022 12.852-63.301Q12.699-63.579 12.395-63.673Q12.091-63.767 11.466-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.799L10.919-61.799Q11.288-61.799 11.472-61.853Q11.657-61.908 11.736-62.081Q11.814-62.253 11.814-62.619L12.081-62.619L12.081-60.702L11.814-60.702Q11.814-61.067 11.736-61.240Q11.657-61.412 11.472-61.465Q11.288-61.518 10.919-61.518L10.365-61.518L10.365-59.755Q10.365-59.546 11.267-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M13.361-60.801Q13.361-61.122 13.486-61.411Q13.611-61.700 13.837-61.923Q14.062-62.147 14.358-62.267Q14.653-62.387 14.971-62.387Q15.299-62.387 15.561-62.287Q15.822-62.188 15.998-62.006Q16.174-61.823 16.268-61.565Q16.362-61.307 16.362-60.975Q16.362-60.883 16.280-60.862L14.025-60.862L14.025-60.801Q14.025-60.213 14.308-59.830Q14.592-59.447 15.159-59.447Q15.481-59.447 15.749-59.640Q16.017-59.833 16.106-60.148Q16.113-60.189 16.188-60.203L16.280-60.203Q16.362-60.179 16.362-60.107Q16.362-60.100 16.356-60.073Q16.243-59.676 15.872-59.437Q15.501-59.198 15.077-59.198Q14.640-59.198 14.240-59.406Q13.840-59.615 13.601-59.982Q13.361-60.349 13.361-60.801M14.031-61.071L15.846-61.071Q15.846-61.348 15.749-61.600Q15.651-61.853 15.453-62.009Q15.255-62.164 14.971-62.164Q14.694-62.164 14.481-62.006Q14.267-61.847 14.149-61.592Q14.031-61.337 14.031-61.071M17.477-60.107L17.477-62.004L16.838-62.004L16.838-62.226Q17.155-62.226 17.372-62.436Q17.589-62.646 17.690-62.956Q17.791-63.265 17.791-63.573L18.058-63.573L18.058-62.284L19.134-62.284L19.134-62.004L18.058-62.004L18.058-60.120Q18.058-59.844 18.162-59.645Q18.266-59.447 18.526-59.447Q18.683-59.447 18.789-59.551Q18.895-59.656 18.945-59.809Q18.994-59.963 18.994-60.120L18.994-60.534L19.261-60.534L19.261-60.107Q19.261-59.881 19.162-59.671Q19.063-59.461 18.878-59.329Q18.693-59.198 18.464-59.198Q18.027-59.198 17.752-59.435Q17.477-59.673 17.477-60.107M20.071-60.777Q20.071-61.105 20.206-61.406Q20.341-61.706 20.577-61.927Q20.813-62.147 21.117-62.267Q21.421-62.387 21.746-62.387Q22.252-62.387 22.600-62.284Q22.949-62.182 22.949-61.806Q22.949-61.659 22.851-61.558Q22.754-61.457 22.607-61.457Q22.453-61.457 22.354-61.556Q22.255-61.655 22.255-61.806Q22.255-61.994 22.395-62.086Q22.193-62.137 21.753-62.137Q21.397-62.137 21.168-61.941Q20.939-61.744 20.838-61.435Q20.737-61.125 20.737-60.777Q20.737-60.428 20.864-60.122Q20.990-59.816 21.245-59.632Q21.500-59.447 21.855-59.447Q22.077-59.447 22.262-59.531Q22.446-59.615 22.581-59.770Q22.716-59.926 22.775-60.134Q22.788-60.189 22.843-60.189L22.956-60.189Q22.986-60.189 23.009-60.165Q23.031-60.141 23.031-60.107L23.031-60.086Q22.945-59.799 22.757-59.601Q22.569-59.403 22.305-59.300Q22.040-59.198 21.746-59.198Q21.315-59.198 20.927-59.404Q20.539-59.611 20.305-59.974Q20.071-60.336 20.071-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M25.105-59.266L23.471-59.266L23.471-59.546Q23.700-59.546 23.849-59.580Q23.998-59.615 23.998-59.755L23.998-63.374Q23.998-63.644 23.890-63.706Q23.782-63.767 23.471-63.767L23.471-64.048L24.551-64.123L24.551-61.737Q24.657-61.922 24.835-62.064Q25.013-62.205 25.221-62.279Q25.430-62.352 25.655-62.352Q26.161-62.352 26.445-62.129Q26.729-61.905 26.729-61.409L26.729-59.755Q26.729-59.618 26.877-59.582Q27.026-59.546 27.252-59.546L27.252-59.266L25.621-59.266L25.621-59.546Q25.850-59.546 25.999-59.580Q26.148-59.615 26.148-59.755L26.148-61.395Q26.148-61.730 26.028-61.930Q25.908-62.130 25.594-62.130Q25.324-62.130 25.090-61.994Q24.856-61.857 24.717-61.623Q24.579-61.389 24.579-61.115L24.579-59.755Q24.579-59.618 24.729-59.582Q24.880-59.546 25.105-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M9.191-59.504L9.191-59.594Q9.242-59.801 9.437-59.825L10.476-59.825L10.476-62.153L9.504-62.153Q9.304-62.176 9.254-62.395L9.254-62.481Q9.304-62.692 9.504-62.715L10.871-62.715Q11.066-62.696 11.117-62.481L11.117-59.825L12.031-59.825Q12.226-59.801 12.277-59.594L12.277-59.504Q12.226-59.289 12.031-59.266L9.437-59.266Q9.242-59.289 9.191-59.504M10.222-63.692L10.222-63.746Q10.222-63.918 10.359-64.039Q10.496-64.161 10.672-64.161Q10.844-64.161 10.980-64.039Q11.117-63.918 11.117-63.746L11.117-63.692Q11.117-63.516 10.980-63.395Q10.844-63.274 10.672-63.274Q10.496-63.274 10.359-63.395Q10.222-63.516 10.222-63.692M13.379-60.993Q13.379-61.473 13.623-61.887Q13.867-62.301 14.283-62.539Q14.699-62.778 15.179-62.778Q15.734-62.778 16.113-62.668Q16.492-62.559 16.492-62.153Q16.492-61.985 16.379-61.862Q16.265-61.739 16.094-61.739Q15.922-61.739 15.803-61.854Q15.683-61.969 15.683-62.137L15.683-62.196Q15.523-62.219 15.187-62.219Q14.859-62.219 14.592-62.049Q14.324-61.879 14.172-61.596Q14.019-61.313 14.019-60.993Q14.019-60.672 14.191-60.391Q14.363-60.110 14.648-59.948Q14.933-59.786 15.261-59.786Q15.574-59.786 15.701-59.889Q15.828-59.993 15.945-60.182Q16.062-60.371 16.179-60.387L16.347-60.387Q16.453-60.375 16.517-60.307Q16.582-60.239 16.582-60.137Q16.582-60.090 16.562-60.051Q16.453-59.758 16.250-59.578Q16.047-59.399 15.771-59.313Q15.496-59.227 15.179-59.227Q14.695-59.227 14.279-59.465Q13.863-59.703 13.621-60.106Q13.379-60.508 13.379-60.993M19.187-59.227Q18.715-59.227 18.330-59.471Q17.945-59.715 17.722-60.125Q17.500-60.536 17.500-60.993Q17.500-61.336 17.625-61.659Q17.750-61.981 17.980-62.235Q18.211-62.489 18.517-62.633Q18.824-62.778 19.187-62.778Q19.551-62.778 19.863-62.631Q20.176-62.485 20.398-62.239Q20.621-61.993 20.748-61.672Q20.875-61.352 20.875-60.993Q20.875-60.536 20.650-60.123Q20.426-59.711 20.041-59.469Q19.656-59.227 19.187-59.227M19.187-59.786Q19.652-59.786 19.943-60.180Q20.234-60.575 20.234-61.059Q20.234-61.352 20.099-61.620Q19.965-61.887 19.724-62.053Q19.484-62.219 19.187-62.219Q18.883-62.219 18.644-62.053Q18.406-61.887 18.271-61.620Q18.136-61.352 18.136-61.059Q18.136-60.578 18.429-60.182Q18.722-59.786 19.187-59.786M23.176-59.227Q22.711-59.227 22.345-59.477Q21.980-59.727 21.775-60.131Q21.570-60.536 21.570-60.993Q21.570-61.336 21.695-61.657Q21.820-61.977 22.053-62.227Q22.285-62.477 22.590-62.616Q22.894-62.754 23.250-62.754Q23.761-62.754 24.168-62.434L24.168-63.594L23.746-63.594Q23.535-63.618 23.496-63.832L23.496-63.922Q23.535-64.129 23.746-64.153L24.558-64.153Q24.758-64.129 24.808-63.922L24.808-59.825L25.234-59.825Q25.441-59.801 25.480-59.594L25.480-59.504Q25.441-59.289 25.234-59.266L24.418-59.266Q24.219-59.289 24.168-59.504L24.168-59.633Q23.972-59.442 23.711-59.334Q23.449-59.227 23.176-59.227M23.215-59.786Q23.574-59.786 23.826-60.055Q24.078-60.325 24.168-60.700L24.168-61.532Q24.109-61.719 23.982-61.870Q23.855-62.020 23.678-62.108Q23.500-62.196 23.304-62.196Q22.996-62.196 22.746-62.026Q22.496-61.856 22.351-61.571Q22.207-61.286 22.207-60.985Q22.207-60.536 22.492-60.161Q22.777-59.786 23.215-59.786M29.070-60.754L26.629-60.754Q26.683-60.477 26.881-60.254Q27.078-60.032 27.355-59.909Q27.633-59.786 27.918-59.786Q28.390-59.786 28.613-60.075Q28.621-60.086 28.678-60.192Q28.734-60.297 28.783-60.340Q28.832-60.383 28.926-60.395L29.070-60.395Q29.261-60.375 29.320-60.161L29.320-60.106Q29.254-59.805 29.023-59.608Q28.793-59.411 28.480-59.319Q28.168-59.227 27.863-59.227Q27.379-59.227 26.939-59.455Q26.500-59.684 26.232-60.084Q25.965-60.485 25.965-60.977L25.965-61.036Q25.965-61.504 26.211-61.907Q26.457-62.309 26.865-62.543Q27.273-62.778 27.742-62.778Q28.246-62.778 28.599-62.555Q28.953-62.332 29.136-61.944Q29.320-61.555 29.320-61.051L29.320-60.993Q29.261-60.778 29.070-60.754M26.636-61.305L28.664-61.305Q28.617-61.715 28.379-61.967Q28.140-62.219 27.742-62.219Q27.347-62.219 27.041-61.957Q26.734-61.696 26.636-61.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M30.543-59.731Q30.543-59.914 30.679-60.051Q30.816-60.188 31.008-60.188Q31.199-60.188 31.332-60.055Q31.465-59.922 31.465-59.731Q31.465-59.532 31.332-59.399Q31.199-59.266 31.008-59.266Q30.816-59.266 30.679-59.403Q30.543-59.539 30.543-59.731M30.543-62.258Q30.543-62.442 30.679-62.578Q30.816-62.715 31.008-62.715Q31.199-62.715 31.332-62.582Q31.465-62.450 31.465-62.258Q31.465-62.059 31.332-61.926Q31.199-61.793 31.008-61.793Q30.816-61.793 30.679-61.930Q30.543-62.067 30.543-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M32.802-59.504L32.802-59.594Q32.853-59.801 33.048-59.825L34.087-59.825L34.087-62.153L33.115-62.153Q32.915-62.176 32.865-62.395L32.865-62.481Q32.915-62.692 33.115-62.715L34.482-62.715Q34.677-62.696 34.728-62.481L34.728-59.825L35.642-59.825Q35.837-59.801 35.888-59.594L35.888-59.504Q35.837-59.289 35.642-59.266L33.048-59.266Q32.853-59.289 32.802-59.504M33.833-63.692L33.833-63.746Q33.833-63.918 33.970-64.039Q34.107-64.161 34.283-64.161Q34.455-64.161 34.591-64.039Q34.728-63.918 34.728-63.746L34.728-63.692Q34.728-63.516 34.591-63.395Q34.455-63.274 34.283-63.274Q34.107-63.274 33.970-63.395Q33.833-63.516 33.833-63.692M36.751-59.504L36.751-59.594Q36.802-59.801 36.998-59.825L37.880-59.825L37.880-62.153L37.025-62.153Q36.826-62.176 36.775-62.395L36.775-62.481Q36.826-62.692 37.025-62.715L37.880-62.715L37.880-63.168Q37.880-63.633 38.287-63.914Q38.693-64.196 39.173-64.196Q39.486-64.196 39.730-64.075Q39.974-63.953 39.974-63.672Q39.974-63.508 39.865-63.391Q39.755-63.274 39.591-63.274Q39.443-63.274 39.322-63.379Q39.201-63.485 39.201-63.633L39.119-63.633Q38.966-63.633 38.830-63.573Q38.693-63.512 38.607-63.397Q38.521-63.282 38.521-63.137L38.521-62.715L39.552-62.715Q39.748-62.696 39.798-62.481L39.798-62.395Q39.748-62.176 39.552-62.153L38.521-62.153L38.521-59.825L39.400-59.825Q39.595-59.801 39.646-59.594L39.646-59.504Q39.595-59.289 39.400-59.266L36.998-59.266Q36.802-59.289 36.751-59.504M41.419-60.121L41.419-62.153L40.998-62.153Q40.790-62.176 40.748-62.395L40.748-62.481Q40.794-62.692 40.998-62.715L41.814-62.715Q42.009-62.692 42.060-62.481L42.060-60.153Q42.060-59.918 42.230-59.852Q42.400-59.786 42.685-59.786Q42.892-59.786 43.087-59.862Q43.283-59.938 43.408-60.088Q43.533-60.239 43.533-60.450L43.533-62.153L43.111-62.153Q42.900-62.176 42.861-62.395L42.861-62.481Q42.900-62.692 43.111-62.715L43.923-62.715Q44.123-62.692 44.173-62.481L44.173-59.825L44.599-59.825Q44.806-59.801 44.845-59.594L44.845-59.504Q44.806-59.289 44.599-59.266L43.783-59.266Q43.583-59.289 43.533-59.489Q43.130-59.227 42.623-59.227Q42.388-59.227 42.173-59.268Q41.958-59.309 41.792-59.411Q41.626-59.512 41.523-59.690Q41.419-59.868 41.419-60.121M44.994-59.504L44.994-59.594Q45.037-59.801 45.244-59.825L45.665-59.825L45.665-62.153L45.244-62.153Q45.037-62.176 44.994-62.395L44.994-62.481Q45.040-62.692 45.244-62.715L46.060-62.715Q46.255-62.692 46.306-62.481L46.306-62.395L46.298-62.371Q46.525-62.551 46.798-62.653Q47.072-62.754 47.365-62.754Q47.712-62.754 47.951-62.614Q48.189-62.473 48.304-62.215Q48.419-61.957 48.419-61.602L48.419-59.825L48.845-59.825Q49.052-59.801 49.091-59.594L49.091-59.504Q49.052-59.289 48.845-59.266L47.451-59.266Q47.255-59.289 47.205-59.504L47.205-59.594Q47.255-59.805 47.451-59.825L47.779-59.825L47.779-61.571Q47.779-61.879 47.689-62.037Q47.599-62.196 47.306-62.196Q47.037-62.196 46.808-62.065Q46.580-61.934 46.443-61.705Q46.306-61.477 46.306-61.211L46.306-59.825L46.732-59.825Q46.939-59.801 46.978-59.594L46.978-59.504Q46.939-59.289 46.732-59.266L45.244-59.266Q45.037-59.289 44.994-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M57.508-60.243L52.195-60.243Q52.117-60.250 52.068-60.299Q52.020-60.348 52.020-60.426Q52.020-60.496 52.067-60.547Q52.113-60.598 52.195-60.610L57.508-60.610Q57.582-60.598 57.629-60.547Q57.676-60.496 57.676-60.426Q57.676-60.348 57.627-60.299Q57.578-60.250 57.508-60.243M57.508-61.930L52.195-61.930Q52.117-61.938 52.068-61.987Q52.020-62.036 52.020-62.114Q52.020-62.184 52.067-62.235Q52.113-62.286 52.195-62.297L57.508-62.297Q57.582-62.286 57.629-62.235Q57.676-62.184 57.676-62.114Q57.676-62.036 57.627-61.987Q57.578-61.938 57.508-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M62.757-59.266L61.039-59.266Q60.999-59.266 60.972-59.307Q60.945-59.348 60.945-59.395L60.968-59.496Q60.976-59.547 61.062-59.563Q61.792-59.563 61.917-60.090L62.945-64.188Q62.968-64.258 62.968-64.321Q62.968-64.383 62.902-64.403Q62.757-64.434 62.335-64.434Q62.230-64.465 62.230-64.563L62.261-64.664Q62.273-64.711 62.351-64.731L63.749-64.731Q63.808-64.731 63.845-64.702Q63.882-64.672 63.886-64.618L64.597-60.043L67.597-64.618Q67.675-64.731 67.792-64.731L69.136-64.731Q69.183-64.719 69.210-64.688Q69.238-64.657 69.238-64.610L69.214-64.504Q69.195-64.450 69.121-64.434Q68.679-64.434 68.519-64.395Q68.371-64.360 68.312-64.129L67.230-59.809Q67.214-59.715 67.214-59.672Q67.214-59.614 67.281-59.594Q67.421-59.563 67.847-59.563Q67.945-59.536 67.945-59.442L67.917-59.336Q67.910-59.286 67.832-59.266L65.749-59.266Q65.710-59.266 65.683-59.307Q65.656-59.348 65.656-59.395L65.679-59.496Q65.687-59.547 65.777-59.563Q66.214-59.563 66.373-59.602Q66.531-59.641 66.574-59.868L67.710-64.411L64.414-59.379Q64.347-59.266 64.214-59.266Q64.082-59.266 64.070-59.379L63.296-64.344L62.214-60.036Q62.199-59.934 62.199-59.883Q62.199-59.684 62.363-59.623Q62.527-59.563 62.777-59.563Q62.871-59.536 62.871-59.442L62.847-59.336Q62.839-59.286 62.757-59.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M71.723-58.155L69.432-58.155L69.432-58.413Q70.308-58.413 70.308-58.586L70.308-61.665Q70.115-61.577 69.883-61.540Q69.652-61.504 69.397-61.504L69.397-61.761Q69.775-61.761 70.096-61.846Q70.416-61.931 70.645-62.145L70.765-62.145Q70.797-62.145 70.822-62.122Q70.847-62.098 70.847-62.060L70.847-58.586Q70.847-58.413 71.723-58.413\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M75.017-57.266L73.841-57.266L73.841-65.266L75.017-65.266L75.017-64.899L74.208-64.899L74.208-57.633L75.017-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M75.394-59.504L75.394-59.594Q75.433-59.801 75.644-59.825L75.952-59.825L75.952-63.594L75.644-63.594Q75.433-63.618 75.394-63.832L75.394-63.922Q75.433-64.129 75.644-64.153L77.593-64.153Q77.991-64.153 78.337-63.952Q78.683-63.750 78.890-63.405Q79.097-63.059 79.097-62.657Q79.097-62.250 78.892-61.907Q78.687-61.563 78.341-61.358Q77.995-61.153 77.593-61.153L76.593-61.153L76.593-59.825L76.905-59.825Q77.116-59.801 77.155-59.594L77.155-59.504Q77.116-59.289 76.905-59.266L75.644-59.266Q75.433-59.289 75.394-59.504M76.593-63.594L76.593-61.715L77.433-61.715Q77.694-61.715 77.931-61.838Q78.167-61.961 78.312-62.176Q78.456-62.391 78.456-62.657Q78.456-62.926 78.312-63.137Q78.167-63.348 77.931-63.471Q77.694-63.594 77.433-63.594L76.593-63.594M81.722-59.188Q81.272-59.188 80.907-59.412Q80.542-59.637 80.288-60.020Q80.034-60.403 79.909-60.846Q79.784-61.289 79.784-61.715Q79.784-62.141 79.909-62.580Q80.034-63.020 80.288-63.403Q80.542-63.786 80.901-64.010Q81.261-64.235 81.722-64.235Q81.999-64.235 82.257-64.143Q82.515-64.051 82.730-63.883L82.862-64.121Q82.890-64.172 82.944-64.203Q82.999-64.235 83.058-64.235L83.136-64.235Q83.230-64.223 83.292-64.164Q83.355-64.106 83.366-64L83.366-62.672Q83.355-62.571 83.292-62.508Q83.230-62.446 83.136-62.434L82.968-62.434Q82.866-62.446 82.804-62.512Q82.741-62.578 82.730-62.672Q82.690-62.938 82.567-63.162Q82.444-63.387 82.241-63.530Q82.038-63.672 81.776-63.672Q81.444-63.672 81.192-63.489Q80.940-63.305 80.769-63.004Q80.597-62.703 80.511-62.362Q80.425-62.020 80.425-61.715Q80.425-61.411 80.509-61.069Q80.593-60.727 80.765-60.424Q80.937-60.121 81.194-59.934Q81.452-59.746 81.784-59.746Q82.167-59.746 82.448-60.020Q82.730-60.293 82.730-60.680Q82.757-60.891 82.968-60.914L83.136-60.914Q83.366-60.875 83.366-60.649Q83.366-60.332 83.230-60.061Q83.093-59.789 82.858-59.592Q82.624-59.395 82.333-59.291Q82.042-59.188 81.722-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M85.069-57.266L83.894-57.266L83.894-57.633L84.702-57.633L84.702-64.899L83.894-64.899L83.894-65.266L85.069-65.266L85.069-57.266M86.894-57.860Q86.894-57.899 86.917-57.922Q87.190-58.207 87.333-58.571Q87.476-58.934 87.476-59.321Q87.378-59.266 87.253-59.266Q87.062-59.266 86.925-59.399Q86.788-59.532 86.788-59.731Q86.788-59.922 86.925-60.055Q87.062-60.188 87.253-60.188Q87.733-60.188 87.733-59.313Q87.733-59.024 87.661-58.743Q87.589-58.461 87.446-58.207Q87.304-57.953 87.108-57.746Q87.077-57.715 87.038-57.715Q86.991-57.715 86.942-57.760Q86.894-57.805 86.894-57.860M86.788-62.258Q86.788-62.442 86.925-62.578Q87.062-62.715 87.253-62.715Q87.444-62.715 87.577-62.582Q87.710-62.450 87.710-62.258Q87.710-62.059 87.577-61.926Q87.444-61.793 87.253-61.793Q87.062-61.793 86.925-61.930Q86.788-62.067 86.788-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M94.322-59.504L94.322-59.594Q94.380-59.801 94.572-59.825L95.283-59.825L95.283-62.153L94.572-62.153Q94.376-62.176 94.322-62.395L94.322-62.481Q94.380-62.692 94.572-62.715L95.673-62.715Q95.872-62.696 95.923-62.481L95.923-62.153Q96.185-62.438 96.540-62.596Q96.896-62.754 97.283-62.754Q97.576-62.754 97.810-62.620Q98.044-62.485 98.044-62.219Q98.044-62.051 97.935-61.934Q97.826-61.817 97.658-61.817Q97.505-61.817 97.390-61.928Q97.275-62.039 97.275-62.196Q96.900-62.196 96.585-61.995Q96.271-61.793 96.097-61.459Q95.923-61.125 95.923-60.746L95.923-59.825L96.869-59.825Q97.076-59.801 97.115-59.594L97.115-59.504Q97.076-59.289 96.869-59.266L94.572-59.266Q94.380-59.289 94.322-59.504M98.576-59.504L98.576-59.594Q98.634-59.805 98.826-59.825L99.048-59.825L100.001-64.008Q100.025-64.125 100.120-64.200Q100.216-64.274 100.329-64.274L100.603-64.274Q100.716-64.274 100.812-64.198Q100.908-64.121 100.931-64.008L101.880-59.825L102.107-59.825Q102.314-59.801 102.353-59.594L102.353-59.504Q102.302-59.289 102.107-59.266L101.025-59.266Q100.829-59.289 100.779-59.504L100.779-59.594Q100.829-59.801 101.025-59.825L101.224-59.825Q101.095-60.391 101.072-60.473L99.857-60.473Q99.814-60.289 99.704-59.825L99.904-59.825Q100.103-59.801 100.154-59.594L100.154-59.504Q100.103-59.289 99.904-59.266L98.826-59.266Q98.619-59.289 98.576-59.504M99.978-61.036L100.954-61.036Q100.474-63.168 100.474-63.512L100.466-63.512Q100.466-63.328 100.326-62.645Q100.185-61.961 99.978-61.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M103.318-59.731Q103.318-59.914 103.454-60.051Q103.591-60.188 103.783-60.188Q103.974-60.188 104.107-60.055Q104.240-59.922 104.240-59.731Q104.240-59.532 104.107-59.399Q103.974-59.266 103.783-59.266Q103.591-59.266 103.454-59.403Q103.318-59.539 103.318-59.731M103.318-62.258Q103.318-62.442 103.454-62.578Q103.591-62.715 103.783-62.715Q103.974-62.715 104.107-62.582Q104.240-62.450 104.240-62.258Q104.240-62.059 104.107-61.926Q103.974-61.793 103.783-61.793Q103.591-61.793 103.454-61.930Q103.318-62.067 103.318-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M105.184-59.504L105.184-59.594Q105.242-59.801 105.434-59.825L106.145-59.825L106.145-62.153L105.434-62.153Q105.238-62.176 105.184-62.395L105.184-62.481Q105.242-62.692 105.434-62.715L106.535-62.715Q106.734-62.696 106.785-62.481L106.785-62.153Q107.047-62.438 107.402-62.596Q107.758-62.754 108.145-62.754Q108.438-62.754 108.672-62.620Q108.906-62.485 108.906-62.219Q108.906-62.051 108.797-61.934Q108.688-61.817 108.520-61.817Q108.367-61.817 108.252-61.928Q108.137-62.039 108.137-62.196Q107.762-62.196 107.447-61.995Q107.133-61.793 106.959-61.459Q106.785-61.125 106.785-60.746L106.785-59.825L107.731-59.825Q107.938-59.801 107.977-59.594L107.977-59.504Q107.938-59.289 107.731-59.266L105.434-59.266Q105.242-59.289 105.184-59.504M109.375-59.504L109.375-59.594Q109.414-59.801 109.621-59.825L109.910-59.825L109.910-63.594L109.621-63.594Q109.414-63.618 109.375-63.832L109.375-63.922Q109.414-64.129 109.621-64.153L111.582-64.153Q111.852-64.153 112.092-64.057Q112.332-63.961 112.523-63.791Q112.715-63.621 112.824-63.393Q112.934-63.164 112.934-62.899Q112.934-62.532 112.693-62.243Q112.453-61.953 112.086-61.825Q112.367-61.762 112.600-61.588Q112.832-61.414 112.967-61.159Q113.102-60.903 113.102-60.618Q113.102-60.258 112.920-59.948Q112.738-59.637 112.424-59.452Q112.109-59.266 111.750-59.266L109.621-59.266Q109.414-59.289 109.375-59.504M110.551-61.532L110.551-59.825L111.582-59.825Q111.809-59.825 112.012-59.928Q112.215-60.032 112.340-60.211Q112.465-60.391 112.465-60.618Q112.465-60.848 112.363-61.057Q112.262-61.266 112.080-61.399Q111.898-61.532 111.672-61.532L110.551-61.532M110.551-63.594L110.551-62.090L111.414-62.090Q111.758-62.090 112.027-62.325Q112.297-62.559 112.297-62.899Q112.297-63.086 112.199-63.246Q112.102-63.407 111.936-63.500Q111.770-63.594 111.582-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M121.783-60.243L116.470-60.243Q116.392-60.250 116.343-60.299Q116.295-60.348 116.295-60.426Q116.295-60.496 116.342-60.547Q116.388-60.598 116.470-60.610L121.783-60.610Q121.857-60.598 121.904-60.547Q121.951-60.496 121.951-60.426Q121.951-60.348 121.902-60.299Q121.853-60.250 121.783-60.243M121.783-61.930L116.470-61.930Q116.392-61.938 116.343-61.987Q116.295-62.036 116.295-62.114Q116.295-62.184 116.342-62.235Q116.388-62.286 116.470-62.297L121.783-62.297Q121.857-62.286 121.904-62.235Q121.951-62.184 121.951-62.114Q121.951-62.036 121.902-61.987Q121.853-61.938 121.783-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M127.032-59.266L125.314-59.266Q125.274-59.266 125.247-59.307Q125.220-59.348 125.220-59.395L125.243-59.496Q125.251-59.547 125.337-59.563Q126.067-59.563 126.192-60.090L127.220-64.188Q127.243-64.258 127.243-64.321Q127.243-64.383 127.177-64.403Q127.032-64.434 126.610-64.434Q126.505-64.465 126.505-64.563L126.536-64.664Q126.548-64.711 126.626-64.731L128.024-64.731Q128.083-64.731 128.120-64.702Q128.157-64.672 128.161-64.618L128.872-60.043L131.872-64.618Q131.950-64.731 132.067-64.731L133.411-64.731Q133.458-64.719 133.485-64.688Q133.513-64.657 133.513-64.610L133.489-64.504Q133.470-64.450 133.396-64.434Q132.954-64.434 132.794-64.395Q132.646-64.360 132.587-64.129L131.505-59.809Q131.489-59.715 131.489-59.672Q131.489-59.614 131.556-59.594Q131.696-59.563 132.122-59.563Q132.220-59.536 132.220-59.442L132.192-59.336Q132.185-59.286 132.106-59.266L130.024-59.266Q129.985-59.266 129.958-59.307Q129.931-59.348 129.931-59.395L129.954-59.496Q129.962-59.547 130.052-59.563Q130.489-59.563 130.648-59.602Q130.806-59.641 130.849-59.868L131.985-64.411L128.689-59.379Q128.622-59.266 128.489-59.266Q128.356-59.266 128.345-59.379L127.571-64.344L126.489-60.036Q126.474-59.934 126.474-59.883Q126.474-59.684 126.638-59.623Q126.802-59.563 127.052-59.563Q127.146-59.536 127.146-59.442L127.122-59.336Q127.114-59.286 127.032-59.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M135.999-58.155L133.708-58.155L133.708-58.413Q134.584-58.413 134.584-58.586L134.584-61.665Q134.391-61.577 134.159-61.540Q133.928-61.504 133.673-61.504L133.673-61.761Q134.051-61.761 134.372-61.846Q134.692-61.931 134.921-62.145L135.041-62.145Q135.073-62.145 135.098-62.122Q135.123-62.098 135.123-62.060L135.123-58.586Q135.123-58.413 135.999-58.413\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M139.292-57.266L138.116-57.266L138.116-65.266L139.292-65.266L139.292-64.899L138.483-64.899L138.483-57.633L139.292-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M139.669-59.504L139.669-59.594Q139.708-59.801 139.919-59.825L140.227-59.825L140.227-63.594L139.919-63.594Q139.708-63.618 139.669-63.832L139.669-63.922Q139.708-64.129 139.919-64.153L141.868-64.153Q142.266-64.153 142.612-63.952Q142.958-63.750 143.165-63.405Q143.372-63.059 143.372-62.657Q143.372-62.250 143.167-61.907Q142.962-61.563 142.616-61.358Q142.270-61.153 141.868-61.153L140.868-61.153L140.868-59.825L141.180-59.825Q141.391-59.801 141.430-59.594L141.430-59.504Q141.391-59.289 141.180-59.266L139.919-59.266Q139.708-59.289 139.669-59.504M140.868-63.594L140.868-61.715L141.708-61.715Q141.969-61.715 142.206-61.838Q142.442-61.961 142.587-62.176Q142.731-62.391 142.731-62.657Q142.731-62.926 142.587-63.137Q142.442-63.348 142.206-63.471Q141.969-63.594 141.708-63.594L140.868-63.594M145.997-59.188Q145.548-59.188 145.182-59.412Q144.817-59.637 144.563-60.020Q144.309-60.403 144.184-60.846Q144.059-61.289 144.059-61.715Q144.059-62.141 144.184-62.580Q144.309-63.020 144.563-63.403Q144.817-63.786 145.176-64.010Q145.536-64.235 145.997-64.235Q146.274-64.235 146.532-64.143Q146.790-64.051 147.005-63.883L147.137-64.121Q147.165-64.172 147.219-64.203Q147.274-64.235 147.333-64.235L147.411-64.235Q147.505-64.223 147.567-64.164Q147.630-64.106 147.641-64L147.641-62.672Q147.630-62.571 147.567-62.508Q147.505-62.446 147.411-62.434L147.243-62.434Q147.141-62.446 147.079-62.512Q147.016-62.578 147.005-62.672Q146.965-62.938 146.842-63.162Q146.719-63.387 146.516-63.530Q146.313-63.672 146.051-63.672Q145.719-63.672 145.467-63.489Q145.215-63.305 145.044-63.004Q144.872-62.703 144.786-62.362Q144.700-62.020 144.700-61.715Q144.700-61.411 144.784-61.069Q144.868-60.727 145.040-60.424Q145.212-60.121 145.469-59.934Q145.727-59.746 146.059-59.746Q146.442-59.746 146.723-60.020Q147.005-60.293 147.005-60.680Q147.032-60.891 147.243-60.914L147.411-60.914Q147.641-60.875 147.641-60.649Q147.641-60.332 147.505-60.061Q147.368-59.789 147.133-59.592Q146.899-59.395 146.608-59.291Q146.317-59.188 145.997-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M151.106-61.082L148.633-61.082Q148.555-61.094 148.506-61.143Q148.458-61.192 148.458-61.266Q148.458-61.340 148.506-61.389Q148.555-61.438 148.633-61.450L151.106-61.450L151.106-63.930Q151.133-64.098 151.290-64.098Q151.364-64.098 151.413-64.049Q151.462-64 151.473-63.930L151.473-61.450L153.946-61.450Q154.114-61.418 154.114-61.266Q154.114-61.114 153.946-61.082L151.473-61.082L151.473-58.602Q151.462-58.532 151.413-58.483Q151.364-58.434 151.290-58.434Q151.133-58.434 151.106-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M158.191-59.266L155.398-59.266L155.398-59.563Q156.460-59.563 156.460-59.825L156.460-63.993Q156.031-63.778 155.351-63.778L155.351-64.075Q156.370-64.075 156.886-64.586L157.031-64.586Q157.105-64.567 157.124-64.489L157.124-59.825Q157.124-59.563 158.191-59.563L158.191-59.266M160.202-57.266L159.027-57.266L159.027-57.633L159.835-57.633L159.835-64.899L159.027-64.899L159.027-65.266L160.202-65.266L160.202-57.266M162.027-57.860Q162.027-57.899 162.050-57.922Q162.324-58.207 162.466-58.571Q162.609-58.934 162.609-59.321Q162.511-59.266 162.386-59.266Q162.195-59.266 162.058-59.399Q161.921-59.532 161.921-59.731Q161.921-59.922 162.058-60.055Q162.195-60.188 162.386-60.188Q162.867-60.188 162.867-59.313Q162.867-59.024 162.794-58.743Q162.722-58.461 162.579-58.207Q162.437-57.953 162.242-57.746Q162.210-57.715 162.171-57.715Q162.124-57.715 162.076-57.760Q162.027-57.805 162.027-57.860M161.921-62.258Q161.921-62.442 162.058-62.578Q162.195-62.715 162.386-62.715Q162.577-62.715 162.710-62.582Q162.843-62.450 162.843-62.258Q162.843-62.059 162.710-61.926Q162.577-61.793 162.386-61.793Q162.195-61.793 162.058-61.930Q161.921-62.067 161.921-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M170.892-59.489L170.006-62.153L169.685-62.153Q169.486-62.176 169.435-62.395L169.435-62.481Q169.486-62.692 169.685-62.715L170.845-62.715Q171.041-62.696 171.091-62.481L171.091-62.395Q171.041-62.176 170.845-62.153L170.564-62.153L171.357-59.778L172.146-62.153L171.869-62.153Q171.670-62.176 171.619-62.395L171.619-62.481Q171.670-62.692 171.869-62.715L173.029-62.715Q173.224-62.692 173.275-62.481L173.275-62.395Q173.224-62.176 173.029-62.153L172.709-62.153L171.822-59.489Q171.779-59.375 171.677-59.301Q171.576-59.227 171.451-59.227L171.259-59.227Q171.142-59.227 171.039-59.299Q170.935-59.371 170.892-59.489M173.888-60.379Q173.888-60.825 174.302-61.082Q174.716-61.340 175.257-61.440Q175.798-61.539 176.306-61.547Q176.306-61.762 176.172-61.914Q176.037-62.067 175.830-62.143Q175.623-62.219 175.412-62.219Q175.068-62.219 174.908-62.196L174.908-62.137Q174.908-61.969 174.789-61.854Q174.670-61.739 174.506-61.739Q174.330-61.739 174.215-61.862Q174.099-61.985 174.099-62.153Q174.099-62.559 174.480-62.668Q174.861-62.778 175.420-62.778Q175.689-62.778 175.957-62.700Q176.224-62.621 176.449-62.471Q176.673-62.321 176.810-62.100Q176.947-61.879 176.947-61.602L176.947-59.883Q176.947-59.825 177.474-59.825Q177.670-59.805 177.720-59.594L177.720-59.504Q177.670-59.289 177.474-59.266L177.330-59.266Q176.986-59.266 176.757-59.313Q176.529-59.360 176.384-59.547Q175.923-59.227 175.216-59.227Q174.881-59.227 174.576-59.368Q174.271-59.508 174.080-59.770Q173.888-60.032 173.888-60.379M174.529-60.371Q174.529-60.098 174.771-59.942Q175.013-59.786 175.298-59.786Q175.517-59.786 175.750-59.844Q175.982-59.903 176.144-60.041Q176.306-60.180 176.306-60.403L176.306-60.993Q176.025-60.993 175.609-60.936Q175.193-60.879 174.861-60.741Q174.529-60.602 174.529-60.371M178.177-59.504L178.177-59.594Q178.228-59.801 178.423-59.825L179.529-59.825L179.529-63.594L178.423-63.594Q178.228-63.618 178.177-63.832L178.177-63.922Q178.228-64.129 178.423-64.153L179.920-64.153Q180.111-64.129 180.170-63.922L180.170-59.825L181.271-59.825Q181.470-59.801 181.521-59.594L181.521-59.504Q181.470-59.289 181.271-59.266L178.423-59.266Q178.228-59.289 178.177-59.504M182.158-59.504L182.158-59.594Q182.197-59.801 182.408-59.825L182.716-59.825L182.716-63.594L182.408-63.594Q182.197-63.618 182.158-63.832L182.158-63.922Q182.197-64.129 182.408-64.153L184.357-64.153Q184.756-64.153 185.101-63.952Q185.447-63.750 185.654-63.405Q185.861-63.059 185.861-62.657Q185.861-62.250 185.656-61.907Q185.451-61.563 185.105-61.358Q184.759-61.153 184.357-61.153L183.357-61.153L183.357-59.825L183.670-59.825Q183.881-59.801 183.920-59.594L183.920-59.504Q183.881-59.289 183.670-59.266L182.408-59.266Q182.197-59.289 182.158-59.504M183.357-63.594L183.357-61.715L184.197-61.715Q184.459-61.715 184.695-61.838Q184.931-61.961 185.076-62.176Q185.220-62.391 185.220-62.657Q185.220-62.926 185.076-63.137Q184.931-63.348 184.695-63.471Q184.459-63.594 184.197-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M194.558-60.243L189.245-60.243Q189.167-60.250 189.118-60.299Q189.070-60.348 189.070-60.426Q189.070-60.496 189.117-60.547Q189.163-60.598 189.245-60.610L194.558-60.610Q194.632-60.598 194.679-60.547Q194.726-60.496 194.726-60.426Q194.726-60.348 194.677-60.299Q194.628-60.250 194.558-60.243M194.558-61.930L189.245-61.930Q189.167-61.938 189.118-61.987Q189.070-62.036 189.070-62.114Q189.070-62.184 189.117-62.235Q189.163-62.286 189.245-62.297L194.558-62.297Q194.632-62.286 194.679-62.235Q194.726-62.184 194.726-62.114Q194.726-62.036 194.677-61.987Q194.628-61.938 194.558-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M197.753-59.504L197.753-59.594Q197.792-59.801 198.003-59.825L198.311-59.825L198.311-63.594L198.003-63.594Q197.792-63.618 197.753-63.832L197.753-63.922Q197.792-64.129 198.003-64.153L199.952-64.153Q200.350-64.153 200.696-63.952Q201.042-63.750 201.249-63.405Q201.456-63.059 201.456-62.657Q201.456-62.250 201.251-61.907Q201.046-61.563 200.700-61.358Q200.354-61.153 199.952-61.153L198.952-61.153L198.952-59.825L199.264-59.825Q199.475-59.801 199.514-59.594L199.514-59.504Q199.475-59.289 199.264-59.266L198.003-59.266Q197.792-59.289 197.753-59.504M198.952-63.594L198.952-61.715L199.792-61.715Q200.053-61.715 200.290-61.838Q200.526-61.961 200.671-62.176Q200.815-62.391 200.815-62.657Q200.815-62.926 200.671-63.137Q200.526-63.348 200.290-63.471Q200.053-63.594 199.792-63.594L198.952-63.594M204.081-59.188Q203.631-59.188 203.266-59.412Q202.901-59.637 202.647-60.020Q202.393-60.403 202.268-60.846Q202.143-61.289 202.143-61.715Q202.143-62.141 202.268-62.580Q202.393-63.020 202.647-63.403Q202.901-63.786 203.260-64.010Q203.620-64.235 204.081-64.235Q204.358-64.235 204.616-64.143Q204.874-64.051 205.089-63.883L205.221-64.121Q205.249-64.172 205.303-64.203Q205.358-64.235 205.417-64.235L205.495-64.235Q205.589-64.223 205.651-64.164Q205.714-64.106 205.725-64L205.725-62.672Q205.714-62.571 205.651-62.508Q205.589-62.446 205.495-62.434L205.327-62.434Q205.225-62.446 205.163-62.512Q205.100-62.578 205.089-62.672Q205.049-62.938 204.926-63.162Q204.803-63.387 204.600-63.530Q204.397-63.672 204.135-63.672Q203.803-63.672 203.551-63.489Q203.299-63.305 203.128-63.004Q202.956-62.703 202.870-62.362Q202.784-62.020 202.784-61.715Q202.784-61.411 202.868-61.069Q202.952-60.727 203.124-60.424Q203.296-60.121 203.553-59.934Q203.811-59.746 204.143-59.746Q204.526-59.746 204.807-60.020Q205.089-60.293 205.089-60.680Q205.116-60.891 205.327-60.914L205.495-60.914Q205.725-60.875 205.725-60.649Q205.725-60.332 205.589-60.061Q205.452-59.789 205.217-59.592Q204.983-59.395 204.692-59.291Q204.401-59.188 204.081-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M209.191-61.082L206.718-61.082Q206.640-61.094 206.591-61.143Q206.543-61.192 206.543-61.266Q206.543-61.340 206.591-61.389Q206.640-61.438 206.718-61.450L209.191-61.450L209.191-63.930Q209.218-64.098 209.375-64.098Q209.449-64.098 209.498-64.049Q209.547-64 209.558-63.930L209.558-61.450L212.031-61.450Q212.199-61.418 212.199-61.266Q212.199-61.114 212.031-61.082L209.558-61.082L209.558-58.602Q209.547-58.532 209.498-58.483Q209.449-58.434 209.375-58.434Q209.218-58.434 209.191-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M216.267-59.266L213.107-59.266L213.107-59.473Q213.107-59.500 213.130-59.532L214.482-60.930Q214.861-61.317 215.109-61.606Q215.357-61.895 215.531-62.252Q215.704-62.610 215.704-63Q215.704-63.348 215.572-63.641Q215.439-63.934 215.185-64.112Q214.931-64.289 214.576-64.289Q214.216-64.289 213.925-64.094Q213.634-63.899 213.490-63.571L213.544-63.571Q213.728-63.571 213.853-63.450Q213.978-63.328 213.978-63.137Q213.978-62.957 213.853-62.828Q213.728-62.700 213.544-62.700Q213.365-62.700 213.236-62.828Q213.107-62.957 213.107-63.137Q213.107-63.539 213.327-63.875Q213.548-64.211 213.913-64.399Q214.279-64.586 214.681-64.586Q215.161-64.586 215.577-64.399Q215.994-64.211 216.245-63.850Q216.497-63.489 216.497-63Q216.497-62.641 216.343-62.338Q216.189-62.036 215.937-61.776Q215.685-61.516 215.335-61.231Q214.986-60.946 214.818-60.793L213.888-59.953L214.603-59.953Q215.978-59.953 216.017-59.993Q216.087-60.071 216.130-60.256Q216.173-60.442 216.216-60.731L216.497-60.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-47.316h364.195\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M11.739-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.739-64.048Q12.224-64.048 12.660-63.853Q13.096-63.658 13.419-63.316Q13.742-62.974 13.920-62.534Q14.097-62.093 14.097-61.611Q14.097-61.125 13.913-60.702Q13.728-60.278 13.405-59.956Q13.082-59.635 12.650-59.451Q12.218-59.266 11.739-59.266M10.351-63.556L10.351-59.755Q10.351-59.615 10.440-59.580Q10.529-59.546 10.717-59.546L11.541-59.546Q12.166-59.546 12.570-59.808Q12.973-60.069 13.161-60.536Q13.349-61.002 13.349-61.611Q13.349-62.089 13.257-62.482Q13.164-62.875 12.915-63.173Q12.676-63.460 12.312-63.614Q11.948-63.767 11.541-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.866-60.801Q14.866-61.122 14.991-61.411Q15.116-61.700 15.342-61.923Q15.567-62.147 15.863-62.267Q16.158-62.387 16.476-62.387Q16.804-62.387 17.066-62.287Q17.327-62.188 17.503-62.006Q17.679-61.823 17.773-61.565Q17.867-61.307 17.867-60.975Q17.867-60.883 17.785-60.862L15.530-60.862L15.530-60.801Q15.530-60.213 15.813-59.830Q16.097-59.447 16.664-59.447Q16.986-59.447 17.254-59.640Q17.522-59.833 17.611-60.148Q17.618-60.189 17.693-60.203L17.785-60.203Q17.867-60.179 17.867-60.107Q17.867-60.100 17.861-60.073Q17.748-59.676 17.377-59.437Q17.006-59.198 16.582-59.198Q16.145-59.198 15.745-59.406Q15.345-59.615 15.106-59.982Q14.866-60.349 14.866-60.801M15.536-61.071L17.351-61.071Q17.351-61.348 17.254-61.600Q17.157-61.853 16.958-62.009Q16.760-62.164 16.476-62.164Q16.199-62.164 15.986-62.006Q15.772-61.847 15.654-61.592Q15.536-61.337 15.536-61.071M18.455-60.777Q18.455-61.105 18.590-61.406Q18.725-61.706 18.961-61.927Q19.197-62.147 19.501-62.267Q19.805-62.387 20.130-62.387Q20.636-62.387 20.985-62.284Q21.333-62.182 21.333-61.806Q21.333-61.659 21.236-61.558Q21.138-61.457 20.991-61.457Q20.838-61.457 20.739-61.556Q20.639-61.655 20.639-61.806Q20.639-61.994 20.780-62.086Q20.578-62.137 20.137-62.137Q19.782-62.137 19.553-61.941Q19.324-61.744 19.223-61.435Q19.122-61.125 19.122-60.777Q19.122-60.428 19.248-60.122Q19.375-59.816 19.629-59.632Q19.884-59.447 20.240-59.447Q20.462-59.447 20.646-59.531Q20.831-59.615 20.966-59.770Q21.101-59.926 21.159-60.134Q21.173-60.189 21.227-60.189L21.340-60.189Q21.371-60.189 21.393-60.165Q21.415-60.141 21.415-60.107L21.415-60.086Q21.330-59.799 21.142-59.601Q20.954-59.403 20.689-59.300Q20.424-59.198 20.130-59.198Q19.699-59.198 19.312-59.404Q18.924-59.611 18.689-59.974Q18.455-60.336 18.455-60.777M21.962-60.749Q21.962-61.091 22.097-61.390Q22.232-61.689 22.471-61.913Q22.711-62.137 23.029-62.262Q23.346-62.387 23.678-62.387Q24.122-62.387 24.522-62.171Q24.922-61.956 25.156-61.578Q25.390-61.201 25.390-60.749Q25.390-60.408 25.249-60.124Q25.107-59.840 24.862-59.633Q24.618-59.427 24.309-59.312Q23.999-59.198 23.678-59.198Q23.247-59.198 22.846-59.399Q22.444-59.601 22.203-59.953Q21.962-60.305 21.962-60.749M23.678-59.447Q24.280-59.447 24.503-59.825Q24.727-60.203 24.727-60.835Q24.727-61.447 24.493-61.806Q24.259-62.164 23.678-62.164Q22.625-62.164 22.625-60.835Q22.625-60.203 22.851-59.825Q23.076-59.447 23.678-59.447\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M26.221-60.777Q26.221-61.115 26.362-61.406Q26.502-61.696 26.746-61.910Q26.990-62.123 27.295-62.238Q27.599-62.352 27.924-62.352Q28.194-62.352 28.457-62.253Q28.720-62.154 28.911-61.976L28.911-63.374Q28.911-63.644 28.804-63.706Q28.696-63.767 28.385-63.767L28.385-64.048L29.462-64.123L29.462-59.939Q29.462-59.751 29.516-59.668Q29.571-59.584 29.672-59.565Q29.773-59.546 29.988-59.546L29.988-59.266L28.881-59.198L28.881-59.615Q28.464-59.198 27.838-59.198Q27.407-59.198 27.035-59.410Q26.662-59.621 26.442-59.982Q26.221-60.343 26.221-60.777M27.896-59.420Q28.105-59.420 28.291-59.492Q28.477-59.563 28.631-59.700Q28.785-59.837 28.881-60.015L28.881-61.624Q28.795-61.771 28.650-61.891Q28.505-62.011 28.335-62.070Q28.166-62.130 27.985-62.130Q27.425-62.130 27.156-61.741Q26.888-61.351 26.888-60.770Q26.888-60.199 27.122-59.809Q27.356-59.420 27.896-59.420M30.596-60.801Q30.596-61.122 30.721-61.411Q30.846-61.700 31.072-61.923Q31.297-62.147 31.593-62.267Q31.888-62.387 32.206-62.387Q32.534-62.387 32.796-62.287Q33.057-62.188 33.233-62.006Q33.409-61.823 33.503-61.565Q33.597-61.307 33.597-60.975Q33.597-60.883 33.515-60.862L31.260-60.862L31.260-60.801Q31.260-60.213 31.543-59.830Q31.827-59.447 32.394-59.447Q32.716-59.447 32.984-59.640Q33.252-59.833 33.341-60.148Q33.348-60.189 33.423-60.203L33.515-60.203Q33.597-60.179 33.597-60.107Q33.597-60.100 33.591-60.073Q33.478-59.676 33.107-59.437Q32.736-59.198 32.312-59.198Q31.875-59.198 31.475-59.406Q31.075-59.615 30.836-59.982Q30.596-60.349 30.596-60.801M31.266-61.071L33.081-61.071Q33.081-61.348 32.984-61.600Q32.886-61.853 32.688-62.009Q32.490-62.164 32.206-62.164Q31.929-62.164 31.716-62.006Q31.502-61.847 31.384-61.592Q31.266-61.337 31.266-61.071\" 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-size=\"8\">\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M10.230-59.489L9.344-62.153L9.023-62.153Q8.824-62.176 8.773-62.395L8.773-62.481Q8.824-62.692 9.023-62.715L10.183-62.715Q10.379-62.696 10.429-62.481L10.429-62.395Q10.379-62.176 10.183-62.153L9.902-62.153L10.695-59.778L11.484-62.153L11.207-62.153Q11.008-62.176 10.957-62.395L10.957-62.481Q11.008-62.692 11.207-62.715L12.367-62.715Q12.562-62.692 12.613-62.481L12.613-62.395Q12.562-62.176 12.367-62.153L12.047-62.153L11.160-59.489Q11.117-59.375 11.015-59.301Q10.914-59.227 10.789-59.227L10.597-59.227Q10.480-59.227 10.377-59.299Q10.273-59.371 10.230-59.489M13.226-60.379Q13.226-60.825 13.640-61.082Q14.054-61.340 14.595-61.440Q15.136-61.539 15.644-61.547Q15.644-61.762 15.510-61.914Q15.375-62.067 15.168-62.143Q14.961-62.219 14.750-62.219Q14.406-62.219 14.246-62.196L14.246-62.137Q14.246-61.969 14.127-61.854Q14.008-61.739 13.844-61.739Q13.668-61.739 13.553-61.862Q13.437-61.985 13.437-62.153Q13.437-62.559 13.818-62.668Q14.199-62.778 14.758-62.778Q15.027-62.778 15.295-62.700Q15.562-62.621 15.787-62.471Q16.011-62.321 16.148-62.100Q16.285-61.879 16.285-61.602L16.285-59.883Q16.285-59.825 16.812-59.825Q17.008-59.805 17.058-59.594L17.058-59.504Q17.008-59.289 16.812-59.266L16.668-59.266Q16.324-59.266 16.095-59.313Q15.867-59.360 15.722-59.547Q15.261-59.227 14.554-59.227Q14.219-59.227 13.914-59.368Q13.609-59.508 13.418-59.770Q13.226-60.032 13.226-60.379M13.867-60.371Q13.867-60.098 14.109-59.942Q14.351-59.786 14.636-59.786Q14.855-59.786 15.088-59.844Q15.320-59.903 15.482-60.041Q15.644-60.180 15.644-60.403L15.644-60.993Q15.363-60.993 14.947-60.936Q14.531-60.879 14.199-60.741Q13.867-60.602 13.867-60.371M17.515-59.504L17.515-59.594Q17.566-59.801 17.761-59.825L18.867-59.825L18.867-63.594L17.761-63.594Q17.566-63.618 17.515-63.832L17.515-63.922Q17.566-64.129 17.761-64.153L19.258-64.153Q19.449-64.129 19.508-63.922L19.508-59.825L20.609-59.825Q20.808-59.801 20.859-59.594L20.859-59.504Q20.808-59.289 20.609-59.266L17.761-59.266Q17.566-59.289 17.515-59.504M21.543-59.504L21.543-59.594Q21.601-59.805 21.793-59.825L22.015-59.825L22.969-64.008Q22.992-64.125 23.088-64.200Q23.183-64.274 23.297-64.274L23.570-64.274Q23.683-64.274 23.779-64.198Q23.875-64.121 23.898-64.008L24.847-59.825L25.074-59.825Q25.281-59.801 25.320-59.594L25.320-59.504Q25.269-59.289 25.074-59.266L23.992-59.266Q23.797-59.289 23.746-59.504L23.746-59.594Q23.797-59.801 23.992-59.825L24.191-59.825Q24.062-60.391 24.039-60.473L22.824-60.473Q22.781-60.289 22.672-59.825L22.871-59.825Q23.070-59.801 23.121-59.594L23.121-59.504Q23.070-59.289 22.871-59.266L21.793-59.266Q21.586-59.289 21.543-59.504M22.945-61.036L23.922-61.036Q23.441-63.168 23.441-63.512L23.433-63.512Q23.433-63.328 23.293-62.645Q23.152-61.961 22.945-61.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M33.896-60.243L28.583-60.243Q28.505-60.250 28.456-60.299Q28.408-60.348 28.408-60.426Q28.408-60.496 28.455-60.547Q28.501-60.598 28.583-60.610L33.896-60.610Q33.970-60.598 34.017-60.547Q34.064-60.496 34.064-60.426Q34.064-60.348 34.015-60.299Q33.966-60.250 33.896-60.243M33.896-61.930L28.583-61.930Q28.505-61.938 28.456-61.987Q28.408-62.036 28.408-62.114Q28.408-62.184 28.455-62.235Q28.501-62.286 28.583-62.297L33.896-62.297Q33.970-62.286 34.017-62.235Q34.064-62.184 34.064-62.114Q34.064-62.036 34.015-61.987Q33.966-61.938 33.896-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M39.533-59.266L37.396-59.266Q37.361-59.266 37.330-59.307Q37.299-59.348 37.299-59.395L37.322-59.496Q37.334-59.547 37.420-59.563Q37.861-59.563 38.019-59.602Q38.178-59.641 38.221-59.868L39.299-64.188Q39.322-64.258 39.322-64.321Q39.322-64.383 39.260-64.403Q39.115-64.434 38.693-64.434Q38.588-64.461 38.588-64.563L38.619-64.664Q38.627-64.711 38.709-64.731L41.221-64.731Q41.627-64.731 42.070-64.608Q42.513-64.485 42.818-64.209Q43.123-63.934 43.123-63.512Q43.123-63.125 42.853-62.809Q42.584-62.493 42.185-62.284Q41.787-62.075 41.412-61.985Q41.721-61.860 41.918-61.621Q42.115-61.383 42.115-61.067Q42.115-61.024 42.113-60.996Q42.111-60.969 42.107-60.938L42.029-60.243Q41.998-59.953 41.998-59.832Q41.998-59.618 42.066-59.487Q42.135-59.356 42.342-59.356Q42.596-59.356 42.791-59.580Q42.986-59.805 43.053-60.082Q43.060-60.129 43.146-60.145L43.228-60.145Q43.322-60.118 43.322-60.036Q43.322-60.028 43.314-59.993Q43.263-59.778 43.119-59.567Q42.974-59.356 42.767-59.227Q42.560-59.098 42.334-59.098Q42.029-59.098 41.760-59.184Q41.490-59.270 41.318-59.469Q41.146-59.668 41.146-59.977Q41.146-60.086 41.189-60.266L41.365-60.961Q41.388-61.082 41.388-61.176Q41.388-61.512 41.127-61.694Q40.865-61.875 40.502-61.875L39.451-61.875L38.931-59.809Q38.916-59.715 38.916-59.672Q38.916-59.633 38.929-59.620Q38.943-59.606 38.978-59.594Q39.123-59.563 39.549-59.563Q39.642-59.536 39.642-59.442L39.619-59.336Q39.611-59.286 39.533-59.266M40.013-64.129L39.517-62.129L40.459-62.129Q40.803-62.129 41.119-62.198Q41.435-62.266 41.709-62.434Q41.896-62.559 42.033-62.760Q42.170-62.961 42.238-63.194Q42.306-63.426 42.306-63.649Q42.306-64.106 41.939-64.270Q41.572-64.434 41.037-64.434L40.420-64.434Q40.248-64.434 40.185-64.420Q40.123-64.407 40.090-64.348Q40.056-64.289 40.013-64.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M45.527-57.266L44.351-57.266L44.351-65.266L45.527-65.266L45.527-64.899L44.718-64.899L44.718-57.633L45.527-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M45.943-59.504L45.943-59.594Q46.001-59.801 46.193-59.825L46.904-59.825L46.904-62.153L46.193-62.153Q45.997-62.176 45.943-62.395L45.943-62.481Q46.001-62.692 46.193-62.715L47.294-62.715Q47.493-62.696 47.544-62.481L47.544-62.153Q47.806-62.438 48.161-62.596Q48.517-62.754 48.904-62.754Q49.197-62.754 49.431-62.620Q49.665-62.485 49.665-62.219Q49.665-62.051 49.556-61.934Q49.447-61.817 49.279-61.817Q49.126-61.817 49.011-61.928Q48.896-62.039 48.896-62.196Q48.521-62.196 48.206-61.995Q47.892-61.793 47.718-61.459Q47.544-61.125 47.544-60.746L47.544-59.825L48.490-59.825Q48.697-59.801 48.736-59.594L48.736-59.504Q48.697-59.289 48.490-59.266L46.193-59.266Q46.001-59.289 45.943-59.504M50.197-59.504L50.197-59.594Q50.255-59.805 50.447-59.825L50.669-59.825L51.622-64.008Q51.646-64.125 51.741-64.200Q51.837-64.274 51.950-64.274L52.224-64.274Q52.337-64.274 52.433-64.198Q52.529-64.121 52.552-64.008L53.501-59.825L53.728-59.825Q53.935-59.801 53.974-59.594L53.974-59.504Q53.923-59.289 53.728-59.266L52.646-59.266Q52.450-59.289 52.400-59.504L52.400-59.594Q52.450-59.801 52.646-59.825L52.845-59.825Q52.716-60.391 52.693-60.473L51.478-60.473Q51.435-60.289 51.325-59.825L51.525-59.825Q51.724-59.801 51.775-59.594L51.775-59.504Q51.724-59.289 51.525-59.266L50.447-59.266Q50.240-59.289 50.197-59.504M51.599-61.036L52.575-61.036Q52.095-63.168 52.095-63.512L52.087-63.512Q52.087-63.328 51.947-62.645Q51.806-61.961 51.599-61.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M55.579-57.266L54.404-57.266L54.404-57.633L55.212-57.633L55.212-64.899L54.404-64.899L54.404-65.266L55.579-65.266L55.579-57.266M57.404-57.860Q57.404-57.899 57.427-57.922Q57.700-58.207 57.843-58.571Q57.986-58.934 57.986-59.321Q57.888-59.266 57.763-59.266Q57.572-59.266 57.435-59.399Q57.298-59.532 57.298-59.731Q57.298-59.922 57.435-60.055Q57.572-60.188 57.763-60.188Q58.243-60.188 58.243-59.313Q58.243-59.024 58.171-58.743Q58.099-58.461 57.956-58.207Q57.814-57.953 57.618-57.746Q57.587-57.715 57.548-57.715Q57.501-57.715 57.452-57.760Q57.404-57.805 57.404-57.860M57.298-62.258Q57.298-62.442 57.435-62.578Q57.572-62.715 57.763-62.715Q57.954-62.715 58.087-62.582Q58.220-62.450 58.220-62.258Q58.220-62.059 58.087-61.926Q57.954-61.793 57.763-61.793Q57.572-61.793 57.435-61.930Q57.298-62.067 57.298-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M66.265-59.489L65.379-62.153L65.058-62.153Q64.859-62.176 64.808-62.395L64.808-62.481Q64.859-62.692 65.058-62.715L66.218-62.715Q66.414-62.696 66.464-62.481L66.464-62.395Q66.414-62.176 66.218-62.153L65.937-62.153L66.730-59.778L67.519-62.153L67.242-62.153Q67.043-62.176 66.992-62.395L66.992-62.481Q67.043-62.692 67.242-62.715L68.402-62.715Q68.597-62.692 68.648-62.481L68.648-62.395Q68.597-62.176 68.402-62.153L68.082-62.153L67.195-59.489Q67.152-59.375 67.050-59.301Q66.949-59.227 66.824-59.227L66.632-59.227Q66.515-59.227 66.412-59.299Q66.308-59.371 66.265-59.489M69.261-60.379Q69.261-60.825 69.675-61.082Q70.089-61.340 70.630-61.440Q71.171-61.539 71.679-61.547Q71.679-61.762 71.545-61.914Q71.410-62.067 71.203-62.143Q70.996-62.219 70.785-62.219Q70.441-62.219 70.281-62.196L70.281-62.137Q70.281-61.969 70.162-61.854Q70.043-61.739 69.879-61.739Q69.703-61.739 69.588-61.862Q69.472-61.985 69.472-62.153Q69.472-62.559 69.853-62.668Q70.234-62.778 70.793-62.778Q71.062-62.778 71.330-62.700Q71.597-62.621 71.822-62.471Q72.046-62.321 72.183-62.100Q72.320-61.879 72.320-61.602L72.320-59.883Q72.320-59.825 72.847-59.825Q73.043-59.805 73.093-59.594L73.093-59.504Q73.043-59.289 72.847-59.266L72.703-59.266Q72.359-59.266 72.130-59.313Q71.902-59.360 71.757-59.547Q71.296-59.227 70.589-59.227Q70.254-59.227 69.949-59.368Q69.644-59.508 69.453-59.770Q69.261-60.032 69.261-60.379M69.902-60.371Q69.902-60.098 70.144-59.942Q70.386-59.786 70.671-59.786Q70.890-59.786 71.123-59.844Q71.355-59.903 71.517-60.041Q71.679-60.180 71.679-60.403L71.679-60.993Q71.398-60.993 70.982-60.936Q70.566-60.879 70.234-60.741Q69.902-60.602 69.902-60.371M73.550-59.504L73.550-59.594Q73.601-59.801 73.796-59.825L74.902-59.825L74.902-63.594L73.796-63.594Q73.601-63.618 73.550-63.832L73.550-63.922Q73.601-64.129 73.796-64.153L75.293-64.153Q75.484-64.129 75.543-63.922L75.543-59.825L76.644-59.825Q76.843-59.801 76.894-59.594L76.894-59.504Q76.843-59.289 76.644-59.266L73.796-59.266Q73.601-59.289 73.550-59.504M77.515-59.504L77.515-59.594Q77.554-59.801 77.761-59.825L78.050-59.825L78.050-63.594L77.761-63.594Q77.554-63.618 77.515-63.832L77.515-63.922Q77.554-64.129 77.761-64.153L79.722-64.153Q79.992-64.153 80.232-64.057Q80.472-63.961 80.664-63.791Q80.855-63.621 80.964-63.393Q81.074-63.164 81.074-62.899Q81.074-62.532 80.834-62.243Q80.593-61.953 80.226-61.825Q80.507-61.762 80.740-61.588Q80.972-61.414 81.107-61.159Q81.242-60.903 81.242-60.618Q81.242-60.258 81.060-59.948Q80.879-59.637 80.564-59.452Q80.250-59.266 79.890-59.266L77.761-59.266Q77.554-59.289 77.515-59.504M78.691-61.532L78.691-59.825L79.722-59.825Q79.949-59.825 80.152-59.928Q80.355-60.032 80.480-60.211Q80.605-60.391 80.605-60.618Q80.605-60.848 80.504-61.057Q80.402-61.266 80.220-61.399Q80.039-61.532 79.812-61.532L78.691-61.532M78.691-63.594L78.691-62.090L79.554-62.090Q79.898-62.090 80.168-62.325Q80.437-62.559 80.437-62.899Q80.437-63.086 80.339-63.246Q80.242-63.407 80.076-63.500Q79.910-63.594 79.722-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M89.932-60.243L84.619-60.243Q84.541-60.250 84.492-60.299Q84.444-60.348 84.444-60.426Q84.444-60.496 84.491-60.547Q84.537-60.598 84.619-60.610L89.932-60.610Q90.006-60.598 90.053-60.547Q90.100-60.496 90.100-60.426Q90.100-60.348 90.051-60.299Q90.002-60.250 89.932-60.243M89.932-61.930L84.619-61.930Q84.541-61.938 84.492-61.987Q84.444-62.036 84.444-62.114Q84.444-62.184 84.491-62.235Q84.537-62.286 84.619-62.297L89.932-62.297Q90.006-62.286 90.053-62.235Q90.100-62.184 90.100-62.114Q90.100-62.036 90.051-61.987Q90.002-61.938 89.932-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M95.568-59.266L93.431-59.266Q93.396-59.266 93.365-59.307Q93.334-59.348 93.334-59.395L93.357-59.496Q93.369-59.547 93.455-59.563Q93.896-59.563 94.054-59.602Q94.213-59.641 94.255-59.868L95.334-64.188Q95.357-64.258 95.357-64.321Q95.357-64.383 95.295-64.403Q95.150-64.434 94.728-64.434Q94.623-64.461 94.623-64.563L94.654-64.664Q94.662-64.711 94.744-64.731L97.255-64.731Q97.662-64.731 98.105-64.608Q98.548-64.485 98.853-64.209Q99.158-63.934 99.158-63.512Q99.158-63.125 98.888-62.809Q98.619-62.493 98.220-62.284Q97.822-62.075 97.447-61.985Q97.755-61.860 97.953-61.621Q98.150-61.383 98.150-61.067Q98.150-61.024 98.148-60.996Q98.146-60.969 98.142-60.938L98.064-60.243Q98.033-59.953 98.033-59.832Q98.033-59.618 98.101-59.487Q98.170-59.356 98.377-59.356Q98.630-59.356 98.826-59.580Q99.021-59.805 99.088-60.082Q99.095-60.129 99.181-60.145L99.263-60.145Q99.357-60.118 99.357-60.036Q99.357-60.028 99.349-59.993Q99.298-59.778 99.154-59.567Q99.009-59.356 98.802-59.227Q98.595-59.098 98.369-59.098Q98.064-59.098 97.795-59.184Q97.525-59.270 97.353-59.469Q97.181-59.668 97.181-59.977Q97.181-60.086 97.224-60.266L97.400-60.961Q97.423-61.082 97.423-61.176Q97.423-61.512 97.162-61.694Q96.900-61.875 96.537-61.875L95.486-61.875L94.966-59.809Q94.951-59.715 94.951-59.672Q94.951-59.633 94.964-59.620Q94.978-59.606 95.013-59.594Q95.158-59.563 95.584-59.563Q95.677-59.536 95.677-59.442L95.654-59.336Q95.646-59.286 95.568-59.266M96.048-64.129L95.552-62.129L96.494-62.129Q96.838-62.129 97.154-62.198Q97.470-62.266 97.744-62.434Q97.931-62.559 98.068-62.760Q98.205-62.961 98.273-63.194Q98.341-63.426 98.341-63.649Q98.341-64.106 97.974-64.270Q97.607-64.434 97.072-64.434L96.455-64.434Q96.283-64.434 96.220-64.420Q96.158-64.407 96.125-64.348Q96.091-64.289 96.048-64.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M101.563-57.266L100.387-57.266L100.387-65.266L101.563-65.266L101.563-64.899L100.754-64.899L100.754-57.633L101.563-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M101.979-59.504L101.979-59.594Q102.037-59.801 102.229-59.825L102.940-59.825L102.940-62.153L102.229-62.153Q102.033-62.176 101.979-62.395L101.979-62.481Q102.037-62.692 102.229-62.715L103.330-62.715Q103.529-62.696 103.580-62.481L103.580-62.153Q103.842-62.438 104.197-62.596Q104.553-62.754 104.940-62.754Q105.233-62.754 105.467-62.620Q105.701-62.485 105.701-62.219Q105.701-62.051 105.592-61.934Q105.483-61.817 105.315-61.817Q105.162-61.817 105.047-61.928Q104.932-62.039 104.932-62.196Q104.557-62.196 104.242-61.995Q103.928-61.793 103.754-61.459Q103.580-61.125 103.580-60.746L103.580-59.825L104.526-59.825Q104.733-59.801 104.772-59.594L104.772-59.504Q104.733-59.289 104.526-59.266L102.229-59.266Q102.037-59.289 101.979-59.504M106.170-59.504L106.170-59.594Q106.209-59.801 106.416-59.825L106.705-59.825L106.705-63.594L106.416-63.594Q106.209-63.618 106.170-63.832L106.170-63.922Q106.209-64.129 106.416-64.153L108.377-64.153Q108.647-64.153 108.887-64.057Q109.127-63.961 109.319-63.791Q109.510-63.621 109.619-63.393Q109.729-63.164 109.729-62.899Q109.729-62.532 109.488-62.243Q109.248-61.953 108.881-61.825Q109.162-61.762 109.395-61.588Q109.627-61.414 109.762-61.159Q109.897-60.903 109.897-60.618Q109.897-60.258 109.715-59.948Q109.533-59.637 109.219-59.452Q108.904-59.266 108.545-59.266L106.416-59.266Q106.209-59.289 106.170-59.504M107.346-61.532L107.346-59.825L108.377-59.825Q108.604-59.825 108.807-59.928Q109.010-60.032 109.135-60.211Q109.260-60.391 109.260-60.618Q109.260-60.848 109.158-61.057Q109.057-61.266 108.875-61.399Q108.694-61.532 108.467-61.532L107.346-61.532M107.346-63.594L107.346-62.090L108.209-62.090Q108.553-62.090 108.822-62.325Q109.092-62.559 109.092-62.899Q109.092-63.086 108.994-63.246Q108.897-63.407 108.731-63.500Q108.565-63.594 108.377-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M111.615-57.266L110.440-57.266L110.440-57.633L111.248-57.633L111.248-64.899L110.440-64.899L110.440-65.266L111.615-65.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-23.131h364.195\"\u002F>\u003Cg transform=\"translate(-34.163 50.761)\">\u003Cpath d=\"M13.356-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.243-64.048L13.451-62.411L13.188-62.411Q13.130-62.882 13.028-63.147Q12.925-63.412 12.741-63.545Q12.556-63.679 12.284-63.723Q12.012-63.767 11.513-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.891L10.939-61.891Q11.329-61.891 11.512-61.942Q11.695-61.994 11.777-62.166Q11.859-62.339 11.859-62.711L12.122-62.711L12.122-60.790L11.859-60.790Q11.859-61.163 11.777-61.336Q11.695-61.508 11.512-61.559Q11.329-61.611 10.939-61.611L10.365-61.611L10.365-59.755Q10.365-59.615 10.454-59.580Q10.543-59.546 10.731-59.546L11.578-59.546Q12.108-59.546 12.418-59.615Q12.727-59.683 12.915-59.850Q13.103-60.018 13.210-60.320Q13.318-60.623 13.404-61.136L13.670-61.136L13.356-59.266M15.441-59.266L14.118-59.266L14.118-59.546Q14.678-59.546 15.058-59.946L15.772-60.743L14.860-61.792Q14.723-61.939 14.574-61.971Q14.426-62.004 14.159-62.004L14.159-62.284L15.659-62.284L15.659-62.004Q15.468-62.004 15.468-61.870Q15.468-61.840 15.499-61.792L16.094-61.108L16.534-61.604Q16.647-61.734 16.647-61.850Q16.647-61.912 16.610-61.958Q16.572-62.004 16.514-62.004L16.514-62.284L17.830-62.284L17.830-62.004Q17.269-62.004 16.890-61.604L16.268-60.903L17.262-59.755Q17.362-59.656 17.462-59.611Q17.563-59.567 17.674-59.557Q17.785-59.546 17.963-59.546L17.963-59.266L16.470-59.266L16.470-59.546Q16.534-59.546 16.594-59.580Q16.654-59.615 16.654-59.680Q16.654-59.727 16.623-59.755L15.947-60.541L15.413-59.946Q15.301-59.816 15.301-59.700Q15.301-59.635 15.342-59.591Q15.383-59.546 15.441-59.546L15.441-59.266M18.418-60.801Q18.418-61.122 18.543-61.411Q18.667-61.700 18.893-61.923Q19.118-62.147 19.414-62.267Q19.710-62.387 20.028-62.387Q20.356-62.387 20.617-62.287Q20.879-62.188 21.055-62.006Q21.231-61.823 21.325-61.565Q21.419-61.307 21.419-60.975Q21.419-60.883 21.337-60.862L19.081-60.862L19.081-60.801Q19.081-60.213 19.365-59.830Q19.648-59.447 20.216-59.447Q20.537-59.447 20.805-59.640Q21.074-59.833 21.162-60.148Q21.169-60.189 21.244-60.203L21.337-60.203Q21.419-60.179 21.419-60.107Q21.419-60.100 21.412-60.073Q21.299-59.676 20.928-59.437Q20.557-59.198 20.134-59.198Q19.696-59.198 19.296-59.406Q18.896-59.615 18.657-59.982Q18.418-60.349 18.418-60.801M19.088-61.071L20.903-61.071Q20.903-61.348 20.805-61.600Q20.708-61.853 20.510-62.009Q20.311-62.164 20.028-62.164Q19.751-62.164 19.537-62.006Q19.324-61.847 19.206-61.592Q19.088-61.337 19.088-61.071M22.007-60.777Q22.007-61.105 22.142-61.406Q22.277-61.706 22.512-61.927Q22.748-62.147 23.053-62.267Q23.357-62.387 23.681-62.387Q24.187-62.387 24.536-62.284Q24.885-62.182 24.885-61.806Q24.885-61.659 24.787-61.558Q24.690-61.457 24.543-61.457Q24.389-61.457 24.290-61.556Q24.191-61.655 24.191-61.806Q24.191-61.994 24.331-62.086Q24.129-62.137 23.688-62.137Q23.333-62.137 23.104-61.941Q22.875-61.744 22.774-61.435Q22.673-61.125 22.673-60.777Q22.673-60.428 22.800-60.122Q22.926-59.816 23.181-59.632Q23.435-59.447 23.791-59.447Q24.013-59.447 24.198-59.531Q24.382-59.615 24.517-59.770Q24.652-59.926 24.710-60.134Q24.724-60.189 24.779-60.189L24.891-60.189Q24.922-60.189 24.944-60.165Q24.967-60.141 24.967-60.107L24.967-60.086Q24.881-59.799 24.693-59.601Q24.505-59.403 24.240-59.300Q23.975-59.198 23.681-59.198Q23.251-59.198 22.863-59.404Q22.475-59.611 22.241-59.974Q22.007-60.336 22.007-60.777M26.129-60.100L26.129-61.604Q26.129-61.874 26.021-61.935Q25.913-61.997 25.602-61.997L25.602-62.277L26.710-62.352L26.710-60.120L26.710-60.100Q26.710-59.820 26.761-59.676Q26.812-59.533 26.954-59.476Q27.096-59.420 27.383-59.420Q27.636-59.420 27.841-59.560Q28.046-59.700 28.162-59.926Q28.279-60.151 28.279-60.401L28.279-61.604Q28.279-61.874 28.171-61.935Q28.063-61.997 27.752-61.997L27.752-62.277L28.860-62.352L28.860-59.939Q28.860-59.748 28.913-59.666Q28.966-59.584 29.066-59.565Q29.167-59.546 29.383-59.546L29.383-59.266L28.306-59.198L28.306-59.762Q28.197-59.580 28.051-59.457Q27.906-59.334 27.720-59.266Q27.533-59.198 27.332-59.198Q26.129-59.198 26.129-60.100M30.497-60.107L30.497-62.004L29.858-62.004L29.858-62.226Q30.176-62.226 30.393-62.436Q30.610-62.646 30.710-62.956Q30.811-63.265 30.811-63.573L31.078-63.573L31.078-62.284L32.155-62.284L32.155-62.004L31.078-62.004L31.078-60.120Q31.078-59.844 31.182-59.645Q31.286-59.447 31.546-59.447Q31.703-59.447 31.809-59.551Q31.915-59.656 31.965-59.809Q32.014-59.963 32.014-60.120L32.014-60.534L32.281-60.534L32.281-60.107Q32.281-59.881 32.182-59.671Q32.083-59.461 31.898-59.329Q31.714-59.198 31.485-59.198Q31.047-59.198 30.772-59.435Q30.497-59.673 30.497-60.107M33.050-60.801Q33.050-61.122 33.175-61.411Q33.300-61.700 33.525-61.923Q33.751-62.147 34.046-62.267Q34.342-62.387 34.660-62.387Q34.988-62.387 35.250-62.287Q35.511-62.188 35.687-62.006Q35.863-61.823 35.957-61.565Q36.051-61.307 36.051-60.975Q36.051-60.883 35.969-60.862L33.713-60.862L33.713-60.801Q33.713-60.213 33.997-59.830Q34.281-59.447 34.848-59.447Q35.169-59.447 35.438-59.640Q35.706-59.833 35.795-60.148Q35.802-60.189 35.877-60.203L35.969-60.203Q36.051-60.179 36.051-60.107Q36.051-60.100 36.044-60.073Q35.931-59.676 35.561-59.437Q35.190-59.198 34.766-59.198Q34.328-59.198 33.928-59.406Q33.529-59.615 33.289-59.982Q33.050-60.349 33.050-60.801M33.720-61.071L35.535-61.071Q35.535-61.348 35.438-61.600Q35.340-61.853 35.142-62.009Q34.944-62.164 34.660-62.164Q34.383-62.164 34.169-62.006Q33.956-61.847 33.838-61.592Q33.720-61.337 33.720-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M10.230-59.489L9.344-62.153L9.023-62.153Q8.824-62.176 8.773-62.395L8.773-62.481Q8.824-62.692 9.023-62.715L10.183-62.715Q10.379-62.696 10.429-62.481L10.429-62.395Q10.379-62.176 10.183-62.153L9.902-62.153L10.695-59.778L11.484-62.153L11.207-62.153Q11.008-62.176 10.957-62.395L10.957-62.481Q11.008-62.692 11.207-62.715L12.367-62.715Q12.562-62.692 12.613-62.481L12.613-62.395Q12.562-62.176 12.367-62.153L12.047-62.153L11.160-59.489Q11.117-59.375 11.015-59.301Q10.914-59.227 10.789-59.227L10.597-59.227Q10.480-59.227 10.377-59.299Q10.273-59.371 10.230-59.489M13.226-60.379Q13.226-60.825 13.640-61.082Q14.054-61.340 14.595-61.440Q15.136-61.539 15.644-61.547Q15.644-61.762 15.510-61.914Q15.375-62.067 15.168-62.143Q14.961-62.219 14.750-62.219Q14.406-62.219 14.246-62.196L14.246-62.137Q14.246-61.969 14.127-61.854Q14.008-61.739 13.844-61.739Q13.668-61.739 13.553-61.862Q13.437-61.985 13.437-62.153Q13.437-62.559 13.818-62.668Q14.199-62.778 14.758-62.778Q15.027-62.778 15.295-62.700Q15.562-62.621 15.787-62.471Q16.011-62.321 16.148-62.100Q16.285-61.879 16.285-61.602L16.285-59.883Q16.285-59.825 16.812-59.825Q17.008-59.805 17.058-59.594L17.058-59.504Q17.008-59.289 16.812-59.266L16.668-59.266Q16.324-59.266 16.095-59.313Q15.867-59.360 15.722-59.547Q15.261-59.227 14.554-59.227Q14.219-59.227 13.914-59.368Q13.609-59.508 13.418-59.770Q13.226-60.032 13.226-60.379M13.867-60.371Q13.867-60.098 14.109-59.942Q14.351-59.786 14.636-59.786Q14.855-59.786 15.088-59.844Q15.320-59.903 15.482-60.041Q15.644-60.180 15.644-60.403L15.644-60.993Q15.363-60.993 14.947-60.936Q14.531-60.879 14.199-60.741Q13.867-60.602 13.867-60.371M17.515-59.504L17.515-59.594Q17.566-59.801 17.761-59.825L18.867-59.825L18.867-63.594L17.761-63.594Q17.566-63.618 17.515-63.832L17.515-63.922Q17.566-64.129 17.761-64.153L19.258-64.153Q19.449-64.129 19.508-63.922L19.508-59.825L20.609-59.825Q20.808-59.801 20.859-59.594L20.859-59.504Q20.808-59.289 20.609-59.266L17.761-59.266Q17.566-59.289 17.515-59.504M21.496-59.504L21.496-59.594Q21.535-59.801 21.746-59.825L22.054-59.825L22.054-63.594L21.746-63.594Q21.535-63.618 21.496-63.832L21.496-63.922Q21.535-64.129 21.746-64.153L24.953-64.153Q25.148-64.129 25.199-63.922L25.199-63.082Q25.148-62.868 24.953-62.840L24.808-62.840Q24.613-62.868 24.558-63.082L24.558-63.594L22.695-63.594L22.695-62.075L23.672-62.075L23.672-62.289Q23.722-62.496 23.922-62.524L24.066-62.524Q24.261-62.496 24.312-62.289L24.312-61.305Q24.261-61.090 24.066-61.067L23.922-61.067Q23.722-61.090 23.672-61.305L23.672-61.512L22.695-61.512L22.695-59.825L24.738-59.825L24.738-60.465Q24.789-60.672 24.984-60.700L25.129-60.700Q25.324-60.672 25.375-60.465L25.375-59.504Q25.324-59.286 25.129-59.266L21.746-59.266Q21.535-59.289 21.496-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M33.896-60.243L28.583-60.243Q28.505-60.250 28.456-60.299Q28.408-60.348 28.408-60.426Q28.408-60.496 28.455-60.547Q28.501-60.598 28.583-60.610L33.896-60.610Q33.970-60.598 34.017-60.547Q34.064-60.496 34.064-60.426Q34.064-60.348 34.015-60.299Q33.966-60.250 33.896-60.243M33.896-61.930L28.583-61.930Q28.505-61.938 28.456-61.987Q28.408-62.036 28.408-62.114Q28.408-62.184 28.455-62.235Q28.501-62.286 28.583-62.297L33.896-62.297Q33.970-62.286 34.017-62.235Q34.064-62.184 34.064-62.114Q34.064-62.036 34.015-61.987Q33.966-61.938 33.896-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M38.564-59.489L37.678-62.153L37.357-62.153Q37.158-62.176 37.107-62.395L37.107-62.481Q37.158-62.692 37.357-62.715L38.517-62.715Q38.713-62.696 38.763-62.481L38.763-62.395Q38.713-62.176 38.517-62.153L38.236-62.153L39.029-59.778L39.818-62.153L39.541-62.153Q39.342-62.176 39.291-62.395L39.291-62.481Q39.342-62.692 39.541-62.715L40.701-62.715Q40.896-62.692 40.947-62.481L40.947-62.395Q40.896-62.176 40.701-62.153L40.381-62.153L39.494-59.489Q39.451-59.375 39.349-59.301Q39.248-59.227 39.123-59.227L38.931-59.227Q38.814-59.227 38.711-59.299Q38.607-59.371 38.564-59.489M41.560-60.379Q41.560-60.825 41.974-61.082Q42.388-61.340 42.929-61.440Q43.471-61.539 43.978-61.547Q43.978-61.762 43.844-61.914Q43.709-62.067 43.502-62.143Q43.295-62.219 43.084-62.219Q42.740-62.219 42.580-62.196L42.580-62.137Q42.580-61.969 42.461-61.854Q42.342-61.739 42.178-61.739Q42.002-61.739 41.887-61.862Q41.771-61.985 41.771-62.153Q41.771-62.559 42.152-62.668Q42.533-62.778 43.092-62.778Q43.361-62.778 43.629-62.700Q43.896-62.621 44.121-62.471Q44.346-62.321 44.482-62.100Q44.619-61.879 44.619-61.602L44.619-59.883Q44.619-59.825 45.146-59.825Q45.342-59.805 45.392-59.594L45.392-59.504Q45.342-59.289 45.146-59.266L45.002-59.266Q44.658-59.266 44.429-59.313Q44.201-59.360 44.056-59.547Q43.596-59.227 42.888-59.227Q42.553-59.227 42.248-59.368Q41.943-59.508 41.752-59.770Q41.560-60.032 41.560-60.379M42.201-60.371Q42.201-60.098 42.443-59.942Q42.685-59.786 42.971-59.786Q43.189-59.786 43.422-59.844Q43.654-59.903 43.816-60.041Q43.978-60.180 43.978-60.403L43.978-60.993Q43.697-60.993 43.281-60.936Q42.865-60.879 42.533-60.741Q42.201-60.602 42.201-60.371M45.849-59.504L45.849-59.594Q45.900-59.801 46.096-59.825L47.201-59.825L47.201-63.594L46.096-63.594Q45.900-63.618 45.849-63.832L45.849-63.922Q45.900-64.129 46.096-64.153L47.592-64.153Q47.783-64.129 47.842-63.922L47.842-59.825L48.943-59.825Q49.142-59.801 49.193-59.594L49.193-59.504Q49.142-59.289 48.943-59.266L46.096-59.266Q45.900-59.289 45.849-59.504M49.814-59.504L49.814-59.594Q49.853-59.801 50.060-59.825L50.349-59.825L50.349-63.594L50.060-63.594Q49.853-63.618 49.814-63.832L49.814-63.922Q49.853-64.129 50.060-64.153L52.021-64.153Q52.291-64.153 52.531-64.057Q52.771-63.961 52.963-63.791Q53.154-63.621 53.263-63.393Q53.373-63.164 53.373-62.899Q53.373-62.532 53.133-62.243Q52.892-61.953 52.525-61.825Q52.806-61.762 53.039-61.588Q53.271-61.414 53.406-61.159Q53.541-60.903 53.541-60.618Q53.541-60.258 53.359-59.948Q53.178-59.637 52.863-59.452Q52.549-59.266 52.189-59.266L50.060-59.266Q49.853-59.289 49.814-59.504M50.990-61.532L50.990-59.825L52.021-59.825Q52.248-59.825 52.451-59.928Q52.654-60.032 52.779-60.211Q52.904-60.391 52.904-60.618Q52.904-60.848 52.803-61.057Q52.701-61.266 52.519-61.399Q52.338-61.532 52.111-61.532L50.990-61.532M50.990-63.594L50.990-62.090L51.853-62.090Q52.197-62.090 52.467-62.325Q52.736-62.559 52.736-62.899Q52.736-63.086 52.638-63.246Q52.541-63.407 52.375-63.500Q52.209-63.594 52.021-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M60.046-59.098Q59.464-59.098 58.946-59.325Q58.428-59.551 58.040-59.950Q57.651-60.348 57.432-60.873Q57.214-61.399 57.214-61.969Q57.214-62.739 57.589-63.416Q57.964-64.094 58.614-64.496Q59.264-64.899 60.046-64.899Q60.819-64.899 61.470-64.496Q62.120-64.094 62.495-63.416Q62.870-62.739 62.870-61.969Q62.870-61.399 62.649-60.868Q62.428-60.336 62.044-59.944Q61.659-59.551 61.141-59.325Q60.624-59.098 60.046-59.098M58.604-60.168Q58.768-59.938 58.999-59.762Q59.229-59.586 59.497-59.491Q59.764-59.395 60.046-59.395Q60.464-59.395 60.845-59.606Q61.225-59.817 61.475-60.168Q62.007-60.887 62.007-62.106Q62.007-62.735 61.792-63.313Q61.577-63.891 61.136-64.254Q60.694-64.618 60.046-64.618Q59.393-64.618 58.950-64.254Q58.507-63.891 58.292-63.313Q58.077-62.735 58.077-62.106Q58.077-60.887 58.604-60.168M66.085-59.266L63.702-59.266L63.702-59.563Q64.026-59.563 64.268-59.610Q64.511-59.657 64.511-59.825L64.511-64.168Q64.511-64.340 64.268-64.387Q64.026-64.434 63.702-64.434L63.702-64.731L66.647-64.731Q66.991-64.731 67.346-64.631Q67.702-64.532 67.997-64.340Q68.292-64.149 68.473-63.864Q68.655-63.578 68.655-63.219Q68.655-62.746 68.345-62.411Q68.034-62.075 67.569-61.903Q67.104-61.731 66.647-61.731L65.280-61.731L65.280-59.825Q65.280-59.657 65.522-59.610Q65.764-59.563 66.085-59.563L66.085-59.266M65.253-64.168L65.253-62L66.428-62Q67.116-62 67.454-62.276Q67.792-62.551 67.792-63.219Q67.792-63.883 67.454-64.159Q67.116-64.434 66.428-64.434L65.655-64.434Q65.436-64.434 65.345-64.391Q65.253-64.348 65.253-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M73.623-59.489L72.737-62.153L72.416-62.153Q72.217-62.176 72.166-62.395L72.166-62.481Q72.217-62.692 72.416-62.715L73.576-62.715Q73.772-62.696 73.822-62.481L73.822-62.395Q73.772-62.176 73.576-62.153L73.295-62.153L74.088-59.778L74.877-62.153L74.600-62.153Q74.401-62.176 74.350-62.395L74.350-62.481Q74.401-62.692 74.600-62.715L75.760-62.715Q75.955-62.692 76.006-62.481L76.006-62.395Q75.955-62.176 75.760-62.153L75.440-62.153L74.553-59.489Q74.510-59.375 74.408-59.301Q74.307-59.227 74.182-59.227L73.990-59.227Q73.873-59.227 73.770-59.299Q73.666-59.371 73.623-59.489M76.619-60.379Q76.619-60.825 77.033-61.082Q77.447-61.340 77.988-61.440Q78.529-61.539 79.037-61.547Q79.037-61.762 78.903-61.914Q78.768-62.067 78.561-62.143Q78.354-62.219 78.143-62.219Q77.799-62.219 77.639-62.196L77.639-62.137Q77.639-61.969 77.520-61.854Q77.401-61.739 77.237-61.739Q77.061-61.739 76.946-61.862Q76.830-61.985 76.830-62.153Q76.830-62.559 77.211-62.668Q77.592-62.778 78.151-62.778Q78.420-62.778 78.688-62.700Q78.955-62.621 79.180-62.471Q79.404-62.321 79.541-62.100Q79.678-61.879 79.678-61.602L79.678-59.883Q79.678-59.825 80.205-59.825Q80.401-59.805 80.451-59.594L80.451-59.504Q80.401-59.289 80.205-59.266L80.061-59.266Q79.717-59.266 79.488-59.313Q79.260-59.360 79.115-59.547Q78.654-59.227 77.947-59.227Q77.612-59.227 77.307-59.368Q77.002-59.508 76.811-59.770Q76.619-60.032 76.619-60.379M77.260-60.371Q77.260-60.098 77.502-59.942Q77.744-59.786 78.029-59.786Q78.248-59.786 78.481-59.844Q78.713-59.903 78.875-60.041Q79.037-60.180 79.037-60.403L79.037-60.993Q78.756-60.993 78.340-60.936Q77.924-60.879 77.592-60.741Q77.260-60.602 77.260-60.371M80.908-59.504L80.908-59.594Q80.959-59.801 81.154-59.825L82.260-59.825L82.260-63.594L81.154-63.594Q80.959-63.618 80.908-63.832L80.908-63.922Q80.959-64.129 81.154-64.153L82.651-64.153Q82.842-64.129 82.901-63.922L82.901-59.825L84.002-59.825Q84.201-59.801 84.252-59.594L84.252-59.504Q84.201-59.289 84.002-59.266L81.154-59.266Q80.959-59.289 80.908-59.504M84.936-59.504L84.936-59.594Q84.994-59.805 85.186-59.825L85.408-59.825L86.362-64.008Q86.385-64.125 86.481-64.200Q86.576-64.274 86.690-64.274L86.963-64.274Q87.076-64.274 87.172-64.198Q87.268-64.121 87.291-64.008L88.240-59.825L88.467-59.825Q88.674-59.801 88.713-59.594L88.713-59.504Q88.662-59.289 88.467-59.266L87.385-59.266Q87.190-59.289 87.139-59.504L87.139-59.594Q87.190-59.801 87.385-59.825L87.584-59.825Q87.455-60.391 87.432-60.473L86.217-60.473Q86.174-60.289 86.065-59.825L86.264-59.825Q86.463-59.801 86.514-59.594L86.514-59.504Q86.463-59.289 86.264-59.266L85.186-59.266Q84.979-59.289 84.936-59.504M86.338-61.036L87.315-61.036Q86.834-63.168 86.834-63.512L86.826-63.512Q86.826-63.328 86.686-62.645Q86.545-61.961 86.338-61.036\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M89.791-57.860Q89.791-57.899 89.815-57.922Q90.088-58.207 90.231-58.571Q90.373-58.934 90.373-59.321Q90.276-59.266 90.151-59.266Q89.959-59.266 89.822-59.399Q89.686-59.532 89.686-59.731Q89.686-59.922 89.822-60.055Q89.959-60.188 90.151-60.188Q90.631-60.188 90.631-59.313Q90.631-59.024 90.559-58.743Q90.487-58.461 90.344-58.207Q90.201-57.953 90.006-57.746Q89.975-57.715 89.936-57.715Q89.889-57.715 89.840-57.760Q89.791-57.805 89.791-57.860M89.686-62.258Q89.686-62.442 89.822-62.578Q89.959-62.715 90.151-62.715Q90.342-62.715 90.475-62.582Q90.608-62.450 90.608-62.258Q90.608-62.059 90.475-61.926Q90.342-61.793 90.151-61.793Q89.959-61.793 89.822-61.930Q89.686-62.067 89.686-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M97.276-59.274L97.276-60.496Q97.276-60.524 97.308-60.555Q97.339-60.586 97.362-60.586L97.468-60.586Q97.538-60.586 97.554-60.524Q97.616-60.203 97.755-59.963Q97.893-59.723 98.126-59.582Q98.358-59.442 98.667-59.442Q98.905-59.442 99.114-59.502Q99.323-59.563 99.460-59.711Q99.597-59.860 99.597-60.106Q99.597-60.360 99.386-60.526Q99.175-60.692 98.905-60.746L98.284-60.860Q97.878-60.938 97.577-61.194Q97.276-61.450 97.276-61.825Q97.276-62.192 97.477-62.414Q97.679-62.637 98.003-62.735Q98.327-62.832 98.667-62.832Q99.132-62.832 99.429-62.625L99.651-62.809Q99.675-62.832 99.706-62.832L99.757-62.832Q99.788-62.832 99.815-62.805Q99.843-62.778 99.843-62.746L99.843-61.762Q99.843-61.731 99.817-61.702Q99.792-61.672 99.757-61.672L99.651-61.672Q99.616-61.672 99.589-61.700Q99.561-61.727 99.561-61.762Q99.561-62.161 99.309-62.381Q99.058-62.602 98.659-62.602Q98.304-62.602 98.020-62.479Q97.737-62.356 97.737-62.051Q97.737-61.832 97.938-61.700Q98.140-61.567 98.386-61.524L99.011-61.411Q99.440-61.321 99.749-61.024Q100.058-60.727 100.058-60.313Q100.058-59.743 99.659-59.465Q99.261-59.188 98.667-59.188Q98.116-59.188 97.765-59.524L97.468-59.211Q97.444-59.188 97.409-59.188L97.362-59.188Q97.339-59.188 97.308-59.219Q97.276-59.250 97.276-59.274M100.585-61.020Q100.585-61.500 100.817-61.916Q101.050-62.332 101.460-62.582Q101.870-62.832 102.347-62.832Q103.077-62.832 103.475-62.391Q103.874-61.950 103.874-61.219Q103.874-61.114 103.780-61.090L101.331-61.090L101.331-61.020Q101.331-60.610 101.452-60.254Q101.573-59.899 101.845-59.682Q102.116-59.465 102.546-59.465Q102.909-59.465 103.206-59.694Q103.503-59.922 103.604-60.274Q103.612-60.321 103.698-60.336L103.780-60.336Q103.874-60.309 103.874-60.227Q103.874-60.219 103.866-60.188Q103.804-59.961 103.665-59.778Q103.526-59.594 103.335-59.461Q103.143-59.328 102.925-59.258Q102.706-59.188 102.468-59.188Q102.097-59.188 101.759-59.325Q101.421-59.461 101.153-59.713Q100.886-59.965 100.735-60.305Q100.585-60.645 100.585-61.020M101.339-61.328L103.300-61.328Q103.300-61.633 103.198-61.924Q103.097-62.215 102.880-62.397Q102.663-62.578 102.347-62.578Q102.046-62.578 101.815-62.391Q101.585-62.203 101.462-61.912Q101.339-61.621 101.339-61.328M104.987-60.227L104.987-62.418L104.284-62.418L104.284-62.672Q104.640-62.672 104.882-62.905Q105.124-63.137 105.235-63.485Q105.347-63.832 105.347-64.188L105.628-64.188L105.628-62.715L106.804-62.715L106.804-62.418L105.628-62.418L105.628-60.243Q105.628-59.922 105.747-59.694Q105.866-59.465 106.147-59.465Q106.327-59.465 106.444-59.588Q106.561-59.711 106.614-59.891Q106.667-60.071 106.667-60.243L106.667-60.715L106.948-60.715L106.948-60.227Q106.948-59.973 106.843-59.733Q106.737-59.493 106.540-59.340Q106.343-59.188 106.085-59.188Q105.768-59.188 105.516-59.311Q105.265-59.434 105.126-59.668Q104.987-59.903 104.987-60.227\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M110.737-62Q110.737-62.594 110.969-63.125Q111.201-63.657 111.618-64.057Q112.034-64.457 112.567-64.678Q113.100-64.899 113.705-64.899Q114.143-64.899 114.541-64.717Q114.940-64.536 115.248-64.203L115.721-64.868Q115.752-64.899 115.784-64.899L115.830-64.899Q115.858-64.899 115.889-64.868Q115.920-64.836 115.920-64.809L115.920-62.672Q115.920-62.649 115.889-62.618Q115.858-62.586 115.830-62.586L115.713-62.586Q115.686-62.586 115.655-62.618Q115.623-62.649 115.623-62.672Q115.623-62.938 115.481-63.291Q115.338-63.645 115.159-63.883Q114.905-64.215 114.555-64.409Q114.205-64.602 113.799-64.602Q113.295-64.602 112.842-64.383Q112.389-64.164 112.096-63.770Q111.600-63.102 111.600-62Q111.600-61.469 111.737-61.002Q111.873-60.536 112.149-60.170Q112.424-59.805 112.844-59.600Q113.264-59.395 113.807-59.395Q114.295-59.395 114.719-59.639Q115.143-59.883 115.391-60.303Q115.639-60.723 115.639-61.219Q115.639-61.254 115.668-61.280Q115.698-61.305 115.729-61.305L115.830-61.305Q115.873-61.305 115.897-61.276Q115.920-61.246 115.920-61.203Q115.920-60.766 115.744-60.377Q115.569-59.989 115.258-59.705Q114.948-59.422 114.537-59.260Q114.127-59.098 113.705-59.098Q113.116-59.098 112.575-59.319Q112.034-59.539 111.618-59.944Q111.201-60.348 110.969-60.877Q110.737-61.407 110.737-62M116.873-62Q116.873-62.594 117.106-63.125Q117.338-63.657 117.754-64.057Q118.170-64.457 118.703-64.678Q119.237-64.899 119.842-64.899Q120.280-64.899 120.678-64.717Q121.076-64.536 121.385-64.203L121.858-64.868Q121.889-64.899 121.920-64.899L121.967-64.899Q121.994-64.899 122.026-64.868Q122.057-64.836 122.057-64.809L122.057-62.672Q122.057-62.649 122.026-62.618Q121.994-62.586 121.967-62.586L121.850-62.586Q121.823-62.586 121.791-62.618Q121.760-62.649 121.760-62.672Q121.760-62.938 121.618-63.291Q121.475-63.645 121.295-63.883Q121.041-64.215 120.692-64.409Q120.342-64.602 119.936-64.602Q119.432-64.602 118.979-64.383Q118.526-64.164 118.233-63.770Q117.737-63.102 117.737-62Q117.737-61.469 117.873-61.002Q118.010-60.536 118.285-60.170Q118.561-59.805 118.981-59.600Q119.401-59.395 119.944-59.395Q120.432-59.395 120.856-59.639Q121.280-59.883 121.528-60.303Q121.776-60.723 121.776-61.219Q121.776-61.254 121.805-61.280Q121.834-61.305 121.866-61.305L121.967-61.305Q122.010-61.305 122.034-61.276Q122.057-61.246 122.057-61.203Q122.057-60.766 121.881-60.377Q121.705-59.989 121.395-59.705Q121.084-59.422 120.674-59.260Q120.264-59.098 119.842-59.098Q119.252-59.098 118.711-59.319Q118.170-59.539 117.754-59.944Q117.338-60.348 117.106-60.877Q116.873-61.407 116.873-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M127.993-57.274Q127.380-57.731 126.978-58.366Q126.575-59 126.380-59.746Q126.185-60.493 126.185-61.266Q126.185-62.039 126.380-62.786Q126.575-63.532 126.978-64.166Q127.380-64.801 127.993-65.258Q128.005-65.262 128.013-65.264Q128.021-65.266 128.032-65.266L128.110-65.266Q128.149-65.266 128.175-65.239Q128.200-65.211 128.200-65.168Q128.200-65.118 128.169-65.098Q127.661-64.645 127.339-64.022Q127.017-63.399 126.876-62.703Q126.735-62.008 126.735-61.266Q126.735-60.532 126.874-59.832Q127.013-59.133 127.337-58.508Q127.661-57.883 128.169-57.434Q128.200-57.414 128.200-57.364Q128.200-57.321 128.175-57.293Q128.149-57.266 128.110-57.266L128.032-57.266Q128.024-57.270 128.015-57.272Q128.005-57.274 127.993-57.274M133.298-59.266L129.267-59.266Q129.216-59.266 129.185-59.297Q129.153-59.328 129.153-59.379L129.153-59.481Q129.153-59.508 129.185-59.555L132.481-64.434L131.306-64.434Q130.868-64.434 130.546-64.368Q130.224-64.301 129.993-64.090Q129.767-63.875 129.659-63.553Q129.552-63.231 129.552-62.883L129.274-62.883L129.368-64.731L133.282-64.731Q133.329-64.731 133.360-64.698Q133.392-64.664 133.392-64.618L133.392-64.532Q133.392-64.528 133.368-64.457L130.064-59.586L131.298-59.586Q131.591-59.586 131.839-59.612Q132.087-59.637 132.315-59.719Q132.544-59.801 132.728-59.977Q132.966-60.215 133.048-60.569Q133.130-60.922 133.161-61.450L133.442-61.450L133.298-59.266M136.794-59.266L134.208-59.266L134.208-59.563Q134.528-59.563 134.772-59.610Q135.017-59.657 135.017-59.825L135.017-64.168Q135.017-64.340 134.772-64.387Q134.528-64.434 134.208-64.434L134.208-64.731L138.825-64.731L139.056-62.883L138.774-62.883Q138.689-63.567 138.526-63.887Q138.364-64.207 138.024-64.321Q137.685-64.434 136.993-64.434L136.185-64.434Q135.966-64.434 135.874-64.391Q135.782-64.348 135.782-64.168L135.782-62.145L136.392-62.145Q136.817-62.145 137.015-62.211Q137.212-62.278 137.294-62.471Q137.376-62.664 137.376-63.082L137.657-63.082L137.657-60.914L137.376-60.914Q137.376-61.332 137.294-61.526Q137.212-61.719 137.015-61.786Q136.817-61.852 136.392-61.852L135.782-61.852L135.782-59.825Q135.782-59.661 136.101-59.612Q136.419-59.563 136.794-59.563L136.794-59.266M139.888-57.450Q139.888-57.469 139.903-57.524L142.829-65.161Q142.896-65.266 143.001-65.266Q143.079-65.266 143.132-65.213Q143.185-65.161 143.185-65.082Q143.185-65.063 143.169-65.008L140.239-57.371Q140.177-57.266 140.071-57.266Q139.997-57.266 139.942-57.321Q139.888-57.375 139.888-57.450M144.134-59.188L144.134-60.993Q144.134-61.020 144.165-61.051Q144.196-61.082 144.220-61.082L144.325-61.082Q144.356-61.082 144.386-61.053Q144.415-61.024 144.415-60.993Q144.415-60.211 144.931-59.803Q145.446-59.395 146.255-59.395Q146.552-59.395 146.808-59.545Q147.064-59.696 147.214-59.952Q147.364-60.207 147.364-60.504Q147.364-60.903 147.118-61.207Q146.872-61.512 146.501-61.594L145.380-61.852Q145.040-61.926 144.753-62.147Q144.466-62.368 144.300-62.686Q144.134-63.004 144.134-63.356Q144.134-63.786 144.364-64.141Q144.595-64.496 144.976-64.698Q145.356-64.899 145.782-64.899Q146.032-64.899 146.278-64.840Q146.524-64.782 146.743-64.659Q146.962-64.536 147.126-64.356L147.454-64.852Q147.485-64.899 147.524-64.899L147.571-64.899Q147.599-64.899 147.630-64.868Q147.661-64.836 147.661-64.809L147.661-63Q147.661-62.977 147.630-62.946Q147.599-62.914 147.571-62.914L147.470-62.914Q147.439-62.914 147.409-62.944Q147.380-62.973 147.380-63Q147.380-63.133 147.337-63.319Q147.294-63.504 147.230-63.659Q147.165-63.813 147.065-63.971Q146.966-64.129 146.876-64.219Q146.446-64.625 145.782-64.625Q145.505-64.625 145.245-64.493Q144.985-64.360 144.827-64.125Q144.669-63.891 144.669-63.610Q144.669-63.254 144.909-62.983Q145.149-62.711 145.517-62.625L146.630-62.371Q146.907-62.305 147.140-62.151Q147.372-61.996 147.542-61.778Q147.712-61.559 147.806-61.301Q147.899-61.043 147.899-60.754Q147.899-60.426 147.774-60.123Q147.649-59.821 147.415-59.584Q147.181-59.348 146.888-59.223Q146.595-59.098 146.255-59.098Q145.239-59.098 144.669-59.641L144.341-59.145Q144.310-59.098 144.271-59.098L144.220-59.098Q144.196-59.098 144.165-59.129Q144.134-59.161 144.134-59.188M151.302-59.266L148.716-59.266L148.716-59.563Q149.036-59.563 149.280-59.610Q149.524-59.657 149.524-59.825L149.524-64.168Q149.524-64.340 149.280-64.387Q149.036-64.434 148.716-64.434L148.716-64.731L153.333-64.731L153.564-62.883L153.282-62.883Q153.196-63.567 153.034-63.887Q152.872-64.207 152.532-64.321Q152.192-64.434 151.501-64.434L150.692-64.434Q150.474-64.434 150.382-64.391Q150.290-64.348 150.290-64.168L150.290-62.145L150.899-62.145Q151.325-62.145 151.522-62.211Q151.720-62.278 151.802-62.471Q151.884-62.664 151.884-63.082L152.165-63.082L152.165-60.914L151.884-60.914Q151.884-61.332 151.802-61.526Q151.720-61.719 151.522-61.786Q151.325-61.852 150.899-61.852L150.290-61.852L150.290-59.825Q150.290-59.661 150.608-59.612Q150.927-59.563 151.302-59.563L151.302-59.266M154.396-57.450Q154.396-57.469 154.411-57.524L157.337-65.161Q157.403-65.266 157.509-65.266Q157.587-65.266 157.640-65.213Q157.692-65.161 157.692-65.082Q157.692-65.063 157.677-65.008L154.747-57.371Q154.685-57.266 154.579-57.266Q154.505-57.266 154.450-57.321Q154.396-57.375 154.396-57.450M161.474-59.098Q160.892-59.098 160.374-59.325Q159.856-59.551 159.468-59.950Q159.079-60.348 158.860-60.873Q158.642-61.399 158.642-61.969Q158.642-62.739 159.017-63.416Q159.392-64.094 160.042-64.496Q160.692-64.899 161.474-64.899Q162.247-64.899 162.897-64.496Q163.548-64.094 163.923-63.416Q164.298-62.739 164.298-61.969Q164.298-61.399 164.077-60.868Q163.856-60.336 163.472-59.944Q163.087-59.551 162.569-59.325Q162.052-59.098 161.474-59.098M160.032-60.168Q160.196-59.938 160.427-59.762Q160.657-59.586 160.925-59.491Q161.192-59.395 161.474-59.395Q161.892-59.395 162.272-59.606Q162.653-59.817 162.903-60.168Q163.435-60.887 163.435-62.106Q163.435-62.735 163.220-63.313Q163.005-63.891 162.564-64.254Q162.122-64.618 161.474-64.618Q160.821-64.618 160.378-64.254Q159.935-63.891 159.720-63.313Q159.505-62.735 159.505-62.106Q159.505-60.887 160.032-60.168M167.700-59.266L165.114-59.266L165.114-59.563Q165.435-59.563 165.679-59.610Q165.923-59.657 165.923-59.825L165.923-64.168Q165.923-64.340 165.679-64.387Q165.435-64.434 165.114-64.434L165.114-64.731L169.731-64.731L169.962-62.883L169.681-62.883Q169.595-63.567 169.433-63.887Q169.271-64.207 168.931-64.321Q168.591-64.434 167.899-64.434L167.091-64.434Q166.872-64.434 166.780-64.391Q166.689-64.348 166.689-64.168L166.689-62.145L167.298-62.145Q167.724-62.145 167.921-62.211Q168.118-62.278 168.200-62.471Q168.282-62.664 168.282-63.082L168.564-63.082L168.564-60.914L168.282-60.914Q168.282-61.332 168.200-61.526Q168.118-61.719 167.921-61.786Q167.724-61.852 167.298-61.852L166.689-61.852L166.689-59.825Q166.689-59.661 167.007-59.612Q167.325-59.563 167.700-59.563L167.700-59.266M170.962-57.266L170.880-57.266Q170.845-57.266 170.819-57.295Q170.794-57.325 170.794-57.364Q170.794-57.414 170.825-57.434Q171.212-57.770 171.495-58.219Q171.778-58.668 171.944-59.168Q172.110-59.668 172.185-60.186Q172.259-60.703 172.259-61.266Q172.259-61.836 172.185-62.352Q172.110-62.868 171.944-63.364Q171.778-63.860 171.499-64.307Q171.220-64.754 170.825-65.098Q170.794-65.118 170.794-65.168Q170.794-65.207 170.819-65.237Q170.845-65.266 170.880-65.266L170.962-65.266Q170.974-65.266 170.983-65.264Q170.993-65.262 171.001-65.258Q171.614-64.801 172.017-64.166Q172.419-63.532 172.614-62.786Q172.810-62.039 172.810-61.266Q172.810-60.493 172.614-59.746Q172.419-59 172.017-58.366Q171.614-57.731 171.001-57.274Q170.989-57.274 170.981-57.272Q170.974-57.270 170.962-57.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 1.053h364.195\"\u002F>\u003Cg transform=\"translate(-35.01 74.266)\">\u003Cpath d=\"M10.731-59.266L8.994-59.266L8.994-59.546Q9.716-59.546 9.716-59.946L9.716-63.556Q9.716-63.767 8.994-63.767L8.994-64.048L10.351-64.048Q10.447-64.048 10.498-63.949L12.173-59.974L13.845-63.949Q13.892-64.048 13.991-64.048L15.342-64.048L15.342-63.767Q14.620-63.767 14.620-63.556L14.620-59.755Q14.620-59.546 15.342-59.546L15.342-59.266L13.284-59.266L13.284-59.546Q14.005-59.546 14.005-59.755L14.005-63.767L12.153-59.365Q12.105-59.266 11.995-59.266Q11.883-59.266 11.835-59.365L10.010-63.696L10.010-59.946Q10.010-59.546 10.731-59.546L10.731-59.266M16.035-60.801Q16.035-61.122 16.160-61.411Q16.285-61.700 16.511-61.923Q16.736-62.147 17.032-62.267Q17.327-62.387 17.645-62.387Q17.973-62.387 18.235-62.287Q18.496-62.188 18.672-62.006Q18.848-61.823 18.942-61.565Q19.036-61.307 19.036-60.975Q19.036-60.883 18.954-60.862L16.699-60.862L16.699-60.801Q16.699-60.213 16.982-59.830Q17.266-59.447 17.833-59.447Q18.155-59.447 18.423-59.640Q18.691-59.833 18.780-60.148Q18.787-60.189 18.862-60.203L18.954-60.203Q19.036-60.179 19.036-60.107Q19.036-60.100 19.030-60.073Q18.917-59.676 18.546-59.437Q18.175-59.198 17.751-59.198Q17.314-59.198 16.914-59.406Q16.514-59.615 16.275-59.982Q16.035-60.349 16.035-60.801M16.705-61.071L18.520-61.071Q18.520-61.348 18.423-61.600Q18.325-61.853 18.127-62.009Q17.929-62.164 17.645-62.164Q17.368-62.164 17.155-62.006Q16.941-61.847 16.823-61.592Q16.705-61.337 16.705-61.071M21.306-59.266L19.672-59.266L19.672-59.546Q19.901-59.546 20.050-59.580Q20.199-59.615 20.199-59.755L20.199-61.604Q20.199-61.874 20.091-61.935Q19.983-61.997 19.672-61.997L19.672-62.277L20.732-62.352L20.732-61.703Q20.903-62.011 21.207-62.182Q21.511-62.352 21.856-62.352Q22.256-62.352 22.533-62.212Q22.810-62.072 22.895-61.724Q23.063-62.017 23.362-62.185Q23.661-62.352 24.006-62.352Q24.512-62.352 24.796-62.129Q25.079-61.905 25.079-61.409L25.079-59.755Q25.079-59.618 25.228-59.582Q25.377-59.546 25.602-59.546L25.602-59.266L23.972-59.266L23.972-59.546Q24.198-59.546 24.348-59.582Q24.498-59.618 24.498-59.755L24.498-61.395Q24.498-61.730 24.379-61.930Q24.259-62.130 23.945-62.130Q23.675-62.130 23.440-61.994Q23.206-61.857 23.068-61.623Q22.929-61.389 22.929-61.115L22.929-59.755Q22.929-59.618 23.078-59.582Q23.227-59.546 23.452-59.546L23.452-59.266L21.822-59.266L21.822-59.546Q22.051-59.546 22.200-59.580Q22.348-59.615 22.348-59.755L22.348-61.395Q22.348-61.730 22.229-61.930Q22.109-62.130 21.795-62.130Q21.525-62.130 21.291-61.994Q21.056-61.857 20.918-61.623Q20.780-61.389 20.780-61.115L20.780-59.755Q20.780-59.618 20.930-59.582Q21.080-59.546 21.306-59.546L21.306-59.266M26.149-60.749Q26.149-61.091 26.284-61.390Q26.419-61.689 26.658-61.913Q26.898-62.137 27.216-62.262Q27.533-62.387 27.865-62.387Q28.309-62.387 28.709-62.171Q29.109-61.956 29.343-61.578Q29.577-61.201 29.577-60.749Q29.577-60.408 29.436-60.124Q29.294-59.840 29.049-59.633Q28.805-59.427 28.496-59.312Q28.186-59.198 27.865-59.198Q27.434-59.198 27.033-59.399Q26.631-59.601 26.390-59.953Q26.149-60.305 26.149-60.749M27.865-59.447Q28.467-59.447 28.690-59.825Q28.914-60.203 28.914-60.835Q28.914-61.447 28.680-61.806Q28.446-62.164 27.865-62.164Q26.812-62.164 26.812-60.835Q26.812-60.203 27.038-59.825Q27.263-59.447 27.865-59.447M31.922-59.266L30.186-59.266L30.186-59.546Q30.415-59.546 30.564-59.580Q30.712-59.615 30.712-59.755L30.712-61.604Q30.712-61.874 30.605-61.935Q30.497-61.997 30.186-61.997L30.186-62.277L31.215-62.352L31.215-61.645Q31.345-61.953 31.587-62.152Q31.830-62.352 32.148-62.352Q32.366-62.352 32.537-62.228Q32.708-62.103 32.708-61.891Q32.708-61.754 32.609-61.655Q32.510-61.556 32.377-61.556Q32.240-61.556 32.141-61.655Q32.042-61.754 32.042-61.891Q32.042-62.031 32.141-62.130Q31.850-62.130 31.650-61.934Q31.450-61.737 31.358-61.443Q31.266-61.149 31.266-60.869L31.266-59.755Q31.266-59.546 31.922-59.546L31.922-59.266M33.628-58.131Q33.758-58.063 33.894-58.063Q34.065-58.063 34.216-58.152Q34.366-58.241 34.477-58.386Q34.588-58.531 34.667-58.699L34.930-59.266L33.761-61.792Q33.686-61.939 33.556-61.971Q33.426-62.004 33.194-62.004L33.194-62.284L34.715-62.284L34.715-62.004Q34.366-62.004 34.366-61.857Q34.369-61.836 34.371-61.819Q34.373-61.802 34.373-61.792L35.231-59.933L36.003-61.604Q36.037-61.672 36.037-61.751Q36.037-61.864 35.954-61.934Q35.870-62.004 35.757-62.004L35.757-62.284L36.953-62.284L36.953-62.004Q36.735-62.004 36.562-61.900Q36.389-61.795 36.297-61.604L34.961-58.699Q34.790-58.329 34.520-58.083Q34.250-57.837 33.894-57.837Q33.624-57.837 33.406-58.003Q33.187-58.169 33.187-58.432Q33.187-58.569 33.279-58.658Q33.371-58.746 33.511-58.746Q33.648-58.746 33.737-58.658Q33.826-58.569 33.826-58.432Q33.826-58.329 33.773-58.251Q33.720-58.172 33.628-58.131\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.277)\">\u003Cpath d=\"M10.926-60.715L8.672-60.715L8.672-61.266L10.926-61.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 25.238h364.195\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M10.967-59.225L9.415-63.556Q9.353-63.699 9.191-63.733Q9.029-63.767 8.776-63.767L8.776-64.048L10.703-64.048L10.703-63.767Q10.122-63.767 10.122-63.593Q10.122-63.573 10.129-63.556L11.353-60.120L12.460-63.207L12.334-63.556Q12.276-63.699 12.110-63.733Q11.944-63.767 11.695-63.767L11.695-64.048L13.622-64.048L13.622-63.767Q13.041-63.767 13.041-63.593L13.041-63.556L14.272-60.120L15.427-63.368Q15.441-63.409 15.441-63.433Q15.441-63.607 15.248-63.687Q15.054-63.767 14.846-63.767L14.846-64.048L16.422-64.048L16.422-63.767Q16.172-63.767 15.981-63.673Q15.789-63.579 15.714-63.368L14.231-59.225Q14.197-59.126 14.097-59.126L14.019-59.126Q13.920-59.126 13.879-59.225L12.600-62.814L11.319-59.225Q11.302-59.181 11.264-59.153Q11.226-59.126 11.178-59.126L11.100-59.126Q11.008-59.126 10.967-59.225\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M18.048-59.266L16.312-59.266L16.312-59.546Q16.541-59.546 16.690-59.580Q16.838-59.615 16.838-59.755L16.838-61.604Q16.838-61.874 16.731-61.935Q16.623-61.997 16.312-61.997L16.312-62.277L17.341-62.352L17.341-61.645Q17.471-61.953 17.713-62.152Q17.956-62.352 18.274-62.352Q18.493-62.352 18.664-62.228Q18.835-62.103 18.835-61.891Q18.835-61.754 18.735-61.655Q18.636-61.556 18.503-61.556Q18.366-61.556 18.267-61.655Q18.168-61.754 18.168-61.891Q18.168-62.031 18.267-62.130Q17.977-62.130 17.777-61.934Q17.577-61.737 17.484-61.443Q17.392-61.149 17.392-60.869L17.392-59.755Q17.392-59.546 18.048-59.546L18.048-59.266M21.036-59.266L19.484-59.266L19.484-59.546Q19.710-59.546 19.858-59.580Q20.007-59.615 20.007-59.755L20.007-61.604Q20.007-61.792 19.959-61.876Q19.911-61.959 19.814-61.978Q19.716-61.997 19.505-61.997L19.505-62.277L20.561-62.352L20.561-59.755Q20.561-59.615 20.692-59.580Q20.824-59.546 21.036-59.546L21.036-59.266M19.764-63.573Q19.764-63.744 19.887-63.863Q20.010-63.983 20.181-63.983Q20.349-63.983 20.472-63.863Q20.595-63.744 20.595-63.573Q20.595-63.398 20.472-63.275Q20.349-63.152 20.181-63.152Q20.010-63.152 19.887-63.275Q19.764-63.398 19.764-63.573M22.208-60.107L22.208-62.004L21.569-62.004L21.569-62.226Q21.887-62.226 22.104-62.436Q22.321-62.646 22.422-62.956Q22.523-63.265 22.523-63.573L22.789-63.573L22.789-62.284L23.866-62.284L23.866-62.004L22.789-62.004L22.789-60.120Q22.789-59.844 22.893-59.645Q22.998-59.447 23.257-59.447Q23.415-59.447 23.521-59.551Q23.627-59.656 23.676-59.809Q23.726-59.963 23.726-60.120L23.726-60.534L23.992-60.534L23.992-60.107Q23.992-59.881 23.893-59.671Q23.794-59.461 23.609-59.329Q23.425-59.198 23.196-59.198Q22.758-59.198 22.483-59.435Q22.208-59.673 22.208-60.107M24.761-60.801Q24.761-61.122 24.886-61.411Q25.011-61.700 25.236-61.923Q25.462-62.147 25.758-62.267Q26.053-62.387 26.371-62.387Q26.699-62.387 26.961-62.287Q27.222-62.188 27.398-62.006Q27.574-61.823 27.668-61.565Q27.762-61.307 27.762-60.975Q27.762-60.883 27.680-60.862L25.424-60.862L25.424-60.801Q25.424-60.213 25.708-59.830Q25.992-59.447 26.559-59.447Q26.880-59.447 27.149-59.640Q27.417-59.833 27.506-60.148Q27.513-60.189 27.588-60.203L27.680-60.203Q27.762-60.179 27.762-60.107Q27.762-60.100 27.755-60.073Q27.643-59.676 27.272-59.437Q26.901-59.198 26.477-59.198Q26.040-59.198 25.640-59.406Q25.240-59.615 25.001-59.982Q24.761-60.349 24.761-60.801M25.431-61.071L27.246-61.071Q27.246-61.348 27.149-61.600Q27.051-61.853 26.853-62.009Q26.655-62.164 26.371-62.164Q26.094-62.164 25.881-62.006Q25.667-61.847 25.549-61.592Q25.431-61.337 25.431-61.071M30.234-60.520L28.176-60.520L28.176-61.023L30.234-61.023L30.234-60.520M31.843-59.266L31.577-59.266L31.577-63.374Q31.577-63.644 31.469-63.706Q31.361-63.767 31.050-63.767L31.050-64.048L32.130-64.123L32.130-61.953Q32.339-62.144 32.624-62.248Q32.910-62.352 33.207-62.352Q33.525-62.352 33.822-62.231Q34.120-62.110 34.342-61.894Q34.564-61.679 34.691-61.394Q34.817-61.108 34.817-60.777Q34.817-60.332 34.578-59.968Q34.338-59.604 33.945-59.401Q33.552-59.198 33.108-59.198Q32.913-59.198 32.724-59.254Q32.534-59.310 32.373-59.415Q32.213-59.519 32.072-59.680L31.843-59.266M32.158-61.611L32.158-59.994Q32.295-59.734 32.536-59.577Q32.776-59.420 33.053-59.420Q33.347-59.420 33.559-59.527Q33.771-59.635 33.904-59.827Q34.038-60.018 34.096-60.257Q34.154-60.496 34.154-60.777Q34.154-61.136 34.060-61.440Q33.966-61.744 33.739-61.937Q33.511-62.130 33.146-62.130Q32.845-62.130 32.578-61.994Q32.312-61.857 32.158-61.611M35.511-59.994Q35.511-60.326 35.735-60.553Q35.959-60.780 36.302-60.908Q36.646-61.037 37.018-61.089Q37.391-61.142 37.695-61.142L37.695-61.395Q37.695-61.600 37.587-61.780Q37.480-61.959 37.298-62.062Q37.117-62.164 36.909-62.164Q36.502-62.164 36.266-62.072Q36.355-62.035 36.401-61.951Q36.447-61.867 36.447-61.765Q36.447-61.669 36.401-61.590Q36.355-61.512 36.275-61.467Q36.194-61.423 36.106-61.423Q35.955-61.423 35.854-61.520Q35.754-61.618 35.754-61.765Q35.754-62.387 36.909-62.387Q37.121-62.387 37.370-62.323Q37.620-62.260 37.821-62.141Q38.023-62.021 38.150-61.836Q38.276-61.652 38.276-61.409L38.276-59.833Q38.276-59.717 38.338-59.621Q38.399-59.526 38.512-59.526Q38.621-59.526 38.686-59.620Q38.751-59.714 38.751-59.833L38.751-60.281L39.018-60.281L39.018-59.833Q39.018-59.563 38.790-59.398Q38.563-59.232 38.283-59.232Q38.074-59.232 37.938-59.386Q37.801-59.539 37.777-59.755Q37.630-59.488 37.348-59.343Q37.066-59.198 36.741-59.198Q36.464-59.198 36.181-59.273Q35.897-59.348 35.704-59.527Q35.511-59.707 35.511-59.994M36.126-59.994Q36.126-59.820 36.227-59.690Q36.328-59.560 36.483-59.490Q36.639-59.420 36.803-59.420Q37.022-59.420 37.230-59.517Q37.439-59.615 37.567-59.796Q37.695-59.977 37.695-60.203L37.695-60.931Q37.370-60.931 37.005-60.840Q36.639-60.749 36.382-60.537Q36.126-60.326 36.126-59.994M39.435-60.777Q39.435-61.105 39.570-61.406Q39.705-61.706 39.941-61.927Q40.176-62.147 40.481-62.267Q40.785-62.387 41.109-62.387Q41.615-62.387 41.964-62.284Q42.313-62.182 42.313-61.806Q42.313-61.659 42.215-61.558Q42.118-61.457 41.971-61.457Q41.817-61.457 41.718-61.556Q41.619-61.655 41.619-61.806Q41.619-61.994 41.759-62.086Q41.557-62.137 41.116-62.137Q40.761-62.137 40.532-61.941Q40.303-61.744 40.202-61.435Q40.101-61.125 40.101-60.777Q40.101-60.428 40.228-60.122Q40.354-59.816 40.609-59.632Q40.863-59.447 41.219-59.447Q41.441-59.447 41.626-59.531Q41.810-59.615 41.945-59.770Q42.080-59.926 42.138-60.134Q42.152-60.189 42.207-60.189L42.319-60.189Q42.350-60.189 42.372-60.165Q42.395-60.141 42.395-60.107L42.395-60.086Q42.309-59.799 42.121-59.601Q41.933-59.403 41.668-59.300Q41.403-59.198 41.109-59.198Q40.679-59.198 40.291-59.404Q39.903-59.611 39.669-59.974Q39.435-60.336 39.435-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M44.402-59.266L42.819-59.266L42.819-59.546Q43.048-59.546 43.197-59.580Q43.345-59.615 43.345-59.755L43.345-63.374Q43.345-63.644 43.238-63.706Q43.130-63.767 42.819-63.767L42.819-64.048L43.899-64.123L43.899-60.835L44.884-61.604Q45.089-61.741 45.089-61.891Q45.089-61.935 45.048-61.970Q45.007-62.004 44.962-62.004L44.962-62.284L46.326-62.284L46.326-62.004Q45.837-62.004 45.318-61.604L44.761-61.170L45.738-59.946Q45.940-59.700 46.073-59.623Q46.206-59.546 46.493-59.546L46.493-59.266L45.061-59.266L45.061-59.546Q45.249-59.546 45.249-59.659Q45.249-59.755 45.095-59.946L44.361-60.855L43.879-60.476L43.879-59.755Q43.879-59.618 44.027-59.582Q44.176-59.546 44.402-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M11.199-59.266L9.062-59.266Q9.027-59.266 8.996-59.307Q8.965-59.348 8.965-59.395L8.988-59.496Q9-59.547 9.086-59.563Q9.527-59.563 9.685-59.602Q9.844-59.641 9.886-59.868L10.965-64.188Q10.988-64.258 10.988-64.321Q10.988-64.383 10.926-64.403Q10.781-64.434 10.359-64.434Q10.254-64.461 10.254-64.563L10.285-64.664Q10.293-64.711 10.375-64.731L12.886-64.731Q13.293-64.731 13.736-64.608Q14.179-64.485 14.484-64.209Q14.789-63.934 14.789-63.512Q14.789-63.125 14.519-62.809Q14.250-62.493 13.851-62.284Q13.453-62.075 13.078-61.985Q13.386-61.860 13.584-61.621Q13.781-61.383 13.781-61.067Q13.781-61.024 13.779-60.996Q13.777-60.969 13.773-60.938L13.695-60.243Q13.664-59.953 13.664-59.832Q13.664-59.618 13.732-59.487Q13.801-59.356 14.008-59.356Q14.261-59.356 14.457-59.580Q14.652-59.805 14.719-60.082Q14.726-60.129 14.812-60.145L14.894-60.145Q14.988-60.118 14.988-60.036Q14.988-60.028 14.980-59.993Q14.929-59.778 14.785-59.567Q14.640-59.356 14.433-59.227Q14.226-59.098 14-59.098Q13.695-59.098 13.426-59.184Q13.156-59.270 12.984-59.469Q12.812-59.668 12.812-59.977Q12.812-60.086 12.855-60.266L13.031-60.961Q13.054-61.082 13.054-61.176Q13.054-61.512 12.793-61.694Q12.531-61.875 12.168-61.875L11.117-61.875L10.597-59.809Q10.582-59.715 10.582-59.672Q10.582-59.633 10.595-59.620Q10.609-59.606 10.644-59.594Q10.789-59.563 11.215-59.563Q11.308-59.536 11.308-59.442L11.285-59.336Q11.277-59.286 11.199-59.266M11.679-64.129L11.183-62.129L12.125-62.129Q12.469-62.129 12.785-62.198Q13.101-62.266 13.375-62.434Q13.562-62.559 13.699-62.760Q13.836-62.961 13.904-63.194Q13.972-63.426 13.972-63.649Q13.972-64.106 13.605-64.270Q13.238-64.434 12.703-64.434L12.086-64.434Q11.914-64.434 11.851-64.420Q11.789-64.407 11.756-64.348Q11.722-64.289 11.679-64.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M17.193-57.266L16.017-57.266L16.017-65.266L17.193-65.266L17.193-64.899L16.384-64.899L16.384-57.633L17.193-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M17.610-59.504L17.610-59.594Q17.668-59.801 17.860-59.825L18.571-59.825L18.571-62.153L17.860-62.153Q17.664-62.176 17.610-62.395L17.610-62.481Q17.668-62.692 17.860-62.715L18.961-62.715Q19.160-62.696 19.211-62.481L19.211-62.153Q19.473-62.438 19.828-62.596Q20.184-62.754 20.571-62.754Q20.864-62.754 21.098-62.620Q21.332-62.485 21.332-62.219Q21.332-62.051 21.223-61.934Q21.114-61.817 20.946-61.817Q20.793-61.817 20.678-61.928Q20.563-62.039 20.563-62.196Q20.188-62.196 19.873-61.995Q19.559-61.793 19.385-61.459Q19.211-61.125 19.211-60.746L19.211-59.825L20.157-59.825Q20.364-59.801 20.403-59.594L20.403-59.504Q20.364-59.289 20.157-59.266L17.860-59.266Q17.668-59.289 17.610-59.504M21.801-59.504L21.801-59.594Q21.840-59.801 22.047-59.825L22.336-59.825L22.336-63.594L22.047-63.594Q21.840-63.618 21.801-63.832L21.801-63.922Q21.840-64.129 22.047-64.153L24.008-64.153Q24.278-64.153 24.518-64.057Q24.758-63.961 24.950-63.791Q25.141-63.621 25.250-63.393Q25.360-63.164 25.360-62.899Q25.360-62.532 25.119-62.243Q24.879-61.953 24.512-61.825Q24.793-61.762 25.026-61.588Q25.258-61.414 25.393-61.159Q25.528-60.903 25.528-60.618Q25.528-60.258 25.346-59.948Q25.164-59.637 24.850-59.452Q24.535-59.266 24.176-59.266L22.047-59.266Q21.840-59.289 21.801-59.504M22.977-61.532L22.977-59.825L24.008-59.825Q24.235-59.825 24.438-59.928Q24.641-60.032 24.766-60.211Q24.891-60.391 24.891-60.618Q24.891-60.848 24.789-61.057Q24.688-61.266 24.506-61.399Q24.325-61.532 24.098-61.532L22.977-61.532M22.977-63.594L22.977-62.090L23.840-62.090Q24.184-62.090 24.453-62.325Q24.723-62.559 24.723-62.899Q24.723-63.086 24.625-63.246Q24.528-63.407 24.362-63.500Q24.196-63.594 24.008-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M27.246-57.266L26.071-57.266L26.071-57.633L26.879-57.633L26.879-64.899L26.071-64.899L26.071-65.266L27.246-65.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M36.570-60.243L31.257-60.243Q31.179-60.250 31.130-60.299Q31.082-60.348 31.082-60.426Q31.082-60.496 31.129-60.547Q31.175-60.598 31.257-60.610L36.570-60.610Q36.644-60.598 36.691-60.547Q36.738-60.496 36.738-60.426Q36.738-60.348 36.689-60.299Q36.640-60.250 36.570-60.243M36.570-61.930L31.257-61.930Q31.179-61.938 31.130-61.987Q31.082-62.036 31.082-62.114Q31.082-62.184 31.129-62.235Q31.175-62.286 31.257-62.297L36.570-62.297Q36.644-62.286 36.691-62.235Q36.738-62.184 36.738-62.114Q36.738-62.036 36.689-61.987Q36.640-61.938 36.570-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M41.237-59.489L40.351-62.153L40.030-62.153Q39.831-62.176 39.780-62.395L39.780-62.481Q39.831-62.692 40.030-62.715L41.190-62.715Q41.386-62.696 41.436-62.481L41.436-62.395Q41.386-62.176 41.190-62.153L40.909-62.153L41.702-59.778L42.491-62.153L42.214-62.153Q42.015-62.176 41.964-62.395L41.964-62.481Q42.015-62.692 42.214-62.715L43.374-62.715Q43.569-62.692 43.620-62.481L43.620-62.395Q43.569-62.176 43.374-62.153L43.054-62.153L42.167-59.489Q42.124-59.375 42.022-59.301Q41.921-59.227 41.796-59.227L41.604-59.227Q41.487-59.227 41.384-59.299Q41.280-59.371 41.237-59.489M44.233-60.379Q44.233-60.825 44.647-61.082Q45.061-61.340 45.602-61.440Q46.144-61.539 46.651-61.547Q46.651-61.762 46.517-61.914Q46.382-62.067 46.175-62.143Q45.968-62.219 45.757-62.219Q45.413-62.219 45.253-62.196L45.253-62.137Q45.253-61.969 45.134-61.854Q45.015-61.739 44.851-61.739Q44.675-61.739 44.560-61.862Q44.444-61.985 44.444-62.153Q44.444-62.559 44.825-62.668Q45.206-62.778 45.765-62.778Q46.034-62.778 46.302-62.700Q46.569-62.621 46.794-62.471Q47.019-62.321 47.155-62.100Q47.292-61.879 47.292-61.602L47.292-59.883Q47.292-59.825 47.819-59.825Q48.015-59.805 48.065-59.594L48.065-59.504Q48.015-59.289 47.819-59.266L47.675-59.266Q47.331-59.266 47.102-59.313Q46.874-59.360 46.729-59.547Q46.269-59.227 45.561-59.227Q45.226-59.227 44.921-59.368Q44.616-59.508 44.425-59.770Q44.233-60.032 44.233-60.379M44.874-60.371Q44.874-60.098 45.116-59.942Q45.358-59.786 45.644-59.786Q45.862-59.786 46.095-59.844Q46.327-59.903 46.489-60.041Q46.651-60.180 46.651-60.403L46.651-60.993Q46.370-60.993 45.954-60.936Q45.538-60.879 45.206-60.741Q44.874-60.602 44.874-60.371M48.522-59.504L48.522-59.594Q48.573-59.801 48.769-59.825L49.874-59.825L49.874-63.594L48.769-63.594Q48.573-63.618 48.522-63.832L48.522-63.922Q48.573-64.129 48.769-64.153L50.265-64.153Q50.456-64.129 50.515-63.922L50.515-59.825L51.616-59.825Q51.815-59.801 51.866-59.594L51.866-59.504Q51.815-59.289 51.616-59.266L48.769-59.266Q48.573-59.289 48.522-59.504M52.503-59.504L52.503-59.594Q52.542-59.801 52.753-59.825L53.061-59.825L53.061-63.594L52.753-63.594Q52.542-63.618 52.503-63.832L52.503-63.922Q52.542-64.129 52.753-64.153L55.960-64.153Q56.155-64.129 56.206-63.922L56.206-63.082Q56.155-62.868 55.960-62.840L55.815-62.840Q55.620-62.868 55.565-63.082L55.565-63.594L53.702-63.594L53.702-62.075L54.679-62.075L54.679-62.289Q54.729-62.496 54.929-62.524L55.073-62.524Q55.269-62.496 55.319-62.289L55.319-61.305Q55.269-61.090 55.073-61.067L54.929-61.067Q54.729-61.090 54.679-61.305L54.679-61.512L53.702-61.512L53.702-59.825L55.745-59.825L55.745-60.465Q55.796-60.672 55.991-60.700L56.136-60.700Q56.331-60.672 56.382-60.465L56.382-59.504Q56.331-59.286 56.136-59.266L52.753-59.266Q52.542-59.289 52.503-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 49.423h364.195\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M11.100-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.633-64.048Q12.043-64.048 12.464-63.894Q12.884-63.740 13.168-63.436Q13.451-63.132 13.451-62.718Q13.451-62.400 13.284-62.154Q13.116-61.908 12.840-61.742Q12.563-61.577 12.241-61.493Q11.920-61.409 11.633-61.409L10.379-61.409L10.379-59.755Q10.379-59.546 11.100-59.546L11.100-59.266M10.351-63.556L10.351-61.659L11.438-61.659Q12.047-61.659 12.361-61.896Q12.676-62.134 12.676-62.718Q12.676-63.111 12.530-63.345Q12.385-63.579 12.113-63.673Q11.842-63.767 11.438-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.432-61.659Q14.432-62.185 14.649-62.653Q14.866-63.121 15.249-63.467Q15.632-63.812 16.116-64Q16.599-64.188 17.129-64.188Q17.532-64.188 17.897-64.031Q18.261-63.873 18.544-63.579L18.968-64.161Q19.002-64.188 19.026-64.188L19.074-64.188Q19.105-64.188 19.129-64.164Q19.153-64.140 19.153-64.109L19.153-62.246Q19.153-62.223 19.127-62.197Q19.101-62.171 19.074-62.171L18.948-62.171Q18.886-62.171 18.872-62.246Q18.842-62.561 18.707-62.865Q18.572-63.169 18.356-63.403Q18.141-63.638 17.852-63.773Q17.563-63.908 17.235-63.908Q16.593-63.908 16.135-63.614Q15.677-63.320 15.444-62.807Q15.212-62.294 15.212-61.659Q15.212-61.187 15.342-60.778Q15.471-60.370 15.731-60.057Q15.991-59.745 16.370-59.575Q16.750-59.406 17.242-59.406Q17.570-59.406 17.864-59.522Q18.158-59.639 18.392-59.854Q18.626-60.069 18.756-60.358Q18.886-60.647 18.886-60.975Q18.886-61.002 18.913-61.026Q18.941-61.050 18.961-61.050L19.074-61.050Q19.112-61.050 19.132-61.025Q19.153-60.999 19.153-60.961Q19.153-60.565 18.987-60.228Q18.821-59.891 18.534-59.644Q18.247-59.396 17.878-59.261Q17.509-59.126 17.129-59.126Q16.610-59.126 16.117-59.316Q15.625-59.505 15.246-59.849Q14.866-60.192 14.649-60.661Q14.432-61.129 14.432-61.659\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M23.241-60.100L23.241-61.604Q23.241-61.874 23.133-61.935Q23.025-61.997 22.714-61.997L22.714-62.277L23.822-62.352L23.822-60.120L23.822-60.100Q23.822-59.820 23.873-59.676Q23.924-59.533 24.066-59.476Q24.208-59.420 24.495-59.420Q24.748-59.420 24.953-59.560Q25.158-59.700 25.274-59.926Q25.391-60.151 25.391-60.401L25.391-61.604Q25.391-61.874 25.283-61.935Q25.175-61.997 24.864-61.997L24.864-62.277L25.972-62.352L25.972-59.939Q25.972-59.748 26.025-59.666Q26.078-59.584 26.178-59.565Q26.279-59.546 26.495-59.546L26.495-59.266L25.418-59.198L25.418-59.762Q25.309-59.580 25.163-59.457Q25.018-59.334 24.832-59.266Q24.645-59.198 24.444-59.198Q23.241-59.198 23.241-60.100M28.727-57.909L27.096-57.909L27.096-58.189Q27.325-58.189 27.474-58.224Q27.623-58.258 27.623-58.398L27.623-61.744Q27.623-61.915 27.486-61.956Q27.349-61.997 27.096-61.997L27.096-62.277L28.176-62.352L28.176-61.946Q28.398-62.147 28.685-62.250Q28.973-62.352 29.280-62.352Q29.707-62.352 30.071-62.139Q30.435-61.925 30.649-61.561Q30.863-61.197 30.863-60.777Q30.863-60.332 30.623-59.968Q30.384-59.604 29.991-59.401Q29.598-59.198 29.154-59.198Q28.887-59.198 28.639-59.298Q28.392-59.399 28.204-59.580L28.204-58.398Q28.204-58.261 28.352-58.225Q28.501-58.189 28.727-58.189L28.727-57.909M28.204-61.597L28.204-59.987Q28.337-59.734 28.580-59.577Q28.822-59.420 29.099-59.420Q29.427-59.420 29.680-59.621Q29.933-59.823 30.066-60.141Q30.200-60.459 30.200-60.777Q30.200-61.006 30.135-61.235Q30.070-61.464 29.942-61.662Q29.813-61.860 29.619-61.980Q29.424-62.099 29.191-62.099Q28.897-62.099 28.629-61.970Q28.361-61.840 28.204-61.597\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M31.714-60.777Q31.714-61.115 31.855-61.406Q31.995-61.696 32.239-61.910Q32.483-62.123 32.788-62.238Q33.092-62.352 33.417-62.352Q33.687-62.352 33.950-62.253Q34.213-62.154 34.404-61.976L34.404-63.374Q34.404-63.644 34.297-63.706Q34.189-63.767 33.878-63.767L33.878-64.048L34.955-64.123L34.955-59.939Q34.955-59.751 35.009-59.668Q35.064-59.584 35.165-59.565Q35.266-59.546 35.481-59.546L35.481-59.266L34.374-59.198L34.374-59.615Q33.957-59.198 33.331-59.198Q32.900-59.198 32.528-59.410Q32.155-59.621 31.935-59.982Q31.714-60.343 31.714-60.777M33.389-59.420Q33.598-59.420 33.784-59.492Q33.970-59.563 34.124-59.700Q34.278-59.837 34.374-60.015L34.374-61.624Q34.288-61.771 34.143-61.891Q33.998-62.011 33.828-62.070Q33.659-62.130 33.478-62.130Q32.918-62.130 32.649-61.741Q32.381-61.351 32.381-60.770Q32.381-60.199 32.615-59.809Q32.849-59.420 33.389-59.420M36.189-59.994Q36.189-60.326 36.412-60.553Q36.636-60.780 36.980-60.908Q37.323-61.037 37.696-61.089Q38.068-61.142 38.373-61.142L38.373-61.395Q38.373-61.600 38.265-61.780Q38.157-61.959 37.976-62.062Q37.795-62.164 37.587-62.164Q37.180-62.164 36.944-62.072Q37.033-62.035 37.079-61.951Q37.125-61.867 37.125-61.765Q37.125-61.669 37.079-61.590Q37.033-61.512 36.952-61.467Q36.872-61.423 36.783-61.423Q36.633-61.423 36.532-61.520Q36.431-61.618 36.431-61.765Q36.431-62.387 37.587-62.387Q37.798-62.387 38.048-62.323Q38.297-62.260 38.499-62.141Q38.701-62.021 38.827-61.836Q38.954-61.652 38.954-61.409L38.954-59.833Q38.954-59.717 39.015-59.621Q39.077-59.526 39.190-59.526Q39.299-59.526 39.364-59.620Q39.429-59.714 39.429-59.833L39.429-60.281L39.695-60.281L39.695-59.833Q39.695-59.563 39.468-59.398Q39.241-59.232 38.961-59.232Q38.752-59.232 38.615-59.386Q38.479-59.539 38.455-59.755Q38.308-59.488 38.026-59.343Q37.744-59.198 37.419-59.198Q37.142-59.198 36.858-59.273Q36.575-59.348 36.382-59.527Q36.189-59.707 36.189-59.994M36.804-59.994Q36.804-59.820 36.905-59.690Q37.005-59.560 37.161-59.490Q37.317-59.420 37.481-59.420Q37.699-59.420 37.908-59.517Q38.116-59.615 38.244-59.796Q38.373-59.977 38.373-60.203L38.373-60.931Q38.048-60.931 37.682-60.840Q37.317-60.749 37.060-60.537Q36.804-60.326 36.804-59.994M40.639-60.107L40.639-62.004L40-62.004L40-62.226Q40.317-62.226 40.535-62.436Q40.752-62.646 40.852-62.956Q40.953-63.265 40.953-63.573L41.220-63.573L41.220-62.284L42.296-62.284L42.296-62.004L41.220-62.004L41.220-60.120Q41.220-59.844 41.324-59.645Q41.428-59.447 41.688-59.447Q41.845-59.447 41.951-59.551Q42.057-59.656 42.107-59.809Q42.156-59.963 42.156-60.120L42.156-60.534L42.423-60.534L42.423-60.107Q42.423-59.881 42.324-59.671Q42.225-59.461 42.040-59.329Q41.856-59.198 41.627-59.198Q41.189-59.198 40.914-59.435Q40.639-59.673 40.639-60.107M43.192-60.801Q43.192-61.122 43.317-61.411Q43.442-61.700 43.667-61.923Q43.893-62.147 44.188-62.267Q44.484-62.387 44.802-62.387Q45.130-62.387 45.391-62.287Q45.653-62.188 45.829-62.006Q46.005-61.823 46.099-61.565Q46.193-61.307 46.193-60.975Q46.193-60.883 46.111-60.862L43.855-60.862L43.855-60.801Q43.855-60.213 44.139-59.830Q44.422-59.447 44.990-59.447Q45.311-59.447 45.579-59.640Q45.848-59.833 45.937-60.148Q45.943-60.189 46.019-60.203L46.111-60.203Q46.193-60.179 46.193-60.107Q46.193-60.100 46.186-60.073Q46.073-59.676 45.702-59.437Q45.332-59.198 44.908-59.198Q44.470-59.198 44.070-59.406Q43.671-59.615 43.431-59.982Q43.192-60.349 43.192-60.801M43.862-61.071L45.677-61.071Q45.677-61.348 45.579-61.600Q45.482-61.853 45.284-62.009Q45.086-62.164 44.802-62.164Q44.525-62.164 44.311-62.006Q44.098-61.847 43.980-61.592Q43.862-61.337 43.862-61.071\" 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-size=\"8\">\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M8.758-59.504L8.758-59.594Q8.797-59.801 9.008-59.825L9.316-59.825L9.316-63.594L9.008-63.594Q8.797-63.618 8.758-63.832L8.758-63.922Q8.797-64.129 9.008-64.153L10.957-64.153Q11.355-64.153 11.701-63.952Q12.047-63.750 12.254-63.405Q12.461-63.059 12.461-62.657Q12.461-62.250 12.256-61.907Q12.051-61.563 11.705-61.358Q11.359-61.153 10.957-61.153L9.957-61.153L9.957-59.825L10.269-59.825Q10.480-59.801 10.519-59.594L10.519-59.504Q10.480-59.289 10.269-59.266L9.008-59.266Q8.797-59.289 8.758-59.504M9.957-63.594L9.957-61.715L10.797-61.715Q11.058-61.715 11.295-61.838Q11.531-61.961 11.676-62.176Q11.820-62.391 11.820-62.657Q11.820-62.926 11.676-63.137Q11.531-63.348 11.295-63.471Q11.058-63.594 10.797-63.594L9.957-63.594M15.086-59.188Q14.636-59.188 14.271-59.412Q13.906-59.637 13.652-60.020Q13.398-60.403 13.273-60.846Q13.148-61.289 13.148-61.715Q13.148-62.141 13.273-62.580Q13.398-63.020 13.652-63.403Q13.906-63.786 14.265-64.010Q14.625-64.235 15.086-64.235Q15.363-64.235 15.621-64.143Q15.879-64.051 16.094-63.883L16.226-64.121Q16.254-64.172 16.308-64.203Q16.363-64.235 16.422-64.235L16.500-64.235Q16.594-64.223 16.656-64.164Q16.719-64.106 16.730-64L16.730-62.672Q16.719-62.571 16.656-62.508Q16.594-62.446 16.500-62.434L16.332-62.434Q16.230-62.446 16.168-62.512Q16.105-62.578 16.094-62.672Q16.054-62.938 15.931-63.162Q15.808-63.387 15.605-63.530Q15.402-63.672 15.140-63.672Q14.808-63.672 14.556-63.489Q14.304-63.305 14.133-63.004Q13.961-62.703 13.875-62.362Q13.789-62.020 13.789-61.715Q13.789-61.411 13.873-61.069Q13.957-60.727 14.129-60.424Q14.301-60.121 14.558-59.934Q14.816-59.746 15.148-59.746Q15.531-59.746 15.812-60.020Q16.094-60.293 16.094-60.680Q16.121-60.891 16.332-60.914L16.500-60.914Q16.730-60.875 16.730-60.649Q16.730-60.332 16.594-60.061Q16.457-59.789 16.222-59.592Q15.988-59.395 15.697-59.291Q15.406-59.188 15.086-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M25.396-60.243L20.083-60.243Q20.005-60.250 19.956-60.299Q19.908-60.348 19.908-60.426Q19.908-60.496 19.955-60.547Q20.001-60.598 20.083-60.610L25.396-60.610Q25.470-60.598 25.517-60.547Q25.564-60.496 25.564-60.426Q25.564-60.348 25.515-60.299Q25.466-60.250 25.396-60.243M25.396-61.930L20.083-61.930Q20.005-61.938 19.956-61.987Q19.908-62.036 19.908-62.114Q19.908-62.184 19.955-62.235Q20.001-62.286 20.083-62.297L25.396-62.297Q25.470-62.286 25.517-62.235Q25.564-62.184 25.564-62.114Q25.564-62.036 25.515-61.987Q25.466-61.938 25.396-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M30.064-59.489L29.178-62.153L28.857-62.153Q28.658-62.176 28.607-62.395L28.607-62.481Q28.658-62.692 28.857-62.715L30.017-62.715Q30.213-62.696 30.263-62.481L30.263-62.395Q30.213-62.176 30.017-62.153L29.736-62.153L30.529-59.778L31.318-62.153L31.041-62.153Q30.842-62.176 30.791-62.395L30.791-62.481Q30.842-62.692 31.041-62.715L32.201-62.715Q32.396-62.692 32.447-62.481L32.447-62.395Q32.396-62.176 32.201-62.153L31.881-62.153L30.994-59.489Q30.951-59.375 30.849-59.301Q30.748-59.227 30.623-59.227L30.431-59.227Q30.314-59.227 30.211-59.299Q30.107-59.371 30.064-59.489M33.060-60.379Q33.060-60.825 33.474-61.082Q33.888-61.340 34.429-61.440Q34.971-61.539 35.478-61.547Q35.478-61.762 35.344-61.914Q35.209-62.067 35.002-62.143Q34.795-62.219 34.584-62.219Q34.240-62.219 34.080-62.196L34.080-62.137Q34.080-61.969 33.961-61.854Q33.842-61.739 33.678-61.739Q33.502-61.739 33.387-61.862Q33.271-61.985 33.271-62.153Q33.271-62.559 33.652-62.668Q34.033-62.778 34.592-62.778Q34.861-62.778 35.129-62.700Q35.396-62.621 35.621-62.471Q35.846-62.321 35.982-62.100Q36.119-61.879 36.119-61.602L36.119-59.883Q36.119-59.825 36.646-59.825Q36.842-59.805 36.892-59.594L36.892-59.504Q36.842-59.289 36.646-59.266L36.502-59.266Q36.158-59.266 35.929-59.313Q35.701-59.360 35.556-59.547Q35.096-59.227 34.388-59.227Q34.053-59.227 33.748-59.368Q33.443-59.508 33.252-59.770Q33.060-60.032 33.060-60.379M33.701-60.371Q33.701-60.098 33.943-59.942Q34.185-59.786 34.471-59.786Q34.689-59.786 34.922-59.844Q35.154-59.903 35.316-60.041Q35.478-60.180 35.478-60.403L35.478-60.993Q35.197-60.993 34.781-60.936Q34.365-60.879 34.033-60.741Q33.701-60.602 33.701-60.371M37.349-59.504L37.349-59.594Q37.400-59.801 37.596-59.825L38.701-59.825L38.701-63.594L37.596-63.594Q37.400-63.618 37.349-63.832L37.349-63.922Q37.400-64.129 37.596-64.153L39.092-64.153Q39.283-64.129 39.342-63.922L39.342-59.825L40.443-59.825Q40.642-59.801 40.693-59.594L40.693-59.504Q40.642-59.289 40.443-59.266L37.596-59.266Q37.400-59.289 37.349-59.504M41.330-59.504L41.330-59.594Q41.369-59.801 41.580-59.825L41.888-59.825L41.888-63.594L41.580-63.594Q41.369-63.618 41.330-63.832L41.330-63.922Q41.369-64.129 41.580-64.153L43.529-64.153Q43.928-64.153 44.273-63.952Q44.619-63.750 44.826-63.405Q45.033-63.059 45.033-62.657Q45.033-62.250 44.828-61.907Q44.623-61.563 44.277-61.358Q43.931-61.153 43.529-61.153L42.529-61.153L42.529-59.825L42.842-59.825Q43.053-59.801 43.092-59.594L43.092-59.504Q43.053-59.289 42.842-59.266L41.580-59.266Q41.369-59.289 41.330-59.504M42.529-63.594L42.529-61.715L43.369-61.715Q43.631-61.715 43.867-61.838Q44.103-61.961 44.248-62.176Q44.392-62.391 44.392-62.657Q44.392-62.926 44.248-63.137Q44.103-63.348 43.867-63.471Q43.631-63.594 43.369-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 73.608h364.195\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The OPq rA,rB stage table. Decode reads both operands; Execute applies the ifun-selected ALU op to valB OP valA and sets the condition codes; Memory is idle; Write-back stores valE into rB; PC falls through to valP.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:628.207px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 471.156 172.048\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-73.29 -26.197)\">\u003Cpath d=\"M11.489-39.534L11.489-39.624Q11.532-39.831 11.739-39.855L12.161-39.855L12.161-42.183L11.739-42.183Q11.532-42.206 11.489-42.425L11.489-42.511Q11.536-42.722 11.739-42.745L12.556-42.745Q12.751-42.722 12.802-42.511L12.802-42.425L12.794-42.401Q13.021-42.581 13.294-42.683Q13.567-42.784 13.860-42.784Q14.208-42.784 14.446-42.644Q14.685-42.503 14.800-42.245Q14.915-41.987 14.915-41.632L14.915-39.855L15.341-39.855Q15.548-39.831 15.587-39.624L15.587-39.534Q15.548-39.319 15.341-39.296L13.946-39.296Q13.751-39.319 13.700-39.534L13.700-39.624Q13.751-39.835 13.946-39.855L14.274-39.855L14.274-41.601Q14.274-41.909 14.185-42.067Q14.095-42.226 13.802-42.226Q13.532-42.226 13.304-42.095Q13.075-41.964 12.939-41.735Q12.802-41.507 12.802-41.241L12.802-39.855L13.228-39.855Q13.435-39.831 13.474-39.624L13.474-39.534Q13.435-39.319 13.228-39.296L11.739-39.296Q11.532-39.319 11.489-39.534M17.786-39.257Q17.314-39.257 16.929-39.501Q16.544-39.745 16.321-40.155Q16.099-40.566 16.099-41.023Q16.099-41.366 16.224-41.689Q16.349-42.011 16.579-42.265Q16.810-42.519 17.116-42.663Q17.423-42.808 17.786-42.808Q18.149-42.808 18.462-42.661Q18.774-42.515 18.997-42.269Q19.220-42.023 19.347-41.702Q19.474-41.382 19.474-41.023Q19.474-40.566 19.249-40.153Q19.024-39.741 18.640-39.499Q18.255-39.257 17.786-39.257M17.786-39.816Q18.251-39.816 18.542-40.210Q18.833-40.605 18.833-41.089Q18.833-41.382 18.698-41.650Q18.564-41.917 18.323-42.083Q18.083-42.249 17.786-42.249Q17.482-42.249 17.243-42.083Q17.005-41.917 16.870-41.650Q16.735-41.382 16.735-41.089Q16.735-40.608 17.028-40.212Q17.321-39.816 17.786-39.816M19.982-37.753L19.982-37.839Q20.024-38.058 20.232-38.081L20.653-38.081L20.653-42.183L20.232-42.183Q20.024-42.206 19.982-42.425L19.982-42.511Q20.028-42.722 20.232-42.745L21.048-42.745Q21.243-42.726 21.294-42.511L21.294-42.441Q21.505-42.608 21.769-42.696Q22.032-42.784 22.302-42.784Q22.642-42.784 22.939-42.640Q23.235-42.495 23.450-42.243Q23.665-41.991 23.780-41.679Q23.896-41.366 23.896-41.023Q23.896-40.558 23.669-40.148Q23.442-39.737 23.056-39.497Q22.669-39.257 22.200-39.257Q21.681-39.257 21.294-39.624L21.294-38.081L21.720-38.081Q21.927-38.058 21.966-37.839L21.966-37.753Q21.927-37.542 21.720-37.519L20.232-37.519Q20.028-37.542 19.982-37.753M22.157-39.816Q22.466-39.816 22.716-39.985Q22.966-40.155 23.110-40.437Q23.255-40.718 23.255-41.023Q23.255-41.312 23.130-41.591Q23.005-41.870 22.773-42.048Q22.540-42.226 22.239-42.226Q21.919-42.226 21.657-42.040Q21.396-41.855 21.294-41.554L21.294-40.702Q21.384-40.335 21.605-40.075Q21.825-39.816 22.157-39.816\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-52.1h207.705\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M14.112-39.296L11.798-39.296L11.798-39.576Q12.520-39.576 12.520-39.785L12.520-43.586Q12.520-43.797 11.798-43.797L11.798-44.078L15.982-44.078L16.194-42.441L15.927-42.441Q15.849-43.052 15.697-43.331Q15.544-43.609 15.240-43.703Q14.936-43.797 14.311-43.797L13.576-43.797Q13.388-43.797 13.299-43.763Q13.210-43.729 13.210-43.586L13.210-41.829L13.764-41.829Q14.133-41.829 14.317-41.883Q14.502-41.938 14.581-42.111Q14.659-42.283 14.659-42.649L14.926-42.649L14.926-40.732L14.659-40.732Q14.659-41.097 14.581-41.270Q14.502-41.442 14.317-41.495Q14.133-41.548 13.764-41.548L13.210-41.548L13.210-39.785Q13.210-39.576 14.112-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M16.206-40.831Q16.206-41.152 16.331-41.441Q16.456-41.730 16.682-41.953Q16.907-42.177 17.203-42.297Q17.498-42.417 17.816-42.417Q18.144-42.417 18.406-42.317Q18.667-42.218 18.843-42.036Q19.019-41.853 19.113-41.595Q19.207-41.337 19.207-41.005Q19.207-40.913 19.125-40.892L16.870-40.892L16.870-40.831Q16.870-40.243 17.153-39.860Q17.437-39.477 18.004-39.477Q18.326-39.477 18.594-39.670Q18.862-39.863 18.951-40.178Q18.958-40.219 19.033-40.233L19.125-40.233Q19.207-40.209 19.207-40.137Q19.207-40.130 19.201-40.103Q19.088-39.706 18.717-39.467Q18.346-39.228 17.922-39.228Q17.485-39.228 17.085-39.436Q16.685-39.645 16.446-40.012Q16.206-40.379 16.206-40.831M16.876-41.101L18.691-41.101Q18.691-41.378 18.594-41.630Q18.496-41.883 18.298-42.039Q18.100-42.194 17.816-42.194Q17.539-42.194 17.326-42.036Q17.112-41.877 16.994-41.622Q16.876-41.367 16.876-41.101M20.322-40.137L20.322-42.034L19.683-42.034L19.683-42.256Q20-42.256 20.217-42.466Q20.434-42.676 20.535-42.986Q20.636-43.295 20.636-43.603L20.903-43.603L20.903-42.314L21.979-42.314L21.979-42.034L20.903-42.034L20.903-40.150Q20.903-39.874 21.007-39.675Q21.111-39.477 21.371-39.477Q21.528-39.477 21.634-39.581Q21.740-39.686 21.790-39.839Q21.839-39.993 21.839-40.150L21.839-40.564L22.106-40.564L22.106-40.137Q22.106-39.911 22.007-39.701Q21.908-39.491 21.723-39.359Q21.538-39.228 21.309-39.228Q20.872-39.228 20.597-39.465Q20.322-39.703 20.322-40.137M22.916-40.807Q22.916-41.135 23.051-41.436Q23.186-41.736 23.422-41.957Q23.658-42.177 23.962-42.297Q24.266-42.417 24.591-42.417Q25.097-42.417 25.445-42.314Q25.794-42.212 25.794-41.836Q25.794-41.689 25.696-41.588Q25.599-41.487 25.452-41.487Q25.298-41.487 25.199-41.586Q25.100-41.685 25.100-41.836Q25.100-42.024 25.240-42.116Q25.038-42.167 24.598-42.167Q24.242-42.167 24.013-41.971Q23.784-41.774 23.683-41.465Q23.582-41.155 23.582-40.807Q23.582-40.458 23.709-40.152Q23.835-39.846 24.090-39.662Q24.345-39.477 24.700-39.477Q24.922-39.477 25.107-39.561Q25.291-39.645 25.426-39.800Q25.561-39.956 25.620-40.164Q25.633-40.219 25.688-40.219L25.801-40.219Q25.831-40.219 25.854-40.195Q25.876-40.171 25.876-40.137L25.876-40.116Q25.790-39.829 25.602-39.631Q25.414-39.433 25.150-39.330Q24.885-39.228 24.591-39.228Q24.160-39.228 23.772-39.434Q23.384-39.641 23.150-40.004Q22.916-40.366 22.916-40.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M27.950-39.296L26.316-39.296L26.316-39.576Q26.545-39.576 26.694-39.610Q26.843-39.645 26.843-39.785L26.843-43.404Q26.843-43.674 26.735-43.736Q26.627-43.797 26.316-43.797L26.316-44.078L27.396-44.153L27.396-41.767Q27.502-41.952 27.680-42.094Q27.858-42.235 28.066-42.309Q28.275-42.382 28.500-42.382Q29.006-42.382 29.290-42.159Q29.574-41.935 29.574-41.439L29.574-39.785Q29.574-39.648 29.722-39.612Q29.871-39.576 30.097-39.576L30.097-39.296L28.466-39.296L28.466-39.576Q28.695-39.576 28.844-39.610Q28.993-39.645 28.993-39.785L28.993-41.425Q28.993-41.760 28.873-41.960Q28.753-42.160 28.439-42.160Q28.169-42.160 27.935-42.024Q27.701-41.887 27.562-41.653Q27.424-41.419 27.424-41.145L27.424-39.785Q27.424-39.648 27.574-39.612Q27.725-39.576 27.950-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M12.036-39.534L12.036-39.624Q12.087-39.831 12.282-39.855L13.321-39.855L13.321-42.183L12.349-42.183Q12.149-42.206 12.099-42.425L12.099-42.511Q12.149-42.722 12.349-42.745L13.716-42.745Q13.911-42.726 13.962-42.511L13.962-39.855L14.876-39.855Q15.071-39.831 15.122-39.624L15.122-39.534Q15.071-39.319 14.876-39.296L12.282-39.296Q12.087-39.319 12.036-39.534M13.067-43.722L13.067-43.776Q13.067-43.948 13.204-44.069Q13.341-44.191 13.517-44.191Q13.689-44.191 13.825-44.069Q13.962-43.948 13.962-43.776L13.962-43.722Q13.962-43.546 13.825-43.425Q13.689-43.304 13.517-43.304Q13.341-43.304 13.204-43.425Q13.067-43.546 13.067-43.722M16.224-41.023Q16.224-41.503 16.468-41.917Q16.712-42.331 17.128-42.569Q17.544-42.808 18.024-42.808Q18.579-42.808 18.958-42.698Q19.337-42.589 19.337-42.183Q19.337-42.015 19.224-41.892Q19.110-41.769 18.939-41.769Q18.767-41.769 18.648-41.884Q18.528-41.999 18.528-42.167L18.528-42.226Q18.368-42.249 18.032-42.249Q17.704-42.249 17.437-42.079Q17.169-41.909 17.017-41.626Q16.864-41.343 16.864-41.023Q16.864-40.702 17.036-40.421Q17.208-40.140 17.493-39.978Q17.778-39.816 18.107-39.816Q18.419-39.816 18.546-39.919Q18.673-40.023 18.790-40.212Q18.907-40.401 19.024-40.417L19.192-40.417Q19.298-40.405 19.362-40.337Q19.427-40.269 19.427-40.167Q19.427-40.120 19.407-40.081Q19.298-39.788 19.095-39.608Q18.892-39.429 18.616-39.343Q18.341-39.257 18.024-39.257Q17.540-39.257 17.124-39.495Q16.708-39.733 16.466-40.136Q16.224-40.538 16.224-41.023M22.032-39.257Q21.560-39.257 21.175-39.501Q20.790-39.745 20.567-40.155Q20.345-40.566 20.345-41.023Q20.345-41.366 20.470-41.689Q20.595-42.011 20.825-42.265Q21.056-42.519 21.362-42.663Q21.669-42.808 22.032-42.808Q22.396-42.808 22.708-42.661Q23.021-42.515 23.243-42.269Q23.466-42.023 23.593-41.702Q23.720-41.382 23.720-41.023Q23.720-40.566 23.495-40.153Q23.271-39.741 22.886-39.499Q22.501-39.257 22.032-39.257M22.032-39.816Q22.497-39.816 22.788-40.210Q23.079-40.605 23.079-41.089Q23.079-41.382 22.944-41.650Q22.810-41.917 22.569-42.083Q22.329-42.249 22.032-42.249Q21.728-42.249 21.489-42.083Q21.251-41.917 21.116-41.650Q20.982-41.382 20.982-41.089Q20.982-40.608 21.274-40.212Q21.567-39.816 22.032-39.816M26.021-39.257Q25.556-39.257 25.190-39.507Q24.825-39.757 24.620-40.161Q24.415-40.566 24.415-41.023Q24.415-41.366 24.540-41.687Q24.665-42.007 24.898-42.257Q25.130-42.507 25.435-42.646Q25.739-42.784 26.095-42.784Q26.607-42.784 27.013-42.464L27.013-43.624L26.591-43.624Q26.380-43.648 26.341-43.862L26.341-43.952Q26.380-44.159 26.591-44.183L27.403-44.183Q27.603-44.159 27.653-43.952L27.653-39.855L28.079-39.855Q28.286-39.831 28.325-39.624L28.325-39.534Q28.286-39.319 28.079-39.296L27.263-39.296Q27.064-39.319 27.013-39.534L27.013-39.663Q26.817-39.472 26.556-39.364Q26.294-39.257 26.021-39.257M26.060-39.816Q26.419-39.816 26.671-40.085Q26.923-40.355 27.013-40.730L27.013-41.562Q26.954-41.749 26.827-41.900Q26.700-42.050 26.523-42.138Q26.345-42.226 26.149-42.226Q25.841-42.226 25.591-42.056Q25.341-41.886 25.196-41.601Q25.052-41.316 25.052-41.015Q25.052-40.566 25.337-40.191Q25.622-39.816 26.060-39.816M31.915-40.784L29.474-40.784Q29.528-40.507 29.726-40.284Q29.923-40.062 30.200-39.939Q30.478-39.816 30.763-39.816Q31.235-39.816 31.458-40.105Q31.466-40.116 31.523-40.222Q31.579-40.327 31.628-40.370Q31.677-40.413 31.771-40.425L31.915-40.425Q32.106-40.405 32.165-40.191L32.165-40.136Q32.099-39.835 31.868-39.638Q31.638-39.441 31.325-39.349Q31.013-39.257 30.708-39.257Q30.224-39.257 29.784-39.485Q29.345-39.714 29.077-40.114Q28.810-40.515 28.810-41.007L28.810-41.066Q28.810-41.534 29.056-41.937Q29.302-42.339 29.710-42.573Q30.118-42.808 30.587-42.808Q31.091-42.808 31.444-42.585Q31.798-42.362 31.982-41.974Q32.165-41.585 32.165-41.081L32.165-41.023Q32.106-40.808 31.915-40.784M29.482-41.335L31.509-41.335Q31.462-41.745 31.224-41.997Q30.985-42.249 30.587-42.249Q30.192-42.249 29.886-41.987Q29.579-41.726 29.482-41.335\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M33.388-39.761Q33.388-39.944 33.524-40.081Q33.661-40.218 33.853-40.218Q34.044-40.218 34.177-40.085Q34.310-39.952 34.310-39.761Q34.310-39.562 34.177-39.429Q34.044-39.296 33.853-39.296Q33.661-39.296 33.524-39.433Q33.388-39.569 33.388-39.761M33.388-42.288Q33.388-42.472 33.524-42.608Q33.661-42.745 33.853-42.745Q34.044-42.745 34.177-42.612Q34.310-42.480 34.310-42.288Q34.310-42.089 34.177-41.956Q34.044-41.823 33.853-41.823Q33.661-41.823 33.524-41.960Q33.388-42.097 33.388-42.288\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M35.647-39.534L35.647-39.624Q35.698-39.831 35.893-39.855L36.932-39.855L36.932-42.183L35.960-42.183Q35.760-42.206 35.710-42.425L35.710-42.511Q35.760-42.722 35.960-42.745L37.327-42.745Q37.522-42.726 37.573-42.511L37.573-39.855L38.487-39.855Q38.682-39.831 38.733-39.624L38.733-39.534Q38.682-39.319 38.487-39.296L35.893-39.296Q35.698-39.319 35.647-39.534M36.678-43.722L36.678-43.776Q36.678-43.948 36.815-44.069Q36.952-44.191 37.128-44.191Q37.300-44.191 37.436-44.069Q37.573-43.948 37.573-43.776L37.573-43.722Q37.573-43.546 37.436-43.425Q37.300-43.304 37.128-43.304Q36.952-43.304 36.815-43.425Q36.678-43.546 36.678-43.722M39.596-39.534L39.596-39.624Q39.647-39.831 39.843-39.855L40.725-39.855L40.725-42.183L39.870-42.183Q39.671-42.206 39.620-42.425L39.620-42.511Q39.671-42.722 39.870-42.745L40.725-42.745L40.725-43.198Q40.725-43.663 41.132-43.944Q41.538-44.226 42.018-44.226Q42.331-44.226 42.575-44.105Q42.819-43.983 42.819-43.702Q42.819-43.538 42.710-43.421Q42.600-43.304 42.436-43.304Q42.288-43.304 42.167-43.409Q42.046-43.515 42.046-43.663L41.964-43.663Q41.811-43.663 41.675-43.603Q41.538-43.542 41.452-43.427Q41.366-43.312 41.366-43.167L41.366-42.745L42.397-42.745Q42.593-42.726 42.643-42.511L42.643-42.425Q42.593-42.206 42.397-42.183L41.366-42.183L41.366-39.855L42.245-39.855Q42.440-39.831 42.491-39.624L42.491-39.534Q42.440-39.319 42.245-39.296L39.843-39.296Q39.647-39.319 39.596-39.534M44.264-40.151L44.264-42.183L43.843-42.183Q43.635-42.206 43.593-42.425L43.593-42.511Q43.639-42.722 43.843-42.745L44.659-42.745Q44.854-42.722 44.905-42.511L44.905-40.183Q44.905-39.948 45.075-39.882Q45.245-39.816 45.530-39.816Q45.737-39.816 45.932-39.892Q46.128-39.968 46.253-40.118Q46.378-40.269 46.378-40.480L46.378-42.183L45.956-42.183Q45.745-42.206 45.706-42.425L45.706-42.511Q45.745-42.722 45.956-42.745L46.768-42.745Q46.968-42.722 47.018-42.511L47.018-39.855L47.444-39.855Q47.651-39.831 47.690-39.624L47.690-39.534Q47.651-39.319 47.444-39.296L46.628-39.296Q46.428-39.319 46.378-39.519Q45.975-39.257 45.468-39.257Q45.233-39.257 45.018-39.298Q44.803-39.339 44.637-39.441Q44.471-39.542 44.368-39.720Q44.264-39.898 44.264-40.151M47.839-39.534L47.839-39.624Q47.882-39.831 48.089-39.855L48.510-39.855L48.510-42.183L48.089-42.183Q47.882-42.206 47.839-42.425L47.839-42.511Q47.885-42.722 48.089-42.745L48.905-42.745Q49.100-42.722 49.151-42.511L49.151-42.425L49.143-42.401Q49.370-42.581 49.643-42.683Q49.917-42.784 50.210-42.784Q50.557-42.784 50.796-42.644Q51.034-42.503 51.149-42.245Q51.264-41.987 51.264-41.632L51.264-39.855L51.690-39.855Q51.897-39.831 51.936-39.624L51.936-39.534Q51.897-39.319 51.690-39.296L50.296-39.296Q50.100-39.319 50.050-39.534L50.050-39.624Q50.100-39.835 50.296-39.855L50.624-39.855L50.624-41.601Q50.624-41.909 50.534-42.067Q50.444-42.226 50.151-42.226Q49.882-42.226 49.653-42.095Q49.425-41.964 49.288-41.735Q49.151-41.507 49.151-41.241L49.151-39.855L49.577-39.855Q49.784-39.831 49.823-39.624L49.823-39.534Q49.784-39.319 49.577-39.296L48.089-39.296Q47.882-39.319 47.839-39.534\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M60.353-40.273L55.040-40.273Q54.962-40.280 54.913-40.329Q54.865-40.378 54.865-40.456Q54.865-40.526 54.912-40.577Q54.958-40.628 55.040-40.640L60.353-40.640Q60.427-40.628 60.474-40.577Q60.521-40.526 60.521-40.456Q60.521-40.378 60.472-40.329Q60.423-40.280 60.353-40.273M60.353-41.960L55.040-41.960Q54.962-41.968 54.913-42.017Q54.865-42.066 54.865-42.144Q54.865-42.214 54.912-42.265Q54.958-42.316 55.040-42.327L60.353-42.327Q60.427-42.316 60.474-42.265Q60.521-42.214 60.521-42.144Q60.521-42.066 60.472-42.017Q60.423-41.968 60.353-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M65.602-39.296L63.884-39.296Q63.844-39.296 63.817-39.337Q63.790-39.378 63.790-39.425L63.813-39.526Q63.821-39.577 63.907-39.593Q64.637-39.593 64.762-40.120L65.790-44.218Q65.813-44.288 65.813-44.351Q65.813-44.413 65.747-44.433Q65.602-44.464 65.180-44.464Q65.075-44.495 65.075-44.593L65.106-44.694Q65.118-44.741 65.196-44.761L66.594-44.761Q66.653-44.761 66.690-44.732Q66.727-44.702 66.731-44.648L67.442-40.073L70.442-44.648Q70.520-44.761 70.637-44.761L71.981-44.761Q72.028-44.749 72.055-44.718Q72.083-44.687 72.083-44.640L72.059-44.534Q72.040-44.480 71.966-44.464Q71.524-44.464 71.364-44.425Q71.216-44.390 71.157-44.159L70.075-39.839Q70.059-39.745 70.059-39.702Q70.059-39.644 70.126-39.624Q70.266-39.593 70.692-39.593Q70.790-39.566 70.790-39.472L70.762-39.366Q70.755-39.316 70.677-39.296L68.594-39.296Q68.555-39.296 68.528-39.337Q68.501-39.378 68.501-39.425L68.524-39.526Q68.532-39.577 68.622-39.593Q69.059-39.593 69.218-39.632Q69.376-39.671 69.419-39.898L70.555-44.441L67.259-39.409Q67.192-39.296 67.059-39.296Q66.927-39.296 66.915-39.409L66.141-44.374L65.059-40.066Q65.044-39.964 65.044-39.913Q65.044-39.714 65.208-39.653Q65.372-39.593 65.622-39.593Q65.716-39.566 65.716-39.472L65.692-39.366Q65.684-39.316 65.602-39.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M74.568-38.185L72.277-38.185L72.277-38.443Q73.153-38.443 73.153-38.616L73.153-41.695Q72.960-41.607 72.728-41.570Q72.497-41.534 72.242-41.534L72.242-41.791Q72.620-41.791 72.941-41.876Q73.261-41.961 73.490-42.175L73.610-42.175Q73.642-42.175 73.667-42.152Q73.692-42.128 73.692-42.090L73.692-38.616Q73.692-38.443 74.568-38.443\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M77.862-37.296L76.686-37.296L76.686-45.296L77.862-45.296L77.862-44.929L77.053-44.929L77.053-37.663L77.862-37.663\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M78.239-39.534L78.239-39.624Q78.278-39.831 78.489-39.855L78.797-39.855L78.797-43.624L78.489-43.624Q78.278-43.648 78.239-43.862L78.239-43.952Q78.278-44.159 78.489-44.183L80.438-44.183Q80.836-44.183 81.182-43.982Q81.528-43.780 81.735-43.435Q81.942-43.089 81.942-42.687Q81.942-42.280 81.737-41.937Q81.532-41.593 81.186-41.388Q80.840-41.183 80.438-41.183L79.438-41.183L79.438-39.855L79.750-39.855Q79.961-39.831 80-39.624L80-39.534Q79.961-39.319 79.750-39.296L78.489-39.296Q78.278-39.319 78.239-39.534M79.438-43.624L79.438-41.745L80.278-41.745Q80.539-41.745 80.776-41.868Q81.012-41.991 81.157-42.206Q81.301-42.421 81.301-42.687Q81.301-42.956 81.157-43.167Q81.012-43.378 80.776-43.501Q80.539-43.624 80.278-43.624L79.438-43.624M84.567-39.218Q84.118-39.218 83.752-39.442Q83.387-39.667 83.133-40.050Q82.879-40.433 82.754-40.876Q82.629-41.319 82.629-41.745Q82.629-42.171 82.754-42.610Q82.879-43.050 83.133-43.433Q83.387-43.816 83.746-44.040Q84.106-44.265 84.567-44.265Q84.844-44.265 85.102-44.173Q85.360-44.081 85.575-43.913L85.707-44.151Q85.735-44.202 85.789-44.233Q85.844-44.265 85.903-44.265L85.981-44.265Q86.075-44.253 86.137-44.194Q86.200-44.136 86.211-44.030L86.211-42.702Q86.200-42.601 86.137-42.538Q86.075-42.476 85.981-42.464L85.813-42.464Q85.711-42.476 85.649-42.542Q85.586-42.608 85.575-42.702Q85.535-42.968 85.412-43.192Q85.289-43.417 85.086-43.560Q84.883-43.702 84.621-43.702Q84.289-43.702 84.037-43.519Q83.785-43.335 83.614-43.034Q83.442-42.733 83.356-42.392Q83.270-42.050 83.270-41.745Q83.270-41.441 83.354-41.099Q83.438-40.757 83.610-40.454Q83.782-40.151 84.039-39.964Q84.297-39.776 84.629-39.776Q85.012-39.776 85.293-40.050Q85.575-40.323 85.575-40.710Q85.602-40.921 85.813-40.944L85.981-40.944Q86.211-40.905 86.211-40.679Q86.211-40.362 86.075-40.091Q85.938-39.819 85.703-39.622Q85.469-39.425 85.178-39.321Q84.887-39.218 84.567-39.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M87.914-37.296L86.739-37.296L86.739-37.663L87.547-37.663L87.547-44.929L86.739-44.929L86.739-45.296L87.914-45.296L87.914-37.296M89.739-37.890Q89.739-37.929 89.762-37.952Q90.035-38.237 90.178-38.601Q90.321-38.964 90.321-39.351Q90.223-39.296 90.098-39.296Q89.907-39.296 89.770-39.429Q89.633-39.562 89.633-39.761Q89.633-39.952 89.770-40.085Q89.907-40.218 90.098-40.218Q90.578-40.218 90.578-39.343Q90.578-39.054 90.506-38.773Q90.434-38.491 90.291-38.237Q90.149-37.983 89.953-37.776Q89.922-37.745 89.883-37.745Q89.836-37.745 89.787-37.790Q89.739-37.835 89.739-37.890M89.633-42.288Q89.633-42.472 89.770-42.608Q89.907-42.745 90.098-42.745Q90.289-42.745 90.422-42.612Q90.555-42.480 90.555-42.288Q90.555-42.089 90.422-41.956Q90.289-41.823 90.098-41.823Q89.907-41.823 89.770-41.960Q89.633-42.097 89.633-42.288\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M95.767-39.519L94.881-42.183L94.560-42.183Q94.361-42.206 94.310-42.425L94.310-42.511Q94.361-42.722 94.560-42.745L95.720-42.745Q95.916-42.726 95.966-42.511L95.966-42.425Q95.916-42.206 95.720-42.183L95.439-42.183L96.232-39.808L97.021-42.183L96.744-42.183Q96.545-42.206 96.494-42.425L96.494-42.511Q96.545-42.722 96.744-42.745L97.904-42.745Q98.099-42.722 98.150-42.511L98.150-42.425Q98.099-42.206 97.904-42.183L97.584-42.183L96.697-39.519Q96.654-39.405 96.552-39.331Q96.451-39.257 96.326-39.257L96.134-39.257Q96.017-39.257 95.914-39.329Q95.810-39.401 95.767-39.519M98.763-40.409Q98.763-40.855 99.177-41.112Q99.591-41.370 100.132-41.470Q100.674-41.569 101.181-41.577Q101.181-41.792 101.047-41.944Q100.912-42.097 100.705-42.173Q100.498-42.249 100.287-42.249Q99.943-42.249 99.783-42.226L99.783-42.167Q99.783-41.999 99.664-41.884Q99.545-41.769 99.381-41.769Q99.205-41.769 99.090-41.892Q98.974-42.015 98.974-42.183Q98.974-42.589 99.355-42.698Q99.736-42.808 100.295-42.808Q100.564-42.808 100.832-42.730Q101.099-42.651 101.324-42.501Q101.549-42.351 101.685-42.130Q101.822-41.909 101.822-41.632L101.822-39.913Q101.822-39.855 102.349-39.855Q102.545-39.835 102.595-39.624L102.595-39.534Q102.545-39.319 102.349-39.296L102.205-39.296Q101.861-39.296 101.632-39.343Q101.404-39.390 101.259-39.577Q100.799-39.257 100.091-39.257Q99.756-39.257 99.451-39.398Q99.146-39.538 98.955-39.800Q98.763-40.062 98.763-40.409M99.404-40.401Q99.404-40.128 99.646-39.972Q99.888-39.816 100.174-39.816Q100.392-39.816 100.625-39.874Q100.857-39.933 101.019-40.071Q101.181-40.210 101.181-40.433L101.181-41.023Q100.900-41.023 100.484-40.966Q100.068-40.909 99.736-40.771Q99.404-40.632 99.404-40.401M103.052-39.534L103.052-39.624Q103.103-39.831 103.299-39.855L104.404-39.855L104.404-43.624L103.299-43.624Q103.103-43.648 103.052-43.862L103.052-43.952Q103.103-44.159 103.299-44.183L104.795-44.183Q104.986-44.159 105.045-43.952L105.045-39.855L106.146-39.855Q106.345-39.831 106.396-39.624L106.396-39.534Q106.345-39.319 106.146-39.296L103.299-39.296Q103.103-39.319 103.052-39.534M107.033-39.534L107.033-39.624Q107.072-39.831 107.283-39.855L107.591-39.855L107.591-43.624L107.283-43.624Q107.072-43.648 107.033-43.862L107.033-43.952Q107.072-44.159 107.283-44.183L109.232-44.183Q109.631-44.183 109.976-43.982Q110.322-43.780 110.529-43.435Q110.736-43.089 110.736-42.687Q110.736-42.280 110.531-41.937Q110.326-41.593 109.980-41.388Q109.634-41.183 109.232-41.183L108.232-41.183L108.232-39.855L108.545-39.855Q108.756-39.831 108.795-39.624L108.795-39.534Q108.756-39.319 108.545-39.296L107.283-39.296Q107.072-39.319 107.033-39.534M108.232-43.624L108.232-41.745L109.072-41.745Q109.334-41.745 109.570-41.868Q109.806-41.991 109.951-42.206Q110.095-42.421 110.095-42.687Q110.095-42.956 109.951-43.167Q109.806-43.378 109.570-43.501Q109.334-43.624 109.072-43.624\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M119.433-40.273L114.120-40.273Q114.042-40.280 113.993-40.329Q113.945-40.378 113.945-40.456Q113.945-40.526 113.992-40.577Q114.038-40.628 114.120-40.640L119.433-40.640Q119.507-40.628 119.554-40.577Q119.601-40.526 119.601-40.456Q119.601-40.378 119.552-40.329Q119.503-40.280 119.433-40.273M119.433-41.960L114.120-41.960Q114.042-41.968 113.993-42.017Q113.945-42.066 113.945-42.144Q113.945-42.214 113.992-42.265Q114.038-42.316 114.120-42.327L119.433-42.327Q119.507-42.316 119.554-42.265Q119.601-42.214 119.601-42.144Q119.601-42.066 119.552-42.017Q119.503-41.968 119.433-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M122.629-39.534L122.629-39.624Q122.668-39.831 122.879-39.855L123.187-39.855L123.187-43.624L122.879-43.624Q122.668-43.648 122.629-43.862L122.629-43.952Q122.668-44.159 122.879-44.183L124.828-44.183Q125.226-44.183 125.572-43.982Q125.918-43.780 126.125-43.435Q126.332-43.089 126.332-42.687Q126.332-42.280 126.127-41.937Q125.922-41.593 125.576-41.388Q125.230-41.183 124.828-41.183L123.828-41.183L123.828-39.855L124.140-39.855Q124.351-39.831 124.390-39.624L124.390-39.534Q124.351-39.319 124.140-39.296L122.879-39.296Q122.668-39.319 122.629-39.534M123.828-43.624L123.828-41.745L124.668-41.745Q124.929-41.745 125.166-41.868Q125.402-41.991 125.547-42.206Q125.691-42.421 125.691-42.687Q125.691-42.956 125.547-43.167Q125.402-43.378 125.166-43.501Q124.929-43.624 124.668-43.624L123.828-43.624M128.957-39.218Q128.507-39.218 128.142-39.442Q127.777-39.667 127.523-40.050Q127.269-40.433 127.144-40.876Q127.019-41.319 127.019-41.745Q127.019-42.171 127.144-42.610Q127.269-43.050 127.523-43.433Q127.777-43.816 128.136-44.040Q128.496-44.265 128.957-44.265Q129.234-44.265 129.492-44.173Q129.750-44.081 129.965-43.913L130.097-44.151Q130.125-44.202 130.179-44.233Q130.234-44.265 130.293-44.265L130.371-44.265Q130.465-44.253 130.527-44.194Q130.590-44.136 130.601-44.030L130.601-42.702Q130.590-42.601 130.527-42.538Q130.465-42.476 130.371-42.464L130.203-42.464Q130.101-42.476 130.039-42.542Q129.976-42.608 129.965-42.702Q129.925-42.968 129.802-43.192Q129.679-43.417 129.476-43.560Q129.273-43.702 129.011-43.702Q128.679-43.702 128.427-43.519Q128.175-43.335 128.004-43.034Q127.832-42.733 127.746-42.392Q127.660-42.050 127.660-41.745Q127.660-41.441 127.744-41.099Q127.828-40.757 128-40.454Q128.172-40.151 128.429-39.964Q128.687-39.776 129.019-39.776Q129.402-39.776 129.683-40.050Q129.965-40.323 129.965-40.710Q129.992-40.921 130.203-40.944L130.371-40.944Q130.601-40.905 130.601-40.679Q130.601-40.362 130.465-40.091Q130.328-39.819 130.093-39.622Q129.859-39.425 129.568-39.321Q129.277-39.218 128.957-39.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M134.066-41.112L131.593-41.112Q131.515-41.124 131.466-41.173Q131.418-41.222 131.418-41.296Q131.418-41.370 131.466-41.419Q131.515-41.468 131.593-41.480L134.066-41.480L134.066-43.960Q134.093-44.128 134.250-44.128Q134.324-44.128 134.373-44.079Q134.422-44.030 134.433-43.960L134.433-41.480L136.906-41.480Q137.074-41.448 137.074-41.296Q137.074-41.144 136.906-41.112L134.433-41.112L134.433-38.632Q134.422-38.562 134.373-38.513Q134.324-38.464 134.250-38.464Q134.093-38.464 134.066-38.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M141.150-39.296L138.357-39.296L138.357-39.593Q139.419-39.593 139.419-39.855L139.419-44.023Q138.990-43.808 138.310-43.808L138.310-44.105Q139.329-44.105 139.845-44.616L139.990-44.616Q140.064-44.597 140.083-44.519L140.083-39.855Q140.083-39.593 141.150-39.593\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-27.346h207.705\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M14.584-39.296L11.812-39.296L11.812-39.576Q12.533-39.576 12.533-39.785L12.533-43.586Q12.533-43.797 11.812-43.797L11.812-44.078L14.584-44.078Q15.069-44.078 15.505-43.883Q15.941-43.688 16.264-43.346Q16.587-43.004 16.765-42.564Q16.942-42.123 16.942-41.641Q16.942-41.155 16.758-40.732Q16.573-40.308 16.250-39.986Q15.927-39.665 15.495-39.481Q15.063-39.296 14.584-39.296M13.196-43.586L13.196-39.785Q13.196-39.645 13.285-39.610Q13.374-39.576 13.562-39.576L14.386-39.576Q15.011-39.576 15.415-39.838Q15.818-40.099 16.006-40.566Q16.194-41.032 16.194-41.641Q16.194-42.119 16.102-42.512Q16.009-42.905 15.760-43.203Q15.521-43.490 15.157-43.644Q14.793-43.797 14.386-43.797L13.562-43.797Q13.374-43.797 13.285-43.763Q13.196-43.729 13.196-43.586M17.711-40.831Q17.711-41.152 17.836-41.441Q17.961-41.730 18.187-41.953Q18.412-42.177 18.708-42.297Q19.003-42.417 19.321-42.417Q19.649-42.417 19.911-42.317Q20.172-42.218 20.348-42.036Q20.524-41.853 20.618-41.595Q20.712-41.337 20.712-41.005Q20.712-40.913 20.630-40.892L18.375-40.892L18.375-40.831Q18.375-40.243 18.658-39.860Q18.942-39.477 19.509-39.477Q19.831-39.477 20.099-39.670Q20.367-39.863 20.456-40.178Q20.463-40.219 20.538-40.233L20.630-40.233Q20.712-40.209 20.712-40.137Q20.712-40.130 20.706-40.103Q20.593-39.706 20.222-39.467Q19.851-39.228 19.427-39.228Q18.990-39.228 18.590-39.436Q18.190-39.645 17.951-40.012Q17.711-40.379 17.711-40.831M18.381-41.101L20.196-41.101Q20.196-41.378 20.099-41.630Q20.002-41.883 19.803-42.039Q19.605-42.194 19.321-42.194Q19.044-42.194 18.831-42.036Q18.617-41.877 18.499-41.622Q18.381-41.367 18.381-41.101M21.300-40.807Q21.300-41.135 21.435-41.436Q21.570-41.736 21.806-41.957Q22.042-42.177 22.346-42.297Q22.650-42.417 22.975-42.417Q23.481-42.417 23.830-42.314Q24.178-42.212 24.178-41.836Q24.178-41.689 24.081-41.588Q23.983-41.487 23.836-41.487Q23.683-41.487 23.584-41.586Q23.484-41.685 23.484-41.836Q23.484-42.024 23.625-42.116Q23.423-42.167 22.982-42.167Q22.627-42.167 22.398-41.971Q22.169-41.774 22.068-41.465Q21.967-41.155 21.967-40.807Q21.967-40.458 22.093-40.152Q22.220-39.846 22.474-39.662Q22.729-39.477 23.085-39.477Q23.307-39.477 23.491-39.561Q23.676-39.645 23.811-39.800Q23.946-39.956 24.004-40.164Q24.018-40.219 24.072-40.219L24.185-40.219Q24.216-40.219 24.238-40.195Q24.260-40.171 24.260-40.137L24.260-40.116Q24.175-39.829 23.987-39.631Q23.799-39.433 23.534-39.330Q23.269-39.228 22.975-39.228Q22.544-39.228 22.157-39.434Q21.769-39.641 21.534-40.004Q21.300-40.366 21.300-40.807M24.807-40.779Q24.807-41.121 24.942-41.420Q25.077-41.719 25.316-41.943Q25.556-42.167 25.874-42.292Q26.191-42.417 26.523-42.417Q26.967-42.417 27.367-42.201Q27.767-41.986 28.001-41.608Q28.235-41.231 28.235-40.779Q28.235-40.438 28.094-40.154Q27.952-39.870 27.707-39.663Q27.463-39.457 27.154-39.342Q26.844-39.228 26.523-39.228Q26.092-39.228 25.691-39.429Q25.289-39.631 25.048-39.983Q24.807-40.335 24.807-40.779M26.523-39.477Q27.125-39.477 27.348-39.855Q27.572-40.233 27.572-40.865Q27.572-41.477 27.338-41.836Q27.104-42.194 26.523-42.194Q25.470-42.194 25.470-40.865Q25.470-40.233 25.696-39.855Q25.921-39.477 26.523-39.477\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M29.066-40.807Q29.066-41.145 29.207-41.436Q29.347-41.726 29.591-41.940Q29.835-42.153 30.140-42.268Q30.444-42.382 30.769-42.382Q31.039-42.382 31.302-42.283Q31.565-42.184 31.756-42.006L31.756-43.404Q31.756-43.674 31.649-43.736Q31.541-43.797 31.230-43.797L31.230-44.078L32.307-44.153L32.307-39.969Q32.307-39.781 32.361-39.698Q32.416-39.614 32.517-39.595Q32.618-39.576 32.833-39.576L32.833-39.296L31.726-39.228L31.726-39.645Q31.309-39.228 30.683-39.228Q30.252-39.228 29.880-39.440Q29.507-39.651 29.287-40.012Q29.066-40.373 29.066-40.807M30.741-39.450Q30.950-39.450 31.136-39.522Q31.322-39.593 31.476-39.730Q31.630-39.867 31.726-40.045L31.726-41.654Q31.640-41.801 31.495-41.921Q31.350-42.041 31.180-42.100Q31.011-42.160 30.830-42.160Q30.270-42.160 30.001-41.771Q29.733-41.381 29.733-40.800Q29.733-40.229 29.967-39.839Q30.201-39.450 30.741-39.450M33.441-40.831Q33.441-41.152 33.566-41.441Q33.691-41.730 33.917-41.953Q34.142-42.177 34.438-42.297Q34.733-42.417 35.051-42.417Q35.379-42.417 35.641-42.317Q35.902-42.218 36.078-42.036Q36.254-41.853 36.348-41.595Q36.442-41.337 36.442-41.005Q36.442-40.913 36.360-40.892L34.105-40.892L34.105-40.831Q34.105-40.243 34.388-39.860Q34.672-39.477 35.239-39.477Q35.561-39.477 35.829-39.670Q36.097-39.863 36.186-40.178Q36.193-40.219 36.268-40.233L36.360-40.233Q36.442-40.209 36.442-40.137Q36.442-40.130 36.436-40.103Q36.323-39.706 35.952-39.467Q35.581-39.228 35.157-39.228Q34.720-39.228 34.320-39.436Q33.920-39.645 33.681-40.012Q33.441-40.379 33.441-40.831M34.111-41.101L35.926-41.101Q35.926-41.378 35.829-41.630Q35.731-41.883 35.533-42.039Q35.335-42.194 35.051-42.194Q34.774-42.194 34.561-42.036Q34.347-41.877 34.229-41.622Q34.111-41.367 34.111-41.101\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 25.907)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-3.16h207.705\"\u002F>\u003Cg transform=\"translate(-37.008 50.761)\">\u003Cpath d=\"M16.201-39.296L11.798-39.296L11.798-39.576Q12.520-39.576 12.520-39.785L12.520-43.586Q12.520-43.797 11.798-43.797L11.798-44.078L16.088-44.078L16.296-42.441L16.033-42.441Q15.975-42.912 15.873-43.177Q15.770-43.442 15.586-43.575Q15.401-43.709 15.129-43.753Q14.857-43.797 14.358-43.797L13.576-43.797Q13.388-43.797 13.299-43.763Q13.210-43.729 13.210-43.586L13.210-41.921L13.784-41.921Q14.174-41.921 14.357-41.972Q14.540-42.024 14.622-42.196Q14.704-42.369 14.704-42.741L14.967-42.741L14.967-40.820L14.704-40.820Q14.704-41.193 14.622-41.366Q14.540-41.538 14.357-41.589Q14.174-41.641 13.784-41.641L13.210-41.641L13.210-39.785Q13.210-39.645 13.299-39.610Q13.388-39.576 13.576-39.576L14.423-39.576Q14.953-39.576 15.263-39.645Q15.572-39.713 15.760-39.880Q15.948-40.048 16.055-40.350Q16.163-40.653 16.249-41.166L16.515-41.166L16.201-39.296M18.286-39.296L16.963-39.296L16.963-39.576Q17.523-39.576 17.903-39.976L18.617-40.773L17.705-41.822Q17.568-41.969 17.419-42.001Q17.271-42.034 17.004-42.034L17.004-42.314L18.504-42.314L18.504-42.034Q18.313-42.034 18.313-41.900Q18.313-41.870 18.344-41.822L18.939-41.138L19.379-41.634Q19.492-41.764 19.492-41.880Q19.492-41.942 19.455-41.988Q19.417-42.034 19.359-42.034L19.359-42.314L20.675-42.314L20.675-42.034Q20.114-42.034 19.735-41.634L19.113-40.933L20.107-39.785Q20.207-39.686 20.307-39.641Q20.408-39.597 20.519-39.587Q20.630-39.576 20.808-39.576L20.808-39.296L19.315-39.296L19.315-39.576Q19.379-39.576 19.439-39.610Q19.499-39.645 19.499-39.710Q19.499-39.757 19.468-39.785L18.792-40.571L18.258-39.976Q18.146-39.846 18.146-39.730Q18.146-39.665 18.187-39.621Q18.228-39.576 18.286-39.576L18.286-39.296M21.263-40.831Q21.263-41.152 21.388-41.441Q21.512-41.730 21.738-41.953Q21.963-42.177 22.259-42.297Q22.555-42.417 22.873-42.417Q23.201-42.417 23.462-42.317Q23.724-42.218 23.900-42.036Q24.076-41.853 24.170-41.595Q24.264-41.337 24.264-41.005Q24.264-40.913 24.182-40.892L21.926-40.892L21.926-40.831Q21.926-40.243 22.210-39.860Q22.493-39.477 23.061-39.477Q23.382-39.477 23.650-39.670Q23.919-39.863 24.007-40.178Q24.014-40.219 24.089-40.233L24.182-40.233Q24.264-40.209 24.264-40.137Q24.264-40.130 24.257-40.103Q24.144-39.706 23.773-39.467Q23.402-39.228 22.979-39.228Q22.541-39.228 22.141-39.436Q21.741-39.645 21.502-40.012Q21.263-40.379 21.263-40.831M21.933-41.101L23.748-41.101Q23.748-41.378 23.650-41.630Q23.553-41.883 23.355-42.039Q23.156-42.194 22.873-42.194Q22.596-42.194 22.382-42.036Q22.169-41.877 22.051-41.622Q21.933-41.367 21.933-41.101M24.852-40.807Q24.852-41.135 24.987-41.436Q25.122-41.736 25.357-41.957Q25.593-42.177 25.898-42.297Q26.202-42.417 26.526-42.417Q27.032-42.417 27.381-42.314Q27.730-42.212 27.730-41.836Q27.730-41.689 27.632-41.588Q27.535-41.487 27.388-41.487Q27.234-41.487 27.135-41.586Q27.036-41.685 27.036-41.836Q27.036-42.024 27.176-42.116Q26.974-42.167 26.533-42.167Q26.178-42.167 25.949-41.971Q25.720-41.774 25.619-41.465Q25.518-41.155 25.518-40.807Q25.518-40.458 25.645-40.152Q25.771-39.846 26.026-39.662Q26.280-39.477 26.636-39.477Q26.858-39.477 27.043-39.561Q27.227-39.645 27.362-39.800Q27.497-39.956 27.555-40.164Q27.569-40.219 27.624-40.219L27.736-40.219Q27.767-40.219 27.789-40.195Q27.812-40.171 27.812-40.137L27.812-40.116Q27.726-39.829 27.538-39.631Q27.350-39.433 27.085-39.330Q26.820-39.228 26.526-39.228Q26.096-39.228 25.708-39.434Q25.320-39.641 25.086-40.004Q24.852-40.366 24.852-40.807M28.974-40.130L28.974-41.634Q28.974-41.904 28.866-41.965Q28.758-42.027 28.447-42.027L28.447-42.307L29.555-42.382L29.555-40.150L29.555-40.130Q29.555-39.850 29.606-39.706Q29.657-39.563 29.799-39.506Q29.941-39.450 30.228-39.450Q30.481-39.450 30.686-39.590Q30.891-39.730 31.007-39.956Q31.124-40.181 31.124-40.431L31.124-41.634Q31.124-41.904 31.016-41.965Q30.908-42.027 30.597-42.027L30.597-42.307L31.705-42.382L31.705-39.969Q31.705-39.778 31.758-39.696Q31.811-39.614 31.911-39.595Q32.012-39.576 32.228-39.576L32.228-39.296L31.151-39.228L31.151-39.792Q31.042-39.610 30.896-39.487Q30.751-39.364 30.565-39.296Q30.378-39.228 30.177-39.228Q28.974-39.228 28.974-40.130M33.342-40.137L33.342-42.034L32.703-42.034L32.703-42.256Q33.021-42.256 33.238-42.466Q33.455-42.676 33.555-42.986Q33.656-43.295 33.656-43.603L33.923-43.603L33.923-42.314L35-42.314L35-42.034L33.923-42.034L33.923-40.150Q33.923-39.874 34.027-39.675Q34.131-39.477 34.391-39.477Q34.548-39.477 34.654-39.581Q34.760-39.686 34.810-39.839Q34.859-39.993 34.859-40.150L34.859-40.564L35.126-40.564L35.126-40.137Q35.126-39.911 35.027-39.701Q34.928-39.491 34.743-39.359Q34.559-39.228 34.330-39.228Q33.892-39.228 33.617-39.465Q33.342-39.703 33.342-40.137M35.895-40.831Q35.895-41.152 36.020-41.441Q36.145-41.730 36.370-41.953Q36.596-42.177 36.891-42.297Q37.187-42.417 37.505-42.417Q37.833-42.417 38.095-42.317Q38.356-42.218 38.532-42.036Q38.708-41.853 38.802-41.595Q38.896-41.337 38.896-41.005Q38.896-40.913 38.814-40.892L36.558-40.892L36.558-40.831Q36.558-40.243 36.842-39.860Q37.126-39.477 37.693-39.477Q38.014-39.477 38.283-39.670Q38.551-39.863 38.640-40.178Q38.647-40.219 38.722-40.233L38.814-40.233Q38.896-40.209 38.896-40.137Q38.896-40.130 38.889-40.103Q38.776-39.706 38.406-39.467Q38.035-39.228 37.611-39.228Q37.173-39.228 36.773-39.436Q36.374-39.645 36.134-40.012Q35.895-40.379 35.895-40.831M36.565-41.101L38.380-41.101Q38.380-41.378 38.283-41.630Q38.185-41.883 37.987-42.039Q37.789-42.194 37.505-42.194Q37.228-42.194 37.014-42.036Q36.801-41.877 36.683-41.622Q36.565-41.367 36.565-41.101\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.092)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 21.024h207.705\"\u002F>\u003Cg transform=\"translate(-37.856 74.266)\">\u003Cpath d=\"M13.576-39.296L11.839-39.296L11.839-39.576Q12.561-39.576 12.561-39.976L12.561-43.586Q12.561-43.797 11.839-43.797L11.839-44.078L13.196-44.078Q13.292-44.078 13.343-43.979L15.018-40.004L16.690-43.979Q16.737-44.078 16.836-44.078L18.187-44.078L18.187-43.797Q17.465-43.797 17.465-43.586L17.465-39.785Q17.465-39.576 18.187-39.576L18.187-39.296L16.129-39.296L16.129-39.576Q16.850-39.576 16.850-39.785L16.850-43.797L14.998-39.395Q14.950-39.296 14.840-39.296Q14.728-39.296 14.680-39.395L12.855-43.726L12.855-39.976Q12.855-39.576 13.576-39.576L13.576-39.296M18.880-40.831Q18.880-41.152 19.005-41.441Q19.130-41.730 19.356-41.953Q19.581-42.177 19.877-42.297Q20.172-42.417 20.490-42.417Q20.818-42.417 21.080-42.317Q21.341-42.218 21.517-42.036Q21.693-41.853 21.787-41.595Q21.881-41.337 21.881-41.005Q21.881-40.913 21.799-40.892L19.544-40.892L19.544-40.831Q19.544-40.243 19.827-39.860Q20.111-39.477 20.678-39.477Q21-39.477 21.268-39.670Q21.536-39.863 21.625-40.178Q21.632-40.219 21.707-40.233L21.799-40.233Q21.881-40.209 21.881-40.137Q21.881-40.130 21.875-40.103Q21.762-39.706 21.391-39.467Q21.020-39.228 20.596-39.228Q20.159-39.228 19.759-39.436Q19.359-39.645 19.120-40.012Q18.880-40.379 18.880-40.831M19.550-41.101L21.365-41.101Q21.365-41.378 21.268-41.630Q21.170-41.883 20.972-42.039Q20.774-42.194 20.490-42.194Q20.213-42.194 20-42.036Q19.786-41.877 19.668-41.622Q19.550-41.367 19.550-41.101M24.151-39.296L22.517-39.296L22.517-39.576Q22.746-39.576 22.895-39.610Q23.044-39.645 23.044-39.785L23.044-41.634Q23.044-41.904 22.936-41.965Q22.828-42.027 22.517-42.027L22.517-42.307L23.577-42.382L23.577-41.733Q23.748-42.041 24.052-42.212Q24.356-42.382 24.701-42.382Q25.101-42.382 25.378-42.242Q25.655-42.102 25.740-41.754Q25.908-42.047 26.207-42.215Q26.506-42.382 26.851-42.382Q27.357-42.382 27.641-42.159Q27.924-41.935 27.924-41.439L27.924-39.785Q27.924-39.648 28.073-39.612Q28.222-39.576 28.447-39.576L28.447-39.296L26.817-39.296L26.817-39.576Q27.043-39.576 27.193-39.612Q27.343-39.648 27.343-39.785L27.343-41.425Q27.343-41.760 27.224-41.960Q27.104-42.160 26.790-42.160Q26.520-42.160 26.285-42.024Q26.051-41.887 25.913-41.653Q25.774-41.419 25.774-41.145L25.774-39.785Q25.774-39.648 25.923-39.612Q26.072-39.576 26.297-39.576L26.297-39.296L24.667-39.296L24.667-39.576Q24.896-39.576 25.045-39.610Q25.193-39.645 25.193-39.785L25.193-41.425Q25.193-41.760 25.074-41.960Q24.954-42.160 24.640-42.160Q24.370-42.160 24.136-42.024Q23.901-41.887 23.763-41.653Q23.625-41.419 23.625-41.145L23.625-39.785Q23.625-39.648 23.775-39.612Q23.925-39.576 24.151-39.576L24.151-39.296M28.994-40.779Q28.994-41.121 29.129-41.420Q29.264-41.719 29.503-41.943Q29.743-42.167 30.061-42.292Q30.378-42.417 30.710-42.417Q31.154-42.417 31.554-42.201Q31.954-41.986 32.188-41.608Q32.422-41.231 32.422-40.779Q32.422-40.438 32.281-40.154Q32.139-39.870 31.894-39.663Q31.650-39.457 31.341-39.342Q31.031-39.228 30.710-39.228Q30.279-39.228 29.878-39.429Q29.476-39.631 29.235-39.983Q28.994-40.335 28.994-40.779M30.710-39.477Q31.312-39.477 31.535-39.855Q31.759-40.233 31.759-40.865Q31.759-41.477 31.525-41.836Q31.291-42.194 30.710-42.194Q29.657-42.194 29.657-40.865Q29.657-40.233 29.883-39.855Q30.108-39.477 30.710-39.477M34.767-39.296L33.031-39.296L33.031-39.576Q33.260-39.576 33.409-39.610Q33.557-39.645 33.557-39.785L33.557-41.634Q33.557-41.904 33.450-41.965Q33.342-42.027 33.031-42.027L33.031-42.307L34.060-42.382L34.060-41.675Q34.190-41.983 34.432-42.182Q34.675-42.382 34.993-42.382Q35.211-42.382 35.382-42.258Q35.553-42.133 35.553-41.921Q35.553-41.784 35.454-41.685Q35.355-41.586 35.222-41.586Q35.085-41.586 34.986-41.685Q34.887-41.784 34.887-41.921Q34.887-42.061 34.986-42.160Q34.695-42.160 34.495-41.964Q34.295-41.767 34.203-41.473Q34.111-41.179 34.111-40.899L34.111-39.785Q34.111-39.576 34.767-39.576L34.767-39.296M36.473-38.161Q36.603-38.093 36.739-38.093Q36.910-38.093 37.061-38.182Q37.211-38.271 37.322-38.416Q37.433-38.561 37.512-38.729L37.775-39.296L36.606-41.822Q36.531-41.969 36.401-42.001Q36.271-42.034 36.039-42.034L36.039-42.314L37.560-42.314L37.560-42.034Q37.211-42.034 37.211-41.887Q37.214-41.866 37.216-41.849Q37.218-41.832 37.218-41.822L38.076-39.963L38.848-41.634Q38.882-41.702 38.882-41.781Q38.882-41.894 38.799-41.964Q38.715-42.034 38.602-42.034L38.602-42.314L39.798-42.314L39.798-42.034Q39.580-42.034 39.407-41.930Q39.234-41.825 39.142-41.634L37.806-38.729Q37.635-38.359 37.365-38.113Q37.095-37.867 36.739-37.867Q36.469-37.867 36.251-38.033Q36.032-38.199 36.032-38.462Q36.032-38.599 36.124-38.688Q36.216-38.776 36.356-38.776Q36.493-38.776 36.582-38.688Q36.671-38.599 36.671-38.462Q36.671-38.359 36.618-38.281Q36.565-38.202 36.473-38.161\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.277)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 45.209h207.705\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M13.812-39.255L12.260-43.586Q12.198-43.729 12.036-43.763Q11.874-43.797 11.621-43.797L11.621-44.078L13.548-44.078L13.548-43.797Q12.967-43.797 12.967-43.623Q12.967-43.603 12.974-43.586L14.198-40.150L15.305-43.237L15.179-43.586Q15.121-43.729 14.955-43.763Q14.789-43.797 14.540-43.797L14.540-44.078L16.467-44.078L16.467-43.797Q15.886-43.797 15.886-43.623L15.886-43.586L17.117-40.150L18.272-43.398Q18.286-43.439 18.286-43.463Q18.286-43.637 18.093-43.717Q17.899-43.797 17.691-43.797L17.691-44.078L19.267-44.078L19.267-43.797Q19.017-43.797 18.826-43.703Q18.634-43.609 18.559-43.398L17.076-39.255Q17.042-39.156 16.942-39.156L16.864-39.156Q16.765-39.156 16.724-39.255L15.445-42.844L14.164-39.255Q14.147-39.211 14.109-39.183Q14.071-39.156 14.023-39.156L13.945-39.156Q13.853-39.156 13.812-39.255\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M20.893-39.296L19.157-39.296L19.157-39.576Q19.386-39.576 19.535-39.610Q19.683-39.645 19.683-39.785L19.683-41.634Q19.683-41.904 19.576-41.965Q19.468-42.027 19.157-42.027L19.157-42.307L20.186-42.382L20.186-41.675Q20.316-41.983 20.558-42.182Q20.801-42.382 21.119-42.382Q21.338-42.382 21.509-42.258Q21.680-42.133 21.680-41.921Q21.680-41.784 21.580-41.685Q21.481-41.586 21.348-41.586Q21.211-41.586 21.112-41.685Q21.013-41.784 21.013-41.921Q21.013-42.061 21.112-42.160Q20.822-42.160 20.622-41.964Q20.422-41.767 20.329-41.473Q20.237-41.179 20.237-40.899L20.237-39.785Q20.237-39.576 20.893-39.576L20.893-39.296M23.881-39.296L22.329-39.296L22.329-39.576Q22.555-39.576 22.703-39.610Q22.852-39.645 22.852-39.785L22.852-41.634Q22.852-41.822 22.804-41.906Q22.756-41.989 22.659-42.008Q22.561-42.027 22.350-42.027L22.350-42.307L23.406-42.382L23.406-39.785Q23.406-39.645 23.537-39.610Q23.669-39.576 23.881-39.576L23.881-39.296M22.609-43.603Q22.609-43.774 22.732-43.893Q22.855-44.013 23.026-44.013Q23.194-44.013 23.317-43.893Q23.440-43.774 23.440-43.603Q23.440-43.428 23.317-43.305Q23.194-43.182 23.026-43.182Q22.855-43.182 22.732-43.305Q22.609-43.428 22.609-43.603M25.053-40.137L25.053-42.034L24.414-42.034L24.414-42.256Q24.732-42.256 24.949-42.466Q25.166-42.676 25.267-42.986Q25.368-43.295 25.368-43.603L25.634-43.603L25.634-42.314L26.711-42.314L26.711-42.034L25.634-42.034L25.634-40.150Q25.634-39.874 25.738-39.675Q25.843-39.477 26.102-39.477Q26.260-39.477 26.366-39.581Q26.472-39.686 26.521-39.839Q26.571-39.993 26.571-40.150L26.571-40.564L26.837-40.564L26.837-40.137Q26.837-39.911 26.738-39.701Q26.639-39.491 26.454-39.359Q26.270-39.228 26.041-39.228Q25.603-39.228 25.328-39.465Q25.053-39.703 25.053-40.137M27.606-40.831Q27.606-41.152 27.731-41.441Q27.856-41.730 28.081-41.953Q28.307-42.177 28.603-42.297Q28.898-42.417 29.216-42.417Q29.544-42.417 29.806-42.317Q30.067-42.218 30.243-42.036Q30.419-41.853 30.513-41.595Q30.607-41.337 30.607-41.005Q30.607-40.913 30.525-40.892L28.269-40.892L28.269-40.831Q28.269-40.243 28.553-39.860Q28.837-39.477 29.404-39.477Q29.725-39.477 29.994-39.670Q30.262-39.863 30.351-40.178Q30.358-40.219 30.433-40.233L30.525-40.233Q30.607-40.209 30.607-40.137Q30.607-40.130 30.600-40.103Q30.488-39.706 30.117-39.467Q29.746-39.228 29.322-39.228Q28.885-39.228 28.485-39.436Q28.085-39.645 27.846-40.012Q27.606-40.379 27.606-40.831M28.276-41.101L30.091-41.101Q30.091-41.378 29.994-41.630Q29.896-41.883 29.698-42.039Q29.500-42.194 29.216-42.194Q28.939-42.194 28.726-42.036Q28.512-41.877 28.394-41.622Q28.276-41.367 28.276-41.101M33.079-40.550L31.021-40.550L31.021-41.053L33.079-41.053L33.079-40.550M34.688-39.296L34.422-39.296L34.422-43.404Q34.422-43.674 34.314-43.736Q34.206-43.797 33.895-43.797L33.895-44.078L34.975-44.153L34.975-41.983Q35.184-42.174 35.469-42.278Q35.755-42.382 36.052-42.382Q36.370-42.382 36.667-42.261Q36.965-42.140 37.187-41.924Q37.409-41.709 37.536-41.424Q37.662-41.138 37.662-40.807Q37.662-40.362 37.423-39.998Q37.183-39.634 36.790-39.431Q36.397-39.228 35.953-39.228Q35.758-39.228 35.569-39.284Q35.379-39.340 35.218-39.445Q35.058-39.549 34.917-39.710L34.688-39.296M35.003-41.641L35.003-40.024Q35.140-39.764 35.381-39.607Q35.621-39.450 35.898-39.450Q36.192-39.450 36.404-39.557Q36.616-39.665 36.749-39.857Q36.883-40.048 36.941-40.287Q36.999-40.526 36.999-40.807Q36.999-41.166 36.905-41.470Q36.811-41.774 36.584-41.967Q36.356-42.160 35.991-42.160Q35.690-42.160 35.423-42.024Q35.157-41.887 35.003-41.641M38.356-40.024Q38.356-40.356 38.580-40.583Q38.804-40.810 39.147-40.938Q39.491-41.067 39.863-41.119Q40.236-41.172 40.540-41.172L40.540-41.425Q40.540-41.630 40.432-41.810Q40.325-41.989 40.143-42.092Q39.962-42.194 39.754-42.194Q39.347-42.194 39.111-42.102Q39.200-42.065 39.246-41.981Q39.292-41.897 39.292-41.795Q39.292-41.699 39.246-41.620Q39.200-41.542 39.120-41.497Q39.039-41.453 38.951-41.453Q38.800-41.453 38.699-41.550Q38.599-41.648 38.599-41.795Q38.599-42.417 39.754-42.417Q39.966-42.417 40.215-42.353Q40.465-42.290 40.666-42.171Q40.868-42.051 40.995-41.866Q41.121-41.682 41.121-41.439L41.121-39.863Q41.121-39.747 41.183-39.651Q41.244-39.556 41.357-39.556Q41.466-39.556 41.531-39.650Q41.596-39.744 41.596-39.863L41.596-40.311L41.863-40.311L41.863-39.863Q41.863-39.593 41.635-39.428Q41.408-39.262 41.128-39.262Q40.919-39.262 40.783-39.416Q40.646-39.569 40.622-39.785Q40.475-39.518 40.193-39.373Q39.911-39.228 39.586-39.228Q39.309-39.228 39.026-39.303Q38.742-39.378 38.549-39.557Q38.356-39.737 38.356-40.024M38.971-40.024Q38.971-39.850 39.072-39.720Q39.173-39.590 39.328-39.520Q39.484-39.450 39.648-39.450Q39.867-39.450 40.075-39.547Q40.284-39.645 40.412-39.826Q40.540-40.007 40.540-40.233L40.540-40.961Q40.215-40.961 39.850-40.870Q39.484-40.779 39.227-40.567Q38.971-40.356 38.971-40.024M42.280-40.807Q42.280-41.135 42.415-41.436Q42.550-41.736 42.786-41.957Q43.021-42.177 43.326-42.297Q43.630-42.417 43.954-42.417Q44.460-42.417 44.809-42.314Q45.158-42.212 45.158-41.836Q45.158-41.689 45.060-41.588Q44.963-41.487 44.816-41.487Q44.662-41.487 44.563-41.586Q44.464-41.685 44.464-41.836Q44.464-42.024 44.604-42.116Q44.402-42.167 43.961-42.167Q43.606-42.167 43.377-41.971Q43.148-41.774 43.047-41.465Q42.946-41.155 42.946-40.807Q42.946-40.458 43.073-40.152Q43.199-39.846 43.454-39.662Q43.708-39.477 44.064-39.477Q44.286-39.477 44.471-39.561Q44.655-39.645 44.790-39.800Q44.925-39.956 44.983-40.164Q44.997-40.219 45.052-40.219L45.164-40.219Q45.195-40.219 45.217-40.195Q45.240-40.171 45.240-40.137L45.240-40.116Q45.154-39.829 44.966-39.631Q44.778-39.433 44.513-39.330Q44.248-39.228 43.954-39.228Q43.524-39.228 43.136-39.434Q42.748-39.641 42.514-40.004Q42.280-40.366 42.280-40.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M47.247-39.296L45.664-39.296L45.664-39.576Q45.893-39.576 46.042-39.610Q46.190-39.645 46.190-39.785L46.190-43.404Q46.190-43.674 46.083-43.736Q45.975-43.797 45.664-43.797L45.664-44.078L46.744-44.153L46.744-40.865L47.729-41.634Q47.934-41.771 47.934-41.921Q47.934-41.965 47.893-42Q47.852-42.034 47.807-42.034L47.807-42.314L49.171-42.314L49.171-42.034Q48.682-42.034 48.163-41.634L47.606-41.200L48.583-39.976Q48.785-39.730 48.918-39.653Q49.051-39.576 49.338-39.576L49.338-39.296L47.906-39.296L47.906-39.576Q48.094-39.576 48.094-39.689Q48.094-39.785 47.940-39.976L47.206-40.885L46.724-40.506L46.724-39.785Q46.724-39.648 46.872-39.612Q47.021-39.576 47.247-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.461)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 69.393h207.705\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M13.945-39.296L11.812-39.296L11.812-39.576Q12.533-39.576 12.533-39.785L12.533-43.586Q12.533-43.797 11.812-43.797L11.812-44.078L14.478-44.078Q14.888-44.078 15.309-43.924Q15.729-43.770 16.013-43.466Q16.296-43.162 16.296-42.748Q16.296-42.430 16.129-42.184Q15.961-41.938 15.685-41.772Q15.408-41.607 15.086-41.523Q14.765-41.439 14.478-41.439L13.224-41.439L13.224-39.785Q13.224-39.576 13.945-39.576L13.945-39.296M13.196-43.586L13.196-41.689L14.283-41.689Q14.892-41.689 15.206-41.926Q15.521-42.164 15.521-42.748Q15.521-43.141 15.375-43.375Q15.230-43.609 14.958-43.703Q14.687-43.797 14.283-43.797L13.562-43.797Q13.374-43.797 13.285-43.763Q13.196-43.729 13.196-43.586M17.277-41.689Q17.277-42.215 17.494-42.683Q17.711-43.151 18.094-43.497Q18.477-43.842 18.961-44.030Q19.444-44.218 19.974-44.218Q20.377-44.218 20.742-44.061Q21.106-43.903 21.389-43.609L21.813-44.191Q21.847-44.218 21.871-44.218L21.919-44.218Q21.950-44.218 21.974-44.194Q21.998-44.170 21.998-44.139L21.998-42.276Q21.998-42.253 21.972-42.227Q21.946-42.201 21.919-42.201L21.793-42.201Q21.731-42.201 21.717-42.276Q21.687-42.591 21.552-42.895Q21.417-43.199 21.201-43.433Q20.986-43.668 20.697-43.803Q20.408-43.938 20.080-43.938Q19.438-43.938 18.980-43.644Q18.522-43.350 18.289-42.837Q18.057-42.324 18.057-41.689Q18.057-41.217 18.187-40.808Q18.316-40.400 18.576-40.087Q18.836-39.775 19.215-39.605Q19.595-39.436 20.087-39.436Q20.415-39.436 20.709-39.552Q21.003-39.669 21.237-39.884Q21.471-40.099 21.601-40.388Q21.731-40.677 21.731-41.005Q21.731-41.032 21.758-41.056Q21.786-41.080 21.806-41.080L21.919-41.080Q21.957-41.080 21.977-41.055Q21.998-41.029 21.998-40.991Q21.998-40.595 21.832-40.258Q21.666-39.921 21.379-39.674Q21.092-39.426 20.723-39.291Q20.354-39.156 19.974-39.156Q19.455-39.156 18.962-39.346Q18.470-39.535 18.091-39.879Q17.711-40.222 17.494-40.691Q17.277-41.159 17.277-41.689\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M26.086-40.130L26.086-41.634Q26.086-41.904 25.978-41.965Q25.870-42.027 25.559-42.027L25.559-42.307L26.667-42.382L26.667-40.150L26.667-40.130Q26.667-39.850 26.718-39.706Q26.769-39.563 26.911-39.506Q27.053-39.450 27.340-39.450Q27.593-39.450 27.798-39.590Q28.003-39.730 28.119-39.956Q28.236-40.181 28.236-40.431L28.236-41.634Q28.236-41.904 28.128-41.965Q28.020-42.027 27.709-42.027L27.709-42.307L28.817-42.382L28.817-39.969Q28.817-39.778 28.870-39.696Q28.923-39.614 29.023-39.595Q29.124-39.576 29.340-39.576L29.340-39.296L28.263-39.228L28.263-39.792Q28.154-39.610 28.008-39.487Q27.863-39.364 27.677-39.296Q27.490-39.228 27.289-39.228Q26.086-39.228 26.086-40.130M31.572-37.939L29.941-37.939L29.941-38.219Q30.170-38.219 30.319-38.254Q30.468-38.288 30.468-38.428L30.468-41.774Q30.468-41.945 30.331-41.986Q30.194-42.027 29.941-42.027L29.941-42.307L31.021-42.382L31.021-41.976Q31.243-42.177 31.530-42.280Q31.818-42.382 32.125-42.382Q32.552-42.382 32.916-42.169Q33.280-41.955 33.494-41.591Q33.708-41.227 33.708-40.807Q33.708-40.362 33.468-39.998Q33.229-39.634 32.836-39.431Q32.443-39.228 31.999-39.228Q31.732-39.228 31.484-39.328Q31.237-39.429 31.049-39.610L31.049-38.428Q31.049-38.291 31.197-38.255Q31.346-38.219 31.572-38.219L31.572-37.939M31.049-41.627L31.049-40.017Q31.182-39.764 31.425-39.607Q31.667-39.450 31.944-39.450Q32.272-39.450 32.525-39.651Q32.778-39.853 32.911-40.171Q33.045-40.489 33.045-40.807Q33.045-41.036 32.980-41.265Q32.915-41.494 32.787-41.692Q32.658-41.890 32.464-42.010Q32.269-42.129 32.036-42.129Q31.742-42.129 31.474-42Q31.206-41.870 31.049-41.627\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M34.559-40.807Q34.559-41.145 34.700-41.436Q34.840-41.726 35.084-41.940Q35.328-42.153 35.633-42.268Q35.937-42.382 36.262-42.382Q36.532-42.382 36.795-42.283Q37.058-42.184 37.249-42.006L37.249-43.404Q37.249-43.674 37.142-43.736Q37.034-43.797 36.723-43.797L36.723-44.078L37.800-44.153L37.800-39.969Q37.800-39.781 37.854-39.698Q37.909-39.614 38.010-39.595Q38.111-39.576 38.326-39.576L38.326-39.296L37.219-39.228L37.219-39.645Q36.802-39.228 36.176-39.228Q35.745-39.228 35.373-39.440Q35-39.651 34.780-40.012Q34.559-40.373 34.559-40.807M36.234-39.450Q36.443-39.450 36.629-39.522Q36.815-39.593 36.969-39.730Q37.123-39.867 37.219-40.045L37.219-41.654Q37.133-41.801 36.988-41.921Q36.843-42.041 36.673-42.100Q36.504-42.160 36.323-42.160Q35.763-42.160 35.494-41.771Q35.226-41.381 35.226-40.800Q35.226-40.229 35.460-39.839Q35.694-39.450 36.234-39.450M39.034-40.024Q39.034-40.356 39.257-40.583Q39.481-40.810 39.825-40.938Q40.168-41.067 40.541-41.119Q40.913-41.172 41.218-41.172L41.218-41.425Q41.218-41.630 41.110-41.810Q41.002-41.989 40.821-42.092Q40.640-42.194 40.432-42.194Q40.025-42.194 39.789-42.102Q39.878-42.065 39.924-41.981Q39.970-41.897 39.970-41.795Q39.970-41.699 39.924-41.620Q39.878-41.542 39.797-41.497Q39.717-41.453 39.628-41.453Q39.478-41.453 39.377-41.550Q39.276-41.648 39.276-41.795Q39.276-42.417 40.432-42.417Q40.643-42.417 40.893-42.353Q41.142-42.290 41.344-42.171Q41.546-42.051 41.672-41.866Q41.799-41.682 41.799-41.439L41.799-39.863Q41.799-39.747 41.860-39.651Q41.922-39.556 42.035-39.556Q42.144-39.556 42.209-39.650Q42.274-39.744 42.274-39.863L42.274-40.311L42.540-40.311L42.540-39.863Q42.540-39.593 42.313-39.428Q42.086-39.262 41.806-39.262Q41.597-39.262 41.460-39.416Q41.324-39.569 41.300-39.785Q41.153-39.518 40.871-39.373Q40.589-39.228 40.264-39.228Q39.987-39.228 39.703-39.303Q39.420-39.378 39.227-39.557Q39.034-39.737 39.034-40.024M39.649-40.024Q39.649-39.850 39.750-39.720Q39.850-39.590 40.006-39.520Q40.162-39.450 40.326-39.450Q40.544-39.450 40.753-39.547Q40.961-39.645 41.089-39.826Q41.218-40.007 41.218-40.233L41.218-40.961Q40.893-40.961 40.527-40.870Q40.162-40.779 39.905-40.567Q39.649-40.356 39.649-40.024M43.484-40.137L43.484-42.034L42.845-42.034L42.845-42.256Q43.162-42.256 43.380-42.466Q43.597-42.676 43.697-42.986Q43.798-43.295 43.798-43.603L44.065-43.603L44.065-42.314L45.141-42.314L45.141-42.034L44.065-42.034L44.065-40.150Q44.065-39.874 44.169-39.675Q44.273-39.477 44.533-39.477Q44.690-39.477 44.796-39.581Q44.902-39.686 44.952-39.839Q45.001-39.993 45.001-40.150L45.001-40.564L45.268-40.564L45.268-40.137Q45.268-39.911 45.169-39.701Q45.070-39.491 44.885-39.359Q44.701-39.228 44.472-39.228Q44.034-39.228 43.759-39.465Q43.484-39.703 43.484-40.137M46.037-40.831Q46.037-41.152 46.162-41.441Q46.287-41.730 46.512-41.953Q46.738-42.177 47.033-42.297Q47.329-42.417 47.647-42.417Q47.975-42.417 48.236-42.317Q48.498-42.218 48.674-42.036Q48.850-41.853 48.944-41.595Q49.038-41.337 49.038-41.005Q49.038-40.913 48.956-40.892L46.700-40.892L46.700-40.831Q46.700-40.243 46.984-39.860Q47.267-39.477 47.835-39.477Q48.156-39.477 48.424-39.670Q48.693-39.863 48.782-40.178Q48.788-40.219 48.864-40.233L48.956-40.233Q49.038-40.209 49.038-40.137Q49.038-40.130 49.031-40.103Q48.918-39.706 48.547-39.467Q48.177-39.228 47.753-39.228Q47.315-39.228 46.915-39.436Q46.516-39.645 46.276-40.012Q46.037-40.379 46.037-40.831M46.707-41.101L48.522-41.101Q48.522-41.378 48.424-41.630Q48.327-41.883 48.129-42.039Q47.931-42.194 47.647-42.194Q47.370-42.194 47.156-42.036Q46.943-41.877 46.825-41.622Q46.707-41.367 46.707-41.101\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M11.603-39.534L11.603-39.624Q11.642-39.831 11.853-39.855L12.161-39.855L12.161-43.624L11.853-43.624Q11.642-43.648 11.603-43.862L11.603-43.952Q11.642-44.159 11.853-44.183L13.802-44.183Q14.200-44.183 14.546-43.982Q14.892-43.780 15.099-43.435Q15.306-43.089 15.306-42.687Q15.306-42.280 15.101-41.937Q14.896-41.593 14.550-41.388Q14.204-41.183 13.802-41.183L12.802-41.183L12.802-39.855L13.114-39.855Q13.325-39.831 13.364-39.624L13.364-39.534Q13.325-39.319 13.114-39.296L11.853-39.296Q11.642-39.319 11.603-39.534M12.802-43.624L12.802-41.745L13.642-41.745Q13.903-41.745 14.140-41.868Q14.376-41.991 14.521-42.206Q14.665-42.421 14.665-42.687Q14.665-42.956 14.521-43.167Q14.376-43.378 14.140-43.501Q13.903-43.624 13.642-43.624L12.802-43.624M17.931-39.218Q17.482-39.218 17.116-39.442Q16.751-39.667 16.497-40.050Q16.243-40.433 16.118-40.876Q15.993-41.319 15.993-41.745Q15.993-42.171 16.118-42.610Q16.243-43.050 16.497-43.433Q16.751-43.816 17.110-44.040Q17.470-44.265 17.931-44.265Q18.208-44.265 18.466-44.173Q18.724-44.081 18.939-43.913L19.071-44.151Q19.099-44.202 19.153-44.233Q19.208-44.265 19.267-44.265L19.345-44.265Q19.439-44.253 19.501-44.194Q19.564-44.136 19.575-44.030L19.575-42.702Q19.564-42.601 19.501-42.538Q19.439-42.476 19.345-42.464L19.177-42.464Q19.075-42.476 19.013-42.542Q18.950-42.608 18.939-42.702Q18.899-42.968 18.776-43.192Q18.653-43.417 18.450-43.560Q18.247-43.702 17.985-43.702Q17.653-43.702 17.401-43.519Q17.149-43.335 16.978-43.034Q16.806-42.733 16.720-42.392Q16.634-42.050 16.634-41.745Q16.634-41.441 16.718-41.099Q16.802-40.757 16.974-40.454Q17.146-40.151 17.403-39.964Q17.661-39.776 17.993-39.776Q18.376-39.776 18.657-40.050Q18.939-40.323 18.939-40.710Q18.966-40.921 19.177-40.944L19.345-40.944Q19.575-40.905 19.575-40.679Q19.575-40.362 19.439-40.091Q19.302-39.819 19.067-39.622Q18.833-39.425 18.542-39.321Q18.251-39.218 17.931-39.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M28.241-40.273L22.928-40.273Q22.850-40.280 22.801-40.329Q22.753-40.378 22.753-40.456Q22.753-40.526 22.800-40.577Q22.846-40.628 22.928-40.640L28.241-40.640Q28.315-40.628 28.362-40.577Q28.409-40.526 28.409-40.456Q28.409-40.378 28.360-40.329Q28.311-40.280 28.241-40.273M28.241-41.960L22.928-41.960Q22.850-41.968 22.801-42.017Q22.753-42.066 22.753-42.144Q22.753-42.214 22.800-42.265Q22.846-42.316 22.928-42.327L28.241-42.327Q28.315-42.316 28.362-42.265Q28.409-42.214 28.409-42.144Q28.409-42.066 28.360-42.017Q28.311-41.968 28.241-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M32.909-39.519L32.023-42.183L31.702-42.183Q31.503-42.206 31.452-42.425L31.452-42.511Q31.503-42.722 31.702-42.745L32.862-42.745Q33.058-42.726 33.108-42.511L33.108-42.425Q33.058-42.206 32.862-42.183L32.581-42.183L33.374-39.808L34.163-42.183L33.886-42.183Q33.687-42.206 33.636-42.425L33.636-42.511Q33.687-42.722 33.886-42.745L35.046-42.745Q35.241-42.722 35.292-42.511L35.292-42.425Q35.241-42.206 35.046-42.183L34.726-42.183L33.839-39.519Q33.796-39.405 33.694-39.331Q33.593-39.257 33.468-39.257L33.276-39.257Q33.159-39.257 33.056-39.329Q32.952-39.401 32.909-39.519M35.905-40.409Q35.905-40.855 36.319-41.112Q36.733-41.370 37.274-41.470Q37.816-41.569 38.323-41.577Q38.323-41.792 38.189-41.944Q38.054-42.097 37.847-42.173Q37.640-42.249 37.429-42.249Q37.085-42.249 36.925-42.226L36.925-42.167Q36.925-41.999 36.806-41.884Q36.687-41.769 36.523-41.769Q36.347-41.769 36.232-41.892Q36.116-42.015 36.116-42.183Q36.116-42.589 36.497-42.698Q36.878-42.808 37.437-42.808Q37.706-42.808 37.974-42.730Q38.241-42.651 38.466-42.501Q38.691-42.351 38.827-42.130Q38.964-41.909 38.964-41.632L38.964-39.913Q38.964-39.855 39.491-39.855Q39.687-39.835 39.737-39.624L39.737-39.534Q39.687-39.319 39.491-39.296L39.347-39.296Q39.003-39.296 38.774-39.343Q38.546-39.390 38.401-39.577Q37.941-39.257 37.233-39.257Q36.898-39.257 36.593-39.398Q36.288-39.538 36.097-39.800Q35.905-40.062 35.905-40.409M36.546-40.401Q36.546-40.128 36.788-39.972Q37.030-39.816 37.316-39.816Q37.534-39.816 37.767-39.874Q37.999-39.933 38.161-40.071Q38.323-40.210 38.323-40.433L38.323-41.023Q38.042-41.023 37.626-40.966Q37.210-40.909 36.878-40.771Q36.546-40.632 36.546-40.401M40.194-39.534L40.194-39.624Q40.245-39.831 40.441-39.855L41.546-39.855L41.546-43.624L40.441-43.624Q40.245-43.648 40.194-43.862L40.194-43.952Q40.245-44.159 40.441-44.183L41.937-44.183Q42.128-44.159 42.187-43.952L42.187-39.855L43.288-39.855Q43.487-39.831 43.538-39.624L43.538-39.534Q43.487-39.319 43.288-39.296L40.441-39.296Q40.245-39.319 40.194-39.534M44.175-39.534L44.175-39.624Q44.214-39.831 44.425-39.855L44.733-39.855L44.733-43.624L44.425-43.624Q44.214-43.648 44.175-43.862L44.175-43.952Q44.214-44.159 44.425-44.183L46.374-44.183Q46.773-44.183 47.118-43.982Q47.464-43.780 47.671-43.435Q47.878-43.089 47.878-42.687Q47.878-42.280 47.673-41.937Q47.468-41.593 47.122-41.388Q46.776-41.183 46.374-41.183L45.374-41.183L45.374-39.855L45.687-39.855Q45.898-39.831 45.937-39.624L45.937-39.534Q45.898-39.319 45.687-39.296L44.425-39.296Q44.214-39.319 44.175-39.534M45.374-43.624L45.374-41.745L46.214-41.745Q46.476-41.745 46.712-41.868Q46.948-41.991 47.093-42.206Q47.237-42.421 47.237-42.687Q47.237-42.956 47.093-43.167Q46.948-43.378 46.712-43.501Q46.476-43.624 46.214-43.624\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 93.578h207.705\"\u002F>\u003Cg transform=\"translate(177.095 -24.586)\">\u003Cpath d=\"M11.489-39.534L11.489-39.624Q11.532-39.831 11.739-39.855L12.161-39.855L12.161-43.624L11.739-43.624Q11.532-43.648 11.489-43.862L11.489-43.952Q11.532-44.159 11.739-44.183L12.556-44.183Q12.751-44.159 12.802-43.952L12.802-42.401Q13.263-42.784 13.860-42.784Q14.208-42.784 14.446-42.644Q14.685-42.503 14.800-42.245Q14.915-41.987 14.915-41.632L14.915-39.855L15.341-39.855Q15.548-39.831 15.587-39.624L15.587-39.534Q15.548-39.319 15.341-39.296L13.946-39.296Q13.751-39.319 13.700-39.534L13.700-39.624Q13.751-39.835 13.946-39.855L14.274-39.855L14.274-41.601Q14.274-41.909 14.185-42.067Q14.095-42.226 13.802-42.226Q13.532-42.226 13.304-42.095Q13.075-41.964 12.939-41.735Q12.802-41.507 12.802-41.241L12.802-39.855L13.228-39.855Q13.435-39.831 13.474-39.624L13.474-39.534Q13.435-39.319 13.228-39.296L11.739-39.296Q11.532-39.319 11.489-39.534M16.071-40.409Q16.071-40.855 16.485-41.112Q16.899-41.370 17.440-41.470Q17.982-41.569 18.489-41.577Q18.489-41.792 18.355-41.944Q18.220-42.097 18.013-42.173Q17.806-42.249 17.595-42.249Q17.251-42.249 17.091-42.226L17.091-42.167Q17.091-41.999 16.972-41.884Q16.853-41.769 16.689-41.769Q16.513-41.769 16.398-41.892Q16.282-42.015 16.282-42.183Q16.282-42.589 16.663-42.698Q17.044-42.808 17.603-42.808Q17.872-42.808 18.140-42.730Q18.407-42.651 18.632-42.501Q18.857-42.351 18.993-42.130Q19.130-41.909 19.130-41.632L19.130-39.913Q19.130-39.855 19.657-39.855Q19.853-39.835 19.903-39.624L19.903-39.534Q19.853-39.319 19.657-39.296L19.513-39.296Q19.169-39.296 18.940-39.343Q18.712-39.390 18.567-39.577Q18.107-39.257 17.399-39.257Q17.064-39.257 16.759-39.398Q16.454-39.538 16.263-39.800Q16.071-40.062 16.071-40.409M16.712-40.401Q16.712-40.128 16.954-39.972Q17.196-39.816 17.482-39.816Q17.700-39.816 17.933-39.874Q18.165-39.933 18.327-40.071Q18.489-40.210 18.489-40.433L18.489-41.023Q18.208-41.023 17.792-40.966Q17.376-40.909 17.044-40.771Q16.712-40.632 16.712-40.401M20.360-39.534L20.360-39.624Q20.411-39.831 20.607-39.855L21.712-39.855L21.712-43.624L20.607-43.624Q20.411-43.648 20.360-43.862L20.360-43.952Q20.411-44.159 20.607-44.183L22.103-44.183Q22.294-44.159 22.353-43.952L22.353-39.855L23.454-39.855Q23.653-39.831 23.704-39.624L23.704-39.534Q23.653-39.319 23.454-39.296L20.607-39.296Q20.411-39.319 20.360-39.534M25.357-40.401L25.357-42.183L24.607-42.183Q24.407-42.206 24.357-42.425L24.357-42.511Q24.407-42.722 24.607-42.745L25.357-42.745L25.357-43.495Q25.407-43.702 25.607-43.730L25.751-43.730Q25.946-43.702 25.997-43.495L25.997-42.745L27.357-42.745Q27.548-42.726 27.607-42.511L27.607-42.425Q27.552-42.206 27.357-42.183L25.997-42.183L25.997-40.433Q25.997-39.816 26.571-39.816Q26.821-39.816 26.985-40.001Q27.149-40.187 27.149-40.433Q27.149-40.526 27.222-40.597Q27.294-40.667 27.396-40.679L27.540-40.679Q27.739-40.655 27.790-40.448L27.790-40.401Q27.790-40.077 27.607-39.814Q27.423-39.550 27.130-39.403Q26.837-39.257 26.517-39.257Q26.005-39.257 25.681-39.567Q25.357-39.878 25.357-40.401\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98-52.1h207.706\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(165.304 2.43)\">\u003Cpath d=\"M14.112-39.296L11.798-39.296L11.798-39.576Q12.520-39.576 12.520-39.785L12.520-43.586Q12.520-43.797 11.798-43.797L11.798-44.078L15.982-44.078L16.194-42.441L15.927-42.441Q15.849-43.052 15.697-43.331Q15.544-43.609 15.240-43.703Q14.936-43.797 14.311-43.797L13.576-43.797Q13.388-43.797 13.299-43.763Q13.210-43.729 13.210-43.586L13.210-41.829L13.764-41.829Q14.133-41.829 14.317-41.883Q14.502-41.938 14.581-42.111Q14.659-42.283 14.659-42.649L14.926-42.649L14.926-40.732L14.659-40.732Q14.659-41.097 14.581-41.270Q14.502-41.442 14.317-41.495Q14.133-41.548 13.764-41.548L13.210-41.548L13.210-39.785Q13.210-39.576 14.112-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(165.304 2.43)\">\u003Cpath d=\"M16.206-40.831Q16.206-41.152 16.331-41.441Q16.456-41.730 16.682-41.953Q16.907-42.177 17.203-42.297Q17.498-42.417 17.816-42.417Q18.144-42.417 18.406-42.317Q18.667-42.218 18.843-42.036Q19.019-41.853 19.113-41.595Q19.207-41.337 19.207-41.005Q19.207-40.913 19.125-40.892L16.870-40.892L16.870-40.831Q16.870-40.243 17.153-39.860Q17.437-39.477 18.004-39.477Q18.326-39.477 18.594-39.670Q18.862-39.863 18.951-40.178Q18.958-40.219 19.033-40.233L19.125-40.233Q19.207-40.209 19.207-40.137Q19.207-40.130 19.201-40.103Q19.088-39.706 18.717-39.467Q18.346-39.228 17.922-39.228Q17.485-39.228 17.085-39.436Q16.685-39.645 16.446-40.012Q16.206-40.379 16.206-40.831M16.876-41.101L18.691-41.101Q18.691-41.378 18.594-41.630Q18.496-41.883 18.298-42.039Q18.100-42.194 17.816-42.194Q17.539-42.194 17.326-42.036Q17.112-41.877 16.994-41.622Q16.876-41.367 16.876-41.101M20.322-40.137L20.322-42.034L19.683-42.034L19.683-42.256Q20-42.256 20.217-42.466Q20.434-42.676 20.535-42.986Q20.636-43.295 20.636-43.603L20.903-43.603L20.903-42.314L21.979-42.314L21.979-42.034L20.903-42.034L20.903-40.150Q20.903-39.874 21.007-39.675Q21.111-39.477 21.371-39.477Q21.528-39.477 21.634-39.581Q21.740-39.686 21.790-39.839Q21.839-39.993 21.839-40.150L21.839-40.564L22.106-40.564L22.106-40.137Q22.106-39.911 22.007-39.701Q21.908-39.491 21.723-39.359Q21.538-39.228 21.309-39.228Q20.872-39.228 20.597-39.465Q20.322-39.703 20.322-40.137M22.916-40.807Q22.916-41.135 23.051-41.436Q23.186-41.736 23.422-41.957Q23.658-42.177 23.962-42.297Q24.266-42.417 24.591-42.417Q25.097-42.417 25.445-42.314Q25.794-42.212 25.794-41.836Q25.794-41.689 25.696-41.588Q25.599-41.487 25.452-41.487Q25.298-41.487 25.199-41.586Q25.100-41.685 25.100-41.836Q25.100-42.024 25.240-42.116Q25.038-42.167 24.598-42.167Q24.242-42.167 24.013-41.971Q23.784-41.774 23.683-41.465Q23.582-41.155 23.582-40.807Q23.582-40.458 23.709-40.152Q23.835-39.846 24.090-39.662Q24.345-39.477 24.700-39.477Q24.922-39.477 25.107-39.561Q25.291-39.645 25.426-39.800Q25.561-39.956 25.620-40.164Q25.633-40.219 25.688-40.219L25.801-40.219Q25.831-40.219 25.854-40.195Q25.876-40.171 25.876-40.137L25.876-40.116Q25.790-39.829 25.602-39.631Q25.414-39.433 25.150-39.330Q24.885-39.228 24.591-39.228Q24.160-39.228 23.772-39.434Q23.384-39.641 23.150-40.004Q22.916-40.366 22.916-40.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(165.304 2.43)\">\u003Cpath d=\"M27.950-39.296L26.316-39.296L26.316-39.576Q26.545-39.576 26.694-39.610Q26.843-39.645 26.843-39.785L26.843-43.404Q26.843-43.674 26.735-43.736Q26.627-43.797 26.316-43.797L26.316-44.078L27.396-44.153L27.396-41.767Q27.502-41.952 27.680-42.094Q27.858-42.235 28.066-42.309Q28.275-42.382 28.500-42.382Q29.006-42.382 29.290-42.159Q29.574-41.935 29.574-41.439L29.574-39.785Q29.574-39.648 29.722-39.612Q29.871-39.576 30.097-39.576L30.097-39.296L28.466-39.296L28.466-39.576Q28.695-39.576 28.844-39.610Q28.993-39.645 28.993-39.785L28.993-41.425Q28.993-41.760 28.873-41.960Q28.753-42.160 28.439-42.160Q28.169-42.160 27.935-42.024Q27.701-41.887 27.562-41.653Q27.424-41.419 27.424-41.145L27.424-39.785Q27.424-39.648 27.574-39.612Q27.725-39.576 27.950-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M12.036-39.534L12.036-39.624Q12.087-39.831 12.282-39.855L13.321-39.855L13.321-42.183L12.349-42.183Q12.149-42.206 12.099-42.425L12.099-42.511Q12.149-42.722 12.349-42.745L13.716-42.745Q13.911-42.726 13.962-42.511L13.962-39.855L14.876-39.855Q15.071-39.831 15.122-39.624L15.122-39.534Q15.071-39.319 14.876-39.296L12.282-39.296Q12.087-39.319 12.036-39.534M13.067-43.722L13.067-43.776Q13.067-43.948 13.204-44.069Q13.341-44.191 13.517-44.191Q13.689-44.191 13.825-44.069Q13.962-43.948 13.962-43.776L13.962-43.722Q13.962-43.546 13.825-43.425Q13.689-43.304 13.517-43.304Q13.341-43.304 13.204-43.425Q13.067-43.546 13.067-43.722M16.224-41.023Q16.224-41.503 16.468-41.917Q16.712-42.331 17.128-42.569Q17.544-42.808 18.024-42.808Q18.579-42.808 18.958-42.698Q19.337-42.589 19.337-42.183Q19.337-42.015 19.224-41.892Q19.110-41.769 18.939-41.769Q18.767-41.769 18.648-41.884Q18.528-41.999 18.528-42.167L18.528-42.226Q18.368-42.249 18.032-42.249Q17.704-42.249 17.437-42.079Q17.169-41.909 17.017-41.626Q16.864-41.343 16.864-41.023Q16.864-40.702 17.036-40.421Q17.208-40.140 17.493-39.978Q17.778-39.816 18.107-39.816Q18.419-39.816 18.546-39.919Q18.673-40.023 18.790-40.212Q18.907-40.401 19.024-40.417L19.192-40.417Q19.298-40.405 19.362-40.337Q19.427-40.269 19.427-40.167Q19.427-40.120 19.407-40.081Q19.298-39.788 19.095-39.608Q18.892-39.429 18.616-39.343Q18.341-39.257 18.024-39.257Q17.540-39.257 17.124-39.495Q16.708-39.733 16.466-40.136Q16.224-40.538 16.224-41.023M22.032-39.257Q21.560-39.257 21.175-39.501Q20.790-39.745 20.567-40.155Q20.345-40.566 20.345-41.023Q20.345-41.366 20.470-41.689Q20.595-42.011 20.825-42.265Q21.056-42.519 21.362-42.663Q21.669-42.808 22.032-42.808Q22.396-42.808 22.708-42.661Q23.021-42.515 23.243-42.269Q23.466-42.023 23.593-41.702Q23.720-41.382 23.720-41.023Q23.720-40.566 23.495-40.153Q23.271-39.741 22.886-39.499Q22.501-39.257 22.032-39.257M22.032-39.816Q22.497-39.816 22.788-40.210Q23.079-40.605 23.079-41.089Q23.079-41.382 22.944-41.650Q22.810-41.917 22.569-42.083Q22.329-42.249 22.032-42.249Q21.728-42.249 21.489-42.083Q21.251-41.917 21.116-41.650Q20.982-41.382 20.982-41.089Q20.982-40.608 21.274-40.212Q21.567-39.816 22.032-39.816M26.021-39.257Q25.556-39.257 25.190-39.507Q24.825-39.757 24.620-40.161Q24.415-40.566 24.415-41.023Q24.415-41.366 24.540-41.687Q24.665-42.007 24.898-42.257Q25.130-42.507 25.435-42.646Q25.739-42.784 26.095-42.784Q26.607-42.784 27.013-42.464L27.013-43.624L26.591-43.624Q26.380-43.648 26.341-43.862L26.341-43.952Q26.380-44.159 26.591-44.183L27.403-44.183Q27.603-44.159 27.653-43.952L27.653-39.855L28.079-39.855Q28.286-39.831 28.325-39.624L28.325-39.534Q28.286-39.319 28.079-39.296L27.263-39.296Q27.064-39.319 27.013-39.534L27.013-39.663Q26.817-39.472 26.556-39.364Q26.294-39.257 26.021-39.257M26.060-39.816Q26.419-39.816 26.671-40.085Q26.923-40.355 27.013-40.730L27.013-41.562Q26.954-41.749 26.827-41.900Q26.700-42.050 26.523-42.138Q26.345-42.226 26.149-42.226Q25.841-42.226 25.591-42.056Q25.341-41.886 25.196-41.601Q25.052-41.316 25.052-41.015Q25.052-40.566 25.337-40.191Q25.622-39.816 26.060-39.816M31.915-40.784L29.474-40.784Q29.528-40.507 29.726-40.284Q29.923-40.062 30.200-39.939Q30.478-39.816 30.763-39.816Q31.235-39.816 31.458-40.105Q31.466-40.116 31.523-40.222Q31.579-40.327 31.628-40.370Q31.677-40.413 31.771-40.425L31.915-40.425Q32.106-40.405 32.165-40.191L32.165-40.136Q32.099-39.835 31.868-39.638Q31.638-39.441 31.325-39.349Q31.013-39.257 30.708-39.257Q30.224-39.257 29.784-39.485Q29.345-39.714 29.077-40.114Q28.810-40.515 28.810-41.007L28.810-41.066Q28.810-41.534 29.056-41.937Q29.302-42.339 29.710-42.573Q30.118-42.808 30.587-42.808Q31.091-42.808 31.444-42.585Q31.798-42.362 31.982-41.974Q32.165-41.585 32.165-41.081L32.165-41.023Q32.106-40.808 31.915-40.784M29.482-41.335L31.509-41.335Q31.462-41.745 31.224-41.997Q30.985-42.249 30.587-42.249Q30.192-42.249 29.886-41.987Q29.579-41.726 29.482-41.335\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M33.388-39.761Q33.388-39.944 33.524-40.081Q33.661-40.218 33.853-40.218Q34.044-40.218 34.177-40.085Q34.310-39.952 34.310-39.761Q34.310-39.562 34.177-39.429Q34.044-39.296 33.853-39.296Q33.661-39.296 33.524-39.433Q33.388-39.569 33.388-39.761M33.388-42.288Q33.388-42.472 33.524-42.608Q33.661-42.745 33.853-42.745Q34.044-42.745 34.177-42.612Q34.310-42.480 34.310-42.288Q34.310-42.089 34.177-41.956Q34.044-41.823 33.853-41.823Q33.661-41.823 33.524-41.960Q33.388-42.097 33.388-42.288\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M35.647-39.534L35.647-39.624Q35.698-39.831 35.893-39.855L36.932-39.855L36.932-42.183L35.960-42.183Q35.760-42.206 35.710-42.425L35.710-42.511Q35.760-42.722 35.960-42.745L37.327-42.745Q37.522-42.726 37.573-42.511L37.573-39.855L38.487-39.855Q38.682-39.831 38.733-39.624L38.733-39.534Q38.682-39.319 38.487-39.296L35.893-39.296Q35.698-39.319 35.647-39.534M36.678-43.722L36.678-43.776Q36.678-43.948 36.815-44.069Q36.952-44.191 37.128-44.191Q37.300-44.191 37.436-44.069Q37.573-43.948 37.573-43.776L37.573-43.722Q37.573-43.546 37.436-43.425Q37.300-43.304 37.128-43.304Q36.952-43.304 36.815-43.425Q36.678-43.546 36.678-43.722M39.596-39.534L39.596-39.624Q39.647-39.831 39.843-39.855L40.725-39.855L40.725-42.183L39.870-42.183Q39.671-42.206 39.620-42.425L39.620-42.511Q39.671-42.722 39.870-42.745L40.725-42.745L40.725-43.198Q40.725-43.663 41.132-43.944Q41.538-44.226 42.018-44.226Q42.331-44.226 42.575-44.105Q42.819-43.983 42.819-43.702Q42.819-43.538 42.710-43.421Q42.600-43.304 42.436-43.304Q42.288-43.304 42.167-43.409Q42.046-43.515 42.046-43.663L41.964-43.663Q41.811-43.663 41.675-43.603Q41.538-43.542 41.452-43.427Q41.366-43.312 41.366-43.167L41.366-42.745L42.397-42.745Q42.593-42.726 42.643-42.511L42.643-42.425Q42.593-42.206 42.397-42.183L41.366-42.183L41.366-39.855L42.245-39.855Q42.440-39.831 42.491-39.624L42.491-39.534Q42.440-39.319 42.245-39.296L39.843-39.296Q39.647-39.319 39.596-39.534M44.264-40.151L44.264-42.183L43.843-42.183Q43.635-42.206 43.593-42.425L43.593-42.511Q43.639-42.722 43.843-42.745L44.659-42.745Q44.854-42.722 44.905-42.511L44.905-40.183Q44.905-39.948 45.075-39.882Q45.245-39.816 45.530-39.816Q45.737-39.816 45.932-39.892Q46.128-39.968 46.253-40.118Q46.378-40.269 46.378-40.480L46.378-42.183L45.956-42.183Q45.745-42.206 45.706-42.425L45.706-42.511Q45.745-42.722 45.956-42.745L46.768-42.745Q46.968-42.722 47.018-42.511L47.018-39.855L47.444-39.855Q47.651-39.831 47.690-39.624L47.690-39.534Q47.651-39.319 47.444-39.296L46.628-39.296Q46.428-39.319 46.378-39.519Q45.975-39.257 45.468-39.257Q45.233-39.257 45.018-39.298Q44.803-39.339 44.637-39.441Q44.471-39.542 44.368-39.720Q44.264-39.898 44.264-40.151M47.839-39.534L47.839-39.624Q47.882-39.831 48.089-39.855L48.510-39.855L48.510-42.183L48.089-42.183Q47.882-42.206 47.839-42.425L47.839-42.511Q47.885-42.722 48.089-42.745L48.905-42.745Q49.100-42.722 49.151-42.511L49.151-42.425L49.143-42.401Q49.370-42.581 49.643-42.683Q49.917-42.784 50.210-42.784Q50.557-42.784 50.796-42.644Q51.034-42.503 51.149-42.245Q51.264-41.987 51.264-41.632L51.264-39.855L51.690-39.855Q51.897-39.831 51.936-39.624L51.936-39.534Q51.897-39.319 51.690-39.296L50.296-39.296Q50.100-39.319 50.050-39.534L50.050-39.624Q50.100-39.835 50.296-39.855L50.624-39.855L50.624-41.601Q50.624-41.909 50.534-42.067Q50.444-42.226 50.151-42.226Q49.882-42.226 49.653-42.095Q49.425-41.964 49.288-41.735Q49.151-41.507 49.151-41.241L49.151-39.855L49.577-39.855Q49.784-39.831 49.823-39.624L49.823-39.534Q49.784-39.319 49.577-39.296L48.089-39.296Q47.882-39.319 47.839-39.534\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M60.353-40.273L55.040-40.273Q54.962-40.280 54.913-40.329Q54.865-40.378 54.865-40.456Q54.865-40.526 54.912-40.577Q54.958-40.628 55.040-40.640L60.353-40.640Q60.427-40.628 60.474-40.577Q60.521-40.526 60.521-40.456Q60.521-40.378 60.472-40.329Q60.423-40.280 60.353-40.273M60.353-41.960L55.040-41.960Q54.962-41.968 54.913-42.017Q54.865-42.066 54.865-42.144Q54.865-42.214 54.912-42.265Q54.958-42.316 55.040-42.327L60.353-42.327Q60.427-42.316 60.474-42.265Q60.521-42.214 60.521-42.144Q60.521-42.066 60.472-42.017Q60.423-41.968 60.353-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M65.602-39.296L63.884-39.296Q63.844-39.296 63.817-39.337Q63.790-39.378 63.790-39.425L63.813-39.526Q63.821-39.577 63.907-39.593Q64.637-39.593 64.762-40.120L65.790-44.218Q65.813-44.288 65.813-44.351Q65.813-44.413 65.747-44.433Q65.602-44.464 65.180-44.464Q65.075-44.495 65.075-44.593L65.106-44.694Q65.118-44.741 65.196-44.761L66.594-44.761Q66.653-44.761 66.690-44.732Q66.727-44.702 66.731-44.648L67.442-40.073L70.442-44.648Q70.520-44.761 70.637-44.761L71.981-44.761Q72.028-44.749 72.055-44.718Q72.083-44.687 72.083-44.640L72.059-44.534Q72.040-44.480 71.966-44.464Q71.524-44.464 71.364-44.425Q71.216-44.390 71.157-44.159L70.075-39.839Q70.059-39.745 70.059-39.702Q70.059-39.644 70.126-39.624Q70.266-39.593 70.692-39.593Q70.790-39.566 70.790-39.472L70.762-39.366Q70.755-39.316 70.677-39.296L68.594-39.296Q68.555-39.296 68.528-39.337Q68.501-39.378 68.501-39.425L68.524-39.526Q68.532-39.577 68.622-39.593Q69.059-39.593 69.218-39.632Q69.376-39.671 69.419-39.898L70.555-44.441L67.259-39.409Q67.192-39.296 67.059-39.296Q66.927-39.296 66.915-39.409L66.141-44.374L65.059-40.066Q65.044-39.964 65.044-39.913Q65.044-39.714 65.208-39.653Q65.372-39.593 65.622-39.593Q65.716-39.566 65.716-39.472L65.692-39.366Q65.684-39.316 65.602-39.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M74.568-38.185L72.277-38.185L72.277-38.443Q73.153-38.443 73.153-38.616L73.153-41.695Q72.960-41.607 72.728-41.570Q72.497-41.534 72.242-41.534L72.242-41.791Q72.620-41.791 72.941-41.876Q73.261-41.961 73.490-42.175L73.610-42.175Q73.642-42.175 73.667-42.152Q73.692-42.128 73.692-42.090L73.692-38.616Q73.692-38.443 74.568-38.443\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M77.862-37.296L76.686-37.296L76.686-45.296L77.862-45.296L77.862-44.929L77.053-44.929L77.053-37.663L77.862-37.663\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M78.239-39.534L78.239-39.624Q78.278-39.831 78.489-39.855L78.797-39.855L78.797-43.624L78.489-43.624Q78.278-43.648 78.239-43.862L78.239-43.952Q78.278-44.159 78.489-44.183L80.438-44.183Q80.836-44.183 81.182-43.982Q81.528-43.780 81.735-43.435Q81.942-43.089 81.942-42.687Q81.942-42.280 81.737-41.937Q81.532-41.593 81.186-41.388Q80.840-41.183 80.438-41.183L79.438-41.183L79.438-39.855L79.750-39.855Q79.961-39.831 80-39.624L80-39.534Q79.961-39.319 79.750-39.296L78.489-39.296Q78.278-39.319 78.239-39.534M79.438-43.624L79.438-41.745L80.278-41.745Q80.539-41.745 80.776-41.868Q81.012-41.991 81.157-42.206Q81.301-42.421 81.301-42.687Q81.301-42.956 81.157-43.167Q81.012-43.378 80.776-43.501Q80.539-43.624 80.278-43.624L79.438-43.624M84.567-39.218Q84.118-39.218 83.752-39.442Q83.387-39.667 83.133-40.050Q82.879-40.433 82.754-40.876Q82.629-41.319 82.629-41.745Q82.629-42.171 82.754-42.610Q82.879-43.050 83.133-43.433Q83.387-43.816 83.746-44.040Q84.106-44.265 84.567-44.265Q84.844-44.265 85.102-44.173Q85.360-44.081 85.575-43.913L85.707-44.151Q85.735-44.202 85.789-44.233Q85.844-44.265 85.903-44.265L85.981-44.265Q86.075-44.253 86.137-44.194Q86.200-44.136 86.211-44.030L86.211-42.702Q86.200-42.601 86.137-42.538Q86.075-42.476 85.981-42.464L85.813-42.464Q85.711-42.476 85.649-42.542Q85.586-42.608 85.575-42.702Q85.535-42.968 85.412-43.192Q85.289-43.417 85.086-43.560Q84.883-43.702 84.621-43.702Q84.289-43.702 84.037-43.519Q83.785-43.335 83.614-43.034Q83.442-42.733 83.356-42.392Q83.270-42.050 83.270-41.745Q83.270-41.441 83.354-41.099Q83.438-40.757 83.610-40.454Q83.782-40.151 84.039-39.964Q84.297-39.776 84.629-39.776Q85.012-39.776 85.293-40.050Q85.575-40.323 85.575-40.710Q85.602-40.921 85.813-40.944L85.981-40.944Q86.211-40.905 86.211-40.679Q86.211-40.362 86.075-40.091Q85.938-39.819 85.703-39.622Q85.469-39.425 85.178-39.321Q84.887-39.218 84.567-39.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M87.914-37.296L86.739-37.296L86.739-37.663L87.547-37.663L87.547-44.929L86.739-44.929L86.739-45.296L87.914-45.296L87.914-37.296M89.739-37.890Q89.739-37.929 89.762-37.952Q90.035-38.237 90.178-38.601Q90.321-38.964 90.321-39.351Q90.223-39.296 90.098-39.296Q89.907-39.296 89.770-39.429Q89.633-39.562 89.633-39.761Q89.633-39.952 89.770-40.085Q89.907-40.218 90.098-40.218Q90.578-40.218 90.578-39.343Q90.578-39.054 90.506-38.773Q90.434-38.491 90.291-38.237Q90.149-37.983 89.953-37.776Q89.922-37.745 89.883-37.745Q89.836-37.745 89.787-37.790Q89.739-37.835 89.739-37.890M89.633-42.288Q89.633-42.472 89.770-42.608Q89.907-42.745 90.098-42.745Q90.289-42.745 90.422-42.612Q90.555-42.480 90.555-42.288Q90.555-42.089 90.422-41.956Q90.289-41.823 90.098-41.823Q89.907-41.823 89.770-41.960Q89.633-42.097 89.633-42.288\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M95.767-39.519L94.881-42.183L94.560-42.183Q94.361-42.206 94.310-42.425L94.310-42.511Q94.361-42.722 94.560-42.745L95.720-42.745Q95.916-42.726 95.966-42.511L95.966-42.425Q95.916-42.206 95.720-42.183L95.439-42.183L96.232-39.808L97.021-42.183L96.744-42.183Q96.545-42.206 96.494-42.425L96.494-42.511Q96.545-42.722 96.744-42.745L97.904-42.745Q98.099-42.722 98.150-42.511L98.150-42.425Q98.099-42.206 97.904-42.183L97.584-42.183L96.697-39.519Q96.654-39.405 96.552-39.331Q96.451-39.257 96.326-39.257L96.134-39.257Q96.017-39.257 95.914-39.329Q95.810-39.401 95.767-39.519M98.763-40.409Q98.763-40.855 99.177-41.112Q99.591-41.370 100.132-41.470Q100.674-41.569 101.181-41.577Q101.181-41.792 101.047-41.944Q100.912-42.097 100.705-42.173Q100.498-42.249 100.287-42.249Q99.943-42.249 99.783-42.226L99.783-42.167Q99.783-41.999 99.664-41.884Q99.545-41.769 99.381-41.769Q99.205-41.769 99.090-41.892Q98.974-42.015 98.974-42.183Q98.974-42.589 99.355-42.698Q99.736-42.808 100.295-42.808Q100.564-42.808 100.832-42.730Q101.099-42.651 101.324-42.501Q101.549-42.351 101.685-42.130Q101.822-41.909 101.822-41.632L101.822-39.913Q101.822-39.855 102.349-39.855Q102.545-39.835 102.595-39.624L102.595-39.534Q102.545-39.319 102.349-39.296L102.205-39.296Q101.861-39.296 101.632-39.343Q101.404-39.390 101.259-39.577Q100.799-39.257 100.091-39.257Q99.756-39.257 99.451-39.398Q99.146-39.538 98.955-39.800Q98.763-40.062 98.763-40.409M99.404-40.401Q99.404-40.128 99.646-39.972Q99.888-39.816 100.174-39.816Q100.392-39.816 100.625-39.874Q100.857-39.933 101.019-40.071Q101.181-40.210 101.181-40.433L101.181-41.023Q100.900-41.023 100.484-40.966Q100.068-40.909 99.736-40.771Q99.404-40.632 99.404-40.401M103.052-39.534L103.052-39.624Q103.103-39.831 103.299-39.855L104.404-39.855L104.404-43.624L103.299-43.624Q103.103-43.648 103.052-43.862L103.052-43.952Q103.103-44.159 103.299-44.183L104.795-44.183Q104.986-44.159 105.045-43.952L105.045-39.855L106.146-39.855Q106.345-39.831 106.396-39.624L106.396-39.534Q106.345-39.319 106.146-39.296L103.299-39.296Q103.103-39.319 103.052-39.534M107.033-39.534L107.033-39.624Q107.072-39.831 107.283-39.855L107.591-39.855L107.591-43.624L107.283-43.624Q107.072-43.648 107.033-43.862L107.033-43.952Q107.072-44.159 107.283-44.183L109.232-44.183Q109.631-44.183 109.976-43.982Q110.322-43.780 110.529-43.435Q110.736-43.089 110.736-42.687Q110.736-42.280 110.531-41.937Q110.326-41.593 109.980-41.388Q109.634-41.183 109.232-41.183L108.232-41.183L108.232-39.855L108.545-39.855Q108.756-39.831 108.795-39.624L108.795-39.534Q108.756-39.319 108.545-39.296L107.283-39.296Q107.072-39.319 107.033-39.534M108.232-43.624L108.232-41.745L109.072-41.745Q109.334-41.745 109.570-41.868Q109.806-41.991 109.951-42.206Q110.095-42.421 110.095-42.687Q110.095-42.956 109.951-43.167Q109.806-43.378 109.570-43.501Q109.334-43.624 109.072-43.624\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M119.433-40.273L114.120-40.273Q114.042-40.280 113.993-40.329Q113.945-40.378 113.945-40.456Q113.945-40.526 113.992-40.577Q114.038-40.628 114.120-40.640L119.433-40.640Q119.507-40.628 119.554-40.577Q119.601-40.526 119.601-40.456Q119.601-40.378 119.552-40.329Q119.503-40.280 119.433-40.273M119.433-41.960L114.120-41.960Q114.042-41.968 113.993-42.017Q113.945-42.066 113.945-42.144Q113.945-42.214 113.992-42.265Q114.038-42.316 114.120-42.327L119.433-42.327Q119.507-42.316 119.554-42.265Q119.601-42.214 119.601-42.144Q119.601-42.066 119.552-42.017Q119.503-41.968 119.433-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M122.629-39.534L122.629-39.624Q122.668-39.831 122.879-39.855L123.187-39.855L123.187-43.624L122.879-43.624Q122.668-43.648 122.629-43.862L122.629-43.952Q122.668-44.159 122.879-44.183L124.828-44.183Q125.226-44.183 125.572-43.982Q125.918-43.780 126.125-43.435Q126.332-43.089 126.332-42.687Q126.332-42.280 126.127-41.937Q125.922-41.593 125.576-41.388Q125.230-41.183 124.828-41.183L123.828-41.183L123.828-39.855L124.140-39.855Q124.351-39.831 124.390-39.624L124.390-39.534Q124.351-39.319 124.140-39.296L122.879-39.296Q122.668-39.319 122.629-39.534M123.828-43.624L123.828-41.745L124.668-41.745Q124.929-41.745 125.166-41.868Q125.402-41.991 125.547-42.206Q125.691-42.421 125.691-42.687Q125.691-42.956 125.547-43.167Q125.402-43.378 125.166-43.501Q124.929-43.624 124.668-43.624L123.828-43.624M128.957-39.218Q128.507-39.218 128.142-39.442Q127.777-39.667 127.523-40.050Q127.269-40.433 127.144-40.876Q127.019-41.319 127.019-41.745Q127.019-42.171 127.144-42.610Q127.269-43.050 127.523-43.433Q127.777-43.816 128.136-44.040Q128.496-44.265 128.957-44.265Q129.234-44.265 129.492-44.173Q129.750-44.081 129.965-43.913L130.097-44.151Q130.125-44.202 130.179-44.233Q130.234-44.265 130.293-44.265L130.371-44.265Q130.465-44.253 130.527-44.194Q130.590-44.136 130.601-44.030L130.601-42.702Q130.590-42.601 130.527-42.538Q130.465-42.476 130.371-42.464L130.203-42.464Q130.101-42.476 130.039-42.542Q129.976-42.608 129.965-42.702Q129.925-42.968 129.802-43.192Q129.679-43.417 129.476-43.560Q129.273-43.702 129.011-43.702Q128.679-43.702 128.427-43.519Q128.175-43.335 128.004-43.034Q127.832-42.733 127.746-42.392Q127.660-42.050 127.660-41.745Q127.660-41.441 127.744-41.099Q127.828-40.757 128-40.454Q128.172-40.151 128.429-39.964Q128.687-39.776 129.019-39.776Q129.402-39.776 129.683-40.050Q129.965-40.323 129.965-40.710Q129.992-40.921 130.203-40.944L130.371-40.944Q130.601-40.905 130.601-40.679Q130.601-40.362 130.465-40.091Q130.328-39.819 130.093-39.622Q129.859-39.425 129.568-39.321Q129.277-39.218 128.957-39.218\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M134.066-41.112L131.593-41.112Q131.515-41.124 131.466-41.173Q131.418-41.222 131.418-41.296Q131.418-41.370 131.466-41.419Q131.515-41.468 131.593-41.480L134.066-41.480L134.066-43.960Q134.093-44.128 134.250-44.128Q134.324-44.128 134.373-44.079Q134.422-44.030 134.433-43.960L134.433-41.480L136.906-41.480Q137.074-41.448 137.074-41.296Q137.074-41.144 136.906-41.112L134.433-41.112L134.433-38.632Q134.422-38.562 134.373-38.513Q134.324-38.464 134.250-38.464Q134.093-38.464 134.066-38.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 2)\">\u003Cpath d=\"M141.150-39.296L138.357-39.296L138.357-39.593Q139.419-39.593 139.419-39.855L139.419-44.023Q138.990-43.808 138.310-43.808L138.310-44.105Q139.329-44.105 139.845-44.616L139.990-44.616Q140.064-44.597 140.083-44.519L140.083-39.855Q140.083-39.593 141.150-39.593\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98-27.346h207.706\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(158.95 26.616)\">\u003Cpath d=\"M14.584-39.296L11.812-39.296L11.812-39.576Q12.533-39.576 12.533-39.785L12.533-43.586Q12.533-43.797 11.812-43.797L11.812-44.078L14.584-44.078Q15.069-44.078 15.505-43.883Q15.941-43.688 16.264-43.346Q16.587-43.004 16.765-42.564Q16.942-42.123 16.942-41.641Q16.942-41.155 16.758-40.732Q16.573-40.308 16.250-39.986Q15.927-39.665 15.495-39.481Q15.063-39.296 14.584-39.296M13.196-43.586L13.196-39.785Q13.196-39.645 13.285-39.610Q13.374-39.576 13.562-39.576L14.386-39.576Q15.011-39.576 15.415-39.838Q15.818-40.099 16.006-40.566Q16.194-41.032 16.194-41.641Q16.194-42.119 16.102-42.512Q16.009-42.905 15.760-43.203Q15.521-43.490 15.157-43.644Q14.793-43.797 14.386-43.797L13.562-43.797Q13.374-43.797 13.285-43.763Q13.196-43.729 13.196-43.586M17.711-40.831Q17.711-41.152 17.836-41.441Q17.961-41.730 18.187-41.953Q18.412-42.177 18.708-42.297Q19.003-42.417 19.321-42.417Q19.649-42.417 19.911-42.317Q20.172-42.218 20.348-42.036Q20.524-41.853 20.618-41.595Q20.712-41.337 20.712-41.005Q20.712-40.913 20.630-40.892L18.375-40.892L18.375-40.831Q18.375-40.243 18.658-39.860Q18.942-39.477 19.509-39.477Q19.831-39.477 20.099-39.670Q20.367-39.863 20.456-40.178Q20.463-40.219 20.538-40.233L20.630-40.233Q20.712-40.209 20.712-40.137Q20.712-40.130 20.706-40.103Q20.593-39.706 20.222-39.467Q19.851-39.228 19.427-39.228Q18.990-39.228 18.590-39.436Q18.190-39.645 17.951-40.012Q17.711-40.379 17.711-40.831M18.381-41.101L20.196-41.101Q20.196-41.378 20.099-41.630Q20.002-41.883 19.803-42.039Q19.605-42.194 19.321-42.194Q19.044-42.194 18.831-42.036Q18.617-41.877 18.499-41.622Q18.381-41.367 18.381-41.101M21.300-40.807Q21.300-41.135 21.435-41.436Q21.570-41.736 21.806-41.957Q22.042-42.177 22.346-42.297Q22.650-42.417 22.975-42.417Q23.481-42.417 23.830-42.314Q24.178-42.212 24.178-41.836Q24.178-41.689 24.081-41.588Q23.983-41.487 23.836-41.487Q23.683-41.487 23.584-41.586Q23.484-41.685 23.484-41.836Q23.484-42.024 23.625-42.116Q23.423-42.167 22.982-42.167Q22.627-42.167 22.398-41.971Q22.169-41.774 22.068-41.465Q21.967-41.155 21.967-40.807Q21.967-40.458 22.093-40.152Q22.220-39.846 22.474-39.662Q22.729-39.477 23.085-39.477Q23.307-39.477 23.491-39.561Q23.676-39.645 23.811-39.800Q23.946-39.956 24.004-40.164Q24.018-40.219 24.072-40.219L24.185-40.219Q24.216-40.219 24.238-40.195Q24.260-40.171 24.260-40.137L24.260-40.116Q24.175-39.829 23.987-39.631Q23.799-39.433 23.534-39.330Q23.269-39.228 22.975-39.228Q22.544-39.228 22.157-39.434Q21.769-39.641 21.534-40.004Q21.300-40.366 21.300-40.807M24.807-40.779Q24.807-41.121 24.942-41.420Q25.077-41.719 25.316-41.943Q25.556-42.167 25.874-42.292Q26.191-42.417 26.523-42.417Q26.967-42.417 27.367-42.201Q27.767-41.986 28.001-41.608Q28.235-41.231 28.235-40.779Q28.235-40.438 28.094-40.154Q27.952-39.870 27.707-39.663Q27.463-39.457 27.154-39.342Q26.844-39.228 26.523-39.228Q26.092-39.228 25.691-39.429Q25.289-39.631 25.048-39.983Q24.807-40.335 24.807-40.779M26.523-39.477Q27.125-39.477 27.348-39.855Q27.572-40.233 27.572-40.865Q27.572-41.477 27.338-41.836Q27.104-42.194 26.523-42.194Q25.470-42.194 25.470-40.865Q25.470-40.233 25.696-39.855Q25.921-39.477 26.523-39.477\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.95 26.616)\">\u003Cpath d=\"M29.066-40.807Q29.066-41.145 29.207-41.436Q29.347-41.726 29.591-41.940Q29.835-42.153 30.140-42.268Q30.444-42.382 30.769-42.382Q31.039-42.382 31.302-42.283Q31.565-42.184 31.756-42.006L31.756-43.404Q31.756-43.674 31.649-43.736Q31.541-43.797 31.230-43.797L31.230-44.078L32.307-44.153L32.307-39.969Q32.307-39.781 32.361-39.698Q32.416-39.614 32.517-39.595Q32.618-39.576 32.833-39.576L32.833-39.296L31.726-39.228L31.726-39.645Q31.309-39.228 30.683-39.228Q30.252-39.228 29.880-39.440Q29.507-39.651 29.287-40.012Q29.066-40.373 29.066-40.807M30.741-39.450Q30.950-39.450 31.136-39.522Q31.322-39.593 31.476-39.730Q31.630-39.867 31.726-40.045L31.726-41.654Q31.640-41.801 31.495-41.921Q31.350-42.041 31.180-42.100Q31.011-42.160 30.830-42.160Q30.270-42.160 30.001-41.771Q29.733-41.381 29.733-40.800Q29.733-40.229 29.967-39.839Q30.201-39.450 30.741-39.450M33.441-40.831Q33.441-41.152 33.566-41.441Q33.691-41.730 33.917-41.953Q34.142-42.177 34.438-42.297Q34.733-42.417 35.051-42.417Q35.379-42.417 35.641-42.317Q35.902-42.218 36.078-42.036Q36.254-41.853 36.348-41.595Q36.442-41.337 36.442-41.005Q36.442-40.913 36.360-40.892L34.105-40.892L34.105-40.831Q34.105-40.243 34.388-39.860Q34.672-39.477 35.239-39.477Q35.561-39.477 35.829-39.670Q36.097-39.863 36.186-40.178Q36.193-40.219 36.268-40.233L36.360-40.233Q36.442-40.209 36.442-40.137Q36.442-40.130 36.436-40.103Q36.323-39.706 35.952-39.467Q35.581-39.228 35.157-39.228Q34.720-39.228 34.320-39.436Q33.920-39.645 33.681-40.012Q33.441-40.379 33.441-40.831M34.111-41.101L35.926-41.101Q35.926-41.378 35.829-41.630Q35.731-41.883 35.533-42.039Q35.335-42.194 35.051-42.194Q34.774-42.194 34.561-42.036Q34.347-41.877 34.229-41.622Q34.111-41.367 34.111-41.101\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 25.907)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98-3.16h207.706\"\u002F>\u003Cg transform=\"translate(156.47 50.761)\">\u003Cpath d=\"M16.201-39.296L11.798-39.296L11.798-39.576Q12.520-39.576 12.520-39.785L12.520-43.586Q12.520-43.797 11.798-43.797L11.798-44.078L16.088-44.078L16.296-42.441L16.033-42.441Q15.975-42.912 15.873-43.177Q15.770-43.442 15.586-43.575Q15.401-43.709 15.129-43.753Q14.857-43.797 14.358-43.797L13.576-43.797Q13.388-43.797 13.299-43.763Q13.210-43.729 13.210-43.586L13.210-41.921L13.784-41.921Q14.174-41.921 14.357-41.972Q14.540-42.024 14.622-42.196Q14.704-42.369 14.704-42.741L14.967-42.741L14.967-40.820L14.704-40.820Q14.704-41.193 14.622-41.366Q14.540-41.538 14.357-41.589Q14.174-41.641 13.784-41.641L13.210-41.641L13.210-39.785Q13.210-39.645 13.299-39.610Q13.388-39.576 13.576-39.576L14.423-39.576Q14.953-39.576 15.263-39.645Q15.572-39.713 15.760-39.880Q15.948-40.048 16.055-40.350Q16.163-40.653 16.249-41.166L16.515-41.166L16.201-39.296M18.286-39.296L16.963-39.296L16.963-39.576Q17.523-39.576 17.903-39.976L18.617-40.773L17.705-41.822Q17.568-41.969 17.419-42.001Q17.271-42.034 17.004-42.034L17.004-42.314L18.504-42.314L18.504-42.034Q18.313-42.034 18.313-41.900Q18.313-41.870 18.344-41.822L18.939-41.138L19.379-41.634Q19.492-41.764 19.492-41.880Q19.492-41.942 19.455-41.988Q19.417-42.034 19.359-42.034L19.359-42.314L20.675-42.314L20.675-42.034Q20.114-42.034 19.735-41.634L19.113-40.933L20.107-39.785Q20.207-39.686 20.307-39.641Q20.408-39.597 20.519-39.587Q20.630-39.576 20.808-39.576L20.808-39.296L19.315-39.296L19.315-39.576Q19.379-39.576 19.439-39.610Q19.499-39.645 19.499-39.710Q19.499-39.757 19.468-39.785L18.792-40.571L18.258-39.976Q18.146-39.846 18.146-39.730Q18.146-39.665 18.187-39.621Q18.228-39.576 18.286-39.576L18.286-39.296M21.263-40.831Q21.263-41.152 21.388-41.441Q21.512-41.730 21.738-41.953Q21.963-42.177 22.259-42.297Q22.555-42.417 22.873-42.417Q23.201-42.417 23.462-42.317Q23.724-42.218 23.900-42.036Q24.076-41.853 24.170-41.595Q24.264-41.337 24.264-41.005Q24.264-40.913 24.182-40.892L21.926-40.892L21.926-40.831Q21.926-40.243 22.210-39.860Q22.493-39.477 23.061-39.477Q23.382-39.477 23.650-39.670Q23.919-39.863 24.007-40.178Q24.014-40.219 24.089-40.233L24.182-40.233Q24.264-40.209 24.264-40.137Q24.264-40.130 24.257-40.103Q24.144-39.706 23.773-39.467Q23.402-39.228 22.979-39.228Q22.541-39.228 22.141-39.436Q21.741-39.645 21.502-40.012Q21.263-40.379 21.263-40.831M21.933-41.101L23.748-41.101Q23.748-41.378 23.650-41.630Q23.553-41.883 23.355-42.039Q23.156-42.194 22.873-42.194Q22.596-42.194 22.382-42.036Q22.169-41.877 22.051-41.622Q21.933-41.367 21.933-41.101M24.852-40.807Q24.852-41.135 24.987-41.436Q25.122-41.736 25.357-41.957Q25.593-42.177 25.898-42.297Q26.202-42.417 26.526-42.417Q27.032-42.417 27.381-42.314Q27.730-42.212 27.730-41.836Q27.730-41.689 27.632-41.588Q27.535-41.487 27.388-41.487Q27.234-41.487 27.135-41.586Q27.036-41.685 27.036-41.836Q27.036-42.024 27.176-42.116Q26.974-42.167 26.533-42.167Q26.178-42.167 25.949-41.971Q25.720-41.774 25.619-41.465Q25.518-41.155 25.518-40.807Q25.518-40.458 25.645-40.152Q25.771-39.846 26.026-39.662Q26.280-39.477 26.636-39.477Q26.858-39.477 27.043-39.561Q27.227-39.645 27.362-39.800Q27.497-39.956 27.555-40.164Q27.569-40.219 27.624-40.219L27.736-40.219Q27.767-40.219 27.789-40.195Q27.812-40.171 27.812-40.137L27.812-40.116Q27.726-39.829 27.538-39.631Q27.350-39.433 27.085-39.330Q26.820-39.228 26.526-39.228Q26.096-39.228 25.708-39.434Q25.320-39.641 25.086-40.004Q24.852-40.366 24.852-40.807M28.974-40.130L28.974-41.634Q28.974-41.904 28.866-41.965Q28.758-42.027 28.447-42.027L28.447-42.307L29.555-42.382L29.555-40.150L29.555-40.130Q29.555-39.850 29.606-39.706Q29.657-39.563 29.799-39.506Q29.941-39.450 30.228-39.450Q30.481-39.450 30.686-39.590Q30.891-39.730 31.007-39.956Q31.124-40.181 31.124-40.431L31.124-41.634Q31.124-41.904 31.016-41.965Q30.908-42.027 30.597-42.027L30.597-42.307L31.705-42.382L31.705-39.969Q31.705-39.778 31.758-39.696Q31.811-39.614 31.911-39.595Q32.012-39.576 32.228-39.576L32.228-39.296L31.151-39.228L31.151-39.792Q31.042-39.610 30.896-39.487Q30.751-39.364 30.565-39.296Q30.378-39.228 30.177-39.228Q28.974-39.228 28.974-40.130M33.342-40.137L33.342-42.034L32.703-42.034L32.703-42.256Q33.021-42.256 33.238-42.466Q33.455-42.676 33.555-42.986Q33.656-43.295 33.656-43.603L33.923-43.603L33.923-42.314L35-42.314L35-42.034L33.923-42.034L33.923-40.150Q33.923-39.874 34.027-39.675Q34.131-39.477 34.391-39.477Q34.548-39.477 34.654-39.581Q34.760-39.686 34.810-39.839Q34.859-39.993 34.859-40.150L34.859-40.564L35.126-40.564L35.126-40.137Q35.126-39.911 35.027-39.701Q34.928-39.491 34.743-39.359Q34.559-39.228 34.330-39.228Q33.892-39.228 33.617-39.465Q33.342-39.703 33.342-40.137M35.895-40.831Q35.895-41.152 36.020-41.441Q36.145-41.730 36.370-41.953Q36.596-42.177 36.891-42.297Q37.187-42.417 37.505-42.417Q37.833-42.417 38.095-42.317Q38.356-42.218 38.532-42.036Q38.708-41.853 38.802-41.595Q38.896-41.337 38.896-41.005Q38.896-40.913 38.814-40.892L36.558-40.892L36.558-40.831Q36.558-40.243 36.842-39.860Q37.126-39.477 37.693-39.477Q38.014-39.477 38.283-39.670Q38.551-39.863 38.640-40.178Q38.647-40.219 38.722-40.233L38.814-40.233Q38.896-40.209 38.896-40.137Q38.896-40.130 38.889-40.103Q38.776-39.706 38.406-39.467Q38.035-39.228 37.611-39.228Q37.173-39.228 36.773-39.436Q36.374-39.645 36.134-40.012Q35.895-40.379 35.895-40.831M36.565-41.101L38.380-41.101Q38.380-41.378 38.283-41.630Q38.185-41.883 37.987-42.039Q37.789-42.194 37.505-42.194Q37.228-42.194 37.014-42.036Q36.801-41.877 36.683-41.622Q36.565-41.367 36.565-41.101\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 50.092)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98 21.024h207.706\"\u002F>\u003Cg transform=\"translate(155.623 74.266)\">\u003Cpath d=\"M13.576-39.296L11.839-39.296L11.839-39.576Q12.561-39.576 12.561-39.976L12.561-43.586Q12.561-43.797 11.839-43.797L11.839-44.078L13.196-44.078Q13.292-44.078 13.343-43.979L15.018-40.004L16.690-43.979Q16.737-44.078 16.836-44.078L18.187-44.078L18.187-43.797Q17.465-43.797 17.465-43.586L17.465-39.785Q17.465-39.576 18.187-39.576L18.187-39.296L16.129-39.296L16.129-39.576Q16.850-39.576 16.850-39.785L16.850-43.797L14.998-39.395Q14.950-39.296 14.840-39.296Q14.728-39.296 14.680-39.395L12.855-43.726L12.855-39.976Q12.855-39.576 13.576-39.576L13.576-39.296M18.880-40.831Q18.880-41.152 19.005-41.441Q19.130-41.730 19.356-41.953Q19.581-42.177 19.877-42.297Q20.172-42.417 20.490-42.417Q20.818-42.417 21.080-42.317Q21.341-42.218 21.517-42.036Q21.693-41.853 21.787-41.595Q21.881-41.337 21.881-41.005Q21.881-40.913 21.799-40.892L19.544-40.892L19.544-40.831Q19.544-40.243 19.827-39.860Q20.111-39.477 20.678-39.477Q21-39.477 21.268-39.670Q21.536-39.863 21.625-40.178Q21.632-40.219 21.707-40.233L21.799-40.233Q21.881-40.209 21.881-40.137Q21.881-40.130 21.875-40.103Q21.762-39.706 21.391-39.467Q21.020-39.228 20.596-39.228Q20.159-39.228 19.759-39.436Q19.359-39.645 19.120-40.012Q18.880-40.379 18.880-40.831M19.550-41.101L21.365-41.101Q21.365-41.378 21.268-41.630Q21.170-41.883 20.972-42.039Q20.774-42.194 20.490-42.194Q20.213-42.194 20-42.036Q19.786-41.877 19.668-41.622Q19.550-41.367 19.550-41.101M24.151-39.296L22.517-39.296L22.517-39.576Q22.746-39.576 22.895-39.610Q23.044-39.645 23.044-39.785L23.044-41.634Q23.044-41.904 22.936-41.965Q22.828-42.027 22.517-42.027L22.517-42.307L23.577-42.382L23.577-41.733Q23.748-42.041 24.052-42.212Q24.356-42.382 24.701-42.382Q25.101-42.382 25.378-42.242Q25.655-42.102 25.740-41.754Q25.908-42.047 26.207-42.215Q26.506-42.382 26.851-42.382Q27.357-42.382 27.641-42.159Q27.924-41.935 27.924-41.439L27.924-39.785Q27.924-39.648 28.073-39.612Q28.222-39.576 28.447-39.576L28.447-39.296L26.817-39.296L26.817-39.576Q27.043-39.576 27.193-39.612Q27.343-39.648 27.343-39.785L27.343-41.425Q27.343-41.760 27.224-41.960Q27.104-42.160 26.790-42.160Q26.520-42.160 26.285-42.024Q26.051-41.887 25.913-41.653Q25.774-41.419 25.774-41.145L25.774-39.785Q25.774-39.648 25.923-39.612Q26.072-39.576 26.297-39.576L26.297-39.296L24.667-39.296L24.667-39.576Q24.896-39.576 25.045-39.610Q25.193-39.645 25.193-39.785L25.193-41.425Q25.193-41.760 25.074-41.960Q24.954-42.160 24.640-42.160Q24.370-42.160 24.136-42.024Q23.901-41.887 23.763-41.653Q23.625-41.419 23.625-41.145L23.625-39.785Q23.625-39.648 23.775-39.612Q23.925-39.576 24.151-39.576L24.151-39.296M28.994-40.779Q28.994-41.121 29.129-41.420Q29.264-41.719 29.503-41.943Q29.743-42.167 30.061-42.292Q30.378-42.417 30.710-42.417Q31.154-42.417 31.554-42.201Q31.954-41.986 32.188-41.608Q32.422-41.231 32.422-40.779Q32.422-40.438 32.281-40.154Q32.139-39.870 31.894-39.663Q31.650-39.457 31.341-39.342Q31.031-39.228 30.710-39.228Q30.279-39.228 29.878-39.429Q29.476-39.631 29.235-39.983Q28.994-40.335 28.994-40.779M30.710-39.477Q31.312-39.477 31.535-39.855Q31.759-40.233 31.759-40.865Q31.759-41.477 31.525-41.836Q31.291-42.194 30.710-42.194Q29.657-42.194 29.657-40.865Q29.657-40.233 29.883-39.855Q30.108-39.477 30.710-39.477M34.767-39.296L33.031-39.296L33.031-39.576Q33.260-39.576 33.409-39.610Q33.557-39.645 33.557-39.785L33.557-41.634Q33.557-41.904 33.450-41.965Q33.342-42.027 33.031-42.027L33.031-42.307L34.060-42.382L34.060-41.675Q34.190-41.983 34.432-42.182Q34.675-42.382 34.993-42.382Q35.211-42.382 35.382-42.258Q35.553-42.133 35.553-41.921Q35.553-41.784 35.454-41.685Q35.355-41.586 35.222-41.586Q35.085-41.586 34.986-41.685Q34.887-41.784 34.887-41.921Q34.887-42.061 34.986-42.160Q34.695-42.160 34.495-41.964Q34.295-41.767 34.203-41.473Q34.111-41.179 34.111-40.899L34.111-39.785Q34.111-39.576 34.767-39.576L34.767-39.296M36.473-38.161Q36.603-38.093 36.739-38.093Q36.910-38.093 37.061-38.182Q37.211-38.271 37.322-38.416Q37.433-38.561 37.512-38.729L37.775-39.296L36.606-41.822Q36.531-41.969 36.401-42.001Q36.271-42.034 36.039-42.034L36.039-42.314L37.560-42.314L37.560-42.034Q37.211-42.034 37.211-41.887Q37.214-41.866 37.216-41.849Q37.218-41.832 37.218-41.822L38.076-39.963L38.848-41.634Q38.882-41.702 38.882-41.781Q38.882-41.894 38.799-41.964Q38.715-42.034 38.602-42.034L38.602-42.314L39.798-42.314L39.798-42.034Q39.580-42.034 39.407-41.930Q39.234-41.825 39.142-41.634L37.806-38.729Q37.635-38.359 37.365-38.113Q37.095-37.867 36.739-37.867Q36.469-37.867 36.251-38.033Q36.032-38.199 36.032-38.462Q36.032-38.599 36.124-38.688Q36.216-38.776 36.356-38.776Q36.493-38.776 36.582-38.688Q36.671-38.599 36.671-38.462Q36.671-38.359 36.618-38.281Q36.565-38.202 36.473-38.161\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 74.277)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98 45.209h207.706\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(146.137 99.17)\">\u003Cpath d=\"M13.812-39.255L12.260-43.586Q12.198-43.729 12.036-43.763Q11.874-43.797 11.621-43.797L11.621-44.078L13.548-44.078L13.548-43.797Q12.967-43.797 12.967-43.623Q12.967-43.603 12.974-43.586L14.198-40.150L15.305-43.237L15.179-43.586Q15.121-43.729 14.955-43.763Q14.789-43.797 14.540-43.797L14.540-44.078L16.467-44.078L16.467-43.797Q15.886-43.797 15.886-43.623L15.886-43.586L17.117-40.150L18.272-43.398Q18.286-43.439 18.286-43.463Q18.286-43.637 18.093-43.717Q17.899-43.797 17.691-43.797L17.691-44.078L19.267-44.078L19.267-43.797Q19.017-43.797 18.826-43.703Q18.634-43.609 18.559-43.398L17.076-39.255Q17.042-39.156 16.942-39.156L16.864-39.156Q16.765-39.156 16.724-39.255L15.445-42.844L14.164-39.255Q14.147-39.211 14.109-39.183Q14.071-39.156 14.023-39.156L13.945-39.156Q13.853-39.156 13.812-39.255\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.137 99.17)\">\u003Cpath d=\"M20.893-39.296L19.157-39.296L19.157-39.576Q19.386-39.576 19.535-39.610Q19.683-39.645 19.683-39.785L19.683-41.634Q19.683-41.904 19.576-41.965Q19.468-42.027 19.157-42.027L19.157-42.307L20.186-42.382L20.186-41.675Q20.316-41.983 20.558-42.182Q20.801-42.382 21.119-42.382Q21.338-42.382 21.509-42.258Q21.680-42.133 21.680-41.921Q21.680-41.784 21.580-41.685Q21.481-41.586 21.348-41.586Q21.211-41.586 21.112-41.685Q21.013-41.784 21.013-41.921Q21.013-42.061 21.112-42.160Q20.822-42.160 20.622-41.964Q20.422-41.767 20.329-41.473Q20.237-41.179 20.237-40.899L20.237-39.785Q20.237-39.576 20.893-39.576L20.893-39.296M23.881-39.296L22.329-39.296L22.329-39.576Q22.555-39.576 22.703-39.610Q22.852-39.645 22.852-39.785L22.852-41.634Q22.852-41.822 22.804-41.906Q22.756-41.989 22.659-42.008Q22.561-42.027 22.350-42.027L22.350-42.307L23.406-42.382L23.406-39.785Q23.406-39.645 23.537-39.610Q23.669-39.576 23.881-39.576L23.881-39.296M22.609-43.603Q22.609-43.774 22.732-43.893Q22.855-44.013 23.026-44.013Q23.194-44.013 23.317-43.893Q23.440-43.774 23.440-43.603Q23.440-43.428 23.317-43.305Q23.194-43.182 23.026-43.182Q22.855-43.182 22.732-43.305Q22.609-43.428 22.609-43.603M25.053-40.137L25.053-42.034L24.414-42.034L24.414-42.256Q24.732-42.256 24.949-42.466Q25.166-42.676 25.267-42.986Q25.368-43.295 25.368-43.603L25.634-43.603L25.634-42.314L26.711-42.314L26.711-42.034L25.634-42.034L25.634-40.150Q25.634-39.874 25.738-39.675Q25.843-39.477 26.102-39.477Q26.260-39.477 26.366-39.581Q26.472-39.686 26.521-39.839Q26.571-39.993 26.571-40.150L26.571-40.564L26.837-40.564L26.837-40.137Q26.837-39.911 26.738-39.701Q26.639-39.491 26.454-39.359Q26.270-39.228 26.041-39.228Q25.603-39.228 25.328-39.465Q25.053-39.703 25.053-40.137M27.606-40.831Q27.606-41.152 27.731-41.441Q27.856-41.730 28.081-41.953Q28.307-42.177 28.603-42.297Q28.898-42.417 29.216-42.417Q29.544-42.417 29.806-42.317Q30.067-42.218 30.243-42.036Q30.419-41.853 30.513-41.595Q30.607-41.337 30.607-41.005Q30.607-40.913 30.525-40.892L28.269-40.892L28.269-40.831Q28.269-40.243 28.553-39.860Q28.837-39.477 29.404-39.477Q29.725-39.477 29.994-39.670Q30.262-39.863 30.351-40.178Q30.358-40.219 30.433-40.233L30.525-40.233Q30.607-40.209 30.607-40.137Q30.607-40.130 30.600-40.103Q30.488-39.706 30.117-39.467Q29.746-39.228 29.322-39.228Q28.885-39.228 28.485-39.436Q28.085-39.645 27.846-40.012Q27.606-40.379 27.606-40.831M28.276-41.101L30.091-41.101Q30.091-41.378 29.994-41.630Q29.896-41.883 29.698-42.039Q29.500-42.194 29.216-42.194Q28.939-42.194 28.726-42.036Q28.512-41.877 28.394-41.622Q28.276-41.367 28.276-41.101M33.079-40.550L31.021-40.550L31.021-41.053L33.079-41.053L33.079-40.550M34.688-39.296L34.422-39.296L34.422-43.404Q34.422-43.674 34.314-43.736Q34.206-43.797 33.895-43.797L33.895-44.078L34.975-44.153L34.975-41.983Q35.184-42.174 35.469-42.278Q35.755-42.382 36.052-42.382Q36.370-42.382 36.667-42.261Q36.965-42.140 37.187-41.924Q37.409-41.709 37.536-41.424Q37.662-41.138 37.662-40.807Q37.662-40.362 37.423-39.998Q37.183-39.634 36.790-39.431Q36.397-39.228 35.953-39.228Q35.758-39.228 35.569-39.284Q35.379-39.340 35.218-39.445Q35.058-39.549 34.917-39.710L34.688-39.296M35.003-41.641L35.003-40.024Q35.140-39.764 35.381-39.607Q35.621-39.450 35.898-39.450Q36.192-39.450 36.404-39.557Q36.616-39.665 36.749-39.857Q36.883-40.048 36.941-40.287Q36.999-40.526 36.999-40.807Q36.999-41.166 36.905-41.470Q36.811-41.774 36.584-41.967Q36.356-42.160 35.991-42.160Q35.690-42.160 35.423-42.024Q35.157-41.887 35.003-41.641M38.356-40.024Q38.356-40.356 38.580-40.583Q38.804-40.810 39.147-40.938Q39.491-41.067 39.863-41.119Q40.236-41.172 40.540-41.172L40.540-41.425Q40.540-41.630 40.432-41.810Q40.325-41.989 40.143-42.092Q39.962-42.194 39.754-42.194Q39.347-42.194 39.111-42.102Q39.200-42.065 39.246-41.981Q39.292-41.897 39.292-41.795Q39.292-41.699 39.246-41.620Q39.200-41.542 39.120-41.497Q39.039-41.453 38.951-41.453Q38.800-41.453 38.699-41.550Q38.599-41.648 38.599-41.795Q38.599-42.417 39.754-42.417Q39.966-42.417 40.215-42.353Q40.465-42.290 40.666-42.171Q40.868-42.051 40.995-41.866Q41.121-41.682 41.121-41.439L41.121-39.863Q41.121-39.747 41.183-39.651Q41.244-39.556 41.357-39.556Q41.466-39.556 41.531-39.650Q41.596-39.744 41.596-39.863L41.596-40.311L41.863-40.311L41.863-39.863Q41.863-39.593 41.635-39.428Q41.408-39.262 41.128-39.262Q40.919-39.262 40.783-39.416Q40.646-39.569 40.622-39.785Q40.475-39.518 40.193-39.373Q39.911-39.228 39.586-39.228Q39.309-39.228 39.026-39.303Q38.742-39.378 38.549-39.557Q38.356-39.737 38.356-40.024M38.971-40.024Q38.971-39.850 39.072-39.720Q39.173-39.590 39.328-39.520Q39.484-39.450 39.648-39.450Q39.867-39.450 40.075-39.547Q40.284-39.645 40.412-39.826Q40.540-40.007 40.540-40.233L40.540-40.961Q40.215-40.961 39.850-40.870Q39.484-40.779 39.227-40.567Q38.971-40.356 38.971-40.024M42.280-40.807Q42.280-41.135 42.415-41.436Q42.550-41.736 42.786-41.957Q43.021-42.177 43.326-42.297Q43.630-42.417 43.954-42.417Q44.460-42.417 44.809-42.314Q45.158-42.212 45.158-41.836Q45.158-41.689 45.060-41.588Q44.963-41.487 44.816-41.487Q44.662-41.487 44.563-41.586Q44.464-41.685 44.464-41.836Q44.464-42.024 44.604-42.116Q44.402-42.167 43.961-42.167Q43.606-42.167 43.377-41.971Q43.148-41.774 43.047-41.465Q42.946-41.155 42.946-40.807Q42.946-40.458 43.073-40.152Q43.199-39.846 43.454-39.662Q43.708-39.477 44.064-39.477Q44.286-39.477 44.471-39.561Q44.655-39.645 44.790-39.800Q44.925-39.956 44.983-40.164Q44.997-40.219 45.052-40.219L45.164-40.219Q45.195-40.219 45.217-40.195Q45.240-40.171 45.240-40.137L45.240-40.116Q45.154-39.829 44.966-39.631Q44.778-39.433 44.513-39.330Q44.248-39.228 43.954-39.228Q43.524-39.228 43.136-39.434Q42.748-39.641 42.514-40.004Q42.280-40.366 42.280-40.807\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.137 99.17)\">\u003Cpath d=\"M47.247-39.296L45.664-39.296L45.664-39.576Q45.893-39.576 46.042-39.610Q46.190-39.645 46.190-39.785L46.190-43.404Q46.190-43.674 46.083-43.736Q45.975-43.797 45.664-43.797L45.664-44.078L46.744-44.153L46.744-40.865L47.729-41.634Q47.934-41.771 47.934-41.921Q47.934-41.965 47.893-42Q47.852-42.034 47.807-42.034L47.807-42.314L49.171-42.314L49.171-42.034Q48.682-42.034 48.163-41.634L47.606-41.200L48.583-39.976Q48.785-39.730 48.918-39.653Q49.051-39.576 49.338-39.576L49.338-39.296L47.906-39.296L47.906-39.576Q48.094-39.576 48.094-39.689Q48.094-39.785 47.940-39.976L47.206-40.885L46.724-40.506L46.724-39.785Q46.724-39.648 46.872-39.612Q47.021-39.576 47.247-39.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 98.461)\">\u003Cpath d=\"M13.771-40.745L11.517-40.745L11.517-41.296L13.771-41.296\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98 69.393h207.706\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(146.345 122.674)\">\u003Cpath d=\"M13.945-39.296L11.812-39.296L11.812-39.576Q12.533-39.576 12.533-39.785L12.533-43.586Q12.533-43.797 11.812-43.797L11.812-44.078L14.478-44.078Q14.888-44.078 15.309-43.924Q15.729-43.770 16.013-43.466Q16.296-43.162 16.296-42.748Q16.296-42.430 16.129-42.184Q15.961-41.938 15.685-41.772Q15.408-41.607 15.086-41.523Q14.765-41.439 14.478-41.439L13.224-41.439L13.224-39.785Q13.224-39.576 13.945-39.576L13.945-39.296M13.196-43.586L13.196-41.689L14.283-41.689Q14.892-41.689 15.206-41.926Q15.521-42.164 15.521-42.748Q15.521-43.141 15.375-43.375Q15.230-43.609 14.958-43.703Q14.687-43.797 14.283-43.797L13.562-43.797Q13.374-43.797 13.285-43.763Q13.196-43.729 13.196-43.586M17.277-41.689Q17.277-42.215 17.494-42.683Q17.711-43.151 18.094-43.497Q18.477-43.842 18.961-44.030Q19.444-44.218 19.974-44.218Q20.377-44.218 20.742-44.061Q21.106-43.903 21.389-43.609L21.813-44.191Q21.847-44.218 21.871-44.218L21.919-44.218Q21.950-44.218 21.974-44.194Q21.998-44.170 21.998-44.139L21.998-42.276Q21.998-42.253 21.972-42.227Q21.946-42.201 21.919-42.201L21.793-42.201Q21.731-42.201 21.717-42.276Q21.687-42.591 21.552-42.895Q21.417-43.199 21.201-43.433Q20.986-43.668 20.697-43.803Q20.408-43.938 20.080-43.938Q19.438-43.938 18.980-43.644Q18.522-43.350 18.289-42.837Q18.057-42.324 18.057-41.689Q18.057-41.217 18.187-40.808Q18.316-40.400 18.576-40.087Q18.836-39.775 19.215-39.605Q19.595-39.436 20.087-39.436Q20.415-39.436 20.709-39.552Q21.003-39.669 21.237-39.884Q21.471-40.099 21.601-40.388Q21.731-40.677 21.731-41.005Q21.731-41.032 21.758-41.056Q21.786-41.080 21.806-41.080L21.919-41.080Q21.957-41.080 21.977-41.055Q21.998-41.029 21.998-40.991Q21.998-40.595 21.832-40.258Q21.666-39.921 21.379-39.674Q21.092-39.426 20.723-39.291Q20.354-39.156 19.974-39.156Q19.455-39.156 18.962-39.346Q18.470-39.535 18.091-39.879Q17.711-40.222 17.494-40.691Q17.277-41.159 17.277-41.689\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.345 122.674)\">\u003Cpath d=\"M26.086-40.130L26.086-41.634Q26.086-41.904 25.978-41.965Q25.870-42.027 25.559-42.027L25.559-42.307L26.667-42.382L26.667-40.150L26.667-40.130Q26.667-39.850 26.718-39.706Q26.769-39.563 26.911-39.506Q27.053-39.450 27.340-39.450Q27.593-39.450 27.798-39.590Q28.003-39.730 28.119-39.956Q28.236-40.181 28.236-40.431L28.236-41.634Q28.236-41.904 28.128-41.965Q28.020-42.027 27.709-42.027L27.709-42.307L28.817-42.382L28.817-39.969Q28.817-39.778 28.870-39.696Q28.923-39.614 29.023-39.595Q29.124-39.576 29.340-39.576L29.340-39.296L28.263-39.228L28.263-39.792Q28.154-39.610 28.008-39.487Q27.863-39.364 27.677-39.296Q27.490-39.228 27.289-39.228Q26.086-39.228 26.086-40.130M31.572-37.939L29.941-37.939L29.941-38.219Q30.170-38.219 30.319-38.254Q30.468-38.288 30.468-38.428L30.468-41.774Q30.468-41.945 30.331-41.986Q30.194-42.027 29.941-42.027L29.941-42.307L31.021-42.382L31.021-41.976Q31.243-42.177 31.530-42.280Q31.818-42.382 32.125-42.382Q32.552-42.382 32.916-42.169Q33.280-41.955 33.494-41.591Q33.708-41.227 33.708-40.807Q33.708-40.362 33.468-39.998Q33.229-39.634 32.836-39.431Q32.443-39.228 31.999-39.228Q31.732-39.228 31.484-39.328Q31.237-39.429 31.049-39.610L31.049-38.428Q31.049-38.291 31.197-38.255Q31.346-38.219 31.572-38.219L31.572-37.939M31.049-41.627L31.049-40.017Q31.182-39.764 31.425-39.607Q31.667-39.450 31.944-39.450Q32.272-39.450 32.525-39.651Q32.778-39.853 32.911-40.171Q33.045-40.489 33.045-40.807Q33.045-41.036 32.980-41.265Q32.915-41.494 32.787-41.692Q32.658-41.890 32.464-42.010Q32.269-42.129 32.036-42.129Q31.742-42.129 31.474-42Q31.206-41.870 31.049-41.627\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(146.345 122.674)\">\u003Cpath d=\"M34.559-40.807Q34.559-41.145 34.700-41.436Q34.840-41.726 35.084-41.940Q35.328-42.153 35.633-42.268Q35.937-42.382 36.262-42.382Q36.532-42.382 36.795-42.283Q37.058-42.184 37.249-42.006L37.249-43.404Q37.249-43.674 37.142-43.736Q37.034-43.797 36.723-43.797L36.723-44.078L37.800-44.153L37.800-39.969Q37.800-39.781 37.854-39.698Q37.909-39.614 38.010-39.595Q38.111-39.576 38.326-39.576L38.326-39.296L37.219-39.228L37.219-39.645Q36.802-39.228 36.176-39.228Q35.745-39.228 35.373-39.440Q35-39.651 34.780-40.012Q34.559-40.373 34.559-40.807M36.234-39.450Q36.443-39.450 36.629-39.522Q36.815-39.593 36.969-39.730Q37.123-39.867 37.219-40.045L37.219-41.654Q37.133-41.801 36.988-41.921Q36.843-42.041 36.673-42.100Q36.504-42.160 36.323-42.160Q35.763-42.160 35.494-41.771Q35.226-41.381 35.226-40.800Q35.226-40.229 35.460-39.839Q35.694-39.450 36.234-39.450M39.034-40.024Q39.034-40.356 39.257-40.583Q39.481-40.810 39.825-40.938Q40.168-41.067 40.541-41.119Q40.913-41.172 41.218-41.172L41.218-41.425Q41.218-41.630 41.110-41.810Q41.002-41.989 40.821-42.092Q40.640-42.194 40.432-42.194Q40.025-42.194 39.789-42.102Q39.878-42.065 39.924-41.981Q39.970-41.897 39.970-41.795Q39.970-41.699 39.924-41.620Q39.878-41.542 39.797-41.497Q39.717-41.453 39.628-41.453Q39.478-41.453 39.377-41.550Q39.276-41.648 39.276-41.795Q39.276-42.417 40.432-42.417Q40.643-42.417 40.893-42.353Q41.142-42.290 41.344-42.171Q41.546-42.051 41.672-41.866Q41.799-41.682 41.799-41.439L41.799-39.863Q41.799-39.747 41.860-39.651Q41.922-39.556 42.035-39.556Q42.144-39.556 42.209-39.650Q42.274-39.744 42.274-39.863L42.274-40.311L42.540-40.311L42.540-39.863Q42.540-39.593 42.313-39.428Q42.086-39.262 41.806-39.262Q41.597-39.262 41.460-39.416Q41.324-39.569 41.300-39.785Q41.153-39.518 40.871-39.373Q40.589-39.228 40.264-39.228Q39.987-39.228 39.703-39.303Q39.420-39.378 39.227-39.557Q39.034-39.737 39.034-40.024M39.649-40.024Q39.649-39.850 39.750-39.720Q39.850-39.590 40.006-39.520Q40.162-39.450 40.326-39.450Q40.544-39.450 40.753-39.547Q40.961-39.645 41.089-39.826Q41.218-40.007 41.218-40.233L41.218-40.961Q40.893-40.961 40.527-40.870Q40.162-40.779 39.905-40.567Q39.649-40.356 39.649-40.024M43.484-40.137L43.484-42.034L42.845-42.034L42.845-42.256Q43.162-42.256 43.380-42.466Q43.597-42.676 43.697-42.986Q43.798-43.295 43.798-43.603L44.065-43.603L44.065-42.314L45.141-42.314L45.141-42.034L44.065-42.034L44.065-40.150Q44.065-39.874 44.169-39.675Q44.273-39.477 44.533-39.477Q44.690-39.477 44.796-39.581Q44.902-39.686 44.952-39.839Q45.001-39.993 45.001-40.150L45.001-40.564L45.268-40.564L45.268-40.137Q45.268-39.911 45.169-39.701Q45.070-39.491 44.885-39.359Q44.701-39.228 44.472-39.228Q44.034-39.228 43.759-39.465Q43.484-39.703 43.484-40.137M46.037-40.831Q46.037-41.152 46.162-41.441Q46.287-41.730 46.512-41.953Q46.738-42.177 47.033-42.297Q47.329-42.417 47.647-42.417Q47.975-42.417 48.236-42.317Q48.498-42.218 48.674-42.036Q48.850-41.853 48.944-41.595Q49.038-41.337 49.038-41.005Q49.038-40.913 48.956-40.892L46.700-40.892L46.700-40.831Q46.700-40.243 46.984-39.860Q47.267-39.477 47.835-39.477Q48.156-39.477 48.424-39.670Q48.693-39.863 48.782-40.178Q48.788-40.219 48.864-40.233L48.956-40.233Q49.038-40.209 49.038-40.137Q49.038-40.130 49.031-40.103Q48.918-39.706 48.547-39.467Q48.177-39.228 47.753-39.228Q47.315-39.228 46.915-39.436Q46.516-39.645 46.276-40.012Q46.037-40.379 46.037-40.831M46.707-41.101L48.522-41.101Q48.522-41.378 48.424-41.630Q48.327-41.883 48.129-42.039Q47.931-42.194 47.647-42.194Q47.370-42.194 47.156-42.036Q46.943-41.877 46.825-41.622Q46.707-41.367 46.707-41.101\" 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=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M11.892-39.218L11.892-41.023Q11.892-41.050 11.923-41.081Q11.954-41.112 11.978-41.112L12.083-41.112Q12.114-41.112 12.144-41.083Q12.173-41.054 12.173-41.023Q12.173-40.241 12.689-39.833Q13.204-39.425 14.013-39.425Q14.310-39.425 14.565-39.575Q14.821-39.726 14.972-39.982Q15.122-40.237 15.122-40.534Q15.122-40.933 14.876-41.237Q14.630-41.542 14.259-41.624L13.138-41.882Q12.798-41.956 12.511-42.177Q12.224-42.398 12.058-42.716Q11.892-43.034 11.892-43.386Q11.892-43.816 12.122-44.171Q12.353-44.526 12.733-44.728Q13.114-44.929 13.540-44.929Q13.790-44.929 14.036-44.870Q14.282-44.812 14.501-44.689Q14.720-44.566 14.884-44.386L15.212-44.882Q15.243-44.929 15.282-44.929L15.329-44.929Q15.357-44.929 15.388-44.898Q15.419-44.866 15.419-44.839L15.419-43.030Q15.419-43.007 15.388-42.976Q15.357-42.944 15.329-42.944L15.228-42.944Q15.196-42.944 15.167-42.974Q15.138-43.003 15.138-43.030Q15.138-43.163 15.095-43.349Q15.052-43.534 14.987-43.689Q14.923-43.843 14.823-44.001Q14.724-44.159 14.634-44.249Q14.204-44.655 13.540-44.655Q13.263-44.655 13.003-44.523Q12.743-44.390 12.585-44.155Q12.427-43.921 12.427-43.640Q12.427-43.284 12.667-43.013Q12.907-42.741 13.274-42.655L14.388-42.401Q14.665-42.335 14.898-42.181Q15.130-42.026 15.300-41.808Q15.470-41.589 15.564-41.331Q15.657-41.073 15.657-40.784Q15.657-40.456 15.532-40.153Q15.407-39.851 15.173-39.614Q14.939-39.378 14.646-39.253Q14.353-39.128 14.013-39.128Q12.997-39.128 12.427-39.671L12.099-39.175Q12.067-39.128 12.028-39.128L11.978-39.128Q11.954-39.128 11.923-39.159Q11.892-39.191 11.892-39.218M17.001-40.257L17.001-42.448L16.298-42.448L16.298-42.702Q16.653-42.702 16.896-42.935Q17.138-43.167 17.249-43.515Q17.360-43.862 17.360-44.218L17.642-44.218L17.642-42.745L18.817-42.745L18.817-42.448L17.642-42.448L17.642-40.273Q17.642-39.952 17.761-39.724Q17.880-39.495 18.161-39.495Q18.341-39.495 18.458-39.618Q18.575-39.741 18.628-39.921Q18.681-40.101 18.681-40.273L18.681-40.745L18.962-40.745L18.962-40.257Q18.962-40.003 18.857-39.763Q18.751-39.523 18.554-39.370Q18.357-39.218 18.099-39.218Q17.782-39.218 17.530-39.341Q17.278-39.464 17.140-39.698Q17.001-39.933 17.001-40.257M19.778-40.128Q19.778-40.612 20.181-40.907Q20.583-41.202 21.134-41.321Q21.685-41.441 22.177-41.441L22.177-41.730Q22.177-41.956 22.062-42.163Q21.946-42.370 21.749-42.489Q21.552-42.608 21.321-42.608Q20.896-42.608 20.610-42.503Q20.681-42.476 20.728-42.421Q20.774-42.366 20.800-42.296Q20.825-42.226 20.825-42.151Q20.825-42.046 20.774-41.954Q20.724-41.862 20.632-41.812Q20.540-41.761 20.435-41.761Q20.329-41.761 20.237-41.812Q20.146-41.862 20.095-41.954Q20.044-42.046 20.044-42.151Q20.044-42.569 20.433-42.716Q20.821-42.862 21.321-42.862Q21.653-42.862 22.007-42.732Q22.360-42.601 22.589-42.347Q22.817-42.093 22.817-41.745L22.817-39.944Q22.817-39.812 22.890-39.702Q22.962-39.593 23.091-39.593Q23.216-39.593 23.284-39.698Q23.353-39.804 23.353-39.944L23.353-40.456L23.634-40.456L23.634-39.944Q23.634-39.741 23.517-39.583Q23.399-39.425 23.218-39.341Q23.036-39.257 22.833-39.257Q22.603-39.257 22.450-39.429Q22.298-39.601 22.267-39.831Q22.107-39.550 21.798-39.384Q21.489-39.218 21.138-39.218Q20.626-39.218 20.202-39.441Q19.778-39.663 19.778-40.128M20.466-40.128Q20.466-39.843 20.692-39.657Q20.919-39.472 21.212-39.472Q21.458-39.472 21.683-39.589Q21.907-39.706 22.042-39.909Q22.177-40.112 22.177-40.366L22.177-41.198Q21.911-41.198 21.626-41.144Q21.341-41.089 21.069-40.960Q20.798-40.831 20.632-40.624Q20.466-40.417 20.466-40.128M24.552-40.257L24.552-42.448L23.849-42.448L23.849-42.702Q24.204-42.702 24.446-42.935Q24.689-43.167 24.800-43.515Q24.911-43.862 24.911-44.218L25.192-44.218L25.192-42.745L26.368-42.745L26.368-42.448L25.192-42.448L25.192-40.273Q25.192-39.952 25.312-39.724Q25.431-39.495 25.712-39.495Q25.892-39.495 26.009-39.618Q26.126-39.741 26.179-39.921Q26.232-40.101 26.232-40.273L26.232-40.745L26.513-40.745L26.513-40.257Q26.513-40.003 26.407-39.763Q26.302-39.523 26.105-39.370Q25.907-39.218 25.649-39.218Q25.333-39.218 25.081-39.341Q24.829-39.464 24.690-39.698Q24.552-39.933 24.552-40.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M35.797-40.273L30.484-40.273Q30.406-40.280 30.357-40.329Q30.309-40.378 30.309-40.456Q30.309-40.526 30.356-40.577Q30.402-40.628 30.484-40.640L35.797-40.640Q35.871-40.628 35.918-40.577Q35.965-40.526 35.965-40.456Q35.965-40.378 35.916-40.329Q35.867-40.280 35.797-40.273M35.797-41.960L30.484-41.960Q30.406-41.968 30.357-42.017Q30.309-42.066 30.309-42.144Q30.309-42.214 30.356-42.265Q30.402-42.316 30.484-42.327L35.797-42.327Q35.871-42.316 35.918-42.265Q35.965-42.214 35.965-42.144Q35.965-42.066 35.916-42.017Q35.867-41.968 35.797-41.960\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M41.999-39.296L39.616-39.296L39.616-39.593Q39.936-39.593 40.180-39.640Q40.425-39.687 40.425-39.855L40.425-44.198Q40.425-44.370 40.180-44.417Q39.936-44.464 39.616-44.464L39.616-44.761L41.999-44.761L41.999-44.464Q41.678-44.464 41.434-44.415Q41.190-44.366 41.190-44.198L41.190-42.288L43.729-42.288L43.729-44.198Q43.729-44.370 43.485-44.417Q43.241-44.464 42.921-44.464L42.921-44.761L45.303-44.761L45.303-44.464Q44.983-44.464 44.739-44.415Q44.495-44.366 44.495-44.198L44.495-39.855Q44.495-39.691 44.739-39.642Q44.983-39.593 45.303-39.593L45.303-39.296L42.921-39.296L42.921-39.593Q43.241-39.593 43.485-39.640Q43.729-39.687 43.729-39.855L43.729-41.991L41.190-41.991L41.190-39.855Q41.190-39.691 41.434-39.642Q41.678-39.593 41.999-39.593L41.999-39.296M50.358-39.296L45.975-39.296L45.975-39.593Q46.296-39.593 46.540-39.640Q46.784-39.687 46.784-39.855L46.784-44.198Q46.784-44.370 46.540-44.417Q46.296-44.464 45.975-44.464L45.975-44.761L48.561-44.761L48.561-44.464Q47.550-44.464 47.550-44.198L47.550-39.855Q47.550-39.683 47.641-39.638Q47.733-39.593 47.952-39.593L48.639-39.593Q49.112-39.593 49.421-39.718Q49.729-39.843 49.907-40.073Q50.085-40.304 50.176-40.630Q50.268-40.956 50.311-41.409L50.593-41.409\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M54.833-39.296L51.790-39.296L51.790-39.593Q52.552-39.593 52.735-39.632Q52.778-39.644 52.827-39.677Q52.876-39.710 52.901-39.753Q52.927-39.796 52.927-39.855L52.927-44.198Q52.927-44.374 52.835-44.419Q52.743-44.464 52.528-44.464L52.134-44.464Q51.438-44.464 51.149-44.175Q51.001-44.026 50.938-43.706Q50.876-43.386 50.833-42.913L50.552-42.913L50.712-44.761L55.911-44.761L56.071-42.913L55.790-42.913Q55.747-43.421 55.684-43.724Q55.622-44.026 55.470-44.175Q55.184-44.464 54.485-44.464L54.095-44.464Q53.880-44.464 53.788-44.421Q53.696-44.378 53.696-44.198L53.696-39.855Q53.696-39.780 53.751-39.716Q53.806-39.651 53.888-39.632Q54.071-39.593 54.833-39.593L54.833-39.296M57.208-37.890Q57.208-37.929 57.231-37.952Q57.505-38.237 57.647-38.601Q57.790-38.964 57.790-39.351Q57.692-39.296 57.567-39.296Q57.376-39.296 57.239-39.429Q57.102-39.562 57.102-39.761Q57.102-39.952 57.239-40.085Q57.376-40.218 57.567-40.218Q58.048-40.218 58.048-39.343Q58.048-39.054 57.976-38.773Q57.903-38.491 57.761-38.237Q57.618-37.983 57.423-37.776Q57.392-37.745 57.352-37.745Q57.306-37.745 57.257-37.790Q57.208-37.835 57.208-37.890M57.102-42.288Q57.102-42.472 57.239-42.608Q57.376-42.745 57.567-42.745Q57.759-42.745 57.892-42.612Q58.024-42.480 58.024-42.288Q58.024-42.089 57.892-41.956Q57.759-41.823 57.567-41.823Q57.376-41.823 57.239-41.960Q57.102-42.097 57.102-42.288\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M63.749-39.296L61.894-39.296L61.894-39.593Q62.167-39.593 62.335-39.640Q62.503-39.687 62.503-39.855L62.503-41.991Q62.503-42.206 62.440-42.302Q62.378-42.398 62.259-42.419Q62.140-42.441 61.894-42.441L61.894-42.737L63.085-42.823L63.085-42.089Q63.198-42.304 63.392-42.472Q63.585-42.640 63.823-42.732Q64.061-42.823 64.315-42.823Q65.276-42.823 65.452-42.112Q65.636-42.441 65.964-42.632Q66.292-42.823 66.671-42.823Q67.847-42.823 67.847-41.745L67.847-39.855Q67.847-39.687 68.015-39.640Q68.183-39.593 68.452-39.593L68.452-39.296L66.597-39.296L66.597-39.593Q66.870-39.593 67.038-39.638Q67.206-39.683 67.206-39.855L67.206-41.730Q67.206-42.116 67.081-42.343Q66.956-42.569 66.604-42.569Q66.300-42.569 66.044-42.407Q65.788-42.245 65.640-41.976Q65.491-41.706 65.491-41.409L65.491-39.855Q65.491-39.687 65.661-39.640Q65.831-39.593 66.101-39.593L66.101-39.296L64.245-39.296L64.245-39.593Q64.519-39.593 64.686-39.640Q64.854-39.687 64.854-39.855L64.854-41.730Q64.854-42.116 64.729-42.343Q64.604-42.569 64.253-42.569Q63.948-42.569 63.692-42.407Q63.436-42.245 63.288-41.976Q63.140-41.706 63.140-41.409L63.140-39.855Q63.140-39.687 63.310-39.640Q63.479-39.593 63.749-39.593L63.749-39.296M68.995-40.128Q68.995-40.612 69.397-40.907Q69.800-41.202 70.351-41.321Q70.901-41.441 71.394-41.441L71.394-41.730Q71.394-41.956 71.278-42.163Q71.163-42.370 70.966-42.489Q70.769-42.608 70.538-42.608Q70.112-42.608 69.827-42.503Q69.897-42.476 69.944-42.421Q69.991-42.366 70.017-42.296Q70.042-42.226 70.042-42.151Q70.042-42.046 69.991-41.954Q69.940-41.862 69.849-41.812Q69.757-41.761 69.651-41.761Q69.546-41.761 69.454-41.812Q69.362-41.862 69.311-41.954Q69.261-42.046 69.261-42.151Q69.261-42.569 69.649-42.716Q70.038-42.862 70.538-42.862Q70.870-42.862 71.224-42.732Q71.577-42.601 71.806-42.347Q72.034-42.093 72.034-41.745L72.034-39.944Q72.034-39.812 72.106-39.702Q72.179-39.593 72.308-39.593Q72.433-39.593 72.501-39.698Q72.569-39.804 72.569-39.944L72.569-40.456L72.851-40.456L72.851-39.944Q72.851-39.741 72.733-39.583Q72.616-39.425 72.435-39.341Q72.253-39.257 72.050-39.257Q71.819-39.257 71.667-39.429Q71.515-39.601 71.483-39.831Q71.323-39.550 71.015-39.384Q70.706-39.218 70.354-39.218Q69.843-39.218 69.419-39.441Q68.995-39.663 68.995-40.128M69.683-40.128Q69.683-39.843 69.909-39.657Q70.136-39.472 70.429-39.472Q70.675-39.472 70.899-39.589Q71.124-39.706 71.259-39.909Q71.394-40.112 71.394-40.366L71.394-41.198Q71.128-41.198 70.843-41.144Q70.558-41.089 70.286-40.960Q70.015-40.831 69.849-40.624Q69.683-40.417 69.683-40.128M73.186-41.023Q73.186-41.519 73.436-41.944Q73.686-42.370 74.106-42.616Q74.526-42.862 75.026-42.862Q75.565-42.862 75.956-42.737Q76.347-42.612 76.347-42.198Q76.347-42.093 76.296-42.001Q76.245-41.909 76.153-41.858Q76.061-41.808 75.952-41.808Q75.847-41.808 75.755-41.858Q75.663-41.909 75.612-42.001Q75.561-42.093 75.561-42.198Q75.561-42.421 75.729-42.526Q75.507-42.585 75.034-42.585Q74.737-42.585 74.522-42.446Q74.308-42.308 74.177-42.077Q74.046-41.847 73.987-41.577Q73.929-41.308 73.929-41.023Q73.929-40.628 74.061-40.278Q74.194-39.929 74.466-39.712Q74.737-39.495 75.136-39.495Q75.511-39.495 75.786-39.712Q76.061-39.929 76.163-40.288Q76.179-40.351 76.241-40.351L76.347-40.351Q76.382-40.351 76.407-40.323Q76.433-40.296 76.433-40.257L76.433-40.233Q76.300-39.753 75.915-39.485Q75.530-39.218 75.026-39.218Q74.663-39.218 74.329-39.355Q73.995-39.491 73.735-39.741Q73.476-39.991 73.331-40.327Q73.186-40.663 73.186-41.023\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M78.624-39.296L76.769-39.296L76.769-39.593Q77.042-39.593 77.210-39.640Q77.378-39.687 77.378-39.855L77.378-44.015Q77.378-44.230 77.315-44.325Q77.253-44.421 77.134-44.442Q77.015-44.464 76.769-44.464L76.769-44.761L77.991-44.847L77.991-42.144Q78.116-42.355 78.304-42.505Q78.491-42.655 78.718-42.739Q78.944-42.823 79.190-42.823Q80.358-42.823 80.358-41.745L80.358-39.855Q80.358-39.687 80.528-39.640Q80.698-39.593 80.968-39.593L80.968-39.296L79.112-39.296L79.112-39.593Q79.386-39.593 79.554-39.640Q79.722-39.687 79.722-39.855L79.722-41.730Q79.722-42.112 79.601-42.341Q79.479-42.569 79.128-42.569Q78.815-42.569 78.561-42.407Q78.308-42.245 78.161-41.976Q78.015-41.706 78.015-41.409L78.015-39.855Q78.015-39.687 78.185-39.640Q78.354-39.593 78.624-39.593L78.624-39.296M83.272-39.296L81.495-39.296L81.495-39.593Q81.769-39.593 81.936-39.640Q82.104-39.687 82.104-39.855L82.104-41.991Q82.104-42.206 82.048-42.302Q81.991-42.398 81.878-42.419Q81.765-42.441 81.519-42.441L81.519-42.737L82.718-42.823L82.718-39.855Q82.718-39.687 82.864-39.640Q83.011-39.593 83.272-39.593L83.272-39.296M81.831-44.218Q81.831-44.409 81.966-44.540Q82.101-44.671 82.296-44.671Q82.417-44.671 82.520-44.608Q82.624-44.546 82.686-44.442Q82.749-44.339 82.749-44.218Q82.749-44.023 82.618-43.888Q82.487-43.753 82.296-43.753Q82.097-43.753 81.964-43.886Q81.831-44.019 81.831-44.218M85.702-39.296L83.847-39.296L83.847-39.593Q84.120-39.593 84.288-39.640Q84.456-39.687 84.456-39.855L84.456-41.991Q84.456-42.206 84.394-42.302Q84.331-42.398 84.212-42.419Q84.093-42.441 83.847-42.441L83.847-42.737L85.038-42.823L85.038-42.089Q85.151-42.304 85.345-42.472Q85.538-42.640 85.776-42.732Q86.015-42.823 86.269-42.823Q87.436-42.823 87.436-41.745L87.436-39.855Q87.436-39.687 87.606-39.640Q87.776-39.593 88.046-39.593L88.046-39.296L86.190-39.296L86.190-39.593Q86.464-39.593 86.632-39.640Q86.800-39.687 86.800-39.855L86.800-41.730Q86.800-42.112 86.679-42.341Q86.558-42.569 86.206-42.569Q85.894-42.569 85.640-42.407Q85.386-42.245 85.239-41.976Q85.093-41.706 85.093-41.409L85.093-39.855Q85.093-39.687 85.263-39.640Q85.433-39.593 85.702-39.593L85.702-39.296M88.491-41.050Q88.491-41.530 88.724-41.946Q88.956-42.362 89.366-42.612Q89.776-42.862 90.253-42.862Q90.983-42.862 91.382-42.421Q91.780-41.980 91.780-41.249Q91.780-41.144 91.686-41.120L89.237-41.120L89.237-41.050Q89.237-40.640 89.358-40.284Q89.479-39.929 89.751-39.712Q90.022-39.495 90.452-39.495Q90.815-39.495 91.112-39.724Q91.409-39.952 91.511-40.304Q91.519-40.351 91.604-40.366L91.686-40.366Q91.780-40.339 91.780-40.257Q91.780-40.249 91.772-40.218Q91.710-39.991 91.571-39.808Q91.433-39.624 91.241-39.491Q91.050-39.358 90.831-39.288Q90.612-39.218 90.374-39.218Q90.003-39.218 89.665-39.355Q89.327-39.491 89.060-39.743Q88.792-39.995 88.642-40.335Q88.491-40.675 88.491-41.050M89.245-41.358L91.206-41.358Q91.206-41.663 91.104-41.954Q91.003-42.245 90.786-42.427Q90.569-42.608 90.253-42.608Q89.952-42.608 89.722-42.421Q89.491-42.233 89.368-41.942Q89.245-41.651 89.245-41.358\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 122.924)\">\u003Cpath d=\"M95.154-39.304L95.154-40.526Q95.154-40.554 95.186-40.585Q95.217-40.616 95.240-40.616L95.346-40.616Q95.416-40.616 95.432-40.554Q95.494-40.233 95.633-39.993Q95.771-39.753 96.004-39.612Q96.236-39.472 96.545-39.472Q96.783-39.472 96.992-39.532Q97.201-39.593 97.338-39.741Q97.475-39.890 97.475-40.136Q97.475-40.390 97.264-40.556Q97.053-40.722 96.783-40.776L96.162-40.890Q95.756-40.968 95.455-41.224Q95.154-41.480 95.154-41.855Q95.154-42.222 95.355-42.444Q95.557-42.667 95.881-42.765Q96.205-42.862 96.545-42.862Q97.010-42.862 97.307-42.655L97.529-42.839Q97.553-42.862 97.584-42.862L97.635-42.862Q97.666-42.862 97.693-42.835Q97.721-42.808 97.721-42.776L97.721-41.792Q97.721-41.761 97.695-41.732Q97.670-41.702 97.635-41.702L97.529-41.702Q97.494-41.702 97.467-41.730Q97.439-41.757 97.439-41.792Q97.439-42.191 97.187-42.411Q96.936-42.632 96.537-42.632Q96.182-42.632 95.898-42.509Q95.615-42.386 95.615-42.081Q95.615-41.862 95.816-41.730Q96.018-41.597 96.264-41.554L96.889-41.441Q97.318-41.351 97.627-41.054Q97.936-40.757 97.936-40.343Q97.936-39.773 97.537-39.495Q97.139-39.218 96.545-39.218Q95.994-39.218 95.643-39.554L95.346-39.241Q95.322-39.218 95.287-39.218L95.240-39.218Q95.217-39.218 95.186-39.249Q95.154-39.280 95.154-39.304M99.088-40.257L99.088-42.448L98.385-42.448L98.385-42.702Q98.740-42.702 98.982-42.935Q99.225-43.167 99.336-43.515Q99.447-43.862 99.447-44.218L99.728-44.218L99.728-42.745L100.904-42.745L100.904-42.448L99.728-42.448L99.728-40.273Q99.728-39.952 99.848-39.724Q99.967-39.495 100.248-39.495Q100.428-39.495 100.545-39.618Q100.662-39.741 100.715-39.921Q100.768-40.101 100.768-40.273L100.768-40.745L101.049-40.745L101.049-40.257Q101.049-40.003 100.943-39.763Q100.838-39.523 100.641-39.370Q100.443-39.218 100.186-39.218Q99.869-39.218 99.617-39.341Q99.365-39.464 99.227-39.698Q99.088-39.933 99.088-40.257M101.768-40.991Q101.768-41.495 102.023-41.927Q102.279-42.358 102.715-42.610Q103.150-42.862 103.650-42.862Q104.037-42.862 104.379-42.718Q104.721-42.573 104.982-42.312Q105.244-42.050 105.387-41.714Q105.529-41.378 105.529-40.991Q105.529-40.499 105.266-40.089Q105.002-39.679 104.572-39.448Q104.143-39.218 103.650-39.218Q103.158-39.218 102.725-39.450Q102.291-39.683 102.029-40.091Q101.768-40.499 101.768-40.991M103.650-39.495Q104.107-39.495 104.359-39.718Q104.611-39.941 104.699-40.292Q104.787-40.644 104.787-41.089Q104.787-41.519 104.693-41.857Q104.600-42.194 104.346-42.401Q104.092-42.608 103.650-42.608Q103.002-42.608 102.758-42.192Q102.514-41.776 102.514-41.089Q102.514-40.644 102.602-40.292Q102.689-39.941 102.941-39.718Q103.193-39.495 103.650-39.495M107.896-37.745L106.041-37.745L106.041-38.038Q106.311-38.038 106.478-38.083Q106.646-38.128 106.646-38.304L106.646-42.128Q106.646-42.335 106.490-42.388Q106.334-42.441 106.041-42.441L106.041-42.737L107.264-42.823L107.264-42.358Q107.494-42.581 107.809-42.702Q108.123-42.823 108.463-42.823Q108.936-42.823 109.340-42.577Q109.744-42.331 109.977-41.915Q110.209-41.499 110.209-41.023Q110.209-40.648 110.061-40.319Q109.912-39.991 109.643-39.739Q109.373-39.487 109.029-39.353Q108.686-39.218 108.326-39.218Q108.037-39.218 107.766-39.339Q107.494-39.460 107.287-39.671L107.287-38.304Q107.287-38.128 107.455-38.083Q107.623-38.038 107.896-38.038L107.896-37.745M107.287-41.960L107.287-40.120Q107.439-39.831 107.701-39.651Q107.963-39.472 108.271-39.472Q108.557-39.472 108.779-39.610Q109.002-39.749 109.154-39.980Q109.307-40.210 109.385-40.482Q109.463-40.753 109.463-41.023Q109.463-41.355 109.338-41.712Q109.213-42.069 108.965-42.306Q108.717-42.542 108.369-42.542Q108.045-42.542 107.750-42.386Q107.455-42.230 107.287-41.960M110.775-39.304L110.775-40.526Q110.775-40.554 110.807-40.585Q110.838-40.616 110.861-40.616L110.967-40.616Q111.037-40.616 111.053-40.554Q111.115-40.233 111.254-39.993Q111.393-39.753 111.625-39.612Q111.857-39.472 112.166-39.472Q112.404-39.472 112.613-39.532Q112.822-39.593 112.959-39.741Q113.096-39.890 113.096-40.136Q113.096-40.390 112.885-40.556Q112.674-40.722 112.404-40.776L111.783-40.890Q111.377-40.968 111.076-41.224Q110.775-41.480 110.775-41.855Q110.775-42.222 110.977-42.444Q111.178-42.667 111.502-42.765Q111.826-42.862 112.166-42.862Q112.631-42.862 112.928-42.655L113.150-42.839Q113.174-42.862 113.205-42.862L113.256-42.862Q113.287-42.862 113.314-42.835Q113.342-42.808 113.342-42.776L113.342-41.792Q113.342-41.761 113.316-41.732Q113.291-41.702 113.256-41.702L113.150-41.702Q113.115-41.702 113.088-41.730Q113.061-41.757 113.061-41.792Q113.061-42.191 112.809-42.411Q112.557-42.632 112.158-42.632Q111.803-42.632 111.519-42.509Q111.236-42.386 111.236-42.081Q111.236-41.862 111.437-41.730Q111.639-41.597 111.885-41.554L112.510-41.441Q112.939-41.351 113.248-41.054Q113.557-40.757 113.557-40.343Q113.557-39.773 113.158-39.495Q112.760-39.218 112.166-39.218Q111.615-39.218 111.264-39.554L110.967-39.241Q110.943-39.218 110.908-39.218L110.861-39.218Q110.838-39.218 110.807-39.249Q110.775-39.280 110.775-39.304\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M184.98 93.578h207.706\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">nop (left) and halt (right). Both fetch one byte and compute valP; nop falls through, while halt sets Stat to HLT so no further cycle begins. Every other stage is idle for both.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:666.144px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 499.608 172.771\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-73.29 -25.474)\">\u003Cpath d=\"M11.642-38.812L11.642-38.902Q11.700-39.109 11.892-39.133L12.603-39.133L12.603-41.461L11.892-41.461Q11.696-41.484 11.642-41.703L11.642-41.789Q11.700-42 11.892-42.023L12.993-42.023Q13.192-42.004 13.243-41.789L13.243-41.461Q13.505-41.746 13.860-41.904Q14.216-42.062 14.603-42.062Q14.896-42.062 15.130-41.928Q15.364-41.793 15.364-41.527Q15.364-41.359 15.255-41.242Q15.146-41.125 14.978-41.125Q14.825-41.125 14.710-41.236Q14.595-41.347 14.595-41.504Q14.220-41.504 13.905-41.303Q13.591-41.101 13.417-40.767Q13.243-40.433 13.243-40.054L13.243-39.133L14.189-39.133Q14.396-39.109 14.435-38.902L14.435-38.812Q14.396-38.597 14.189-38.574L11.892-38.574Q11.700-38.597 11.642-38.812M15.888-38.812L15.888-38.902Q15.946-39.109 16.138-39.133L16.849-39.133L16.849-41.461L16.138-41.461Q15.942-41.484 15.888-41.703L15.888-41.789Q15.946-42 16.138-42.023L17.239-42.023Q17.439-42.004 17.489-41.789L17.489-41.461Q17.751-41.746 18.107-41.904Q18.462-42.062 18.849-42.062Q19.142-42.062 19.376-41.928Q19.610-41.793 19.610-41.527Q19.610-41.359 19.501-41.242Q19.392-41.125 19.224-41.125Q19.071-41.125 18.956-41.236Q18.841-41.347 18.841-41.504Q18.466-41.504 18.151-41.303Q17.837-41.101 17.663-40.767Q17.489-40.433 17.489-40.054L17.489-39.133L18.435-39.133Q18.642-39.109 18.681-38.902L18.681-38.812Q18.642-38.597 18.435-38.574L16.138-38.574Q15.946-38.597 15.888-38.812M19.857-38.812L19.857-38.902Q19.907-39.113 20.103-39.133L20.302-39.133L20.302-41.461L20.103-41.461Q19.896-41.484 19.857-41.703L19.857-41.789Q19.907-42.004 20.103-42.023L20.583-42.023Q20.774-42 20.833-41.789Q21.153-42.062 21.567-42.062Q21.759-42.062 21.927-41.953Q22.095-41.844 22.169-41.672Q22.345-41.863 22.567-41.963Q22.790-42.062 23.032-42.062Q23.450-42.062 23.605-41.720Q23.759-41.379 23.759-40.910L23.759-39.133L23.958-39.133Q24.169-39.109 24.208-38.902L24.208-38.812Q24.157-38.597 23.958-38.574L23.142-38.574Q22.946-38.597 22.896-38.812L22.896-38.902Q22.946-39.109 23.142-39.133L23.232-39.133L23.232-40.879Q23.232-41.504 22.982-41.504Q22.649-41.504 22.472-41.193Q22.294-40.883 22.294-40.519L22.294-39.133L22.497-39.133Q22.704-39.109 22.743-38.902L22.743-38.812Q22.692-38.597 22.497-38.574L21.681-38.574Q21.482-38.597 21.431-38.812L21.431-38.902Q21.482-39.109 21.681-39.133L21.767-39.133L21.767-40.879Q21.767-41.504 21.521-41.504Q21.189-41.504 21.011-41.191Q20.833-40.879 20.833-40.519L20.833-39.133L21.032-39.133Q21.239-39.109 21.278-38.902L21.278-38.812Q21.228-38.594 21.032-38.574L20.103-38.574Q19.896-38.597 19.857-38.812M26.278-38.535Q25.806-38.535 25.421-38.779Q25.036-39.023 24.814-39.433Q24.591-39.844 24.591-40.301Q24.591-40.644 24.716-40.967Q24.841-41.289 25.071-41.543Q25.302-41.797 25.608-41.941Q25.915-42.086 26.278-42.086Q26.642-42.086 26.954-41.939Q27.267-41.793 27.489-41.547Q27.712-41.301 27.839-40.980Q27.966-40.660 27.966-40.301Q27.966-39.844 27.741-39.431Q27.517-39.019 27.132-38.777Q26.747-38.535 26.278-38.535M26.278-39.094Q26.743-39.094 27.034-39.488Q27.325-39.883 27.325-40.367Q27.325-40.660 27.190-40.928Q27.056-41.195 26.815-41.361Q26.575-41.527 26.278-41.527Q25.974-41.527 25.735-41.361Q25.497-41.195 25.362-40.928Q25.228-40.660 25.228-40.367Q25.228-39.886 25.521-39.490Q25.814-39.094 26.278-39.094M30.060-38.797L29.173-41.461L28.853-41.461Q28.653-41.484 28.603-41.703L28.603-41.789Q28.653-42 28.853-42.023L30.013-42.023Q30.208-42.004 30.259-41.789L30.259-41.703Q30.208-41.484 30.013-41.461L29.732-41.461L30.524-39.086L31.314-41.461L31.036-41.461Q30.837-41.484 30.786-41.703L30.786-41.789Q30.837-42 31.036-42.023L32.196-42.023Q32.392-42 32.442-41.789L32.442-41.703Q32.392-41.484 32.196-41.461L31.876-41.461L30.989-38.797Q30.946-38.683 30.845-38.609Q30.743-38.535 30.618-38.535L30.427-38.535Q30.310-38.535 30.206-38.607Q30.103-38.679 30.060-38.797M34.962-37.031L34.962-37.117Q35.013-37.336 35.208-37.359L35.673-37.359L35.673-38.957Q35.220-38.535 34.610-38.535Q34.255-38.535 33.950-38.678Q33.646-38.820 33.413-39.070Q33.181-39.320 33.056-39.642Q32.931-39.965 32.931-40.301Q32.931-40.785 33.169-41.185Q33.407-41.586 33.814-41.824Q34.220-42.062 34.696-42.062Q35.259-42.062 35.673-41.672L35.673-41.832Q35.724-42.043 35.923-42.062L36.064-42.062Q36.263-42.039 36.314-41.832L36.314-37.359L36.778-37.359Q36.974-37.336 37.024-37.117L37.024-37.031Q36.974-36.820 36.778-36.797L35.208-36.797Q35.013-36.820 34.962-37.031M34.657-39.094Q35.028-39.094 35.304-39.347Q35.579-39.601 35.673-39.965L35.673-40.582Q35.630-40.820 35.507-41.033Q35.384-41.246 35.187-41.375Q34.989-41.504 34.747-41.504Q34.431-41.504 34.159-41.338Q33.888-41.172 33.730-40.890Q33.571-40.609 33.571-40.293Q33.571-39.828 33.886-39.461Q34.200-39.094 34.657-39.094\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.474)\">\u003Cpath d=\"M41.392-38.812L41.392-38.902Q41.450-39.109 41.642-39.133L42.353-39.133L42.353-41.461L41.642-41.461Q41.446-41.484 41.392-41.703L41.392-41.789Q41.450-42 41.642-42.023L42.743-42.023Q42.942-42.004 42.993-41.789L42.993-41.461Q43.255-41.746 43.610-41.904Q43.966-42.062 44.353-42.062Q44.646-42.062 44.880-41.928Q45.114-41.793 45.114-41.527Q45.114-41.359 45.005-41.242Q44.896-41.125 44.728-41.125Q44.575-41.125 44.460-41.236Q44.345-41.347 44.345-41.504Q43.970-41.504 43.655-41.303Q43.341-41.101 43.167-40.767Q42.993-40.433 42.993-40.054L42.993-39.133L43.939-39.133Q44.146-39.109 44.185-38.902L44.185-38.812Q44.146-38.597 43.939-38.574L41.642-38.574Q41.450-38.597 41.392-38.812M45.646-38.812L45.646-38.902Q45.704-39.113 45.896-39.133L46.118-39.133L47.071-43.316Q47.095-43.433 47.190-43.508Q47.286-43.582 47.399-43.582L47.673-43.582Q47.786-43.582 47.882-43.506Q47.978-43.429 48.001-43.316L48.950-39.133L49.177-39.133Q49.384-39.109 49.423-38.902L49.423-38.812Q49.372-38.597 49.177-38.574L48.095-38.574Q47.899-38.597 47.849-38.812L47.849-38.902Q47.899-39.109 48.095-39.133L48.294-39.133Q48.165-39.699 48.142-39.781L46.927-39.781Q46.884-39.597 46.774-39.133L46.974-39.133Q47.173-39.109 47.224-38.902L47.224-38.812Q47.173-38.597 46.974-38.574L45.896-38.574Q45.689-38.597 45.646-38.812M47.048-40.344L48.024-40.344Q47.544-42.476 47.544-42.820L47.536-42.820Q47.536-42.636 47.396-41.953Q47.255-41.269 47.048-40.344M51.380-37.461Q51.267-37.461 51.177-37.551Q51.087-37.640 51.087-37.750Q51.087-37.926 51.278-38Q51.497-38.051 51.669-38.209Q51.841-38.367 51.907-38.590Q51.884-38.590 51.853-38.574L51.790-38.574Q51.560-38.574 51.394-38.736Q51.228-38.898 51.228-39.133Q51.228-39.367 51.392-39.527Q51.556-39.687 51.790-39.687Q52.001-39.687 52.165-39.566Q52.329-39.445 52.419-39.252Q52.509-39.058 52.509-38.847Q52.509-38.371 52.210-37.982Q51.911-37.594 51.446-37.469Q51.423-37.461 51.380-37.461M54.130-38.812L54.130-38.902Q54.189-39.109 54.380-39.133L55.091-39.133L55.091-41.461L54.380-41.461Q54.185-41.484 54.130-41.703L54.130-41.789Q54.189-42 54.380-42.023L55.481-42.023Q55.681-42.004 55.731-41.789L55.731-41.461Q55.993-41.746 56.349-41.904Q56.704-42.062 57.091-42.062Q57.384-42.062 57.618-41.928Q57.853-41.793 57.853-41.527Q57.853-41.359 57.743-41.242Q57.634-41.125 57.466-41.125Q57.314-41.125 57.198-41.236Q57.083-41.347 57.083-41.504Q56.708-41.504 56.394-41.303Q56.079-41.101 55.905-40.767Q55.731-40.433 55.731-40.054L55.731-39.133L56.677-39.133Q56.884-39.109 56.923-38.902L56.923-38.812Q56.884-38.597 56.677-38.574L54.380-38.574Q54.189-38.597 54.130-38.812M58.321-38.812L58.321-38.902Q58.360-39.109 58.567-39.133L58.856-39.133L58.856-42.902L58.567-42.902Q58.360-42.926 58.321-43.140L58.321-43.230Q58.360-43.437 58.567-43.461L60.528-43.461Q60.798-43.461 61.038-43.365Q61.278-43.269 61.470-43.099Q61.661-42.929 61.771-42.701Q61.880-42.472 61.880-42.207Q61.880-41.840 61.640-41.551Q61.399-41.261 61.032-41.133Q61.314-41.070 61.546-40.896Q61.778-40.722 61.913-40.467Q62.048-40.211 62.048-39.926Q62.048-39.566 61.866-39.256Q61.685-38.945 61.370-38.760Q61.056-38.574 60.696-38.574L58.567-38.574Q58.360-38.597 58.321-38.812M59.497-40.840L59.497-39.133L60.528-39.133Q60.755-39.133 60.958-39.236Q61.161-39.340 61.286-39.519Q61.411-39.699 61.411-39.926Q61.411-40.156 61.310-40.365Q61.208-40.574 61.026-40.707Q60.845-40.840 60.618-40.840L59.497-40.840M59.497-42.902L59.497-41.398L60.360-41.398Q60.704-41.398 60.974-41.633Q61.243-41.867 61.243-42.207Q61.243-42.394 61.146-42.554Q61.048-42.715 60.882-42.808Q60.716-42.902 60.528-42.902\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-51.377h216.24\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M14.112-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L15.982-43.356L16.194-41.719L15.927-41.719Q15.849-42.330 15.697-42.609Q15.544-42.887 15.240-42.981Q14.936-43.075 14.311-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.107L13.764-41.107Q14.133-41.107 14.317-41.161Q14.502-41.216 14.581-41.389Q14.659-41.561 14.659-41.927L14.926-41.927L14.926-40.010L14.659-40.010Q14.659-40.375 14.581-40.548Q14.502-40.720 14.317-40.773Q14.133-40.826 13.764-40.826L13.210-40.826L13.210-39.063Q13.210-38.854 14.112-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M16.206-40.109Q16.206-40.430 16.331-40.719Q16.456-41.008 16.682-41.231Q16.907-41.455 17.203-41.575Q17.498-41.695 17.816-41.695Q18.144-41.695 18.406-41.595Q18.667-41.496 18.843-41.314Q19.019-41.131 19.113-40.873Q19.207-40.615 19.207-40.283Q19.207-40.191 19.125-40.170L16.870-40.170L16.870-40.109Q16.870-39.521 17.153-39.138Q17.437-38.755 18.004-38.755Q18.326-38.755 18.594-38.948Q18.862-39.141 18.951-39.456Q18.958-39.497 19.033-39.511L19.125-39.511Q19.207-39.487 19.207-39.415Q19.207-39.408 19.201-39.381Q19.088-38.984 18.717-38.745Q18.346-38.506 17.922-38.506Q17.485-38.506 17.085-38.714Q16.685-38.923 16.446-39.290Q16.206-39.657 16.206-40.109M16.876-40.379L18.691-40.379Q18.691-40.656 18.594-40.908Q18.496-41.161 18.298-41.317Q18.100-41.472 17.816-41.472Q17.539-41.472 17.326-41.314Q17.112-41.155 16.994-40.900Q16.876-40.645 16.876-40.379M20.322-39.415L20.322-41.312L19.683-41.312L19.683-41.534Q20-41.534 20.217-41.744Q20.434-41.954 20.535-42.264Q20.636-42.573 20.636-42.881L20.903-42.881L20.903-41.592L21.979-41.592L21.979-41.312L20.903-41.312L20.903-39.428Q20.903-39.152 21.007-38.953Q21.111-38.755 21.371-38.755Q21.528-38.755 21.634-38.859Q21.740-38.964 21.790-39.117Q21.839-39.271 21.839-39.428L21.839-39.842L22.106-39.842L22.106-39.415Q22.106-39.189 22.007-38.979Q21.908-38.769 21.723-38.637Q21.538-38.506 21.309-38.506Q20.872-38.506 20.597-38.743Q20.322-38.981 20.322-39.415M22.916-40.085Q22.916-40.413 23.051-40.714Q23.186-41.014 23.422-41.235Q23.658-41.455 23.962-41.575Q24.266-41.695 24.591-41.695Q25.097-41.695 25.445-41.592Q25.794-41.490 25.794-41.114Q25.794-40.967 25.696-40.866Q25.599-40.765 25.452-40.765Q25.298-40.765 25.199-40.864Q25.100-40.963 25.100-41.114Q25.100-41.302 25.240-41.394Q25.038-41.445 24.598-41.445Q24.242-41.445 24.013-41.249Q23.784-41.052 23.683-40.743Q23.582-40.433 23.582-40.085Q23.582-39.736 23.709-39.430Q23.835-39.124 24.090-38.940Q24.345-38.755 24.700-38.755Q24.922-38.755 25.107-38.839Q25.291-38.923 25.426-39.078Q25.561-39.234 25.620-39.442Q25.633-39.497 25.688-39.497L25.801-39.497Q25.831-39.497 25.854-39.473Q25.876-39.449 25.876-39.415L25.876-39.394Q25.790-39.107 25.602-38.909Q25.414-38.711 25.150-38.608Q24.885-38.506 24.591-38.506Q24.160-38.506 23.772-38.712Q23.384-38.919 23.150-39.282Q22.916-39.644 22.916-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M27.950-38.574L26.316-38.574L26.316-38.854Q26.545-38.854 26.694-38.888Q26.843-38.923 26.843-39.063L26.843-42.682Q26.843-42.952 26.735-43.014Q26.627-43.075 26.316-43.075L26.316-43.356L27.396-43.431L27.396-41.045Q27.502-41.230 27.680-41.372Q27.858-41.513 28.066-41.587Q28.275-41.660 28.500-41.660Q29.006-41.660 29.290-41.437Q29.574-41.213 29.574-40.717L29.574-39.063Q29.574-38.926 29.722-38.890Q29.871-38.854 30.097-38.854L30.097-38.574L28.466-38.574L28.466-38.854Q28.695-38.854 28.844-38.888Q28.993-38.923 28.993-39.063L28.993-40.703Q28.993-41.038 28.873-41.238Q28.753-41.438 28.439-41.438Q28.169-41.438 27.935-41.302Q27.701-41.165 27.562-40.931Q27.424-40.697 27.424-40.423L27.424-39.063Q27.424-38.926 27.574-38.890Q27.725-38.854 27.950-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M11.642-38.812L11.642-38.902Q11.700-39.109 11.892-39.133L12.603-39.133L12.603-41.461L11.892-41.461Q11.696-41.484 11.642-41.703L11.642-41.789Q11.700-42 11.892-42.023L12.993-42.023Q13.192-42.004 13.243-41.789L13.243-41.461Q13.505-41.746 13.860-41.904Q14.216-42.062 14.603-42.062Q14.896-42.062 15.130-41.928Q15.364-41.793 15.364-41.527Q15.364-41.359 15.255-41.242Q15.146-41.125 14.978-41.125Q14.825-41.125 14.710-41.236Q14.595-41.347 14.595-41.504Q14.220-41.504 13.905-41.303Q13.591-41.101 13.417-40.767Q13.243-40.433 13.243-40.054L13.243-39.133L14.189-39.133Q14.396-39.109 14.435-38.902L14.435-38.812Q14.396-38.597 14.189-38.574L11.892-38.574Q11.700-38.597 11.642-38.812M15.896-38.812L15.896-38.902Q15.954-39.113 16.146-39.133L16.368-39.133L17.321-43.316Q17.345-43.433 17.440-43.508Q17.536-43.582 17.649-43.582L17.923-43.582Q18.036-43.582 18.132-43.506Q18.228-43.429 18.251-43.316L19.200-39.133L19.427-39.133Q19.634-39.109 19.673-38.902L19.673-38.812Q19.622-38.597 19.427-38.574L18.345-38.574Q18.149-38.597 18.099-38.812L18.099-38.902Q18.149-39.109 18.345-39.133L18.544-39.133Q18.415-39.699 18.392-39.781L17.177-39.781Q17.134-39.597 17.024-39.133L17.224-39.133Q17.423-39.109 17.474-38.902L17.474-38.812Q17.423-38.597 17.224-38.574L16.146-38.574Q15.939-38.597 15.896-38.812M17.298-40.344L18.274-40.344Q17.794-42.476 17.794-42.820L17.786-42.820Q17.786-42.636 17.646-41.953Q17.505-41.269 17.298-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M20.638-39.039Q20.638-39.222 20.774-39.359Q20.911-39.496 21.103-39.496Q21.294-39.496 21.427-39.363Q21.560-39.230 21.560-39.039Q21.560-38.840 21.427-38.707Q21.294-38.574 21.103-38.574Q20.911-38.574 20.774-38.711Q20.638-38.847 20.638-39.039M20.638-41.566Q20.638-41.750 20.774-41.886Q20.911-42.023 21.103-42.023Q21.294-42.023 21.427-41.890Q21.560-41.758 21.560-41.566Q21.560-41.367 21.427-41.234Q21.294-41.101 21.103-41.101Q20.911-41.101 20.774-41.238Q20.638-41.375 20.638-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M22.503-38.812L22.503-38.902Q22.561-39.109 22.753-39.133L23.464-39.133L23.464-41.461L22.753-41.461Q22.557-41.484 22.503-41.703L22.503-41.789Q22.561-42 22.753-42.023L23.854-42.023Q24.053-42.004 24.104-41.789L24.104-41.461Q24.366-41.746 24.721-41.904Q25.077-42.062 25.464-42.062Q25.757-42.062 25.991-41.928Q26.225-41.793 26.225-41.527Q26.225-41.359 26.116-41.242Q26.007-41.125 25.839-41.125Q25.686-41.125 25.571-41.236Q25.456-41.347 25.456-41.504Q25.081-41.504 24.766-41.303Q24.452-41.101 24.278-40.767Q24.104-40.433 24.104-40.054L24.104-39.133L25.050-39.133Q25.257-39.109 25.296-38.902L25.296-38.812Q25.257-38.597 25.050-38.574L22.753-38.574Q22.561-38.597 22.503-38.812M26.694-38.812L26.694-38.902Q26.733-39.109 26.940-39.133L27.229-39.133L27.229-42.902L26.940-42.902Q26.733-42.926 26.694-43.140L26.694-43.230Q26.733-43.437 26.940-43.461L28.901-43.461Q29.171-43.461 29.411-43.365Q29.651-43.269 29.843-43.099Q30.034-42.929 30.143-42.701Q30.253-42.472 30.253-42.207Q30.253-41.840 30.012-41.551Q29.772-41.261 29.405-41.133Q29.686-41.070 29.919-40.896Q30.151-40.722 30.286-40.467Q30.421-40.211 30.421-39.926Q30.421-39.566 30.239-39.256Q30.057-38.945 29.743-38.760Q29.428-38.574 29.069-38.574L26.940-38.574Q26.733-38.597 26.694-38.812M27.870-40.840L27.870-39.133L28.901-39.133Q29.128-39.133 29.331-39.236Q29.534-39.340 29.659-39.519Q29.784-39.699 29.784-39.926Q29.784-40.156 29.682-40.365Q29.581-40.574 29.399-40.707Q29.218-40.840 28.991-40.840L27.870-40.840M27.870-42.902L27.870-41.398L28.733-41.398Q29.077-41.398 29.346-41.633Q29.616-41.867 29.616-42.207Q29.616-42.394 29.518-42.554Q29.421-42.715 29.255-42.808Q29.089-42.902 28.901-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M39.102-39.551L33.789-39.551Q33.711-39.558 33.662-39.607Q33.614-39.656 33.614-39.734Q33.614-39.804 33.661-39.855Q33.707-39.906 33.789-39.918L39.102-39.918Q39.176-39.906 39.223-39.855Q39.270-39.804 39.270-39.734Q39.270-39.656 39.221-39.607Q39.172-39.558 39.102-39.551M39.102-41.238L33.789-41.238Q33.711-41.246 33.662-41.295Q33.614-41.344 33.614-41.422Q33.614-41.492 33.661-41.543Q33.707-41.594 33.789-41.605L39.102-41.605Q39.176-41.594 39.223-41.543Q39.270-41.492 39.270-41.422Q39.270-41.344 39.221-41.295Q39.172-41.246 39.102-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M44.352-38.574L42.634-38.574Q42.594-38.574 42.567-38.615Q42.540-38.656 42.540-38.703L42.563-38.804Q42.571-38.855 42.657-38.871Q43.387-38.871 43.512-39.398L44.540-43.496Q44.563-43.566 44.563-43.629Q44.563-43.691 44.497-43.711Q44.352-43.742 43.930-43.742Q43.825-43.773 43.825-43.871L43.856-43.972Q43.868-44.019 43.946-44.039L45.344-44.039Q45.403-44.039 45.440-44.010Q45.477-43.980 45.481-43.926L46.192-39.351L49.192-43.926Q49.270-44.039 49.387-44.039L50.731-44.039Q50.778-44.027 50.805-43.996Q50.833-43.965 50.833-43.918L50.809-43.812Q50.790-43.758 50.716-43.742Q50.274-43.742 50.114-43.703Q49.966-43.668 49.907-43.437L48.825-39.117Q48.809-39.023 48.809-38.980Q48.809-38.922 48.876-38.902Q49.016-38.871 49.442-38.871Q49.540-38.844 49.540-38.750L49.512-38.644Q49.505-38.594 49.426-38.574L47.344-38.574Q47.305-38.574 47.278-38.615Q47.251-38.656 47.251-38.703L47.274-38.804Q47.282-38.855 47.372-38.871Q47.809-38.871 47.968-38.910Q48.126-38.949 48.169-39.176L49.305-43.719L46.009-38.687Q45.942-38.574 45.809-38.574Q45.676-38.574 45.665-38.687L44.891-43.652L43.809-39.344Q43.794-39.242 43.794-39.191Q43.794-38.992 43.958-38.931Q44.122-38.871 44.372-38.871Q44.466-38.844 44.466-38.750L44.442-38.644Q44.434-38.594 44.352-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M53.318-37.463L51.027-37.463L51.027-37.721Q51.903-37.721 51.903-37.894L51.903-40.973Q51.710-40.885 51.478-40.848Q51.247-40.812 50.992-40.812L50.992-41.069Q51.370-41.069 51.691-41.154Q52.011-41.239 52.240-41.453L52.360-41.453Q52.392-41.453 52.417-41.430Q52.442-41.406 52.442-41.368L52.442-37.894Q52.442-37.721 53.318-37.721\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M56.612-36.574L55.436-36.574L55.436-44.574L56.612-44.574L56.612-44.207L55.803-44.207L55.803-36.941L56.612-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M56.989-38.812L56.989-38.902Q57.028-39.109 57.239-39.133L57.547-39.133L57.547-42.902L57.239-42.902Q57.028-42.926 56.989-43.140L56.989-43.230Q57.028-43.437 57.239-43.461L59.188-43.461Q59.586-43.461 59.932-43.260Q60.278-43.058 60.485-42.713Q60.692-42.367 60.692-41.965Q60.692-41.558 60.487-41.215Q60.282-40.871 59.936-40.666Q59.590-40.461 59.188-40.461L58.188-40.461L58.188-39.133L58.500-39.133Q58.711-39.109 58.750-38.902L58.750-38.812Q58.711-38.597 58.500-38.574L57.239-38.574Q57.028-38.597 56.989-38.812M58.188-42.902L58.188-41.023L59.028-41.023Q59.289-41.023 59.526-41.146Q59.762-41.269 59.907-41.484Q60.051-41.699 60.051-41.965Q60.051-42.234 59.907-42.445Q59.762-42.656 59.526-42.779Q59.289-42.902 59.028-42.902L58.188-42.902M63.317-38.496Q62.867-38.496 62.502-38.720Q62.137-38.945 61.883-39.328Q61.629-39.711 61.504-40.154Q61.379-40.597 61.379-41.023Q61.379-41.449 61.504-41.888Q61.629-42.328 61.883-42.711Q62.137-43.094 62.496-43.318Q62.856-43.543 63.317-43.543Q63.594-43.543 63.852-43.451Q64.110-43.359 64.325-43.191L64.457-43.429Q64.485-43.480 64.539-43.511Q64.594-43.543 64.653-43.543L64.731-43.543Q64.825-43.531 64.887-43.472Q64.950-43.414 64.961-43.308L64.961-41.980Q64.950-41.879 64.887-41.816Q64.825-41.754 64.731-41.742L64.563-41.742Q64.461-41.754 64.399-41.820Q64.336-41.886 64.325-41.980Q64.285-42.246 64.162-42.470Q64.039-42.695 63.836-42.838Q63.633-42.980 63.371-42.980Q63.039-42.980 62.787-42.797Q62.535-42.613 62.364-42.312Q62.192-42.011 62.106-41.670Q62.020-41.328 62.020-41.023Q62.020-40.719 62.104-40.377Q62.188-40.035 62.360-39.732Q62.532-39.429 62.789-39.242Q63.047-39.054 63.379-39.054Q63.762-39.054 64.043-39.328Q64.325-39.601 64.325-39.988Q64.352-40.199 64.563-40.222L64.731-40.222Q64.961-40.183 64.961-39.957Q64.961-39.640 64.825-39.369Q64.688-39.097 64.453-38.900Q64.219-38.703 63.928-38.599Q63.637-38.496 63.317-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M68.426-40.390L65.953-40.390Q65.875-40.402 65.826-40.451Q65.778-40.500 65.778-40.574Q65.778-40.648 65.826-40.697Q65.875-40.746 65.953-40.758L68.426-40.758L68.426-43.238Q68.453-43.406 68.610-43.406Q68.684-43.406 68.733-43.357Q68.782-43.308 68.793-43.238L68.793-40.758L71.266-40.758Q71.434-40.726 71.434-40.574Q71.434-40.422 71.266-40.390L68.793-40.390L68.793-37.910Q68.782-37.840 68.733-37.791Q68.684-37.742 68.610-37.742Q68.453-37.742 68.426-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M75.510-38.574L72.717-38.574L72.717-38.871Q73.779-38.871 73.779-39.133L73.779-43.301Q73.350-43.086 72.670-43.086L72.670-43.383Q73.689-43.383 74.205-43.894L74.350-43.894Q74.424-43.875 74.443-43.797L74.443-39.133Q74.443-38.871 75.510-38.871L75.510-38.574M77.521-36.574L76.346-36.574L76.346-36.941L77.154-36.941L77.154-44.207L76.346-44.207L76.346-44.574L77.521-44.574L77.521-36.574M79.346-37.168Q79.346-37.207 79.369-37.230Q79.643-37.515 79.785-37.879Q79.928-38.242 79.928-38.629Q79.830-38.574 79.705-38.574Q79.514-38.574 79.377-38.707Q79.240-38.840 79.240-39.039Q79.240-39.230 79.377-39.363Q79.514-39.496 79.705-39.496Q80.186-39.496 80.186-38.621Q80.186-38.332 80.113-38.051Q80.041-37.769 79.898-37.515Q79.756-37.261 79.561-37.054Q79.529-37.023 79.490-37.023Q79.443-37.023 79.395-37.068Q79.346-37.113 79.346-37.168M79.240-41.566Q79.240-41.750 79.377-41.886Q79.514-42.023 79.705-42.023Q79.896-42.023 80.029-41.890Q80.162-41.758 80.162-41.566Q80.162-41.367 80.029-41.234Q79.896-41.101 79.705-41.101Q79.514-41.101 79.377-41.238Q79.240-41.375 79.240-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M85.378-38.797L84.492-41.461L84.171-41.461Q83.972-41.484 83.921-41.703L83.921-41.789Q83.972-42 84.171-42.023L85.331-42.023Q85.527-42.004 85.577-41.789L85.577-41.703Q85.527-41.484 85.331-41.461L85.050-41.461L85.843-39.086L86.632-41.461L86.355-41.461Q86.156-41.484 86.105-41.703L86.105-41.789Q86.156-42 86.355-42.023L87.515-42.023Q87.710-42 87.761-41.789L87.761-41.703Q87.710-41.484 87.515-41.461L87.195-41.461L86.308-38.797Q86.265-38.683 86.163-38.609Q86.062-38.535 85.937-38.535L85.745-38.535Q85.628-38.535 85.525-38.607Q85.421-38.679 85.378-38.797M88.374-39.687Q88.374-40.133 88.788-40.390Q89.202-40.648 89.743-40.748Q90.284-40.847 90.792-40.855Q90.792-41.070 90.658-41.222Q90.523-41.375 90.316-41.451Q90.109-41.527 89.898-41.527Q89.554-41.527 89.394-41.504L89.394-41.445Q89.394-41.277 89.275-41.162Q89.156-41.047 88.992-41.047Q88.816-41.047 88.701-41.170Q88.585-41.293 88.585-41.461Q88.585-41.867 88.966-41.976Q89.347-42.086 89.906-42.086Q90.175-42.086 90.443-42.008Q90.710-41.929 90.935-41.779Q91.159-41.629 91.296-41.408Q91.433-41.187 91.433-40.910L91.433-39.191Q91.433-39.133 91.960-39.133Q92.156-39.113 92.206-38.902L92.206-38.812Q92.156-38.597 91.960-38.574L91.816-38.574Q91.472-38.574 91.243-38.621Q91.015-38.668 90.870-38.855Q90.409-38.535 89.702-38.535Q89.367-38.535 89.062-38.676Q88.757-38.816 88.566-39.078Q88.374-39.340 88.374-39.687M89.015-39.679Q89.015-39.406 89.257-39.250Q89.499-39.094 89.784-39.094Q90.003-39.094 90.236-39.152Q90.468-39.211 90.630-39.349Q90.792-39.488 90.792-39.711L90.792-40.301Q90.511-40.301 90.095-40.244Q89.679-40.187 89.347-40.049Q89.015-39.910 89.015-39.679M92.663-38.812L92.663-38.902Q92.714-39.109 92.909-39.133L94.015-39.133L94.015-42.902L92.909-42.902Q92.714-42.926 92.663-43.140L92.663-43.230Q92.714-43.437 92.909-43.461L94.406-43.461Q94.597-43.437 94.656-43.230L94.656-39.133L95.757-39.133Q95.956-39.109 96.007-38.902L96.007-38.812Q95.956-38.597 95.757-38.574L92.909-38.574Q92.714-38.597 92.663-38.812M96.644-38.812L96.644-38.902Q96.683-39.109 96.894-39.133L97.202-39.133L97.202-42.902L96.894-42.902Q96.683-42.926 96.644-43.140L96.644-43.230Q96.683-43.437 96.894-43.461L98.843-43.461Q99.242-43.461 99.587-43.260Q99.933-43.058 100.140-42.713Q100.347-42.367 100.347-41.965Q100.347-41.558 100.142-41.215Q99.937-40.871 99.591-40.666Q99.245-40.461 98.843-40.461L97.843-40.461L97.843-39.133L98.156-39.133Q98.367-39.109 98.406-38.902L98.406-38.812Q98.367-38.597 98.156-38.574L96.894-38.574Q96.683-38.597 96.644-38.812M97.843-42.902L97.843-41.023L98.683-41.023Q98.945-41.023 99.181-41.146Q99.417-41.269 99.562-41.484Q99.706-41.699 99.706-41.965Q99.706-42.234 99.562-42.445Q99.417-42.656 99.181-42.779Q98.945-42.902 98.683-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M109.044-39.551L103.731-39.551Q103.653-39.558 103.604-39.607Q103.556-39.656 103.556-39.734Q103.556-39.804 103.603-39.855Q103.649-39.906 103.731-39.918L109.044-39.918Q109.118-39.906 109.165-39.855Q109.212-39.804 109.212-39.734Q109.212-39.656 109.163-39.607Q109.114-39.558 109.044-39.551M109.044-41.238L103.731-41.238Q103.653-41.246 103.604-41.295Q103.556-41.344 103.556-41.422Q103.556-41.492 103.603-41.543Q103.649-41.594 103.731-41.605L109.044-41.605Q109.118-41.594 109.165-41.543Q109.212-41.492 109.212-41.422Q109.212-41.344 109.163-41.295Q109.114-41.246 109.044-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M112.240-38.812L112.240-38.902Q112.279-39.109 112.490-39.133L112.798-39.133L112.798-42.902L112.490-42.902Q112.279-42.926 112.240-43.140L112.240-43.230Q112.279-43.437 112.490-43.461L114.439-43.461Q114.837-43.461 115.183-43.260Q115.529-43.058 115.736-42.713Q115.943-42.367 115.943-41.965Q115.943-41.558 115.738-41.215Q115.533-40.871 115.187-40.666Q114.841-40.461 114.439-40.461L113.439-40.461L113.439-39.133L113.751-39.133Q113.962-39.109 114.001-38.902L114.001-38.812Q113.962-38.597 113.751-38.574L112.490-38.574Q112.279-38.597 112.240-38.812M113.439-42.902L113.439-41.023L114.279-41.023Q114.540-41.023 114.777-41.146Q115.013-41.269 115.158-41.484Q115.302-41.699 115.302-41.965Q115.302-42.234 115.158-42.445Q115.013-42.656 114.777-42.779Q114.540-42.902 114.279-42.902L113.439-42.902M118.568-38.496Q118.118-38.496 117.753-38.720Q117.388-38.945 117.134-39.328Q116.880-39.711 116.755-40.154Q116.630-40.597 116.630-41.023Q116.630-41.449 116.755-41.888Q116.880-42.328 117.134-42.711Q117.388-43.094 117.747-43.318Q118.107-43.543 118.568-43.543Q118.845-43.543 119.103-43.451Q119.361-43.359 119.576-43.191L119.708-43.429Q119.736-43.480 119.790-43.511Q119.845-43.543 119.904-43.543L119.982-43.543Q120.076-43.531 120.138-43.472Q120.201-43.414 120.212-43.308L120.212-41.980Q120.201-41.879 120.138-41.816Q120.076-41.754 119.982-41.742L119.814-41.742Q119.712-41.754 119.650-41.820Q119.587-41.886 119.576-41.980Q119.536-42.246 119.413-42.470Q119.290-42.695 119.087-42.838Q118.884-42.980 118.622-42.980Q118.290-42.980 118.038-42.797Q117.786-42.613 117.615-42.312Q117.443-42.011 117.357-41.670Q117.271-41.328 117.271-41.023Q117.271-40.719 117.355-40.377Q117.439-40.035 117.611-39.732Q117.783-39.429 118.040-39.242Q118.298-39.054 118.630-39.054Q119.013-39.054 119.294-39.328Q119.576-39.601 119.576-39.988Q119.603-40.199 119.814-40.222L119.982-40.222Q120.212-40.183 120.212-39.957Q120.212-39.640 120.076-39.369Q119.939-39.097 119.704-38.900Q119.470-38.703 119.179-38.599Q118.888-38.496 118.568-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M123.677-40.390L121.204-40.390Q121.126-40.402 121.077-40.451Q121.029-40.500 121.029-40.574Q121.029-40.648 121.077-40.697Q121.126-40.746 121.204-40.758L123.677-40.758L123.677-43.238Q123.704-43.406 123.861-43.406Q123.935-43.406 123.984-43.357Q124.033-43.308 124.044-43.238L124.044-40.758L126.517-40.758Q126.685-40.726 126.685-40.574Q126.685-40.422 126.517-40.390L124.044-40.390L124.044-37.910Q124.033-37.840 123.984-37.791Q123.935-37.742 123.861-37.742Q123.704-37.742 123.677-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M130.753-38.574L127.593-38.574L127.593-38.781Q127.593-38.808 127.616-38.840L128.968-40.238Q129.347-40.625 129.595-40.914Q129.843-41.203 130.017-41.560Q130.190-41.918 130.190-42.308Q130.190-42.656 130.058-42.949Q129.925-43.242 129.671-43.420Q129.417-43.597 129.062-43.597Q128.702-43.597 128.411-43.402Q128.120-43.207 127.976-42.879L128.030-42.879Q128.214-42.879 128.339-42.758Q128.464-42.636 128.464-42.445Q128.464-42.265 128.339-42.136Q128.214-42.008 128.030-42.008Q127.851-42.008 127.722-42.136Q127.593-42.265 127.593-42.445Q127.593-42.847 127.813-43.183Q128.034-43.519 128.399-43.707Q128.765-43.894 129.167-43.894Q129.647-43.894 130.063-43.707Q130.480-43.519 130.731-43.158Q130.983-42.797 130.983-42.308Q130.983-41.949 130.829-41.646Q130.675-41.344 130.423-41.084Q130.171-40.824 129.821-40.539Q129.472-40.254 129.304-40.101L128.374-39.261L129.089-39.261Q130.464-39.261 130.503-39.301Q130.573-39.379 130.616-39.564Q130.659-39.750 130.702-40.039L130.983-40.039\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-26.624h216.24\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M14.584-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.584-43.356Q15.069-43.356 15.505-43.161Q15.941-42.966 16.264-42.624Q16.587-42.282 16.765-41.842Q16.942-41.401 16.942-40.919Q16.942-40.433 16.758-40.010Q16.573-39.586 16.250-39.264Q15.927-38.943 15.495-38.759Q15.063-38.574 14.584-38.574M13.196-42.864L13.196-39.063Q13.196-38.923 13.285-38.888Q13.374-38.854 13.562-38.854L14.386-38.854Q15.011-38.854 15.415-39.116Q15.818-39.377 16.006-39.844Q16.194-40.310 16.194-40.919Q16.194-41.397 16.102-41.790Q16.009-42.183 15.760-42.481Q15.521-42.768 15.157-42.922Q14.793-43.075 14.386-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.711-40.109Q17.711-40.430 17.836-40.719Q17.961-41.008 18.187-41.231Q18.412-41.455 18.708-41.575Q19.003-41.695 19.321-41.695Q19.649-41.695 19.911-41.595Q20.172-41.496 20.348-41.314Q20.524-41.131 20.618-40.873Q20.712-40.615 20.712-40.283Q20.712-40.191 20.630-40.170L18.375-40.170L18.375-40.109Q18.375-39.521 18.658-39.138Q18.942-38.755 19.509-38.755Q19.831-38.755 20.099-38.948Q20.367-39.141 20.456-39.456Q20.463-39.497 20.538-39.511L20.630-39.511Q20.712-39.487 20.712-39.415Q20.712-39.408 20.706-39.381Q20.593-38.984 20.222-38.745Q19.851-38.506 19.427-38.506Q18.990-38.506 18.590-38.714Q18.190-38.923 17.951-39.290Q17.711-39.657 17.711-40.109M18.381-40.379L20.196-40.379Q20.196-40.656 20.099-40.908Q20.002-41.161 19.803-41.317Q19.605-41.472 19.321-41.472Q19.044-41.472 18.831-41.314Q18.617-41.155 18.499-40.900Q18.381-40.645 18.381-40.379M21.300-40.085Q21.300-40.413 21.435-40.714Q21.570-41.014 21.806-41.235Q22.042-41.455 22.346-41.575Q22.650-41.695 22.975-41.695Q23.481-41.695 23.830-41.592Q24.178-41.490 24.178-41.114Q24.178-40.967 24.081-40.866Q23.983-40.765 23.836-40.765Q23.683-40.765 23.584-40.864Q23.484-40.963 23.484-41.114Q23.484-41.302 23.625-41.394Q23.423-41.445 22.982-41.445Q22.627-41.445 22.398-41.249Q22.169-41.052 22.068-40.743Q21.967-40.433 21.967-40.085Q21.967-39.736 22.093-39.430Q22.220-39.124 22.474-38.940Q22.729-38.755 23.085-38.755Q23.307-38.755 23.491-38.839Q23.676-38.923 23.811-39.078Q23.946-39.234 24.004-39.442Q24.018-39.497 24.072-39.497L24.185-39.497Q24.216-39.497 24.238-39.473Q24.260-39.449 24.260-39.415L24.260-39.394Q24.175-39.107 23.987-38.909Q23.799-38.711 23.534-38.608Q23.269-38.506 22.975-38.506Q22.544-38.506 22.157-38.712Q21.769-38.919 21.534-39.282Q21.300-39.644 21.300-40.085M24.807-40.057Q24.807-40.399 24.942-40.698Q25.077-40.997 25.316-41.221Q25.556-41.445 25.874-41.570Q26.191-41.695 26.523-41.695Q26.967-41.695 27.367-41.479Q27.767-41.264 28.001-40.886Q28.235-40.509 28.235-40.057Q28.235-39.716 28.094-39.432Q27.952-39.148 27.707-38.941Q27.463-38.735 27.154-38.620Q26.844-38.506 26.523-38.506Q26.092-38.506 25.691-38.707Q25.289-38.909 25.048-39.261Q24.807-39.613 24.807-40.057M26.523-38.755Q27.125-38.755 27.348-39.133Q27.572-39.511 27.572-40.143Q27.572-40.755 27.338-41.114Q27.104-41.472 26.523-41.472Q25.470-41.472 25.470-40.143Q25.470-39.511 25.696-39.133Q25.921-38.755 26.523-38.755\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M29.066-40.085Q29.066-40.423 29.207-40.714Q29.347-41.004 29.591-41.218Q29.835-41.431 30.140-41.546Q30.444-41.660 30.769-41.660Q31.039-41.660 31.302-41.561Q31.565-41.462 31.756-41.284L31.756-42.682Q31.756-42.952 31.649-43.014Q31.541-43.075 31.230-43.075L31.230-43.356L32.307-43.431L32.307-39.247Q32.307-39.059 32.361-38.976Q32.416-38.892 32.517-38.873Q32.618-38.854 32.833-38.854L32.833-38.574L31.726-38.506L31.726-38.923Q31.309-38.506 30.683-38.506Q30.252-38.506 29.880-38.718Q29.507-38.929 29.287-39.290Q29.066-39.651 29.066-40.085M30.741-38.728Q30.950-38.728 31.136-38.800Q31.322-38.871 31.476-39.008Q31.630-39.145 31.726-39.323L31.726-40.932Q31.640-41.079 31.495-41.199Q31.350-41.319 31.180-41.378Q31.011-41.438 30.830-41.438Q30.270-41.438 30.001-41.049Q29.733-40.659 29.733-40.078Q29.733-39.507 29.967-39.117Q30.201-38.728 30.741-38.728M33.441-40.109Q33.441-40.430 33.566-40.719Q33.691-41.008 33.917-41.231Q34.142-41.455 34.438-41.575Q34.733-41.695 35.051-41.695Q35.379-41.695 35.641-41.595Q35.902-41.496 36.078-41.314Q36.254-41.131 36.348-40.873Q36.442-40.615 36.442-40.283Q36.442-40.191 36.360-40.170L34.105-40.170L34.105-40.109Q34.105-39.521 34.388-39.138Q34.672-38.755 35.239-38.755Q35.561-38.755 35.829-38.948Q36.097-39.141 36.186-39.456Q36.193-39.497 36.268-39.511L36.360-39.511Q36.442-39.487 36.442-39.415Q36.442-39.408 36.436-39.381Q36.323-38.984 35.952-38.745Q35.581-38.506 35.157-38.506Q34.720-38.506 34.320-38.714Q33.920-38.923 33.681-39.290Q33.441-39.657 33.441-40.109M34.111-40.379L35.926-40.379Q35.926-40.656 35.829-40.908Q35.731-41.161 35.533-41.317Q35.335-41.472 35.051-41.472Q34.774-41.472 34.561-41.314Q34.347-41.155 34.229-40.900Q34.111-40.645 34.111-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.388-38.812L24.388-38.902Q24.446-39.113 24.638-39.133L24.860-39.133L25.814-43.316Q25.837-43.433 25.933-43.508Q26.028-43.582 26.142-43.582L26.415-43.582Q26.528-43.582 26.624-43.506Q26.720-43.429 26.743-43.316L27.692-39.133L27.919-39.133Q28.126-39.109 28.165-38.902L28.165-38.812Q28.114-38.597 27.919-38.574L26.837-38.574Q26.642-38.597 26.591-38.812L26.591-38.902Q26.642-39.109 26.837-39.133L27.036-39.133Q26.907-39.699 26.884-39.781L25.669-39.781Q25.626-39.597 25.517-39.133L25.716-39.133Q25.915-39.109 25.966-38.902L25.966-38.812Q25.915-38.597 25.716-38.574L24.638-38.574Q24.431-38.597 24.388-38.812M25.790-40.344L26.767-40.344Q26.286-42.476 26.286-42.820L26.278-42.820Q26.278-42.636 26.138-41.953Q25.997-41.269 25.790-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M42.378-38.574L40.241-38.574Q40.206-38.574 40.175-38.615Q40.144-38.656 40.144-38.703L40.167-38.804Q40.179-38.855 40.265-38.871Q40.706-38.871 40.864-38.910Q41.023-38.949 41.066-39.176L42.144-43.496Q42.167-43.566 42.167-43.629Q42.167-43.691 42.105-43.711Q41.960-43.742 41.538-43.742Q41.433-43.769 41.433-43.871L41.464-43.972Q41.472-44.019 41.554-44.039L44.066-44.039Q44.472-44.039 44.915-43.916Q45.358-43.793 45.663-43.517Q45.968-43.242 45.968-42.820Q45.968-42.433 45.698-42.117Q45.429-41.801 45.030-41.592Q44.632-41.383 44.257-41.293Q44.566-41.168 44.763-40.929Q44.960-40.691 44.960-40.375Q44.960-40.332 44.958-40.304Q44.956-40.277 44.952-40.246L44.874-39.551Q44.843-39.261 44.843-39.140Q44.843-38.926 44.911-38.795Q44.980-38.664 45.187-38.664Q45.441-38.664 45.636-38.888Q45.831-39.113 45.898-39.390Q45.905-39.437 45.991-39.453L46.073-39.453Q46.167-39.426 46.167-39.344Q46.167-39.336 46.159-39.301Q46.108-39.086 45.964-38.875Q45.819-38.664 45.612-38.535Q45.405-38.406 45.179-38.406Q44.874-38.406 44.605-38.492Q44.335-38.578 44.163-38.777Q43.991-38.976 43.991-39.285Q43.991-39.394 44.034-39.574L44.210-40.269Q44.233-40.390 44.233-40.484Q44.233-40.820 43.972-41.002Q43.710-41.183 43.347-41.183L42.296-41.183L41.776-39.117Q41.761-39.023 41.761-38.980Q41.761-38.941 41.774-38.928Q41.788-38.914 41.823-38.902Q41.968-38.871 42.394-38.871Q42.487-38.844 42.487-38.750L42.464-38.644Q42.456-38.594 42.378-38.574M42.858-43.437L42.362-41.437L43.304-41.437Q43.648-41.437 43.964-41.506Q44.280-41.574 44.554-41.742Q44.741-41.867 44.878-42.068Q45.015-42.269 45.083-42.502Q45.151-42.734 45.151-42.957Q45.151-43.414 44.784-43.578Q44.417-43.742 43.882-43.742L43.265-43.742Q43.093-43.742 43.030-43.728Q42.968-43.715 42.935-43.656Q42.901-43.597 42.858-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M48.372-36.574L47.196-36.574L47.196-44.574L48.372-44.574L48.372-44.207L47.563-44.207L47.563-36.941L48.372-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M48.788-38.812L48.788-38.902Q48.846-39.109 49.038-39.133L49.749-39.133L49.749-41.461L49.038-41.461Q48.842-41.484 48.788-41.703L48.788-41.789Q48.846-42 49.038-42.023L50.139-42.023Q50.338-42.004 50.389-41.789L50.389-41.461Q50.651-41.746 51.006-41.904Q51.362-42.062 51.749-42.062Q52.042-42.062 52.276-41.928Q52.510-41.793 52.510-41.527Q52.510-41.359 52.401-41.242Q52.292-41.125 52.124-41.125Q51.971-41.125 51.856-41.236Q51.741-41.347 51.741-41.504Q51.366-41.504 51.051-41.303Q50.737-41.101 50.563-40.767Q50.389-40.433 50.389-40.054L50.389-39.133L51.335-39.133Q51.542-39.109 51.581-38.902L51.581-38.812Q51.542-38.597 51.335-38.574L49.038-38.574Q48.846-38.597 48.788-38.812M53.042-38.812L53.042-38.902Q53.100-39.113 53.292-39.133L53.514-39.133L54.467-43.316Q54.491-43.433 54.586-43.508Q54.682-43.582 54.795-43.582L55.069-43.582Q55.182-43.582 55.278-43.506Q55.374-43.429 55.397-43.316L56.346-39.133L56.573-39.133Q56.780-39.109 56.819-38.902L56.819-38.812Q56.768-38.597 56.573-38.574L55.491-38.574Q55.295-38.597 55.245-38.812L55.245-38.902Q55.295-39.109 55.491-39.133L55.690-39.133Q55.561-39.699 55.538-39.781L54.323-39.781Q54.280-39.597 54.170-39.133L54.370-39.133Q54.569-39.109 54.620-38.902L54.620-38.812Q54.569-38.597 54.370-38.574L53.292-38.574Q53.085-38.597 53.042-38.812M54.444-40.344L55.420-40.344Q54.940-42.476 54.940-42.820L54.932-42.820Q54.932-42.636 54.792-41.953Q54.651-41.269 54.444-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M58.424-36.574L57.249-36.574L57.249-36.941L58.057-36.941L58.057-44.207L57.249-44.207L57.249-44.574L58.424-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-2.439h216.24\"\u002F>\u003Cg transform=\"translate(-37.008 50.761)\">\u003Cpath d=\"M16.201-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L16.088-43.356L16.296-41.719L16.033-41.719Q15.975-42.190 15.873-42.455Q15.770-42.720 15.586-42.853Q15.401-42.987 15.129-43.031Q14.857-43.075 14.358-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.199L13.784-41.199Q14.174-41.199 14.357-41.250Q14.540-41.302 14.622-41.474Q14.704-41.647 14.704-42.019L14.967-42.019L14.967-40.098L14.704-40.098Q14.704-40.471 14.622-40.644Q14.540-40.816 14.357-40.867Q14.174-40.919 13.784-40.919L13.210-40.919L13.210-39.063Q13.210-38.923 13.299-38.888Q13.388-38.854 13.576-38.854L14.423-38.854Q14.953-38.854 15.263-38.923Q15.572-38.991 15.760-39.158Q15.948-39.326 16.055-39.628Q16.163-39.931 16.249-40.444L16.515-40.444L16.201-38.574M18.286-38.574L16.963-38.574L16.963-38.854Q17.523-38.854 17.903-39.254L18.617-40.051L17.705-41.100Q17.568-41.247 17.419-41.279Q17.271-41.312 17.004-41.312L17.004-41.592L18.504-41.592L18.504-41.312Q18.313-41.312 18.313-41.178Q18.313-41.148 18.344-41.100L18.939-40.416L19.379-40.912Q19.492-41.042 19.492-41.158Q19.492-41.220 19.455-41.266Q19.417-41.312 19.359-41.312L19.359-41.592L20.675-41.592L20.675-41.312Q20.114-41.312 19.735-40.912L19.113-40.211L20.107-39.063Q20.207-38.964 20.307-38.919Q20.408-38.875 20.519-38.865Q20.630-38.854 20.808-38.854L20.808-38.574L19.315-38.574L19.315-38.854Q19.379-38.854 19.439-38.888Q19.499-38.923 19.499-38.988Q19.499-39.035 19.468-39.063L18.792-39.849L18.258-39.254Q18.146-39.124 18.146-39.008Q18.146-38.943 18.187-38.899Q18.228-38.854 18.286-38.854L18.286-38.574M21.263-40.109Q21.263-40.430 21.388-40.719Q21.512-41.008 21.738-41.231Q21.963-41.455 22.259-41.575Q22.555-41.695 22.873-41.695Q23.201-41.695 23.462-41.595Q23.724-41.496 23.900-41.314Q24.076-41.131 24.170-40.873Q24.264-40.615 24.264-40.283Q24.264-40.191 24.182-40.170L21.926-40.170L21.926-40.109Q21.926-39.521 22.210-39.138Q22.493-38.755 23.061-38.755Q23.382-38.755 23.650-38.948Q23.919-39.141 24.007-39.456Q24.014-39.497 24.089-39.511L24.182-39.511Q24.264-39.487 24.264-39.415Q24.264-39.408 24.257-39.381Q24.144-38.984 23.773-38.745Q23.402-38.506 22.979-38.506Q22.541-38.506 22.141-38.714Q21.741-38.923 21.502-39.290Q21.263-39.657 21.263-40.109M21.933-40.379L23.748-40.379Q23.748-40.656 23.650-40.908Q23.553-41.161 23.355-41.317Q23.156-41.472 22.873-41.472Q22.596-41.472 22.382-41.314Q22.169-41.155 22.051-40.900Q21.933-40.645 21.933-40.379M24.852-40.085Q24.852-40.413 24.987-40.714Q25.122-41.014 25.357-41.235Q25.593-41.455 25.898-41.575Q26.202-41.695 26.526-41.695Q27.032-41.695 27.381-41.592Q27.730-41.490 27.730-41.114Q27.730-40.967 27.632-40.866Q27.535-40.765 27.388-40.765Q27.234-40.765 27.135-40.864Q27.036-40.963 27.036-41.114Q27.036-41.302 27.176-41.394Q26.974-41.445 26.533-41.445Q26.178-41.445 25.949-41.249Q25.720-41.052 25.619-40.743Q25.518-40.433 25.518-40.085Q25.518-39.736 25.645-39.430Q25.771-39.124 26.026-38.940Q26.280-38.755 26.636-38.755Q26.858-38.755 27.043-38.839Q27.227-38.923 27.362-39.078Q27.497-39.234 27.555-39.442Q27.569-39.497 27.624-39.497L27.736-39.497Q27.767-39.497 27.789-39.473Q27.812-39.449 27.812-39.415L27.812-39.394Q27.726-39.107 27.538-38.909Q27.350-38.711 27.085-38.608Q26.820-38.506 26.526-38.506Q26.096-38.506 25.708-38.712Q25.320-38.919 25.086-39.282Q24.852-39.644 24.852-40.085M28.974-39.408L28.974-40.912Q28.974-41.182 28.866-41.243Q28.758-41.305 28.447-41.305L28.447-41.585L29.555-41.660L29.555-39.428L29.555-39.408Q29.555-39.128 29.606-38.984Q29.657-38.841 29.799-38.784Q29.941-38.728 30.228-38.728Q30.481-38.728 30.686-38.868Q30.891-39.008 31.007-39.234Q31.124-39.459 31.124-39.709L31.124-40.912Q31.124-41.182 31.016-41.243Q30.908-41.305 30.597-41.305L30.597-41.585L31.705-41.660L31.705-39.247Q31.705-39.056 31.758-38.974Q31.811-38.892 31.911-38.873Q32.012-38.854 32.228-38.854L32.228-38.574L31.151-38.506L31.151-39.070Q31.042-38.888 30.896-38.765Q30.751-38.642 30.565-38.574Q30.378-38.506 30.177-38.506Q28.974-38.506 28.974-39.408M33.342-39.415L33.342-41.312L32.703-41.312L32.703-41.534Q33.021-41.534 33.238-41.744Q33.455-41.954 33.555-42.264Q33.656-42.573 33.656-42.881L33.923-42.881L33.923-41.592L35-41.592L35-41.312L33.923-41.312L33.923-39.428Q33.923-39.152 34.027-38.953Q34.131-38.755 34.391-38.755Q34.548-38.755 34.654-38.859Q34.760-38.964 34.810-39.117Q34.859-39.271 34.859-39.428L34.859-39.842L35.126-39.842L35.126-39.415Q35.126-39.189 35.027-38.979Q34.928-38.769 34.743-38.637Q34.559-38.506 34.330-38.506Q33.892-38.506 33.617-38.743Q33.342-38.981 33.342-39.415M35.895-40.109Q35.895-40.430 36.020-40.719Q36.145-41.008 36.370-41.231Q36.596-41.455 36.891-41.575Q37.187-41.695 37.505-41.695Q37.833-41.695 38.095-41.595Q38.356-41.496 38.532-41.314Q38.708-41.131 38.802-40.873Q38.896-40.615 38.896-40.283Q38.896-40.191 38.814-40.170L36.558-40.170L36.558-40.109Q36.558-39.521 36.842-39.138Q37.126-38.755 37.693-38.755Q38.014-38.755 38.283-38.948Q38.551-39.141 38.640-39.456Q38.647-39.497 38.722-39.511L38.814-39.511Q38.896-39.487 38.896-39.415Q38.896-39.408 38.889-39.381Q38.776-38.984 38.406-38.745Q38.035-38.506 37.611-38.506Q37.173-38.506 36.773-38.714Q36.374-38.923 36.134-39.290Q35.895-39.657 35.895-40.109M36.565-40.379L38.380-40.379Q38.380-40.656 38.283-40.908Q38.185-41.161 37.987-41.317Q37.789-41.472 37.505-41.472Q37.228-41.472 37.014-41.314Q36.801-41.155 36.683-40.900Q36.565-40.645 36.565-40.379\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(6.378 50.53)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.341-38.812L24.341-38.902Q24.380-39.109 24.591-39.133L24.899-39.133L24.899-42.902L24.591-42.902Q24.380-42.926 24.341-43.140L24.341-43.230Q24.380-43.437 24.591-43.461L27.798-43.461Q27.993-43.437 28.044-43.230L28.044-42.390Q27.993-42.176 27.798-42.148L27.653-42.148Q27.458-42.176 27.403-42.390L27.403-42.902L25.540-42.902L25.540-41.383L26.517-41.383L26.517-41.597Q26.567-41.804 26.767-41.832L26.911-41.832Q27.107-41.804 27.157-41.597L27.157-40.613Q27.107-40.398 26.911-40.375L26.767-40.375Q26.567-40.398 26.517-40.613L26.517-40.820L25.540-40.820L25.540-39.133L27.583-39.133L27.583-39.773Q27.634-39.980 27.829-40.008L27.974-40.008Q28.169-39.980 28.220-39.773L28.220-38.812Q28.169-38.594 27.974-38.574L24.591-38.574Q24.380-38.597 24.341-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.53)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.53)\">\u003Cpath d=\"M41.874-38.406Q41.171-38.406 40.771-38.806Q40.370-39.207 40.226-39.816Q40.081-40.426 40.081-41.125Q40.081-41.648 40.151-42.111Q40.222-42.574 40.415-42.986Q40.608-43.398 40.966-43.646Q41.323-43.894 41.874-43.894Q42.425-43.894 42.782-43.646Q43.140-43.398 43.331-42.988Q43.523-42.578 43.593-42.109Q43.663-41.640 43.663-41.125Q43.663-40.426 43.521-39.818Q43.378-39.211 42.978-38.808Q42.577-38.406 41.874-38.406M41.874-38.664Q42.347-38.664 42.579-39.099Q42.812-39.535 42.866-40.074Q42.921-40.613 42.921-41.254Q42.921-42.250 42.737-42.943Q42.554-43.636 41.874-43.636Q41.507-43.636 41.286-43.398Q41.066-43.160 40.970-42.803Q40.874-42.445 40.849-42.074Q40.823-41.703 40.823-41.254Q40.823-40.613 40.878-40.074Q40.933-39.535 41.165-39.099Q41.398-38.664 41.874-38.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.53)\">\u003Cpath d=\"M49.013-40.390L46.540-40.390Q46.462-40.402 46.413-40.451Q46.365-40.500 46.365-40.574Q46.365-40.648 46.413-40.697Q46.462-40.746 46.540-40.758L49.013-40.758L49.013-43.238Q49.040-43.406 49.197-43.406Q49.271-43.406 49.320-43.357Q49.369-43.308 49.380-43.238L49.380-40.758L51.853-40.758Q52.021-40.726 52.021-40.574Q52.021-40.422 51.853-40.390L49.380-40.390L49.380-37.910Q49.369-37.840 49.320-37.791Q49.271-37.742 49.197-37.742Q49.040-37.742 49.013-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.53)\">\u003Cpath d=\"M56.048-38.797L55.162-41.461L54.841-41.461Q54.642-41.484 54.591-41.703L54.591-41.789Q54.642-42 54.841-42.023L56.001-42.023Q56.197-42.004 56.247-41.789L56.247-41.703Q56.197-41.484 56.001-41.461L55.720-41.461L56.513-39.086L57.302-41.461L57.025-41.461Q56.826-41.484 56.775-41.703L56.775-41.789Q56.826-42 57.025-42.023L58.185-42.023Q58.380-42 58.431-41.789L58.431-41.703Q58.380-41.484 58.185-41.461L57.865-41.461L56.978-38.797Q56.935-38.683 56.833-38.609Q56.732-38.535 56.607-38.535L56.415-38.535Q56.298-38.535 56.195-38.607Q56.091-38.679 56.048-38.797M59.044-39.687Q59.044-40.133 59.458-40.390Q59.872-40.648 60.413-40.748Q60.955-40.847 61.462-40.855Q61.462-41.070 61.328-41.222Q61.193-41.375 60.986-41.451Q60.779-41.527 60.568-41.527Q60.224-41.527 60.064-41.504L60.064-41.445Q60.064-41.277 59.945-41.162Q59.826-41.047 59.662-41.047Q59.486-41.047 59.371-41.170Q59.255-41.293 59.255-41.461Q59.255-41.867 59.636-41.976Q60.017-42.086 60.576-42.086Q60.845-42.086 61.113-42.008Q61.380-41.929 61.605-41.779Q61.830-41.629 61.966-41.408Q62.103-41.187 62.103-40.910L62.103-39.191Q62.103-39.133 62.630-39.133Q62.826-39.113 62.876-38.902L62.876-38.812Q62.826-38.597 62.630-38.574L62.486-38.574Q62.142-38.574 61.913-38.621Q61.685-38.668 61.540-38.855Q61.080-38.535 60.372-38.535Q60.037-38.535 59.732-38.676Q59.427-38.816 59.236-39.078Q59.044-39.340 59.044-39.687M59.685-39.679Q59.685-39.406 59.927-39.250Q60.169-39.094 60.455-39.094Q60.673-39.094 60.906-39.152Q61.138-39.211 61.300-39.349Q61.462-39.488 61.462-39.711L61.462-40.301Q61.181-40.301 60.765-40.244Q60.349-40.187 60.017-40.049Q59.685-39.910 59.685-39.679M63.333-38.812L63.333-38.902Q63.384-39.109 63.580-39.133L64.685-39.133L64.685-42.902L63.580-42.902Q63.384-42.926 63.333-43.140L63.333-43.230Q63.384-43.437 63.580-43.461L65.076-43.461Q65.267-43.437 65.326-43.230L65.326-39.133L66.427-39.133Q66.626-39.109 66.677-38.902L66.677-38.812Q66.626-38.597 66.427-38.574L63.580-38.574Q63.384-38.597 63.333-38.812M67.361-38.812L67.361-38.902Q67.419-39.113 67.611-39.133L67.833-39.133L68.787-43.316Q68.810-43.433 68.906-43.508Q69.001-43.582 69.115-43.582L69.388-43.582Q69.501-43.582 69.597-43.506Q69.693-43.429 69.716-43.316L70.665-39.133L70.892-39.133Q71.099-39.109 71.138-38.902L71.138-38.812Q71.087-38.597 70.892-38.574L69.810-38.574Q69.615-38.597 69.564-38.812L69.564-38.902Q69.615-39.109 69.810-39.133L70.009-39.133Q69.880-39.699 69.857-39.781L68.642-39.781Q68.599-39.597 68.490-39.133L68.689-39.133Q68.888-39.109 68.939-38.902L68.939-38.812Q68.888-38.597 68.689-38.574L67.611-38.574Q67.404-38.597 67.361-38.812M68.763-40.344L69.740-40.344Q69.259-42.476 69.259-42.820L69.251-42.820Q69.251-42.636 69.111-41.953Q68.970-41.269 68.763-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 21.746h216.24\"\u002F>\u003Cg transform=\"translate(-37.856 74.266)\">\u003Cpath d=\"M13.576-38.574L11.839-38.574L11.839-38.854Q12.561-38.854 12.561-39.254L12.561-42.864Q12.561-43.075 11.839-43.075L11.839-43.356L13.196-43.356Q13.292-43.356 13.343-43.257L15.018-39.282L16.690-43.257Q16.737-43.356 16.836-43.356L18.187-43.356L18.187-43.075Q17.465-43.075 17.465-42.864L17.465-39.063Q17.465-38.854 18.187-38.854L18.187-38.574L16.129-38.574L16.129-38.854Q16.850-38.854 16.850-39.063L16.850-43.075L14.998-38.673Q14.950-38.574 14.840-38.574Q14.728-38.574 14.680-38.673L12.855-43.004L12.855-39.254Q12.855-38.854 13.576-38.854L13.576-38.574M18.880-40.109Q18.880-40.430 19.005-40.719Q19.130-41.008 19.356-41.231Q19.581-41.455 19.877-41.575Q20.172-41.695 20.490-41.695Q20.818-41.695 21.080-41.595Q21.341-41.496 21.517-41.314Q21.693-41.131 21.787-40.873Q21.881-40.615 21.881-40.283Q21.881-40.191 21.799-40.170L19.544-40.170L19.544-40.109Q19.544-39.521 19.827-39.138Q20.111-38.755 20.678-38.755Q21-38.755 21.268-38.948Q21.536-39.141 21.625-39.456Q21.632-39.497 21.707-39.511L21.799-39.511Q21.881-39.487 21.881-39.415Q21.881-39.408 21.875-39.381Q21.762-38.984 21.391-38.745Q21.020-38.506 20.596-38.506Q20.159-38.506 19.759-38.714Q19.359-38.923 19.120-39.290Q18.880-39.657 18.880-40.109M19.550-40.379L21.365-40.379Q21.365-40.656 21.268-40.908Q21.170-41.161 20.972-41.317Q20.774-41.472 20.490-41.472Q20.213-41.472 20-41.314Q19.786-41.155 19.668-40.900Q19.550-40.645 19.550-40.379M24.151-38.574L22.517-38.574L22.517-38.854Q22.746-38.854 22.895-38.888Q23.044-38.923 23.044-39.063L23.044-40.912Q23.044-41.182 22.936-41.243Q22.828-41.305 22.517-41.305L22.517-41.585L23.577-41.660L23.577-41.011Q23.748-41.319 24.052-41.490Q24.356-41.660 24.701-41.660Q25.101-41.660 25.378-41.520Q25.655-41.380 25.740-41.032Q25.908-41.325 26.207-41.493Q26.506-41.660 26.851-41.660Q27.357-41.660 27.641-41.437Q27.924-41.213 27.924-40.717L27.924-39.063Q27.924-38.926 28.073-38.890Q28.222-38.854 28.447-38.854L28.447-38.574L26.817-38.574L26.817-38.854Q27.043-38.854 27.193-38.890Q27.343-38.926 27.343-39.063L27.343-40.703Q27.343-41.038 27.224-41.238Q27.104-41.438 26.790-41.438Q26.520-41.438 26.285-41.302Q26.051-41.165 25.913-40.931Q25.774-40.697 25.774-40.423L25.774-39.063Q25.774-38.926 25.923-38.890Q26.072-38.854 26.297-38.854L26.297-38.574L24.667-38.574L24.667-38.854Q24.896-38.854 25.045-38.888Q25.193-38.923 25.193-39.063L25.193-40.703Q25.193-41.038 25.074-41.238Q24.954-41.438 24.640-41.438Q24.370-41.438 24.136-41.302Q23.901-41.165 23.763-40.931Q23.625-40.697 23.625-40.423L23.625-39.063Q23.625-38.926 23.775-38.890Q23.925-38.854 24.151-38.854L24.151-38.574M28.994-40.057Q28.994-40.399 29.129-40.698Q29.264-40.997 29.503-41.221Q29.743-41.445 30.061-41.570Q30.378-41.695 30.710-41.695Q31.154-41.695 31.554-41.479Q31.954-41.264 32.188-40.886Q32.422-40.509 32.422-40.057Q32.422-39.716 32.281-39.432Q32.139-39.148 31.894-38.941Q31.650-38.735 31.341-38.620Q31.031-38.506 30.710-38.506Q30.279-38.506 29.878-38.707Q29.476-38.909 29.235-39.261Q28.994-39.613 28.994-40.057M30.710-38.755Q31.312-38.755 31.535-39.133Q31.759-39.511 31.759-40.143Q31.759-40.755 31.525-41.114Q31.291-41.472 30.710-41.472Q29.657-41.472 29.657-40.143Q29.657-39.511 29.883-39.133Q30.108-38.755 30.710-38.755M34.767-38.574L33.031-38.574L33.031-38.854Q33.260-38.854 33.409-38.888Q33.557-38.923 33.557-39.063L33.557-40.912Q33.557-41.182 33.450-41.243Q33.342-41.305 33.031-41.305L33.031-41.585L34.060-41.660L34.060-40.953Q34.190-41.261 34.432-41.460Q34.675-41.660 34.993-41.660Q35.211-41.660 35.382-41.536Q35.553-41.411 35.553-41.199Q35.553-41.062 35.454-40.963Q35.355-40.864 35.222-40.864Q35.085-40.864 34.986-40.963Q34.887-41.062 34.887-41.199Q34.887-41.339 34.986-41.438Q34.695-41.438 34.495-41.242Q34.295-41.045 34.203-40.751Q34.111-40.457 34.111-40.177L34.111-39.063Q34.111-38.854 34.767-38.854L34.767-38.574M36.473-37.439Q36.603-37.371 36.739-37.371Q36.910-37.371 37.061-37.460Q37.211-37.549 37.322-37.694Q37.433-37.839 37.512-38.007L37.775-38.574L36.606-41.100Q36.531-41.247 36.401-41.279Q36.271-41.312 36.039-41.312L36.039-41.592L37.560-41.592L37.560-41.312Q37.211-41.312 37.211-41.165Q37.214-41.144 37.216-41.127Q37.218-41.110 37.218-41.100L38.076-39.241L38.848-40.912Q38.882-40.980 38.882-41.059Q38.882-41.172 38.799-41.242Q38.715-41.312 38.602-41.312L38.602-41.592L39.798-41.592L39.798-41.312Q39.580-41.312 39.407-41.208Q39.234-41.103 39.142-40.912L37.806-38.007Q37.635-37.637 37.365-37.391Q37.095-37.145 36.739-37.145Q36.469-37.145 36.251-37.311Q36.032-37.477 36.032-37.740Q36.032-37.877 36.124-37.966Q36.216-38.054 36.356-38.054Q36.493-38.054 36.582-37.966Q36.671-37.877 36.671-37.740Q36.671-37.637 36.618-37.559Q36.565-37.480 36.473-37.439\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.277)\">\u003Cpath d=\"M13.771-40.023L11.517-40.023L11.517-40.574L13.771-40.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 45.931h216.24\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M13.812-38.533L12.260-42.864Q12.198-43.007 12.036-43.041Q11.874-43.075 11.621-43.075L11.621-43.356L13.548-43.356L13.548-43.075Q12.967-43.075 12.967-42.901Q12.967-42.881 12.974-42.864L14.198-39.428L15.305-42.515L15.179-42.864Q15.121-43.007 14.955-43.041Q14.789-43.075 14.540-43.075L14.540-43.356L16.467-43.356L16.467-43.075Q15.886-43.075 15.886-42.901L15.886-42.864L17.117-39.428L18.272-42.676Q18.286-42.717 18.286-42.741Q18.286-42.915 18.093-42.995Q17.899-43.075 17.691-43.075L17.691-43.356L19.267-43.356L19.267-43.075Q19.017-43.075 18.826-42.981Q18.634-42.887 18.559-42.676L17.076-38.533Q17.042-38.434 16.942-38.434L16.864-38.434Q16.765-38.434 16.724-38.533L15.445-42.122L14.164-38.533Q14.147-38.489 14.109-38.461Q14.071-38.434 14.023-38.434L13.945-38.434Q13.853-38.434 13.812-38.533\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M20.893-38.574L19.157-38.574L19.157-38.854Q19.386-38.854 19.535-38.888Q19.683-38.923 19.683-39.063L19.683-40.912Q19.683-41.182 19.576-41.243Q19.468-41.305 19.157-41.305L19.157-41.585L20.186-41.660L20.186-40.953Q20.316-41.261 20.558-41.460Q20.801-41.660 21.119-41.660Q21.338-41.660 21.509-41.536Q21.680-41.411 21.680-41.199Q21.680-41.062 21.580-40.963Q21.481-40.864 21.348-40.864Q21.211-40.864 21.112-40.963Q21.013-41.062 21.013-41.199Q21.013-41.339 21.112-41.438Q20.822-41.438 20.622-41.242Q20.422-41.045 20.329-40.751Q20.237-40.457 20.237-40.177L20.237-39.063Q20.237-38.854 20.893-38.854L20.893-38.574M23.881-38.574L22.329-38.574L22.329-38.854Q22.555-38.854 22.703-38.888Q22.852-38.923 22.852-39.063L22.852-40.912Q22.852-41.100 22.804-41.184Q22.756-41.267 22.659-41.286Q22.561-41.305 22.350-41.305L22.350-41.585L23.406-41.660L23.406-39.063Q23.406-38.923 23.537-38.888Q23.669-38.854 23.881-38.854L23.881-38.574M22.609-42.881Q22.609-43.052 22.732-43.171Q22.855-43.291 23.026-43.291Q23.194-43.291 23.317-43.171Q23.440-43.052 23.440-42.881Q23.440-42.706 23.317-42.583Q23.194-42.460 23.026-42.460Q22.855-42.460 22.732-42.583Q22.609-42.706 22.609-42.881M25.053-39.415L25.053-41.312L24.414-41.312L24.414-41.534Q24.732-41.534 24.949-41.744Q25.166-41.954 25.267-42.264Q25.368-42.573 25.368-42.881L25.634-42.881L25.634-41.592L26.711-41.592L26.711-41.312L25.634-41.312L25.634-39.428Q25.634-39.152 25.738-38.953Q25.843-38.755 26.102-38.755Q26.260-38.755 26.366-38.859Q26.472-38.964 26.521-39.117Q26.571-39.271 26.571-39.428L26.571-39.842L26.837-39.842L26.837-39.415Q26.837-39.189 26.738-38.979Q26.639-38.769 26.454-38.637Q26.270-38.506 26.041-38.506Q25.603-38.506 25.328-38.743Q25.053-38.981 25.053-39.415M27.606-40.109Q27.606-40.430 27.731-40.719Q27.856-41.008 28.081-41.231Q28.307-41.455 28.603-41.575Q28.898-41.695 29.216-41.695Q29.544-41.695 29.806-41.595Q30.067-41.496 30.243-41.314Q30.419-41.131 30.513-40.873Q30.607-40.615 30.607-40.283Q30.607-40.191 30.525-40.170L28.269-40.170L28.269-40.109Q28.269-39.521 28.553-39.138Q28.837-38.755 29.404-38.755Q29.725-38.755 29.994-38.948Q30.262-39.141 30.351-39.456Q30.358-39.497 30.433-39.511L30.525-39.511Q30.607-39.487 30.607-39.415Q30.607-39.408 30.600-39.381Q30.488-38.984 30.117-38.745Q29.746-38.506 29.322-38.506Q28.885-38.506 28.485-38.714Q28.085-38.923 27.846-39.290Q27.606-39.657 27.606-40.109M28.276-40.379L30.091-40.379Q30.091-40.656 29.994-40.908Q29.896-41.161 29.698-41.317Q29.500-41.472 29.216-41.472Q28.939-41.472 28.726-41.314Q28.512-41.155 28.394-40.900Q28.276-40.645 28.276-40.379M33.079-39.828L31.021-39.828L31.021-40.331L33.079-40.331L33.079-39.828M34.688-38.574L34.422-38.574L34.422-42.682Q34.422-42.952 34.314-43.014Q34.206-43.075 33.895-43.075L33.895-43.356L34.975-43.431L34.975-41.261Q35.184-41.452 35.469-41.556Q35.755-41.660 36.052-41.660Q36.370-41.660 36.667-41.539Q36.965-41.418 37.187-41.202Q37.409-40.987 37.536-40.702Q37.662-40.416 37.662-40.085Q37.662-39.640 37.423-39.276Q37.183-38.912 36.790-38.709Q36.397-38.506 35.953-38.506Q35.758-38.506 35.569-38.562Q35.379-38.618 35.218-38.723Q35.058-38.827 34.917-38.988L34.688-38.574M35.003-40.919L35.003-39.302Q35.140-39.042 35.381-38.885Q35.621-38.728 35.898-38.728Q36.192-38.728 36.404-38.835Q36.616-38.943 36.749-39.135Q36.883-39.326 36.941-39.565Q36.999-39.804 36.999-40.085Q36.999-40.444 36.905-40.748Q36.811-41.052 36.584-41.245Q36.356-41.438 35.991-41.438Q35.690-41.438 35.423-41.302Q35.157-41.165 35.003-40.919M38.356-39.302Q38.356-39.634 38.580-39.861Q38.804-40.088 39.147-40.216Q39.491-40.345 39.863-40.397Q40.236-40.450 40.540-40.450L40.540-40.703Q40.540-40.908 40.432-41.088Q40.325-41.267 40.143-41.370Q39.962-41.472 39.754-41.472Q39.347-41.472 39.111-41.380Q39.200-41.343 39.246-41.259Q39.292-41.175 39.292-41.073Q39.292-40.977 39.246-40.898Q39.200-40.820 39.120-40.775Q39.039-40.731 38.951-40.731Q38.800-40.731 38.699-40.828Q38.599-40.926 38.599-41.073Q38.599-41.695 39.754-41.695Q39.966-41.695 40.215-41.631Q40.465-41.568 40.666-41.449Q40.868-41.329 40.995-41.144Q41.121-40.960 41.121-40.717L41.121-39.141Q41.121-39.025 41.183-38.929Q41.244-38.834 41.357-38.834Q41.466-38.834 41.531-38.928Q41.596-39.022 41.596-39.141L41.596-39.589L41.863-39.589L41.863-39.141Q41.863-38.871 41.635-38.706Q41.408-38.540 41.128-38.540Q40.919-38.540 40.783-38.694Q40.646-38.847 40.622-39.063Q40.475-38.796 40.193-38.651Q39.911-38.506 39.586-38.506Q39.309-38.506 39.026-38.581Q38.742-38.656 38.549-38.835Q38.356-39.015 38.356-39.302M38.971-39.302Q38.971-39.128 39.072-38.998Q39.173-38.868 39.328-38.798Q39.484-38.728 39.648-38.728Q39.867-38.728 40.075-38.825Q40.284-38.923 40.412-39.104Q40.540-39.285 40.540-39.511L40.540-40.239Q40.215-40.239 39.850-40.148Q39.484-40.057 39.227-39.845Q38.971-39.634 38.971-39.302M42.280-40.085Q42.280-40.413 42.415-40.714Q42.550-41.014 42.786-41.235Q43.021-41.455 43.326-41.575Q43.630-41.695 43.954-41.695Q44.460-41.695 44.809-41.592Q45.158-41.490 45.158-41.114Q45.158-40.967 45.060-40.866Q44.963-40.765 44.816-40.765Q44.662-40.765 44.563-40.864Q44.464-40.963 44.464-41.114Q44.464-41.302 44.604-41.394Q44.402-41.445 43.961-41.445Q43.606-41.445 43.377-41.249Q43.148-41.052 43.047-40.743Q42.946-40.433 42.946-40.085Q42.946-39.736 43.073-39.430Q43.199-39.124 43.454-38.940Q43.708-38.755 44.064-38.755Q44.286-38.755 44.471-38.839Q44.655-38.923 44.790-39.078Q44.925-39.234 44.983-39.442Q44.997-39.497 45.052-39.497L45.164-39.497Q45.195-39.497 45.217-39.473Q45.240-39.449 45.240-39.415L45.240-39.394Q45.154-39.107 44.966-38.909Q44.778-38.711 44.513-38.608Q44.248-38.506 43.954-38.506Q43.524-38.506 43.136-38.712Q42.748-38.919 42.514-39.282Q42.280-39.644 42.280-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M47.247-38.574L45.664-38.574L45.664-38.854Q45.893-38.854 46.042-38.888Q46.190-38.923 46.190-39.063L46.190-42.682Q46.190-42.952 46.083-43.014Q45.975-43.075 45.664-43.075L45.664-43.356L46.744-43.431L46.744-40.143L47.729-40.912Q47.934-41.049 47.934-41.199Q47.934-41.243 47.893-41.278Q47.852-41.312 47.807-41.312L47.807-41.592L49.171-41.592L49.171-41.312Q48.682-41.312 48.163-40.912L47.606-40.478L48.583-39.254Q48.785-39.008 48.918-38.931Q49.051-38.854 49.338-38.854L49.338-38.574L47.906-38.574L47.906-38.854Q48.094-38.854 48.094-38.967Q48.094-39.063 47.940-39.254L47.206-40.163L46.724-39.784L46.724-39.063Q46.724-38.926 46.872-38.890Q47.021-38.854 47.247-38.854\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M14.044-38.574L11.907-38.574Q11.872-38.574 11.841-38.615Q11.810-38.656 11.810-38.703L11.833-38.804Q11.845-38.855 11.931-38.871Q12.372-38.871 12.530-38.910Q12.689-38.949 12.732-39.176L13.810-43.496Q13.833-43.566 13.833-43.629Q13.833-43.691 13.771-43.711Q13.626-43.742 13.204-43.742Q13.099-43.769 13.099-43.871L13.130-43.972Q13.138-44.019 13.220-44.039L15.732-44.039Q16.138-44.039 16.581-43.916Q17.024-43.793 17.329-43.517Q17.634-43.242 17.634-42.820Q17.634-42.433 17.364-42.117Q17.095-41.801 16.696-41.592Q16.298-41.383 15.923-41.293Q16.232-41.168 16.429-40.929Q16.626-40.691 16.626-40.375Q16.626-40.332 16.624-40.304Q16.622-40.277 16.618-40.246L16.540-39.551Q16.509-39.261 16.509-39.140Q16.509-38.926 16.577-38.795Q16.646-38.664 16.853-38.664Q17.107-38.664 17.302-38.888Q17.497-39.113 17.564-39.390Q17.571-39.437 17.657-39.453L17.739-39.453Q17.833-39.426 17.833-39.344Q17.833-39.336 17.825-39.301Q17.774-39.086 17.630-38.875Q17.485-38.664 17.278-38.535Q17.071-38.406 16.845-38.406Q16.540-38.406 16.271-38.492Q16.001-38.578 15.829-38.777Q15.657-38.976 15.657-39.285Q15.657-39.394 15.700-39.574L15.876-40.269Q15.899-40.390 15.899-40.484Q15.899-40.820 15.638-41.002Q15.376-41.183 15.013-41.183L13.962-41.183L13.442-39.117Q13.427-39.023 13.427-38.980Q13.427-38.941 13.440-38.928Q13.454-38.914 13.489-38.902Q13.634-38.871 14.060-38.871Q14.153-38.844 14.153-38.750L14.130-38.644Q14.122-38.594 14.044-38.574M14.524-43.437L14.028-41.437L14.970-41.437Q15.314-41.437 15.630-41.506Q15.946-41.574 16.220-41.742Q16.407-41.867 16.544-42.068Q16.681-42.269 16.749-42.502Q16.817-42.734 16.817-42.957Q16.817-43.414 16.450-43.578Q16.083-43.742 15.548-43.742L14.931-43.742Q14.759-43.742 14.696-43.728Q14.634-43.715 14.601-43.656Q14.567-43.597 14.524-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M20.038-36.574L18.862-36.574L18.862-44.574L20.038-44.574L20.038-44.207L19.229-44.207L19.229-36.941L20.038-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M20.455-38.812L20.455-38.902Q20.513-39.109 20.705-39.133L21.416-39.133L21.416-41.461L20.705-41.461Q20.509-41.484 20.455-41.703L20.455-41.789Q20.513-42 20.705-42.023L21.806-42.023Q22.005-42.004 22.056-41.789L22.056-41.461Q22.318-41.746 22.673-41.904Q23.029-42.062 23.416-42.062Q23.709-42.062 23.943-41.928Q24.177-41.793 24.177-41.527Q24.177-41.359 24.068-41.242Q23.959-41.125 23.791-41.125Q23.638-41.125 23.523-41.236Q23.408-41.347 23.408-41.504Q23.033-41.504 22.718-41.303Q22.404-41.101 22.230-40.767Q22.056-40.433 22.056-40.054L22.056-39.133L23.002-39.133Q23.209-39.109 23.248-38.902L23.248-38.812Q23.209-38.597 23.002-38.574L20.705-38.574Q20.513-38.597 20.455-38.812M24.646-38.812L24.646-38.902Q24.685-39.109 24.892-39.133L25.181-39.133L25.181-42.902L24.892-42.902Q24.685-42.926 24.646-43.140L24.646-43.230Q24.685-43.437 24.892-43.461L26.853-43.461Q27.123-43.461 27.363-43.365Q27.603-43.269 27.794-43.099Q27.986-42.929 28.095-42.701Q28.205-42.472 28.205-42.207Q28.205-41.840 27.964-41.551Q27.724-41.261 27.357-41.133Q27.638-41.070 27.871-40.896Q28.103-40.722 28.238-40.467Q28.373-40.211 28.373-39.926Q28.373-39.566 28.191-39.256Q28.009-38.945 27.695-38.760Q27.380-38.574 27.021-38.574L24.892-38.574Q24.685-38.597 24.646-38.812M25.822-40.840L25.822-39.133L26.853-39.133Q27.080-39.133 27.283-39.236Q27.486-39.340 27.611-39.519Q27.736-39.699 27.736-39.926Q27.736-40.156 27.634-40.365Q27.533-40.574 27.351-40.707Q27.169-40.840 26.943-40.840L25.822-40.840M25.822-42.902L25.822-41.398L26.685-41.398Q27.029-41.398 27.298-41.633Q27.568-41.867 27.568-42.207Q27.568-42.394 27.470-42.554Q27.373-42.715 27.207-42.808Q27.041-42.902 26.853-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M30.091-36.574L28.916-36.574L28.916-36.941L29.724-36.941L29.724-44.207L28.916-44.207L28.916-44.574L30.091-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M39.415-39.551L34.102-39.551Q34.024-39.558 33.975-39.607Q33.927-39.656 33.927-39.734Q33.927-39.804 33.974-39.855Q34.020-39.906 34.102-39.918L39.415-39.918Q39.489-39.906 39.536-39.855Q39.583-39.804 39.583-39.734Q39.583-39.656 39.534-39.607Q39.485-39.558 39.415-39.551M39.415-41.238L34.102-41.238Q34.024-41.246 33.975-41.295Q33.927-41.344 33.927-41.422Q33.927-41.492 33.974-41.543Q34.020-41.594 34.102-41.605L39.415-41.605Q39.489-41.594 39.536-41.543Q39.583-41.492 39.583-41.422Q39.583-41.344 39.534-41.295Q39.485-41.246 39.415-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M44.082-38.797L43.196-41.461L42.875-41.461Q42.676-41.484 42.625-41.703L42.625-41.789Q42.676-42 42.875-42.023L44.035-42.023Q44.231-42.004 44.281-41.789L44.281-41.703Q44.231-41.484 44.035-41.461L43.754-41.461L44.547-39.086L45.336-41.461L45.059-41.461Q44.860-41.484 44.809-41.703L44.809-41.789Q44.860-42 45.059-42.023L46.219-42.023Q46.414-42 46.465-41.789L46.465-41.703Q46.414-41.484 46.219-41.461L45.899-41.461L45.012-38.797Q44.969-38.683 44.867-38.609Q44.766-38.535 44.641-38.535L44.449-38.535Q44.332-38.535 44.229-38.607Q44.125-38.679 44.082-38.797M47.078-39.687Q47.078-40.133 47.492-40.390Q47.906-40.648 48.447-40.748Q48.989-40.847 49.496-40.855Q49.496-41.070 49.362-41.222Q49.227-41.375 49.020-41.451Q48.813-41.527 48.602-41.527Q48.258-41.527 48.098-41.504L48.098-41.445Q48.098-41.277 47.979-41.162Q47.860-41.047 47.696-41.047Q47.520-41.047 47.405-41.170Q47.289-41.293 47.289-41.461Q47.289-41.867 47.670-41.976Q48.051-42.086 48.610-42.086Q48.879-42.086 49.147-42.008Q49.414-41.929 49.639-41.779Q49.864-41.629 50-41.408Q50.137-41.187 50.137-40.910L50.137-39.191Q50.137-39.133 50.664-39.133Q50.860-39.113 50.910-38.902L50.910-38.812Q50.860-38.597 50.664-38.574L50.520-38.574Q50.176-38.574 49.947-38.621Q49.719-38.668 49.574-38.855Q49.114-38.535 48.406-38.535Q48.071-38.535 47.766-38.676Q47.461-38.816 47.270-39.078Q47.078-39.340 47.078-39.687M47.719-39.679Q47.719-39.406 47.961-39.250Q48.203-39.094 48.489-39.094Q48.707-39.094 48.940-39.152Q49.172-39.211 49.334-39.349Q49.496-39.488 49.496-39.711L49.496-40.301Q49.215-40.301 48.799-40.244Q48.383-40.187 48.051-40.049Q47.719-39.910 47.719-39.679M51.367-38.812L51.367-38.902Q51.418-39.109 51.614-39.133L52.719-39.133L52.719-42.902L51.614-42.902Q51.418-42.926 51.367-43.140L51.367-43.230Q51.418-43.437 51.614-43.461L53.110-43.461Q53.301-43.437 53.360-43.230L53.360-39.133L54.461-39.133Q54.660-39.109 54.711-38.902L54.711-38.812Q54.660-38.597 54.461-38.574L51.614-38.574Q51.418-38.597 51.367-38.812M55.348-38.812L55.348-38.902Q55.387-39.109 55.598-39.133L55.906-39.133L55.906-42.902L55.598-42.902Q55.387-42.926 55.348-43.140L55.348-43.230Q55.387-43.437 55.598-43.461L58.805-43.461Q59-43.437 59.051-43.230L59.051-42.390Q59-42.176 58.805-42.148L58.660-42.148Q58.465-42.176 58.410-42.390L58.410-42.902L56.547-42.902L56.547-41.383L57.524-41.383L57.524-41.597Q57.574-41.804 57.774-41.832L57.918-41.832Q58.114-41.804 58.164-41.597L58.164-40.613Q58.114-40.398 57.918-40.375L57.774-40.375Q57.574-40.398 57.524-40.613L57.524-40.820L56.547-40.820L56.547-39.133L58.590-39.133L58.590-39.773Q58.641-39.980 58.836-40.008L58.981-40.008Q59.176-39.980 59.227-39.773L59.227-38.812Q59.176-38.594 58.981-38.574L55.598-38.574Q55.387-38.597 55.348-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 70.116h216.24\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M13.945-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.478-43.356Q14.888-43.356 15.309-43.202Q15.729-43.048 16.013-42.744Q16.296-42.440 16.296-42.026Q16.296-41.708 16.129-41.462Q15.961-41.216 15.685-41.050Q15.408-40.885 15.086-40.801Q14.765-40.717 14.478-40.717L13.224-40.717L13.224-39.063Q13.224-38.854 13.945-38.854L13.945-38.574M13.196-42.864L13.196-40.967L14.283-40.967Q14.892-40.967 15.206-41.204Q15.521-41.442 15.521-42.026Q15.521-42.419 15.375-42.653Q15.230-42.887 14.958-42.981Q14.687-43.075 14.283-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.277-40.967Q17.277-41.493 17.494-41.961Q17.711-42.429 18.094-42.775Q18.477-43.120 18.961-43.308Q19.444-43.496 19.974-43.496Q20.377-43.496 20.742-43.339Q21.106-43.181 21.389-42.887L21.813-43.469Q21.847-43.496 21.871-43.496L21.919-43.496Q21.950-43.496 21.974-43.472Q21.998-43.448 21.998-43.417L21.998-41.554Q21.998-41.531 21.972-41.505Q21.946-41.479 21.919-41.479L21.793-41.479Q21.731-41.479 21.717-41.554Q21.687-41.869 21.552-42.173Q21.417-42.477 21.201-42.711Q20.986-42.946 20.697-43.081Q20.408-43.216 20.080-43.216Q19.438-43.216 18.980-42.922Q18.522-42.628 18.289-42.115Q18.057-41.602 18.057-40.967Q18.057-40.495 18.187-40.086Q18.316-39.678 18.576-39.365Q18.836-39.053 19.215-38.883Q19.595-38.714 20.087-38.714Q20.415-38.714 20.709-38.830Q21.003-38.947 21.237-39.162Q21.471-39.377 21.601-39.666Q21.731-39.955 21.731-40.283Q21.731-40.310 21.758-40.334Q21.786-40.358 21.806-40.358L21.919-40.358Q21.957-40.358 21.977-40.333Q21.998-40.307 21.998-40.269Q21.998-39.873 21.832-39.536Q21.666-39.199 21.379-38.952Q21.092-38.704 20.723-38.569Q20.354-38.434 19.974-38.434Q19.455-38.434 18.962-38.624Q18.470-38.813 18.091-39.157Q17.711-39.500 17.494-39.969Q17.277-40.437 17.277-40.967\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M26.086-39.408L26.086-40.912Q26.086-41.182 25.978-41.243Q25.870-41.305 25.559-41.305L25.559-41.585L26.667-41.660L26.667-39.428L26.667-39.408Q26.667-39.128 26.718-38.984Q26.769-38.841 26.911-38.784Q27.053-38.728 27.340-38.728Q27.593-38.728 27.798-38.868Q28.003-39.008 28.119-39.234Q28.236-39.459 28.236-39.709L28.236-40.912Q28.236-41.182 28.128-41.243Q28.020-41.305 27.709-41.305L27.709-41.585L28.817-41.660L28.817-39.247Q28.817-39.056 28.870-38.974Q28.923-38.892 29.023-38.873Q29.124-38.854 29.340-38.854L29.340-38.574L28.263-38.506L28.263-39.070Q28.154-38.888 28.008-38.765Q27.863-38.642 27.677-38.574Q27.490-38.506 27.289-38.506Q26.086-38.506 26.086-39.408M31.572-37.217L29.941-37.217L29.941-37.497Q30.170-37.497 30.319-37.532Q30.468-37.566 30.468-37.706L30.468-41.052Q30.468-41.223 30.331-41.264Q30.194-41.305 29.941-41.305L29.941-41.585L31.021-41.660L31.021-41.254Q31.243-41.455 31.530-41.558Q31.818-41.660 32.125-41.660Q32.552-41.660 32.916-41.447Q33.280-41.233 33.494-40.869Q33.708-40.505 33.708-40.085Q33.708-39.640 33.468-39.276Q33.229-38.912 32.836-38.709Q32.443-38.506 31.999-38.506Q31.732-38.506 31.484-38.606Q31.237-38.707 31.049-38.888L31.049-37.706Q31.049-37.569 31.197-37.533Q31.346-37.497 31.572-37.497L31.572-37.217M31.049-40.905L31.049-39.295Q31.182-39.042 31.425-38.885Q31.667-38.728 31.944-38.728Q32.272-38.728 32.525-38.929Q32.778-39.131 32.911-39.449Q33.045-39.767 33.045-40.085Q33.045-40.314 32.980-40.543Q32.915-40.772 32.787-40.970Q32.658-41.168 32.464-41.288Q32.269-41.407 32.036-41.407Q31.742-41.407 31.474-41.278Q31.206-41.148 31.049-40.905\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M34.559-40.085Q34.559-40.423 34.700-40.714Q34.840-41.004 35.084-41.218Q35.328-41.431 35.633-41.546Q35.937-41.660 36.262-41.660Q36.532-41.660 36.795-41.561Q37.058-41.462 37.249-41.284L37.249-42.682Q37.249-42.952 37.142-43.014Q37.034-43.075 36.723-43.075L36.723-43.356L37.800-43.431L37.800-39.247Q37.800-39.059 37.854-38.976Q37.909-38.892 38.010-38.873Q38.111-38.854 38.326-38.854L38.326-38.574L37.219-38.506L37.219-38.923Q36.802-38.506 36.176-38.506Q35.745-38.506 35.373-38.718Q35-38.929 34.780-39.290Q34.559-39.651 34.559-40.085M36.234-38.728Q36.443-38.728 36.629-38.800Q36.815-38.871 36.969-39.008Q37.123-39.145 37.219-39.323L37.219-40.932Q37.133-41.079 36.988-41.199Q36.843-41.319 36.673-41.378Q36.504-41.438 36.323-41.438Q35.763-41.438 35.494-41.049Q35.226-40.659 35.226-40.078Q35.226-39.507 35.460-39.117Q35.694-38.728 36.234-38.728M39.034-39.302Q39.034-39.634 39.257-39.861Q39.481-40.088 39.825-40.216Q40.168-40.345 40.541-40.397Q40.913-40.450 41.218-40.450L41.218-40.703Q41.218-40.908 41.110-41.088Q41.002-41.267 40.821-41.370Q40.640-41.472 40.432-41.472Q40.025-41.472 39.789-41.380Q39.878-41.343 39.924-41.259Q39.970-41.175 39.970-41.073Q39.970-40.977 39.924-40.898Q39.878-40.820 39.797-40.775Q39.717-40.731 39.628-40.731Q39.478-40.731 39.377-40.828Q39.276-40.926 39.276-41.073Q39.276-41.695 40.432-41.695Q40.643-41.695 40.893-41.631Q41.142-41.568 41.344-41.449Q41.546-41.329 41.672-41.144Q41.799-40.960 41.799-40.717L41.799-39.141Q41.799-39.025 41.860-38.929Q41.922-38.834 42.035-38.834Q42.144-38.834 42.209-38.928Q42.274-39.022 42.274-39.141L42.274-39.589L42.540-39.589L42.540-39.141Q42.540-38.871 42.313-38.706Q42.086-38.540 41.806-38.540Q41.597-38.540 41.460-38.694Q41.324-38.847 41.300-39.063Q41.153-38.796 40.871-38.651Q40.589-38.506 40.264-38.506Q39.987-38.506 39.703-38.581Q39.420-38.656 39.227-38.835Q39.034-39.015 39.034-39.302M39.649-39.302Q39.649-39.128 39.750-38.998Q39.850-38.868 40.006-38.798Q40.162-38.728 40.326-38.728Q40.544-38.728 40.753-38.825Q40.961-38.923 41.089-39.104Q41.218-39.285 41.218-39.511L41.218-40.239Q40.893-40.239 40.527-40.148Q40.162-40.057 39.905-39.845Q39.649-39.634 39.649-39.302M43.484-39.415L43.484-41.312L42.845-41.312L42.845-41.534Q43.162-41.534 43.380-41.744Q43.597-41.954 43.697-42.264Q43.798-42.573 43.798-42.881L44.065-42.881L44.065-41.592L45.141-41.592L45.141-41.312L44.065-41.312L44.065-39.428Q44.065-39.152 44.169-38.953Q44.273-38.755 44.533-38.755Q44.690-38.755 44.796-38.859Q44.902-38.964 44.952-39.117Q45.001-39.271 45.001-39.428L45.001-39.842L45.268-39.842L45.268-39.415Q45.268-39.189 45.169-38.979Q45.070-38.769 44.885-38.637Q44.701-38.506 44.472-38.506Q44.034-38.506 43.759-38.743Q43.484-38.981 43.484-39.415M46.037-40.109Q46.037-40.430 46.162-40.719Q46.287-41.008 46.512-41.231Q46.738-41.455 47.033-41.575Q47.329-41.695 47.647-41.695Q47.975-41.695 48.236-41.595Q48.498-41.496 48.674-41.314Q48.850-41.131 48.944-40.873Q49.038-40.615 49.038-40.283Q49.038-40.191 48.956-40.170L46.700-40.170L46.700-40.109Q46.700-39.521 46.984-39.138Q47.267-38.755 47.835-38.755Q48.156-38.755 48.424-38.948Q48.693-39.141 48.782-39.456Q48.788-39.497 48.864-39.511L48.956-39.511Q49.038-39.487 49.038-39.415Q49.038-39.408 49.031-39.381Q48.918-38.984 48.547-38.745Q48.177-38.506 47.753-38.506Q47.315-38.506 46.915-38.714Q46.516-38.923 46.276-39.290Q46.037-39.657 46.037-40.109M46.707-40.379L48.522-40.379Q48.522-40.656 48.424-40.908Q48.327-41.161 48.129-41.317Q47.931-41.472 47.647-41.472Q47.370-41.472 47.156-41.314Q46.943-41.155 46.825-40.900Q46.707-40.645 46.707-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M11.603-38.812L11.603-38.902Q11.642-39.109 11.853-39.133L12.161-39.133L12.161-42.902L11.853-42.902Q11.642-42.926 11.603-43.140L11.603-43.230Q11.642-43.437 11.853-43.461L13.802-43.461Q14.200-43.461 14.546-43.260Q14.892-43.058 15.099-42.713Q15.306-42.367 15.306-41.965Q15.306-41.558 15.101-41.215Q14.896-40.871 14.550-40.666Q14.204-40.461 13.802-40.461L12.802-40.461L12.802-39.133L13.114-39.133Q13.325-39.109 13.364-38.902L13.364-38.812Q13.325-38.597 13.114-38.574L11.853-38.574Q11.642-38.597 11.603-38.812M12.802-42.902L12.802-41.023L13.642-41.023Q13.903-41.023 14.140-41.146Q14.376-41.269 14.521-41.484Q14.665-41.699 14.665-41.965Q14.665-42.234 14.521-42.445Q14.376-42.656 14.140-42.779Q13.903-42.902 13.642-42.902L12.802-42.902M17.931-38.496Q17.482-38.496 17.116-38.720Q16.751-38.945 16.497-39.328Q16.243-39.711 16.118-40.154Q15.993-40.597 15.993-41.023Q15.993-41.449 16.118-41.888Q16.243-42.328 16.497-42.711Q16.751-43.094 17.110-43.318Q17.470-43.543 17.931-43.543Q18.208-43.543 18.466-43.451Q18.724-43.359 18.939-43.191L19.071-43.429Q19.099-43.480 19.153-43.511Q19.208-43.543 19.267-43.543L19.345-43.543Q19.439-43.531 19.501-43.472Q19.564-43.414 19.575-43.308L19.575-41.980Q19.564-41.879 19.501-41.816Q19.439-41.754 19.345-41.742L19.177-41.742Q19.075-41.754 19.013-41.820Q18.950-41.886 18.939-41.980Q18.899-42.246 18.776-42.470Q18.653-42.695 18.450-42.838Q18.247-42.980 17.985-42.980Q17.653-42.980 17.401-42.797Q17.149-42.613 16.978-42.312Q16.806-42.011 16.720-41.670Q16.634-41.328 16.634-41.023Q16.634-40.719 16.718-40.377Q16.802-40.035 16.974-39.732Q17.146-39.429 17.403-39.242Q17.661-39.054 17.993-39.054Q18.376-39.054 18.657-39.328Q18.939-39.601 18.939-39.988Q18.966-40.199 19.177-40.222L19.345-40.222Q19.575-40.183 19.575-39.957Q19.575-39.640 19.439-39.369Q19.302-39.097 19.067-38.900Q18.833-38.703 18.542-38.599Q18.251-38.496 17.931-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M28.241-39.551L22.928-39.551Q22.850-39.558 22.801-39.607Q22.753-39.656 22.753-39.734Q22.753-39.804 22.800-39.855Q22.846-39.906 22.928-39.918L28.241-39.918Q28.315-39.906 28.362-39.855Q28.409-39.804 28.409-39.734Q28.409-39.656 28.360-39.607Q28.311-39.558 28.241-39.551M28.241-41.238L22.928-41.238Q22.850-41.246 22.801-41.295Q22.753-41.344 22.753-41.422Q22.753-41.492 22.800-41.543Q22.846-41.594 22.928-41.605L28.241-41.605Q28.315-41.594 28.362-41.543Q28.409-41.492 28.409-41.422Q28.409-41.344 28.360-41.295Q28.311-41.246 28.241-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M32.909-38.797L32.023-41.461L31.702-41.461Q31.503-41.484 31.452-41.703L31.452-41.789Q31.503-42 31.702-42.023L32.862-42.023Q33.058-42.004 33.108-41.789L33.108-41.703Q33.058-41.484 32.862-41.461L32.581-41.461L33.374-39.086L34.163-41.461L33.886-41.461Q33.687-41.484 33.636-41.703L33.636-41.789Q33.687-42 33.886-42.023L35.046-42.023Q35.241-42 35.292-41.789L35.292-41.703Q35.241-41.484 35.046-41.461L34.726-41.461L33.839-38.797Q33.796-38.683 33.694-38.609Q33.593-38.535 33.468-38.535L33.276-38.535Q33.159-38.535 33.056-38.607Q32.952-38.679 32.909-38.797M35.905-39.687Q35.905-40.133 36.319-40.390Q36.733-40.648 37.274-40.748Q37.816-40.847 38.323-40.855Q38.323-41.070 38.189-41.222Q38.054-41.375 37.847-41.451Q37.640-41.527 37.429-41.527Q37.085-41.527 36.925-41.504L36.925-41.445Q36.925-41.277 36.806-41.162Q36.687-41.047 36.523-41.047Q36.347-41.047 36.232-41.170Q36.116-41.293 36.116-41.461Q36.116-41.867 36.497-41.976Q36.878-42.086 37.437-42.086Q37.706-42.086 37.974-42.008Q38.241-41.929 38.466-41.779Q38.691-41.629 38.827-41.408Q38.964-41.187 38.964-40.910L38.964-39.191Q38.964-39.133 39.491-39.133Q39.687-39.113 39.737-38.902L39.737-38.812Q39.687-38.597 39.491-38.574L39.347-38.574Q39.003-38.574 38.774-38.621Q38.546-38.668 38.401-38.855Q37.941-38.535 37.233-38.535Q36.898-38.535 36.593-38.676Q36.288-38.816 36.097-39.078Q35.905-39.340 35.905-39.687M36.546-39.679Q36.546-39.406 36.788-39.250Q37.030-39.094 37.316-39.094Q37.534-39.094 37.767-39.152Q37.999-39.211 38.161-39.349Q38.323-39.488 38.323-39.711L38.323-40.301Q38.042-40.301 37.626-40.244Q37.210-40.187 36.878-40.049Q36.546-39.910 36.546-39.679M40.194-38.812L40.194-38.902Q40.245-39.109 40.441-39.133L41.546-39.133L41.546-42.902L40.441-42.902Q40.245-42.926 40.194-43.140L40.194-43.230Q40.245-43.437 40.441-43.461L41.937-43.461Q42.128-43.437 42.187-43.230L42.187-39.133L43.288-39.133Q43.487-39.109 43.538-38.902L43.538-38.812Q43.487-38.597 43.288-38.574L40.441-38.574Q40.245-38.597 40.194-38.812M44.175-38.812L44.175-38.902Q44.214-39.109 44.425-39.133L44.733-39.133L44.733-42.902L44.425-42.902Q44.214-42.926 44.175-43.140L44.175-43.230Q44.214-43.437 44.425-43.461L46.374-43.461Q46.773-43.461 47.118-43.260Q47.464-43.058 47.671-42.713Q47.878-42.367 47.878-41.965Q47.878-41.558 47.673-41.215Q47.468-40.871 47.122-40.666Q46.776-40.461 46.374-40.461L45.374-40.461L45.374-39.133L45.687-39.133Q45.898-39.109 45.937-38.902L45.937-38.812Q45.898-38.597 45.687-38.574L44.425-38.574Q44.214-38.597 44.175-38.812M45.374-42.902L45.374-41.023L46.214-41.023Q46.476-41.023 46.712-41.146Q46.948-41.269 47.093-41.484Q47.237-41.699 47.237-41.965Q47.237-42.234 47.093-42.445Q46.948-42.656 46.712-42.779Q46.476-42.902 46.214-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 94.3h216.24\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(185.63 -25.474)\">\u003Cpath d=\"M12.036-38.812L12.036-38.902Q12.087-39.109 12.282-39.133L13.321-39.133L13.321-41.461L12.349-41.461Q12.149-41.484 12.099-41.703L12.099-41.789Q12.149-42 12.349-42.023L13.716-42.023Q13.911-42.004 13.962-41.789L13.962-39.133L14.876-39.133Q15.071-39.109 15.122-38.902L15.122-38.812Q15.071-38.597 14.876-38.574L12.282-38.574Q12.087-38.597 12.036-38.812M13.067-43L13.067-43.054Q13.067-43.226 13.204-43.347Q13.341-43.469 13.517-43.469Q13.689-43.469 13.825-43.347Q13.962-43.226 13.962-43.054L13.962-43Q13.962-42.824 13.825-42.703Q13.689-42.582 13.517-42.582Q13.341-42.582 13.204-42.703Q13.067-42.824 13.067-43M15.888-38.812L15.888-38.902Q15.946-39.109 16.138-39.133L16.849-39.133L16.849-41.461L16.138-41.461Q15.942-41.484 15.888-41.703L15.888-41.789Q15.946-42 16.138-42.023L17.239-42.023Q17.439-42.004 17.489-41.789L17.489-41.461Q17.751-41.746 18.107-41.904Q18.462-42.062 18.849-42.062Q19.142-42.062 19.376-41.928Q19.610-41.793 19.610-41.527Q19.610-41.359 19.501-41.242Q19.392-41.125 19.224-41.125Q19.071-41.125 18.956-41.236Q18.841-41.347 18.841-41.504Q18.466-41.504 18.151-41.303Q17.837-41.101 17.663-40.767Q17.489-40.433 17.489-40.054L17.489-39.133L18.435-39.133Q18.642-39.109 18.681-38.902L18.681-38.812Q18.642-38.597 18.435-38.574L16.138-38.574Q15.946-38.597 15.888-38.812M19.857-38.812L19.857-38.902Q19.907-39.113 20.103-39.133L20.302-39.133L20.302-41.461L20.103-41.461Q19.896-41.484 19.857-41.703L19.857-41.789Q19.907-42.004 20.103-42.023L20.583-42.023Q20.774-42 20.833-41.789Q21.153-42.062 21.567-42.062Q21.759-42.062 21.927-41.953Q22.095-41.844 22.169-41.672Q22.345-41.863 22.567-41.963Q22.790-42.062 23.032-42.062Q23.450-42.062 23.605-41.720Q23.759-41.379 23.759-40.910L23.759-39.133L23.958-39.133Q24.169-39.109 24.208-38.902L24.208-38.812Q24.157-38.597 23.958-38.574L23.142-38.574Q22.946-38.597 22.896-38.812L22.896-38.902Q22.946-39.109 23.142-39.133L23.232-39.133L23.232-40.879Q23.232-41.504 22.982-41.504Q22.649-41.504 22.472-41.193Q22.294-40.883 22.294-40.519L22.294-39.133L22.497-39.133Q22.704-39.109 22.743-38.902L22.743-38.812Q22.692-38.597 22.497-38.574L21.681-38.574Q21.482-38.597 21.431-38.812L21.431-38.902Q21.482-39.109 21.681-39.133L21.767-39.133L21.767-40.879Q21.767-41.504 21.521-41.504Q21.189-41.504 21.011-41.191Q20.833-40.879 20.833-40.519L20.833-39.133L21.032-39.133Q21.239-39.109 21.278-38.902L21.278-38.812Q21.228-38.594 21.032-38.574L20.103-38.574Q19.896-38.597 19.857-38.812M26.278-38.535Q25.806-38.535 25.421-38.779Q25.036-39.023 24.814-39.433Q24.591-39.844 24.591-40.301Q24.591-40.644 24.716-40.967Q24.841-41.289 25.071-41.543Q25.302-41.797 25.608-41.941Q25.915-42.086 26.278-42.086Q26.642-42.086 26.954-41.939Q27.267-41.793 27.489-41.547Q27.712-41.301 27.839-40.980Q27.966-40.660 27.966-40.301Q27.966-39.844 27.741-39.431Q27.517-39.019 27.132-38.777Q26.747-38.535 26.278-38.535M26.278-39.094Q26.743-39.094 27.034-39.488Q27.325-39.883 27.325-40.367Q27.325-40.660 27.190-40.928Q27.056-41.195 26.815-41.361Q26.575-41.527 26.278-41.527Q25.974-41.527 25.735-41.361Q25.497-41.195 25.362-40.928Q25.228-40.660 25.228-40.367Q25.228-39.886 25.521-39.490Q25.814-39.094 26.278-39.094M30.060-38.797L29.173-41.461L28.853-41.461Q28.653-41.484 28.603-41.703L28.603-41.789Q28.653-42 28.853-42.023L30.013-42.023Q30.208-42.004 30.259-41.789L30.259-41.703Q30.208-41.484 30.013-41.461L29.732-41.461L30.524-39.086L31.314-41.461L31.036-41.461Q30.837-41.484 30.786-41.703L30.786-41.789Q30.837-42 31.036-42.023L32.196-42.023Q32.392-42 32.442-41.789L32.442-41.703Q32.392-41.484 32.196-41.461L31.876-41.461L30.989-38.797Q30.946-38.683 30.845-38.609Q30.743-38.535 30.618-38.535L30.427-38.535Q30.310-38.535 30.206-38.607Q30.103-38.679 30.060-38.797M34.962-37.031L34.962-37.117Q35.013-37.336 35.208-37.359L35.673-37.359L35.673-38.957Q35.220-38.535 34.610-38.535Q34.255-38.535 33.950-38.678Q33.646-38.820 33.413-39.070Q33.181-39.320 33.056-39.642Q32.931-39.965 32.931-40.301Q32.931-40.785 33.169-41.185Q33.407-41.586 33.814-41.824Q34.220-42.062 34.696-42.062Q35.259-42.062 35.673-41.672L35.673-41.832Q35.724-42.043 35.923-42.062L36.064-42.062Q36.263-42.039 36.314-41.832L36.314-37.359L36.778-37.359Q36.974-37.336 37.024-37.117L37.024-37.031Q36.974-36.820 36.778-36.797L35.208-36.797Q35.013-36.820 34.962-37.031M34.657-39.094Q35.028-39.094 35.304-39.347Q35.579-39.601 35.673-39.965L35.673-40.582Q35.630-40.820 35.507-41.033Q35.384-41.246 35.187-41.375Q34.989-41.504 34.747-41.504Q34.431-41.504 34.159-41.338Q33.888-41.172 33.730-40.890Q33.571-40.609 33.571-40.293Q33.571-39.828 33.886-39.461Q34.200-39.094 34.657-39.094\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.63 -25.474)\">\u003Cpath d=\"M42.817-38.758L41.778-42.902L41.567-42.902Q41.372-42.926 41.321-43.140L41.321-43.230Q41.372-43.437 41.567-43.461L42.626-43.461Q42.833-43.437 42.872-43.230L42.872-43.140Q42.833-42.926 42.626-42.902L42.442-42.902Q42.548-42.496 42.685-41.941Q42.821-41.386 42.976-40.742Q43.130-40.097 43.210-39.711Q43.290-39.324 43.290-39.215Q43.298-39.336 43.376-39.705Q43.454-40.074 43.601-40.691Q43.747-41.308 43.884-41.869Q44.021-42.429 44.138-42.902L43.954-42.902Q43.743-42.926 43.704-43.140L43.704-43.230Q43.743-43.437 43.954-43.461L45.009-43.461Q45.200-43.437 45.259-43.230L45.259-43.140Q45.200-42.926 45.009-42.902L44.802-42.902L43.763-38.758Q43.735-38.648 43.640-38.572Q43.544-38.496 43.427-38.496L43.153-38.496Q43.036-38.496 42.942-38.570Q42.849-38.644 42.817-38.758M47.134-37.461Q47.021-37.461 46.931-37.551Q46.841-37.640 46.841-37.750Q46.841-37.926 47.032-38Q47.251-38.051 47.423-38.209Q47.595-38.367 47.661-38.590Q47.638-38.590 47.606-38.574L47.544-38.574Q47.314-38.574 47.148-38.736Q46.981-38.898 46.981-39.133Q46.981-39.367 47.146-39.527Q47.310-39.687 47.544-39.687Q47.755-39.687 47.919-39.566Q48.083-39.445 48.173-39.252Q48.263-39.058 48.263-38.847Q48.263-38.371 47.964-37.982Q47.665-37.594 47.200-37.469Q47.177-37.461 47.134-37.461M49.884-38.812L49.884-38.902Q49.942-39.109 50.134-39.133L50.845-39.133L50.845-41.461L50.134-41.461Q49.939-41.484 49.884-41.703L49.884-41.789Q49.942-42 50.134-42.023L51.235-42.023Q51.435-42.004 51.485-41.789L51.485-41.461Q51.747-41.746 52.103-41.904Q52.458-42.062 52.845-42.062Q53.138-42.062 53.372-41.928Q53.606-41.793 53.606-41.527Q53.606-41.359 53.497-41.242Q53.388-41.125 53.220-41.125Q53.067-41.125 52.952-41.236Q52.837-41.347 52.837-41.504Q52.462-41.504 52.148-41.303Q51.833-41.101 51.659-40.767Q51.485-40.433 51.485-40.054L51.485-39.133L52.431-39.133Q52.638-39.109 52.677-38.902L52.677-38.812Q52.638-38.597 52.431-38.574L50.134-38.574Q49.942-38.597 49.884-38.812M54.075-38.812L54.075-38.902Q54.114-39.109 54.321-39.133L54.610-39.133L54.610-42.902L54.321-42.902Q54.114-42.926 54.075-43.140L54.075-43.230Q54.114-43.437 54.321-43.461L56.282-43.461Q56.552-43.461 56.792-43.365Q57.032-43.269 57.224-43.099Q57.415-42.929 57.524-42.701Q57.634-42.472 57.634-42.207Q57.634-41.840 57.394-41.551Q57.153-41.261 56.786-41.133Q57.067-41.070 57.300-40.896Q57.532-40.722 57.667-40.467Q57.802-40.211 57.802-39.926Q57.802-39.566 57.620-39.256Q57.439-38.945 57.124-38.760Q56.810-38.574 56.450-38.574L54.321-38.574Q54.114-38.597 54.075-38.812M55.251-40.840L55.251-39.133L56.282-39.133Q56.509-39.133 56.712-39.236Q56.915-39.340 57.040-39.519Q57.165-39.699 57.165-39.926Q57.165-40.156 57.064-40.365Q56.962-40.574 56.780-40.707Q56.599-40.840 56.372-40.840L55.251-40.840M55.251-42.902L55.251-41.398L56.114-41.398Q56.458-41.398 56.728-41.633Q56.997-41.867 56.997-42.207Q56.997-42.394 56.899-42.554Q56.802-42.715 56.636-42.808Q56.470-42.902 56.282-42.902\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516-51.377h227.622\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(173.84 2.43)\">\u003Cpath d=\"M14.112-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L15.982-43.356L16.194-41.719L15.927-41.719Q15.849-42.330 15.697-42.609Q15.544-42.887 15.240-42.981Q14.936-43.075 14.311-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.107L13.764-41.107Q14.133-41.107 14.317-41.161Q14.502-41.216 14.581-41.389Q14.659-41.561 14.659-41.927L14.926-41.927L14.926-40.010L14.659-40.010Q14.659-40.375 14.581-40.548Q14.502-40.720 14.317-40.773Q14.133-40.826 13.764-40.826L13.210-40.826L13.210-39.063Q13.210-38.854 14.112-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(173.84 2.43)\">\u003Cpath d=\"M16.206-40.109Q16.206-40.430 16.331-40.719Q16.456-41.008 16.682-41.231Q16.907-41.455 17.203-41.575Q17.498-41.695 17.816-41.695Q18.144-41.695 18.406-41.595Q18.667-41.496 18.843-41.314Q19.019-41.131 19.113-40.873Q19.207-40.615 19.207-40.283Q19.207-40.191 19.125-40.170L16.870-40.170L16.870-40.109Q16.870-39.521 17.153-39.138Q17.437-38.755 18.004-38.755Q18.326-38.755 18.594-38.948Q18.862-39.141 18.951-39.456Q18.958-39.497 19.033-39.511L19.125-39.511Q19.207-39.487 19.207-39.415Q19.207-39.408 19.201-39.381Q19.088-38.984 18.717-38.745Q18.346-38.506 17.922-38.506Q17.485-38.506 17.085-38.714Q16.685-38.923 16.446-39.290Q16.206-39.657 16.206-40.109M16.876-40.379L18.691-40.379Q18.691-40.656 18.594-40.908Q18.496-41.161 18.298-41.317Q18.100-41.472 17.816-41.472Q17.539-41.472 17.326-41.314Q17.112-41.155 16.994-40.900Q16.876-40.645 16.876-40.379M20.322-39.415L20.322-41.312L19.683-41.312L19.683-41.534Q20-41.534 20.217-41.744Q20.434-41.954 20.535-42.264Q20.636-42.573 20.636-42.881L20.903-42.881L20.903-41.592L21.979-41.592L21.979-41.312L20.903-41.312L20.903-39.428Q20.903-39.152 21.007-38.953Q21.111-38.755 21.371-38.755Q21.528-38.755 21.634-38.859Q21.740-38.964 21.790-39.117Q21.839-39.271 21.839-39.428L21.839-39.842L22.106-39.842L22.106-39.415Q22.106-39.189 22.007-38.979Q21.908-38.769 21.723-38.637Q21.538-38.506 21.309-38.506Q20.872-38.506 20.597-38.743Q20.322-38.981 20.322-39.415M22.916-40.085Q22.916-40.413 23.051-40.714Q23.186-41.014 23.422-41.235Q23.658-41.455 23.962-41.575Q24.266-41.695 24.591-41.695Q25.097-41.695 25.445-41.592Q25.794-41.490 25.794-41.114Q25.794-40.967 25.696-40.866Q25.599-40.765 25.452-40.765Q25.298-40.765 25.199-40.864Q25.100-40.963 25.100-41.114Q25.100-41.302 25.240-41.394Q25.038-41.445 24.598-41.445Q24.242-41.445 24.013-41.249Q23.784-41.052 23.683-40.743Q23.582-40.433 23.582-40.085Q23.582-39.736 23.709-39.430Q23.835-39.124 24.090-38.940Q24.345-38.755 24.700-38.755Q24.922-38.755 25.107-38.839Q25.291-38.923 25.426-39.078Q25.561-39.234 25.620-39.442Q25.633-39.497 25.688-39.497L25.801-39.497Q25.831-39.497 25.854-39.473Q25.876-39.449 25.876-39.415L25.876-39.394Q25.790-39.107 25.602-38.909Q25.414-38.711 25.150-38.608Q24.885-38.506 24.591-38.506Q24.160-38.506 23.772-38.712Q23.384-38.919 23.150-39.282Q22.916-39.644 22.916-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(173.84 2.43)\">\u003Cpath d=\"M27.950-38.574L26.316-38.574L26.316-38.854Q26.545-38.854 26.694-38.888Q26.843-38.923 26.843-39.063L26.843-42.682Q26.843-42.952 26.735-43.014Q26.627-43.075 26.316-43.075L26.316-43.356L27.396-43.431L27.396-41.045Q27.502-41.230 27.680-41.372Q27.858-41.513 28.066-41.587Q28.275-41.660 28.500-41.660Q29.006-41.660 29.290-41.437Q29.574-41.213 29.574-40.717L29.574-39.063Q29.574-38.926 29.722-38.890Q29.871-38.854 30.097-38.854L30.097-38.574L28.466-38.574L28.466-38.854Q28.695-38.854 28.844-38.888Q28.993-38.923 28.993-39.063L28.993-40.703Q28.993-41.038 28.873-41.238Q28.753-41.438 28.439-41.438Q28.169-41.438 27.935-41.302Q27.701-41.165 27.562-40.931Q27.424-40.697 27.424-40.423L27.424-39.063Q27.424-38.926 27.574-38.890Q27.725-38.854 27.950-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M11.642-38.812L11.642-38.902Q11.700-39.109 11.892-39.133L12.603-39.133L12.603-41.461L11.892-41.461Q11.696-41.484 11.642-41.703L11.642-41.789Q11.700-42 11.892-42.023L12.993-42.023Q13.192-42.004 13.243-41.789L13.243-41.461Q13.505-41.746 13.860-41.904Q14.216-42.062 14.603-42.062Q14.896-42.062 15.130-41.928Q15.364-41.793 15.364-41.527Q15.364-41.359 15.255-41.242Q15.146-41.125 14.978-41.125Q14.825-41.125 14.710-41.236Q14.595-41.347 14.595-41.504Q14.220-41.504 13.905-41.303Q13.591-41.101 13.417-40.767Q13.243-40.433 13.243-40.054L13.243-39.133L14.189-39.133Q14.396-39.109 14.435-38.902L14.435-38.812Q14.396-38.597 14.189-38.574L11.892-38.574Q11.700-38.597 11.642-38.812M15.896-38.812L15.896-38.902Q15.954-39.113 16.146-39.133L16.368-39.133L17.321-43.316Q17.345-43.433 17.440-43.508Q17.536-43.582 17.649-43.582L17.923-43.582Q18.036-43.582 18.132-43.506Q18.228-43.429 18.251-43.316L19.200-39.133L19.427-39.133Q19.634-39.109 19.673-38.902L19.673-38.812Q19.622-38.597 19.427-38.574L18.345-38.574Q18.149-38.597 18.099-38.812L18.099-38.902Q18.149-39.109 18.345-39.133L18.544-39.133Q18.415-39.699 18.392-39.781L17.177-39.781Q17.134-39.597 17.024-39.133L17.224-39.133Q17.423-39.109 17.474-38.902L17.474-38.812Q17.423-38.597 17.224-38.574L16.146-38.574Q15.939-38.597 15.896-38.812M17.298-40.344L18.274-40.344Q17.794-42.476 17.794-42.820L17.786-42.820Q17.786-42.636 17.646-41.953Q17.505-41.269 17.298-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M20.638-39.039Q20.638-39.222 20.774-39.359Q20.911-39.496 21.103-39.496Q21.294-39.496 21.427-39.363Q21.560-39.230 21.560-39.039Q21.560-38.840 21.427-38.707Q21.294-38.574 21.103-38.574Q20.911-38.574 20.774-38.711Q20.638-38.847 20.638-39.039M20.638-41.566Q20.638-41.750 20.774-41.886Q20.911-42.023 21.103-42.023Q21.294-42.023 21.427-41.890Q21.560-41.758 21.560-41.566Q21.560-41.367 21.427-41.234Q21.294-41.101 21.103-41.101Q20.911-41.101 20.774-41.238Q20.638-41.375 20.638-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M22.503-38.812L22.503-38.902Q22.561-39.109 22.753-39.133L23.464-39.133L23.464-41.461L22.753-41.461Q22.557-41.484 22.503-41.703L22.503-41.789Q22.561-42 22.753-42.023L23.854-42.023Q24.053-42.004 24.104-41.789L24.104-41.461Q24.366-41.746 24.721-41.904Q25.077-42.062 25.464-42.062Q25.757-42.062 25.991-41.928Q26.225-41.793 26.225-41.527Q26.225-41.359 26.116-41.242Q26.007-41.125 25.839-41.125Q25.686-41.125 25.571-41.236Q25.456-41.347 25.456-41.504Q25.081-41.504 24.766-41.303Q24.452-41.101 24.278-40.767Q24.104-40.433 24.104-40.054L24.104-39.133L25.050-39.133Q25.257-39.109 25.296-38.902L25.296-38.812Q25.257-38.597 25.050-38.574L22.753-38.574Q22.561-38.597 22.503-38.812M26.694-38.812L26.694-38.902Q26.733-39.109 26.940-39.133L27.229-39.133L27.229-42.902L26.940-42.902Q26.733-42.926 26.694-43.140L26.694-43.230Q26.733-43.437 26.940-43.461L28.901-43.461Q29.171-43.461 29.411-43.365Q29.651-43.269 29.843-43.099Q30.034-42.929 30.143-42.701Q30.253-42.472 30.253-42.207Q30.253-41.840 30.012-41.551Q29.772-41.261 29.405-41.133Q29.686-41.070 29.919-40.896Q30.151-40.722 30.286-40.467Q30.421-40.211 30.421-39.926Q30.421-39.566 30.239-39.256Q30.057-38.945 29.743-38.760Q29.428-38.574 29.069-38.574L26.940-38.574Q26.733-38.597 26.694-38.812M27.870-40.840L27.870-39.133L28.901-39.133Q29.128-39.133 29.331-39.236Q29.534-39.340 29.659-39.519Q29.784-39.699 29.784-39.926Q29.784-40.156 29.682-40.365Q29.581-40.574 29.399-40.707Q29.218-40.840 28.991-40.840L27.870-40.840M27.870-42.902L27.870-41.398L28.733-41.398Q29.077-41.398 29.346-41.633Q29.616-41.867 29.616-42.207Q29.616-42.394 29.518-42.554Q29.421-42.715 29.255-42.808Q29.089-42.902 28.901-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M39.102-39.551L33.789-39.551Q33.711-39.558 33.662-39.607Q33.614-39.656 33.614-39.734Q33.614-39.804 33.661-39.855Q33.707-39.906 33.789-39.918L39.102-39.918Q39.176-39.906 39.223-39.855Q39.270-39.804 39.270-39.734Q39.270-39.656 39.221-39.607Q39.172-39.558 39.102-39.551M39.102-41.238L33.789-41.238Q33.711-41.246 33.662-41.295Q33.614-41.344 33.614-41.422Q33.614-41.492 33.661-41.543Q33.707-41.594 33.789-41.605L39.102-41.605Q39.176-41.594 39.223-41.543Q39.270-41.492 39.270-41.422Q39.270-41.344 39.221-41.295Q39.172-41.246 39.102-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M44.352-38.574L42.634-38.574Q42.594-38.574 42.567-38.615Q42.540-38.656 42.540-38.703L42.563-38.804Q42.571-38.855 42.657-38.871Q43.387-38.871 43.512-39.398L44.540-43.496Q44.563-43.566 44.563-43.629Q44.563-43.691 44.497-43.711Q44.352-43.742 43.930-43.742Q43.825-43.773 43.825-43.871L43.856-43.972Q43.868-44.019 43.946-44.039L45.344-44.039Q45.403-44.039 45.440-44.010Q45.477-43.980 45.481-43.926L46.192-39.351L49.192-43.926Q49.270-44.039 49.387-44.039L50.731-44.039Q50.778-44.027 50.805-43.996Q50.833-43.965 50.833-43.918L50.809-43.812Q50.790-43.758 50.716-43.742Q50.274-43.742 50.114-43.703Q49.966-43.668 49.907-43.437L48.825-39.117Q48.809-39.023 48.809-38.980Q48.809-38.922 48.876-38.902Q49.016-38.871 49.442-38.871Q49.540-38.844 49.540-38.750L49.512-38.644Q49.505-38.594 49.426-38.574L47.344-38.574Q47.305-38.574 47.278-38.615Q47.251-38.656 47.251-38.703L47.274-38.804Q47.282-38.855 47.372-38.871Q47.809-38.871 47.968-38.910Q48.126-38.949 48.169-39.176L49.305-43.719L46.009-38.687Q45.942-38.574 45.809-38.574Q45.676-38.574 45.665-38.687L44.891-43.652L43.809-39.344Q43.794-39.242 43.794-39.191Q43.794-38.992 43.958-38.931Q44.122-38.871 44.372-38.871Q44.466-38.844 44.466-38.750L44.442-38.644Q44.434-38.594 44.352-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M53.318-37.463L51.027-37.463L51.027-37.721Q51.903-37.721 51.903-37.894L51.903-40.973Q51.710-40.885 51.478-40.848Q51.247-40.812 50.992-40.812L50.992-41.069Q51.370-41.069 51.691-41.154Q52.011-41.239 52.240-41.453L52.360-41.453Q52.392-41.453 52.417-41.430Q52.442-41.406 52.442-41.368L52.442-37.894Q52.442-37.721 53.318-37.721\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M56.612-36.574L55.436-36.574L55.436-44.574L56.612-44.574L56.612-44.207L55.803-44.207L55.803-36.941L56.612-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M56.989-38.812L56.989-38.902Q57.028-39.109 57.239-39.133L57.547-39.133L57.547-42.902L57.239-42.902Q57.028-42.926 56.989-43.140L56.989-43.230Q57.028-43.437 57.239-43.461L59.188-43.461Q59.586-43.461 59.932-43.260Q60.278-43.058 60.485-42.713Q60.692-42.367 60.692-41.965Q60.692-41.558 60.487-41.215Q60.282-40.871 59.936-40.666Q59.590-40.461 59.188-40.461L58.188-40.461L58.188-39.133L58.500-39.133Q58.711-39.109 58.750-38.902L58.750-38.812Q58.711-38.597 58.500-38.574L57.239-38.574Q57.028-38.597 56.989-38.812M58.188-42.902L58.188-41.023L59.028-41.023Q59.289-41.023 59.526-41.146Q59.762-41.269 59.907-41.484Q60.051-41.699 60.051-41.965Q60.051-42.234 59.907-42.445Q59.762-42.656 59.526-42.779Q59.289-42.902 59.028-42.902L58.188-42.902M63.317-38.496Q62.867-38.496 62.502-38.720Q62.137-38.945 61.883-39.328Q61.629-39.711 61.504-40.154Q61.379-40.597 61.379-41.023Q61.379-41.449 61.504-41.888Q61.629-42.328 61.883-42.711Q62.137-43.094 62.496-43.318Q62.856-43.543 63.317-43.543Q63.594-43.543 63.852-43.451Q64.110-43.359 64.325-43.191L64.457-43.429Q64.485-43.480 64.539-43.511Q64.594-43.543 64.653-43.543L64.731-43.543Q64.825-43.531 64.887-43.472Q64.950-43.414 64.961-43.308L64.961-41.980Q64.950-41.879 64.887-41.816Q64.825-41.754 64.731-41.742L64.563-41.742Q64.461-41.754 64.399-41.820Q64.336-41.886 64.325-41.980Q64.285-42.246 64.162-42.470Q64.039-42.695 63.836-42.838Q63.633-42.980 63.371-42.980Q63.039-42.980 62.787-42.797Q62.535-42.613 62.364-42.312Q62.192-42.011 62.106-41.670Q62.020-41.328 62.020-41.023Q62.020-40.719 62.104-40.377Q62.188-40.035 62.360-39.732Q62.532-39.429 62.789-39.242Q63.047-39.054 63.379-39.054Q63.762-39.054 64.043-39.328Q64.325-39.601 64.325-39.988Q64.352-40.199 64.563-40.222L64.731-40.222Q64.961-40.183 64.961-39.957Q64.961-39.640 64.825-39.369Q64.688-39.097 64.453-38.900Q64.219-38.703 63.928-38.599Q63.637-38.496 63.317-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M68.426-40.390L65.953-40.390Q65.875-40.402 65.826-40.451Q65.778-40.500 65.778-40.574Q65.778-40.648 65.826-40.697Q65.875-40.746 65.953-40.758L68.426-40.758L68.426-43.238Q68.453-43.406 68.610-43.406Q68.684-43.406 68.733-43.357Q68.782-43.308 68.793-43.238L68.793-40.758L71.266-40.758Q71.434-40.726 71.434-40.574Q71.434-40.422 71.266-40.390L68.793-40.390L68.793-37.910Q68.782-37.840 68.733-37.791Q68.684-37.742 68.610-37.742Q68.453-37.742 68.426-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M75.510-38.574L72.717-38.574L72.717-38.871Q73.779-38.871 73.779-39.133L73.779-43.301Q73.350-43.086 72.670-43.086L72.670-43.383Q73.689-43.383 74.205-43.894L74.350-43.894Q74.424-43.875 74.443-43.797L74.443-39.133Q74.443-38.871 75.510-38.871L75.510-38.574M77.521-36.574L76.346-36.574L76.346-36.941L77.154-36.941L77.154-44.207L76.346-44.207L76.346-44.574L77.521-44.574L77.521-36.574M79.346-37.168Q79.346-37.207 79.369-37.230Q79.643-37.515 79.785-37.879Q79.928-38.242 79.928-38.629Q79.830-38.574 79.705-38.574Q79.514-38.574 79.377-38.707Q79.240-38.840 79.240-39.039Q79.240-39.230 79.377-39.363Q79.514-39.496 79.705-39.496Q80.186-39.496 80.186-38.621Q80.186-38.332 80.113-38.051Q80.041-37.769 79.898-37.515Q79.756-37.261 79.561-37.054Q79.529-37.023 79.490-37.023Q79.443-37.023 79.395-37.068Q79.346-37.113 79.346-37.168M79.240-41.566Q79.240-41.750 79.377-41.886Q79.514-42.023 79.705-42.023Q79.896-42.023 80.029-41.890Q80.162-41.758 80.162-41.566Q80.162-41.367 80.029-41.234Q79.896-41.101 79.705-41.101Q79.514-41.101 79.377-41.238Q79.240-41.375 79.240-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M85.378-38.797L84.492-41.461L84.171-41.461Q83.972-41.484 83.921-41.703L83.921-41.789Q83.972-42 84.171-42.023L85.331-42.023Q85.527-42.004 85.577-41.789L85.577-41.703Q85.527-41.484 85.331-41.461L85.050-41.461L85.843-39.086L86.632-41.461L86.355-41.461Q86.156-41.484 86.105-41.703L86.105-41.789Q86.156-42 86.355-42.023L87.515-42.023Q87.710-42 87.761-41.789L87.761-41.703Q87.710-41.484 87.515-41.461L87.195-41.461L86.308-38.797Q86.265-38.683 86.163-38.609Q86.062-38.535 85.937-38.535L85.745-38.535Q85.628-38.535 85.525-38.607Q85.421-38.679 85.378-38.797M88.374-39.687Q88.374-40.133 88.788-40.390Q89.202-40.648 89.743-40.748Q90.284-40.847 90.792-40.855Q90.792-41.070 90.658-41.222Q90.523-41.375 90.316-41.451Q90.109-41.527 89.898-41.527Q89.554-41.527 89.394-41.504L89.394-41.445Q89.394-41.277 89.275-41.162Q89.156-41.047 88.992-41.047Q88.816-41.047 88.701-41.170Q88.585-41.293 88.585-41.461Q88.585-41.867 88.966-41.976Q89.347-42.086 89.906-42.086Q90.175-42.086 90.443-42.008Q90.710-41.929 90.935-41.779Q91.159-41.629 91.296-41.408Q91.433-41.187 91.433-40.910L91.433-39.191Q91.433-39.133 91.960-39.133Q92.156-39.113 92.206-38.902L92.206-38.812Q92.156-38.597 91.960-38.574L91.816-38.574Q91.472-38.574 91.243-38.621Q91.015-38.668 90.870-38.855Q90.409-38.535 89.702-38.535Q89.367-38.535 89.062-38.676Q88.757-38.816 88.566-39.078Q88.374-39.340 88.374-39.687M89.015-39.679Q89.015-39.406 89.257-39.250Q89.499-39.094 89.784-39.094Q90.003-39.094 90.236-39.152Q90.468-39.211 90.630-39.349Q90.792-39.488 90.792-39.711L90.792-40.301Q90.511-40.301 90.095-40.244Q89.679-40.187 89.347-40.049Q89.015-39.910 89.015-39.679M92.663-38.812L92.663-38.902Q92.714-39.109 92.909-39.133L94.015-39.133L94.015-42.902L92.909-42.902Q92.714-42.926 92.663-43.140L92.663-43.230Q92.714-43.437 92.909-43.461L94.406-43.461Q94.597-43.437 94.656-43.230L94.656-39.133L95.757-39.133Q95.956-39.109 96.007-38.902L96.007-38.812Q95.956-38.597 95.757-38.574L92.909-38.574Q92.714-38.597 92.663-38.812M98.726-38.496Q98.277-38.496 97.911-38.720Q97.546-38.945 97.292-39.328Q97.038-39.711 96.913-40.154Q96.788-40.597 96.788-41.023Q96.788-41.449 96.913-41.888Q97.038-42.328 97.292-42.711Q97.546-43.094 97.906-43.318Q98.265-43.543 98.726-43.543Q99.003-43.543 99.261-43.451Q99.519-43.359 99.734-43.191L99.867-43.429Q99.894-43.480 99.949-43.511Q100.003-43.543 100.062-43.543L100.140-43.543Q100.234-43.531 100.296-43.472Q100.359-43.414 100.370-43.308L100.370-41.980Q100.359-41.879 100.296-41.816Q100.234-41.754 100.140-41.742L99.972-41.742Q99.870-41.754 99.808-41.820Q99.745-41.886 99.734-41.980Q99.695-42.246 99.572-42.470Q99.449-42.695 99.245-42.838Q99.042-42.980 98.781-42.980Q98.449-42.980 98.197-42.797Q97.945-42.613 97.773-42.312Q97.601-42.011 97.515-41.670Q97.429-41.328 97.429-41.023Q97.429-40.719 97.513-40.377Q97.597-40.035 97.769-39.732Q97.941-39.429 98.199-39.242Q98.456-39.054 98.788-39.054Q99.171-39.054 99.452-39.328Q99.734-39.601 99.734-39.988Q99.761-40.199 99.972-40.222L100.140-40.222Q100.370-40.183 100.370-39.957Q100.370-39.640 100.234-39.369Q100.097-39.097 99.863-38.900Q99.628-38.703 99.337-38.599Q99.046-38.496 98.726-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M109.044-39.551L103.731-39.551Q103.653-39.558 103.604-39.607Q103.556-39.656 103.556-39.734Q103.556-39.804 103.603-39.855Q103.649-39.906 103.731-39.918L109.044-39.918Q109.118-39.906 109.165-39.855Q109.212-39.804 109.212-39.734Q109.212-39.656 109.163-39.607Q109.114-39.558 109.044-39.551M109.044-41.238L103.731-41.238Q103.653-41.246 103.604-41.295Q103.556-41.344 103.556-41.422Q103.556-41.492 103.603-41.543Q103.649-41.594 103.731-41.605L109.044-41.605Q109.118-41.594 109.165-41.543Q109.212-41.492 109.212-41.422Q109.212-41.344 109.163-41.295Q109.114-41.246 109.044-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M114.294-38.574L112.576-38.574Q112.536-38.574 112.509-38.615Q112.482-38.656 112.482-38.703L112.505-38.804Q112.513-38.855 112.599-38.871Q113.329-38.871 113.454-39.398L114.482-43.496Q114.505-43.566 114.505-43.629Q114.505-43.691 114.439-43.711Q114.294-43.742 113.872-43.742Q113.767-43.773 113.767-43.871L113.798-43.972Q113.810-44.019 113.888-44.039L115.286-44.039Q115.345-44.039 115.382-44.010Q115.419-43.980 115.423-43.926L116.134-39.351L119.134-43.926Q119.212-44.039 119.329-44.039L120.673-44.039Q120.720-44.027 120.747-43.996Q120.775-43.965 120.775-43.918L120.751-43.812Q120.732-43.758 120.658-43.742Q120.216-43.742 120.056-43.703Q119.908-43.668 119.849-43.437L118.767-39.117Q118.751-39.023 118.751-38.980Q118.751-38.922 118.818-38.902Q118.958-38.871 119.384-38.871Q119.482-38.844 119.482-38.750L119.454-38.644Q119.447-38.594 119.368-38.574L117.286-38.574Q117.247-38.574 117.220-38.615Q117.193-38.656 117.193-38.703L117.216-38.804Q117.224-38.855 117.314-38.871Q117.751-38.871 117.910-38.910Q118.068-38.949 118.111-39.176L119.247-43.719L115.951-38.687Q115.884-38.574 115.751-38.574Q115.618-38.574 115.607-38.687L114.833-43.652L113.751-39.344Q113.736-39.242 113.736-39.191Q113.736-38.992 113.900-38.931Q114.064-38.871 114.314-38.871Q114.408-38.844 114.408-38.750L114.384-38.644Q114.376-38.594 114.294-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M120.597-38.386Q120.597-38.773 120.858-39.044Q121.118-39.315 121.520-39.484L121.347-39.581Q121.098-39.728 120.944-39.946Q120.790-40.164 120.790-40.434Q120.790-40.744 120.976-40.977Q121.162-41.210 121.455-41.332Q121.748-41.453 122.050-41.453Q122.340-41.453 122.632-41.355Q122.923-41.257 123.116-41.052Q123.310-40.847 123.310-40.548Q123.310-40.229 123.100-40.009Q122.891-39.789 122.548-39.628L122.870-39.455Q123.152-39.291 123.326-39.045Q123.500-38.799 123.500-38.494Q123.500-38.131 123.285-37.869Q123.070-37.607 122.733-37.472Q122.396-37.337 122.050-37.337Q121.707-37.337 121.373-37.451Q121.039-37.566 120.818-37.801Q120.597-38.037 120.597-38.386M121.004-38.392Q121.004-38.017 121.334-37.797Q121.663-37.577 122.050-37.577Q122.284-37.577 122.525-37.652Q122.765-37.727 122.929-37.885Q123.093-38.043 123.093-38.286Q123.093-38.456 122.985-38.595Q122.876-38.734 122.715-38.825L121.778-39.341Q121.452-39.203 121.228-38.957Q121.004-38.711 121.004-38.392M121.426-40.246L122.302-39.766Q122.949-40.082 122.949-40.548Q122.949-40.762 122.813-40.919Q122.677-41.075 122.470-41.153Q122.264-41.231 122.050-41.231Q121.728-41.231 121.438-41.091Q121.148-40.952 121.148-40.662Q121.148-40.431 121.426-40.246\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M126.554-36.574L125.378-36.574L125.378-44.574L126.554-44.574L126.554-44.207L125.745-44.207L125.745-36.941L126.554-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M126.931-38.812L126.931-38.902Q126.970-39.109 127.181-39.133L127.489-39.133L127.489-42.902L127.181-42.902Q126.970-42.926 126.931-43.140L126.931-43.230Q126.970-43.437 127.181-43.461L129.130-43.461Q129.528-43.461 129.874-43.260Q130.220-43.058 130.427-42.713Q130.634-42.367 130.634-41.965Q130.634-41.558 130.429-41.215Q130.224-40.871 129.878-40.666Q129.532-40.461 129.130-40.461L128.130-40.461L128.130-39.133L128.442-39.133Q128.653-39.109 128.692-38.902L128.692-38.812Q128.653-38.597 128.442-38.574L127.181-38.574Q126.970-38.597 126.931-38.812M128.130-42.902L128.130-41.023L128.970-41.023Q129.231-41.023 129.468-41.146Q129.704-41.269 129.849-41.484Q129.993-41.699 129.993-41.965Q129.993-42.234 129.849-42.445Q129.704-42.656 129.468-42.779Q129.231-42.902 128.970-42.902L128.130-42.902M133.259-38.496Q132.810-38.496 132.444-38.720Q132.079-38.945 131.825-39.328Q131.571-39.711 131.446-40.154Q131.321-40.597 131.321-41.023Q131.321-41.449 131.446-41.888Q131.571-42.328 131.825-42.711Q132.079-43.094 132.438-43.318Q132.798-43.543 133.259-43.543Q133.536-43.543 133.794-43.451Q134.052-43.359 134.267-43.191L134.399-43.429Q134.427-43.480 134.481-43.511Q134.536-43.543 134.595-43.543L134.673-43.543Q134.767-43.531 134.829-43.472Q134.892-43.414 134.903-43.308L134.903-41.980Q134.892-41.879 134.829-41.816Q134.767-41.754 134.673-41.742L134.505-41.742Q134.403-41.754 134.341-41.820Q134.278-41.886 134.267-41.980Q134.227-42.246 134.104-42.470Q133.981-42.695 133.778-42.838Q133.575-42.980 133.313-42.980Q132.981-42.980 132.729-42.797Q132.477-42.613 132.306-42.312Q132.134-42.011 132.048-41.670Q131.962-41.328 131.962-41.023Q131.962-40.719 132.046-40.377Q132.130-40.035 132.302-39.732Q132.474-39.429 132.731-39.242Q132.989-39.054 133.321-39.054Q133.704-39.054 133.985-39.328Q134.267-39.601 134.267-39.988Q134.294-40.199 134.505-40.222L134.673-40.222Q134.903-40.183 134.903-39.957Q134.903-39.640 134.767-39.369Q134.630-39.097 134.395-38.900Q134.161-38.703 133.870-38.599Q133.579-38.496 133.259-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M138.368-40.390L135.895-40.390Q135.817-40.402 135.768-40.451Q135.720-40.500 135.720-40.574Q135.720-40.648 135.768-40.697Q135.817-40.746 135.895-40.758L138.368-40.758L138.368-43.238Q138.395-43.406 138.552-43.406Q138.626-43.406 138.675-43.357Q138.724-43.308 138.735-43.238L138.735-40.758L141.208-40.758Q141.376-40.726 141.376-40.574Q141.376-40.422 141.208-40.390L138.735-40.390L138.735-37.910Q138.724-37.840 138.675-37.791Q138.626-37.742 138.552-37.742Q138.395-37.742 138.368-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M145.444-38.574L142.284-38.574L142.284-38.781Q142.284-38.808 142.307-38.840L143.659-40.238Q144.038-40.625 144.286-40.914Q144.534-41.203 144.708-41.560Q144.881-41.918 144.881-42.308Q144.881-42.656 144.749-42.949Q144.616-43.242 144.362-43.420Q144.108-43.597 143.753-43.597Q143.393-43.597 143.102-43.402Q142.811-43.207 142.667-42.879L142.721-42.879Q142.905-42.879 143.030-42.758Q143.155-42.636 143.155-42.445Q143.155-42.265 143.030-42.136Q142.905-42.008 142.721-42.008Q142.542-42.008 142.413-42.136Q142.284-42.265 142.284-42.445Q142.284-42.847 142.504-43.183Q142.725-43.519 143.090-43.707Q143.456-43.894 143.858-43.894Q144.338-43.894 144.754-43.707Q145.171-43.519 145.422-43.158Q145.674-42.797 145.674-42.308Q145.674-41.949 145.520-41.646Q145.366-41.344 145.114-41.084Q144.862-40.824 144.512-40.539Q144.163-40.254 143.995-40.101L143.065-39.261L143.780-39.261Q145.155-39.261 145.194-39.301Q145.264-39.379 145.307-39.564Q145.350-39.750 145.393-40.039L145.674-40.039L145.444-38.574M147.463-36.574L146.288-36.574L146.288-36.941L147.096-36.941L147.096-44.207L146.288-44.207L146.288-44.574L147.463-44.574L147.463-36.574M149.288-37.168Q149.288-37.207 149.311-37.230Q149.585-37.515 149.727-37.879Q149.870-38.242 149.870-38.629Q149.772-38.574 149.647-38.574Q149.456-38.574 149.319-38.707Q149.182-38.840 149.182-39.039Q149.182-39.230 149.319-39.363Q149.456-39.496 149.647-39.496Q150.128-39.496 150.128-38.621Q150.128-38.332 150.055-38.051Q149.983-37.769 149.840-37.515Q149.698-37.261 149.503-37.054Q149.471-37.023 149.432-37.023Q149.385-37.023 149.337-37.068Q149.288-37.113 149.288-37.168M149.182-41.566Q149.182-41.750 149.319-41.886Q149.456-42.023 149.647-42.023Q149.838-42.023 149.971-41.890Q150.104-41.758 150.104-41.566Q150.104-41.367 149.971-41.234Q149.838-41.101 149.647-41.101Q149.456-41.101 149.319-41.238Q149.182-41.375 149.182-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M155.320-38.797L154.434-41.461L154.113-41.461Q153.914-41.484 153.863-41.703L153.863-41.789Q153.914-42 154.113-42.023L155.273-42.023Q155.469-42.004 155.519-41.789L155.519-41.703Q155.469-41.484 155.273-41.461L154.992-41.461L155.785-39.086L156.574-41.461L156.297-41.461Q156.098-41.484 156.047-41.703L156.047-41.789Q156.098-42 156.297-42.023L157.457-42.023Q157.652-42 157.703-41.789L157.703-41.703Q157.652-41.484 157.457-41.461L157.137-41.461L156.250-38.797Q156.207-38.683 156.105-38.609Q156.004-38.535 155.879-38.535L155.687-38.535Q155.570-38.535 155.467-38.607Q155.363-38.679 155.320-38.797M158.316-39.687Q158.316-40.133 158.730-40.390Q159.144-40.648 159.685-40.748Q160.226-40.847 160.734-40.855Q160.734-41.070 160.600-41.222Q160.465-41.375 160.258-41.451Q160.051-41.527 159.840-41.527Q159.496-41.527 159.336-41.504L159.336-41.445Q159.336-41.277 159.217-41.162Q159.098-41.047 158.934-41.047Q158.758-41.047 158.643-41.170Q158.527-41.293 158.527-41.461Q158.527-41.867 158.908-41.976Q159.289-42.086 159.848-42.086Q160.117-42.086 160.385-42.008Q160.652-41.929 160.877-41.779Q161.101-41.629 161.238-41.408Q161.375-41.187 161.375-40.910L161.375-39.191Q161.375-39.133 161.902-39.133Q162.098-39.113 162.148-38.902L162.148-38.812Q162.098-38.597 161.902-38.574L161.758-38.574Q161.414-38.574 161.185-38.621Q160.957-38.668 160.812-38.855Q160.351-38.535 159.644-38.535Q159.309-38.535 159.004-38.676Q158.699-38.816 158.508-39.078Q158.316-39.340 158.316-39.687M158.957-39.679Q158.957-39.406 159.199-39.250Q159.441-39.094 159.726-39.094Q159.945-39.094 160.178-39.152Q160.410-39.211 160.572-39.349Q160.734-39.488 160.734-39.711L160.734-40.301Q160.453-40.301 160.037-40.244Q159.621-40.187 159.289-40.049Q158.957-39.910 158.957-39.679M162.605-38.812L162.605-38.902Q162.656-39.109 162.851-39.133L163.957-39.133L163.957-42.902L162.851-42.902Q162.656-42.926 162.605-43.140L162.605-43.230Q162.656-43.437 162.851-43.461L164.348-43.461Q164.539-43.437 164.598-43.230L164.598-39.133L165.699-39.133Q165.898-39.109 165.949-38.902L165.949-38.812Q165.898-38.597 165.699-38.574L162.851-38.574Q162.656-38.597 162.605-38.812M166.586-38.812L166.586-38.902Q166.625-39.109 166.836-39.133L167.144-39.133L167.144-42.902L166.836-42.902Q166.625-42.926 166.586-43.140L166.586-43.230Q166.625-43.437 166.836-43.461L168.785-43.461Q169.184-43.461 169.529-43.260Q169.875-43.058 170.082-42.713Q170.289-42.367 170.289-41.965Q170.289-41.558 170.084-41.215Q169.879-40.871 169.533-40.666Q169.187-40.461 168.785-40.461L167.785-40.461L167.785-39.133L168.098-39.133Q168.309-39.109 168.348-38.902L168.348-38.812Q168.309-38.597 168.098-38.574L166.836-38.574Q166.625-38.597 166.586-38.812M167.785-42.902L167.785-41.023L168.625-41.023Q168.887-41.023 169.123-41.146Q169.359-41.269 169.504-41.484Q169.648-41.699 169.648-41.965Q169.648-42.234 169.504-42.445Q169.359-42.656 169.123-42.779Q168.887-42.902 168.625-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M178.986-39.551L173.673-39.551Q173.595-39.558 173.546-39.607Q173.498-39.656 173.498-39.734Q173.498-39.804 173.545-39.855Q173.591-39.906 173.673-39.918L178.986-39.918Q179.060-39.906 179.107-39.855Q179.154-39.804 179.154-39.734Q179.154-39.656 179.105-39.607Q179.056-39.558 178.986-39.551M178.986-41.238L173.673-41.238Q173.595-41.246 173.546-41.295Q173.498-41.344 173.498-41.422Q173.498-41.492 173.545-41.543Q173.591-41.594 173.673-41.605L178.986-41.605Q179.060-41.594 179.107-41.543Q179.154-41.492 179.154-41.422Q179.154-41.344 179.105-41.295Q179.056-41.246 178.986-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M182.182-38.812L182.182-38.902Q182.221-39.109 182.432-39.133L182.740-39.133L182.740-42.902L182.432-42.902Q182.221-42.926 182.182-43.140L182.182-43.230Q182.221-43.437 182.432-43.461L184.381-43.461Q184.779-43.461 185.125-43.260Q185.471-43.058 185.678-42.713Q185.885-42.367 185.885-41.965Q185.885-41.558 185.680-41.215Q185.475-40.871 185.129-40.666Q184.783-40.461 184.381-40.461L183.381-40.461L183.381-39.133L183.693-39.133Q183.904-39.109 183.943-38.902L183.943-38.812Q183.904-38.597 183.693-38.574L182.432-38.574Q182.221-38.597 182.182-38.812M183.381-42.902L183.381-41.023L184.221-41.023Q184.482-41.023 184.719-41.146Q184.955-41.269 185.100-41.484Q185.244-41.699 185.244-41.965Q185.244-42.234 185.100-42.445Q184.955-42.656 184.719-42.779Q184.482-42.902 184.221-42.902L183.381-42.902M188.510-38.496Q188.060-38.496 187.695-38.720Q187.330-38.945 187.076-39.328Q186.822-39.711 186.697-40.154Q186.572-40.597 186.572-41.023Q186.572-41.449 186.697-41.888Q186.822-42.328 187.076-42.711Q187.330-43.094 187.689-43.318Q188.049-43.543 188.510-43.543Q188.787-43.543 189.045-43.451Q189.303-43.359 189.518-43.191L189.650-43.429Q189.678-43.480 189.732-43.511Q189.787-43.543 189.846-43.543L189.924-43.543Q190.018-43.531 190.080-43.472Q190.143-43.414 190.154-43.308L190.154-41.980Q190.143-41.879 190.080-41.816Q190.018-41.754 189.924-41.742L189.756-41.742Q189.654-41.754 189.592-41.820Q189.529-41.886 189.518-41.980Q189.478-42.246 189.355-42.470Q189.232-42.695 189.029-42.838Q188.826-42.980 188.564-42.980Q188.232-42.980 187.980-42.797Q187.728-42.613 187.557-42.312Q187.385-42.011 187.299-41.670Q187.213-41.328 187.213-41.023Q187.213-40.719 187.297-40.377Q187.381-40.035 187.553-39.732Q187.725-39.429 187.982-39.242Q188.240-39.054 188.572-39.054Q188.955-39.054 189.236-39.328Q189.518-39.601 189.518-39.988Q189.545-40.199 189.756-40.222L189.924-40.222Q190.154-40.183 190.154-39.957Q190.154-39.640 190.018-39.369Q189.881-39.097 189.646-38.900Q189.412-38.703 189.121-38.599Q188.830-38.496 188.510-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M193.619-40.390L191.146-40.390Q191.068-40.402 191.019-40.451Q190.971-40.500 190.971-40.574Q190.971-40.648 191.019-40.697Q191.068-40.746 191.146-40.758L193.619-40.758L193.619-43.238Q193.646-43.406 193.803-43.406Q193.877-43.406 193.926-43.357Q193.975-43.308 193.986-43.238L193.986-40.758L196.459-40.758Q196.627-40.726 196.627-40.574Q196.627-40.422 196.459-40.390L193.986-40.390L193.986-37.910Q193.975-37.840 193.926-37.791Q193.877-37.742 193.803-37.742Q193.646-37.742 193.619-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 2)\">\u003Cpath d=\"M200.703-38.574L197.910-38.574L197.910-38.871Q198.972-38.871 198.972-39.133L198.972-43.301Q198.543-43.086 197.863-43.086L197.863-43.383Q198.882-43.383 199.398-43.894L199.543-43.894Q199.617-43.875 199.636-43.797L199.636-39.133Q199.636-38.871 200.703-38.871L200.703-38.574M203.476-38.406Q202.773-38.406 202.373-38.806Q201.972-39.207 201.828-39.816Q201.683-40.426 201.683-41.125Q201.683-41.648 201.754-42.111Q201.824-42.574 202.017-42.986Q202.211-43.398 202.568-43.646Q202.925-43.894 203.476-43.894Q204.027-43.894 204.384-43.646Q204.742-43.398 204.933-42.988Q205.125-42.578 205.195-42.109Q205.265-41.640 205.265-41.125Q205.265-40.426 205.123-39.818Q204.980-39.211 204.580-38.808Q204.179-38.406 203.476-38.406M203.476-38.664Q203.949-38.664 204.181-39.099Q204.414-39.535 204.468-40.074Q204.523-40.613 204.523-41.254Q204.523-42.250 204.339-42.943Q204.156-43.636 203.476-43.636Q203.109-43.636 202.888-43.398Q202.668-43.160 202.572-42.803Q202.476-42.445 202.451-42.074Q202.425-41.703 202.425-41.254Q202.425-40.613 202.480-40.074Q202.535-39.535 202.767-39.099Q203-38.664 203.476-38.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516-26.624h227.622\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(167.485 26.616)\">\u003Cpath d=\"M14.584-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.584-43.356Q15.069-43.356 15.505-43.161Q15.941-42.966 16.264-42.624Q16.587-42.282 16.765-41.842Q16.942-41.401 16.942-40.919Q16.942-40.433 16.758-40.010Q16.573-39.586 16.250-39.264Q15.927-38.943 15.495-38.759Q15.063-38.574 14.584-38.574M13.196-42.864L13.196-39.063Q13.196-38.923 13.285-38.888Q13.374-38.854 13.562-38.854L14.386-38.854Q15.011-38.854 15.415-39.116Q15.818-39.377 16.006-39.844Q16.194-40.310 16.194-40.919Q16.194-41.397 16.102-41.790Q16.009-42.183 15.760-42.481Q15.521-42.768 15.157-42.922Q14.793-43.075 14.386-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.711-40.109Q17.711-40.430 17.836-40.719Q17.961-41.008 18.187-41.231Q18.412-41.455 18.708-41.575Q19.003-41.695 19.321-41.695Q19.649-41.695 19.911-41.595Q20.172-41.496 20.348-41.314Q20.524-41.131 20.618-40.873Q20.712-40.615 20.712-40.283Q20.712-40.191 20.630-40.170L18.375-40.170L18.375-40.109Q18.375-39.521 18.658-39.138Q18.942-38.755 19.509-38.755Q19.831-38.755 20.099-38.948Q20.367-39.141 20.456-39.456Q20.463-39.497 20.538-39.511L20.630-39.511Q20.712-39.487 20.712-39.415Q20.712-39.408 20.706-39.381Q20.593-38.984 20.222-38.745Q19.851-38.506 19.427-38.506Q18.990-38.506 18.590-38.714Q18.190-38.923 17.951-39.290Q17.711-39.657 17.711-40.109M18.381-40.379L20.196-40.379Q20.196-40.656 20.099-40.908Q20.002-41.161 19.803-41.317Q19.605-41.472 19.321-41.472Q19.044-41.472 18.831-41.314Q18.617-41.155 18.499-40.900Q18.381-40.645 18.381-40.379M21.300-40.085Q21.300-40.413 21.435-40.714Q21.570-41.014 21.806-41.235Q22.042-41.455 22.346-41.575Q22.650-41.695 22.975-41.695Q23.481-41.695 23.830-41.592Q24.178-41.490 24.178-41.114Q24.178-40.967 24.081-40.866Q23.983-40.765 23.836-40.765Q23.683-40.765 23.584-40.864Q23.484-40.963 23.484-41.114Q23.484-41.302 23.625-41.394Q23.423-41.445 22.982-41.445Q22.627-41.445 22.398-41.249Q22.169-41.052 22.068-40.743Q21.967-40.433 21.967-40.085Q21.967-39.736 22.093-39.430Q22.220-39.124 22.474-38.940Q22.729-38.755 23.085-38.755Q23.307-38.755 23.491-38.839Q23.676-38.923 23.811-39.078Q23.946-39.234 24.004-39.442Q24.018-39.497 24.072-39.497L24.185-39.497Q24.216-39.497 24.238-39.473Q24.260-39.449 24.260-39.415L24.260-39.394Q24.175-39.107 23.987-38.909Q23.799-38.711 23.534-38.608Q23.269-38.506 22.975-38.506Q22.544-38.506 22.157-38.712Q21.769-38.919 21.534-39.282Q21.300-39.644 21.300-40.085M24.807-40.057Q24.807-40.399 24.942-40.698Q25.077-40.997 25.316-41.221Q25.556-41.445 25.874-41.570Q26.191-41.695 26.523-41.695Q26.967-41.695 27.367-41.479Q27.767-41.264 28.001-40.886Q28.235-40.509 28.235-40.057Q28.235-39.716 28.094-39.432Q27.952-39.148 27.707-38.941Q27.463-38.735 27.154-38.620Q26.844-38.506 26.523-38.506Q26.092-38.506 25.691-38.707Q25.289-38.909 25.048-39.261Q24.807-39.613 24.807-40.057M26.523-38.755Q27.125-38.755 27.348-39.133Q27.572-39.511 27.572-40.143Q27.572-40.755 27.338-41.114Q27.104-41.472 26.523-41.472Q25.470-41.472 25.470-40.143Q25.470-39.511 25.696-39.133Q25.921-38.755 26.523-38.755\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(167.485 26.616)\">\u003Cpath d=\"M29.066-40.085Q29.066-40.423 29.207-40.714Q29.347-41.004 29.591-41.218Q29.835-41.431 30.140-41.546Q30.444-41.660 30.769-41.660Q31.039-41.660 31.302-41.561Q31.565-41.462 31.756-41.284L31.756-42.682Q31.756-42.952 31.649-43.014Q31.541-43.075 31.230-43.075L31.230-43.356L32.307-43.431L32.307-39.247Q32.307-39.059 32.361-38.976Q32.416-38.892 32.517-38.873Q32.618-38.854 32.833-38.854L32.833-38.574L31.726-38.506L31.726-38.923Q31.309-38.506 30.683-38.506Q30.252-38.506 29.880-38.718Q29.507-38.929 29.287-39.290Q29.066-39.651 29.066-40.085M30.741-38.728Q30.950-38.728 31.136-38.800Q31.322-38.871 31.476-39.008Q31.630-39.145 31.726-39.323L31.726-40.932Q31.640-41.079 31.495-41.199Q31.350-41.319 31.180-41.378Q31.011-41.438 30.830-41.438Q30.270-41.438 30.001-41.049Q29.733-40.659 29.733-40.078Q29.733-39.507 29.967-39.117Q30.201-38.728 30.741-38.728M33.441-40.109Q33.441-40.430 33.566-40.719Q33.691-41.008 33.917-41.231Q34.142-41.455 34.438-41.575Q34.733-41.695 35.051-41.695Q35.379-41.695 35.641-41.595Q35.902-41.496 36.078-41.314Q36.254-41.131 36.348-40.873Q36.442-40.615 36.442-40.283Q36.442-40.191 36.360-40.170L34.105-40.170L34.105-40.109Q34.105-39.521 34.388-39.138Q34.672-38.755 35.239-38.755Q35.561-38.755 35.829-38.948Q36.097-39.141 36.186-39.456Q36.193-39.497 36.268-39.511L36.360-39.511Q36.442-39.487 36.442-39.415Q36.442-39.408 36.436-39.381Q36.323-38.984 35.952-38.745Q35.581-38.506 35.157-38.506Q34.720-38.506 34.320-38.714Q33.920-38.923 33.681-39.290Q33.441-39.657 33.441-40.109M34.111-40.379L35.926-40.379Q35.926-40.656 35.829-40.908Q35.731-41.161 35.533-41.317Q35.335-41.472 35.051-41.472Q34.774-41.472 34.561-41.314Q34.347-41.155 34.229-40.900Q34.111-40.645 34.111-40.379\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 25.907)\">\u003Cpath d=\"M13.771-40.023L11.517-40.023L11.517-40.574L13.771-40.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516-2.439h227.622\"\u002F>\u003Cg transform=\"translate(165.006 50.761)\">\u003Cpath d=\"M16.201-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L16.088-43.356L16.296-41.719L16.033-41.719Q15.975-42.190 15.873-42.455Q15.770-42.720 15.586-42.853Q15.401-42.987 15.129-43.031Q14.857-43.075 14.358-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.199L13.784-41.199Q14.174-41.199 14.357-41.250Q14.540-41.302 14.622-41.474Q14.704-41.647 14.704-42.019L14.967-42.019L14.967-40.098L14.704-40.098Q14.704-40.471 14.622-40.644Q14.540-40.816 14.357-40.867Q14.174-40.919 13.784-40.919L13.210-40.919L13.210-39.063Q13.210-38.923 13.299-38.888Q13.388-38.854 13.576-38.854L14.423-38.854Q14.953-38.854 15.263-38.923Q15.572-38.991 15.760-39.158Q15.948-39.326 16.055-39.628Q16.163-39.931 16.249-40.444L16.515-40.444L16.201-38.574M18.286-38.574L16.963-38.574L16.963-38.854Q17.523-38.854 17.903-39.254L18.617-40.051L17.705-41.100Q17.568-41.247 17.419-41.279Q17.271-41.312 17.004-41.312L17.004-41.592L18.504-41.592L18.504-41.312Q18.313-41.312 18.313-41.178Q18.313-41.148 18.344-41.100L18.939-40.416L19.379-40.912Q19.492-41.042 19.492-41.158Q19.492-41.220 19.455-41.266Q19.417-41.312 19.359-41.312L19.359-41.592L20.675-41.592L20.675-41.312Q20.114-41.312 19.735-40.912L19.113-40.211L20.107-39.063Q20.207-38.964 20.307-38.919Q20.408-38.875 20.519-38.865Q20.630-38.854 20.808-38.854L20.808-38.574L19.315-38.574L19.315-38.854Q19.379-38.854 19.439-38.888Q19.499-38.923 19.499-38.988Q19.499-39.035 19.468-39.063L18.792-39.849L18.258-39.254Q18.146-39.124 18.146-39.008Q18.146-38.943 18.187-38.899Q18.228-38.854 18.286-38.854L18.286-38.574M21.263-40.109Q21.263-40.430 21.388-40.719Q21.512-41.008 21.738-41.231Q21.963-41.455 22.259-41.575Q22.555-41.695 22.873-41.695Q23.201-41.695 23.462-41.595Q23.724-41.496 23.900-41.314Q24.076-41.131 24.170-40.873Q24.264-40.615 24.264-40.283Q24.264-40.191 24.182-40.170L21.926-40.170L21.926-40.109Q21.926-39.521 22.210-39.138Q22.493-38.755 23.061-38.755Q23.382-38.755 23.650-38.948Q23.919-39.141 24.007-39.456Q24.014-39.497 24.089-39.511L24.182-39.511Q24.264-39.487 24.264-39.415Q24.264-39.408 24.257-39.381Q24.144-38.984 23.773-38.745Q23.402-38.506 22.979-38.506Q22.541-38.506 22.141-38.714Q21.741-38.923 21.502-39.290Q21.263-39.657 21.263-40.109M21.933-40.379L23.748-40.379Q23.748-40.656 23.650-40.908Q23.553-41.161 23.355-41.317Q23.156-41.472 22.873-41.472Q22.596-41.472 22.382-41.314Q22.169-41.155 22.051-40.900Q21.933-40.645 21.933-40.379M24.852-40.085Q24.852-40.413 24.987-40.714Q25.122-41.014 25.357-41.235Q25.593-41.455 25.898-41.575Q26.202-41.695 26.526-41.695Q27.032-41.695 27.381-41.592Q27.730-41.490 27.730-41.114Q27.730-40.967 27.632-40.866Q27.535-40.765 27.388-40.765Q27.234-40.765 27.135-40.864Q27.036-40.963 27.036-41.114Q27.036-41.302 27.176-41.394Q26.974-41.445 26.533-41.445Q26.178-41.445 25.949-41.249Q25.720-41.052 25.619-40.743Q25.518-40.433 25.518-40.085Q25.518-39.736 25.645-39.430Q25.771-39.124 26.026-38.940Q26.280-38.755 26.636-38.755Q26.858-38.755 27.043-38.839Q27.227-38.923 27.362-39.078Q27.497-39.234 27.555-39.442Q27.569-39.497 27.624-39.497L27.736-39.497Q27.767-39.497 27.789-39.473Q27.812-39.449 27.812-39.415L27.812-39.394Q27.726-39.107 27.538-38.909Q27.350-38.711 27.085-38.608Q26.820-38.506 26.526-38.506Q26.096-38.506 25.708-38.712Q25.320-38.919 25.086-39.282Q24.852-39.644 24.852-40.085M28.974-39.408L28.974-40.912Q28.974-41.182 28.866-41.243Q28.758-41.305 28.447-41.305L28.447-41.585L29.555-41.660L29.555-39.428L29.555-39.408Q29.555-39.128 29.606-38.984Q29.657-38.841 29.799-38.784Q29.941-38.728 30.228-38.728Q30.481-38.728 30.686-38.868Q30.891-39.008 31.007-39.234Q31.124-39.459 31.124-39.709L31.124-40.912Q31.124-41.182 31.016-41.243Q30.908-41.305 30.597-41.305L30.597-41.585L31.705-41.660L31.705-39.247Q31.705-39.056 31.758-38.974Q31.811-38.892 31.911-38.873Q32.012-38.854 32.228-38.854L32.228-38.574L31.151-38.506L31.151-39.070Q31.042-38.888 30.896-38.765Q30.751-38.642 30.565-38.574Q30.378-38.506 30.177-38.506Q28.974-38.506 28.974-39.408M33.342-39.415L33.342-41.312L32.703-41.312L32.703-41.534Q33.021-41.534 33.238-41.744Q33.455-41.954 33.555-42.264Q33.656-42.573 33.656-42.881L33.923-42.881L33.923-41.592L35-41.592L35-41.312L33.923-41.312L33.923-39.428Q33.923-39.152 34.027-38.953Q34.131-38.755 34.391-38.755Q34.548-38.755 34.654-38.859Q34.760-38.964 34.810-39.117Q34.859-39.271 34.859-39.428L34.859-39.842L35.126-39.842L35.126-39.415Q35.126-39.189 35.027-38.979Q34.928-38.769 34.743-38.637Q34.559-38.506 34.330-38.506Q33.892-38.506 33.617-38.743Q33.342-38.981 33.342-39.415M35.895-40.109Q35.895-40.430 36.020-40.719Q36.145-41.008 36.370-41.231Q36.596-41.455 36.891-41.575Q37.187-41.695 37.505-41.695Q37.833-41.695 38.095-41.595Q38.356-41.496 38.532-41.314Q38.708-41.131 38.802-40.873Q38.896-40.615 38.896-40.283Q38.896-40.191 38.814-40.170L36.558-40.170L36.558-40.109Q36.558-39.521 36.842-39.138Q37.126-38.755 37.693-38.755Q38.014-38.755 38.283-38.948Q38.551-39.141 38.640-39.456Q38.647-39.497 38.722-39.511L38.814-39.511Q38.896-39.487 38.896-39.415Q38.896-39.408 38.889-39.381Q38.776-38.984 38.406-38.745Q38.035-38.506 37.611-38.506Q37.173-38.506 36.773-38.714Q36.374-38.923 36.134-39.290Q35.895-39.657 35.895-40.109M36.565-40.379L38.380-40.379Q38.380-40.656 38.283-40.908Q38.185-41.161 37.987-41.317Q37.789-41.472 37.505-41.472Q37.228-41.472 37.014-41.314Q36.801-41.155 36.683-40.900Q36.565-40.645 36.565-40.379\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(208.393 50.53)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.341-38.812L24.341-38.902Q24.380-39.109 24.591-39.133L24.899-39.133L24.899-42.902L24.591-42.902Q24.380-42.926 24.341-43.140L24.341-43.230Q24.380-43.437 24.591-43.461L27.798-43.461Q27.993-43.437 28.044-43.230L28.044-42.390Q27.993-42.176 27.798-42.148L27.653-42.148Q27.458-42.176 27.403-42.390L27.403-42.902L25.540-42.902L25.540-41.383L26.517-41.383L26.517-41.597Q26.567-41.804 26.767-41.832L26.911-41.832Q27.107-41.804 27.157-41.597L27.157-40.613Q27.107-40.398 26.911-40.375L26.767-40.375Q26.567-40.398 26.517-40.613L26.517-40.820L25.540-40.820L25.540-39.133L27.583-39.133L27.583-39.773Q27.634-39.980 27.829-40.008L27.974-40.008Q28.169-39.980 28.220-39.773L28.220-38.812Q28.169-38.594 27.974-38.574L24.591-38.574Q24.380-38.597 24.341-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 50.53)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 50.53)\">\u003Cpath d=\"M41.874-38.406Q41.171-38.406 40.771-38.806Q40.370-39.207 40.226-39.816Q40.081-40.426 40.081-41.125Q40.081-41.648 40.151-42.111Q40.222-42.574 40.415-42.986Q40.608-43.398 40.966-43.646Q41.323-43.894 41.874-43.894Q42.425-43.894 42.782-43.646Q43.140-43.398 43.331-42.988Q43.523-42.578 43.593-42.109Q43.663-41.640 43.663-41.125Q43.663-40.426 43.521-39.818Q43.378-39.211 42.978-38.808Q42.577-38.406 41.874-38.406M41.874-38.664Q42.347-38.664 42.579-39.099Q42.812-39.535 42.866-40.074Q42.921-40.613 42.921-41.254Q42.921-42.250 42.737-42.943Q42.554-43.636 41.874-43.636Q41.507-43.636 41.286-43.398Q41.066-43.160 40.970-42.803Q40.874-42.445 40.849-42.074Q40.823-41.703 40.823-41.254Q40.823-40.613 40.878-40.074Q40.933-39.535 41.165-39.099Q41.398-38.664 41.874-38.664\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 50.53)\">\u003Cpath d=\"M49.013-40.390L46.540-40.390Q46.462-40.402 46.413-40.451Q46.365-40.500 46.365-40.574Q46.365-40.648 46.413-40.697Q46.462-40.746 46.540-40.758L49.013-40.758L49.013-43.238Q49.040-43.406 49.197-43.406Q49.271-43.406 49.320-43.357Q49.369-43.308 49.380-43.238L49.380-40.758L51.853-40.758Q52.021-40.726 52.021-40.574Q52.021-40.422 51.853-40.390L49.380-40.390L49.380-37.910Q49.369-37.840 49.320-37.791Q49.271-37.742 49.197-37.742Q49.040-37.742 49.013-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 50.53)\">\u003Cpath d=\"M56.048-38.797L55.162-41.461L54.841-41.461Q54.642-41.484 54.591-41.703L54.591-41.789Q54.642-42 54.841-42.023L56.001-42.023Q56.197-42.004 56.247-41.789L56.247-41.703Q56.197-41.484 56.001-41.461L55.720-41.461L56.513-39.086L57.302-41.461L57.025-41.461Q56.826-41.484 56.775-41.703L56.775-41.789Q56.826-42 57.025-42.023L58.185-42.023Q58.380-42 58.431-41.789L58.431-41.703Q58.380-41.484 58.185-41.461L57.865-41.461L56.978-38.797Q56.935-38.683 56.833-38.609Q56.732-38.535 56.607-38.535L56.415-38.535Q56.298-38.535 56.195-38.607Q56.091-38.679 56.048-38.797M59.044-39.687Q59.044-40.133 59.458-40.390Q59.872-40.648 60.413-40.748Q60.955-40.847 61.462-40.855Q61.462-41.070 61.328-41.222Q61.193-41.375 60.986-41.451Q60.779-41.527 60.568-41.527Q60.224-41.527 60.064-41.504L60.064-41.445Q60.064-41.277 59.945-41.162Q59.826-41.047 59.662-41.047Q59.486-41.047 59.371-41.170Q59.255-41.293 59.255-41.461Q59.255-41.867 59.636-41.976Q60.017-42.086 60.576-42.086Q60.845-42.086 61.113-42.008Q61.380-41.929 61.605-41.779Q61.830-41.629 61.966-41.408Q62.103-41.187 62.103-40.910L62.103-39.191Q62.103-39.133 62.630-39.133Q62.826-39.113 62.876-38.902L62.876-38.812Q62.826-38.597 62.630-38.574L62.486-38.574Q62.142-38.574 61.913-38.621Q61.685-38.668 61.540-38.855Q61.080-38.535 60.372-38.535Q60.037-38.535 59.732-38.676Q59.427-38.816 59.236-39.078Q59.044-39.340 59.044-39.687M59.685-39.679Q59.685-39.406 59.927-39.250Q60.169-39.094 60.455-39.094Q60.673-39.094 60.906-39.152Q61.138-39.211 61.300-39.349Q61.462-39.488 61.462-39.711L61.462-40.301Q61.181-40.301 60.765-40.244Q60.349-40.187 60.017-40.049Q59.685-39.910 59.685-39.679M63.333-38.812L63.333-38.902Q63.384-39.109 63.580-39.133L64.685-39.133L64.685-42.902L63.580-42.902Q63.384-42.926 63.333-43.140L63.333-43.230Q63.384-43.437 63.580-43.461L65.076-43.461Q65.267-43.437 65.326-43.230L65.326-39.133L66.427-39.133Q66.626-39.109 66.677-38.902L66.677-38.812Q66.626-38.597 66.427-38.574L63.580-38.574Q63.384-38.597 63.333-38.812M69.396-38.496Q68.947-38.496 68.581-38.720Q68.216-38.945 67.962-39.328Q67.708-39.711 67.583-40.154Q67.458-40.597 67.458-41.023Q67.458-41.449 67.583-41.888Q67.708-42.328 67.962-42.711Q68.216-43.094 68.576-43.318Q68.935-43.543 69.396-43.543Q69.673-43.543 69.931-43.451Q70.189-43.359 70.404-43.191L70.537-43.429Q70.564-43.480 70.619-43.511Q70.673-43.543 70.732-43.543L70.810-43.543Q70.904-43.531 70.966-43.472Q71.029-43.414 71.040-43.308L71.040-41.980Q71.029-41.879 70.966-41.816Q70.904-41.754 70.810-41.742L70.642-41.742Q70.540-41.754 70.478-41.820Q70.415-41.886 70.404-41.980Q70.365-42.246 70.242-42.470Q70.119-42.695 69.915-42.838Q69.712-42.980 69.451-42.980Q69.119-42.980 68.867-42.797Q68.615-42.613 68.443-42.312Q68.271-42.011 68.185-41.670Q68.099-41.328 68.099-41.023Q68.099-40.719 68.183-40.377Q68.267-40.035 68.439-39.732Q68.611-39.429 68.869-39.242Q69.126-39.054 69.458-39.054Q69.841-39.054 70.122-39.328Q70.404-39.601 70.404-39.988Q70.431-40.199 70.642-40.222L70.810-40.222Q71.040-40.183 71.040-39.957Q71.040-39.640 70.904-39.369Q70.767-39.097 70.533-38.900Q70.298-38.703 70.007-38.599Q69.716-38.496 69.396-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516 21.746h227.622\"\u002F>\u003Cg transform=\"translate(164.159 74.266)\">\u003Cpath d=\"M13.576-38.574L11.839-38.574L11.839-38.854Q12.561-38.854 12.561-39.254L12.561-42.864Q12.561-43.075 11.839-43.075L11.839-43.356L13.196-43.356Q13.292-43.356 13.343-43.257L15.018-39.282L16.690-43.257Q16.737-43.356 16.836-43.356L18.187-43.356L18.187-43.075Q17.465-43.075 17.465-42.864L17.465-39.063Q17.465-38.854 18.187-38.854L18.187-38.574L16.129-38.574L16.129-38.854Q16.850-38.854 16.850-39.063L16.850-43.075L14.998-38.673Q14.950-38.574 14.840-38.574Q14.728-38.574 14.680-38.673L12.855-43.004L12.855-39.254Q12.855-38.854 13.576-38.854L13.576-38.574M18.880-40.109Q18.880-40.430 19.005-40.719Q19.130-41.008 19.356-41.231Q19.581-41.455 19.877-41.575Q20.172-41.695 20.490-41.695Q20.818-41.695 21.080-41.595Q21.341-41.496 21.517-41.314Q21.693-41.131 21.787-40.873Q21.881-40.615 21.881-40.283Q21.881-40.191 21.799-40.170L19.544-40.170L19.544-40.109Q19.544-39.521 19.827-39.138Q20.111-38.755 20.678-38.755Q21-38.755 21.268-38.948Q21.536-39.141 21.625-39.456Q21.632-39.497 21.707-39.511L21.799-39.511Q21.881-39.487 21.881-39.415Q21.881-39.408 21.875-39.381Q21.762-38.984 21.391-38.745Q21.020-38.506 20.596-38.506Q20.159-38.506 19.759-38.714Q19.359-38.923 19.120-39.290Q18.880-39.657 18.880-40.109M19.550-40.379L21.365-40.379Q21.365-40.656 21.268-40.908Q21.170-41.161 20.972-41.317Q20.774-41.472 20.490-41.472Q20.213-41.472 20-41.314Q19.786-41.155 19.668-40.900Q19.550-40.645 19.550-40.379M24.151-38.574L22.517-38.574L22.517-38.854Q22.746-38.854 22.895-38.888Q23.044-38.923 23.044-39.063L23.044-40.912Q23.044-41.182 22.936-41.243Q22.828-41.305 22.517-41.305L22.517-41.585L23.577-41.660L23.577-41.011Q23.748-41.319 24.052-41.490Q24.356-41.660 24.701-41.660Q25.101-41.660 25.378-41.520Q25.655-41.380 25.740-41.032Q25.908-41.325 26.207-41.493Q26.506-41.660 26.851-41.660Q27.357-41.660 27.641-41.437Q27.924-41.213 27.924-40.717L27.924-39.063Q27.924-38.926 28.073-38.890Q28.222-38.854 28.447-38.854L28.447-38.574L26.817-38.574L26.817-38.854Q27.043-38.854 27.193-38.890Q27.343-38.926 27.343-39.063L27.343-40.703Q27.343-41.038 27.224-41.238Q27.104-41.438 26.790-41.438Q26.520-41.438 26.285-41.302Q26.051-41.165 25.913-40.931Q25.774-40.697 25.774-40.423L25.774-39.063Q25.774-38.926 25.923-38.890Q26.072-38.854 26.297-38.854L26.297-38.574L24.667-38.574L24.667-38.854Q24.896-38.854 25.045-38.888Q25.193-38.923 25.193-39.063L25.193-40.703Q25.193-41.038 25.074-41.238Q24.954-41.438 24.640-41.438Q24.370-41.438 24.136-41.302Q23.901-41.165 23.763-40.931Q23.625-40.697 23.625-40.423L23.625-39.063Q23.625-38.926 23.775-38.890Q23.925-38.854 24.151-38.854L24.151-38.574M28.994-40.057Q28.994-40.399 29.129-40.698Q29.264-40.997 29.503-41.221Q29.743-41.445 30.061-41.570Q30.378-41.695 30.710-41.695Q31.154-41.695 31.554-41.479Q31.954-41.264 32.188-40.886Q32.422-40.509 32.422-40.057Q32.422-39.716 32.281-39.432Q32.139-39.148 31.894-38.941Q31.650-38.735 31.341-38.620Q31.031-38.506 30.710-38.506Q30.279-38.506 29.878-38.707Q29.476-38.909 29.235-39.261Q28.994-39.613 28.994-40.057M30.710-38.755Q31.312-38.755 31.535-39.133Q31.759-39.511 31.759-40.143Q31.759-40.755 31.525-41.114Q31.291-41.472 30.710-41.472Q29.657-41.472 29.657-40.143Q29.657-39.511 29.883-39.133Q30.108-38.755 30.710-38.755M34.767-38.574L33.031-38.574L33.031-38.854Q33.260-38.854 33.409-38.888Q33.557-38.923 33.557-39.063L33.557-40.912Q33.557-41.182 33.450-41.243Q33.342-41.305 33.031-41.305L33.031-41.585L34.060-41.660L34.060-40.953Q34.190-41.261 34.432-41.460Q34.675-41.660 34.993-41.660Q35.211-41.660 35.382-41.536Q35.553-41.411 35.553-41.199Q35.553-41.062 35.454-40.963Q35.355-40.864 35.222-40.864Q35.085-40.864 34.986-40.963Q34.887-41.062 34.887-41.199Q34.887-41.339 34.986-41.438Q34.695-41.438 34.495-41.242Q34.295-41.045 34.203-40.751Q34.111-40.457 34.111-40.177L34.111-39.063Q34.111-38.854 34.767-38.854L34.767-38.574M36.473-37.439Q36.603-37.371 36.739-37.371Q36.910-37.371 37.061-37.460Q37.211-37.549 37.322-37.694Q37.433-37.839 37.512-38.007L37.775-38.574L36.606-41.100Q36.531-41.247 36.401-41.279Q36.271-41.312 36.039-41.312L36.039-41.592L37.560-41.592L37.560-41.312Q37.211-41.312 37.211-41.165Q37.214-41.144 37.216-41.127Q37.218-41.110 37.218-41.100L38.076-39.241L38.848-40.912Q38.882-40.980 38.882-41.059Q38.882-41.172 38.799-41.242Q38.715-41.312 38.602-41.312L38.602-41.592L39.798-41.592L39.798-41.312Q39.580-41.312 39.407-41.208Q39.234-41.103 39.142-40.912L37.806-38.007Q37.635-37.637 37.365-37.391Q37.095-37.145 36.739-37.145Q36.469-37.145 36.251-37.311Q36.032-37.477 36.032-37.740Q36.032-37.877 36.124-37.966Q36.216-38.054 36.356-38.054Q36.493-38.054 36.582-37.966Q36.671-37.877 36.671-37.740Q36.671-37.637 36.618-37.559Q36.565-37.480 36.473-37.439\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 74.277)\">\u003Cpath d=\"M13.771-40.023L11.517-40.023L11.517-40.574L13.771-40.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516 45.931h227.622\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(154.673 99.17)\">\u003Cpath d=\"M13.812-38.533L12.260-42.864Q12.198-43.007 12.036-43.041Q11.874-43.075 11.621-43.075L11.621-43.356L13.548-43.356L13.548-43.075Q12.967-43.075 12.967-42.901Q12.967-42.881 12.974-42.864L14.198-39.428L15.305-42.515L15.179-42.864Q15.121-43.007 14.955-43.041Q14.789-43.075 14.540-43.075L14.540-43.356L16.467-43.356L16.467-43.075Q15.886-43.075 15.886-42.901L15.886-42.864L17.117-39.428L18.272-42.676Q18.286-42.717 18.286-42.741Q18.286-42.915 18.093-42.995Q17.899-43.075 17.691-43.075L17.691-43.356L19.267-43.356L19.267-43.075Q19.017-43.075 18.826-42.981Q18.634-42.887 18.559-42.676L17.076-38.533Q17.042-38.434 16.942-38.434L16.864-38.434Q16.765-38.434 16.724-38.533L15.445-42.122L14.164-38.533Q14.147-38.489 14.109-38.461Q14.071-38.434 14.023-38.434L13.945-38.434Q13.853-38.434 13.812-38.533\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(154.673 99.17)\">\u003Cpath d=\"M20.893-38.574L19.157-38.574L19.157-38.854Q19.386-38.854 19.535-38.888Q19.683-38.923 19.683-39.063L19.683-40.912Q19.683-41.182 19.576-41.243Q19.468-41.305 19.157-41.305L19.157-41.585L20.186-41.660L20.186-40.953Q20.316-41.261 20.558-41.460Q20.801-41.660 21.119-41.660Q21.338-41.660 21.509-41.536Q21.680-41.411 21.680-41.199Q21.680-41.062 21.580-40.963Q21.481-40.864 21.348-40.864Q21.211-40.864 21.112-40.963Q21.013-41.062 21.013-41.199Q21.013-41.339 21.112-41.438Q20.822-41.438 20.622-41.242Q20.422-41.045 20.329-40.751Q20.237-40.457 20.237-40.177L20.237-39.063Q20.237-38.854 20.893-38.854L20.893-38.574M23.881-38.574L22.329-38.574L22.329-38.854Q22.555-38.854 22.703-38.888Q22.852-38.923 22.852-39.063L22.852-40.912Q22.852-41.100 22.804-41.184Q22.756-41.267 22.659-41.286Q22.561-41.305 22.350-41.305L22.350-41.585L23.406-41.660L23.406-39.063Q23.406-38.923 23.537-38.888Q23.669-38.854 23.881-38.854L23.881-38.574M22.609-42.881Q22.609-43.052 22.732-43.171Q22.855-43.291 23.026-43.291Q23.194-43.291 23.317-43.171Q23.440-43.052 23.440-42.881Q23.440-42.706 23.317-42.583Q23.194-42.460 23.026-42.460Q22.855-42.460 22.732-42.583Q22.609-42.706 22.609-42.881M25.053-39.415L25.053-41.312L24.414-41.312L24.414-41.534Q24.732-41.534 24.949-41.744Q25.166-41.954 25.267-42.264Q25.368-42.573 25.368-42.881L25.634-42.881L25.634-41.592L26.711-41.592L26.711-41.312L25.634-41.312L25.634-39.428Q25.634-39.152 25.738-38.953Q25.843-38.755 26.102-38.755Q26.260-38.755 26.366-38.859Q26.472-38.964 26.521-39.117Q26.571-39.271 26.571-39.428L26.571-39.842L26.837-39.842L26.837-39.415Q26.837-39.189 26.738-38.979Q26.639-38.769 26.454-38.637Q26.270-38.506 26.041-38.506Q25.603-38.506 25.328-38.743Q25.053-38.981 25.053-39.415M27.606-40.109Q27.606-40.430 27.731-40.719Q27.856-41.008 28.081-41.231Q28.307-41.455 28.603-41.575Q28.898-41.695 29.216-41.695Q29.544-41.695 29.806-41.595Q30.067-41.496 30.243-41.314Q30.419-41.131 30.513-40.873Q30.607-40.615 30.607-40.283Q30.607-40.191 30.525-40.170L28.269-40.170L28.269-40.109Q28.269-39.521 28.553-39.138Q28.837-38.755 29.404-38.755Q29.725-38.755 29.994-38.948Q30.262-39.141 30.351-39.456Q30.358-39.497 30.433-39.511L30.525-39.511Q30.607-39.487 30.607-39.415Q30.607-39.408 30.600-39.381Q30.488-38.984 30.117-38.745Q29.746-38.506 29.322-38.506Q28.885-38.506 28.485-38.714Q28.085-38.923 27.846-39.290Q27.606-39.657 27.606-40.109M28.276-40.379L30.091-40.379Q30.091-40.656 29.994-40.908Q29.896-41.161 29.698-41.317Q29.500-41.472 29.216-41.472Q28.939-41.472 28.726-41.314Q28.512-41.155 28.394-40.900Q28.276-40.645 28.276-40.379M33.079-39.828L31.021-39.828L31.021-40.331L33.079-40.331L33.079-39.828M34.688-38.574L34.422-38.574L34.422-42.682Q34.422-42.952 34.314-43.014Q34.206-43.075 33.895-43.075L33.895-43.356L34.975-43.431L34.975-41.261Q35.184-41.452 35.469-41.556Q35.755-41.660 36.052-41.660Q36.370-41.660 36.667-41.539Q36.965-41.418 37.187-41.202Q37.409-40.987 37.536-40.702Q37.662-40.416 37.662-40.085Q37.662-39.640 37.423-39.276Q37.183-38.912 36.790-38.709Q36.397-38.506 35.953-38.506Q35.758-38.506 35.569-38.562Q35.379-38.618 35.218-38.723Q35.058-38.827 34.917-38.988L34.688-38.574M35.003-40.919L35.003-39.302Q35.140-39.042 35.381-38.885Q35.621-38.728 35.898-38.728Q36.192-38.728 36.404-38.835Q36.616-38.943 36.749-39.135Q36.883-39.326 36.941-39.565Q36.999-39.804 36.999-40.085Q36.999-40.444 36.905-40.748Q36.811-41.052 36.584-41.245Q36.356-41.438 35.991-41.438Q35.690-41.438 35.423-41.302Q35.157-41.165 35.003-40.919M38.356-39.302Q38.356-39.634 38.580-39.861Q38.804-40.088 39.147-40.216Q39.491-40.345 39.863-40.397Q40.236-40.450 40.540-40.450L40.540-40.703Q40.540-40.908 40.432-41.088Q40.325-41.267 40.143-41.370Q39.962-41.472 39.754-41.472Q39.347-41.472 39.111-41.380Q39.200-41.343 39.246-41.259Q39.292-41.175 39.292-41.073Q39.292-40.977 39.246-40.898Q39.200-40.820 39.120-40.775Q39.039-40.731 38.951-40.731Q38.800-40.731 38.699-40.828Q38.599-40.926 38.599-41.073Q38.599-41.695 39.754-41.695Q39.966-41.695 40.215-41.631Q40.465-41.568 40.666-41.449Q40.868-41.329 40.995-41.144Q41.121-40.960 41.121-40.717L41.121-39.141Q41.121-39.025 41.183-38.929Q41.244-38.834 41.357-38.834Q41.466-38.834 41.531-38.928Q41.596-39.022 41.596-39.141L41.596-39.589L41.863-39.589L41.863-39.141Q41.863-38.871 41.635-38.706Q41.408-38.540 41.128-38.540Q40.919-38.540 40.783-38.694Q40.646-38.847 40.622-39.063Q40.475-38.796 40.193-38.651Q39.911-38.506 39.586-38.506Q39.309-38.506 39.026-38.581Q38.742-38.656 38.549-38.835Q38.356-39.015 38.356-39.302M38.971-39.302Q38.971-39.128 39.072-38.998Q39.173-38.868 39.328-38.798Q39.484-38.728 39.648-38.728Q39.867-38.728 40.075-38.825Q40.284-38.923 40.412-39.104Q40.540-39.285 40.540-39.511L40.540-40.239Q40.215-40.239 39.850-40.148Q39.484-40.057 39.227-39.845Q38.971-39.634 38.971-39.302M42.280-40.085Q42.280-40.413 42.415-40.714Q42.550-41.014 42.786-41.235Q43.021-41.455 43.326-41.575Q43.630-41.695 43.954-41.695Q44.460-41.695 44.809-41.592Q45.158-41.490 45.158-41.114Q45.158-40.967 45.060-40.866Q44.963-40.765 44.816-40.765Q44.662-40.765 44.563-40.864Q44.464-40.963 44.464-41.114Q44.464-41.302 44.604-41.394Q44.402-41.445 43.961-41.445Q43.606-41.445 43.377-41.249Q43.148-41.052 43.047-40.743Q42.946-40.433 42.946-40.085Q42.946-39.736 43.073-39.430Q43.199-39.124 43.454-38.940Q43.708-38.755 44.064-38.755Q44.286-38.755 44.471-38.839Q44.655-38.923 44.790-39.078Q44.925-39.234 44.983-39.442Q44.997-39.497 45.052-39.497L45.164-39.497Q45.195-39.497 45.217-39.473Q45.240-39.449 45.240-39.415L45.240-39.394Q45.154-39.107 44.966-38.909Q44.778-38.711 44.513-38.608Q44.248-38.506 43.954-38.506Q43.524-38.506 43.136-38.712Q42.748-38.919 42.514-39.282Q42.280-39.644 42.280-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(154.673 99.17)\">\u003Cpath d=\"M47.247-38.574L45.664-38.574L45.664-38.854Q45.893-38.854 46.042-38.888Q46.190-38.923 46.190-39.063L46.190-42.682Q46.190-42.952 46.083-43.014Q45.975-43.075 45.664-43.075L45.664-43.356L46.744-43.431L46.744-40.143L47.729-40.912Q47.934-41.049 47.934-41.199Q47.934-41.243 47.893-41.278Q47.852-41.312 47.807-41.312L47.807-41.592L49.171-41.592L49.171-41.312Q48.682-41.312 48.163-40.912L47.606-40.478L48.583-39.254Q48.785-39.008 48.918-38.931Q49.051-38.854 49.338-38.854L49.338-38.574L47.906-38.574L47.906-38.854Q48.094-38.854 48.094-38.967Q48.094-39.063 47.940-39.254L47.206-40.163L46.724-39.784L46.724-39.063Q46.724-38.926 46.872-38.890Q47.021-38.854 47.247-38.854\" 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-size=\"8\">\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M14.044-38.574L11.907-38.574Q11.872-38.574 11.841-38.615Q11.810-38.656 11.810-38.703L11.833-38.804Q11.845-38.855 11.931-38.871Q12.372-38.871 12.530-38.910Q12.689-38.949 12.732-39.176L13.810-43.496Q13.833-43.566 13.833-43.629Q13.833-43.691 13.771-43.711Q13.626-43.742 13.204-43.742Q13.099-43.769 13.099-43.871L13.130-43.972Q13.138-44.019 13.220-44.039L15.732-44.039Q16.138-44.039 16.581-43.916Q17.024-43.793 17.329-43.517Q17.634-43.242 17.634-42.820Q17.634-42.433 17.364-42.117Q17.095-41.801 16.696-41.592Q16.298-41.383 15.923-41.293Q16.232-41.168 16.429-40.929Q16.626-40.691 16.626-40.375Q16.626-40.332 16.624-40.304Q16.622-40.277 16.618-40.246L16.540-39.551Q16.509-39.261 16.509-39.140Q16.509-38.926 16.577-38.795Q16.646-38.664 16.853-38.664Q17.107-38.664 17.302-38.888Q17.497-39.113 17.564-39.390Q17.571-39.437 17.657-39.453L17.739-39.453Q17.833-39.426 17.833-39.344Q17.833-39.336 17.825-39.301Q17.774-39.086 17.630-38.875Q17.485-38.664 17.278-38.535Q17.071-38.406 16.845-38.406Q16.540-38.406 16.271-38.492Q16.001-38.578 15.829-38.777Q15.657-38.976 15.657-39.285Q15.657-39.394 15.700-39.574L15.876-40.269Q15.899-40.390 15.899-40.484Q15.899-40.820 15.638-41.002Q15.376-41.183 15.013-41.183L13.962-41.183L13.442-39.117Q13.427-39.023 13.427-38.980Q13.427-38.941 13.440-38.928Q13.454-38.914 13.489-38.902Q13.634-38.871 14.060-38.871Q14.153-38.844 14.153-38.750L14.130-38.644Q14.122-38.594 14.044-38.574M14.524-43.437L14.028-41.437L14.970-41.437Q15.314-41.437 15.630-41.506Q15.946-41.574 16.220-41.742Q16.407-41.867 16.544-42.068Q16.681-42.269 16.749-42.502Q16.817-42.734 16.817-42.957Q16.817-43.414 16.450-43.578Q16.083-43.742 15.548-43.742L14.931-43.742Q14.759-43.742 14.696-43.728Q14.634-43.715 14.601-43.656Q14.567-43.597 14.524-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M20.038-36.574L18.862-36.574L18.862-44.574L20.038-44.574L20.038-44.207L19.229-44.207L19.229-36.941L20.038-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M20.455-38.812L20.455-38.902Q20.513-39.109 20.705-39.133L21.416-39.133L21.416-41.461L20.705-41.461Q20.509-41.484 20.455-41.703L20.455-41.789Q20.513-42 20.705-42.023L21.806-42.023Q22.005-42.004 22.056-41.789L22.056-41.461Q22.318-41.746 22.673-41.904Q23.029-42.062 23.416-42.062Q23.709-42.062 23.943-41.928Q24.177-41.793 24.177-41.527Q24.177-41.359 24.068-41.242Q23.959-41.125 23.791-41.125Q23.638-41.125 23.523-41.236Q23.408-41.347 23.408-41.504Q23.033-41.504 22.718-41.303Q22.404-41.101 22.230-40.767Q22.056-40.433 22.056-40.054L22.056-39.133L23.002-39.133Q23.209-39.109 23.248-38.902L23.248-38.812Q23.209-38.597 23.002-38.574L20.705-38.574Q20.513-38.597 20.455-38.812M24.646-38.812L24.646-38.902Q24.685-39.109 24.892-39.133L25.181-39.133L25.181-42.902L24.892-42.902Q24.685-42.926 24.646-43.140L24.646-43.230Q24.685-43.437 24.892-43.461L26.853-43.461Q27.123-43.461 27.363-43.365Q27.603-43.269 27.794-43.099Q27.986-42.929 28.095-42.701Q28.205-42.472 28.205-42.207Q28.205-41.840 27.964-41.551Q27.724-41.261 27.357-41.133Q27.638-41.070 27.871-40.896Q28.103-40.722 28.238-40.467Q28.373-40.211 28.373-39.926Q28.373-39.566 28.191-39.256Q28.009-38.945 27.695-38.760Q27.380-38.574 27.021-38.574L24.892-38.574Q24.685-38.597 24.646-38.812M25.822-40.840L25.822-39.133L26.853-39.133Q27.080-39.133 27.283-39.236Q27.486-39.340 27.611-39.519Q27.736-39.699 27.736-39.926Q27.736-40.156 27.634-40.365Q27.533-40.574 27.351-40.707Q27.169-40.840 26.943-40.840L25.822-40.840M25.822-42.902L25.822-41.398L26.685-41.398Q27.029-41.398 27.298-41.633Q27.568-41.867 27.568-42.207Q27.568-42.394 27.470-42.554Q27.373-42.715 27.207-42.808Q27.041-42.902 26.853-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M30.091-36.574L28.916-36.574L28.916-36.941L29.724-36.941L29.724-44.207L28.916-44.207L28.916-44.574L30.091-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M39.415-39.551L34.102-39.551Q34.024-39.558 33.975-39.607Q33.927-39.656 33.927-39.734Q33.927-39.804 33.974-39.855Q34.020-39.906 34.102-39.918L39.415-39.918Q39.489-39.906 39.536-39.855Q39.583-39.804 39.583-39.734Q39.583-39.656 39.534-39.607Q39.485-39.558 39.415-39.551M39.415-41.238L34.102-41.238Q34.024-41.246 33.975-41.295Q33.927-41.344 33.927-41.422Q33.927-41.492 33.974-41.543Q34.020-41.594 34.102-41.605L39.415-41.605Q39.489-41.594 39.536-41.543Q39.583-41.492 39.583-41.422Q39.583-41.344 39.534-41.295Q39.485-41.246 39.415-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 98.74)\">\u003Cpath d=\"M44.082-38.797L43.196-41.461L42.875-41.461Q42.676-41.484 42.625-41.703L42.625-41.789Q42.676-42 42.875-42.023L44.035-42.023Q44.231-42.004 44.281-41.789L44.281-41.703Q44.231-41.484 44.035-41.461L43.754-41.461L44.547-39.086L45.336-41.461L45.059-41.461Q44.860-41.484 44.809-41.703L44.809-41.789Q44.860-42 45.059-42.023L46.219-42.023Q46.414-42 46.465-41.789L46.465-41.703Q46.414-41.484 46.219-41.461L45.899-41.461L45.012-38.797Q44.969-38.683 44.867-38.609Q44.766-38.535 44.641-38.535L44.449-38.535Q44.332-38.535 44.229-38.607Q44.125-38.679 44.082-38.797M47.078-39.687Q47.078-40.133 47.492-40.390Q47.906-40.648 48.447-40.748Q48.989-40.847 49.496-40.855Q49.496-41.070 49.362-41.222Q49.227-41.375 49.020-41.451Q48.813-41.527 48.602-41.527Q48.258-41.527 48.098-41.504L48.098-41.445Q48.098-41.277 47.979-41.162Q47.860-41.047 47.696-41.047Q47.520-41.047 47.405-41.170Q47.289-41.293 47.289-41.461Q47.289-41.867 47.670-41.976Q48.051-42.086 48.610-42.086Q48.879-42.086 49.147-42.008Q49.414-41.929 49.639-41.779Q49.864-41.629 50-41.408Q50.137-41.187 50.137-40.910L50.137-39.191Q50.137-39.133 50.664-39.133Q50.860-39.113 50.910-38.902L50.910-38.812Q50.860-38.597 50.664-38.574L50.520-38.574Q50.176-38.574 49.947-38.621Q49.719-38.668 49.574-38.855Q49.114-38.535 48.406-38.535Q48.071-38.535 47.766-38.676Q47.461-38.816 47.270-39.078Q47.078-39.340 47.078-39.687M47.719-39.679Q47.719-39.406 47.961-39.250Q48.203-39.094 48.489-39.094Q48.707-39.094 48.940-39.152Q49.172-39.211 49.334-39.349Q49.496-39.488 49.496-39.711L49.496-40.301Q49.215-40.301 48.799-40.244Q48.383-40.187 48.051-40.049Q47.719-39.910 47.719-39.679M51.367-38.812L51.367-38.902Q51.418-39.109 51.614-39.133L52.719-39.133L52.719-42.902L51.614-42.902Q51.418-42.926 51.367-43.140L51.367-43.230Q51.418-43.437 51.614-43.461L53.110-43.461Q53.301-43.437 53.360-43.230L53.360-39.133L54.461-39.133Q54.660-39.109 54.711-38.902L54.711-38.812Q54.660-38.597 54.461-38.574L51.614-38.574Q51.418-38.597 51.367-38.812M55.348-38.812L55.348-38.902Q55.387-39.109 55.598-39.133L55.906-39.133L55.906-42.902L55.598-42.902Q55.387-42.926 55.348-43.140L55.348-43.230Q55.387-43.437 55.598-43.461L58.805-43.461Q59-43.437 59.051-43.230L59.051-42.390Q59-42.176 58.805-42.148L58.660-42.148Q58.465-42.176 58.410-42.390L58.410-42.902L56.547-42.902L56.547-41.383L57.524-41.383L57.524-41.597Q57.574-41.804 57.774-41.832L57.918-41.832Q58.114-41.804 58.164-41.597L58.164-40.613Q58.114-40.398 57.918-40.375L57.774-40.375Q57.574-40.398 57.524-40.613L57.524-40.820L56.547-40.820L56.547-39.133L58.590-39.133L58.590-39.773Q58.641-39.980 58.836-40.008L58.981-40.008Q59.176-39.980 59.227-39.773L59.227-38.812Q59.176-38.594 58.981-38.574L55.598-38.574Q55.387-38.597 55.348-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516 70.116h227.622\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(154.88 122.674)\">\u003Cpath d=\"M13.945-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.478-43.356Q14.888-43.356 15.309-43.202Q15.729-43.048 16.013-42.744Q16.296-42.440 16.296-42.026Q16.296-41.708 16.129-41.462Q15.961-41.216 15.685-41.050Q15.408-40.885 15.086-40.801Q14.765-40.717 14.478-40.717L13.224-40.717L13.224-39.063Q13.224-38.854 13.945-38.854L13.945-38.574M13.196-42.864L13.196-40.967L14.283-40.967Q14.892-40.967 15.206-41.204Q15.521-41.442 15.521-42.026Q15.521-42.419 15.375-42.653Q15.230-42.887 14.958-42.981Q14.687-43.075 14.283-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.277-40.967Q17.277-41.493 17.494-41.961Q17.711-42.429 18.094-42.775Q18.477-43.120 18.961-43.308Q19.444-43.496 19.974-43.496Q20.377-43.496 20.742-43.339Q21.106-43.181 21.389-42.887L21.813-43.469Q21.847-43.496 21.871-43.496L21.919-43.496Q21.950-43.496 21.974-43.472Q21.998-43.448 21.998-43.417L21.998-41.554Q21.998-41.531 21.972-41.505Q21.946-41.479 21.919-41.479L21.793-41.479Q21.731-41.479 21.717-41.554Q21.687-41.869 21.552-42.173Q21.417-42.477 21.201-42.711Q20.986-42.946 20.697-43.081Q20.408-43.216 20.080-43.216Q19.438-43.216 18.980-42.922Q18.522-42.628 18.289-42.115Q18.057-41.602 18.057-40.967Q18.057-40.495 18.187-40.086Q18.316-39.678 18.576-39.365Q18.836-39.053 19.215-38.883Q19.595-38.714 20.087-38.714Q20.415-38.714 20.709-38.830Q21.003-38.947 21.237-39.162Q21.471-39.377 21.601-39.666Q21.731-39.955 21.731-40.283Q21.731-40.310 21.758-40.334Q21.786-40.358 21.806-40.358L21.919-40.358Q21.957-40.358 21.977-40.333Q21.998-40.307 21.998-40.269Q21.998-39.873 21.832-39.536Q21.666-39.199 21.379-38.952Q21.092-38.704 20.723-38.569Q20.354-38.434 19.974-38.434Q19.455-38.434 18.962-38.624Q18.470-38.813 18.091-39.157Q17.711-39.500 17.494-39.969Q17.277-40.437 17.277-40.967\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(154.88 122.674)\">\u003Cpath d=\"M26.086-39.408L26.086-40.912Q26.086-41.182 25.978-41.243Q25.870-41.305 25.559-41.305L25.559-41.585L26.667-41.660L26.667-39.428L26.667-39.408Q26.667-39.128 26.718-38.984Q26.769-38.841 26.911-38.784Q27.053-38.728 27.340-38.728Q27.593-38.728 27.798-38.868Q28.003-39.008 28.119-39.234Q28.236-39.459 28.236-39.709L28.236-40.912Q28.236-41.182 28.128-41.243Q28.020-41.305 27.709-41.305L27.709-41.585L28.817-41.660L28.817-39.247Q28.817-39.056 28.870-38.974Q28.923-38.892 29.023-38.873Q29.124-38.854 29.340-38.854L29.340-38.574L28.263-38.506L28.263-39.070Q28.154-38.888 28.008-38.765Q27.863-38.642 27.677-38.574Q27.490-38.506 27.289-38.506Q26.086-38.506 26.086-39.408M31.572-37.217L29.941-37.217L29.941-37.497Q30.170-37.497 30.319-37.532Q30.468-37.566 30.468-37.706L30.468-41.052Q30.468-41.223 30.331-41.264Q30.194-41.305 29.941-41.305L29.941-41.585L31.021-41.660L31.021-41.254Q31.243-41.455 31.530-41.558Q31.818-41.660 32.125-41.660Q32.552-41.660 32.916-41.447Q33.280-41.233 33.494-40.869Q33.708-40.505 33.708-40.085Q33.708-39.640 33.468-39.276Q33.229-38.912 32.836-38.709Q32.443-38.506 31.999-38.506Q31.732-38.506 31.484-38.606Q31.237-38.707 31.049-38.888L31.049-37.706Q31.049-37.569 31.197-37.533Q31.346-37.497 31.572-37.497L31.572-37.217M31.049-40.905L31.049-39.295Q31.182-39.042 31.425-38.885Q31.667-38.728 31.944-38.728Q32.272-38.728 32.525-38.929Q32.778-39.131 32.911-39.449Q33.045-39.767 33.045-40.085Q33.045-40.314 32.980-40.543Q32.915-40.772 32.787-40.970Q32.658-41.168 32.464-41.288Q32.269-41.407 32.036-41.407Q31.742-41.407 31.474-41.278Q31.206-41.148 31.049-40.905\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(154.88 122.674)\">\u003Cpath d=\"M34.559-40.085Q34.559-40.423 34.700-40.714Q34.840-41.004 35.084-41.218Q35.328-41.431 35.633-41.546Q35.937-41.660 36.262-41.660Q36.532-41.660 36.795-41.561Q37.058-41.462 37.249-41.284L37.249-42.682Q37.249-42.952 37.142-43.014Q37.034-43.075 36.723-43.075L36.723-43.356L37.800-43.431L37.800-39.247Q37.800-39.059 37.854-38.976Q37.909-38.892 38.010-38.873Q38.111-38.854 38.326-38.854L38.326-38.574L37.219-38.506L37.219-38.923Q36.802-38.506 36.176-38.506Q35.745-38.506 35.373-38.718Q35-38.929 34.780-39.290Q34.559-39.651 34.559-40.085M36.234-38.728Q36.443-38.728 36.629-38.800Q36.815-38.871 36.969-39.008Q37.123-39.145 37.219-39.323L37.219-40.932Q37.133-41.079 36.988-41.199Q36.843-41.319 36.673-41.378Q36.504-41.438 36.323-41.438Q35.763-41.438 35.494-41.049Q35.226-40.659 35.226-40.078Q35.226-39.507 35.460-39.117Q35.694-38.728 36.234-38.728M39.034-39.302Q39.034-39.634 39.257-39.861Q39.481-40.088 39.825-40.216Q40.168-40.345 40.541-40.397Q40.913-40.450 41.218-40.450L41.218-40.703Q41.218-40.908 41.110-41.088Q41.002-41.267 40.821-41.370Q40.640-41.472 40.432-41.472Q40.025-41.472 39.789-41.380Q39.878-41.343 39.924-41.259Q39.970-41.175 39.970-41.073Q39.970-40.977 39.924-40.898Q39.878-40.820 39.797-40.775Q39.717-40.731 39.628-40.731Q39.478-40.731 39.377-40.828Q39.276-40.926 39.276-41.073Q39.276-41.695 40.432-41.695Q40.643-41.695 40.893-41.631Q41.142-41.568 41.344-41.449Q41.546-41.329 41.672-41.144Q41.799-40.960 41.799-40.717L41.799-39.141Q41.799-39.025 41.860-38.929Q41.922-38.834 42.035-38.834Q42.144-38.834 42.209-38.928Q42.274-39.022 42.274-39.141L42.274-39.589L42.540-39.589L42.540-39.141Q42.540-38.871 42.313-38.706Q42.086-38.540 41.806-38.540Q41.597-38.540 41.460-38.694Q41.324-38.847 41.300-39.063Q41.153-38.796 40.871-38.651Q40.589-38.506 40.264-38.506Q39.987-38.506 39.703-38.581Q39.420-38.656 39.227-38.835Q39.034-39.015 39.034-39.302M39.649-39.302Q39.649-39.128 39.750-38.998Q39.850-38.868 40.006-38.798Q40.162-38.728 40.326-38.728Q40.544-38.728 40.753-38.825Q40.961-38.923 41.089-39.104Q41.218-39.285 41.218-39.511L41.218-40.239Q40.893-40.239 40.527-40.148Q40.162-40.057 39.905-39.845Q39.649-39.634 39.649-39.302M43.484-39.415L43.484-41.312L42.845-41.312L42.845-41.534Q43.162-41.534 43.380-41.744Q43.597-41.954 43.697-42.264Q43.798-42.573 43.798-42.881L44.065-42.881L44.065-41.592L45.141-41.592L45.141-41.312L44.065-41.312L44.065-39.428Q44.065-39.152 44.169-38.953Q44.273-38.755 44.533-38.755Q44.690-38.755 44.796-38.859Q44.902-38.964 44.952-39.117Q45.001-39.271 45.001-39.428L45.001-39.842L45.268-39.842L45.268-39.415Q45.268-39.189 45.169-38.979Q45.070-38.769 44.885-38.637Q44.701-38.506 44.472-38.506Q44.034-38.506 43.759-38.743Q43.484-38.981 43.484-39.415M46.037-40.109Q46.037-40.430 46.162-40.719Q46.287-41.008 46.512-41.231Q46.738-41.455 47.033-41.575Q47.329-41.695 47.647-41.695Q47.975-41.695 48.236-41.595Q48.498-41.496 48.674-41.314Q48.850-41.131 48.944-40.873Q49.038-40.615 49.038-40.283Q49.038-40.191 48.956-40.170L46.700-40.170L46.700-40.109Q46.700-39.521 46.984-39.138Q47.267-38.755 47.835-38.755Q48.156-38.755 48.424-38.948Q48.693-39.141 48.782-39.456Q48.788-39.497 48.864-39.511L48.956-39.511Q49.038-39.487 49.038-39.415Q49.038-39.408 49.031-39.381Q48.918-38.984 48.547-38.745Q48.177-38.506 47.753-38.506Q47.315-38.506 46.915-38.714Q46.516-38.923 46.276-39.290Q46.037-39.657 46.037-40.109M46.707-40.379L48.522-40.379Q48.522-40.656 48.424-40.908Q48.327-41.161 48.129-41.317Q47.931-41.472 47.647-41.472Q47.370-41.472 47.156-41.314Q46.943-41.155 46.825-40.900Q46.707-40.645 46.707-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(208.393 123.369)\">\u003Cpath d=\"M11.603-38.812L11.603-38.902Q11.642-39.109 11.853-39.133L12.161-39.133L12.161-42.902L11.853-42.902Q11.642-42.926 11.603-43.140L11.603-43.230Q11.642-43.437 11.853-43.461L13.802-43.461Q14.200-43.461 14.546-43.260Q14.892-43.058 15.099-42.713Q15.306-42.367 15.306-41.965Q15.306-41.558 15.101-41.215Q14.896-40.871 14.550-40.666Q14.204-40.461 13.802-40.461L12.802-40.461L12.802-39.133L13.114-39.133Q13.325-39.109 13.364-38.902L13.364-38.812Q13.325-38.597 13.114-38.574L11.853-38.574Q11.642-38.597 11.603-38.812M12.802-42.902L12.802-41.023L13.642-41.023Q13.903-41.023 14.140-41.146Q14.376-41.269 14.521-41.484Q14.665-41.699 14.665-41.965Q14.665-42.234 14.521-42.445Q14.376-42.656 14.140-42.779Q13.903-42.902 13.642-42.902L12.802-42.902M17.931-38.496Q17.482-38.496 17.116-38.720Q16.751-38.945 16.497-39.328Q16.243-39.711 16.118-40.154Q15.993-40.597 15.993-41.023Q15.993-41.449 16.118-41.888Q16.243-42.328 16.497-42.711Q16.751-43.094 17.110-43.318Q17.470-43.543 17.931-43.543Q18.208-43.543 18.466-43.451Q18.724-43.359 18.939-43.191L19.071-43.429Q19.099-43.480 19.153-43.511Q19.208-43.543 19.267-43.543L19.345-43.543Q19.439-43.531 19.501-43.472Q19.564-43.414 19.575-43.308L19.575-41.980Q19.564-41.879 19.501-41.816Q19.439-41.754 19.345-41.742L19.177-41.742Q19.075-41.754 19.013-41.820Q18.950-41.886 18.939-41.980Q18.899-42.246 18.776-42.470Q18.653-42.695 18.450-42.838Q18.247-42.980 17.985-42.980Q17.653-42.980 17.401-42.797Q17.149-42.613 16.978-42.312Q16.806-42.011 16.720-41.670Q16.634-41.328 16.634-41.023Q16.634-40.719 16.718-40.377Q16.802-40.035 16.974-39.732Q17.146-39.429 17.403-39.242Q17.661-39.054 17.993-39.054Q18.376-39.054 18.657-39.328Q18.939-39.601 18.939-39.988Q18.966-40.199 19.177-40.222L19.345-40.222Q19.575-40.183 19.575-39.957Q19.575-39.640 19.439-39.369Q19.302-39.097 19.067-38.900Q18.833-38.703 18.542-38.599Q18.251-38.496 17.931-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 123.369)\">\u003Cpath d=\"M28.241-39.551L22.928-39.551Q22.850-39.558 22.801-39.607Q22.753-39.656 22.753-39.734Q22.753-39.804 22.800-39.855Q22.846-39.906 22.928-39.918L28.241-39.918Q28.315-39.906 28.362-39.855Q28.409-39.804 28.409-39.734Q28.409-39.656 28.360-39.607Q28.311-39.558 28.241-39.551M28.241-41.238L22.928-41.238Q22.850-41.246 22.801-41.295Q22.753-41.344 22.753-41.422Q22.753-41.492 22.800-41.543Q22.846-41.594 22.928-41.605L28.241-41.605Q28.315-41.594 28.362-41.543Q28.409-41.492 28.409-41.422Q28.409-41.344 28.360-41.295Q28.311-41.246 28.241-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(208.393 123.369)\">\u003Cpath d=\"M32.909-38.797L32.023-41.461L31.702-41.461Q31.503-41.484 31.452-41.703L31.452-41.789Q31.503-42 31.702-42.023L32.862-42.023Q33.058-42.004 33.108-41.789L33.108-41.703Q33.058-41.484 32.862-41.461L32.581-41.461L33.374-39.086L34.163-41.461L33.886-41.461Q33.687-41.484 33.636-41.703L33.636-41.789Q33.687-42 33.886-42.023L35.046-42.023Q35.241-42 35.292-41.789L35.292-41.703Q35.241-41.484 35.046-41.461L34.726-41.461L33.839-38.797Q33.796-38.683 33.694-38.609Q33.593-38.535 33.468-38.535L33.276-38.535Q33.159-38.535 33.056-38.607Q32.952-38.679 32.909-38.797M35.905-39.687Q35.905-40.133 36.319-40.390Q36.733-40.648 37.274-40.748Q37.816-40.847 38.323-40.855Q38.323-41.070 38.189-41.222Q38.054-41.375 37.847-41.451Q37.640-41.527 37.429-41.527Q37.085-41.527 36.925-41.504L36.925-41.445Q36.925-41.277 36.806-41.162Q36.687-41.047 36.523-41.047Q36.347-41.047 36.232-41.170Q36.116-41.293 36.116-41.461Q36.116-41.867 36.497-41.976Q36.878-42.086 37.437-42.086Q37.706-42.086 37.974-42.008Q38.241-41.929 38.466-41.779Q38.691-41.629 38.827-41.408Q38.964-41.187 38.964-40.910L38.964-39.191Q38.964-39.133 39.491-39.133Q39.687-39.113 39.737-38.902L39.737-38.812Q39.687-38.597 39.491-38.574L39.347-38.574Q39.003-38.574 38.774-38.621Q38.546-38.668 38.401-38.855Q37.941-38.535 37.233-38.535Q36.898-38.535 36.593-38.676Q36.288-38.816 36.097-39.078Q35.905-39.340 35.905-39.687M36.546-39.679Q36.546-39.406 36.788-39.250Q37.030-39.094 37.316-39.094Q37.534-39.094 37.767-39.152Q37.999-39.211 38.161-39.349Q38.323-39.488 38.323-39.711L38.323-40.301Q38.042-40.301 37.626-40.244Q37.210-40.187 36.878-40.049Q36.546-39.910 36.546-39.679M40.194-38.812L40.194-38.902Q40.245-39.109 40.441-39.133L41.546-39.133L41.546-42.902L40.441-42.902Q40.245-42.926 40.194-43.140L40.194-43.230Q40.245-43.437 40.441-43.461L41.937-43.461Q42.128-43.437 42.187-43.230L42.187-39.133L43.288-39.133Q43.487-39.109 43.538-38.902L43.538-38.812Q43.487-38.597 43.288-38.574L40.441-38.574Q40.245-38.597 40.194-38.812M44.175-38.812L44.175-38.902Q44.214-39.109 44.425-39.133L44.733-39.133L44.733-42.902L44.425-42.902Q44.214-42.926 44.175-43.140L44.175-43.230Q44.214-43.437 44.425-43.461L46.374-43.461Q46.773-43.461 47.118-43.260Q47.464-43.058 47.671-42.713Q47.878-42.367 47.878-41.965Q47.878-41.558 47.673-41.215Q47.468-40.871 47.122-40.666Q46.776-40.461 46.374-40.461L45.374-40.461L45.374-39.133L45.687-39.133Q45.898-39.109 45.937-38.902L45.937-38.812Q45.898-38.597 45.687-38.574L44.425-38.574Q44.214-38.597 44.175-38.812M45.374-42.902L45.374-41.023L46.214-41.023Q46.476-41.023 46.712-41.146Q46.948-41.269 47.093-41.484Q47.237-41.699 47.237-41.965Q47.237-42.234 47.093-42.445Q46.948-42.656 46.712-42.779Q46.476-42.902 46.214-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M193.516 94.3h227.622\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">rrmovq rA,rB (left) and irmovq V,rB (right). Both pass their value through the ALU by adding 0 — valA for rrmovq, valC for irmovq — and write valE into rB. The cmovXX variants add Cnd in Execute and write only if it holds.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:673.732px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 505.299 173.104\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-70.444 -25.141)\">\u003Cpath d=\"M8.797-38.478L8.797-38.568Q8.855-38.775 9.047-38.799L9.758-38.799L9.758-41.127L9.047-41.127Q8.851-41.150 8.797-41.369L8.797-41.455Q8.855-41.666 9.047-41.689L10.148-41.689Q10.347-41.670 10.398-41.455L10.398-41.127Q10.660-41.412 11.015-41.570Q11.371-41.728 11.758-41.728Q12.051-41.728 12.285-41.594Q12.519-41.459 12.519-41.193Q12.519-41.025 12.410-40.908Q12.301-40.791 12.133-40.791Q11.980-40.791 11.865-40.902Q11.750-41.013 11.750-41.170Q11.375-41.170 11.060-40.969Q10.746-40.767 10.572-40.433Q10.398-40.099 10.398-39.720L10.398-38.799L11.344-38.799Q11.551-38.775 11.590-38.568L11.590-38.478Q11.551-38.263 11.344-38.240L9.047-38.240Q8.855-38.263 8.797-38.478M12.765-38.478L12.765-38.568Q12.816-38.779 13.011-38.799L13.211-38.799L13.211-41.127L13.011-41.127Q12.804-41.150 12.765-41.369L12.765-41.455Q12.816-41.670 13.011-41.689L13.492-41.689Q13.683-41.666 13.742-41.455Q14.062-41.728 14.476-41.728Q14.668-41.728 14.836-41.619Q15.004-41.510 15.078-41.338Q15.254-41.529 15.476-41.629Q15.699-41.728 15.941-41.728Q16.359-41.728 16.513-41.386Q16.668-41.045 16.668-40.576L16.668-38.799L16.867-38.799Q17.078-38.775 17.117-38.568L17.117-38.478Q17.066-38.263 16.867-38.240L16.051-38.240Q15.855-38.263 15.804-38.478L15.804-38.568Q15.855-38.775 16.051-38.799L16.140-38.799L16.140-40.545Q16.140-41.170 15.890-41.170Q15.558-41.170 15.381-40.859Q15.203-40.549 15.203-40.185L15.203-38.799L15.406-38.799Q15.613-38.775 15.652-38.568L15.652-38.478Q15.601-38.263 15.406-38.240L14.590-38.240Q14.390-38.263 14.340-38.478L14.340-38.568Q14.390-38.775 14.590-38.799L14.676-38.799L14.676-40.545Q14.676-41.170 14.429-41.170Q14.097-41.170 13.920-40.857Q13.742-40.545 13.742-40.185L13.742-38.799L13.941-38.799Q14.148-38.775 14.187-38.568L14.187-38.478Q14.136-38.260 13.941-38.240L13.011-38.240Q12.804-38.263 12.765-38.478M17.011-38.478L17.011-38.568Q17.062-38.779 17.258-38.799L17.457-38.799L17.457-41.127L17.258-41.127Q17.051-41.150 17.011-41.369L17.011-41.455Q17.062-41.670 17.258-41.689L17.738-41.689Q17.929-41.666 17.988-41.455Q18.308-41.728 18.722-41.728Q18.914-41.728 19.082-41.619Q19.250-41.510 19.324-41.338Q19.500-41.529 19.722-41.629Q19.945-41.728 20.187-41.728Q20.605-41.728 20.760-41.386Q20.914-41.045 20.914-40.576L20.914-38.799L21.113-38.799Q21.324-38.775 21.363-38.568L21.363-38.478Q21.312-38.263 21.113-38.240L20.297-38.240Q20.101-38.263 20.051-38.478L20.051-38.568Q20.101-38.775 20.297-38.799L20.386-38.799L20.386-40.545Q20.386-41.170 20.136-41.170Q19.804-41.170 19.627-40.859Q19.449-40.549 19.449-40.185L19.449-38.799L19.652-38.799Q19.859-38.775 19.898-38.568L19.898-38.478Q19.847-38.263 19.652-38.240L18.836-38.240Q18.636-38.263 18.586-38.478L18.586-38.568Q18.636-38.775 18.836-38.799L18.922-38.799L18.922-40.545Q18.922-41.170 18.676-41.170Q18.344-41.170 18.166-40.857Q17.988-40.545 17.988-40.185L17.988-38.799L18.187-38.799Q18.394-38.775 18.433-38.568L18.433-38.478Q18.383-38.260 18.187-38.240L17.258-38.240Q17.051-38.263 17.011-38.478M23.433-38.201Q22.961-38.201 22.576-38.445Q22.191-38.689 21.969-39.099Q21.746-39.510 21.746-39.967Q21.746-40.310 21.871-40.633Q21.996-40.955 22.226-41.209Q22.457-41.463 22.763-41.607Q23.070-41.752 23.433-41.752Q23.797-41.752 24.109-41.605Q24.422-41.459 24.644-41.213Q24.867-40.967 24.994-40.646Q25.121-40.326 25.121-39.967Q25.121-39.510 24.896-39.097Q24.672-38.685 24.287-38.443Q23.902-38.201 23.433-38.201M23.433-38.760Q23.898-38.760 24.189-39.154Q24.480-39.549 24.480-40.033Q24.480-40.326 24.345-40.594Q24.211-40.861 23.970-41.027Q23.730-41.193 23.433-41.193Q23.129-41.193 22.890-41.027Q22.652-40.861 22.517-40.594Q22.383-40.326 22.383-40.033Q22.383-39.553 22.676-39.156Q22.969-38.760 23.433-38.760M27.215-38.463L26.328-41.127L26.008-41.127Q25.808-41.150 25.758-41.369L25.758-41.455Q25.808-41.666 26.008-41.689L27.168-41.689Q27.363-41.670 27.414-41.455L27.414-41.369Q27.363-41.150 27.168-41.127L26.886-41.127L27.679-38.752L28.469-41.127L28.191-41.127Q27.992-41.150 27.941-41.369L27.941-41.455Q27.992-41.666 28.191-41.689L29.351-41.689Q29.547-41.666 29.597-41.455L29.597-41.369Q29.547-41.150 29.351-41.127L29.031-41.127L28.144-38.463Q28.101-38.349 28-38.275Q27.898-38.201 27.773-38.201L27.582-38.201Q27.465-38.201 27.361-38.273Q27.258-38.345 27.215-38.463M32.117-36.697L32.117-36.783Q32.168-37.002 32.363-37.025L32.828-37.025L32.828-38.623Q32.375-38.201 31.765-38.201Q31.410-38.201 31.105-38.344Q30.801-38.486 30.568-38.736Q30.336-38.986 30.211-39.308Q30.086-39.631 30.086-39.967Q30.086-40.451 30.324-40.851Q30.562-41.252 30.969-41.490Q31.375-41.728 31.851-41.728Q32.414-41.728 32.828-41.338L32.828-41.498Q32.879-41.709 33.078-41.728L33.219-41.728Q33.418-41.705 33.469-41.498L33.469-37.025L33.933-37.025Q34.129-37.002 34.179-36.783L34.179-36.697Q34.129-36.486 33.933-36.463L32.363-36.463Q32.168-36.486 32.117-36.697M31.812-38.760Q32.183-38.760 32.459-39.013Q32.734-39.267 32.828-39.631L32.828-40.248Q32.785-40.486 32.662-40.699Q32.539-40.912 32.342-41.041Q32.144-41.170 31.902-41.170Q31.586-41.170 31.314-41.004Q31.043-40.838 30.885-40.556Q30.726-40.275 30.726-39.959Q30.726-39.494 31.041-39.127Q31.355-38.760 31.812-38.760\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-70.444 -25.141)\">\u003Cpath d=\"M38.547-38.478L38.547-38.568Q38.605-38.775 38.797-38.799L39.508-38.799L39.508-41.127L38.797-41.127Q38.601-41.150 38.547-41.369L38.547-41.455Q38.605-41.666 38.797-41.689L39.898-41.689Q40.097-41.670 40.148-41.455L40.148-41.127Q40.410-41.412 40.765-41.570Q41.121-41.728 41.508-41.728Q41.801-41.728 42.035-41.594Q42.269-41.459 42.269-41.193Q42.269-41.025 42.160-40.908Q42.051-40.791 41.883-40.791Q41.730-40.791 41.615-40.902Q41.500-41.013 41.500-41.170Q41.125-41.170 40.810-40.969Q40.496-40.767 40.322-40.433Q40.148-40.099 40.148-39.720L40.148-38.799L41.094-38.799Q41.301-38.775 41.340-38.568L41.340-38.478Q41.301-38.263 41.094-38.240L38.797-38.240Q38.605-38.263 38.547-38.478M42.801-38.478L42.801-38.568Q42.859-38.779 43.051-38.799L43.273-38.799L44.226-42.982Q44.250-43.099 44.345-43.174Q44.441-43.248 44.554-43.248L44.828-43.248Q44.941-43.248 45.037-43.172Q45.133-43.095 45.156-42.982L46.105-38.799L46.332-38.799Q46.539-38.775 46.578-38.568L46.578-38.478Q46.527-38.263 46.332-38.240L45.250-38.240Q45.054-38.263 45.004-38.478L45.004-38.568Q45.054-38.775 45.250-38.799L45.449-38.799Q45.320-39.365 45.297-39.447L44.082-39.447Q44.039-39.263 43.929-38.799L44.129-38.799Q44.328-38.775 44.379-38.568L44.379-38.478Q44.328-38.263 44.129-38.240L43.051-38.240Q42.844-38.263 42.801-38.478M44.203-40.010L45.179-40.010Q44.699-42.142 44.699-42.486L44.691-42.486Q44.691-42.303 44.551-41.619Q44.410-40.935 44.203-40.010M48.535-37.127Q48.422-37.127 48.332-37.217Q48.242-37.306 48.242-37.416Q48.242-37.592 48.433-37.666Q48.652-37.717 48.824-37.875Q48.996-38.033 49.062-38.256Q49.039-38.256 49.008-38.240L48.945-38.240Q48.715-38.240 48.549-38.402Q48.383-38.564 48.383-38.799Q48.383-39.033 48.547-39.193Q48.711-39.353 48.945-39.353Q49.156-39.353 49.320-39.232Q49.484-39.111 49.574-38.918Q49.664-38.724 49.664-38.513Q49.664-38.037 49.365-37.648Q49.066-37.260 48.601-37.135Q48.578-37.127 48.535-37.127M51.199-38.478L51.199-38.568Q51.238-38.775 51.445-38.799L51.695-38.799L51.695-42.568L51.445-42.568Q51.238-42.592 51.199-42.806L51.199-42.896Q51.238-43.103 51.445-43.127L53.261-43.127Q53.812-43.127 54.207-42.734Q54.601-42.342 54.797-41.763Q54.992-41.185 54.992-40.638Q54.992-40.111 54.793-39.547Q54.594-38.982 54.201-38.611Q53.808-38.240 53.261-38.240L51.445-38.240Q51.238-38.263 51.199-38.478M52.336-42.568L52.336-38.799L53.101-38.799Q53.695-38.799 54.023-39.394Q54.351-39.990 54.351-40.638Q54.351-41.045 54.217-41.494Q54.082-41.943 53.797-42.256Q53.511-42.568 53.101-42.568L52.336-42.568M58.422-37.599Q57.890-37.908 57.490-38.396Q57.090-38.885 56.879-39.478Q56.668-40.072 56.668-40.689Q56.668-41.306 56.877-41.894Q57.086-42.482 57.482-42.963Q57.879-43.443 58.414-43.767Q58.484-43.791 58.515-43.791L58.605-43.791Q58.703-43.779 58.769-43.713Q58.836-43.646 58.836-43.545Q58.836-43.400 58.734-43.338Q58.285-43.049 57.959-42.633Q57.633-42.217 57.470-41.724Q57.308-41.232 57.308-40.689Q57.308-40.283 57.404-39.896Q57.500-39.510 57.678-39.174Q57.855-38.838 58.115-38.554Q58.375-38.271 58.722-38.041Q58.836-37.963 58.836-37.826Q58.836-37.728 58.769-37.658Q58.703-37.588 58.605-37.576L58.515-37.576Q58.457-37.576 58.422-37.599M59.777-38.478L59.777-38.568Q59.836-38.775 60.027-38.799L60.738-38.799L60.738-41.127L60.027-41.127Q59.832-41.150 59.777-41.369L59.777-41.455Q59.836-41.666 60.027-41.689L61.129-41.689Q61.328-41.670 61.379-41.455L61.379-41.127Q61.640-41.412 61.996-41.570Q62.351-41.728 62.738-41.728Q63.031-41.728 63.265-41.594Q63.500-41.459 63.500-41.193Q63.500-41.025 63.390-40.908Q63.281-40.791 63.113-40.791Q62.961-40.791 62.845-40.902Q62.730-41.013 62.730-41.170Q62.355-41.170 62.041-40.969Q61.726-40.767 61.553-40.433Q61.379-40.099 61.379-39.720L61.379-38.799L62.324-38.799Q62.531-38.775 62.570-38.568L62.570-38.478Q62.531-38.263 62.324-38.240L60.027-38.240Q59.836-38.263 59.777-38.478M63.969-38.478L63.969-38.568Q64.008-38.775 64.215-38.799L64.504-38.799L64.504-42.568L64.215-42.568Q64.008-42.592 63.969-42.806L63.969-42.896Q64.008-43.103 64.215-43.127L66.176-43.127Q66.445-43.127 66.685-43.031Q66.926-42.935 67.117-42.765Q67.308-42.595 67.418-42.367Q67.527-42.138 67.527-41.873Q67.527-41.506 67.287-41.217Q67.047-40.928 66.679-40.799Q66.961-40.736 67.193-40.562Q67.426-40.388 67.560-40.133Q67.695-39.877 67.695-39.592Q67.695-39.232 67.513-38.922Q67.332-38.611 67.017-38.426Q66.703-38.240 66.344-38.240L64.215-38.240Q64.008-38.263 63.969-38.478M65.144-40.506L65.144-38.799L66.176-38.799Q66.402-38.799 66.605-38.902Q66.808-39.006 66.933-39.185Q67.058-39.365 67.058-39.592Q67.058-39.822 66.957-40.031Q66.855-40.240 66.674-40.373Q66.492-40.506 66.265-40.506L65.144-40.506M65.144-42.568L65.144-41.064L66.008-41.064Q66.351-41.064 66.621-41.299Q66.890-41.533 66.890-41.873Q66.890-42.060 66.793-42.220Q66.695-42.381 66.529-42.474Q66.363-42.568 66.176-42.568L65.144-42.568M69.086-37.576L69-37.576Q68.894-37.588 68.826-37.660Q68.758-37.732 68.758-37.826Q68.758-37.967 68.863-38.033Q69.199-38.248 69.469-38.537Q69.738-38.826 69.922-39.174Q70.105-39.521 70.195-39.900Q70.285-40.279 70.285-40.689Q70.285-41.228 70.121-41.720Q69.957-42.213 69.638-42.627Q69.320-43.041 68.879-43.330Q68.758-43.412 68.758-43.545Q68.758-43.642 68.826-43.711Q68.894-43.779 69-43.791L69.086-43.791Q69.140-43.791 69.176-43.767Q69.562-43.545 69.902-43.197Q70.242-42.849 70.463-42.455Q70.683-42.060 70.804-41.615Q70.926-41.170 70.926-40.689Q70.926-40.205 70.804-39.754Q70.683-39.303 70.459-38.906Q70.234-38.510 69.910-38.176Q69.586-37.842 69.183-37.599Q69.113-37.576 69.086-37.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-51.044h224.777\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M11.267-38.240L8.953-38.240L8.953-38.520Q9.675-38.520 9.675-38.729L9.675-42.530Q9.675-42.741 8.953-42.741L8.953-43.022L13.137-43.022L13.349-41.385L13.082-41.385Q13.004-41.996 12.852-42.275Q12.699-42.553 12.395-42.647Q12.091-42.741 11.466-42.741L10.731-42.741Q10.543-42.741 10.454-42.707Q10.365-42.673 10.365-42.530L10.365-40.773L10.919-40.773Q11.288-40.773 11.472-40.827Q11.657-40.882 11.736-41.055Q11.814-41.227 11.814-41.593L12.081-41.593L12.081-39.676L11.814-39.676Q11.814-40.041 11.736-40.214Q11.657-40.386 11.472-40.439Q11.288-40.492 10.919-40.492L10.365-40.492L10.365-38.729Q10.365-38.520 11.267-38.520\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M13.361-39.775Q13.361-40.096 13.486-40.385Q13.611-40.674 13.837-40.897Q14.062-41.121 14.358-41.241Q14.653-41.361 14.971-41.361Q15.299-41.361 15.561-41.261Q15.822-41.162 15.998-40.980Q16.174-40.797 16.268-40.539Q16.362-40.281 16.362-39.949Q16.362-39.857 16.280-39.836L14.025-39.836L14.025-39.775Q14.025-39.187 14.308-38.804Q14.592-38.421 15.159-38.421Q15.481-38.421 15.749-38.614Q16.017-38.807 16.106-39.122Q16.113-39.163 16.188-39.177L16.280-39.177Q16.362-39.153 16.362-39.081Q16.362-39.074 16.356-39.047Q16.243-38.650 15.872-38.411Q15.501-38.172 15.077-38.172Q14.640-38.172 14.240-38.380Q13.840-38.589 13.601-38.956Q13.361-39.323 13.361-39.775M14.031-40.045L15.846-40.045Q15.846-40.322 15.749-40.574Q15.651-40.827 15.453-40.983Q15.255-41.138 14.971-41.138Q14.694-41.138 14.481-40.980Q14.267-40.821 14.149-40.566Q14.031-40.311 14.031-40.045M17.477-39.081L17.477-40.978L16.838-40.978L16.838-41.200Q17.155-41.200 17.372-41.410Q17.589-41.620 17.690-41.930Q17.791-42.239 17.791-42.547L18.058-42.547L18.058-41.258L19.134-41.258L19.134-40.978L18.058-40.978L18.058-39.094Q18.058-38.818 18.162-38.619Q18.266-38.421 18.526-38.421Q18.683-38.421 18.789-38.525Q18.895-38.630 18.945-38.783Q18.994-38.937 18.994-39.094L18.994-39.508L19.261-39.508L19.261-39.081Q19.261-38.855 19.162-38.645Q19.063-38.435 18.878-38.303Q18.693-38.172 18.464-38.172Q18.027-38.172 17.752-38.409Q17.477-38.647 17.477-39.081M20.071-39.751Q20.071-40.079 20.206-40.380Q20.341-40.680 20.577-40.901Q20.813-41.121 21.117-41.241Q21.421-41.361 21.746-41.361Q22.252-41.361 22.600-41.258Q22.949-41.156 22.949-40.780Q22.949-40.633 22.851-40.532Q22.754-40.431 22.607-40.431Q22.453-40.431 22.354-40.530Q22.255-40.629 22.255-40.780Q22.255-40.968 22.395-41.060Q22.193-41.111 21.753-41.111Q21.397-41.111 21.168-40.915Q20.939-40.718 20.838-40.409Q20.737-40.099 20.737-39.751Q20.737-39.402 20.864-39.096Q20.990-38.790 21.245-38.606Q21.500-38.421 21.855-38.421Q22.077-38.421 22.262-38.505Q22.446-38.589 22.581-38.744Q22.716-38.900 22.775-39.108Q22.788-39.163 22.843-39.163L22.956-39.163Q22.986-39.163 23.009-39.139Q23.031-39.115 23.031-39.081L23.031-39.060Q22.945-38.773 22.757-38.575Q22.569-38.377 22.305-38.274Q22.040-38.172 21.746-38.172Q21.315-38.172 20.927-38.378Q20.539-38.585 20.305-38.948Q20.071-39.310 20.071-39.751\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M25.105-38.240L23.471-38.240L23.471-38.520Q23.700-38.520 23.849-38.554Q23.998-38.589 23.998-38.729L23.998-42.348Q23.998-42.618 23.890-42.680Q23.782-42.741 23.471-42.741L23.471-43.022L24.551-43.097L24.551-40.711Q24.657-40.896 24.835-41.038Q25.013-41.179 25.221-41.253Q25.430-41.326 25.655-41.326Q26.161-41.326 26.445-41.103Q26.729-40.879 26.729-40.383L26.729-38.729Q26.729-38.592 26.877-38.556Q27.026-38.520 27.252-38.520L27.252-38.240L25.621-38.240L25.621-38.520Q25.850-38.520 25.999-38.554Q26.148-38.589 26.148-38.729L26.148-40.369Q26.148-40.704 26.028-40.904Q25.908-41.104 25.594-41.104Q25.324-41.104 25.090-40.968Q24.856-40.831 24.717-40.597Q24.579-40.363 24.579-40.089L24.579-38.729Q24.579-38.592 24.729-38.556Q24.880-38.520 25.105-38.520\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M23.578-38.162Q23.129-38.162 22.763-38.386Q22.398-38.611 22.144-38.994Q21.890-39.377 21.765-39.820Q21.640-40.263 21.640-40.689Q21.640-41.115 21.765-41.554Q21.890-41.994 22.144-42.377Q22.398-42.760 22.758-42.984Q23.117-43.209 23.578-43.209Q23.855-43.209 24.113-43.117Q24.371-43.025 24.586-42.857L24.719-43.095Q24.746-43.146 24.801-43.178Q24.855-43.209 24.914-43.209L24.992-43.209Q25.086-43.197 25.148-43.138Q25.211-43.080 25.222-42.974L25.222-41.646Q25.211-41.545 25.148-41.482Q25.086-41.420 24.992-41.408L24.824-41.408Q24.722-41.420 24.660-41.486Q24.597-41.553 24.586-41.646Q24.547-41.912 24.424-42.136Q24.301-42.361 24.097-42.504Q23.894-42.646 23.633-42.646Q23.301-42.646 23.049-42.463Q22.797-42.279 22.625-41.978Q22.453-41.678 22.367-41.336Q22.281-40.994 22.281-40.689Q22.281-40.385 22.365-40.043Q22.449-39.701 22.621-39.398Q22.793-39.095 23.051-38.908Q23.308-38.720 23.640-38.720Q24.023-38.720 24.304-38.994Q24.586-39.267 24.586-39.654Q24.613-39.865 24.824-39.888L24.992-39.888Q25.222-39.849 25.222-39.623Q25.222-39.306 25.086-39.035Q24.949-38.763 24.715-38.566Q24.480-38.369 24.189-38.265Q23.898-38.162 23.578-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M39.146-38.240L37.428-38.240Q37.388-38.240 37.361-38.281Q37.334-38.322 37.334-38.369L37.357-38.470Q37.365-38.521 37.451-38.537Q38.181-38.537 38.306-39.064L39.334-43.162Q39.357-43.232 39.357-43.295Q39.357-43.357 39.291-43.377Q39.146-43.408 38.724-43.408Q38.619-43.439 38.619-43.537L38.650-43.638Q38.662-43.685 38.740-43.705L40.138-43.705Q40.197-43.705 40.234-43.676Q40.271-43.646 40.275-43.592L40.986-39.017L43.986-43.592Q44.064-43.705 44.181-43.705L45.525-43.705Q45.572-43.693 45.599-43.662Q45.627-43.631 45.627-43.584L45.603-43.478Q45.584-43.424 45.510-43.408Q45.068-43.408 44.908-43.369Q44.760-43.334 44.701-43.103L43.619-38.783Q43.603-38.689 43.603-38.646Q43.603-38.588 43.670-38.568Q43.810-38.537 44.236-38.537Q44.334-38.510 44.334-38.416L44.306-38.310Q44.299-38.260 44.221-38.240L42.138-38.240Q42.099-38.240 42.072-38.281Q42.045-38.322 42.045-38.369L42.068-38.470Q42.076-38.521 42.166-38.537Q42.603-38.537 42.762-38.576Q42.920-38.615 42.963-38.842L44.099-43.385L40.803-38.353Q40.736-38.240 40.603-38.240Q40.471-38.240 40.459-38.353L39.685-43.318L38.603-39.010Q38.588-38.908 38.588-38.857Q38.588-38.658 38.752-38.597Q38.916-38.537 39.166-38.537Q39.260-38.510 39.260-38.416L39.236-38.310Q39.228-38.260 39.146-38.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M45.449-38.052Q45.449-38.439 45.710-38.710Q45.970-38.981 46.372-39.150L46.199-39.247Q45.950-39.394 45.796-39.612Q45.642-39.830 45.642-40.100Q45.642-40.410 45.828-40.643Q46.014-40.876 46.307-40.998Q46.600-41.119 46.902-41.119Q47.192-41.119 47.484-41.021Q47.775-40.923 47.968-40.718Q48.162-40.513 48.162-40.214Q48.162-39.895 47.952-39.675Q47.743-39.455 47.400-39.294L47.722-39.121Q48.004-38.957 48.178-38.711Q48.352-38.465 48.352-38.160Q48.352-37.797 48.137-37.535Q47.922-37.273 47.585-37.138Q47.248-37.003 46.902-37.003Q46.559-37.003 46.225-37.117Q45.891-37.232 45.670-37.467Q45.449-37.703 45.449-38.052M45.856-38.058Q45.856-37.683 46.186-37.463Q46.515-37.243 46.902-37.243Q47.136-37.243 47.377-37.318Q47.617-37.393 47.781-37.551Q47.945-37.709 47.945-37.952Q47.945-38.122 47.837-38.261Q47.728-38.400 47.567-38.491L46.630-39.007Q46.304-38.869 46.080-38.623Q45.856-38.377 45.856-38.058M46.278-39.912L47.154-39.432Q47.801-39.748 47.801-40.214Q47.801-40.428 47.665-40.585Q47.529-40.741 47.322-40.819Q47.116-40.897 46.902-40.897Q46.580-40.897 46.290-40.757Q46-40.618 46-40.328Q46-40.097 46.278-39.912\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M51.406-36.240L50.230-36.240L50.230-44.240L51.406-44.240L51.406-43.873L50.597-43.873L50.597-36.607L51.406-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M51.783-38.478L51.783-38.568Q51.822-38.775 52.033-38.799L52.341-38.799L52.341-42.568L52.033-42.568Q51.822-42.592 51.783-42.806L51.783-42.896Q51.822-43.103 52.033-43.127L53.982-43.127Q54.380-43.127 54.726-42.926Q55.072-42.724 55.279-42.379Q55.486-42.033 55.486-41.631Q55.486-41.224 55.281-40.881Q55.076-40.537 54.730-40.332Q54.384-40.127 53.982-40.127L52.982-40.127L52.982-38.799L53.294-38.799Q53.505-38.775 53.544-38.568L53.544-38.478Q53.505-38.263 53.294-38.240L52.033-38.240Q51.822-38.263 51.783-38.478M52.982-42.568L52.982-40.689L53.822-40.689Q54.083-40.689 54.320-40.812Q54.556-40.935 54.701-41.150Q54.845-41.365 54.845-41.631Q54.845-41.900 54.701-42.111Q54.556-42.322 54.320-42.445Q54.083-42.568 53.822-42.568L52.982-42.568M58.111-38.162Q57.661-38.162 57.296-38.386Q56.931-38.611 56.677-38.994Q56.423-39.377 56.298-39.820Q56.173-40.263 56.173-40.689Q56.173-41.115 56.298-41.554Q56.423-41.994 56.677-42.377Q56.931-42.760 57.290-42.984Q57.650-43.209 58.111-43.209Q58.388-43.209 58.646-43.117Q58.904-43.025 59.119-42.857L59.251-43.095Q59.279-43.146 59.333-43.178Q59.388-43.209 59.447-43.209L59.525-43.209Q59.619-43.197 59.681-43.138Q59.744-43.080 59.755-42.974L59.755-41.646Q59.744-41.545 59.681-41.482Q59.619-41.420 59.525-41.408L59.357-41.408Q59.255-41.420 59.193-41.486Q59.130-41.553 59.119-41.646Q59.079-41.912 58.956-42.136Q58.833-42.361 58.630-42.504Q58.427-42.646 58.165-42.646Q57.833-42.646 57.581-42.463Q57.329-42.279 57.158-41.978Q56.986-41.678 56.900-41.336Q56.814-40.994 56.814-40.689Q56.814-40.385 56.898-40.043Q56.982-39.701 57.154-39.398Q57.326-39.095 57.583-38.908Q57.841-38.720 58.173-38.720Q58.556-38.720 58.837-38.994Q59.119-39.267 59.119-39.654Q59.146-39.865 59.357-39.888L59.525-39.888Q59.755-39.849 59.755-39.623Q59.755-39.306 59.619-39.035Q59.482-38.763 59.247-38.566Q59.013-38.369 58.722-38.265Q58.431-38.162 58.111-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M63.220-40.056L60.747-40.056Q60.669-40.068 60.620-40.117Q60.572-40.166 60.572-40.240Q60.572-40.314 60.620-40.363Q60.669-40.412 60.747-40.424L63.220-40.424L63.220-42.904Q63.247-43.072 63.404-43.072Q63.478-43.072 63.527-43.023Q63.576-42.974 63.587-42.904L63.587-40.424L66.060-40.424Q66.228-40.392 66.228-40.240Q66.228-40.088 66.060-40.056L63.587-40.056L63.587-37.576Q63.576-37.506 63.527-37.457Q63.478-37.408 63.404-37.408Q63.247-37.408 63.220-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M70.296-38.240L67.136-38.240L67.136-38.447Q67.136-38.474 67.159-38.506L68.511-39.904Q68.890-40.291 69.138-40.580Q69.386-40.869 69.560-41.226Q69.733-41.584 69.733-41.974Q69.733-42.322 69.601-42.615Q69.468-42.908 69.214-43.086Q68.960-43.263 68.605-43.263Q68.245-43.263 67.954-43.068Q67.663-42.873 67.519-42.545L67.573-42.545Q67.757-42.545 67.882-42.424Q68.007-42.303 68.007-42.111Q68.007-41.931 67.882-41.803Q67.757-41.674 67.573-41.674Q67.394-41.674 67.265-41.803Q67.136-41.931 67.136-42.111Q67.136-42.513 67.356-42.849Q67.577-43.185 67.942-43.373Q68.308-43.560 68.710-43.560Q69.190-43.560 69.606-43.373Q70.022-43.185 70.274-42.824Q70.526-42.463 70.526-41.974Q70.526-41.615 70.372-41.312Q70.218-41.010 69.966-40.750Q69.714-40.490 69.364-40.205Q69.015-39.920 68.847-39.767L67.917-38.928L68.632-38.928Q70.007-38.928 70.046-38.967Q70.116-39.045 70.159-39.230Q70.202-39.416 70.245-39.705L70.526-39.705L70.296-38.240M72.315-36.240L71.140-36.240L71.140-36.607L71.948-36.607L71.948-43.873L71.140-43.873L71.140-44.240L72.315-44.240L72.315-36.240M74.140-36.834Q74.140-36.873 74.163-36.896Q74.437-37.181 74.579-37.545Q74.722-37.908 74.722-38.295Q74.624-38.240 74.499-38.240Q74.308-38.240 74.171-38.373Q74.034-38.506 74.034-38.705Q74.034-38.896 74.171-39.029Q74.308-39.162 74.499-39.162Q74.980-39.162 74.980-38.287Q74.980-37.998 74.907-37.717Q74.835-37.435 74.692-37.181Q74.550-36.928 74.355-36.720Q74.323-36.689 74.284-36.689Q74.237-36.689 74.189-36.734Q74.140-36.779 74.140-36.834M74.034-41.232Q74.034-41.416 74.171-41.553Q74.308-41.689 74.499-41.689Q74.690-41.689 74.823-41.556Q74.956-41.424 74.956-41.232Q74.956-41.033 74.823-40.900Q74.690-40.767 74.499-40.767Q74.308-40.767 74.171-40.904Q74.034-41.041 74.034-41.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M80.172-38.463L79.286-41.127L78.965-41.127Q78.766-41.150 78.715-41.369L78.715-41.455Q78.766-41.666 78.965-41.689L80.125-41.689Q80.321-41.670 80.371-41.455L80.371-41.369Q80.321-41.150 80.125-41.127L79.844-41.127L80.637-38.752L81.426-41.127L81.149-41.127Q80.950-41.150 80.899-41.369L80.899-41.455Q80.950-41.666 81.149-41.689L82.309-41.689Q82.504-41.666 82.555-41.455L82.555-41.369Q82.504-41.150 82.309-41.127L81.989-41.127L81.102-38.463Q81.059-38.349 80.957-38.275Q80.856-38.201 80.731-38.201L80.539-38.201Q80.422-38.201 80.319-38.273Q80.215-38.345 80.172-38.463M83.168-39.353Q83.168-39.799 83.582-40.056Q83.996-40.314 84.537-40.414Q85.079-40.513 85.586-40.521Q85.586-40.736 85.452-40.888Q85.317-41.041 85.110-41.117Q84.903-41.193 84.692-41.193Q84.348-41.193 84.188-41.170L84.188-41.111Q84.188-40.943 84.069-40.828Q83.950-40.713 83.786-40.713Q83.610-40.713 83.495-40.836Q83.379-40.959 83.379-41.127Q83.379-41.533 83.760-41.642Q84.141-41.752 84.700-41.752Q84.969-41.752 85.237-41.674Q85.504-41.595 85.729-41.445Q85.954-41.295 86.090-41.074Q86.227-40.853 86.227-40.576L86.227-38.857Q86.227-38.799 86.754-38.799Q86.950-38.779 87-38.568L87-38.478Q86.950-38.263 86.754-38.240L86.610-38.240Q86.266-38.240 86.037-38.287Q85.809-38.334 85.664-38.521Q85.204-38.201 84.496-38.201Q84.161-38.201 83.856-38.342Q83.551-38.482 83.360-38.744Q83.168-39.006 83.168-39.353M83.809-39.345Q83.809-39.072 84.051-38.916Q84.293-38.760 84.579-38.760Q84.797-38.760 85.030-38.818Q85.262-38.877 85.424-39.015Q85.586-39.154 85.586-39.377L85.586-39.967Q85.305-39.967 84.889-39.910Q84.473-39.853 84.141-39.715Q83.809-39.576 83.809-39.345M87.457-38.478L87.457-38.568Q87.508-38.775 87.704-38.799L88.809-38.799L88.809-42.568L87.704-42.568Q87.508-42.592 87.457-42.806L87.457-42.896Q87.508-43.103 87.704-43.127L89.200-43.127Q89.391-43.103 89.450-42.896L89.450-38.799L90.551-38.799Q90.750-38.775 90.801-38.568L90.801-38.478Q90.750-38.263 90.551-38.240L87.704-38.240Q87.508-38.263 87.457-38.478M91.438-38.478L91.438-38.568Q91.477-38.775 91.688-38.799L91.996-38.799L91.996-42.568L91.688-42.568Q91.477-42.592 91.438-42.806L91.438-42.896Q91.477-43.103 91.688-43.127L93.637-43.127Q94.036-43.127 94.381-42.926Q94.727-42.724 94.934-42.379Q95.141-42.033 95.141-41.631Q95.141-41.224 94.936-40.881Q94.731-40.537 94.385-40.332Q94.039-40.127 93.637-40.127L92.637-40.127L92.637-38.799L92.950-38.799Q93.161-38.775 93.200-38.568L93.200-38.478Q93.161-38.263 92.950-38.240L91.688-38.240Q91.477-38.263 91.438-38.478M92.637-42.568L92.637-40.689L93.477-40.689Q93.739-40.689 93.975-40.812Q94.211-40.935 94.356-41.150Q94.500-41.365 94.500-41.631Q94.500-41.900 94.356-42.111Q94.211-42.322 93.975-42.445Q93.739-42.568 93.477-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M103.838-39.217L98.525-39.217Q98.447-39.224 98.398-39.273Q98.350-39.322 98.350-39.400Q98.350-39.470 98.397-39.521Q98.443-39.572 98.525-39.584L103.838-39.584Q103.912-39.572 103.959-39.521Q104.006-39.470 104.006-39.400Q104.006-39.322 103.957-39.273Q103.908-39.224 103.838-39.217M103.838-40.904L98.525-40.904Q98.447-40.912 98.398-40.961Q98.350-41.010 98.350-41.088Q98.350-41.158 98.397-41.209Q98.443-41.260 98.525-41.271L103.838-41.271Q103.912-41.260 103.959-41.209Q104.006-41.158 104.006-41.088Q104.006-41.010 103.957-40.961Q103.908-40.912 103.838-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M107.034-38.478L107.034-38.568Q107.073-38.775 107.284-38.799L107.592-38.799L107.592-42.568L107.284-42.568Q107.073-42.592 107.034-42.806L107.034-42.896Q107.073-43.103 107.284-43.127L109.233-43.127Q109.631-43.127 109.977-42.926Q110.323-42.724 110.530-42.379Q110.737-42.033 110.737-41.631Q110.737-41.224 110.532-40.881Q110.327-40.537 109.981-40.332Q109.635-40.127 109.233-40.127L108.233-40.127L108.233-38.799L108.545-38.799Q108.756-38.775 108.795-38.568L108.795-38.478Q108.756-38.263 108.545-38.240L107.284-38.240Q107.073-38.263 107.034-38.478M108.233-42.568L108.233-40.689L109.073-40.689Q109.334-40.689 109.571-40.812Q109.807-40.935 109.952-41.150Q110.096-41.365 110.096-41.631Q110.096-41.900 109.952-42.111Q109.807-42.322 109.571-42.445Q109.334-42.568 109.073-42.568L108.233-42.568M113.362-38.162Q112.912-38.162 112.547-38.386Q112.182-38.611 111.928-38.994Q111.674-39.377 111.549-39.820Q111.424-40.263 111.424-40.689Q111.424-41.115 111.549-41.554Q111.674-41.994 111.928-42.377Q112.182-42.760 112.541-42.984Q112.901-43.209 113.362-43.209Q113.639-43.209 113.897-43.117Q114.155-43.025 114.370-42.857L114.502-43.095Q114.530-43.146 114.584-43.178Q114.639-43.209 114.698-43.209L114.776-43.209Q114.870-43.197 114.932-43.138Q114.995-43.080 115.006-42.974L115.006-41.646Q114.995-41.545 114.932-41.482Q114.870-41.420 114.776-41.408L114.608-41.408Q114.506-41.420 114.444-41.486Q114.381-41.553 114.370-41.646Q114.330-41.912 114.207-42.136Q114.084-42.361 113.881-42.504Q113.678-42.646 113.416-42.646Q113.084-42.646 112.832-42.463Q112.580-42.279 112.409-41.978Q112.237-41.678 112.151-41.336Q112.065-40.994 112.065-40.689Q112.065-40.385 112.149-40.043Q112.233-39.701 112.405-39.398Q112.577-39.095 112.834-38.908Q113.092-38.720 113.424-38.720Q113.807-38.720 114.088-38.994Q114.370-39.267 114.370-39.654Q114.397-39.865 114.608-39.888L114.776-39.888Q115.006-39.849 115.006-39.623Q115.006-39.306 114.870-39.035Q114.733-38.763 114.498-38.566Q114.264-38.369 113.973-38.265Q113.682-38.162 113.362-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M118.471-40.056L115.998-40.056Q115.920-40.068 115.871-40.117Q115.823-40.166 115.823-40.240Q115.823-40.314 115.871-40.363Q115.920-40.412 115.998-40.424L118.471-40.424L118.471-42.904Q118.498-43.072 118.655-43.072Q118.729-43.072 118.778-43.023Q118.827-42.974 118.838-42.904L118.838-40.424L121.311-40.424Q121.479-40.392 121.479-40.240Q121.479-40.088 121.311-40.056L118.838-40.056L118.838-37.576Q118.827-37.506 118.778-37.457Q118.729-37.408 118.655-37.408Q118.498-37.408 118.471-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M125.555-38.240L122.762-38.240L122.762-38.537Q123.824-38.537 123.824-38.799L123.824-42.967Q123.395-42.752 122.715-42.752L122.715-43.049Q123.734-43.049 124.250-43.560L124.395-43.560Q124.469-43.541 124.488-43.463L124.488-38.799Q124.488-38.537 125.555-38.537L125.555-38.240M128.328-38.072Q127.625-38.072 127.225-38.472Q126.824-38.873 126.680-39.482Q126.535-40.092 126.535-40.791Q126.535-41.314 126.606-41.777Q126.676-42.240 126.869-42.652Q127.063-43.064 127.420-43.312Q127.777-43.560 128.328-43.560Q128.879-43.560 129.236-43.312Q129.594-43.064 129.785-42.654Q129.977-42.244 130.047-41.775Q130.117-41.306 130.117-40.791Q130.117-40.092 129.975-39.484Q129.832-38.877 129.432-38.474Q129.031-38.072 128.328-38.072M128.328-38.330Q128.801-38.330 129.033-38.765Q129.266-39.201 129.320-39.740Q129.375-40.279 129.375-40.920Q129.375-41.916 129.191-42.609Q129.008-43.303 128.328-43.303Q127.961-43.303 127.740-43.064Q127.520-42.826 127.424-42.469Q127.328-42.111 127.303-41.740Q127.277-41.369 127.277-40.920Q127.277-40.279 127.332-39.740Q127.387-39.201 127.619-38.765Q127.852-38.330 128.328-38.330\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-26.29h224.777\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M11.739-38.240L8.967-38.240L8.967-38.520Q9.688-38.520 9.688-38.729L9.688-42.530Q9.688-42.741 8.967-42.741L8.967-43.022L11.739-43.022Q12.224-43.022 12.660-42.827Q13.096-42.632 13.419-42.290Q13.742-41.948 13.920-41.508Q14.097-41.067 14.097-40.585Q14.097-40.099 13.913-39.676Q13.728-39.252 13.405-38.930Q13.082-38.609 12.650-38.425Q12.218-38.240 11.739-38.240M10.351-42.530L10.351-38.729Q10.351-38.589 10.440-38.554Q10.529-38.520 10.717-38.520L11.541-38.520Q12.166-38.520 12.570-38.782Q12.973-39.043 13.161-39.510Q13.349-39.976 13.349-40.585Q13.349-41.063 13.257-41.456Q13.164-41.849 12.915-42.147Q12.676-42.434 12.312-42.588Q11.948-42.741 11.541-42.741L10.717-42.741Q10.529-42.741 10.440-42.707Q10.351-42.673 10.351-42.530M14.866-39.775Q14.866-40.096 14.991-40.385Q15.116-40.674 15.342-40.897Q15.567-41.121 15.863-41.241Q16.158-41.361 16.476-41.361Q16.804-41.361 17.066-41.261Q17.327-41.162 17.503-40.980Q17.679-40.797 17.773-40.539Q17.867-40.281 17.867-39.949Q17.867-39.857 17.785-39.836L15.530-39.836L15.530-39.775Q15.530-39.187 15.813-38.804Q16.097-38.421 16.664-38.421Q16.986-38.421 17.254-38.614Q17.522-38.807 17.611-39.122Q17.618-39.163 17.693-39.177L17.785-39.177Q17.867-39.153 17.867-39.081Q17.867-39.074 17.861-39.047Q17.748-38.650 17.377-38.411Q17.006-38.172 16.582-38.172Q16.145-38.172 15.745-38.380Q15.345-38.589 15.106-38.956Q14.866-39.323 14.866-39.775M15.536-40.045L17.351-40.045Q17.351-40.322 17.254-40.574Q17.157-40.827 16.958-40.983Q16.760-41.138 16.476-41.138Q16.199-41.138 15.986-40.980Q15.772-40.821 15.654-40.566Q15.536-40.311 15.536-40.045M18.455-39.751Q18.455-40.079 18.590-40.380Q18.725-40.680 18.961-40.901Q19.197-41.121 19.501-41.241Q19.805-41.361 20.130-41.361Q20.636-41.361 20.985-41.258Q21.333-41.156 21.333-40.780Q21.333-40.633 21.236-40.532Q21.138-40.431 20.991-40.431Q20.838-40.431 20.739-40.530Q20.639-40.629 20.639-40.780Q20.639-40.968 20.780-41.060Q20.578-41.111 20.137-41.111Q19.782-41.111 19.553-40.915Q19.324-40.718 19.223-40.409Q19.122-40.099 19.122-39.751Q19.122-39.402 19.248-39.096Q19.375-38.790 19.629-38.606Q19.884-38.421 20.240-38.421Q20.462-38.421 20.646-38.505Q20.831-38.589 20.966-38.744Q21.101-38.900 21.159-39.108Q21.173-39.163 21.227-39.163L21.340-39.163Q21.371-39.163 21.393-39.139Q21.415-39.115 21.415-39.081L21.415-39.060Q21.330-38.773 21.142-38.575Q20.954-38.377 20.689-38.274Q20.424-38.172 20.130-38.172Q19.699-38.172 19.312-38.378Q18.924-38.585 18.689-38.948Q18.455-39.310 18.455-39.751M21.962-39.723Q21.962-40.065 22.097-40.364Q22.232-40.663 22.471-40.887Q22.711-41.111 23.029-41.236Q23.346-41.361 23.678-41.361Q24.122-41.361 24.522-41.145Q24.922-40.930 25.156-40.552Q25.390-40.175 25.390-39.723Q25.390-39.382 25.249-39.098Q25.107-38.814 24.862-38.607Q24.618-38.401 24.309-38.286Q23.999-38.172 23.678-38.172Q23.247-38.172 22.846-38.373Q22.444-38.575 22.203-38.927Q21.962-39.279 21.962-39.723M23.678-38.421Q24.280-38.421 24.503-38.799Q24.727-39.177 24.727-39.809Q24.727-40.421 24.493-40.780Q24.259-41.138 23.678-41.138Q22.625-41.138 22.625-39.809Q22.625-39.177 22.851-38.799Q23.076-38.421 23.678-38.421\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M26.221-39.751Q26.221-40.089 26.362-40.380Q26.502-40.670 26.746-40.884Q26.990-41.097 27.295-41.212Q27.599-41.326 27.924-41.326Q28.194-41.326 28.457-41.227Q28.720-41.128 28.911-40.950L28.911-42.348Q28.911-42.618 28.804-42.680Q28.696-42.741 28.385-42.741L28.385-43.022L29.462-43.097L29.462-38.913Q29.462-38.725 29.516-38.642Q29.571-38.558 29.672-38.539Q29.773-38.520 29.988-38.520L29.988-38.240L28.881-38.172L28.881-38.589Q28.464-38.172 27.838-38.172Q27.407-38.172 27.035-38.384Q26.662-38.595 26.442-38.956Q26.221-39.317 26.221-39.751M27.896-38.394Q28.105-38.394 28.291-38.466Q28.477-38.537 28.631-38.674Q28.785-38.811 28.881-38.989L28.881-40.598Q28.795-40.745 28.650-40.865Q28.505-40.985 28.335-41.044Q28.166-41.104 27.985-41.104Q27.425-41.104 27.156-40.715Q26.888-40.325 26.888-39.744Q26.888-39.173 27.122-38.783Q27.356-38.394 27.896-38.394M30.596-39.775Q30.596-40.096 30.721-40.385Q30.846-40.674 31.072-40.897Q31.297-41.121 31.593-41.241Q31.888-41.361 32.206-41.361Q32.534-41.361 32.796-41.261Q33.057-41.162 33.233-40.980Q33.409-40.797 33.503-40.539Q33.597-40.281 33.597-39.949Q33.597-39.857 33.515-39.836L31.260-39.836L31.260-39.775Q31.260-39.187 31.543-38.804Q31.827-38.421 32.394-38.421Q32.716-38.421 32.984-38.614Q33.252-38.807 33.341-39.122Q33.348-39.163 33.423-39.177L33.515-39.177Q33.597-39.153 33.597-39.081Q33.597-39.074 33.591-39.047Q33.478-38.650 33.107-38.411Q32.736-38.172 32.312-38.172Q31.875-38.172 31.475-38.380Q31.075-38.589 30.836-38.956Q30.596-39.323 30.596-39.775M31.266-40.045L33.081-40.045Q33.081-40.322 32.984-40.574Q32.886-40.827 32.688-40.983Q32.490-41.138 32.206-41.138Q31.929-41.138 31.716-40.980Q31.502-40.821 31.384-40.566Q31.266-40.311 31.266-40.045\" 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-size=\"8\">\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M21.543-38.478L21.543-38.568Q21.601-38.779 21.793-38.799L22.015-38.799L22.969-42.982Q22.992-43.099 23.088-43.174Q23.183-43.248 23.297-43.248L23.570-43.248Q23.683-43.248 23.779-43.172Q23.875-43.095 23.898-42.982L24.847-38.799L25.074-38.799Q25.281-38.775 25.320-38.568L25.320-38.478Q25.269-38.263 25.074-38.240L23.992-38.240Q23.797-38.263 23.746-38.478L23.746-38.568Q23.797-38.775 23.992-38.799L24.191-38.799Q24.062-39.365 24.039-39.447L22.824-39.447Q22.781-39.263 22.672-38.799L22.871-38.799Q23.070-38.775 23.121-38.568L23.121-38.478Q23.070-38.263 22.871-38.240L21.793-38.240Q21.586-38.263 21.543-38.478M22.945-40.010L23.922-40.010Q23.441-42.142 23.441-42.486L23.433-42.486Q23.433-42.303 23.293-41.619Q23.152-40.935 22.945-40.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M39.533-38.240L37.396-38.240Q37.361-38.240 37.330-38.281Q37.299-38.322 37.299-38.369L37.322-38.470Q37.334-38.521 37.420-38.537Q37.861-38.537 38.019-38.576Q38.178-38.615 38.221-38.842L39.299-43.162Q39.322-43.232 39.322-43.295Q39.322-43.357 39.260-43.377Q39.115-43.408 38.693-43.408Q38.588-43.435 38.588-43.537L38.619-43.638Q38.627-43.685 38.709-43.705L41.221-43.705Q41.627-43.705 42.070-43.582Q42.513-43.459 42.818-43.183Q43.123-42.908 43.123-42.486Q43.123-42.099 42.853-41.783Q42.584-41.467 42.185-41.258Q41.787-41.049 41.412-40.959Q41.721-40.834 41.918-40.595Q42.115-40.357 42.115-40.041Q42.115-39.998 42.113-39.970Q42.111-39.943 42.107-39.912L42.029-39.217Q41.998-38.928 41.998-38.806Q41.998-38.592 42.066-38.461Q42.135-38.330 42.342-38.330Q42.596-38.330 42.791-38.554Q42.986-38.779 43.053-39.056Q43.060-39.103 43.146-39.119L43.228-39.119Q43.322-39.092 43.322-39.010Q43.322-39.002 43.314-38.967Q43.263-38.752 43.119-38.541Q42.974-38.330 42.767-38.201Q42.560-38.072 42.334-38.072Q42.029-38.072 41.760-38.158Q41.490-38.244 41.318-38.443Q41.146-38.642 41.146-38.951Q41.146-39.060 41.189-39.240L41.365-39.935Q41.388-40.056 41.388-40.150Q41.388-40.486 41.127-40.668Q40.865-40.849 40.502-40.849L39.451-40.849L38.931-38.783Q38.916-38.689 38.916-38.646Q38.916-38.607 38.929-38.594Q38.943-38.580 38.978-38.568Q39.123-38.537 39.549-38.537Q39.642-38.510 39.642-38.416L39.619-38.310Q39.611-38.260 39.533-38.240M40.013-43.103L39.517-41.103L40.459-41.103Q40.803-41.103 41.119-41.172Q41.435-41.240 41.709-41.408Q41.896-41.533 42.033-41.734Q42.170-41.935 42.238-42.168Q42.306-42.400 42.306-42.623Q42.306-43.080 41.939-43.244Q41.572-43.408 41.037-43.408L40.420-43.408Q40.248-43.408 40.185-43.394Q40.123-43.381 40.090-43.322Q40.056-43.263 40.013-43.103\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M45.527-36.240L44.351-36.240L44.351-44.240L45.527-44.240L45.527-43.873L44.718-43.873L44.718-36.607L45.527-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M45.943-38.478L45.943-38.568Q46.001-38.775 46.193-38.799L46.904-38.799L46.904-41.127L46.193-41.127Q45.997-41.150 45.943-41.369L45.943-41.455Q46.001-41.666 46.193-41.689L47.294-41.689Q47.493-41.670 47.544-41.455L47.544-41.127Q47.806-41.412 48.161-41.570Q48.517-41.728 48.904-41.728Q49.197-41.728 49.431-41.594Q49.665-41.459 49.665-41.193Q49.665-41.025 49.556-40.908Q49.447-40.791 49.279-40.791Q49.126-40.791 49.011-40.902Q48.896-41.013 48.896-41.170Q48.521-41.170 48.206-40.969Q47.892-40.767 47.718-40.433Q47.544-40.099 47.544-39.720L47.544-38.799L48.490-38.799Q48.697-38.775 48.736-38.568L48.736-38.478Q48.697-38.263 48.490-38.240L46.193-38.240Q46.001-38.263 45.943-38.478M50.197-38.478L50.197-38.568Q50.255-38.779 50.447-38.799L50.669-38.799L51.622-42.982Q51.646-43.099 51.741-43.174Q51.837-43.248 51.950-43.248L52.224-43.248Q52.337-43.248 52.433-43.172Q52.529-43.095 52.552-42.982L53.501-38.799L53.728-38.799Q53.935-38.775 53.974-38.568L53.974-38.478Q53.923-38.263 53.728-38.240L52.646-38.240Q52.450-38.263 52.400-38.478L52.400-38.568Q52.450-38.775 52.646-38.799L52.845-38.799Q52.716-39.365 52.693-39.447L51.478-39.447Q51.435-39.263 51.325-38.799L51.525-38.799Q51.724-38.775 51.775-38.568L51.775-38.478Q51.724-38.263 51.525-38.240L50.447-38.240Q50.240-38.263 50.197-38.478M51.599-40.010L52.575-40.010Q52.095-42.142 52.095-42.486L52.087-42.486Q52.087-42.303 51.947-41.619Q51.806-40.935 51.599-40.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M55.579-36.240L54.404-36.240L54.404-36.607L55.212-36.607L55.212-43.873L54.404-43.873L54.404-44.240L55.579-44.240L55.579-36.240M57.404-36.834Q57.404-36.873 57.427-36.896Q57.700-37.181 57.843-37.545Q57.986-37.908 57.986-38.295Q57.888-38.240 57.763-38.240Q57.572-38.240 57.435-38.373Q57.298-38.506 57.298-38.705Q57.298-38.896 57.435-39.029Q57.572-39.162 57.763-39.162Q58.243-39.162 58.243-38.287Q58.243-37.998 58.171-37.717Q58.099-37.435 57.956-37.181Q57.814-36.928 57.618-36.720Q57.587-36.689 57.548-36.689Q57.501-36.689 57.452-36.734Q57.404-36.779 57.404-36.834M57.298-41.232Q57.298-41.416 57.435-41.553Q57.572-41.689 57.763-41.689Q57.954-41.689 58.087-41.556Q58.220-41.424 58.220-41.232Q58.220-41.033 58.087-40.900Q57.954-40.767 57.763-40.767Q57.572-40.767 57.435-40.904Q57.298-41.041 57.298-41.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M63.432-38.463L62.546-41.127L62.225-41.127Q62.026-41.150 61.975-41.369L61.975-41.455Q62.026-41.666 62.225-41.689L63.385-41.689Q63.581-41.670 63.631-41.455L63.631-41.369Q63.581-41.150 63.385-41.127L63.104-41.127L63.897-38.752L64.686-41.127L64.409-41.127Q64.210-41.150 64.159-41.369L64.159-41.455Q64.210-41.666 64.409-41.689L65.569-41.689Q65.764-41.666 65.815-41.455L65.815-41.369Q65.764-41.150 65.569-41.127L65.249-41.127L64.362-38.463Q64.319-38.349 64.217-38.275Q64.116-38.201 63.991-38.201L63.799-38.201Q63.682-38.201 63.579-38.273Q63.475-38.345 63.432-38.463M66.428-39.353Q66.428-39.799 66.842-40.056Q67.256-40.314 67.797-40.414Q68.339-40.513 68.846-40.521Q68.846-40.736 68.712-40.888Q68.577-41.041 68.370-41.117Q68.163-41.193 67.952-41.193Q67.608-41.193 67.448-41.170L67.448-41.111Q67.448-40.943 67.329-40.828Q67.210-40.713 67.046-40.713Q66.870-40.713 66.755-40.836Q66.639-40.959 66.639-41.127Q66.639-41.533 67.020-41.642Q67.401-41.752 67.960-41.752Q68.229-41.752 68.497-41.674Q68.764-41.595 68.989-41.445Q69.214-41.295 69.350-41.074Q69.487-40.853 69.487-40.576L69.487-38.857Q69.487-38.799 70.014-38.799Q70.210-38.779 70.260-38.568L70.260-38.478Q70.210-38.263 70.014-38.240L69.870-38.240Q69.526-38.240 69.297-38.287Q69.069-38.334 68.924-38.521Q68.464-38.201 67.756-38.201Q67.421-38.201 67.116-38.342Q66.811-38.482 66.620-38.744Q66.428-39.006 66.428-39.353M67.069-39.345Q67.069-39.072 67.311-38.916Q67.553-38.760 67.839-38.760Q68.057-38.760 68.290-38.818Q68.522-38.877 68.684-39.015Q68.846-39.154 68.846-39.377L68.846-39.967Q68.565-39.967 68.149-39.910Q67.733-39.853 67.401-39.715Q67.069-39.576 67.069-39.345M70.717-38.478L70.717-38.568Q70.768-38.775 70.964-38.799L72.069-38.799L72.069-42.568L70.964-42.568Q70.768-42.592 70.717-42.806L70.717-42.896Q70.768-43.103 70.964-43.127L72.460-43.127Q72.651-43.103 72.710-42.896L72.710-38.799L73.811-38.799Q74.010-38.775 74.061-38.568L74.061-38.478Q74.010-38.263 73.811-38.240L70.964-38.240Q70.768-38.263 70.717-38.478M74.682-38.478L74.682-38.568Q74.721-38.775 74.928-38.799L75.217-38.799L75.217-42.568L74.928-42.568Q74.721-42.592 74.682-42.806L74.682-42.896Q74.721-43.103 74.928-43.127L76.889-43.127Q77.159-43.127 77.399-43.031Q77.639-42.935 77.831-42.765Q78.022-42.595 78.131-42.367Q78.241-42.138 78.241-41.873Q78.241-41.506 78.001-41.217Q77.760-40.928 77.393-40.799Q77.674-40.736 77.907-40.562Q78.139-40.388 78.274-40.133Q78.409-39.877 78.409-39.592Q78.409-39.232 78.227-38.922Q78.046-38.611 77.731-38.426Q77.417-38.240 77.057-38.240L74.928-38.240Q74.721-38.263 74.682-38.478M75.858-40.506L75.858-38.799L76.889-38.799Q77.116-38.799 77.319-38.902Q77.522-39.006 77.647-39.185Q77.772-39.365 77.772-39.592Q77.772-39.822 77.671-40.031Q77.569-40.240 77.387-40.373Q77.206-40.506 76.979-40.506L75.858-40.506M75.858-42.568L75.858-41.064L76.721-41.064Q77.065-41.064 77.335-41.299Q77.604-41.533 77.604-41.873Q77.604-42.060 77.506-42.220Q77.409-42.381 77.243-42.474Q77.077-42.568 76.889-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M87.098-39.217L81.785-39.217Q81.707-39.224 81.658-39.273Q81.610-39.322 81.610-39.400Q81.610-39.470 81.657-39.521Q81.703-39.572 81.785-39.584L87.098-39.584Q87.172-39.572 87.219-39.521Q87.266-39.470 87.266-39.400Q87.266-39.322 87.217-39.273Q87.168-39.224 87.098-39.217M87.098-40.904L81.785-40.904Q81.707-40.912 81.658-40.961Q81.610-41.010 81.610-41.088Q81.610-41.158 81.657-41.209Q81.703-41.260 81.785-41.271L87.098-41.271Q87.172-41.260 87.219-41.209Q87.266-41.158 87.266-41.088Q87.266-41.010 87.217-40.961Q87.168-40.912 87.098-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M92.735-38.240L90.598-38.240Q90.563-38.240 90.532-38.281Q90.501-38.322 90.501-38.369L90.524-38.470Q90.536-38.521 90.622-38.537Q91.063-38.537 91.221-38.576Q91.380-38.615 91.422-38.842L92.501-43.162Q92.524-43.232 92.524-43.295Q92.524-43.357 92.462-43.377Q92.317-43.408 91.895-43.408Q91.790-43.435 91.790-43.537L91.821-43.638Q91.829-43.685 91.911-43.705L94.422-43.705Q94.829-43.705 95.272-43.582Q95.715-43.459 96.020-43.183Q96.325-42.908 96.325-42.486Q96.325-42.099 96.055-41.783Q95.786-41.467 95.387-41.258Q94.989-41.049 94.614-40.959Q94.922-40.834 95.120-40.595Q95.317-40.357 95.317-40.041Q95.317-39.998 95.315-39.970Q95.313-39.943 95.309-39.912L95.231-39.217Q95.200-38.928 95.200-38.806Q95.200-38.592 95.268-38.461Q95.337-38.330 95.544-38.330Q95.797-38.330 95.993-38.554Q96.188-38.779 96.255-39.056Q96.262-39.103 96.348-39.119L96.430-39.119Q96.524-39.092 96.524-39.010Q96.524-39.002 96.516-38.967Q96.465-38.752 96.321-38.541Q96.176-38.330 95.969-38.201Q95.762-38.072 95.536-38.072Q95.231-38.072 94.962-38.158Q94.692-38.244 94.520-38.443Q94.348-38.642 94.348-38.951Q94.348-39.060 94.391-39.240L94.567-39.935Q94.590-40.056 94.590-40.150Q94.590-40.486 94.329-40.668Q94.067-40.849 93.704-40.849L92.653-40.849L92.133-38.783Q92.118-38.689 92.118-38.646Q92.118-38.607 92.131-38.594Q92.145-38.580 92.180-38.568Q92.325-38.537 92.751-38.537Q92.844-38.510 92.844-38.416L92.821-38.310Q92.813-38.260 92.735-38.240M93.215-43.103L92.719-41.103L93.661-41.103Q94.005-41.103 94.321-41.172Q94.637-41.240 94.911-41.408Q95.098-41.533 95.235-41.734Q95.372-41.935 95.440-42.168Q95.508-42.400 95.508-42.623Q95.508-43.080 95.141-43.244Q94.774-43.408 94.239-43.408L93.622-43.408Q93.450-43.408 93.387-43.394Q93.325-43.381 93.292-43.322Q93.258-43.263 93.215-43.103\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M98.729-36.240L97.553-36.240L97.553-44.240L98.729-44.240L98.729-43.873L97.920-43.873L97.920-36.607L98.729-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M99.145-38.478L99.145-38.568Q99.203-38.775 99.395-38.799L100.106-38.799L100.106-41.127L99.395-41.127Q99.199-41.150 99.145-41.369L99.145-41.455Q99.203-41.666 99.395-41.689L100.496-41.689Q100.695-41.670 100.746-41.455L100.746-41.127Q101.008-41.412 101.363-41.570Q101.719-41.728 102.106-41.728Q102.399-41.728 102.633-41.594Q102.867-41.459 102.867-41.193Q102.867-41.025 102.758-40.908Q102.649-40.791 102.481-40.791Q102.328-40.791 102.213-40.902Q102.098-41.013 102.098-41.170Q101.723-41.170 101.408-40.969Q101.094-40.767 100.920-40.433Q100.746-40.099 100.746-39.720L100.746-38.799L101.692-38.799Q101.899-38.775 101.938-38.568L101.938-38.478Q101.899-38.263 101.692-38.240L99.395-38.240Q99.203-38.263 99.145-38.478M103.336-38.478L103.336-38.568Q103.375-38.775 103.582-38.799L103.871-38.799L103.871-42.568L103.582-42.568Q103.375-42.592 103.336-42.806L103.336-42.896Q103.375-43.103 103.582-43.127L105.543-43.127Q105.813-43.127 106.053-43.031Q106.293-42.935 106.484-42.765Q106.676-42.595 106.785-42.367Q106.895-42.138 106.895-41.873Q106.895-41.506 106.654-41.217Q106.414-40.928 106.047-40.799Q106.328-40.736 106.561-40.562Q106.793-40.388 106.928-40.133Q107.063-39.877 107.063-39.592Q107.063-39.232 106.881-38.922Q106.699-38.611 106.385-38.426Q106.070-38.240 105.711-38.240L103.582-38.240Q103.375-38.263 103.336-38.478M104.512-40.506L104.512-38.799L105.543-38.799Q105.770-38.799 105.973-38.902Q106.176-39.006 106.301-39.185Q106.426-39.365 106.426-39.592Q106.426-39.822 106.324-40.031Q106.223-40.240 106.041-40.373Q105.859-40.506 105.633-40.506L104.512-40.506M104.512-42.568L104.512-41.064L105.375-41.064Q105.719-41.064 105.988-41.299Q106.258-41.533 106.258-41.873Q106.258-42.060 106.160-42.220Q106.063-42.381 105.897-42.474Q105.731-42.568 105.543-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.185)\">\u003Cpath d=\"M108.782-36.240L107.607-36.240L107.607-36.607L108.415-36.607L108.415-43.873L107.607-43.873L107.607-44.240L108.782-44.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-2.105h224.777\"\u002F>\u003Cg transform=\"translate(-34.163 50.761)\">\u003Cpath d=\"M13.356-38.240L8.953-38.240L8.953-38.520Q9.675-38.520 9.675-38.729L9.675-42.530Q9.675-42.741 8.953-42.741L8.953-43.022L13.243-43.022L13.451-41.385L13.188-41.385Q13.130-41.856 13.028-42.121Q12.925-42.386 12.741-42.519Q12.556-42.653 12.284-42.697Q12.012-42.741 11.513-42.741L10.731-42.741Q10.543-42.741 10.454-42.707Q10.365-42.673 10.365-42.530L10.365-40.865L10.939-40.865Q11.329-40.865 11.512-40.916Q11.695-40.968 11.777-41.140Q11.859-41.313 11.859-41.685L12.122-41.685L12.122-39.764L11.859-39.764Q11.859-40.137 11.777-40.310Q11.695-40.482 11.512-40.533Q11.329-40.585 10.939-40.585L10.365-40.585L10.365-38.729Q10.365-38.589 10.454-38.554Q10.543-38.520 10.731-38.520L11.578-38.520Q12.108-38.520 12.418-38.589Q12.727-38.657 12.915-38.824Q13.103-38.992 13.210-39.294Q13.318-39.597 13.404-40.110L13.670-40.110L13.356-38.240M15.441-38.240L14.118-38.240L14.118-38.520Q14.678-38.520 15.058-38.920L15.772-39.717L14.860-40.766Q14.723-40.913 14.574-40.945Q14.426-40.978 14.159-40.978L14.159-41.258L15.659-41.258L15.659-40.978Q15.468-40.978 15.468-40.844Q15.468-40.814 15.499-40.766L16.094-40.082L16.534-40.578Q16.647-40.708 16.647-40.824Q16.647-40.886 16.610-40.932Q16.572-40.978 16.514-40.978L16.514-41.258L17.830-41.258L17.830-40.978Q17.269-40.978 16.890-40.578L16.268-39.877L17.262-38.729Q17.362-38.630 17.462-38.585Q17.563-38.541 17.674-38.531Q17.785-38.520 17.963-38.520L17.963-38.240L16.470-38.240L16.470-38.520Q16.534-38.520 16.594-38.554Q16.654-38.589 16.654-38.654Q16.654-38.701 16.623-38.729L15.947-39.515L15.413-38.920Q15.301-38.790 15.301-38.674Q15.301-38.609 15.342-38.565Q15.383-38.520 15.441-38.520L15.441-38.240M18.418-39.775Q18.418-40.096 18.543-40.385Q18.667-40.674 18.893-40.897Q19.118-41.121 19.414-41.241Q19.710-41.361 20.028-41.361Q20.356-41.361 20.617-41.261Q20.879-41.162 21.055-40.980Q21.231-40.797 21.325-40.539Q21.419-40.281 21.419-39.949Q21.419-39.857 21.337-39.836L19.081-39.836L19.081-39.775Q19.081-39.187 19.365-38.804Q19.648-38.421 20.216-38.421Q20.537-38.421 20.805-38.614Q21.074-38.807 21.162-39.122Q21.169-39.163 21.244-39.177L21.337-39.177Q21.419-39.153 21.419-39.081Q21.419-39.074 21.412-39.047Q21.299-38.650 20.928-38.411Q20.557-38.172 20.134-38.172Q19.696-38.172 19.296-38.380Q18.896-38.589 18.657-38.956Q18.418-39.323 18.418-39.775M19.088-40.045L20.903-40.045Q20.903-40.322 20.805-40.574Q20.708-40.827 20.510-40.983Q20.311-41.138 20.028-41.138Q19.751-41.138 19.537-40.980Q19.324-40.821 19.206-40.566Q19.088-40.311 19.088-40.045M22.007-39.751Q22.007-40.079 22.142-40.380Q22.277-40.680 22.512-40.901Q22.748-41.121 23.053-41.241Q23.357-41.361 23.681-41.361Q24.187-41.361 24.536-41.258Q24.885-41.156 24.885-40.780Q24.885-40.633 24.787-40.532Q24.690-40.431 24.543-40.431Q24.389-40.431 24.290-40.530Q24.191-40.629 24.191-40.780Q24.191-40.968 24.331-41.060Q24.129-41.111 23.688-41.111Q23.333-41.111 23.104-40.915Q22.875-40.718 22.774-40.409Q22.673-40.099 22.673-39.751Q22.673-39.402 22.800-39.096Q22.926-38.790 23.181-38.606Q23.435-38.421 23.791-38.421Q24.013-38.421 24.198-38.505Q24.382-38.589 24.517-38.744Q24.652-38.900 24.710-39.108Q24.724-39.163 24.779-39.163L24.891-39.163Q24.922-39.163 24.944-39.139Q24.967-39.115 24.967-39.081L24.967-39.060Q24.881-38.773 24.693-38.575Q24.505-38.377 24.240-38.274Q23.975-38.172 23.681-38.172Q23.251-38.172 22.863-38.378Q22.475-38.585 22.241-38.948Q22.007-39.310 22.007-39.751M26.129-39.074L26.129-40.578Q26.129-40.848 26.021-40.909Q25.913-40.971 25.602-40.971L25.602-41.251L26.710-41.326L26.710-39.094L26.710-39.074Q26.710-38.794 26.761-38.650Q26.812-38.507 26.954-38.450Q27.096-38.394 27.383-38.394Q27.636-38.394 27.841-38.534Q28.046-38.674 28.162-38.900Q28.279-39.125 28.279-39.375L28.279-40.578Q28.279-40.848 28.171-40.909Q28.063-40.971 27.752-40.971L27.752-41.251L28.860-41.326L28.860-38.913Q28.860-38.722 28.913-38.640Q28.966-38.558 29.066-38.539Q29.167-38.520 29.383-38.520L29.383-38.240L28.306-38.172L28.306-38.736Q28.197-38.554 28.051-38.431Q27.906-38.308 27.720-38.240Q27.533-38.172 27.332-38.172Q26.129-38.172 26.129-39.074M30.497-39.081L30.497-40.978L29.858-40.978L29.858-41.200Q30.176-41.200 30.393-41.410Q30.610-41.620 30.710-41.930Q30.811-42.239 30.811-42.547L31.078-42.547L31.078-41.258L32.155-41.258L32.155-40.978L31.078-40.978L31.078-39.094Q31.078-38.818 31.182-38.619Q31.286-38.421 31.546-38.421Q31.703-38.421 31.809-38.525Q31.915-38.630 31.965-38.783Q32.014-38.937 32.014-39.094L32.014-39.508L32.281-39.508L32.281-39.081Q32.281-38.855 32.182-38.645Q32.083-38.435 31.898-38.303Q31.714-38.172 31.485-38.172Q31.047-38.172 30.772-38.409Q30.497-38.647 30.497-39.081M33.050-39.775Q33.050-40.096 33.175-40.385Q33.300-40.674 33.525-40.897Q33.751-41.121 34.046-41.241Q34.342-41.361 34.660-41.361Q34.988-41.361 35.250-41.261Q35.511-41.162 35.687-40.980Q35.863-40.797 35.957-40.539Q36.051-40.281 36.051-39.949Q36.051-39.857 35.969-39.836L33.713-39.836L33.713-39.775Q33.713-39.187 33.997-38.804Q34.281-38.421 34.848-38.421Q35.169-38.421 35.438-38.614Q35.706-38.807 35.795-39.122Q35.802-39.163 35.877-39.177L35.969-39.177Q36.051-39.153 36.051-39.081Q36.051-39.074 36.044-39.047Q35.931-38.650 35.561-38.411Q35.190-38.172 34.766-38.172Q34.328-38.172 33.928-38.380Q33.529-38.589 33.289-38.956Q33.050-39.323 33.050-39.775M33.720-40.045L35.535-40.045Q35.535-40.322 35.438-40.574Q35.340-40.827 35.142-40.983Q34.944-41.138 34.660-41.138Q34.383-41.138 34.169-40.980Q33.956-40.821 33.838-40.566Q33.720-40.311 33.720-40.045\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 50.397)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M21.496-38.478L21.496-38.568Q21.535-38.775 21.746-38.799L22.054-38.799L22.054-42.568L21.746-42.568Q21.535-42.592 21.496-42.806L21.496-42.896Q21.535-43.103 21.746-43.127L24.953-43.127Q25.148-43.103 25.199-42.896L25.199-42.056Q25.148-41.842 24.953-41.814L24.808-41.814Q24.613-41.842 24.558-42.056L24.558-42.568L22.695-42.568L22.695-41.049L23.672-41.049L23.672-41.263Q23.722-41.470 23.922-41.498L24.066-41.498Q24.261-41.470 24.312-41.263L24.312-40.279Q24.261-40.064 24.066-40.041L23.922-40.041Q23.722-40.064 23.672-40.279L23.672-40.486L22.695-40.486L22.695-38.799L24.738-38.799L24.738-39.439Q24.789-39.646 24.984-39.674L25.129-39.674Q25.324-39.646 25.375-39.439L25.375-38.478Q25.324-38.260 25.129-38.240L21.746-38.240Q21.535-38.263 21.496-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.397)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.397)\">\u003Cpath d=\"M38.564-38.463L37.678-41.127L37.357-41.127Q37.158-41.150 37.107-41.369L37.107-41.455Q37.158-41.666 37.357-41.689L38.517-41.689Q38.713-41.670 38.763-41.455L38.763-41.369Q38.713-41.150 38.517-41.127L38.236-41.127L39.029-38.752L39.818-41.127L39.541-41.127Q39.342-41.150 39.291-41.369L39.291-41.455Q39.342-41.666 39.541-41.689L40.701-41.689Q40.896-41.666 40.947-41.455L40.947-41.369Q40.896-41.150 40.701-41.127L40.381-41.127L39.494-38.463Q39.451-38.349 39.349-38.275Q39.248-38.201 39.123-38.201L38.931-38.201Q38.814-38.201 38.711-38.273Q38.607-38.345 38.564-38.463M41.560-39.353Q41.560-39.799 41.974-40.056Q42.388-40.314 42.929-40.414Q43.471-40.513 43.978-40.521Q43.978-40.736 43.844-40.888Q43.709-41.041 43.502-41.117Q43.295-41.193 43.084-41.193Q42.740-41.193 42.580-41.170L42.580-41.111Q42.580-40.943 42.461-40.828Q42.342-40.713 42.178-40.713Q42.002-40.713 41.887-40.836Q41.771-40.959 41.771-41.127Q41.771-41.533 42.152-41.642Q42.533-41.752 43.092-41.752Q43.361-41.752 43.629-41.674Q43.896-41.595 44.121-41.445Q44.346-41.295 44.482-41.074Q44.619-40.853 44.619-40.576L44.619-38.857Q44.619-38.799 45.146-38.799Q45.342-38.779 45.392-38.568L45.392-38.478Q45.342-38.263 45.146-38.240L45.002-38.240Q44.658-38.240 44.429-38.287Q44.201-38.334 44.056-38.521Q43.596-38.201 42.888-38.201Q42.553-38.201 42.248-38.342Q41.943-38.482 41.752-38.744Q41.560-39.006 41.560-39.353M42.201-39.345Q42.201-39.072 42.443-38.916Q42.685-38.760 42.971-38.760Q43.189-38.760 43.422-38.818Q43.654-38.877 43.816-39.015Q43.978-39.154 43.978-39.377L43.978-39.967Q43.697-39.967 43.281-39.910Q42.865-39.853 42.533-39.715Q42.201-39.576 42.201-39.345M45.849-38.478L45.849-38.568Q45.900-38.775 46.096-38.799L47.201-38.799L47.201-42.568L46.096-42.568Q45.900-42.592 45.849-42.806L45.849-42.896Q45.900-43.103 46.096-43.127L47.592-43.127Q47.783-43.103 47.842-42.896L47.842-38.799L48.943-38.799Q49.142-38.775 49.193-38.568L49.193-38.478Q49.142-38.263 48.943-38.240L46.096-38.240Q45.900-38.263 45.849-38.478M49.814-38.478L49.814-38.568Q49.853-38.775 50.060-38.799L50.349-38.799L50.349-42.568L50.060-42.568Q49.853-42.592 49.814-42.806L49.814-42.896Q49.853-43.103 50.060-43.127L52.021-43.127Q52.291-43.127 52.531-43.031Q52.771-42.935 52.963-42.765Q53.154-42.595 53.263-42.367Q53.373-42.138 53.373-41.873Q53.373-41.506 53.133-41.217Q52.892-40.928 52.525-40.799Q52.806-40.736 53.039-40.562Q53.271-40.388 53.406-40.133Q53.541-39.877 53.541-39.592Q53.541-39.232 53.359-38.922Q53.178-38.611 52.863-38.426Q52.549-38.240 52.189-38.240L50.060-38.240Q49.853-38.263 49.814-38.478M50.990-40.506L50.990-38.799L52.021-38.799Q52.248-38.799 52.451-38.902Q52.654-39.006 52.779-39.185Q52.904-39.365 52.904-39.592Q52.904-39.822 52.803-40.031Q52.701-40.240 52.519-40.373Q52.338-40.506 52.111-40.506L50.990-40.506M50.990-42.568L50.990-41.064L51.853-41.064Q52.197-41.064 52.467-41.299Q52.736-41.533 52.736-41.873Q52.736-42.060 52.638-42.220Q52.541-42.381 52.375-42.474Q52.209-42.568 52.021-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.397)\">\u003Cpath d=\"M58.918-40.056L56.445-40.056Q56.367-40.068 56.318-40.117Q56.270-40.166 56.270-40.240Q56.270-40.314 56.318-40.363Q56.367-40.412 56.445-40.424L58.918-40.424L58.918-42.904Q58.945-43.072 59.102-43.072Q59.176-43.072 59.225-43.023Q59.274-42.974 59.285-42.904L59.285-40.424L61.758-40.424Q61.926-40.392 61.926-40.240Q61.926-40.088 61.758-40.056L59.285-40.056L59.285-37.576Q59.274-37.506 59.225-37.457Q59.176-37.408 59.102-37.408Q58.945-37.408 58.918-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.397)\">\u003Cpath d=\"M65.953-38.463L65.067-41.127L64.746-41.127Q64.547-41.150 64.496-41.369L64.496-41.455Q64.547-41.666 64.746-41.689L65.906-41.689Q66.102-41.670 66.152-41.455L66.152-41.369Q66.102-41.150 65.906-41.127L65.625-41.127L66.418-38.752L67.207-41.127L66.930-41.127Q66.731-41.150 66.680-41.369L66.680-41.455Q66.731-41.666 66.930-41.689L68.090-41.689Q68.285-41.666 68.336-41.455L68.336-41.369Q68.285-41.150 68.090-41.127L67.770-41.127L66.883-38.463Q66.840-38.349 66.738-38.275Q66.637-38.201 66.512-38.201L66.320-38.201Q66.203-38.201 66.100-38.273Q65.996-38.345 65.953-38.463M68.949-39.353Q68.949-39.799 69.363-40.056Q69.777-40.314 70.318-40.414Q70.859-40.513 71.367-40.521Q71.367-40.736 71.233-40.888Q71.098-41.041 70.891-41.117Q70.684-41.193 70.473-41.193Q70.129-41.193 69.969-41.170L69.969-41.111Q69.969-40.943 69.850-40.828Q69.731-40.713 69.567-40.713Q69.391-40.713 69.276-40.836Q69.160-40.959 69.160-41.127Q69.160-41.533 69.541-41.642Q69.922-41.752 70.481-41.752Q70.750-41.752 71.018-41.674Q71.285-41.595 71.510-41.445Q71.734-41.295 71.871-41.074Q72.008-40.853 72.008-40.576L72.008-38.857Q72.008-38.799 72.535-38.799Q72.731-38.779 72.781-38.568L72.781-38.478Q72.731-38.263 72.535-38.240L72.391-38.240Q72.047-38.240 71.818-38.287Q71.590-38.334 71.445-38.521Q70.984-38.201 70.277-38.201Q69.942-38.201 69.637-38.342Q69.332-38.482 69.141-38.744Q68.949-39.006 68.949-39.353M69.590-39.345Q69.590-39.072 69.832-38.916Q70.074-38.760 70.359-38.760Q70.578-38.760 70.811-38.818Q71.043-38.877 71.205-39.015Q71.367-39.154 71.367-39.377L71.367-39.967Q71.086-39.967 70.670-39.910Q70.254-39.853 69.922-39.715Q69.590-39.576 69.590-39.345M73.238-38.478L73.238-38.568Q73.289-38.775 73.484-38.799L74.590-38.799L74.590-42.568L73.484-42.568Q73.289-42.592 73.238-42.806L73.238-42.896Q73.289-43.103 73.484-43.127L74.981-43.127Q75.172-43.103 75.231-42.896L75.231-38.799L76.332-38.799Q76.531-38.775 76.582-38.568L76.582-38.478Q76.531-38.263 76.332-38.240L73.484-38.240Q73.289-38.263 73.238-38.478M79.301-38.162Q78.852-38.162 78.486-38.386Q78.121-38.611 77.867-38.994Q77.613-39.377 77.488-39.820Q77.363-40.263 77.363-40.689Q77.363-41.115 77.488-41.554Q77.613-41.994 77.867-42.377Q78.121-42.760 78.481-42.984Q78.840-43.209 79.301-43.209Q79.578-43.209 79.836-43.117Q80.094-43.025 80.309-42.857L80.442-43.095Q80.469-43.146 80.524-43.178Q80.578-43.209 80.637-43.209L80.715-43.209Q80.809-43.197 80.871-43.138Q80.934-43.080 80.945-42.974L80.945-41.646Q80.934-41.545 80.871-41.482Q80.809-41.420 80.715-41.408L80.547-41.408Q80.445-41.420 80.383-41.486Q80.320-41.553 80.309-41.646Q80.270-41.912 80.147-42.136Q80.024-42.361 79.820-42.504Q79.617-42.646 79.356-42.646Q79.024-42.646 78.772-42.463Q78.520-42.279 78.348-41.978Q78.176-41.678 78.090-41.336Q78.004-40.994 78.004-40.689Q78.004-40.385 78.088-40.043Q78.172-39.701 78.344-39.398Q78.516-39.095 78.774-38.908Q79.031-38.720 79.363-38.720Q79.746-38.720 80.027-38.994Q80.309-39.267 80.309-39.654Q80.336-39.865 80.547-39.888L80.715-39.888Q80.945-39.849 80.945-39.623Q80.945-39.306 80.809-39.035Q80.672-38.763 80.438-38.566Q80.203-38.369 79.912-38.265Q79.621-38.162 79.301-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 22.08h224.777\"\u002F>\u003Cg transform=\"translate(-35.01 74.266)\">\u003Cpath d=\"M10.731-38.240L8.994-38.240L8.994-38.520Q9.716-38.520 9.716-38.920L9.716-42.530Q9.716-42.741 8.994-42.741L8.994-43.022L10.351-43.022Q10.447-43.022 10.498-42.923L12.173-38.948L13.845-42.923Q13.892-43.022 13.991-43.022L15.342-43.022L15.342-42.741Q14.620-42.741 14.620-42.530L14.620-38.729Q14.620-38.520 15.342-38.520L15.342-38.240L13.284-38.240L13.284-38.520Q14.005-38.520 14.005-38.729L14.005-42.741L12.153-38.339Q12.105-38.240 11.995-38.240Q11.883-38.240 11.835-38.339L10.010-42.670L10.010-38.920Q10.010-38.520 10.731-38.520L10.731-38.240M16.035-39.775Q16.035-40.096 16.160-40.385Q16.285-40.674 16.511-40.897Q16.736-41.121 17.032-41.241Q17.327-41.361 17.645-41.361Q17.973-41.361 18.235-41.261Q18.496-41.162 18.672-40.980Q18.848-40.797 18.942-40.539Q19.036-40.281 19.036-39.949Q19.036-39.857 18.954-39.836L16.699-39.836L16.699-39.775Q16.699-39.187 16.982-38.804Q17.266-38.421 17.833-38.421Q18.155-38.421 18.423-38.614Q18.691-38.807 18.780-39.122Q18.787-39.163 18.862-39.177L18.954-39.177Q19.036-39.153 19.036-39.081Q19.036-39.074 19.030-39.047Q18.917-38.650 18.546-38.411Q18.175-38.172 17.751-38.172Q17.314-38.172 16.914-38.380Q16.514-38.589 16.275-38.956Q16.035-39.323 16.035-39.775M16.705-40.045L18.520-40.045Q18.520-40.322 18.423-40.574Q18.325-40.827 18.127-40.983Q17.929-41.138 17.645-41.138Q17.368-41.138 17.155-40.980Q16.941-40.821 16.823-40.566Q16.705-40.311 16.705-40.045M21.306-38.240L19.672-38.240L19.672-38.520Q19.901-38.520 20.050-38.554Q20.199-38.589 20.199-38.729L20.199-40.578Q20.199-40.848 20.091-40.909Q19.983-40.971 19.672-40.971L19.672-41.251L20.732-41.326L20.732-40.677Q20.903-40.985 21.207-41.156Q21.511-41.326 21.856-41.326Q22.256-41.326 22.533-41.186Q22.810-41.046 22.895-40.698Q23.063-40.991 23.362-41.159Q23.661-41.326 24.006-41.326Q24.512-41.326 24.796-41.103Q25.079-40.879 25.079-40.383L25.079-38.729Q25.079-38.592 25.228-38.556Q25.377-38.520 25.602-38.520L25.602-38.240L23.972-38.240L23.972-38.520Q24.198-38.520 24.348-38.556Q24.498-38.592 24.498-38.729L24.498-40.369Q24.498-40.704 24.379-40.904Q24.259-41.104 23.945-41.104Q23.675-41.104 23.440-40.968Q23.206-40.831 23.068-40.597Q22.929-40.363 22.929-40.089L22.929-38.729Q22.929-38.592 23.078-38.556Q23.227-38.520 23.452-38.520L23.452-38.240L21.822-38.240L21.822-38.520Q22.051-38.520 22.200-38.554Q22.348-38.589 22.348-38.729L22.348-40.369Q22.348-40.704 22.229-40.904Q22.109-41.104 21.795-41.104Q21.525-41.104 21.291-40.968Q21.056-40.831 20.918-40.597Q20.780-40.363 20.780-40.089L20.780-38.729Q20.780-38.592 20.930-38.556Q21.080-38.520 21.306-38.520L21.306-38.240M26.149-39.723Q26.149-40.065 26.284-40.364Q26.419-40.663 26.658-40.887Q26.898-41.111 27.216-41.236Q27.533-41.361 27.865-41.361Q28.309-41.361 28.709-41.145Q29.109-40.930 29.343-40.552Q29.577-40.175 29.577-39.723Q29.577-39.382 29.436-39.098Q29.294-38.814 29.049-38.607Q28.805-38.401 28.496-38.286Q28.186-38.172 27.865-38.172Q27.434-38.172 27.033-38.373Q26.631-38.575 26.390-38.927Q26.149-39.279 26.149-39.723M27.865-38.421Q28.467-38.421 28.690-38.799Q28.914-39.177 28.914-39.809Q28.914-40.421 28.680-40.780Q28.446-41.138 27.865-41.138Q26.812-41.138 26.812-39.809Q26.812-39.177 27.038-38.799Q27.263-38.421 27.865-38.421M31.922-38.240L30.186-38.240L30.186-38.520Q30.415-38.520 30.564-38.554Q30.712-38.589 30.712-38.729L30.712-40.578Q30.712-40.848 30.605-40.909Q30.497-40.971 30.186-40.971L30.186-41.251L31.215-41.326L31.215-40.619Q31.345-40.927 31.587-41.126Q31.830-41.326 32.148-41.326Q32.366-41.326 32.537-41.202Q32.708-41.077 32.708-40.865Q32.708-40.728 32.609-40.629Q32.510-40.530 32.377-40.530Q32.240-40.530 32.141-40.629Q32.042-40.728 32.042-40.865Q32.042-41.005 32.141-41.104Q31.850-41.104 31.650-40.908Q31.450-40.711 31.358-40.417Q31.266-40.123 31.266-39.843L31.266-38.729Q31.266-38.520 31.922-38.520L31.922-38.240M33.628-37.105Q33.758-37.037 33.894-37.037Q34.065-37.037 34.216-37.126Q34.366-37.215 34.477-37.360Q34.588-37.505 34.667-37.673L34.930-38.240L33.761-40.766Q33.686-40.913 33.556-40.945Q33.426-40.978 33.194-40.978L33.194-41.258L34.715-41.258L34.715-40.978Q34.366-40.978 34.366-40.831Q34.369-40.810 34.371-40.793Q34.373-40.776 34.373-40.766L35.231-38.907L36.003-40.578Q36.037-40.646 36.037-40.725Q36.037-40.838 35.954-40.908Q35.870-40.978 35.757-40.978L35.757-41.258L36.953-41.258L36.953-40.978Q36.735-40.978 36.562-40.874Q36.389-40.769 36.297-40.578L34.961-37.673Q34.790-37.303 34.520-37.057Q34.250-36.811 33.894-36.811Q33.624-36.811 33.406-36.977Q33.187-37.143 33.187-37.406Q33.187-37.543 33.279-37.632Q33.371-37.720 33.511-37.720Q33.648-37.720 33.737-37.632Q33.826-37.543 33.826-37.406Q33.826-37.303 33.773-37.225Q33.720-37.146 33.628-37.105\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M10.812-38.240L9.094-38.240Q9.054-38.240 9.027-38.281Q9-38.322 9-38.369L9.023-38.470Q9.031-38.521 9.117-38.537Q9.847-38.537 9.972-39.064L11-43.162Q11.023-43.232 11.023-43.295Q11.023-43.357 10.957-43.377Q10.812-43.408 10.390-43.408Q10.285-43.439 10.285-43.537L10.316-43.638Q10.328-43.685 10.406-43.705L11.804-43.705Q11.863-43.705 11.900-43.676Q11.937-43.646 11.941-43.592L12.652-39.017L15.652-43.592Q15.730-43.705 15.847-43.705L17.191-43.705Q17.238-43.693 17.265-43.662Q17.293-43.631 17.293-43.584L17.269-43.478Q17.250-43.424 17.176-43.408Q16.734-43.408 16.574-43.369Q16.426-43.334 16.367-43.103L15.285-38.783Q15.269-38.689 15.269-38.646Q15.269-38.588 15.336-38.568Q15.476-38.537 15.902-38.537Q16-38.510 16-38.416L15.972-38.310Q15.965-38.260 15.886-38.240L13.804-38.240Q13.765-38.240 13.738-38.281Q13.711-38.322 13.711-38.369L13.734-38.470Q13.742-38.521 13.832-38.537Q14.269-38.537 14.428-38.576Q14.586-38.615 14.629-38.842L15.765-43.385L12.469-38.353Q12.402-38.240 12.269-38.240Q12.136-38.240 12.125-38.353L11.351-43.318L10.269-39.010Q10.254-38.908 10.254-38.857Q10.254-38.658 10.418-38.597Q10.582-38.537 10.832-38.537Q10.926-38.510 10.926-38.416L10.902-38.310Q10.894-38.260 10.812-38.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M17.115-38.052Q17.115-38.439 17.376-38.710Q17.636-38.981 18.038-39.150L17.865-39.247Q17.616-39.394 17.462-39.612Q17.308-39.830 17.308-40.100Q17.308-40.410 17.494-40.643Q17.680-40.876 17.973-40.998Q18.266-41.119 18.568-41.119Q18.858-41.119 19.150-41.021Q19.441-40.923 19.634-40.718Q19.828-40.513 19.828-40.214Q19.828-39.895 19.618-39.675Q19.409-39.455 19.066-39.294L19.388-39.121Q19.670-38.957 19.844-38.711Q20.018-38.465 20.018-38.160Q20.018-37.797 19.803-37.535Q19.588-37.273 19.251-37.138Q18.914-37.003 18.568-37.003Q18.225-37.003 17.891-37.117Q17.557-37.232 17.336-37.467Q17.115-37.703 17.115-38.052M17.522-38.058Q17.522-37.683 17.852-37.463Q18.181-37.243 18.568-37.243Q18.802-37.243 19.043-37.318Q19.283-37.393 19.447-37.551Q19.611-37.709 19.611-37.952Q19.611-38.122 19.503-38.261Q19.394-38.400 19.233-38.491L18.296-39.007Q17.970-38.869 17.746-38.623Q17.522-38.377 17.522-38.058M17.944-39.912L18.820-39.432Q19.467-39.748 19.467-40.214Q19.467-40.428 19.331-40.585Q19.195-40.741 18.988-40.819Q18.782-40.897 18.568-40.897Q18.246-40.897 17.956-40.757Q17.666-40.618 17.666-40.328Q17.666-40.097 17.944-39.912\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M23.072-36.240L21.896-36.240L21.896-44.240L23.072-44.240L23.072-43.873L22.263-43.873L22.263-36.607L23.072-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M24.921-38.463L24.035-41.127L23.714-41.127Q23.515-41.150 23.464-41.369L23.464-41.455Q23.515-41.666 23.714-41.689L24.874-41.689Q25.070-41.670 25.120-41.455L25.120-41.369Q25.070-41.150 24.874-41.127L24.593-41.127L25.386-38.752L26.175-41.127L25.898-41.127Q25.699-41.150 25.648-41.369L25.648-41.455Q25.699-41.666 25.898-41.689L27.058-41.689Q27.253-41.666 27.304-41.455L27.304-41.369Q27.253-41.150 27.058-41.127L26.738-41.127L25.851-38.463Q25.808-38.349 25.706-38.275Q25.605-38.201 25.480-38.201L25.288-38.201Q25.171-38.201 25.068-38.273Q24.964-38.345 24.921-38.463M27.917-39.353Q27.917-39.799 28.331-40.056Q28.745-40.314 29.286-40.414Q29.828-40.513 30.335-40.521Q30.335-40.736 30.201-40.888Q30.066-41.041 29.859-41.117Q29.652-41.193 29.441-41.193Q29.097-41.193 28.937-41.170L28.937-41.111Q28.937-40.943 28.818-40.828Q28.699-40.713 28.535-40.713Q28.359-40.713 28.244-40.836Q28.128-40.959 28.128-41.127Q28.128-41.533 28.509-41.642Q28.890-41.752 29.449-41.752Q29.718-41.752 29.986-41.674Q30.253-41.595 30.478-41.445Q30.703-41.295 30.839-41.074Q30.976-40.853 30.976-40.576L30.976-38.857Q30.976-38.799 31.503-38.799Q31.699-38.779 31.749-38.568L31.749-38.478Q31.699-38.263 31.503-38.240L31.359-38.240Q31.015-38.240 30.786-38.287Q30.558-38.334 30.413-38.521Q29.953-38.201 29.245-38.201Q28.910-38.201 28.605-38.342Q28.300-38.482 28.109-38.744Q27.917-39.006 27.917-39.353M28.558-39.345Q28.558-39.072 28.800-38.916Q29.042-38.760 29.328-38.760Q29.546-38.760 29.779-38.818Q30.011-38.877 30.173-39.015Q30.335-39.154 30.335-39.377L30.335-39.967Q30.054-39.967 29.638-39.910Q29.222-39.853 28.890-39.715Q28.558-39.576 28.558-39.345M32.206-38.478L32.206-38.568Q32.257-38.775 32.453-38.799L33.558-38.799L33.558-42.568L32.453-42.568Q32.257-42.592 32.206-42.806L32.206-42.896Q32.257-43.103 32.453-43.127L33.949-43.127Q34.140-43.103 34.199-42.896L34.199-38.799L35.300-38.799Q35.499-38.775 35.550-38.568L35.550-38.478Q35.499-38.263 35.300-38.240L32.453-38.240Q32.257-38.263 32.206-38.478M36.187-38.478L36.187-38.568Q36.226-38.775 36.437-38.799L36.745-38.799L36.745-42.568L36.437-42.568Q36.226-42.592 36.187-42.806L36.187-42.896Q36.226-43.103 36.437-43.127L39.644-43.127Q39.839-43.103 39.890-42.896L39.890-42.056Q39.839-41.842 39.644-41.814L39.499-41.814Q39.304-41.842 39.249-42.056L39.249-42.568L37.386-42.568L37.386-41.049L38.363-41.049L38.363-41.263Q38.413-41.470 38.613-41.498L38.757-41.498Q38.953-41.470 39.003-41.263L39.003-40.279Q38.953-40.064 38.757-40.041L38.613-40.041Q38.413-40.064 38.363-40.279L38.363-40.486L37.386-40.486L37.386-38.799L39.429-38.799L39.429-39.439Q39.480-39.646 39.675-39.674L39.820-39.674Q40.015-39.646 40.066-39.439L40.066-38.478Q40.015-38.260 39.820-38.240L36.437-38.240Q36.226-38.263 36.187-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M41.624-36.240L40.449-36.240L40.449-36.607L41.257-36.607L41.257-43.873L40.449-43.873L40.449-44.240L41.624-44.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M50.949-39.217L45.636-39.217Q45.558-39.224 45.509-39.273Q45.461-39.322 45.461-39.400Q45.461-39.470 45.508-39.521Q45.554-39.572 45.636-39.584L50.949-39.584Q51.023-39.572 51.070-39.521Q51.117-39.470 51.117-39.400Q51.117-39.322 51.068-39.273Q51.019-39.224 50.949-39.217M50.949-40.904L45.636-40.904Q45.558-40.912 45.509-40.961Q45.461-41.010 45.461-41.088Q45.461-41.158 45.508-41.209Q45.554-41.260 45.636-41.271L50.949-41.271Q51.023-41.260 51.070-41.209Q51.117-41.158 51.117-41.088Q51.117-41.010 51.068-40.961Q51.019-40.912 50.949-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M55.616-38.463L54.730-41.127L54.409-41.127Q54.210-41.150 54.159-41.369L54.159-41.455Q54.210-41.666 54.409-41.689L55.569-41.689Q55.765-41.670 55.815-41.455L55.815-41.369Q55.765-41.150 55.569-41.127L55.288-41.127L56.081-38.752L56.870-41.127L56.593-41.127Q56.394-41.150 56.343-41.369L56.343-41.455Q56.394-41.666 56.593-41.689L57.753-41.689Q57.948-41.666 57.999-41.455L57.999-41.369Q57.948-41.150 57.753-41.127L57.433-41.127L56.546-38.463Q56.503-38.349 56.401-38.275Q56.300-38.201 56.175-38.201L55.983-38.201Q55.866-38.201 55.763-38.273Q55.659-38.345 55.616-38.463M58.612-39.353Q58.612-39.799 59.026-40.056Q59.440-40.314 59.981-40.414Q60.523-40.513 61.030-40.521Q61.030-40.736 60.896-40.888Q60.761-41.041 60.554-41.117Q60.347-41.193 60.136-41.193Q59.792-41.193 59.632-41.170L59.632-41.111Q59.632-40.943 59.513-40.828Q59.394-40.713 59.230-40.713Q59.054-40.713 58.939-40.836Q58.823-40.959 58.823-41.127Q58.823-41.533 59.204-41.642Q59.585-41.752 60.144-41.752Q60.413-41.752 60.681-41.674Q60.948-41.595 61.173-41.445Q61.398-41.295 61.534-41.074Q61.671-40.853 61.671-40.576L61.671-38.857Q61.671-38.799 62.198-38.799Q62.394-38.779 62.444-38.568L62.444-38.478Q62.394-38.263 62.198-38.240L62.054-38.240Q61.710-38.240 61.481-38.287Q61.253-38.334 61.108-38.521Q60.648-38.201 59.940-38.201Q59.605-38.201 59.300-38.342Q58.995-38.482 58.804-38.744Q58.612-39.006 58.612-39.353M59.253-39.345Q59.253-39.072 59.495-38.916Q59.737-38.760 60.023-38.760Q60.241-38.760 60.474-38.818Q60.706-38.877 60.868-39.015Q61.030-39.154 61.030-39.377L61.030-39.967Q60.749-39.967 60.333-39.910Q59.917-39.853 59.585-39.715Q59.253-39.576 59.253-39.345M62.901-38.478L62.901-38.568Q62.952-38.775 63.148-38.799L64.253-38.799L64.253-42.568L63.148-42.568Q62.952-42.592 62.901-42.806L62.901-42.896Q62.952-43.103 63.148-43.127L64.644-43.127Q64.835-43.103 64.894-42.896L64.894-38.799L65.995-38.799Q66.194-38.775 66.245-38.568L66.245-38.478Q66.194-38.263 65.995-38.240L63.148-38.240Q62.952-38.263 62.901-38.478M66.929-38.478L66.929-38.568Q66.987-38.779 67.179-38.799L67.401-38.799L68.355-42.982Q68.378-43.099 68.474-43.174Q68.569-43.248 68.683-43.248L68.956-43.248Q69.069-43.248 69.165-43.172Q69.261-43.095 69.284-42.982L70.233-38.799L70.460-38.799Q70.667-38.775 70.706-38.568L70.706-38.478Q70.655-38.263 70.460-38.240L69.378-38.240Q69.183-38.263 69.132-38.478L69.132-38.568Q69.183-38.775 69.378-38.799L69.577-38.799Q69.448-39.365 69.425-39.447L68.210-39.447Q68.167-39.263 68.058-38.799L68.257-38.799Q68.456-38.775 68.507-38.568L68.507-38.478Q68.456-38.263 68.257-38.240L67.179-38.240Q66.972-38.263 66.929-38.478M68.331-40.010L69.308-40.010Q68.827-42.142 68.827-42.486L68.819-42.486Q68.819-42.303 68.679-41.619Q68.538-40.935 68.331-40.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 46.264h224.777\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M10.967-38.199L9.415-42.530Q9.353-42.673 9.191-42.707Q9.029-42.741 8.776-42.741L8.776-43.022L10.703-43.022L10.703-42.741Q10.122-42.741 10.122-42.567Q10.122-42.547 10.129-42.530L11.353-39.094L12.460-42.181L12.334-42.530Q12.276-42.673 12.110-42.707Q11.944-42.741 11.695-42.741L11.695-43.022L13.622-43.022L13.622-42.741Q13.041-42.741 13.041-42.567L13.041-42.530L14.272-39.094L15.427-42.342Q15.441-42.383 15.441-42.407Q15.441-42.581 15.248-42.661Q15.054-42.741 14.846-42.741L14.846-43.022L16.422-43.022L16.422-42.741Q16.172-42.741 15.981-42.647Q15.789-42.553 15.714-42.342L14.231-38.199Q14.197-38.100 14.097-38.100L14.019-38.100Q13.920-38.100 13.879-38.199L12.600-41.788L11.319-38.199Q11.302-38.155 11.264-38.127Q11.226-38.100 11.178-38.100L11.100-38.100Q11.008-38.100 10.967-38.199\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M18.048-38.240L16.312-38.240L16.312-38.520Q16.541-38.520 16.690-38.554Q16.838-38.589 16.838-38.729L16.838-40.578Q16.838-40.848 16.731-40.909Q16.623-40.971 16.312-40.971L16.312-41.251L17.341-41.326L17.341-40.619Q17.471-40.927 17.713-41.126Q17.956-41.326 18.274-41.326Q18.493-41.326 18.664-41.202Q18.835-41.077 18.835-40.865Q18.835-40.728 18.735-40.629Q18.636-40.530 18.503-40.530Q18.366-40.530 18.267-40.629Q18.168-40.728 18.168-40.865Q18.168-41.005 18.267-41.104Q17.977-41.104 17.777-40.908Q17.577-40.711 17.484-40.417Q17.392-40.123 17.392-39.843L17.392-38.729Q17.392-38.520 18.048-38.520L18.048-38.240M21.036-38.240L19.484-38.240L19.484-38.520Q19.710-38.520 19.858-38.554Q20.007-38.589 20.007-38.729L20.007-40.578Q20.007-40.766 19.959-40.850Q19.911-40.933 19.814-40.952Q19.716-40.971 19.505-40.971L19.505-41.251L20.561-41.326L20.561-38.729Q20.561-38.589 20.692-38.554Q20.824-38.520 21.036-38.520L21.036-38.240M19.764-42.547Q19.764-42.718 19.887-42.837Q20.010-42.957 20.181-42.957Q20.349-42.957 20.472-42.837Q20.595-42.718 20.595-42.547Q20.595-42.372 20.472-42.249Q20.349-42.126 20.181-42.126Q20.010-42.126 19.887-42.249Q19.764-42.372 19.764-42.547M22.208-39.081L22.208-40.978L21.569-40.978L21.569-41.200Q21.887-41.200 22.104-41.410Q22.321-41.620 22.422-41.930Q22.523-42.239 22.523-42.547L22.789-42.547L22.789-41.258L23.866-41.258L23.866-40.978L22.789-40.978L22.789-39.094Q22.789-38.818 22.893-38.619Q22.998-38.421 23.257-38.421Q23.415-38.421 23.521-38.525Q23.627-38.630 23.676-38.783Q23.726-38.937 23.726-39.094L23.726-39.508L23.992-39.508L23.992-39.081Q23.992-38.855 23.893-38.645Q23.794-38.435 23.609-38.303Q23.425-38.172 23.196-38.172Q22.758-38.172 22.483-38.409Q22.208-38.647 22.208-39.081M24.761-39.775Q24.761-40.096 24.886-40.385Q25.011-40.674 25.236-40.897Q25.462-41.121 25.758-41.241Q26.053-41.361 26.371-41.361Q26.699-41.361 26.961-41.261Q27.222-41.162 27.398-40.980Q27.574-40.797 27.668-40.539Q27.762-40.281 27.762-39.949Q27.762-39.857 27.680-39.836L25.424-39.836L25.424-39.775Q25.424-39.187 25.708-38.804Q25.992-38.421 26.559-38.421Q26.880-38.421 27.149-38.614Q27.417-38.807 27.506-39.122Q27.513-39.163 27.588-39.177L27.680-39.177Q27.762-39.153 27.762-39.081Q27.762-39.074 27.755-39.047Q27.643-38.650 27.272-38.411Q26.901-38.172 26.477-38.172Q26.040-38.172 25.640-38.380Q25.240-38.589 25.001-38.956Q24.761-39.323 24.761-39.775M25.431-40.045L27.246-40.045Q27.246-40.322 27.149-40.574Q27.051-40.827 26.853-40.983Q26.655-41.138 26.371-41.138Q26.094-41.138 25.881-40.980Q25.667-40.821 25.549-40.566Q25.431-40.311 25.431-40.045M30.234-39.494L28.176-39.494L28.176-39.997L30.234-39.997L30.234-39.494M31.843-38.240L31.577-38.240L31.577-42.348Q31.577-42.618 31.469-42.680Q31.361-42.741 31.050-42.741L31.050-43.022L32.130-43.097L32.130-40.927Q32.339-41.118 32.624-41.222Q32.910-41.326 33.207-41.326Q33.525-41.326 33.822-41.205Q34.120-41.084 34.342-40.868Q34.564-40.653 34.691-40.368Q34.817-40.082 34.817-39.751Q34.817-39.306 34.578-38.942Q34.338-38.578 33.945-38.375Q33.552-38.172 33.108-38.172Q32.913-38.172 32.724-38.228Q32.534-38.284 32.373-38.389Q32.213-38.493 32.072-38.654L31.843-38.240M32.158-40.585L32.158-38.968Q32.295-38.708 32.536-38.551Q32.776-38.394 33.053-38.394Q33.347-38.394 33.559-38.501Q33.771-38.609 33.904-38.801Q34.038-38.992 34.096-39.231Q34.154-39.470 34.154-39.751Q34.154-40.110 34.060-40.414Q33.966-40.718 33.739-40.911Q33.511-41.104 33.146-41.104Q32.845-41.104 32.578-40.968Q32.312-40.831 32.158-40.585M35.511-38.968Q35.511-39.300 35.735-39.527Q35.959-39.754 36.302-39.882Q36.646-40.011 37.018-40.063Q37.391-40.116 37.695-40.116L37.695-40.369Q37.695-40.574 37.587-40.754Q37.480-40.933 37.298-41.036Q37.117-41.138 36.909-41.138Q36.502-41.138 36.266-41.046Q36.355-41.009 36.401-40.925Q36.447-40.841 36.447-40.739Q36.447-40.643 36.401-40.564Q36.355-40.486 36.275-40.441Q36.194-40.397 36.106-40.397Q35.955-40.397 35.854-40.494Q35.754-40.592 35.754-40.739Q35.754-41.361 36.909-41.361Q37.121-41.361 37.370-41.297Q37.620-41.234 37.821-41.115Q38.023-40.995 38.150-40.810Q38.276-40.626 38.276-40.383L38.276-38.807Q38.276-38.691 38.338-38.595Q38.399-38.500 38.512-38.500Q38.621-38.500 38.686-38.594Q38.751-38.688 38.751-38.807L38.751-39.255L39.018-39.255L39.018-38.807Q39.018-38.537 38.790-38.372Q38.563-38.206 38.283-38.206Q38.074-38.206 37.938-38.360Q37.801-38.513 37.777-38.729Q37.630-38.462 37.348-38.317Q37.066-38.172 36.741-38.172Q36.464-38.172 36.181-38.247Q35.897-38.322 35.704-38.501Q35.511-38.681 35.511-38.968M36.126-38.968Q36.126-38.794 36.227-38.664Q36.328-38.534 36.483-38.464Q36.639-38.394 36.803-38.394Q37.022-38.394 37.230-38.491Q37.439-38.589 37.567-38.770Q37.695-38.951 37.695-39.177L37.695-39.905Q37.370-39.905 37.005-39.814Q36.639-39.723 36.382-39.511Q36.126-39.300 36.126-38.968M39.435-39.751Q39.435-40.079 39.570-40.380Q39.705-40.680 39.941-40.901Q40.176-41.121 40.481-41.241Q40.785-41.361 41.109-41.361Q41.615-41.361 41.964-41.258Q42.313-41.156 42.313-40.780Q42.313-40.633 42.215-40.532Q42.118-40.431 41.971-40.431Q41.817-40.431 41.718-40.530Q41.619-40.629 41.619-40.780Q41.619-40.968 41.759-41.060Q41.557-41.111 41.116-41.111Q40.761-41.111 40.532-40.915Q40.303-40.718 40.202-40.409Q40.101-40.099 40.101-39.751Q40.101-39.402 40.228-39.096Q40.354-38.790 40.609-38.606Q40.863-38.421 41.219-38.421Q41.441-38.421 41.626-38.505Q41.810-38.589 41.945-38.744Q42.080-38.900 42.138-39.108Q42.152-39.163 42.207-39.163L42.319-39.163Q42.350-39.163 42.372-39.139Q42.395-39.115 42.395-39.081L42.395-39.060Q42.309-38.773 42.121-38.575Q41.933-38.377 41.668-38.274Q41.403-38.172 41.109-38.172Q40.679-38.172 40.291-38.378Q39.903-38.585 39.669-38.948Q39.435-39.310 39.435-39.751\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M44.402-38.240L42.819-38.240L42.819-38.520Q43.048-38.520 43.197-38.554Q43.345-38.589 43.345-38.729L43.345-42.348Q43.345-42.618 43.238-42.680Q43.130-42.741 42.819-42.741L42.819-43.022L43.899-43.097L43.899-39.809L44.884-40.578Q45.089-40.715 45.089-40.865Q45.089-40.909 45.048-40.944Q45.007-40.978 44.962-40.978L44.962-41.258L46.326-41.258L46.326-40.978Q45.837-40.978 45.318-40.578L44.761-40.144L45.738-38.920Q45.940-38.674 46.073-38.597Q46.206-38.520 46.493-38.520L46.493-38.240L45.061-38.240L45.061-38.520Q45.249-38.520 45.249-38.633Q45.249-38.729 45.095-38.920L44.361-39.829L43.879-39.450L43.879-38.729Q43.879-38.592 44.027-38.556Q44.176-38.520 44.402-38.520\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.461)\">\u003Cpath d=\"M10.926-39.689L8.672-39.689L8.672-40.240L10.926-40.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 70.449h224.777\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M11.100-38.240L8.967-38.240L8.967-38.520Q9.688-38.520 9.688-38.729L9.688-42.530Q9.688-42.741 8.967-42.741L8.967-43.022L11.633-43.022Q12.043-43.022 12.464-42.868Q12.884-42.714 13.168-42.410Q13.451-42.106 13.451-41.692Q13.451-41.374 13.284-41.128Q13.116-40.882 12.840-40.716Q12.563-40.551 12.241-40.467Q11.920-40.383 11.633-40.383L10.379-40.383L10.379-38.729Q10.379-38.520 11.100-38.520L11.100-38.240M10.351-42.530L10.351-40.633L11.438-40.633Q12.047-40.633 12.361-40.870Q12.676-41.108 12.676-41.692Q12.676-42.085 12.530-42.319Q12.385-42.553 12.113-42.647Q11.842-42.741 11.438-42.741L10.717-42.741Q10.529-42.741 10.440-42.707Q10.351-42.673 10.351-42.530M14.432-40.633Q14.432-41.159 14.649-41.627Q14.866-42.095 15.249-42.441Q15.632-42.786 16.116-42.974Q16.599-43.162 17.129-43.162Q17.532-43.162 17.897-43.005Q18.261-42.847 18.544-42.553L18.968-43.135Q19.002-43.162 19.026-43.162L19.074-43.162Q19.105-43.162 19.129-43.138Q19.153-43.114 19.153-43.083L19.153-41.220Q19.153-41.197 19.127-41.171Q19.101-41.145 19.074-41.145L18.948-41.145Q18.886-41.145 18.872-41.220Q18.842-41.535 18.707-41.839Q18.572-42.143 18.356-42.377Q18.141-42.612 17.852-42.747Q17.563-42.882 17.235-42.882Q16.593-42.882 16.135-42.588Q15.677-42.294 15.444-41.781Q15.212-41.268 15.212-40.633Q15.212-40.161 15.342-39.752Q15.471-39.344 15.731-39.031Q15.991-38.719 16.370-38.549Q16.750-38.380 17.242-38.380Q17.570-38.380 17.864-38.496Q18.158-38.613 18.392-38.828Q18.626-39.043 18.756-39.332Q18.886-39.621 18.886-39.949Q18.886-39.976 18.913-40Q18.941-40.024 18.961-40.024L19.074-40.024Q19.112-40.024 19.132-39.999Q19.153-39.973 19.153-39.935Q19.153-39.539 18.987-39.202Q18.821-38.865 18.534-38.618Q18.247-38.370 17.878-38.235Q17.509-38.100 17.129-38.100Q16.610-38.100 16.117-38.290Q15.625-38.479 15.246-38.823Q14.866-39.166 14.649-39.635Q14.432-40.103 14.432-40.633\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M23.241-39.074L23.241-40.578Q23.241-40.848 23.133-40.909Q23.025-40.971 22.714-40.971L22.714-41.251L23.822-41.326L23.822-39.094L23.822-39.074Q23.822-38.794 23.873-38.650Q23.924-38.507 24.066-38.450Q24.208-38.394 24.495-38.394Q24.748-38.394 24.953-38.534Q25.158-38.674 25.274-38.900Q25.391-39.125 25.391-39.375L25.391-40.578Q25.391-40.848 25.283-40.909Q25.175-40.971 24.864-40.971L24.864-41.251L25.972-41.326L25.972-38.913Q25.972-38.722 26.025-38.640Q26.078-38.558 26.178-38.539Q26.279-38.520 26.495-38.520L26.495-38.240L25.418-38.172L25.418-38.736Q25.309-38.554 25.163-38.431Q25.018-38.308 24.832-38.240Q24.645-38.172 24.444-38.172Q23.241-38.172 23.241-39.074M28.727-36.883L27.096-36.883L27.096-37.163Q27.325-37.163 27.474-37.198Q27.623-37.232 27.623-37.372L27.623-40.718Q27.623-40.889 27.486-40.930Q27.349-40.971 27.096-40.971L27.096-41.251L28.176-41.326L28.176-40.920Q28.398-41.121 28.685-41.224Q28.973-41.326 29.280-41.326Q29.707-41.326 30.071-41.113Q30.435-40.899 30.649-40.535Q30.863-40.171 30.863-39.751Q30.863-39.306 30.623-38.942Q30.384-38.578 29.991-38.375Q29.598-38.172 29.154-38.172Q28.887-38.172 28.639-38.272Q28.392-38.373 28.204-38.554L28.204-37.372Q28.204-37.235 28.352-37.199Q28.501-37.163 28.727-37.163L28.727-36.883M28.204-40.571L28.204-38.961Q28.337-38.708 28.580-38.551Q28.822-38.394 29.099-38.394Q29.427-38.394 29.680-38.595Q29.933-38.797 30.066-39.115Q30.200-39.433 30.200-39.751Q30.200-39.980 30.135-40.209Q30.070-40.438 29.942-40.636Q29.813-40.834 29.619-40.954Q29.424-41.073 29.191-41.073Q28.897-41.073 28.629-40.944Q28.361-40.814 28.204-40.571\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M31.714-39.751Q31.714-40.089 31.855-40.380Q31.995-40.670 32.239-40.884Q32.483-41.097 32.788-41.212Q33.092-41.326 33.417-41.326Q33.687-41.326 33.950-41.227Q34.213-41.128 34.404-40.950L34.404-42.348Q34.404-42.618 34.297-42.680Q34.189-42.741 33.878-42.741L33.878-43.022L34.955-43.097L34.955-38.913Q34.955-38.725 35.009-38.642Q35.064-38.558 35.165-38.539Q35.266-38.520 35.481-38.520L35.481-38.240L34.374-38.172L34.374-38.589Q33.957-38.172 33.331-38.172Q32.900-38.172 32.528-38.384Q32.155-38.595 31.935-38.956Q31.714-39.317 31.714-39.751M33.389-38.394Q33.598-38.394 33.784-38.466Q33.970-38.537 34.124-38.674Q34.278-38.811 34.374-38.989L34.374-40.598Q34.288-40.745 34.143-40.865Q33.998-40.985 33.828-41.044Q33.659-41.104 33.478-41.104Q32.918-41.104 32.649-40.715Q32.381-40.325 32.381-39.744Q32.381-39.173 32.615-38.783Q32.849-38.394 33.389-38.394M36.189-38.968Q36.189-39.300 36.412-39.527Q36.636-39.754 36.980-39.882Q37.323-40.011 37.696-40.063Q38.068-40.116 38.373-40.116L38.373-40.369Q38.373-40.574 38.265-40.754Q38.157-40.933 37.976-41.036Q37.795-41.138 37.587-41.138Q37.180-41.138 36.944-41.046Q37.033-41.009 37.079-40.925Q37.125-40.841 37.125-40.739Q37.125-40.643 37.079-40.564Q37.033-40.486 36.952-40.441Q36.872-40.397 36.783-40.397Q36.633-40.397 36.532-40.494Q36.431-40.592 36.431-40.739Q36.431-41.361 37.587-41.361Q37.798-41.361 38.048-41.297Q38.297-41.234 38.499-41.115Q38.701-40.995 38.827-40.810Q38.954-40.626 38.954-40.383L38.954-38.807Q38.954-38.691 39.015-38.595Q39.077-38.500 39.190-38.500Q39.299-38.500 39.364-38.594Q39.429-38.688 39.429-38.807L39.429-39.255L39.695-39.255L39.695-38.807Q39.695-38.537 39.468-38.372Q39.241-38.206 38.961-38.206Q38.752-38.206 38.615-38.360Q38.479-38.513 38.455-38.729Q38.308-38.462 38.026-38.317Q37.744-38.172 37.419-38.172Q37.142-38.172 36.858-38.247Q36.575-38.322 36.382-38.501Q36.189-38.681 36.189-38.968M36.804-38.968Q36.804-38.794 36.905-38.664Q37.005-38.534 37.161-38.464Q37.317-38.394 37.481-38.394Q37.699-38.394 37.908-38.491Q38.116-38.589 38.244-38.770Q38.373-38.951 38.373-39.177L38.373-39.905Q38.048-39.905 37.682-39.814Q37.317-39.723 37.060-39.511Q36.804-39.300 36.804-38.968M40.639-39.081L40.639-40.978L40-40.978L40-41.200Q40.317-41.200 40.535-41.410Q40.752-41.620 40.852-41.930Q40.953-42.239 40.953-42.547L41.220-42.547L41.220-41.258L42.296-41.258L42.296-40.978L41.220-40.978L41.220-39.094Q41.220-38.818 41.324-38.619Q41.428-38.421 41.688-38.421Q41.845-38.421 41.951-38.525Q42.057-38.630 42.107-38.783Q42.156-38.937 42.156-39.094L42.156-39.508L42.423-39.508L42.423-39.081Q42.423-38.855 42.324-38.645Q42.225-38.435 42.040-38.303Q41.856-38.172 41.627-38.172Q41.189-38.172 40.914-38.409Q40.639-38.647 40.639-39.081M43.192-39.775Q43.192-40.096 43.317-40.385Q43.442-40.674 43.667-40.897Q43.893-41.121 44.188-41.241Q44.484-41.361 44.802-41.361Q45.130-41.361 45.391-41.261Q45.653-41.162 45.829-40.980Q46.005-40.797 46.099-40.539Q46.193-40.281 46.193-39.949Q46.193-39.857 46.111-39.836L43.855-39.836L43.855-39.775Q43.855-39.187 44.139-38.804Q44.422-38.421 44.990-38.421Q45.311-38.421 45.579-38.614Q45.848-38.807 45.937-39.122Q45.943-39.163 46.019-39.177L46.111-39.177Q46.193-39.153 46.193-39.081Q46.193-39.074 46.186-39.047Q46.073-38.650 45.702-38.411Q45.332-38.172 44.908-38.172Q44.470-38.172 44.070-38.380Q43.671-38.589 43.431-38.956Q43.192-39.323 43.192-39.775M43.862-40.045L45.677-40.045Q45.677-40.322 45.579-40.574Q45.482-40.827 45.284-40.983Q45.086-41.138 44.802-41.138Q44.525-41.138 44.311-40.980Q44.098-40.821 43.980-40.566Q43.862-40.311 43.862-40.045\" 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-size=\"8\">\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M8.758-38.478L8.758-38.568Q8.797-38.775 9.008-38.799L9.316-38.799L9.316-42.568L9.008-42.568Q8.797-42.592 8.758-42.806L8.758-42.896Q8.797-43.103 9.008-43.127L10.957-43.127Q11.355-43.127 11.701-42.926Q12.047-42.724 12.254-42.379Q12.461-42.033 12.461-41.631Q12.461-41.224 12.256-40.881Q12.051-40.537 11.705-40.332Q11.359-40.127 10.957-40.127L9.957-40.127L9.957-38.799L10.269-38.799Q10.480-38.775 10.519-38.568L10.519-38.478Q10.480-38.263 10.269-38.240L9.008-38.240Q8.797-38.263 8.758-38.478M9.957-42.568L9.957-40.689L10.797-40.689Q11.058-40.689 11.295-40.812Q11.531-40.935 11.676-41.150Q11.820-41.365 11.820-41.631Q11.820-41.900 11.676-42.111Q11.531-42.322 11.295-42.445Q11.058-42.568 10.797-42.568L9.957-42.568M15.086-38.162Q14.636-38.162 14.271-38.386Q13.906-38.611 13.652-38.994Q13.398-39.377 13.273-39.820Q13.148-40.263 13.148-40.689Q13.148-41.115 13.273-41.554Q13.398-41.994 13.652-42.377Q13.906-42.760 14.265-42.984Q14.625-43.209 15.086-43.209Q15.363-43.209 15.621-43.117Q15.879-43.025 16.094-42.857L16.226-43.095Q16.254-43.146 16.308-43.178Q16.363-43.209 16.422-43.209L16.500-43.209Q16.594-43.197 16.656-43.138Q16.719-43.080 16.730-42.974L16.730-41.646Q16.719-41.545 16.656-41.482Q16.594-41.420 16.500-41.408L16.332-41.408Q16.230-41.420 16.168-41.486Q16.105-41.553 16.094-41.646Q16.054-41.912 15.931-42.136Q15.808-42.361 15.605-42.504Q15.402-42.646 15.140-42.646Q14.808-42.646 14.556-42.463Q14.304-42.279 14.133-41.978Q13.961-41.678 13.875-41.336Q13.789-40.994 13.789-40.689Q13.789-40.385 13.873-40.043Q13.957-39.701 14.129-39.398Q14.301-39.095 14.558-38.908Q14.816-38.720 15.148-38.720Q15.531-38.720 15.812-38.994Q16.094-39.267 16.094-39.654Q16.121-39.865 16.332-39.888L16.500-39.888Q16.730-39.849 16.730-39.623Q16.730-39.306 16.594-39.035Q16.457-38.763 16.222-38.566Q15.988-38.369 15.697-38.265Q15.406-38.162 15.086-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M25.396-39.217L20.083-39.217Q20.005-39.224 19.956-39.273Q19.908-39.322 19.908-39.400Q19.908-39.470 19.955-39.521Q20.001-39.572 20.083-39.584L25.396-39.584Q25.470-39.572 25.517-39.521Q25.564-39.470 25.564-39.400Q25.564-39.322 25.515-39.273Q25.466-39.224 25.396-39.217M25.396-40.904L20.083-40.904Q20.005-40.912 19.956-40.961Q19.908-41.010 19.908-41.088Q19.908-41.158 19.955-41.209Q20.001-41.260 20.083-41.271L25.396-41.271Q25.470-41.260 25.517-41.209Q25.564-41.158 25.564-41.088Q25.564-41.010 25.515-40.961Q25.466-40.912 25.396-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.369)\">\u003Cpath d=\"M30.064-38.463L29.178-41.127L28.857-41.127Q28.658-41.150 28.607-41.369L28.607-41.455Q28.658-41.666 28.857-41.689L30.017-41.689Q30.213-41.670 30.263-41.455L30.263-41.369Q30.213-41.150 30.017-41.127L29.736-41.127L30.529-38.752L31.318-41.127L31.041-41.127Q30.842-41.150 30.791-41.369L30.791-41.455Q30.842-41.666 31.041-41.689L32.201-41.689Q32.396-41.666 32.447-41.455L32.447-41.369Q32.396-41.150 32.201-41.127L31.881-41.127L30.994-38.463Q30.951-38.349 30.849-38.275Q30.748-38.201 30.623-38.201L30.431-38.201Q30.314-38.201 30.211-38.273Q30.107-38.345 30.064-38.463M33.060-39.353Q33.060-39.799 33.474-40.056Q33.888-40.314 34.429-40.414Q34.971-40.513 35.478-40.521Q35.478-40.736 35.344-40.888Q35.209-41.041 35.002-41.117Q34.795-41.193 34.584-41.193Q34.240-41.193 34.080-41.170L34.080-41.111Q34.080-40.943 33.961-40.828Q33.842-40.713 33.678-40.713Q33.502-40.713 33.387-40.836Q33.271-40.959 33.271-41.127Q33.271-41.533 33.652-41.642Q34.033-41.752 34.592-41.752Q34.861-41.752 35.129-41.674Q35.396-41.595 35.621-41.445Q35.846-41.295 35.982-41.074Q36.119-40.853 36.119-40.576L36.119-38.857Q36.119-38.799 36.646-38.799Q36.842-38.779 36.892-38.568L36.892-38.478Q36.842-38.263 36.646-38.240L36.502-38.240Q36.158-38.240 35.929-38.287Q35.701-38.334 35.556-38.521Q35.096-38.201 34.388-38.201Q34.053-38.201 33.748-38.342Q33.443-38.482 33.252-38.744Q33.060-39.006 33.060-39.353M33.701-39.345Q33.701-39.072 33.943-38.916Q34.185-38.760 34.471-38.760Q34.689-38.760 34.922-38.818Q35.154-38.877 35.316-39.015Q35.478-39.154 35.478-39.377L35.478-39.967Q35.197-39.967 34.781-39.910Q34.365-39.853 34.033-39.715Q33.701-39.576 33.701-39.345M37.349-38.478L37.349-38.568Q37.400-38.775 37.596-38.799L38.701-38.799L38.701-42.568L37.596-42.568Q37.400-42.592 37.349-42.806L37.349-42.896Q37.400-43.103 37.596-43.127L39.092-43.127Q39.283-43.103 39.342-42.896L39.342-38.799L40.443-38.799Q40.642-38.775 40.693-38.568L40.693-38.478Q40.642-38.263 40.443-38.240L37.596-38.240Q37.400-38.263 37.349-38.478M41.330-38.478L41.330-38.568Q41.369-38.775 41.580-38.799L41.888-38.799L41.888-42.568L41.580-42.568Q41.369-42.592 41.330-42.806L41.330-42.896Q41.369-43.103 41.580-43.127L43.529-43.127Q43.928-43.127 44.273-42.926Q44.619-42.724 44.826-42.379Q45.033-42.033 45.033-41.631Q45.033-41.224 44.828-40.881Q44.623-40.537 44.277-40.332Q43.931-40.127 43.529-40.127L42.529-40.127L42.529-38.799L42.842-38.799Q43.053-38.775 43.092-38.568L43.092-38.478Q43.053-38.263 42.842-38.240L41.580-38.240Q41.369-38.263 41.330-38.478M42.529-42.568L42.529-40.689L43.369-40.689Q43.631-40.689 43.867-40.812Q44.103-40.935 44.248-41.150Q44.392-41.365 44.392-41.631Q44.392-41.900 44.248-42.111Q44.103-42.322 43.867-42.445Q43.631-42.568 43.369-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 94.634h224.777\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(197.012 -25.141)\">\u003Cpath d=\"M8.519-38.478L8.519-38.568Q8.570-38.779 8.765-38.799L8.965-38.799L8.965-41.127L8.765-41.127Q8.558-41.150 8.519-41.369L8.519-41.455Q8.570-41.670 8.765-41.689L9.246-41.689Q9.437-41.666 9.496-41.455Q9.816-41.728 10.230-41.728Q10.422-41.728 10.590-41.619Q10.758-41.510 10.832-41.338Q11.008-41.529 11.230-41.629Q11.453-41.728 11.695-41.728Q12.113-41.728 12.267-41.386Q12.422-41.045 12.422-40.576L12.422-38.799L12.621-38.799Q12.832-38.775 12.871-38.568L12.871-38.478Q12.820-38.263 12.621-38.240L11.804-38.240Q11.609-38.263 11.558-38.478L11.558-38.568Q11.609-38.775 11.804-38.799L11.894-38.799L11.894-40.545Q11.894-41.170 11.644-41.170Q11.312-41.170 11.135-40.859Q10.957-40.549 10.957-40.185L10.957-38.799L11.160-38.799Q11.367-38.775 11.406-38.568L11.406-38.478Q11.355-38.263 11.160-38.240L10.344-38.240Q10.144-38.263 10.094-38.478L10.094-38.568Q10.144-38.775 10.344-38.799L10.429-38.799L10.429-40.545Q10.429-41.170 10.183-41.170Q9.851-41.170 9.674-40.857Q9.496-40.545 9.496-40.185L9.496-38.799L9.695-38.799Q9.902-38.775 9.941-38.568L9.941-38.478Q9.890-38.260 9.695-38.240L8.765-38.240Q8.558-38.263 8.519-38.478M13.043-38.478L13.043-38.568Q13.101-38.775 13.293-38.799L14.004-38.799L14.004-41.127L13.293-41.127Q13.097-41.150 13.043-41.369L13.043-41.455Q13.101-41.666 13.293-41.689L14.394-41.689Q14.594-41.670 14.644-41.455L14.644-41.127Q14.906-41.412 15.261-41.570Q15.617-41.728 16.004-41.728Q16.297-41.728 16.531-41.594Q16.765-41.459 16.765-41.193Q16.765-41.025 16.656-40.908Q16.547-40.791 16.379-40.791Q16.226-40.791 16.111-40.902Q15.996-41.013 15.996-41.170Q15.621-41.170 15.306-40.969Q14.992-40.767 14.818-40.433Q14.644-40.099 14.644-39.720L14.644-38.799L15.590-38.799Q15.797-38.775 15.836-38.568L15.836-38.478Q15.797-38.263 15.590-38.240L13.293-38.240Q13.101-38.263 13.043-38.478M17.011-38.478L17.011-38.568Q17.062-38.779 17.258-38.799L17.457-38.799L17.457-41.127L17.258-41.127Q17.051-41.150 17.011-41.369L17.011-41.455Q17.062-41.670 17.258-41.689L17.738-41.689Q17.929-41.666 17.988-41.455Q18.308-41.728 18.722-41.728Q18.914-41.728 19.082-41.619Q19.250-41.510 19.324-41.338Q19.500-41.529 19.722-41.629Q19.945-41.728 20.187-41.728Q20.605-41.728 20.760-41.386Q20.914-41.045 20.914-40.576L20.914-38.799L21.113-38.799Q21.324-38.775 21.363-38.568L21.363-38.478Q21.312-38.263 21.113-38.240L20.297-38.240Q20.101-38.263 20.051-38.478L20.051-38.568Q20.101-38.775 20.297-38.799L20.386-38.799L20.386-40.545Q20.386-41.170 20.136-41.170Q19.804-41.170 19.627-40.859Q19.449-40.549 19.449-40.185L19.449-38.799L19.652-38.799Q19.859-38.775 19.898-38.568L19.898-38.478Q19.847-38.263 19.652-38.240L18.836-38.240Q18.636-38.263 18.586-38.478L18.586-38.568Q18.636-38.775 18.836-38.799L18.922-38.799L18.922-40.545Q18.922-41.170 18.676-41.170Q18.344-41.170 18.166-40.857Q17.988-40.545 17.988-40.185L17.988-38.799L18.187-38.799Q18.394-38.775 18.433-38.568L18.433-38.478Q18.383-38.260 18.187-38.240L17.258-38.240Q17.051-38.263 17.011-38.478M23.433-38.201Q22.961-38.201 22.576-38.445Q22.191-38.689 21.969-39.099Q21.746-39.510 21.746-39.967Q21.746-40.310 21.871-40.633Q21.996-40.955 22.226-41.209Q22.457-41.463 22.763-41.607Q23.070-41.752 23.433-41.752Q23.797-41.752 24.109-41.605Q24.422-41.459 24.644-41.213Q24.867-40.967 24.994-40.646Q25.121-40.326 25.121-39.967Q25.121-39.510 24.896-39.097Q24.672-38.685 24.287-38.443Q23.902-38.201 23.433-38.201M23.433-38.760Q23.898-38.760 24.189-39.154Q24.480-39.549 24.480-40.033Q24.480-40.326 24.345-40.594Q24.211-40.861 23.970-41.027Q23.730-41.193 23.433-41.193Q23.129-41.193 22.890-41.027Q22.652-40.861 22.517-40.594Q22.383-40.326 22.383-40.033Q22.383-39.553 22.676-39.156Q22.969-38.760 23.433-38.760M27.215-38.463L26.328-41.127L26.008-41.127Q25.808-41.150 25.758-41.369L25.758-41.455Q25.808-41.666 26.008-41.689L27.168-41.689Q27.363-41.670 27.414-41.455L27.414-41.369Q27.363-41.150 27.168-41.127L26.886-41.127L27.679-38.752L28.469-41.127L28.191-41.127Q27.992-41.150 27.941-41.369L27.941-41.455Q27.992-41.666 28.191-41.689L29.351-41.689Q29.547-41.666 29.597-41.455L29.597-41.369Q29.547-41.150 29.351-41.127L29.031-41.127L28.144-38.463Q28.101-38.349 28-38.275Q27.898-38.201 27.773-38.201L27.582-38.201Q27.465-38.201 27.361-38.273Q27.258-38.345 27.215-38.463M32.117-36.697L32.117-36.783Q32.168-37.002 32.363-37.025L32.828-37.025L32.828-38.623Q32.375-38.201 31.765-38.201Q31.410-38.201 31.105-38.344Q30.801-38.486 30.568-38.736Q30.336-38.986 30.211-39.308Q30.086-39.631 30.086-39.967Q30.086-40.451 30.324-40.851Q30.562-41.252 30.969-41.490Q31.375-41.728 31.851-41.728Q32.414-41.728 32.828-41.338L32.828-41.498Q32.879-41.709 33.078-41.728L33.219-41.728Q33.418-41.705 33.469-41.498L33.469-37.025L33.933-37.025Q34.129-37.002 34.179-36.783L34.179-36.697Q34.129-36.486 33.933-36.463L32.363-36.463Q32.168-36.486 32.117-36.697M31.812-38.760Q32.183-38.760 32.459-39.013Q32.734-39.267 32.828-39.631L32.828-40.248Q32.785-40.486 32.662-40.699Q32.539-40.912 32.342-41.041Q32.144-41.170 31.902-41.170Q31.586-41.170 31.314-41.004Q31.043-40.838 30.885-40.556Q30.726-40.275 30.726-39.959Q30.726-39.494 31.041-39.127Q31.355-38.760 31.812-38.760\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(197.012 -25.141)\">\u003Cpath d=\"M38.461-38.478L38.461-38.568Q38.500-38.775 38.707-38.799L38.957-38.799L38.957-42.568L38.707-42.568Q38.500-42.592 38.461-42.806L38.461-42.896Q38.500-43.103 38.707-43.127L40.523-43.127Q41.074-43.127 41.469-42.734Q41.863-42.342 42.058-41.763Q42.254-41.185 42.254-40.638Q42.254-40.111 42.054-39.547Q41.855-38.982 41.463-38.611Q41.070-38.240 40.523-38.240L38.707-38.240Q38.500-38.263 38.461-38.478M39.597-42.568L39.597-38.799L40.363-38.799Q40.957-38.799 41.285-39.394Q41.613-39.990 41.613-40.638Q41.613-41.045 41.478-41.494Q41.344-41.943 41.058-42.256Q40.773-42.568 40.363-42.568L39.597-42.568M45.683-37.599Q45.152-37.908 44.752-38.396Q44.351-38.885 44.140-39.478Q43.929-40.072 43.929-40.689Q43.929-41.306 44.138-41.894Q44.347-42.482 44.744-42.963Q45.140-43.443 45.676-43.767Q45.746-43.791 45.777-43.791L45.867-43.791Q45.965-43.779 46.031-43.713Q46.097-43.646 46.097-43.545Q46.097-43.400 45.996-43.338Q45.547-43.049 45.220-42.633Q44.894-42.217 44.732-41.724Q44.570-41.232 44.570-40.689Q44.570-40.283 44.666-39.896Q44.761-39.510 44.939-39.174Q45.117-38.838 45.377-38.554Q45.636-38.271 45.984-38.041Q46.097-37.963 46.097-37.826Q46.097-37.728 46.031-37.658Q45.965-37.588 45.867-37.576L45.777-37.576Q45.719-37.576 45.683-37.599M47.039-38.478L47.039-38.568Q47.097-38.775 47.289-38.799L48-38.799L48-41.127L47.289-41.127Q47.094-41.150 47.039-41.369L47.039-41.455Q47.097-41.666 47.289-41.689L48.390-41.689Q48.590-41.670 48.640-41.455L48.640-41.127Q48.902-41.412 49.258-41.570Q49.613-41.728 50-41.728Q50.293-41.728 50.527-41.594Q50.761-41.459 50.761-41.193Q50.761-41.025 50.652-40.908Q50.543-40.791 50.375-40.791Q50.222-40.791 50.107-40.902Q49.992-41.013 49.992-41.170Q49.617-41.170 49.303-40.969Q48.988-40.767 48.814-40.433Q48.640-40.099 48.640-39.720L48.640-38.799L49.586-38.799Q49.793-38.775 49.832-38.568L49.832-38.478Q49.793-38.263 49.586-38.240L47.289-38.240Q47.097-38.263 47.039-38.478M51.230-38.478L51.230-38.568Q51.269-38.775 51.476-38.799L51.765-38.799L51.765-42.568L51.476-42.568Q51.269-42.592 51.230-42.806L51.230-42.896Q51.269-43.103 51.476-43.127L53.437-43.127Q53.707-43.127 53.947-43.031Q54.187-42.935 54.379-42.765Q54.570-42.595 54.679-42.367Q54.789-42.138 54.789-41.873Q54.789-41.506 54.549-41.217Q54.308-40.928 53.941-40.799Q54.222-40.736 54.455-40.562Q54.687-40.388 54.822-40.133Q54.957-39.877 54.957-39.592Q54.957-39.232 54.775-38.922Q54.594-38.611 54.279-38.426Q53.965-38.240 53.605-38.240L51.476-38.240Q51.269-38.263 51.230-38.478M52.406-40.506L52.406-38.799L53.437-38.799Q53.664-38.799 53.867-38.902Q54.070-39.006 54.195-39.185Q54.320-39.365 54.320-39.592Q54.320-39.822 54.219-40.031Q54.117-40.240 53.935-40.373Q53.754-40.506 53.527-40.506L52.406-40.506M52.406-42.568L52.406-41.064L53.269-41.064Q53.613-41.064 53.883-41.299Q54.152-41.533 54.152-41.873Q54.152-42.060 54.054-42.220Q53.957-42.381 53.791-42.474Q53.625-42.568 53.437-42.568L52.406-42.568M56.347-37.576L56.261-37.576Q56.156-37.588 56.088-37.660Q56.019-37.732 56.019-37.826Q56.019-37.967 56.125-38.033Q56.461-38.248 56.730-38.537Q57-38.826 57.183-39.174Q57.367-39.521 57.457-39.900Q57.547-40.279 57.547-40.689Q57.547-41.228 57.383-41.720Q57.219-42.213 56.900-42.627Q56.582-43.041 56.140-43.330Q56.019-43.412 56.019-43.545Q56.019-43.642 56.088-43.711Q56.156-43.779 56.261-43.791L56.347-43.791Q56.402-43.791 56.437-43.767Q56.824-43.545 57.164-43.197Q57.504-42.849 57.724-42.455Q57.945-42.060 58.066-41.615Q58.187-41.170 58.187-40.689Q58.187-40.205 58.066-39.754Q57.945-39.303 57.720-38.906Q57.496-38.510 57.172-38.176Q56.847-37.842 56.445-37.599Q56.375-37.576 56.347-37.576M61.273-37.127Q61.160-37.127 61.070-37.217Q60.980-37.306 60.980-37.416Q60.980-37.592 61.172-37.666Q61.390-37.717 61.562-37.875Q61.734-38.033 61.801-38.256Q61.777-38.256 61.746-38.240L61.683-38.240Q61.453-38.240 61.287-38.402Q61.121-38.564 61.121-38.799Q61.121-39.033 61.285-39.193Q61.449-39.353 61.683-39.353Q61.894-39.353 62.058-39.232Q62.222-39.111 62.312-38.918Q62.402-38.724 62.402-38.513Q62.402-38.037 62.103-37.648Q61.804-37.260 61.340-37.135Q61.316-37.127 61.273-37.127M64.023-38.478L64.023-38.568Q64.082-38.775 64.273-38.799L64.984-38.799L64.984-41.127L64.273-41.127Q64.078-41.150 64.023-41.369L64.023-41.455Q64.082-41.666 64.273-41.689L65.375-41.689Q65.574-41.670 65.625-41.455L65.625-41.127Q65.886-41.412 66.242-41.570Q66.597-41.728 66.984-41.728Q67.277-41.728 67.511-41.594Q67.746-41.459 67.746-41.193Q67.746-41.025 67.636-40.908Q67.527-40.791 67.359-40.791Q67.207-40.791 67.092-40.902Q66.976-41.013 66.976-41.170Q66.601-41.170 66.287-40.969Q65.972-40.767 65.799-40.433Q65.625-40.099 65.625-39.720L65.625-38.799L66.570-38.799Q66.777-38.775 66.816-38.568L66.816-38.478Q66.777-38.263 66.570-38.240L64.273-38.240Q64.082-38.263 64.023-38.478M68.277-38.478L68.277-38.568Q68.336-38.779 68.527-38.799L68.750-38.799L69.703-42.982Q69.726-43.099 69.822-43.174Q69.918-43.248 70.031-43.248L70.304-43.248Q70.418-43.248 70.513-43.172Q70.609-43.095 70.633-42.982L71.582-38.799L71.808-38.799Q72.015-38.775 72.054-38.568L72.054-38.478Q72.004-38.263 71.808-38.240L70.726-38.240Q70.531-38.263 70.480-38.478L70.480-38.568Q70.531-38.775 70.726-38.799L70.926-38.799Q70.797-39.365 70.773-39.447L69.558-39.447Q69.515-39.263 69.406-38.799L69.605-38.799Q69.804-38.775 69.855-38.568L69.855-38.478Q69.804-38.263 69.605-38.240L68.527-38.240Q68.320-38.263 68.277-38.478M69.679-40.010L70.656-40.010Q70.176-42.142 70.176-42.486L70.168-42.486Q70.168-42.303 70.027-41.619Q69.886-40.935 69.679-40.010\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053-51.044h224.776\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(185.22 2.43)\">\u003Cpath d=\"M11.267-38.240L8.953-38.240L8.953-38.520Q9.675-38.520 9.675-38.729L9.675-42.530Q9.675-42.741 8.953-42.741L8.953-43.022L13.137-43.022L13.349-41.385L13.082-41.385Q13.004-41.996 12.852-42.275Q12.699-42.553 12.395-42.647Q12.091-42.741 11.466-42.741L10.731-42.741Q10.543-42.741 10.454-42.707Q10.365-42.673 10.365-42.530L10.365-40.773L10.919-40.773Q11.288-40.773 11.472-40.827Q11.657-40.882 11.736-41.055Q11.814-41.227 11.814-41.593L12.081-41.593L12.081-39.676L11.814-39.676Q11.814-40.041 11.736-40.214Q11.657-40.386 11.472-40.439Q11.288-40.492 10.919-40.492L10.365-40.492L10.365-38.729Q10.365-38.520 11.267-38.520\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.22 2.43)\">\u003Cpath d=\"M13.361-39.775Q13.361-40.096 13.486-40.385Q13.611-40.674 13.837-40.897Q14.062-41.121 14.358-41.241Q14.653-41.361 14.971-41.361Q15.299-41.361 15.561-41.261Q15.822-41.162 15.998-40.980Q16.174-40.797 16.268-40.539Q16.362-40.281 16.362-39.949Q16.362-39.857 16.280-39.836L14.025-39.836L14.025-39.775Q14.025-39.187 14.308-38.804Q14.592-38.421 15.159-38.421Q15.481-38.421 15.749-38.614Q16.017-38.807 16.106-39.122Q16.113-39.163 16.188-39.177L16.280-39.177Q16.362-39.153 16.362-39.081Q16.362-39.074 16.356-39.047Q16.243-38.650 15.872-38.411Q15.501-38.172 15.077-38.172Q14.640-38.172 14.240-38.380Q13.840-38.589 13.601-38.956Q13.361-39.323 13.361-39.775M14.031-40.045L15.846-40.045Q15.846-40.322 15.749-40.574Q15.651-40.827 15.453-40.983Q15.255-41.138 14.971-41.138Q14.694-41.138 14.481-40.980Q14.267-40.821 14.149-40.566Q14.031-40.311 14.031-40.045M17.477-39.081L17.477-40.978L16.838-40.978L16.838-41.200Q17.155-41.200 17.372-41.410Q17.589-41.620 17.690-41.930Q17.791-42.239 17.791-42.547L18.058-42.547L18.058-41.258L19.134-41.258L19.134-40.978L18.058-40.978L18.058-39.094Q18.058-38.818 18.162-38.619Q18.266-38.421 18.526-38.421Q18.683-38.421 18.789-38.525Q18.895-38.630 18.945-38.783Q18.994-38.937 18.994-39.094L18.994-39.508L19.261-39.508L19.261-39.081Q19.261-38.855 19.162-38.645Q19.063-38.435 18.878-38.303Q18.693-38.172 18.464-38.172Q18.027-38.172 17.752-38.409Q17.477-38.647 17.477-39.081M20.071-39.751Q20.071-40.079 20.206-40.380Q20.341-40.680 20.577-40.901Q20.813-41.121 21.117-41.241Q21.421-41.361 21.746-41.361Q22.252-41.361 22.600-41.258Q22.949-41.156 22.949-40.780Q22.949-40.633 22.851-40.532Q22.754-40.431 22.607-40.431Q22.453-40.431 22.354-40.530Q22.255-40.629 22.255-40.780Q22.255-40.968 22.395-41.060Q22.193-41.111 21.753-41.111Q21.397-41.111 21.168-40.915Q20.939-40.718 20.838-40.409Q20.737-40.099 20.737-39.751Q20.737-39.402 20.864-39.096Q20.990-38.790 21.245-38.606Q21.500-38.421 21.855-38.421Q22.077-38.421 22.262-38.505Q22.446-38.589 22.581-38.744Q22.716-38.900 22.775-39.108Q22.788-39.163 22.843-39.163L22.956-39.163Q22.986-39.163 23.009-39.139Q23.031-39.115 23.031-39.081L23.031-39.060Q22.945-38.773 22.757-38.575Q22.569-38.377 22.305-38.274Q22.040-38.172 21.746-38.172Q21.315-38.172 20.927-38.378Q20.539-38.585 20.305-38.948Q20.071-39.310 20.071-39.751\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(185.22 2.43)\">\u003Cpath d=\"M25.105-38.240L23.471-38.240L23.471-38.520Q23.700-38.520 23.849-38.554Q23.998-38.589 23.998-38.729L23.998-42.348Q23.998-42.618 23.890-42.680Q23.782-42.741 23.471-42.741L23.471-43.022L24.551-43.097L24.551-40.711Q24.657-40.896 24.835-41.038Q25.013-41.179 25.221-41.253Q25.430-41.326 25.655-41.326Q26.161-41.326 26.445-41.103Q26.729-40.879 26.729-40.383L26.729-38.729Q26.729-38.592 26.877-38.556Q27.026-38.520 27.252-38.520L27.252-38.240L25.621-38.240L25.621-38.520Q25.850-38.520 25.999-38.554Q26.148-38.589 26.148-38.729L26.148-40.369Q26.148-40.704 26.028-40.904Q25.908-41.104 25.594-41.104Q25.324-41.104 25.090-40.968Q24.856-40.831 24.717-40.597Q24.579-40.363 24.579-40.089L24.579-38.729Q24.579-38.592 24.729-38.556Q24.880-38.520 25.105-38.520\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M23.578-38.162Q23.129-38.162 22.763-38.386Q22.398-38.611 22.144-38.994Q21.890-39.377 21.765-39.820Q21.640-40.263 21.640-40.689Q21.640-41.115 21.765-41.554Q21.890-41.994 22.144-42.377Q22.398-42.760 22.758-42.984Q23.117-43.209 23.578-43.209Q23.855-43.209 24.113-43.117Q24.371-43.025 24.586-42.857L24.719-43.095Q24.746-43.146 24.801-43.178Q24.855-43.209 24.914-43.209L24.992-43.209Q25.086-43.197 25.148-43.138Q25.211-43.080 25.222-42.974L25.222-41.646Q25.211-41.545 25.148-41.482Q25.086-41.420 24.992-41.408L24.824-41.408Q24.722-41.420 24.660-41.486Q24.597-41.553 24.586-41.646Q24.547-41.912 24.424-42.136Q24.301-42.361 24.097-42.504Q23.894-42.646 23.633-42.646Q23.301-42.646 23.049-42.463Q22.797-42.279 22.625-41.978Q22.453-41.678 22.367-41.336Q22.281-40.994 22.281-40.689Q22.281-40.385 22.365-40.043Q22.449-39.701 22.621-39.398Q22.793-39.095 23.051-38.908Q23.308-38.720 23.640-38.720Q24.023-38.720 24.304-38.994Q24.586-39.267 24.586-39.654Q24.613-39.865 24.824-39.888L24.992-39.888Q25.222-39.849 25.222-39.623Q25.222-39.306 25.086-39.035Q24.949-38.763 24.715-38.566Q24.480-38.369 24.189-38.265Q23.898-38.162 23.578-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M39.146-38.240L37.428-38.240Q37.388-38.240 37.361-38.281Q37.334-38.322 37.334-38.369L37.357-38.470Q37.365-38.521 37.451-38.537Q38.181-38.537 38.306-39.064L39.334-43.162Q39.357-43.232 39.357-43.295Q39.357-43.357 39.291-43.377Q39.146-43.408 38.724-43.408Q38.619-43.439 38.619-43.537L38.650-43.638Q38.662-43.685 38.740-43.705L40.138-43.705Q40.197-43.705 40.234-43.676Q40.271-43.646 40.275-43.592L40.986-39.017L43.986-43.592Q44.064-43.705 44.181-43.705L45.525-43.705Q45.572-43.693 45.599-43.662Q45.627-43.631 45.627-43.584L45.603-43.478Q45.584-43.424 45.510-43.408Q45.068-43.408 44.908-43.369Q44.760-43.334 44.701-43.103L43.619-38.783Q43.603-38.689 43.603-38.646Q43.603-38.588 43.670-38.568Q43.810-38.537 44.236-38.537Q44.334-38.510 44.334-38.416L44.306-38.310Q44.299-38.260 44.221-38.240L42.138-38.240Q42.099-38.240 42.072-38.281Q42.045-38.322 42.045-38.369L42.068-38.470Q42.076-38.521 42.166-38.537Q42.603-38.537 42.762-38.576Q42.920-38.615 42.963-38.842L44.099-43.385L40.803-38.353Q40.736-38.240 40.603-38.240Q40.471-38.240 40.459-38.353L39.685-43.318L38.603-39.010Q38.588-38.908 38.588-38.857Q38.588-38.658 38.752-38.597Q38.916-38.537 39.166-38.537Q39.260-38.510 39.260-38.416L39.236-38.310Q39.228-38.260 39.146-38.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M45.449-38.052Q45.449-38.439 45.710-38.710Q45.970-38.981 46.372-39.150L46.199-39.247Q45.950-39.394 45.796-39.612Q45.642-39.830 45.642-40.100Q45.642-40.410 45.828-40.643Q46.014-40.876 46.307-40.998Q46.600-41.119 46.902-41.119Q47.192-41.119 47.484-41.021Q47.775-40.923 47.968-40.718Q48.162-40.513 48.162-40.214Q48.162-39.895 47.952-39.675Q47.743-39.455 47.400-39.294L47.722-39.121Q48.004-38.957 48.178-38.711Q48.352-38.465 48.352-38.160Q48.352-37.797 48.137-37.535Q47.922-37.273 47.585-37.138Q47.248-37.003 46.902-37.003Q46.559-37.003 46.225-37.117Q45.891-37.232 45.670-37.467Q45.449-37.703 45.449-38.052M45.856-38.058Q45.856-37.683 46.186-37.463Q46.515-37.243 46.902-37.243Q47.136-37.243 47.377-37.318Q47.617-37.393 47.781-37.551Q47.945-37.709 47.945-37.952Q47.945-38.122 47.837-38.261Q47.728-38.400 47.567-38.491L46.630-39.007Q46.304-38.869 46.080-38.623Q45.856-38.377 45.856-38.058M46.278-39.912L47.154-39.432Q47.801-39.748 47.801-40.214Q47.801-40.428 47.665-40.585Q47.529-40.741 47.322-40.819Q47.116-40.897 46.902-40.897Q46.580-40.897 46.290-40.757Q46-40.618 46-40.328Q46-40.097 46.278-39.912\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M51.406-36.240L50.230-36.240L50.230-44.240L51.406-44.240L51.406-43.873L50.597-43.873L50.597-36.607L51.406-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M51.783-38.478L51.783-38.568Q51.822-38.775 52.033-38.799L52.341-38.799L52.341-42.568L52.033-42.568Q51.822-42.592 51.783-42.806L51.783-42.896Q51.822-43.103 52.033-43.127L53.982-43.127Q54.380-43.127 54.726-42.926Q55.072-42.724 55.279-42.379Q55.486-42.033 55.486-41.631Q55.486-41.224 55.281-40.881Q55.076-40.537 54.730-40.332Q54.384-40.127 53.982-40.127L52.982-40.127L52.982-38.799L53.294-38.799Q53.505-38.775 53.544-38.568L53.544-38.478Q53.505-38.263 53.294-38.240L52.033-38.240Q51.822-38.263 51.783-38.478M52.982-42.568L52.982-40.689L53.822-40.689Q54.083-40.689 54.320-40.812Q54.556-40.935 54.701-41.150Q54.845-41.365 54.845-41.631Q54.845-41.900 54.701-42.111Q54.556-42.322 54.320-42.445Q54.083-42.568 53.822-42.568L52.982-42.568M58.111-38.162Q57.661-38.162 57.296-38.386Q56.931-38.611 56.677-38.994Q56.423-39.377 56.298-39.820Q56.173-40.263 56.173-40.689Q56.173-41.115 56.298-41.554Q56.423-41.994 56.677-42.377Q56.931-42.760 57.290-42.984Q57.650-43.209 58.111-43.209Q58.388-43.209 58.646-43.117Q58.904-43.025 59.119-42.857L59.251-43.095Q59.279-43.146 59.333-43.178Q59.388-43.209 59.447-43.209L59.525-43.209Q59.619-43.197 59.681-43.138Q59.744-43.080 59.755-42.974L59.755-41.646Q59.744-41.545 59.681-41.482Q59.619-41.420 59.525-41.408L59.357-41.408Q59.255-41.420 59.193-41.486Q59.130-41.553 59.119-41.646Q59.079-41.912 58.956-42.136Q58.833-42.361 58.630-42.504Q58.427-42.646 58.165-42.646Q57.833-42.646 57.581-42.463Q57.329-42.279 57.158-41.978Q56.986-41.678 56.900-41.336Q56.814-40.994 56.814-40.689Q56.814-40.385 56.898-40.043Q56.982-39.701 57.154-39.398Q57.326-39.095 57.583-38.908Q57.841-38.720 58.173-38.720Q58.556-38.720 58.837-38.994Q59.119-39.267 59.119-39.654Q59.146-39.865 59.357-39.888L59.525-39.888Q59.755-39.849 59.755-39.623Q59.755-39.306 59.619-39.035Q59.482-38.763 59.247-38.566Q59.013-38.369 58.722-38.265Q58.431-38.162 58.111-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M63.220-40.056L60.747-40.056Q60.669-40.068 60.620-40.117Q60.572-40.166 60.572-40.240Q60.572-40.314 60.620-40.363Q60.669-40.412 60.747-40.424L63.220-40.424L63.220-42.904Q63.247-43.072 63.404-43.072Q63.478-43.072 63.527-43.023Q63.576-42.974 63.587-42.904L63.587-40.424L66.060-40.424Q66.228-40.392 66.228-40.240Q66.228-40.088 66.060-40.056L63.587-40.056L63.587-37.576Q63.576-37.506 63.527-37.457Q63.478-37.408 63.404-37.408Q63.247-37.408 63.220-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M70.296-38.240L67.136-38.240L67.136-38.447Q67.136-38.474 67.159-38.506L68.511-39.904Q68.890-40.291 69.138-40.580Q69.386-40.869 69.560-41.226Q69.733-41.584 69.733-41.974Q69.733-42.322 69.601-42.615Q69.468-42.908 69.214-43.086Q68.960-43.263 68.605-43.263Q68.245-43.263 67.954-43.068Q67.663-42.873 67.519-42.545L67.573-42.545Q67.757-42.545 67.882-42.424Q68.007-42.303 68.007-42.111Q68.007-41.931 67.882-41.803Q67.757-41.674 67.573-41.674Q67.394-41.674 67.265-41.803Q67.136-41.931 67.136-42.111Q67.136-42.513 67.356-42.849Q67.577-43.185 67.942-43.373Q68.308-43.560 68.710-43.560Q69.190-43.560 69.606-43.373Q70.022-43.185 70.274-42.824Q70.526-42.463 70.526-41.974Q70.526-41.615 70.372-41.312Q70.218-41.010 69.966-40.750Q69.714-40.490 69.364-40.205Q69.015-39.920 68.847-39.767L67.917-38.928L68.632-38.928Q70.007-38.928 70.046-38.967Q70.116-39.045 70.159-39.230Q70.202-39.416 70.245-39.705L70.526-39.705L70.296-38.240M72.315-36.240L71.140-36.240L71.140-36.607L71.948-36.607L71.948-43.873L71.140-43.873L71.140-44.240L72.315-44.240L72.315-36.240M74.140-36.834Q74.140-36.873 74.163-36.896Q74.437-37.181 74.579-37.545Q74.722-37.908 74.722-38.295Q74.624-38.240 74.499-38.240Q74.308-38.240 74.171-38.373Q74.034-38.506 74.034-38.705Q74.034-38.896 74.171-39.029Q74.308-39.162 74.499-39.162Q74.980-39.162 74.980-38.287Q74.980-37.998 74.907-37.717Q74.835-37.435 74.692-37.181Q74.550-36.928 74.355-36.720Q74.323-36.689 74.284-36.689Q74.237-36.689 74.189-36.734Q74.140-36.779 74.140-36.834M74.034-41.232Q74.034-41.416 74.171-41.553Q74.308-41.689 74.499-41.689Q74.690-41.689 74.823-41.556Q74.956-41.424 74.956-41.232Q74.956-41.033 74.823-40.900Q74.690-40.767 74.499-40.767Q74.308-40.767 74.171-40.904Q74.034-41.041 74.034-41.232\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M80.172-38.463L79.286-41.127L78.965-41.127Q78.766-41.150 78.715-41.369L78.715-41.455Q78.766-41.666 78.965-41.689L80.125-41.689Q80.321-41.670 80.371-41.455L80.371-41.369Q80.321-41.150 80.125-41.127L79.844-41.127L80.637-38.752L81.426-41.127L81.149-41.127Q80.950-41.150 80.899-41.369L80.899-41.455Q80.950-41.666 81.149-41.689L82.309-41.689Q82.504-41.666 82.555-41.455L82.555-41.369Q82.504-41.150 82.309-41.127L81.989-41.127L81.102-38.463Q81.059-38.349 80.957-38.275Q80.856-38.201 80.731-38.201L80.539-38.201Q80.422-38.201 80.319-38.273Q80.215-38.345 80.172-38.463M83.168-39.353Q83.168-39.799 83.582-40.056Q83.996-40.314 84.537-40.414Q85.079-40.513 85.586-40.521Q85.586-40.736 85.452-40.888Q85.317-41.041 85.110-41.117Q84.903-41.193 84.692-41.193Q84.348-41.193 84.188-41.170L84.188-41.111Q84.188-40.943 84.069-40.828Q83.950-40.713 83.786-40.713Q83.610-40.713 83.495-40.836Q83.379-40.959 83.379-41.127Q83.379-41.533 83.760-41.642Q84.141-41.752 84.700-41.752Q84.969-41.752 85.237-41.674Q85.504-41.595 85.729-41.445Q85.954-41.295 86.090-41.074Q86.227-40.853 86.227-40.576L86.227-38.857Q86.227-38.799 86.754-38.799Q86.950-38.779 87-38.568L87-38.478Q86.950-38.263 86.754-38.240L86.610-38.240Q86.266-38.240 86.037-38.287Q85.809-38.334 85.664-38.521Q85.204-38.201 84.496-38.201Q84.161-38.201 83.856-38.342Q83.551-38.482 83.360-38.744Q83.168-39.006 83.168-39.353M83.809-39.345Q83.809-39.072 84.051-38.916Q84.293-38.760 84.579-38.760Q84.797-38.760 85.030-38.818Q85.262-38.877 85.424-39.015Q85.586-39.154 85.586-39.377L85.586-39.967Q85.305-39.967 84.889-39.910Q84.473-39.853 84.141-39.715Q83.809-39.576 83.809-39.345M87.457-38.478L87.457-38.568Q87.508-38.775 87.704-38.799L88.809-38.799L88.809-42.568L87.704-42.568Q87.508-42.592 87.457-42.806L87.457-42.896Q87.508-43.103 87.704-43.127L89.200-43.127Q89.391-43.103 89.450-42.896L89.450-38.799L90.551-38.799Q90.750-38.775 90.801-38.568L90.801-38.478Q90.750-38.263 90.551-38.240L87.704-38.240Q87.508-38.263 87.457-38.478M91.438-38.478L91.438-38.568Q91.477-38.775 91.688-38.799L91.996-38.799L91.996-42.568L91.688-42.568Q91.477-42.592 91.438-42.806L91.438-42.896Q91.477-43.103 91.688-43.127L93.637-43.127Q94.036-43.127 94.381-42.926Q94.727-42.724 94.934-42.379Q95.141-42.033 95.141-41.631Q95.141-41.224 94.936-40.881Q94.731-40.537 94.385-40.332Q94.039-40.127 93.637-40.127L92.637-40.127L92.637-38.799L92.950-38.799Q93.161-38.775 93.200-38.568L93.200-38.478Q93.161-38.263 92.950-38.240L91.688-38.240Q91.477-38.263 91.438-38.478M92.637-42.568L92.637-40.689L93.477-40.689Q93.739-40.689 93.975-40.812Q94.211-40.935 94.356-41.150Q94.500-41.365 94.500-41.631Q94.500-41.900 94.356-42.111Q94.211-42.322 93.975-42.445Q93.739-42.568 93.477-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M103.838-39.217L98.525-39.217Q98.447-39.224 98.398-39.273Q98.350-39.322 98.350-39.400Q98.350-39.470 98.397-39.521Q98.443-39.572 98.525-39.584L103.838-39.584Q103.912-39.572 103.959-39.521Q104.006-39.470 104.006-39.400Q104.006-39.322 103.957-39.273Q103.908-39.224 103.838-39.217M103.838-40.904L98.525-40.904Q98.447-40.912 98.398-40.961Q98.350-41.010 98.350-41.088Q98.350-41.158 98.397-41.209Q98.443-41.260 98.525-41.271L103.838-41.271Q103.912-41.260 103.959-41.209Q104.006-41.158 104.006-41.088Q104.006-41.010 103.957-40.961Q103.908-40.912 103.838-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M107.034-38.478L107.034-38.568Q107.073-38.775 107.284-38.799L107.592-38.799L107.592-42.568L107.284-42.568Q107.073-42.592 107.034-42.806L107.034-42.896Q107.073-43.103 107.284-43.127L109.233-43.127Q109.631-43.127 109.977-42.926Q110.323-42.724 110.530-42.379Q110.737-42.033 110.737-41.631Q110.737-41.224 110.532-40.881Q110.327-40.537 109.981-40.332Q109.635-40.127 109.233-40.127L108.233-40.127L108.233-38.799L108.545-38.799Q108.756-38.775 108.795-38.568L108.795-38.478Q108.756-38.263 108.545-38.240L107.284-38.240Q107.073-38.263 107.034-38.478M108.233-42.568L108.233-40.689L109.073-40.689Q109.334-40.689 109.571-40.812Q109.807-40.935 109.952-41.150Q110.096-41.365 110.096-41.631Q110.096-41.900 109.952-42.111Q109.807-42.322 109.571-42.445Q109.334-42.568 109.073-42.568L108.233-42.568M113.362-38.162Q112.912-38.162 112.547-38.386Q112.182-38.611 111.928-38.994Q111.674-39.377 111.549-39.820Q111.424-40.263 111.424-40.689Q111.424-41.115 111.549-41.554Q111.674-41.994 111.928-42.377Q112.182-42.760 112.541-42.984Q112.901-43.209 113.362-43.209Q113.639-43.209 113.897-43.117Q114.155-43.025 114.370-42.857L114.502-43.095Q114.530-43.146 114.584-43.178Q114.639-43.209 114.698-43.209L114.776-43.209Q114.870-43.197 114.932-43.138Q114.995-43.080 115.006-42.974L115.006-41.646Q114.995-41.545 114.932-41.482Q114.870-41.420 114.776-41.408L114.608-41.408Q114.506-41.420 114.444-41.486Q114.381-41.553 114.370-41.646Q114.330-41.912 114.207-42.136Q114.084-42.361 113.881-42.504Q113.678-42.646 113.416-42.646Q113.084-42.646 112.832-42.463Q112.580-42.279 112.409-41.978Q112.237-41.678 112.151-41.336Q112.065-40.994 112.065-40.689Q112.065-40.385 112.149-40.043Q112.233-39.701 112.405-39.398Q112.577-39.095 112.834-38.908Q113.092-38.720 113.424-38.720Q113.807-38.720 114.088-38.994Q114.370-39.267 114.370-39.654Q114.397-39.865 114.608-39.888L114.776-39.888Q115.006-39.849 115.006-39.623Q115.006-39.306 114.870-39.035Q114.733-38.763 114.498-38.566Q114.264-38.369 113.973-38.265Q113.682-38.162 113.362-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M118.471-40.056L115.998-40.056Q115.920-40.068 115.871-40.117Q115.823-40.166 115.823-40.240Q115.823-40.314 115.871-40.363Q115.920-40.412 115.998-40.424L118.471-40.424L118.471-42.904Q118.498-43.072 118.655-43.072Q118.729-43.072 118.778-43.023Q118.827-42.974 118.838-42.904L118.838-40.424L121.311-40.424Q121.479-40.392 121.479-40.240Q121.479-40.088 121.311-40.056L118.838-40.056L118.838-37.576Q118.827-37.506 118.778-37.457Q118.729-37.408 118.655-37.408Q118.498-37.408 118.471-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 2)\">\u003Cpath d=\"M125.555-38.240L122.762-38.240L122.762-38.537Q123.824-38.537 123.824-38.799L123.824-42.967Q123.395-42.752 122.715-42.752L122.715-43.049Q123.734-43.049 124.250-43.560L124.395-43.560Q124.469-43.541 124.488-43.463L124.488-38.799Q124.488-38.537 125.555-38.537L125.555-38.240M128.328-38.072Q127.625-38.072 127.225-38.472Q126.824-38.873 126.680-39.482Q126.535-40.092 126.535-40.791Q126.535-41.314 126.606-41.777Q126.676-42.240 126.869-42.652Q127.063-43.064 127.420-43.312Q127.777-43.560 128.328-43.560Q128.879-43.560 129.236-43.312Q129.594-43.064 129.785-42.654Q129.977-42.244 130.047-41.775Q130.117-41.306 130.117-40.791Q130.117-40.092 129.975-39.484Q129.832-38.877 129.432-38.474Q129.031-38.072 128.328-38.072M128.328-38.330Q128.801-38.330 129.033-38.765Q129.266-39.201 129.320-39.740Q129.375-40.279 129.375-40.920Q129.375-41.916 129.191-42.609Q129.008-43.303 128.328-43.303Q127.961-43.303 127.740-43.064Q127.520-42.826 127.424-42.469Q127.328-42.111 127.303-41.740Q127.277-41.369 127.277-40.920Q127.277-40.279 127.332-39.740Q127.387-39.201 127.619-38.765Q127.852-38.330 128.328-38.330\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053-26.29h224.776\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(178.866 26.616)\">\u003Cpath d=\"M11.739-38.240L8.967-38.240L8.967-38.520Q9.688-38.520 9.688-38.729L9.688-42.530Q9.688-42.741 8.967-42.741L8.967-43.022L11.739-43.022Q12.224-43.022 12.660-42.827Q13.096-42.632 13.419-42.290Q13.742-41.948 13.920-41.508Q14.097-41.067 14.097-40.585Q14.097-40.099 13.913-39.676Q13.728-39.252 13.405-38.930Q13.082-38.609 12.650-38.425Q12.218-38.240 11.739-38.240M10.351-42.530L10.351-38.729Q10.351-38.589 10.440-38.554Q10.529-38.520 10.717-38.520L11.541-38.520Q12.166-38.520 12.570-38.782Q12.973-39.043 13.161-39.510Q13.349-39.976 13.349-40.585Q13.349-41.063 13.257-41.456Q13.164-41.849 12.915-42.147Q12.676-42.434 12.312-42.588Q11.948-42.741 11.541-42.741L10.717-42.741Q10.529-42.741 10.440-42.707Q10.351-42.673 10.351-42.530M14.866-39.775Q14.866-40.096 14.991-40.385Q15.116-40.674 15.342-40.897Q15.567-41.121 15.863-41.241Q16.158-41.361 16.476-41.361Q16.804-41.361 17.066-41.261Q17.327-41.162 17.503-40.980Q17.679-40.797 17.773-40.539Q17.867-40.281 17.867-39.949Q17.867-39.857 17.785-39.836L15.530-39.836L15.530-39.775Q15.530-39.187 15.813-38.804Q16.097-38.421 16.664-38.421Q16.986-38.421 17.254-38.614Q17.522-38.807 17.611-39.122Q17.618-39.163 17.693-39.177L17.785-39.177Q17.867-39.153 17.867-39.081Q17.867-39.074 17.861-39.047Q17.748-38.650 17.377-38.411Q17.006-38.172 16.582-38.172Q16.145-38.172 15.745-38.380Q15.345-38.589 15.106-38.956Q14.866-39.323 14.866-39.775M15.536-40.045L17.351-40.045Q17.351-40.322 17.254-40.574Q17.157-40.827 16.958-40.983Q16.760-41.138 16.476-41.138Q16.199-41.138 15.986-40.980Q15.772-40.821 15.654-40.566Q15.536-40.311 15.536-40.045M18.455-39.751Q18.455-40.079 18.590-40.380Q18.725-40.680 18.961-40.901Q19.197-41.121 19.501-41.241Q19.805-41.361 20.130-41.361Q20.636-41.361 20.985-41.258Q21.333-41.156 21.333-40.780Q21.333-40.633 21.236-40.532Q21.138-40.431 20.991-40.431Q20.838-40.431 20.739-40.530Q20.639-40.629 20.639-40.780Q20.639-40.968 20.780-41.060Q20.578-41.111 20.137-41.111Q19.782-41.111 19.553-40.915Q19.324-40.718 19.223-40.409Q19.122-40.099 19.122-39.751Q19.122-39.402 19.248-39.096Q19.375-38.790 19.629-38.606Q19.884-38.421 20.240-38.421Q20.462-38.421 20.646-38.505Q20.831-38.589 20.966-38.744Q21.101-38.900 21.159-39.108Q21.173-39.163 21.227-39.163L21.340-39.163Q21.371-39.163 21.393-39.139Q21.415-39.115 21.415-39.081L21.415-39.060Q21.330-38.773 21.142-38.575Q20.954-38.377 20.689-38.274Q20.424-38.172 20.130-38.172Q19.699-38.172 19.312-38.378Q18.924-38.585 18.689-38.948Q18.455-39.310 18.455-39.751M21.962-39.723Q21.962-40.065 22.097-40.364Q22.232-40.663 22.471-40.887Q22.711-41.111 23.029-41.236Q23.346-41.361 23.678-41.361Q24.122-41.361 24.522-41.145Q24.922-40.930 25.156-40.552Q25.390-40.175 25.390-39.723Q25.390-39.382 25.249-39.098Q25.107-38.814 24.862-38.607Q24.618-38.401 24.309-38.286Q23.999-38.172 23.678-38.172Q23.247-38.172 22.846-38.373Q22.444-38.575 22.203-38.927Q21.962-39.279 21.962-39.723M23.678-38.421Q24.280-38.421 24.503-38.799Q24.727-39.177 24.727-39.809Q24.727-40.421 24.493-40.780Q24.259-41.138 23.678-41.138Q22.625-41.138 22.625-39.809Q22.625-39.177 22.851-38.799Q23.076-38.421 23.678-38.421\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(178.866 26.616)\">\u003Cpath d=\"M26.221-39.751Q26.221-40.089 26.362-40.380Q26.502-40.670 26.746-40.884Q26.990-41.097 27.295-41.212Q27.599-41.326 27.924-41.326Q28.194-41.326 28.457-41.227Q28.720-41.128 28.911-40.950L28.911-42.348Q28.911-42.618 28.804-42.680Q28.696-42.741 28.385-42.741L28.385-43.022L29.462-43.097L29.462-38.913Q29.462-38.725 29.516-38.642Q29.571-38.558 29.672-38.539Q29.773-38.520 29.988-38.520L29.988-38.240L28.881-38.172L28.881-38.589Q28.464-38.172 27.838-38.172Q27.407-38.172 27.035-38.384Q26.662-38.595 26.442-38.956Q26.221-39.317 26.221-39.751M27.896-38.394Q28.105-38.394 28.291-38.466Q28.477-38.537 28.631-38.674Q28.785-38.811 28.881-38.989L28.881-40.598Q28.795-40.745 28.650-40.865Q28.505-40.985 28.335-41.044Q28.166-41.104 27.985-41.104Q27.425-41.104 27.156-40.715Q26.888-40.325 26.888-39.744Q26.888-39.173 27.122-38.783Q27.356-38.394 27.896-38.394M30.596-39.775Q30.596-40.096 30.721-40.385Q30.846-40.674 31.072-40.897Q31.297-41.121 31.593-41.241Q31.888-41.361 32.206-41.361Q32.534-41.361 32.796-41.261Q33.057-41.162 33.233-40.980Q33.409-40.797 33.503-40.539Q33.597-40.281 33.597-39.949Q33.597-39.857 33.515-39.836L31.260-39.836L31.260-39.775Q31.260-39.187 31.543-38.804Q31.827-38.421 32.394-38.421Q32.716-38.421 32.984-38.614Q33.252-38.807 33.341-39.122Q33.348-39.163 33.423-39.177L33.515-39.177Q33.597-39.153 33.597-39.081Q33.597-39.074 33.591-39.047Q33.478-38.650 33.107-38.411Q32.736-38.172 32.312-38.172Q31.875-38.172 31.475-38.380Q31.075-38.589 30.836-38.956Q30.596-39.323 30.596-39.775M31.266-40.045L33.081-40.045Q33.081-40.322 32.984-40.574Q32.886-40.827 32.688-40.983Q32.490-41.138 32.206-41.138Q31.929-41.138 31.716-40.980Q31.502-40.821 31.384-40.566Q31.266-40.311 31.266-40.045\" 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-size=\"8\">\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M21.480-38.478L21.480-38.568Q21.519-38.775 21.726-38.799L22.015-38.799L22.015-42.568L21.726-42.568Q21.519-42.592 21.480-42.806L21.480-42.896Q21.519-43.103 21.726-43.127L23.687-43.127Q23.957-43.127 24.197-43.031Q24.437-42.935 24.629-42.765Q24.820-42.595 24.929-42.367Q25.039-42.138 25.039-41.873Q25.039-41.506 24.799-41.217Q24.558-40.928 24.191-40.799Q24.472-40.736 24.705-40.562Q24.937-40.388 25.072-40.133Q25.207-39.877 25.207-39.592Q25.207-39.232 25.025-38.922Q24.844-38.611 24.529-38.426Q24.215-38.240 23.855-38.240L21.726-38.240Q21.519-38.263 21.480-38.478M22.656-40.506L22.656-38.799L23.687-38.799Q23.914-38.799 24.117-38.902Q24.320-39.006 24.445-39.185Q24.570-39.365 24.570-39.592Q24.570-39.822 24.469-40.031Q24.367-40.240 24.185-40.373Q24.004-40.506 23.777-40.506L22.656-40.506M22.656-42.568L22.656-41.064L23.519-41.064Q23.863-41.064 24.133-41.299Q24.402-41.533 24.402-41.873Q24.402-42.060 24.304-42.220Q24.207-42.381 24.041-42.474Q23.875-42.568 23.687-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M39.533-38.240L37.396-38.240Q37.361-38.240 37.330-38.281Q37.299-38.322 37.299-38.369L37.322-38.470Q37.334-38.521 37.420-38.537Q37.861-38.537 38.019-38.576Q38.178-38.615 38.221-38.842L39.299-43.162Q39.322-43.232 39.322-43.295Q39.322-43.357 39.260-43.377Q39.115-43.408 38.693-43.408Q38.588-43.435 38.588-43.537L38.619-43.638Q38.627-43.685 38.709-43.705L41.221-43.705Q41.627-43.705 42.070-43.582Q42.513-43.459 42.818-43.183Q43.123-42.908 43.123-42.486Q43.123-42.099 42.853-41.783Q42.584-41.467 42.185-41.258Q41.787-41.049 41.412-40.959Q41.721-40.834 41.918-40.595Q42.115-40.357 42.115-40.041Q42.115-39.998 42.113-39.970Q42.111-39.943 42.107-39.912L42.029-39.217Q41.998-38.928 41.998-38.806Q41.998-38.592 42.066-38.461Q42.135-38.330 42.342-38.330Q42.596-38.330 42.791-38.554Q42.986-38.779 43.053-39.056Q43.060-39.103 43.146-39.119L43.228-39.119Q43.322-39.092 43.322-39.010Q43.322-39.002 43.314-38.967Q43.263-38.752 43.119-38.541Q42.974-38.330 42.767-38.201Q42.560-38.072 42.334-38.072Q42.029-38.072 41.760-38.158Q41.490-38.244 41.318-38.443Q41.146-38.642 41.146-38.951Q41.146-39.060 41.189-39.240L41.365-39.935Q41.388-40.056 41.388-40.150Q41.388-40.486 41.127-40.668Q40.865-40.849 40.502-40.849L39.451-40.849L38.931-38.783Q38.916-38.689 38.916-38.646Q38.916-38.607 38.929-38.594Q38.943-38.580 38.978-38.568Q39.123-38.537 39.549-38.537Q39.642-38.510 39.642-38.416L39.619-38.310Q39.611-38.260 39.533-38.240M40.013-43.103L39.517-41.103L40.459-41.103Q40.803-41.103 41.119-41.172Q41.435-41.240 41.709-41.408Q41.896-41.533 42.033-41.734Q42.170-41.935 42.238-42.168Q42.306-42.400 42.306-42.623Q42.306-43.080 41.939-43.244Q41.572-43.408 41.037-43.408L40.420-43.408Q40.248-43.408 40.185-43.394Q40.123-43.381 40.090-43.322Q40.056-43.263 40.013-43.103\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M45.527-36.240L44.351-36.240L44.351-44.240L45.527-44.240L45.527-43.873L44.718-43.873L44.718-36.607L45.527-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M45.943-38.478L45.943-38.568Q46.001-38.775 46.193-38.799L46.904-38.799L46.904-41.127L46.193-41.127Q45.997-41.150 45.943-41.369L45.943-41.455Q46.001-41.666 46.193-41.689L47.294-41.689Q47.493-41.670 47.544-41.455L47.544-41.127Q47.806-41.412 48.161-41.570Q48.517-41.728 48.904-41.728Q49.197-41.728 49.431-41.594Q49.665-41.459 49.665-41.193Q49.665-41.025 49.556-40.908Q49.447-40.791 49.279-40.791Q49.126-40.791 49.011-40.902Q48.896-41.013 48.896-41.170Q48.521-41.170 48.206-40.969Q47.892-40.767 47.718-40.433Q47.544-40.099 47.544-39.720L47.544-38.799L48.490-38.799Q48.697-38.775 48.736-38.568L48.736-38.478Q48.697-38.263 48.490-38.240L46.193-38.240Q46.001-38.263 45.943-38.478M50.134-38.478L50.134-38.568Q50.173-38.775 50.380-38.799L50.669-38.799L50.669-42.568L50.380-42.568Q50.173-42.592 50.134-42.806L50.134-42.896Q50.173-43.103 50.380-43.127L52.341-43.127Q52.611-43.127 52.851-43.031Q53.091-42.935 53.282-42.765Q53.474-42.595 53.583-42.367Q53.693-42.138 53.693-41.873Q53.693-41.506 53.452-41.217Q53.212-40.928 52.845-40.799Q53.126-40.736 53.359-40.562Q53.591-40.388 53.726-40.133Q53.861-39.877 53.861-39.592Q53.861-39.232 53.679-38.922Q53.497-38.611 53.183-38.426Q52.868-38.240 52.509-38.240L50.380-38.240Q50.173-38.263 50.134-38.478M51.310-40.506L51.310-38.799L52.341-38.799Q52.568-38.799 52.771-38.902Q52.974-39.006 53.099-39.185Q53.224-39.365 53.224-39.592Q53.224-39.822 53.122-40.031Q53.021-40.240 52.839-40.373Q52.657-40.506 52.431-40.506L51.310-40.506M51.310-42.568L51.310-41.064L52.173-41.064Q52.517-41.064 52.786-41.299Q53.056-41.533 53.056-41.873Q53.056-42.060 52.958-42.220Q52.861-42.381 52.695-42.474Q52.529-42.568 52.341-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 26.185)\">\u003Cpath d=\"M55.579-36.240L54.404-36.240L54.404-36.607L55.212-36.607L55.212-43.873L54.404-43.873L54.404-44.240L55.579-44.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053-2.105h224.776\"\u002F>\u003Cg transform=\"translate(176.387 50.761)\">\u003Cpath d=\"M13.356-38.240L8.953-38.240L8.953-38.520Q9.675-38.520 9.675-38.729L9.675-42.530Q9.675-42.741 8.953-42.741L8.953-43.022L13.243-43.022L13.451-41.385L13.188-41.385Q13.130-41.856 13.028-42.121Q12.925-42.386 12.741-42.519Q12.556-42.653 12.284-42.697Q12.012-42.741 11.513-42.741L10.731-42.741Q10.543-42.741 10.454-42.707Q10.365-42.673 10.365-42.530L10.365-40.865L10.939-40.865Q11.329-40.865 11.512-40.916Q11.695-40.968 11.777-41.140Q11.859-41.313 11.859-41.685L12.122-41.685L12.122-39.764L11.859-39.764Q11.859-40.137 11.777-40.310Q11.695-40.482 11.512-40.533Q11.329-40.585 10.939-40.585L10.365-40.585L10.365-38.729Q10.365-38.589 10.454-38.554Q10.543-38.520 10.731-38.520L11.578-38.520Q12.108-38.520 12.418-38.589Q12.727-38.657 12.915-38.824Q13.103-38.992 13.210-39.294Q13.318-39.597 13.404-40.110L13.670-40.110L13.356-38.240M15.441-38.240L14.118-38.240L14.118-38.520Q14.678-38.520 15.058-38.920L15.772-39.717L14.860-40.766Q14.723-40.913 14.574-40.945Q14.426-40.978 14.159-40.978L14.159-41.258L15.659-41.258L15.659-40.978Q15.468-40.978 15.468-40.844Q15.468-40.814 15.499-40.766L16.094-40.082L16.534-40.578Q16.647-40.708 16.647-40.824Q16.647-40.886 16.610-40.932Q16.572-40.978 16.514-40.978L16.514-41.258L17.830-41.258L17.830-40.978Q17.269-40.978 16.890-40.578L16.268-39.877L17.262-38.729Q17.362-38.630 17.462-38.585Q17.563-38.541 17.674-38.531Q17.785-38.520 17.963-38.520L17.963-38.240L16.470-38.240L16.470-38.520Q16.534-38.520 16.594-38.554Q16.654-38.589 16.654-38.654Q16.654-38.701 16.623-38.729L15.947-39.515L15.413-38.920Q15.301-38.790 15.301-38.674Q15.301-38.609 15.342-38.565Q15.383-38.520 15.441-38.520L15.441-38.240M18.418-39.775Q18.418-40.096 18.543-40.385Q18.667-40.674 18.893-40.897Q19.118-41.121 19.414-41.241Q19.710-41.361 20.028-41.361Q20.356-41.361 20.617-41.261Q20.879-41.162 21.055-40.980Q21.231-40.797 21.325-40.539Q21.419-40.281 21.419-39.949Q21.419-39.857 21.337-39.836L19.081-39.836L19.081-39.775Q19.081-39.187 19.365-38.804Q19.648-38.421 20.216-38.421Q20.537-38.421 20.805-38.614Q21.074-38.807 21.162-39.122Q21.169-39.163 21.244-39.177L21.337-39.177Q21.419-39.153 21.419-39.081Q21.419-39.074 21.412-39.047Q21.299-38.650 20.928-38.411Q20.557-38.172 20.134-38.172Q19.696-38.172 19.296-38.380Q18.896-38.589 18.657-38.956Q18.418-39.323 18.418-39.775M19.088-40.045L20.903-40.045Q20.903-40.322 20.805-40.574Q20.708-40.827 20.510-40.983Q20.311-41.138 20.028-41.138Q19.751-41.138 19.537-40.980Q19.324-40.821 19.206-40.566Q19.088-40.311 19.088-40.045M22.007-39.751Q22.007-40.079 22.142-40.380Q22.277-40.680 22.512-40.901Q22.748-41.121 23.053-41.241Q23.357-41.361 23.681-41.361Q24.187-41.361 24.536-41.258Q24.885-41.156 24.885-40.780Q24.885-40.633 24.787-40.532Q24.690-40.431 24.543-40.431Q24.389-40.431 24.290-40.530Q24.191-40.629 24.191-40.780Q24.191-40.968 24.331-41.060Q24.129-41.111 23.688-41.111Q23.333-41.111 23.104-40.915Q22.875-40.718 22.774-40.409Q22.673-40.099 22.673-39.751Q22.673-39.402 22.800-39.096Q22.926-38.790 23.181-38.606Q23.435-38.421 23.791-38.421Q24.013-38.421 24.198-38.505Q24.382-38.589 24.517-38.744Q24.652-38.900 24.710-39.108Q24.724-39.163 24.779-39.163L24.891-39.163Q24.922-39.163 24.944-39.139Q24.967-39.115 24.967-39.081L24.967-39.060Q24.881-38.773 24.693-38.575Q24.505-38.377 24.240-38.274Q23.975-38.172 23.681-38.172Q23.251-38.172 22.863-38.378Q22.475-38.585 22.241-38.948Q22.007-39.310 22.007-39.751M26.129-39.074L26.129-40.578Q26.129-40.848 26.021-40.909Q25.913-40.971 25.602-40.971L25.602-41.251L26.710-41.326L26.710-39.094L26.710-39.074Q26.710-38.794 26.761-38.650Q26.812-38.507 26.954-38.450Q27.096-38.394 27.383-38.394Q27.636-38.394 27.841-38.534Q28.046-38.674 28.162-38.900Q28.279-39.125 28.279-39.375L28.279-40.578Q28.279-40.848 28.171-40.909Q28.063-40.971 27.752-40.971L27.752-41.251L28.860-41.326L28.860-38.913Q28.860-38.722 28.913-38.640Q28.966-38.558 29.066-38.539Q29.167-38.520 29.383-38.520L29.383-38.240L28.306-38.172L28.306-38.736Q28.197-38.554 28.051-38.431Q27.906-38.308 27.720-38.240Q27.533-38.172 27.332-38.172Q26.129-38.172 26.129-39.074M30.497-39.081L30.497-40.978L29.858-40.978L29.858-41.200Q30.176-41.200 30.393-41.410Q30.610-41.620 30.710-41.930Q30.811-42.239 30.811-42.547L31.078-42.547L31.078-41.258L32.155-41.258L32.155-40.978L31.078-40.978L31.078-39.094Q31.078-38.818 31.182-38.619Q31.286-38.421 31.546-38.421Q31.703-38.421 31.809-38.525Q31.915-38.630 31.965-38.783Q32.014-38.937 32.014-39.094L32.014-39.508L32.281-39.508L32.281-39.081Q32.281-38.855 32.182-38.645Q32.083-38.435 31.898-38.303Q31.714-38.172 31.485-38.172Q31.047-38.172 30.772-38.409Q30.497-38.647 30.497-39.081M33.050-39.775Q33.050-40.096 33.175-40.385Q33.300-40.674 33.525-40.897Q33.751-41.121 34.046-41.241Q34.342-41.361 34.660-41.361Q34.988-41.361 35.250-41.261Q35.511-41.162 35.687-40.980Q35.863-40.797 35.957-40.539Q36.051-40.281 36.051-39.949Q36.051-39.857 35.969-39.836L33.713-39.836L33.713-39.775Q33.713-39.187 33.997-38.804Q34.281-38.421 34.848-38.421Q35.169-38.421 35.438-38.614Q35.706-38.807 35.795-39.122Q35.802-39.163 35.877-39.177L35.969-39.177Q36.051-39.153 36.051-39.081Q36.051-39.074 36.044-39.047Q35.931-38.650 35.561-38.411Q35.190-38.172 34.766-38.172Q34.328-38.172 33.928-38.380Q33.529-38.589 33.289-38.956Q33.050-39.323 33.050-39.775M33.720-40.045L35.535-40.045Q35.535-40.322 35.438-40.574Q35.340-40.827 35.142-40.983Q34.944-41.138 34.660-41.138Q34.383-41.138 34.169-40.980Q33.956-40.821 33.838-40.566Q33.720-40.311 33.720-40.045\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(219.774 50.397)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M21.496-38.478L21.496-38.568Q21.535-38.775 21.746-38.799L22.054-38.799L22.054-42.568L21.746-42.568Q21.535-42.592 21.496-42.806L21.496-42.896Q21.535-43.103 21.746-43.127L24.953-43.127Q25.148-43.103 25.199-42.896L25.199-42.056Q25.148-41.842 24.953-41.814L24.808-41.814Q24.613-41.842 24.558-42.056L24.558-42.568L22.695-42.568L22.695-41.049L23.672-41.049L23.672-41.263Q23.722-41.470 23.922-41.498L24.066-41.498Q24.261-41.470 24.312-41.263L24.312-40.279Q24.261-40.064 24.066-40.041L23.922-40.041Q23.722-40.064 23.672-40.279L23.672-40.486L22.695-40.486L22.695-38.799L24.738-38.799L24.738-39.439Q24.789-39.646 24.984-39.674L25.129-39.674Q25.324-39.646 25.375-39.439L25.375-38.478Q25.324-38.260 25.129-38.240L21.746-38.240Q21.535-38.263 21.496-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 50.397)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 50.397)\">\u003Cpath d=\"M38.564-38.463L37.678-41.127L37.357-41.127Q37.158-41.150 37.107-41.369L37.107-41.455Q37.158-41.666 37.357-41.689L38.517-41.689Q38.713-41.670 38.763-41.455L38.763-41.369Q38.713-41.150 38.517-41.127L38.236-41.127L39.029-38.752L39.818-41.127L39.541-41.127Q39.342-41.150 39.291-41.369L39.291-41.455Q39.342-41.666 39.541-41.689L40.701-41.689Q40.896-41.666 40.947-41.455L40.947-41.369Q40.896-41.150 40.701-41.127L40.381-41.127L39.494-38.463Q39.451-38.349 39.349-38.275Q39.248-38.201 39.123-38.201L38.931-38.201Q38.814-38.201 38.711-38.273Q38.607-38.345 38.564-38.463M41.560-39.353Q41.560-39.799 41.974-40.056Q42.388-40.314 42.929-40.414Q43.471-40.513 43.978-40.521Q43.978-40.736 43.844-40.888Q43.709-41.041 43.502-41.117Q43.295-41.193 43.084-41.193Q42.740-41.193 42.580-41.170L42.580-41.111Q42.580-40.943 42.461-40.828Q42.342-40.713 42.178-40.713Q42.002-40.713 41.887-40.836Q41.771-40.959 41.771-41.127Q41.771-41.533 42.152-41.642Q42.533-41.752 43.092-41.752Q43.361-41.752 43.629-41.674Q43.896-41.595 44.121-41.445Q44.346-41.295 44.482-41.074Q44.619-40.853 44.619-40.576L44.619-38.857Q44.619-38.799 45.146-38.799Q45.342-38.779 45.392-38.568L45.392-38.478Q45.342-38.263 45.146-38.240L45.002-38.240Q44.658-38.240 44.429-38.287Q44.201-38.334 44.056-38.521Q43.596-38.201 42.888-38.201Q42.553-38.201 42.248-38.342Q41.943-38.482 41.752-38.744Q41.560-39.006 41.560-39.353M42.201-39.345Q42.201-39.072 42.443-38.916Q42.685-38.760 42.971-38.760Q43.189-38.760 43.422-38.818Q43.654-38.877 43.816-39.015Q43.978-39.154 43.978-39.377L43.978-39.967Q43.697-39.967 43.281-39.910Q42.865-39.853 42.533-39.715Q42.201-39.576 42.201-39.345M45.849-38.478L45.849-38.568Q45.900-38.775 46.096-38.799L47.201-38.799L47.201-42.568L46.096-42.568Q45.900-42.592 45.849-42.806L45.849-42.896Q45.900-43.103 46.096-43.127L47.592-43.127Q47.783-43.103 47.842-42.896L47.842-38.799L48.943-38.799Q49.142-38.775 49.193-38.568L49.193-38.478Q49.142-38.263 48.943-38.240L46.096-38.240Q45.900-38.263 45.849-38.478M49.814-38.478L49.814-38.568Q49.853-38.775 50.060-38.799L50.349-38.799L50.349-42.568L50.060-42.568Q49.853-42.592 49.814-42.806L49.814-42.896Q49.853-43.103 50.060-43.127L52.021-43.127Q52.291-43.127 52.531-43.031Q52.771-42.935 52.963-42.765Q53.154-42.595 53.263-42.367Q53.373-42.138 53.373-41.873Q53.373-41.506 53.133-41.217Q52.892-40.928 52.525-40.799Q52.806-40.736 53.039-40.562Q53.271-40.388 53.406-40.133Q53.541-39.877 53.541-39.592Q53.541-39.232 53.359-38.922Q53.178-38.611 52.863-38.426Q52.549-38.240 52.189-38.240L50.060-38.240Q49.853-38.263 49.814-38.478M50.990-40.506L50.990-38.799L52.021-38.799Q52.248-38.799 52.451-38.902Q52.654-39.006 52.779-39.185Q52.904-39.365 52.904-39.592Q52.904-39.822 52.803-40.031Q52.701-40.240 52.519-40.373Q52.338-40.506 52.111-40.506L50.990-40.506M50.990-42.568L50.990-41.064L51.853-41.064Q52.197-41.064 52.467-41.299Q52.736-41.533 52.736-41.873Q52.736-42.060 52.638-42.220Q52.541-42.381 52.375-42.474Q52.209-42.568 52.021-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 50.397)\">\u003Cpath d=\"M58.918-40.056L56.445-40.056Q56.367-40.068 56.318-40.117Q56.270-40.166 56.270-40.240Q56.270-40.314 56.318-40.363Q56.367-40.412 56.445-40.424L58.918-40.424L58.918-42.904Q58.945-43.072 59.102-43.072Q59.176-43.072 59.225-43.023Q59.274-42.974 59.285-42.904L59.285-40.424L61.758-40.424Q61.926-40.392 61.926-40.240Q61.926-40.088 61.758-40.056L59.285-40.056L59.285-37.576Q59.274-37.506 59.225-37.457Q59.176-37.408 59.102-37.408Q58.945-37.408 58.918-37.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 50.397)\">\u003Cpath d=\"M65.953-38.463L65.067-41.127L64.746-41.127Q64.547-41.150 64.496-41.369L64.496-41.455Q64.547-41.666 64.746-41.689L65.906-41.689Q66.102-41.670 66.152-41.455L66.152-41.369Q66.102-41.150 65.906-41.127L65.625-41.127L66.418-38.752L67.207-41.127L66.930-41.127Q66.731-41.150 66.680-41.369L66.680-41.455Q66.731-41.666 66.930-41.689L68.090-41.689Q68.285-41.666 68.336-41.455L68.336-41.369Q68.285-41.150 68.090-41.127L67.770-41.127L66.883-38.463Q66.840-38.349 66.738-38.275Q66.637-38.201 66.512-38.201L66.320-38.201Q66.203-38.201 66.100-38.273Q65.996-38.345 65.953-38.463M68.949-39.353Q68.949-39.799 69.363-40.056Q69.777-40.314 70.318-40.414Q70.859-40.513 71.367-40.521Q71.367-40.736 71.233-40.888Q71.098-41.041 70.891-41.117Q70.684-41.193 70.473-41.193Q70.129-41.193 69.969-41.170L69.969-41.111Q69.969-40.943 69.850-40.828Q69.731-40.713 69.567-40.713Q69.391-40.713 69.276-40.836Q69.160-40.959 69.160-41.127Q69.160-41.533 69.541-41.642Q69.922-41.752 70.481-41.752Q70.750-41.752 71.018-41.674Q71.285-41.595 71.510-41.445Q71.734-41.295 71.871-41.074Q72.008-40.853 72.008-40.576L72.008-38.857Q72.008-38.799 72.535-38.799Q72.731-38.779 72.781-38.568L72.781-38.478Q72.731-38.263 72.535-38.240L72.391-38.240Q72.047-38.240 71.818-38.287Q71.590-38.334 71.445-38.521Q70.984-38.201 70.277-38.201Q69.942-38.201 69.637-38.342Q69.332-38.482 69.141-38.744Q68.949-39.006 68.949-39.353M69.590-39.345Q69.590-39.072 69.832-38.916Q70.074-38.760 70.359-38.760Q70.578-38.760 70.811-38.818Q71.043-38.877 71.205-39.015Q71.367-39.154 71.367-39.377L71.367-39.967Q71.086-39.967 70.670-39.910Q70.254-39.853 69.922-39.715Q69.590-39.576 69.590-39.345M73.238-38.478L73.238-38.568Q73.289-38.775 73.484-38.799L74.590-38.799L74.590-42.568L73.484-42.568Q73.289-42.592 73.238-42.806L73.238-42.896Q73.289-43.103 73.484-43.127L74.981-43.127Q75.172-43.103 75.231-42.896L75.231-38.799L76.332-38.799Q76.531-38.775 76.582-38.568L76.582-38.478Q76.531-38.263 76.332-38.240L73.484-38.240Q73.289-38.263 73.238-38.478M79.301-38.162Q78.852-38.162 78.486-38.386Q78.121-38.611 77.867-38.994Q77.613-39.377 77.488-39.820Q77.363-40.263 77.363-40.689Q77.363-41.115 77.488-41.554Q77.613-41.994 77.867-42.377Q78.121-42.760 78.481-42.984Q78.840-43.209 79.301-43.209Q79.578-43.209 79.836-43.117Q80.094-43.025 80.309-42.857L80.442-43.095Q80.469-43.146 80.524-43.178Q80.578-43.209 80.637-43.209L80.715-43.209Q80.809-43.197 80.871-43.138Q80.934-43.080 80.945-42.974L80.945-41.646Q80.934-41.545 80.871-41.482Q80.809-41.420 80.715-41.408L80.547-41.408Q80.445-41.420 80.383-41.486Q80.320-41.553 80.309-41.646Q80.270-41.912 80.147-42.136Q80.024-42.361 79.820-42.504Q79.617-42.646 79.356-42.646Q79.024-42.646 78.772-42.463Q78.520-42.279 78.348-41.978Q78.176-41.678 78.090-41.336Q78.004-40.994 78.004-40.689Q78.004-40.385 78.088-40.043Q78.172-39.701 78.344-39.398Q78.516-39.095 78.774-38.908Q79.031-38.720 79.363-38.720Q79.746-38.720 80.027-38.994Q80.309-39.267 80.309-39.654Q80.336-39.865 80.547-39.888L80.715-39.888Q80.945-39.849 80.945-39.623Q80.945-39.306 80.809-39.035Q80.672-38.763 80.438-38.566Q80.203-38.369 79.912-38.265Q79.621-38.162 79.301-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053 22.08h224.776\"\u002F>\u003Cg transform=\"translate(175.54 74.266)\">\u003Cpath d=\"M10.731-38.240L8.994-38.240L8.994-38.520Q9.716-38.520 9.716-38.920L9.716-42.530Q9.716-42.741 8.994-42.741L8.994-43.022L10.351-43.022Q10.447-43.022 10.498-42.923L12.173-38.948L13.845-42.923Q13.892-43.022 13.991-43.022L15.342-43.022L15.342-42.741Q14.620-42.741 14.620-42.530L14.620-38.729Q14.620-38.520 15.342-38.520L15.342-38.240L13.284-38.240L13.284-38.520Q14.005-38.520 14.005-38.729L14.005-42.741L12.153-38.339Q12.105-38.240 11.995-38.240Q11.883-38.240 11.835-38.339L10.010-42.670L10.010-38.920Q10.010-38.520 10.731-38.520L10.731-38.240M16.035-39.775Q16.035-40.096 16.160-40.385Q16.285-40.674 16.511-40.897Q16.736-41.121 17.032-41.241Q17.327-41.361 17.645-41.361Q17.973-41.361 18.235-41.261Q18.496-41.162 18.672-40.980Q18.848-40.797 18.942-40.539Q19.036-40.281 19.036-39.949Q19.036-39.857 18.954-39.836L16.699-39.836L16.699-39.775Q16.699-39.187 16.982-38.804Q17.266-38.421 17.833-38.421Q18.155-38.421 18.423-38.614Q18.691-38.807 18.780-39.122Q18.787-39.163 18.862-39.177L18.954-39.177Q19.036-39.153 19.036-39.081Q19.036-39.074 19.030-39.047Q18.917-38.650 18.546-38.411Q18.175-38.172 17.751-38.172Q17.314-38.172 16.914-38.380Q16.514-38.589 16.275-38.956Q16.035-39.323 16.035-39.775M16.705-40.045L18.520-40.045Q18.520-40.322 18.423-40.574Q18.325-40.827 18.127-40.983Q17.929-41.138 17.645-41.138Q17.368-41.138 17.155-40.980Q16.941-40.821 16.823-40.566Q16.705-40.311 16.705-40.045M21.306-38.240L19.672-38.240L19.672-38.520Q19.901-38.520 20.050-38.554Q20.199-38.589 20.199-38.729L20.199-40.578Q20.199-40.848 20.091-40.909Q19.983-40.971 19.672-40.971L19.672-41.251L20.732-41.326L20.732-40.677Q20.903-40.985 21.207-41.156Q21.511-41.326 21.856-41.326Q22.256-41.326 22.533-41.186Q22.810-41.046 22.895-40.698Q23.063-40.991 23.362-41.159Q23.661-41.326 24.006-41.326Q24.512-41.326 24.796-41.103Q25.079-40.879 25.079-40.383L25.079-38.729Q25.079-38.592 25.228-38.556Q25.377-38.520 25.602-38.520L25.602-38.240L23.972-38.240L23.972-38.520Q24.198-38.520 24.348-38.556Q24.498-38.592 24.498-38.729L24.498-40.369Q24.498-40.704 24.379-40.904Q24.259-41.104 23.945-41.104Q23.675-41.104 23.440-40.968Q23.206-40.831 23.068-40.597Q22.929-40.363 22.929-40.089L22.929-38.729Q22.929-38.592 23.078-38.556Q23.227-38.520 23.452-38.520L23.452-38.240L21.822-38.240L21.822-38.520Q22.051-38.520 22.200-38.554Q22.348-38.589 22.348-38.729L22.348-40.369Q22.348-40.704 22.229-40.904Q22.109-41.104 21.795-41.104Q21.525-41.104 21.291-40.968Q21.056-40.831 20.918-40.597Q20.780-40.363 20.780-40.089L20.780-38.729Q20.780-38.592 20.930-38.556Q21.080-38.520 21.306-38.520L21.306-38.240M26.149-39.723Q26.149-40.065 26.284-40.364Q26.419-40.663 26.658-40.887Q26.898-41.111 27.216-41.236Q27.533-41.361 27.865-41.361Q28.309-41.361 28.709-41.145Q29.109-40.930 29.343-40.552Q29.577-40.175 29.577-39.723Q29.577-39.382 29.436-39.098Q29.294-38.814 29.049-38.607Q28.805-38.401 28.496-38.286Q28.186-38.172 27.865-38.172Q27.434-38.172 27.033-38.373Q26.631-38.575 26.390-38.927Q26.149-39.279 26.149-39.723M27.865-38.421Q28.467-38.421 28.690-38.799Q28.914-39.177 28.914-39.809Q28.914-40.421 28.680-40.780Q28.446-41.138 27.865-41.138Q26.812-41.138 26.812-39.809Q26.812-39.177 27.038-38.799Q27.263-38.421 27.865-38.421M31.922-38.240L30.186-38.240L30.186-38.520Q30.415-38.520 30.564-38.554Q30.712-38.589 30.712-38.729L30.712-40.578Q30.712-40.848 30.605-40.909Q30.497-40.971 30.186-40.971L30.186-41.251L31.215-41.326L31.215-40.619Q31.345-40.927 31.587-41.126Q31.830-41.326 32.148-41.326Q32.366-41.326 32.537-41.202Q32.708-41.077 32.708-40.865Q32.708-40.728 32.609-40.629Q32.510-40.530 32.377-40.530Q32.240-40.530 32.141-40.629Q32.042-40.728 32.042-40.865Q32.042-41.005 32.141-41.104Q31.850-41.104 31.650-40.908Q31.450-40.711 31.358-40.417Q31.266-40.123 31.266-39.843L31.266-38.729Q31.266-38.520 31.922-38.520L31.922-38.240M33.628-37.105Q33.758-37.037 33.894-37.037Q34.065-37.037 34.216-37.126Q34.366-37.215 34.477-37.360Q34.588-37.505 34.667-37.673L34.930-38.240L33.761-40.766Q33.686-40.913 33.556-40.945Q33.426-40.978 33.194-40.978L33.194-41.258L34.715-41.258L34.715-40.978Q34.366-40.978 34.366-40.831Q34.369-40.810 34.371-40.793Q34.373-40.776 34.373-40.766L35.231-38.907L36.003-40.578Q36.037-40.646 36.037-40.725Q36.037-40.838 35.954-40.908Q35.870-40.978 35.757-40.978L35.757-41.258L36.953-41.258L36.953-40.978Q36.735-40.978 36.562-40.874Q36.389-40.769 36.297-40.578L34.961-37.673Q34.790-37.303 34.520-37.057Q34.250-36.811 33.894-36.811Q33.624-36.811 33.406-36.977Q33.187-37.143 33.187-37.406Q33.187-37.543 33.279-37.632Q33.371-37.720 33.511-37.720Q33.648-37.720 33.737-37.632Q33.826-37.543 33.826-37.406Q33.826-37.303 33.773-37.225Q33.720-37.146 33.628-37.105\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M10.230-38.463L9.344-41.127L9.023-41.127Q8.824-41.150 8.773-41.369L8.773-41.455Q8.824-41.666 9.023-41.689L10.183-41.689Q10.379-41.670 10.429-41.455L10.429-41.369Q10.379-41.150 10.183-41.127L9.902-41.127L10.695-38.752L11.484-41.127L11.207-41.127Q11.008-41.150 10.957-41.369L10.957-41.455Q11.008-41.666 11.207-41.689L12.367-41.689Q12.562-41.666 12.613-41.455L12.613-41.369Q12.562-41.150 12.367-41.127L12.047-41.127L11.160-38.463Q11.117-38.349 11.015-38.275Q10.914-38.201 10.789-38.201L10.597-38.201Q10.480-38.201 10.377-38.273Q10.273-38.345 10.230-38.463M13.226-39.353Q13.226-39.799 13.640-40.056Q14.054-40.314 14.595-40.414Q15.136-40.513 15.644-40.521Q15.644-40.736 15.510-40.888Q15.375-41.041 15.168-41.117Q14.961-41.193 14.750-41.193Q14.406-41.193 14.246-41.170L14.246-41.111Q14.246-40.943 14.127-40.828Q14.008-40.713 13.844-40.713Q13.668-40.713 13.553-40.836Q13.437-40.959 13.437-41.127Q13.437-41.533 13.818-41.642Q14.199-41.752 14.758-41.752Q15.027-41.752 15.295-41.674Q15.562-41.595 15.787-41.445Q16.011-41.295 16.148-41.074Q16.285-40.853 16.285-40.576L16.285-38.857Q16.285-38.799 16.812-38.799Q17.008-38.779 17.058-38.568L17.058-38.478Q17.008-38.263 16.812-38.240L16.668-38.240Q16.324-38.240 16.095-38.287Q15.867-38.334 15.722-38.521Q15.261-38.201 14.554-38.201Q14.219-38.201 13.914-38.342Q13.609-38.482 13.418-38.744Q13.226-39.006 13.226-39.353M13.867-39.345Q13.867-39.072 14.109-38.916Q14.351-38.760 14.636-38.760Q14.855-38.760 15.088-38.818Q15.320-38.877 15.482-39.015Q15.644-39.154 15.644-39.377L15.644-39.967Q15.363-39.967 14.947-39.910Q14.531-39.853 14.199-39.715Q13.867-39.576 13.867-39.345M17.515-38.478L17.515-38.568Q17.566-38.775 17.761-38.799L18.867-38.799L18.867-42.568L17.761-42.568Q17.566-42.592 17.515-42.806L17.515-42.896Q17.566-43.103 17.761-43.127L19.258-43.127Q19.449-43.103 19.508-42.896L19.508-38.799L20.609-38.799Q20.808-38.775 20.859-38.568L20.859-38.478Q20.808-38.263 20.609-38.240L17.761-38.240Q17.566-38.263 17.515-38.478M21.426-38.478L21.426-38.568Q21.476-38.775 21.672-38.799L21.847-38.799L21.847-42.568L21.672-42.568Q21.476-42.592 21.426-42.806L21.426-42.896Q21.476-43.103 21.672-43.127L22.359-43.127Q22.488-43.127 22.588-43.051Q22.687-42.974 22.726-42.865Q22.758-42.760 22.980-42.070Q23.203-41.381 23.318-40.984Q23.433-40.588 23.433-40.513Q23.441-40.592 23.496-40.789Q23.551-40.986 23.664-41.357Q23.777-41.728 23.924-42.191Q24.070-42.654 24.136-42.865Q24.176-42.974 24.279-43.051Q24.383-43.127 24.504-43.127L25.191-43.127Q25.390-43.103 25.441-42.896L25.441-42.806Q25.390-42.592 25.191-42.568L25.015-42.568L25.015-38.799L25.191-38.799Q25.390-38.775 25.441-38.568L25.441-38.478Q25.390-38.263 25.191-38.240L24.312-38.240Q24.117-38.263 24.066-38.478L24.066-38.568Q24.117-38.775 24.312-38.799L24.488-38.799L24.488-42.486Q24.488-42.428 24.404-42.129Q24.320-41.830 24.217-41.498Q24.113-41.166 23.982-40.758Q23.851-40.349 23.785-40.135Q23.746-40.021 23.646-39.947Q23.547-39.873 23.433-39.873Q23.320-39.873 23.220-39.947Q23.121-40.021 23.082-40.135Q23.015-40.349 22.881-40.767Q22.746-41.185 22.609-41.629Q22.472-42.072 22.428-42.236Q22.383-42.400 22.375-42.486L22.375-38.799L22.551-38.799Q22.750-38.775 22.801-38.568L22.801-38.478Q22.750-38.263 22.551-38.240L21.672-38.240Q21.476-38.263 21.426-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M33.896-39.217L28.583-39.217Q28.505-39.224 28.456-39.273Q28.408-39.322 28.408-39.400Q28.408-39.470 28.455-39.521Q28.501-39.572 28.583-39.584L33.896-39.584Q33.970-39.572 34.017-39.521Q34.064-39.470 34.064-39.400Q34.064-39.322 34.015-39.273Q33.966-39.224 33.896-39.217M33.896-40.904L28.583-40.904Q28.505-40.912 28.456-40.961Q28.408-41.010 28.408-41.088Q28.408-41.158 28.455-41.209Q28.501-41.260 28.583-41.271L33.896-41.271Q33.970-41.260 34.017-41.209Q34.064-41.158 34.064-41.088Q34.064-41.010 34.015-40.961Q33.966-40.912 33.896-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M39.146-38.240L37.428-38.240Q37.388-38.240 37.361-38.281Q37.334-38.322 37.334-38.369L37.357-38.470Q37.365-38.521 37.451-38.537Q38.181-38.537 38.306-39.064L39.334-43.162Q39.357-43.232 39.357-43.295Q39.357-43.357 39.291-43.377Q39.146-43.408 38.724-43.408Q38.619-43.439 38.619-43.537L38.650-43.638Q38.662-43.685 38.740-43.705L40.138-43.705Q40.197-43.705 40.234-43.676Q40.271-43.646 40.275-43.592L40.986-39.017L43.986-43.592Q44.064-43.705 44.181-43.705L45.525-43.705Q45.572-43.693 45.599-43.662Q45.627-43.631 45.627-43.584L45.603-43.478Q45.584-43.424 45.510-43.408Q45.068-43.408 44.908-43.369Q44.760-43.334 44.701-43.103L43.619-38.783Q43.603-38.689 43.603-38.646Q43.603-38.588 43.670-38.568Q43.810-38.537 44.236-38.537Q44.334-38.510 44.334-38.416L44.306-38.310Q44.299-38.260 44.221-38.240L42.138-38.240Q42.099-38.240 42.072-38.281Q42.045-38.322 42.045-38.369L42.068-38.470Q42.076-38.521 42.166-38.537Q42.603-38.537 42.762-38.576Q42.920-38.615 42.963-38.842L44.099-43.385L40.803-38.353Q40.736-38.240 40.603-38.240Q40.471-38.240 40.459-38.353L39.685-43.318L38.603-39.010Q38.588-38.908 38.588-38.857Q38.588-38.658 38.752-38.597Q38.916-38.537 39.166-38.537Q39.260-38.510 39.260-38.416L39.236-38.310Q39.228-38.260 39.146-38.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M45.449-38.052Q45.449-38.439 45.710-38.710Q45.970-38.981 46.372-39.150L46.199-39.247Q45.950-39.394 45.796-39.612Q45.642-39.830 45.642-40.100Q45.642-40.410 45.828-40.643Q46.014-40.876 46.307-40.998Q46.600-41.119 46.902-41.119Q47.192-41.119 47.484-41.021Q47.775-40.923 47.968-40.718Q48.162-40.513 48.162-40.214Q48.162-39.895 47.952-39.675Q47.743-39.455 47.400-39.294L47.722-39.121Q48.004-38.957 48.178-38.711Q48.352-38.465 48.352-38.160Q48.352-37.797 48.137-37.535Q47.922-37.273 47.585-37.138Q47.248-37.003 46.902-37.003Q46.559-37.003 46.225-37.117Q45.891-37.232 45.670-37.467Q45.449-37.703 45.449-38.052M45.856-38.058Q45.856-37.683 46.186-37.463Q46.515-37.243 46.902-37.243Q47.136-37.243 47.377-37.318Q47.617-37.393 47.781-37.551Q47.945-37.709 47.945-37.952Q47.945-38.122 47.837-38.261Q47.728-38.400 47.567-38.491L46.630-39.007Q46.304-38.869 46.080-38.623Q45.856-38.377 45.856-38.058M46.278-39.912L47.154-39.432Q47.801-39.748 47.801-40.214Q47.801-40.428 47.665-40.585Q47.529-40.741 47.322-40.819Q47.116-40.897 46.902-40.897Q46.580-40.897 46.290-40.757Q46-40.618 46-40.328Q46-40.097 46.278-39.912\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M51.406-36.240L50.230-36.240L50.230-44.240L51.406-44.240L51.406-43.873L50.597-43.873L50.597-36.607L51.406-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M53.255-38.463L52.369-41.127L52.048-41.127Q51.849-41.150 51.798-41.369L51.798-41.455Q51.849-41.666 52.048-41.689L53.208-41.689Q53.404-41.670 53.454-41.455L53.454-41.369Q53.404-41.150 53.208-41.127L52.927-41.127L53.720-38.752L54.509-41.127L54.232-41.127Q54.033-41.150 53.982-41.369L53.982-41.455Q54.033-41.666 54.232-41.689L55.392-41.689Q55.587-41.666 55.638-41.455L55.638-41.369Q55.587-41.150 55.392-41.127L55.072-41.127L54.185-38.463Q54.142-38.349 54.040-38.275Q53.939-38.201 53.814-38.201L53.622-38.201Q53.505-38.201 53.402-38.273Q53.298-38.345 53.255-38.463M56.251-39.353Q56.251-39.799 56.665-40.056Q57.079-40.314 57.620-40.414Q58.161-40.513 58.669-40.521Q58.669-40.736 58.535-40.888Q58.400-41.041 58.193-41.117Q57.986-41.193 57.775-41.193Q57.431-41.193 57.271-41.170L57.271-41.111Q57.271-40.943 57.152-40.828Q57.033-40.713 56.869-40.713Q56.693-40.713 56.578-40.836Q56.462-40.959 56.462-41.127Q56.462-41.533 56.843-41.642Q57.224-41.752 57.783-41.752Q58.052-41.752 58.320-41.674Q58.587-41.595 58.812-41.445Q59.036-41.295 59.173-41.074Q59.310-40.853 59.310-40.576L59.310-38.857Q59.310-38.799 59.837-38.799Q60.033-38.779 60.083-38.568L60.083-38.478Q60.033-38.263 59.837-38.240L59.693-38.240Q59.349-38.240 59.120-38.287Q58.892-38.334 58.747-38.521Q58.286-38.201 57.579-38.201Q57.244-38.201 56.939-38.342Q56.634-38.482 56.443-38.744Q56.251-39.006 56.251-39.353M56.892-39.345Q56.892-39.072 57.134-38.916Q57.376-38.760 57.661-38.760Q57.880-38.760 58.113-38.818Q58.345-38.877 58.507-39.015Q58.669-39.154 58.669-39.377L58.669-39.967Q58.388-39.967 57.972-39.910Q57.556-39.853 57.224-39.715Q56.892-39.576 56.892-39.345M60.540-38.478L60.540-38.568Q60.591-38.775 60.786-38.799L61.892-38.799L61.892-42.568L60.786-42.568Q60.591-42.592 60.540-42.806L60.540-42.896Q60.591-43.103 60.786-43.127L62.283-43.127Q62.474-43.103 62.533-42.896L62.533-38.799L63.634-38.799Q63.833-38.775 63.884-38.568L63.884-38.478Q63.833-38.263 63.634-38.240L60.786-38.240Q60.591-38.263 60.540-38.478M64.521-38.478L64.521-38.568Q64.560-38.775 64.771-38.799L65.079-38.799L65.079-42.568L64.771-42.568Q64.560-42.592 64.521-42.806L64.521-42.896Q64.560-43.103 64.771-43.127L67.978-43.127Q68.173-43.103 68.224-42.896L68.224-42.056Q68.173-41.842 67.978-41.814L67.833-41.814Q67.638-41.842 67.583-42.056L67.583-42.568L65.720-42.568L65.720-41.049L66.697-41.049L66.697-41.263Q66.747-41.470 66.947-41.498L67.091-41.498Q67.286-41.470 67.337-41.263L67.337-40.279Q67.286-40.064 67.091-40.041L66.947-40.041Q66.747-40.064 66.697-40.279L66.697-40.486L65.720-40.486L65.720-38.799L67.763-38.799L67.763-39.439Q67.814-39.646 68.009-39.674L68.154-39.674Q68.349-39.646 68.400-39.439L68.400-38.478Q68.349-38.260 68.154-38.240L64.771-38.240Q64.560-38.263 64.521-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 74.555)\">\u003Cpath d=\"M69.958-36.240L68.783-36.240L68.783-36.607L69.591-36.607L69.591-43.873L68.783-43.873L68.783-44.240L69.958-44.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053 46.264h224.776\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(166.054 99.17)\">\u003Cpath d=\"M10.967-38.199L9.415-42.530Q9.353-42.673 9.191-42.707Q9.029-42.741 8.776-42.741L8.776-43.022L10.703-43.022L10.703-42.741Q10.122-42.741 10.122-42.567Q10.122-42.547 10.129-42.530L11.353-39.094L12.460-42.181L12.334-42.530Q12.276-42.673 12.110-42.707Q11.944-42.741 11.695-42.741L11.695-43.022L13.622-43.022L13.622-42.741Q13.041-42.741 13.041-42.567L13.041-42.530L14.272-39.094L15.427-42.342Q15.441-42.383 15.441-42.407Q15.441-42.581 15.248-42.661Q15.054-42.741 14.846-42.741L14.846-43.022L16.422-43.022L16.422-42.741Q16.172-42.741 15.981-42.647Q15.789-42.553 15.714-42.342L14.231-38.199Q14.197-38.100 14.097-38.100L14.019-38.100Q13.920-38.100 13.879-38.199L12.600-41.788L11.319-38.199Q11.302-38.155 11.264-38.127Q11.226-38.100 11.178-38.100L11.100-38.100Q11.008-38.100 10.967-38.199\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.054 99.17)\">\u003Cpath d=\"M18.048-38.240L16.312-38.240L16.312-38.520Q16.541-38.520 16.690-38.554Q16.838-38.589 16.838-38.729L16.838-40.578Q16.838-40.848 16.731-40.909Q16.623-40.971 16.312-40.971L16.312-41.251L17.341-41.326L17.341-40.619Q17.471-40.927 17.713-41.126Q17.956-41.326 18.274-41.326Q18.493-41.326 18.664-41.202Q18.835-41.077 18.835-40.865Q18.835-40.728 18.735-40.629Q18.636-40.530 18.503-40.530Q18.366-40.530 18.267-40.629Q18.168-40.728 18.168-40.865Q18.168-41.005 18.267-41.104Q17.977-41.104 17.777-40.908Q17.577-40.711 17.484-40.417Q17.392-40.123 17.392-39.843L17.392-38.729Q17.392-38.520 18.048-38.520L18.048-38.240M21.036-38.240L19.484-38.240L19.484-38.520Q19.710-38.520 19.858-38.554Q20.007-38.589 20.007-38.729L20.007-40.578Q20.007-40.766 19.959-40.850Q19.911-40.933 19.814-40.952Q19.716-40.971 19.505-40.971L19.505-41.251L20.561-41.326L20.561-38.729Q20.561-38.589 20.692-38.554Q20.824-38.520 21.036-38.520L21.036-38.240M19.764-42.547Q19.764-42.718 19.887-42.837Q20.010-42.957 20.181-42.957Q20.349-42.957 20.472-42.837Q20.595-42.718 20.595-42.547Q20.595-42.372 20.472-42.249Q20.349-42.126 20.181-42.126Q20.010-42.126 19.887-42.249Q19.764-42.372 19.764-42.547M22.208-39.081L22.208-40.978L21.569-40.978L21.569-41.200Q21.887-41.200 22.104-41.410Q22.321-41.620 22.422-41.930Q22.523-42.239 22.523-42.547L22.789-42.547L22.789-41.258L23.866-41.258L23.866-40.978L22.789-40.978L22.789-39.094Q22.789-38.818 22.893-38.619Q22.998-38.421 23.257-38.421Q23.415-38.421 23.521-38.525Q23.627-38.630 23.676-38.783Q23.726-38.937 23.726-39.094L23.726-39.508L23.992-39.508L23.992-39.081Q23.992-38.855 23.893-38.645Q23.794-38.435 23.609-38.303Q23.425-38.172 23.196-38.172Q22.758-38.172 22.483-38.409Q22.208-38.647 22.208-39.081M24.761-39.775Q24.761-40.096 24.886-40.385Q25.011-40.674 25.236-40.897Q25.462-41.121 25.758-41.241Q26.053-41.361 26.371-41.361Q26.699-41.361 26.961-41.261Q27.222-41.162 27.398-40.980Q27.574-40.797 27.668-40.539Q27.762-40.281 27.762-39.949Q27.762-39.857 27.680-39.836L25.424-39.836L25.424-39.775Q25.424-39.187 25.708-38.804Q25.992-38.421 26.559-38.421Q26.880-38.421 27.149-38.614Q27.417-38.807 27.506-39.122Q27.513-39.163 27.588-39.177L27.680-39.177Q27.762-39.153 27.762-39.081Q27.762-39.074 27.755-39.047Q27.643-38.650 27.272-38.411Q26.901-38.172 26.477-38.172Q26.040-38.172 25.640-38.380Q25.240-38.589 25.001-38.956Q24.761-39.323 24.761-39.775M25.431-40.045L27.246-40.045Q27.246-40.322 27.149-40.574Q27.051-40.827 26.853-40.983Q26.655-41.138 26.371-41.138Q26.094-41.138 25.881-40.980Q25.667-40.821 25.549-40.566Q25.431-40.311 25.431-40.045M30.234-39.494L28.176-39.494L28.176-39.997L30.234-39.997L30.234-39.494M31.843-38.240L31.577-38.240L31.577-42.348Q31.577-42.618 31.469-42.680Q31.361-42.741 31.050-42.741L31.050-43.022L32.130-43.097L32.130-40.927Q32.339-41.118 32.624-41.222Q32.910-41.326 33.207-41.326Q33.525-41.326 33.822-41.205Q34.120-41.084 34.342-40.868Q34.564-40.653 34.691-40.368Q34.817-40.082 34.817-39.751Q34.817-39.306 34.578-38.942Q34.338-38.578 33.945-38.375Q33.552-38.172 33.108-38.172Q32.913-38.172 32.724-38.228Q32.534-38.284 32.373-38.389Q32.213-38.493 32.072-38.654L31.843-38.240M32.158-40.585L32.158-38.968Q32.295-38.708 32.536-38.551Q32.776-38.394 33.053-38.394Q33.347-38.394 33.559-38.501Q33.771-38.609 33.904-38.801Q34.038-38.992 34.096-39.231Q34.154-39.470 34.154-39.751Q34.154-40.110 34.060-40.414Q33.966-40.718 33.739-40.911Q33.511-41.104 33.146-41.104Q32.845-41.104 32.578-40.968Q32.312-40.831 32.158-40.585M35.511-38.968Q35.511-39.300 35.735-39.527Q35.959-39.754 36.302-39.882Q36.646-40.011 37.018-40.063Q37.391-40.116 37.695-40.116L37.695-40.369Q37.695-40.574 37.587-40.754Q37.480-40.933 37.298-41.036Q37.117-41.138 36.909-41.138Q36.502-41.138 36.266-41.046Q36.355-41.009 36.401-40.925Q36.447-40.841 36.447-40.739Q36.447-40.643 36.401-40.564Q36.355-40.486 36.275-40.441Q36.194-40.397 36.106-40.397Q35.955-40.397 35.854-40.494Q35.754-40.592 35.754-40.739Q35.754-41.361 36.909-41.361Q37.121-41.361 37.370-41.297Q37.620-41.234 37.821-41.115Q38.023-40.995 38.150-40.810Q38.276-40.626 38.276-40.383L38.276-38.807Q38.276-38.691 38.338-38.595Q38.399-38.500 38.512-38.500Q38.621-38.500 38.686-38.594Q38.751-38.688 38.751-38.807L38.751-39.255L39.018-39.255L39.018-38.807Q39.018-38.537 38.790-38.372Q38.563-38.206 38.283-38.206Q38.074-38.206 37.938-38.360Q37.801-38.513 37.777-38.729Q37.630-38.462 37.348-38.317Q37.066-38.172 36.741-38.172Q36.464-38.172 36.181-38.247Q35.897-38.322 35.704-38.501Q35.511-38.681 35.511-38.968M36.126-38.968Q36.126-38.794 36.227-38.664Q36.328-38.534 36.483-38.464Q36.639-38.394 36.803-38.394Q37.022-38.394 37.230-38.491Q37.439-38.589 37.567-38.770Q37.695-38.951 37.695-39.177L37.695-39.905Q37.370-39.905 37.005-39.814Q36.639-39.723 36.382-39.511Q36.126-39.300 36.126-38.968M39.435-39.751Q39.435-40.079 39.570-40.380Q39.705-40.680 39.941-40.901Q40.176-41.121 40.481-41.241Q40.785-41.361 41.109-41.361Q41.615-41.361 41.964-41.258Q42.313-41.156 42.313-40.780Q42.313-40.633 42.215-40.532Q42.118-40.431 41.971-40.431Q41.817-40.431 41.718-40.530Q41.619-40.629 41.619-40.780Q41.619-40.968 41.759-41.060Q41.557-41.111 41.116-41.111Q40.761-41.111 40.532-40.915Q40.303-40.718 40.202-40.409Q40.101-40.099 40.101-39.751Q40.101-39.402 40.228-39.096Q40.354-38.790 40.609-38.606Q40.863-38.421 41.219-38.421Q41.441-38.421 41.626-38.505Q41.810-38.589 41.945-38.744Q42.080-38.900 42.138-39.108Q42.152-39.163 42.207-39.163L42.319-39.163Q42.350-39.163 42.372-39.139Q42.395-39.115 42.395-39.081L42.395-39.060Q42.309-38.773 42.121-38.575Q41.933-38.377 41.668-38.274Q41.403-38.172 41.109-38.172Q40.679-38.172 40.291-38.378Q39.903-38.585 39.669-38.948Q39.435-39.310 39.435-39.751\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.054 99.17)\">\u003Cpath d=\"M44.402-38.240L42.819-38.240L42.819-38.520Q43.048-38.520 43.197-38.554Q43.345-38.589 43.345-38.729L43.345-42.348Q43.345-42.618 43.238-42.680Q43.130-42.741 42.819-42.741L42.819-43.022L43.899-43.097L43.899-39.809L44.884-40.578Q45.089-40.715 45.089-40.865Q45.089-40.909 45.048-40.944Q45.007-40.978 44.962-40.978L44.962-41.258L46.326-41.258L46.326-40.978Q45.837-40.978 45.318-40.578L44.761-40.144L45.738-38.920Q45.940-38.674 46.073-38.597Q46.206-38.520 46.493-38.520L46.493-38.240L45.061-38.240L45.061-38.520Q45.249-38.520 45.249-38.633Q45.249-38.729 45.095-38.920L44.361-39.829L43.879-39.450L43.879-38.729Q43.879-38.592 44.027-38.556Q44.176-38.520 44.402-38.520\" 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-size=\"8\">\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M11.199-38.240L9.062-38.240Q9.027-38.240 8.996-38.281Q8.965-38.322 8.965-38.369L8.988-38.470Q9-38.521 9.086-38.537Q9.527-38.537 9.685-38.576Q9.844-38.615 9.886-38.842L10.965-43.162Q10.988-43.232 10.988-43.295Q10.988-43.357 10.926-43.377Q10.781-43.408 10.359-43.408Q10.254-43.435 10.254-43.537L10.285-43.638Q10.293-43.685 10.375-43.705L12.886-43.705Q13.293-43.705 13.736-43.582Q14.179-43.459 14.484-43.183Q14.789-42.908 14.789-42.486Q14.789-42.099 14.519-41.783Q14.250-41.467 13.851-41.258Q13.453-41.049 13.078-40.959Q13.386-40.834 13.584-40.595Q13.781-40.357 13.781-40.041Q13.781-39.998 13.779-39.970Q13.777-39.943 13.773-39.912L13.695-39.217Q13.664-38.928 13.664-38.806Q13.664-38.592 13.732-38.461Q13.801-38.330 14.008-38.330Q14.261-38.330 14.457-38.554Q14.652-38.779 14.719-39.056Q14.726-39.103 14.812-39.119L14.894-39.119Q14.988-39.092 14.988-39.010Q14.988-39.002 14.980-38.967Q14.929-38.752 14.785-38.541Q14.640-38.330 14.433-38.201Q14.226-38.072 14-38.072Q13.695-38.072 13.426-38.158Q13.156-38.244 12.984-38.443Q12.812-38.642 12.812-38.951Q12.812-39.060 12.855-39.240L13.031-39.935Q13.054-40.056 13.054-40.150Q13.054-40.486 12.793-40.668Q12.531-40.849 12.168-40.849L11.117-40.849L10.597-38.783Q10.582-38.689 10.582-38.646Q10.582-38.607 10.595-38.594Q10.609-38.580 10.644-38.568Q10.789-38.537 11.215-38.537Q11.308-38.510 11.308-38.416L11.285-38.310Q11.277-38.260 11.199-38.240M11.679-43.103L11.183-41.103L12.125-41.103Q12.469-41.103 12.785-41.172Q13.101-41.240 13.375-41.408Q13.562-41.533 13.699-41.734Q13.836-41.935 13.904-42.168Q13.972-42.400 13.972-42.623Q13.972-43.080 13.605-43.244Q13.238-43.408 12.703-43.408L12.086-43.408Q11.914-43.408 11.851-43.394Q11.789-43.381 11.756-43.322Q11.722-43.263 11.679-43.103\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M17.193-36.240L16.017-36.240L16.017-44.240L17.193-44.240L17.193-43.873L16.384-43.873L16.384-36.607L17.193-36.607\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M17.610-38.478L17.610-38.568Q17.668-38.775 17.860-38.799L18.571-38.799L18.571-41.127L17.860-41.127Q17.664-41.150 17.610-41.369L17.610-41.455Q17.668-41.666 17.860-41.689L18.961-41.689Q19.160-41.670 19.211-41.455L19.211-41.127Q19.473-41.412 19.828-41.570Q20.184-41.728 20.571-41.728Q20.864-41.728 21.098-41.594Q21.332-41.459 21.332-41.193Q21.332-41.025 21.223-40.908Q21.114-40.791 20.946-40.791Q20.793-40.791 20.678-40.902Q20.563-41.013 20.563-41.170Q20.188-41.170 19.873-40.969Q19.559-40.767 19.385-40.433Q19.211-40.099 19.211-39.720L19.211-38.799L20.157-38.799Q20.364-38.775 20.403-38.568L20.403-38.478Q20.364-38.263 20.157-38.240L17.860-38.240Q17.668-38.263 17.610-38.478M21.864-38.478L21.864-38.568Q21.922-38.779 22.114-38.799L22.336-38.799L23.289-42.982Q23.313-43.099 23.408-43.174Q23.504-43.248 23.617-43.248L23.891-43.248Q24.004-43.248 24.100-43.172Q24.196-43.095 24.219-42.982L25.168-38.799L25.395-38.799Q25.602-38.775 25.641-38.568L25.641-38.478Q25.590-38.263 25.395-38.240L24.313-38.240Q24.117-38.263 24.067-38.478L24.067-38.568Q24.117-38.775 24.313-38.799L24.512-38.799Q24.383-39.365 24.360-39.447L23.145-39.447Q23.102-39.263 22.992-38.799L23.192-38.799Q23.391-38.775 23.442-38.568L23.442-38.478Q23.391-38.263 23.192-38.240L22.114-38.240Q21.907-38.263 21.864-38.478M23.266-40.010L24.242-40.010Q23.762-42.142 23.762-42.486L23.754-42.486Q23.754-42.303 23.614-41.619Q23.473-40.935 23.266-40.010\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M27.246-36.240L26.071-36.240L26.071-36.607L26.879-36.607L26.879-43.873L26.071-43.873L26.071-44.240L27.246-44.240\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M36.570-39.217L31.257-39.217Q31.179-39.224 31.130-39.273Q31.082-39.322 31.082-39.400Q31.082-39.470 31.129-39.521Q31.175-39.572 31.257-39.584L36.570-39.584Q36.644-39.572 36.691-39.521Q36.738-39.470 36.738-39.400Q36.738-39.322 36.689-39.273Q36.640-39.224 36.570-39.217M36.570-40.904L31.257-40.904Q31.179-40.912 31.130-40.961Q31.082-41.010 31.082-41.088Q31.082-41.158 31.129-41.209Q31.175-41.260 31.257-41.271L36.570-41.271Q36.644-41.260 36.691-41.209Q36.738-41.158 36.738-41.088Q36.738-41.010 36.689-40.961Q36.640-40.912 36.570-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 98.74)\">\u003Cpath d=\"M41.237-38.463L40.351-41.127L40.030-41.127Q39.831-41.150 39.780-41.369L39.780-41.455Q39.831-41.666 40.030-41.689L41.190-41.689Q41.386-41.670 41.436-41.455L41.436-41.369Q41.386-41.150 41.190-41.127L40.909-41.127L41.702-38.752L42.491-41.127L42.214-41.127Q42.015-41.150 41.964-41.369L41.964-41.455Q42.015-41.666 42.214-41.689L43.374-41.689Q43.569-41.666 43.620-41.455L43.620-41.369Q43.569-41.150 43.374-41.127L43.054-41.127L42.167-38.463Q42.124-38.349 42.022-38.275Q41.921-38.201 41.796-38.201L41.604-38.201Q41.487-38.201 41.384-38.273Q41.280-38.345 41.237-38.463M44.233-39.353Q44.233-39.799 44.647-40.056Q45.061-40.314 45.602-40.414Q46.144-40.513 46.651-40.521Q46.651-40.736 46.517-40.888Q46.382-41.041 46.175-41.117Q45.968-41.193 45.757-41.193Q45.413-41.193 45.253-41.170L45.253-41.111Q45.253-40.943 45.134-40.828Q45.015-40.713 44.851-40.713Q44.675-40.713 44.560-40.836Q44.444-40.959 44.444-41.127Q44.444-41.533 44.825-41.642Q45.206-41.752 45.765-41.752Q46.034-41.752 46.302-41.674Q46.569-41.595 46.794-41.445Q47.019-41.295 47.155-41.074Q47.292-40.853 47.292-40.576L47.292-38.857Q47.292-38.799 47.819-38.799Q48.015-38.779 48.065-38.568L48.065-38.478Q48.015-38.263 47.819-38.240L47.675-38.240Q47.331-38.240 47.102-38.287Q46.874-38.334 46.729-38.521Q46.269-38.201 45.561-38.201Q45.226-38.201 44.921-38.342Q44.616-38.482 44.425-38.744Q44.233-39.006 44.233-39.353M44.874-39.345Q44.874-39.072 45.116-38.916Q45.358-38.760 45.644-38.760Q45.862-38.760 46.095-38.818Q46.327-38.877 46.489-39.015Q46.651-39.154 46.651-39.377L46.651-39.967Q46.370-39.967 45.954-39.910Q45.538-39.853 45.206-39.715Q44.874-39.576 44.874-39.345M48.522-38.478L48.522-38.568Q48.573-38.775 48.769-38.799L49.874-38.799L49.874-42.568L48.769-42.568Q48.573-42.592 48.522-42.806L48.522-42.896Q48.573-43.103 48.769-43.127L50.265-43.127Q50.456-43.103 50.515-42.896L50.515-38.799L51.616-38.799Q51.815-38.775 51.866-38.568L51.866-38.478Q51.815-38.263 51.616-38.240L48.769-38.240Q48.573-38.263 48.522-38.478M52.433-38.478L52.433-38.568Q52.483-38.775 52.679-38.799L52.854-38.799L52.854-42.568L52.679-42.568Q52.483-42.592 52.433-42.806L52.433-42.896Q52.483-43.103 52.679-43.127L53.366-43.127Q53.495-43.127 53.595-43.051Q53.694-42.974 53.733-42.865Q53.765-42.760 53.987-42.070Q54.210-41.381 54.325-40.984Q54.440-40.588 54.440-40.513Q54.448-40.592 54.503-40.789Q54.558-40.986 54.671-41.357Q54.784-41.728 54.931-42.191Q55.077-42.654 55.144-42.865Q55.183-42.974 55.286-43.051Q55.390-43.127 55.511-43.127L56.198-43.127Q56.397-43.103 56.448-42.896L56.448-42.806Q56.397-42.592 56.198-42.568L56.022-42.568L56.022-38.799L56.198-38.799Q56.397-38.775 56.448-38.568L56.448-38.478Q56.397-38.263 56.198-38.240L55.319-38.240Q55.124-38.263 55.073-38.478L55.073-38.568Q55.124-38.775 55.319-38.799L55.495-38.799L55.495-42.486Q55.495-42.428 55.411-42.129Q55.327-41.830 55.224-41.498Q55.120-41.166 54.989-40.758Q54.858-40.349 54.792-40.135Q54.753-40.021 54.653-39.947Q54.554-39.873 54.440-39.873Q54.327-39.873 54.227-39.947Q54.128-40.021 54.089-40.135Q54.022-40.349 53.888-40.767Q53.753-41.185 53.616-41.629Q53.479-42.072 53.435-42.236Q53.390-42.400 53.382-42.486L53.382-38.799L53.558-38.799Q53.757-38.775 53.808-38.568L53.808-38.478Q53.757-38.263 53.558-38.240L52.679-38.240Q52.483-38.263 52.433-38.478\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053 70.449h224.776\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(166.262 122.674)\">\u003Cpath d=\"M11.100-38.240L8.967-38.240L8.967-38.520Q9.688-38.520 9.688-38.729L9.688-42.530Q9.688-42.741 8.967-42.741L8.967-43.022L11.633-43.022Q12.043-43.022 12.464-42.868Q12.884-42.714 13.168-42.410Q13.451-42.106 13.451-41.692Q13.451-41.374 13.284-41.128Q13.116-40.882 12.840-40.716Q12.563-40.551 12.241-40.467Q11.920-40.383 11.633-40.383L10.379-40.383L10.379-38.729Q10.379-38.520 11.100-38.520L11.100-38.240M10.351-42.530L10.351-40.633L11.438-40.633Q12.047-40.633 12.361-40.870Q12.676-41.108 12.676-41.692Q12.676-42.085 12.530-42.319Q12.385-42.553 12.113-42.647Q11.842-42.741 11.438-42.741L10.717-42.741Q10.529-42.741 10.440-42.707Q10.351-42.673 10.351-42.530M14.432-40.633Q14.432-41.159 14.649-41.627Q14.866-42.095 15.249-42.441Q15.632-42.786 16.116-42.974Q16.599-43.162 17.129-43.162Q17.532-43.162 17.897-43.005Q18.261-42.847 18.544-42.553L18.968-43.135Q19.002-43.162 19.026-43.162L19.074-43.162Q19.105-43.162 19.129-43.138Q19.153-43.114 19.153-43.083L19.153-41.220Q19.153-41.197 19.127-41.171Q19.101-41.145 19.074-41.145L18.948-41.145Q18.886-41.145 18.872-41.220Q18.842-41.535 18.707-41.839Q18.572-42.143 18.356-42.377Q18.141-42.612 17.852-42.747Q17.563-42.882 17.235-42.882Q16.593-42.882 16.135-42.588Q15.677-42.294 15.444-41.781Q15.212-41.268 15.212-40.633Q15.212-40.161 15.342-39.752Q15.471-39.344 15.731-39.031Q15.991-38.719 16.370-38.549Q16.750-38.380 17.242-38.380Q17.570-38.380 17.864-38.496Q18.158-38.613 18.392-38.828Q18.626-39.043 18.756-39.332Q18.886-39.621 18.886-39.949Q18.886-39.976 18.913-40Q18.941-40.024 18.961-40.024L19.074-40.024Q19.112-40.024 19.132-39.999Q19.153-39.973 19.153-39.935Q19.153-39.539 18.987-39.202Q18.821-38.865 18.534-38.618Q18.247-38.370 17.878-38.235Q17.509-38.100 17.129-38.100Q16.610-38.100 16.117-38.290Q15.625-38.479 15.246-38.823Q14.866-39.166 14.649-39.635Q14.432-40.103 14.432-40.633\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.262 122.674)\">\u003Cpath d=\"M23.241-39.074L23.241-40.578Q23.241-40.848 23.133-40.909Q23.025-40.971 22.714-40.971L22.714-41.251L23.822-41.326L23.822-39.094L23.822-39.074Q23.822-38.794 23.873-38.650Q23.924-38.507 24.066-38.450Q24.208-38.394 24.495-38.394Q24.748-38.394 24.953-38.534Q25.158-38.674 25.274-38.900Q25.391-39.125 25.391-39.375L25.391-40.578Q25.391-40.848 25.283-40.909Q25.175-40.971 24.864-40.971L24.864-41.251L25.972-41.326L25.972-38.913Q25.972-38.722 26.025-38.640Q26.078-38.558 26.178-38.539Q26.279-38.520 26.495-38.520L26.495-38.240L25.418-38.172L25.418-38.736Q25.309-38.554 25.163-38.431Q25.018-38.308 24.832-38.240Q24.645-38.172 24.444-38.172Q23.241-38.172 23.241-39.074M28.727-36.883L27.096-36.883L27.096-37.163Q27.325-37.163 27.474-37.198Q27.623-37.232 27.623-37.372L27.623-40.718Q27.623-40.889 27.486-40.930Q27.349-40.971 27.096-40.971L27.096-41.251L28.176-41.326L28.176-40.920Q28.398-41.121 28.685-41.224Q28.973-41.326 29.280-41.326Q29.707-41.326 30.071-41.113Q30.435-40.899 30.649-40.535Q30.863-40.171 30.863-39.751Q30.863-39.306 30.623-38.942Q30.384-38.578 29.991-38.375Q29.598-38.172 29.154-38.172Q28.887-38.172 28.639-38.272Q28.392-38.373 28.204-38.554L28.204-37.372Q28.204-37.235 28.352-37.199Q28.501-37.163 28.727-37.163L28.727-36.883M28.204-40.571L28.204-38.961Q28.337-38.708 28.580-38.551Q28.822-38.394 29.099-38.394Q29.427-38.394 29.680-38.595Q29.933-38.797 30.066-39.115Q30.200-39.433 30.200-39.751Q30.200-39.980 30.135-40.209Q30.070-40.438 29.942-40.636Q29.813-40.834 29.619-40.954Q29.424-41.073 29.191-41.073Q28.897-41.073 28.629-40.944Q28.361-40.814 28.204-40.571\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(166.262 122.674)\">\u003Cpath d=\"M31.714-39.751Q31.714-40.089 31.855-40.380Q31.995-40.670 32.239-40.884Q32.483-41.097 32.788-41.212Q33.092-41.326 33.417-41.326Q33.687-41.326 33.950-41.227Q34.213-41.128 34.404-40.950L34.404-42.348Q34.404-42.618 34.297-42.680Q34.189-42.741 33.878-42.741L33.878-43.022L34.955-43.097L34.955-38.913Q34.955-38.725 35.009-38.642Q35.064-38.558 35.165-38.539Q35.266-38.520 35.481-38.520L35.481-38.240L34.374-38.172L34.374-38.589Q33.957-38.172 33.331-38.172Q32.900-38.172 32.528-38.384Q32.155-38.595 31.935-38.956Q31.714-39.317 31.714-39.751M33.389-38.394Q33.598-38.394 33.784-38.466Q33.970-38.537 34.124-38.674Q34.278-38.811 34.374-38.989L34.374-40.598Q34.288-40.745 34.143-40.865Q33.998-40.985 33.828-41.044Q33.659-41.104 33.478-41.104Q32.918-41.104 32.649-40.715Q32.381-40.325 32.381-39.744Q32.381-39.173 32.615-38.783Q32.849-38.394 33.389-38.394M36.189-38.968Q36.189-39.300 36.412-39.527Q36.636-39.754 36.980-39.882Q37.323-40.011 37.696-40.063Q38.068-40.116 38.373-40.116L38.373-40.369Q38.373-40.574 38.265-40.754Q38.157-40.933 37.976-41.036Q37.795-41.138 37.587-41.138Q37.180-41.138 36.944-41.046Q37.033-41.009 37.079-40.925Q37.125-40.841 37.125-40.739Q37.125-40.643 37.079-40.564Q37.033-40.486 36.952-40.441Q36.872-40.397 36.783-40.397Q36.633-40.397 36.532-40.494Q36.431-40.592 36.431-40.739Q36.431-41.361 37.587-41.361Q37.798-41.361 38.048-41.297Q38.297-41.234 38.499-41.115Q38.701-40.995 38.827-40.810Q38.954-40.626 38.954-40.383L38.954-38.807Q38.954-38.691 39.015-38.595Q39.077-38.500 39.190-38.500Q39.299-38.500 39.364-38.594Q39.429-38.688 39.429-38.807L39.429-39.255L39.695-39.255L39.695-38.807Q39.695-38.537 39.468-38.372Q39.241-38.206 38.961-38.206Q38.752-38.206 38.615-38.360Q38.479-38.513 38.455-38.729Q38.308-38.462 38.026-38.317Q37.744-38.172 37.419-38.172Q37.142-38.172 36.858-38.247Q36.575-38.322 36.382-38.501Q36.189-38.681 36.189-38.968M36.804-38.968Q36.804-38.794 36.905-38.664Q37.005-38.534 37.161-38.464Q37.317-38.394 37.481-38.394Q37.699-38.394 37.908-38.491Q38.116-38.589 38.244-38.770Q38.373-38.951 38.373-39.177L38.373-39.905Q38.048-39.905 37.682-39.814Q37.317-39.723 37.060-39.511Q36.804-39.300 36.804-38.968M40.639-39.081L40.639-40.978L40-40.978L40-41.200Q40.317-41.200 40.535-41.410Q40.752-41.620 40.852-41.930Q40.953-42.239 40.953-42.547L41.220-42.547L41.220-41.258L42.296-41.258L42.296-40.978L41.220-40.978L41.220-39.094Q41.220-38.818 41.324-38.619Q41.428-38.421 41.688-38.421Q41.845-38.421 41.951-38.525Q42.057-38.630 42.107-38.783Q42.156-38.937 42.156-39.094L42.156-39.508L42.423-39.508L42.423-39.081Q42.423-38.855 42.324-38.645Q42.225-38.435 42.040-38.303Q41.856-38.172 41.627-38.172Q41.189-38.172 40.914-38.409Q40.639-38.647 40.639-39.081M43.192-39.775Q43.192-40.096 43.317-40.385Q43.442-40.674 43.667-40.897Q43.893-41.121 44.188-41.241Q44.484-41.361 44.802-41.361Q45.130-41.361 45.391-41.261Q45.653-41.162 45.829-40.980Q46.005-40.797 46.099-40.539Q46.193-40.281 46.193-39.949Q46.193-39.857 46.111-39.836L43.855-39.836L43.855-39.775Q43.855-39.187 44.139-38.804Q44.422-38.421 44.990-38.421Q45.311-38.421 45.579-38.614Q45.848-38.807 45.937-39.122Q45.943-39.163 46.019-39.177L46.111-39.177Q46.193-39.153 46.193-39.081Q46.193-39.074 46.186-39.047Q46.073-38.650 45.702-38.411Q45.332-38.172 44.908-38.172Q44.470-38.172 44.070-38.380Q43.671-38.589 43.431-38.956Q43.192-39.323 43.192-39.775M43.862-40.045L45.677-40.045Q45.677-40.322 45.579-40.574Q45.482-40.827 45.284-40.983Q45.086-41.138 44.802-41.138Q44.525-41.138 44.311-40.980Q44.098-40.821 43.980-40.566Q43.862-40.311 43.862-40.045\" 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-size=\"8\">\u003Cg transform=\"translate(219.774 123.369)\">\u003Cpath d=\"M8.758-38.478L8.758-38.568Q8.797-38.775 9.008-38.799L9.316-38.799L9.316-42.568L9.008-42.568Q8.797-42.592 8.758-42.806L8.758-42.896Q8.797-43.103 9.008-43.127L10.957-43.127Q11.355-43.127 11.701-42.926Q12.047-42.724 12.254-42.379Q12.461-42.033 12.461-41.631Q12.461-41.224 12.256-40.881Q12.051-40.537 11.705-40.332Q11.359-40.127 10.957-40.127L9.957-40.127L9.957-38.799L10.269-38.799Q10.480-38.775 10.519-38.568L10.519-38.478Q10.480-38.263 10.269-38.240L9.008-38.240Q8.797-38.263 8.758-38.478M9.957-42.568L9.957-40.689L10.797-40.689Q11.058-40.689 11.295-40.812Q11.531-40.935 11.676-41.150Q11.820-41.365 11.820-41.631Q11.820-41.900 11.676-42.111Q11.531-42.322 11.295-42.445Q11.058-42.568 10.797-42.568L9.957-42.568M15.086-38.162Q14.636-38.162 14.271-38.386Q13.906-38.611 13.652-38.994Q13.398-39.377 13.273-39.820Q13.148-40.263 13.148-40.689Q13.148-41.115 13.273-41.554Q13.398-41.994 13.652-42.377Q13.906-42.760 14.265-42.984Q14.625-43.209 15.086-43.209Q15.363-43.209 15.621-43.117Q15.879-43.025 16.094-42.857L16.226-43.095Q16.254-43.146 16.308-43.178Q16.363-43.209 16.422-43.209L16.500-43.209Q16.594-43.197 16.656-43.138Q16.719-43.080 16.730-42.974L16.730-41.646Q16.719-41.545 16.656-41.482Q16.594-41.420 16.500-41.408L16.332-41.408Q16.230-41.420 16.168-41.486Q16.105-41.553 16.094-41.646Q16.054-41.912 15.931-42.136Q15.808-42.361 15.605-42.504Q15.402-42.646 15.140-42.646Q14.808-42.646 14.556-42.463Q14.304-42.279 14.133-41.978Q13.961-41.678 13.875-41.336Q13.789-40.994 13.789-40.689Q13.789-40.385 13.873-40.043Q13.957-39.701 14.129-39.398Q14.301-39.095 14.558-38.908Q14.816-38.720 15.148-38.720Q15.531-38.720 15.812-38.994Q16.094-39.267 16.094-39.654Q16.121-39.865 16.332-39.888L16.500-39.888Q16.730-39.849 16.730-39.623Q16.730-39.306 16.594-39.035Q16.457-38.763 16.222-38.566Q15.988-38.369 15.697-38.265Q15.406-38.162 15.086-38.162\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 123.369)\">\u003Cpath d=\"M25.396-39.217L20.083-39.217Q20.005-39.224 19.956-39.273Q19.908-39.322 19.908-39.400Q19.908-39.470 19.955-39.521Q20.001-39.572 20.083-39.584L25.396-39.584Q25.470-39.572 25.517-39.521Q25.564-39.470 25.564-39.400Q25.564-39.322 25.515-39.273Q25.466-39.224 25.396-39.217M25.396-40.904L20.083-40.904Q20.005-40.912 19.956-40.961Q19.908-41.010 19.908-41.088Q19.908-41.158 19.955-41.209Q20.001-41.260 20.083-41.271L25.396-41.271Q25.470-41.260 25.517-41.209Q25.564-41.158 25.564-41.088Q25.564-41.010 25.515-40.961Q25.466-40.912 25.396-40.904\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(219.774 123.369)\">\u003Cpath d=\"M30.064-38.463L29.178-41.127L28.857-41.127Q28.658-41.150 28.607-41.369L28.607-41.455Q28.658-41.666 28.857-41.689L30.017-41.689Q30.213-41.670 30.263-41.455L30.263-41.369Q30.213-41.150 30.017-41.127L29.736-41.127L30.529-38.752L31.318-41.127L31.041-41.127Q30.842-41.150 30.791-41.369L30.791-41.455Q30.842-41.666 31.041-41.689L32.201-41.689Q32.396-41.666 32.447-41.455L32.447-41.369Q32.396-41.150 32.201-41.127L31.881-41.127L30.994-38.463Q30.951-38.349 30.849-38.275Q30.748-38.201 30.623-38.201L30.431-38.201Q30.314-38.201 30.211-38.273Q30.107-38.345 30.064-38.463M33.060-39.353Q33.060-39.799 33.474-40.056Q33.888-40.314 34.429-40.414Q34.971-40.513 35.478-40.521Q35.478-40.736 35.344-40.888Q35.209-41.041 35.002-41.117Q34.795-41.193 34.584-41.193Q34.240-41.193 34.080-41.170L34.080-41.111Q34.080-40.943 33.961-40.828Q33.842-40.713 33.678-40.713Q33.502-40.713 33.387-40.836Q33.271-40.959 33.271-41.127Q33.271-41.533 33.652-41.642Q34.033-41.752 34.592-41.752Q34.861-41.752 35.129-41.674Q35.396-41.595 35.621-41.445Q35.846-41.295 35.982-41.074Q36.119-40.853 36.119-40.576L36.119-38.857Q36.119-38.799 36.646-38.799Q36.842-38.779 36.892-38.568L36.892-38.478Q36.842-38.263 36.646-38.240L36.502-38.240Q36.158-38.240 35.929-38.287Q35.701-38.334 35.556-38.521Q35.096-38.201 34.388-38.201Q34.053-38.201 33.748-38.342Q33.443-38.482 33.252-38.744Q33.060-39.006 33.060-39.353M33.701-39.345Q33.701-39.072 33.943-38.916Q34.185-38.760 34.471-38.760Q34.689-38.760 34.922-38.818Q35.154-38.877 35.316-39.015Q35.478-39.154 35.478-39.377L35.478-39.967Q35.197-39.967 34.781-39.910Q34.365-39.853 34.033-39.715Q33.701-39.576 33.701-39.345M37.349-38.478L37.349-38.568Q37.400-38.775 37.596-38.799L38.701-38.799L38.701-42.568L37.596-42.568Q37.400-42.592 37.349-42.806L37.349-42.896Q37.400-43.103 37.596-43.127L39.092-43.127Q39.283-43.103 39.342-42.896L39.342-38.799L40.443-38.799Q40.642-38.775 40.693-38.568L40.693-38.478Q40.642-38.263 40.443-38.240L37.596-38.240Q37.400-38.263 37.349-38.478M41.330-38.478L41.330-38.568Q41.369-38.775 41.580-38.799L41.888-38.799L41.888-42.568L41.580-42.568Q41.369-42.592 41.330-42.806L41.330-42.896Q41.369-43.103 41.580-43.127L43.529-43.127Q43.928-43.127 44.273-42.926Q44.619-42.724 44.826-42.379Q45.033-42.033 45.033-41.631Q45.033-41.224 44.828-40.881Q44.623-40.537 44.277-40.332Q43.931-40.127 43.529-40.127L42.529-40.127L42.529-38.799L42.842-38.799Q43.053-38.775 43.092-38.568L43.092-38.478Q43.053-38.263 42.842-38.240L41.580-38.240Q41.369-38.263 41.330-38.478M42.529-42.568L42.529-40.689L43.369-40.689Q43.631-40.689 43.867-40.812Q44.103-40.935 44.248-41.150Q44.392-41.365 44.392-41.631Q44.392-41.900 44.248-42.111Q44.103-42.322 43.867-42.445Q43.631-42.568 43.369-42.568\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M202.053 94.634h224.776\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">rmmovq rA,D(rB) (left) and mrmovq D(rB),rA (right). Both add valC to valB in Execute to form the address. rmmovq writes valA to that address and writes no register; mrmovq reads valM from it and writes valM into rA.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:548.540px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 411.405 152.078\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-72.07h398.338\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M11.267-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.137-64.048L13.349-62.411L13.082-62.411Q13.004-63.022 12.852-63.301Q12.699-63.579 12.395-63.673Q12.091-63.767 11.466-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.799L10.919-61.799Q11.288-61.799 11.472-61.853Q11.657-61.908 11.736-62.081Q11.814-62.253 11.814-62.619L12.081-62.619L12.081-60.702L11.814-60.702Q11.814-61.067 11.736-61.240Q11.657-61.412 11.472-61.465Q11.288-61.518 10.919-61.518L10.365-61.518L10.365-59.755Q10.365-59.546 11.267-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M13.361-60.801Q13.361-61.122 13.486-61.411Q13.611-61.700 13.837-61.923Q14.062-62.147 14.358-62.267Q14.653-62.387 14.971-62.387Q15.299-62.387 15.561-62.287Q15.822-62.188 15.998-62.006Q16.174-61.823 16.268-61.565Q16.362-61.307 16.362-60.975Q16.362-60.883 16.280-60.862L14.025-60.862L14.025-60.801Q14.025-60.213 14.308-59.830Q14.592-59.447 15.159-59.447Q15.481-59.447 15.749-59.640Q16.017-59.833 16.106-60.148Q16.113-60.189 16.188-60.203L16.280-60.203Q16.362-60.179 16.362-60.107Q16.362-60.100 16.356-60.073Q16.243-59.676 15.872-59.437Q15.501-59.198 15.077-59.198Q14.640-59.198 14.240-59.406Q13.840-59.615 13.601-59.982Q13.361-60.349 13.361-60.801M14.031-61.071L15.846-61.071Q15.846-61.348 15.749-61.600Q15.651-61.853 15.453-62.009Q15.255-62.164 14.971-62.164Q14.694-62.164 14.481-62.006Q14.267-61.847 14.149-61.592Q14.031-61.337 14.031-61.071M17.477-60.107L17.477-62.004L16.838-62.004L16.838-62.226Q17.155-62.226 17.372-62.436Q17.589-62.646 17.690-62.956Q17.791-63.265 17.791-63.573L18.058-63.573L18.058-62.284L19.134-62.284L19.134-62.004L18.058-62.004L18.058-60.120Q18.058-59.844 18.162-59.645Q18.266-59.447 18.526-59.447Q18.683-59.447 18.789-59.551Q18.895-59.656 18.945-59.809Q18.994-59.963 18.994-60.120L18.994-60.534L19.261-60.534L19.261-60.107Q19.261-59.881 19.162-59.671Q19.063-59.461 18.878-59.329Q18.693-59.198 18.464-59.198Q18.027-59.198 17.752-59.435Q17.477-59.673 17.477-60.107M20.071-60.777Q20.071-61.105 20.206-61.406Q20.341-61.706 20.577-61.927Q20.813-62.147 21.117-62.267Q21.421-62.387 21.746-62.387Q22.252-62.387 22.600-62.284Q22.949-62.182 22.949-61.806Q22.949-61.659 22.851-61.558Q22.754-61.457 22.607-61.457Q22.453-61.457 22.354-61.556Q22.255-61.655 22.255-61.806Q22.255-61.994 22.395-62.086Q22.193-62.137 21.753-62.137Q21.397-62.137 21.168-61.941Q20.939-61.744 20.838-61.435Q20.737-61.125 20.737-60.777Q20.737-60.428 20.864-60.122Q20.990-59.816 21.245-59.632Q21.500-59.447 21.855-59.447Q22.077-59.447 22.262-59.531Q22.446-59.615 22.581-59.770Q22.716-59.926 22.775-60.134Q22.788-60.189 22.843-60.189L22.956-60.189Q22.986-60.189 23.009-60.165Q23.031-60.141 23.031-60.107L23.031-60.086Q22.945-59.799 22.757-59.601Q22.569-59.403 22.305-59.300Q22.040-59.198 21.746-59.198Q21.315-59.198 20.927-59.404Q20.539-59.611 20.305-59.974Q20.071-60.336 20.071-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M25.105-59.266L23.471-59.266L23.471-59.546Q23.700-59.546 23.849-59.580Q23.998-59.615 23.998-59.755L23.998-63.374Q23.998-63.644 23.890-63.706Q23.782-63.767 23.471-63.767L23.471-64.048L24.551-64.123L24.551-61.737Q24.657-61.922 24.835-62.064Q25.013-62.205 25.221-62.279Q25.430-62.352 25.655-62.352Q26.161-62.352 26.445-62.129Q26.729-61.905 26.729-61.409L26.729-59.755Q26.729-59.618 26.877-59.582Q27.026-59.546 27.252-59.546L27.252-59.266L25.621-59.266L25.621-59.546Q25.850-59.546 25.999-59.580Q26.148-59.615 26.148-59.755L26.148-61.395Q26.148-61.730 26.028-61.930Q25.908-62.130 25.594-62.130Q25.324-62.130 25.090-61.994Q24.856-61.857 24.717-61.623Q24.579-61.389 24.579-61.115L24.579-59.755Q24.579-59.618 24.729-59.582Q24.880-59.546 25.105-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M10.672-59.266L8.894-59.266L8.894-59.563Q9.168-59.563 9.336-59.610Q9.504-59.657 9.504-59.825L9.504-61.961Q9.504-62.176 9.447-62.272Q9.390-62.368 9.277-62.389Q9.164-62.411 8.918-62.411L8.918-62.707L10.117-62.793L10.117-59.825Q10.117-59.657 10.263-59.610Q10.410-59.563 10.672-59.563L10.672-59.266M9.230-64.188Q9.230-64.379 9.365-64.510Q9.500-64.641 9.695-64.641Q9.816-64.641 9.920-64.578Q10.023-64.516 10.086-64.412Q10.148-64.309 10.148-64.188Q10.148-63.993 10.017-63.858Q9.886-63.723 9.695-63.723Q9.496-63.723 9.363-63.856Q9.230-63.989 9.230-64.188M11.215-60.993Q11.215-61.489 11.465-61.914Q11.715-62.340 12.135-62.586Q12.554-62.832 13.054-62.832Q13.594-62.832 13.984-62.707Q14.375-62.582 14.375-62.168Q14.375-62.063 14.324-61.971Q14.273-61.879 14.181-61.828Q14.090-61.778 13.980-61.778Q13.875-61.778 13.783-61.828Q13.691-61.879 13.640-61.971Q13.590-62.063 13.590-62.168Q13.590-62.391 13.758-62.496Q13.535-62.555 13.062-62.555Q12.765-62.555 12.551-62.416Q12.336-62.278 12.205-62.047Q12.074-61.817 12.015-61.547Q11.957-61.278 11.957-60.993Q11.957-60.598 12.090-60.248Q12.222-59.899 12.494-59.682Q12.765-59.465 13.164-59.465Q13.539-59.465 13.814-59.682Q14.090-59.899 14.191-60.258Q14.207-60.321 14.269-60.321L14.375-60.321Q14.410-60.321 14.435-60.293Q14.461-60.266 14.461-60.227L14.461-60.203Q14.328-59.723 13.943-59.455Q13.558-59.188 13.054-59.188Q12.691-59.188 12.357-59.325Q12.023-59.461 11.763-59.711Q11.504-59.961 11.359-60.297Q11.215-60.633 11.215-60.993M14.949-60.961Q14.949-61.465 15.205-61.897Q15.461-62.328 15.896-62.580Q16.332-62.832 16.832-62.832Q17.219-62.832 17.560-62.688Q17.902-62.543 18.164-62.282Q18.426-62.020 18.568-61.684Q18.711-61.348 18.711-60.961Q18.711-60.469 18.447-60.059Q18.183-59.649 17.754-59.418Q17.324-59.188 16.832-59.188Q16.340-59.188 15.906-59.420Q15.472-59.653 15.211-60.061Q14.949-60.469 14.949-60.961M16.832-59.465Q17.289-59.465 17.541-59.688Q17.793-59.911 17.881-60.262Q17.969-60.614 17.969-61.059Q17.969-61.489 17.875-61.827Q17.781-62.164 17.527-62.371Q17.273-62.578 16.832-62.578Q16.183-62.578 15.939-62.162Q15.695-61.746 15.695-61.059Q15.695-60.614 15.783-60.262Q15.871-59.911 16.123-59.688Q16.375-59.465 16.832-59.465\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M21.254-59.188Q20.773-59.188 20.365-59.432Q19.957-59.676 19.719-60.090Q19.480-60.504 19.480-60.993Q19.480-61.485 19.738-61.901Q19.996-62.317 20.428-62.555Q20.859-62.793 21.351-62.793Q21.972-62.793 22.422-62.356L22.422-63.985Q22.422-64.200 22.359-64.295Q22.297-64.391 22.179-64.412Q22.062-64.434 21.816-64.434L21.816-64.731L23.039-64.817L23.039-60.008Q23.039-59.797 23.101-59.702Q23.164-59.606 23.281-59.584Q23.398-59.563 23.648-59.563L23.648-59.266L22.398-59.188L22.398-59.672Q21.933-59.188 21.254-59.188M21.320-59.442Q21.660-59.442 21.953-59.633Q22.246-59.825 22.398-60.121L22.398-61.953Q22.250-62.227 21.988-62.383Q21.726-62.539 21.414-62.539Q20.789-62.539 20.506-62.092Q20.222-61.645 20.222-60.985Q20.222-60.340 20.474-59.891Q20.726-59.442 21.320-59.442M24.156-61.020Q24.156-61.500 24.388-61.916Q24.621-62.332 25.031-62.582Q25.441-62.832 25.918-62.832Q26.648-62.832 27.047-62.391Q27.445-61.950 27.445-61.219Q27.445-61.114 27.351-61.090L24.902-61.090L24.902-61.020Q24.902-60.610 25.023-60.254Q25.144-59.899 25.416-59.682Q25.687-59.465 26.117-59.465Q26.480-59.465 26.777-59.694Q27.074-59.922 27.176-60.274Q27.183-60.321 27.269-60.336L27.351-60.336Q27.445-60.309 27.445-60.227Q27.445-60.219 27.437-60.188Q27.375-59.961 27.236-59.778Q27.097-59.594 26.906-59.461Q26.715-59.328 26.496-59.258Q26.277-59.188 26.039-59.188Q25.668-59.188 25.330-59.325Q24.992-59.461 24.724-59.713Q24.457-59.965 24.306-60.305Q24.156-60.645 24.156-61.020M24.910-61.328L26.871-61.328Q26.871-61.633 26.769-61.924Q26.668-62.215 26.451-62.397Q26.234-62.578 25.918-62.578Q25.617-62.578 25.387-62.391Q25.156-62.203 25.033-61.912Q24.910-61.621 24.910-61.328M28.414-59.731Q28.414-59.914 28.551-60.051Q28.687-60.188 28.879-60.188Q29.070-60.188 29.203-60.055Q29.336-59.922 29.336-59.731Q29.336-59.532 29.203-59.399Q29.070-59.266 28.879-59.266Q28.687-59.266 28.551-59.403Q28.414-59.539 28.414-59.731M28.414-62.258Q28.414-62.442 28.551-62.578Q28.687-62.715 28.879-62.715Q29.070-62.715 29.203-62.582Q29.336-62.450 29.336-62.258Q29.336-62.059 29.203-61.926Q29.070-61.793 28.879-61.793Q28.687-61.793 28.551-61.930Q28.414-62.067 28.414-62.258M32.152-59.266L30.375-59.266L30.375-59.563Q30.648-59.563 30.816-59.610Q30.984-59.657 30.984-59.825L30.984-61.961Q30.984-62.176 30.928-62.272Q30.871-62.368 30.758-62.389Q30.644-62.411 30.398-62.411L30.398-62.707L31.597-62.793L31.597-59.825Q31.597-59.657 31.744-59.610Q31.890-59.563 32.152-59.563L32.152-59.266M30.711-64.188Q30.711-64.379 30.845-64.510Q30.980-64.641 31.176-64.641Q31.297-64.641 31.400-64.578Q31.504-64.516 31.566-64.412Q31.629-64.309 31.629-64.188Q31.629-63.993 31.498-63.858Q31.367-63.723 31.176-63.723Q30.976-63.723 30.844-63.856Q30.711-63.989 30.711-64.188M34.719-59.266L32.734-59.266L32.734-59.563Q33.008-59.563 33.176-59.610Q33.344-59.657 33.344-59.825L33.344-62.418L32.703-62.418L32.703-62.715L33.344-62.715L33.344-63.649Q33.344-63.914 33.461-64.151Q33.578-64.387 33.771-64.551Q33.965-64.715 34.213-64.807Q34.461-64.899 34.726-64.899Q35.011-64.899 35.236-64.741Q35.461-64.582 35.461-64.305Q35.461-64.149 35.355-64.039Q35.250-63.930 35.086-63.930Q34.929-63.930 34.820-64.039Q34.711-64.149 34.711-64.305Q34.711-64.512 34.871-64.618Q34.773-64.641 34.679-64.641Q34.449-64.641 34.277-64.485Q34.105-64.328 34.019-64.092Q33.933-63.856 33.933-63.633L33.933-62.715L34.902-62.715L34.902-62.418L33.957-62.418L33.957-59.825Q33.957-59.657 34.183-59.610Q34.410-59.563 34.719-59.563L34.719-59.266M35.929-60.219L35.929-61.961Q35.929-62.176 35.867-62.272Q35.804-62.368 35.685-62.389Q35.566-62.411 35.320-62.411L35.320-62.707L36.566-62.793L36.566-60.243L36.566-60.219Q36.566-59.907 36.621-59.745Q36.676-59.582 36.826-59.512Q36.976-59.442 37.297-59.442Q37.726-59.442 38-59.780Q38.273-60.118 38.273-60.563L38.273-61.961Q38.273-62.176 38.211-62.272Q38.148-62.368 38.029-62.389Q37.910-62.411 37.664-62.411L37.664-62.707L38.910-62.793L38.910-60.008Q38.910-59.797 38.972-59.702Q39.035-59.606 39.154-59.584Q39.273-59.563 39.519-59.563L39.519-59.266L38.297-59.188L38.297-59.809Q38.129-59.520 37.847-59.354Q37.566-59.188 37.246-59.188Q35.929-59.188 35.929-60.219M41.894-59.266L40.039-59.266L40.039-59.563Q40.312-59.563 40.480-59.610Q40.648-59.657 40.648-59.825L40.648-61.961Q40.648-62.176 40.586-62.272Q40.523-62.368 40.404-62.389Q40.285-62.411 40.039-62.411L40.039-62.707L41.230-62.793L41.230-62.059Q41.344-62.274 41.537-62.442Q41.730-62.610 41.969-62.702Q42.207-62.793 42.461-62.793Q43.629-62.793 43.629-61.715L43.629-59.825Q43.629-59.657 43.799-59.610Q43.969-59.563 44.238-59.563L44.238-59.266L42.383-59.266L42.383-59.563Q42.656-59.563 42.824-59.610Q42.992-59.657 42.992-59.825L42.992-61.700Q42.992-62.082 42.871-62.311Q42.750-62.539 42.398-62.539Q42.086-62.539 41.832-62.377Q41.578-62.215 41.431-61.946Q41.285-61.676 41.285-61.379L41.285-59.825Q41.285-59.657 41.455-59.610Q41.625-59.563 41.894-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M53.258-60.243L47.945-60.243Q47.867-60.250 47.818-60.299Q47.770-60.348 47.770-60.426Q47.770-60.496 47.817-60.547Q47.863-60.598 47.945-60.610L53.258-60.610Q53.332-60.598 53.379-60.547Q53.426-60.496 53.426-60.426Q53.426-60.348 53.377-60.299Q53.328-60.250 53.258-60.243M53.258-61.930L47.945-61.930Q47.867-61.938 47.818-61.987Q47.770-62.036 47.770-62.114Q47.770-62.184 47.817-62.235Q47.863-62.286 47.945-62.297L53.258-62.297Q53.332-62.286 53.379-62.235Q53.426-62.184 53.426-62.114Q53.426-62.036 53.377-61.987Q53.328-61.938 53.258-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M57.581-60.145L57.518-60.145Q57.659-59.793 57.983-59.582Q58.307-59.371 58.694-59.371Q59.288-59.371 59.538-59.805Q59.788-60.239 59.788-60.875Q59.788-61.469 59.618-61.916Q59.448-62.364 58.948-62.364Q58.651-62.364 58.446-62.284Q58.241-62.203 58.139-62.112Q58.038-62.020 57.923-61.887Q57.807-61.754 57.757-61.739L57.686-61.739Q57.600-61.762 57.581-61.840L57.581-64.489Q57.612-64.586 57.686-64.586Q57.702-64.586 57.710-64.584Q57.718-64.582 57.725-64.578Q58.311-64.328 58.909-64.328Q59.491-64.328 60.108-64.586L60.132-64.586Q60.175-64.586 60.202-64.561Q60.229-64.536 60.229-64.496L60.229-64.418Q60.229-64.387 60.206-64.364Q59.909-64.012 59.487-63.815Q59.065-63.618 58.604-63.618Q58.257-63.618 57.878-63.723L57.878-62.227Q58.096-62.422 58.372-62.520Q58.647-62.618 58.948-62.618Q59.405-62.618 59.774-62.370Q60.143-62.121 60.350-61.717Q60.557-61.313 60.557-60.868Q60.557-60.379 60.302-59.971Q60.046-59.563 59.614-59.330Q59.182-59.098 58.694-59.098Q58.300-59.098 57.944-59.289Q57.589-59.481 57.378-59.815Q57.167-60.149 57.167-60.563Q57.167-60.743 57.284-60.856Q57.401-60.969 57.581-60.969Q57.698-60.969 57.790-60.916Q57.882-60.864 57.934-60.772Q57.987-60.680 57.987-60.563Q57.987-60.379 57.874-60.262Q57.761-60.145 57.581-60.145M61.706-59.731Q61.706-59.914 61.843-60.051Q61.979-60.188 62.171-60.188Q62.362-60.188 62.495-60.055Q62.628-59.922 62.628-59.731Q62.628-59.532 62.495-59.399Q62.362-59.266 62.171-59.266Q61.979-59.266 61.843-59.403Q61.706-59.539 61.706-59.731M61.706-62.258Q61.706-62.442 61.843-62.578Q61.979-62.715 62.171-62.715Q62.362-62.715 62.495-62.582Q62.628-62.450 62.628-62.258Q62.628-62.059 62.495-61.926Q62.362-61.793 62.171-61.793Q61.979-61.793 61.843-61.930Q61.706-62.067 61.706-62.258M65.468-59.098Q64.764-59.098 64.364-59.498Q63.964-59.899 63.819-60.508Q63.675-61.118 63.675-61.817Q63.675-62.340 63.745-62.803Q63.815-63.266 64.009-63.678Q64.202-64.090 64.559-64.338Q64.917-64.586 65.468-64.586Q66.018-64.586 66.376-64.338Q66.733-64.090 66.925-63.680Q67.116-63.270 67.186-62.801Q67.257-62.332 67.257-61.817Q67.257-61.118 67.114-60.510Q66.971-59.903 66.571-59.500Q66.171-59.098 65.468-59.098M65.468-59.356Q65.940-59.356 66.173-59.791Q66.405-60.227 66.460-60.766Q66.514-61.305 66.514-61.946Q66.514-62.942 66.331-63.635Q66.147-64.328 65.468-64.328Q65.100-64.328 64.880-64.090Q64.659-63.852 64.563-63.495Q64.468-63.137 64.442-62.766Q64.417-62.395 64.417-61.946Q64.417-61.305 64.471-60.766Q64.526-60.227 64.759-59.791Q64.991-59.356 65.468-59.356M68.417-57.860Q68.417-57.899 68.440-57.922Q68.714-58.207 68.856-58.571Q68.999-58.934 68.999-59.321Q68.901-59.266 68.776-59.266Q68.585-59.266 68.448-59.399Q68.311-59.532 68.311-59.731Q68.311-59.922 68.448-60.055Q68.585-60.188 68.776-60.188Q69.257-60.188 69.257-59.313Q69.257-59.024 69.184-58.743Q69.112-58.461 68.970-58.207Q68.827-57.953 68.632-57.746Q68.600-57.715 68.561-57.715Q68.514-57.715 68.466-57.760Q68.417-57.805 68.417-57.860M68.311-62.258Q68.311-62.442 68.448-62.578Q68.585-62.715 68.776-62.715Q68.968-62.715 69.100-62.582Q69.233-62.450 69.233-62.258Q69.233-62.059 69.100-61.926Q68.968-61.793 68.776-61.793Q68.585-61.793 68.448-61.930Q68.311-62.067 68.311-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M75.043-59.266L73.063-59.266L73.063-59.563Q73.332-59.563 73.500-59.608Q73.668-59.653 73.668-59.825L73.668-61.961Q73.668-62.176 73.606-62.272Q73.543-62.368 73.426-62.389Q73.309-62.411 73.063-62.411L73.063-62.707L74.231-62.793L74.231-62.008Q74.309-62.219 74.461-62.405Q74.613-62.590 74.813-62.692Q75.012-62.793 75.238-62.793Q75.484-62.793 75.676-62.649Q75.867-62.504 75.867-62.274Q75.867-62.118 75.762-62.008Q75.656-61.899 75.500-61.899Q75.344-61.899 75.234-62.008Q75.125-62.118 75.125-62.274Q75.125-62.434 75.231-62.539Q74.906-62.539 74.692-62.311Q74.477-62.082 74.381-61.743Q74.285-61.403 74.285-61.098L74.285-59.825Q74.285-59.657 74.512-59.610Q74.738-59.563 75.043-59.563L75.043-59.266M78.149-59.266L76.399-59.266L76.399-59.563Q77.098-59.563 77.285-60.043L79.086-64.868Q79.141-64.977 79.254-64.977L79.324-64.977Q79.438-64.977 79.492-64.868L81.383-59.825Q81.461-59.657 81.664-59.610Q81.867-59.563 82.180-59.563L82.180-59.266L79.957-59.266L79.957-59.563Q80.598-59.563 80.598-59.778Q80.598-59.797 80.596-59.807Q80.594-59.817 80.590-59.825L80.125-61.059L77.981-61.059L77.598-60.043Q77.594-60.028 77.588-59.998Q77.582-59.969 77.582-59.946Q77.582-59.805 77.672-59.721Q77.762-59.637 77.895-59.600Q78.027-59.563 78.149-59.563L78.149-59.266M79.055-63.922L78.086-61.356L80.012-61.356L79.055-63.922M83.188-59.731Q83.188-59.914 83.324-60.051Q83.461-60.188 83.652-60.188Q83.844-60.188 83.977-60.055Q84.109-59.922 84.109-59.731Q84.109-59.532 83.977-59.399Q83.844-59.266 83.652-59.266Q83.461-59.266 83.324-59.403Q83.188-59.539 83.188-59.731M83.188-62.258Q83.188-62.442 83.324-62.578Q83.461-62.715 83.652-62.715Q83.844-62.715 83.977-62.582Q84.109-62.450 84.109-62.258Q84.109-62.059 83.977-61.926Q83.844-61.793 83.652-61.793Q83.461-61.793 83.324-61.930Q83.188-62.067 83.188-62.258M87.074-59.266L85.094-59.266L85.094-59.563Q85.363-59.563 85.531-59.608Q85.699-59.653 85.699-59.825L85.699-61.961Q85.699-62.176 85.637-62.272Q85.574-62.368 85.457-62.389Q85.340-62.411 85.094-62.411L85.094-62.707L86.262-62.793L86.262-62.008Q86.340-62.219 86.492-62.405Q86.645-62.590 86.844-62.692Q87.043-62.793 87.270-62.793Q87.516-62.793 87.707-62.649Q87.899-62.504 87.899-62.274Q87.899-62.118 87.793-62.008Q87.688-61.899 87.531-61.899Q87.375-61.899 87.266-62.008Q87.156-62.118 87.156-62.274Q87.156-62.434 87.262-62.539Q86.938-62.539 86.723-62.311Q86.508-62.082 86.412-61.743Q86.317-61.403 86.317-61.098L86.317-59.825Q86.317-59.657 86.543-59.610Q86.770-59.563 87.074-59.563L87.074-59.266M91.789-59.266L88.508-59.266L88.508-59.563Q88.832-59.563 89.074-59.610Q89.317-59.657 89.317-59.825L89.317-64.168Q89.317-64.340 89.074-64.387Q88.832-64.434 88.508-64.434L88.508-64.731L91.555-64.731Q91.981-64.731 92.414-64.577Q92.848-64.422 93.143-64.114Q93.438-63.805 93.438-63.371Q93.438-63.118 93.313-62.901Q93.188-62.684 92.986-62.528Q92.785-62.371 92.553-62.272Q92.320-62.172 92.063-62.121Q92.438-62.086 92.817-61.909Q93.195-61.731 93.436-61.432Q93.676-61.133 93.676-60.739Q93.676-60.286 93.393-59.952Q93.109-59.618 92.674-59.442Q92.238-59.266 91.789-59.266M90.027-61.977L90.027-59.825Q90.027-59.653 90.119-59.608Q90.211-59.563 90.430-59.563L91.555-59.563Q91.793-59.563 92.027-59.651Q92.262-59.739 92.447-59.899Q92.633-60.059 92.734-60.272Q92.836-60.485 92.836-60.739Q92.836-61.059 92.684-61.344Q92.531-61.629 92.262-61.803Q91.992-61.977 91.676-61.977L90.027-61.977M90.027-64.168L90.027-62.235L91.317-62.235Q91.559-62.235 91.797-62.317Q92.035-62.399 92.219-62.545Q92.402-62.692 92.516-62.909Q92.629-63.125 92.629-63.371Q92.629-63.582 92.543-63.784Q92.457-63.985 92.311-64.127Q92.164-64.270 91.969-64.352Q91.774-64.434 91.555-64.434L90.430-64.434Q90.211-64.434 90.119-64.391Q90.027-64.348 90.027-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M102.961-60.243L97.648-60.243Q97.570-60.250 97.521-60.299Q97.473-60.348 97.473-60.426Q97.473-60.496 97.520-60.547Q97.566-60.598 97.648-60.610L102.961-60.610Q103.035-60.598 103.082-60.547Q103.129-60.496 103.129-60.426Q103.129-60.348 103.080-60.299Q103.031-60.250 102.961-60.243M102.961-61.930L97.648-61.930Q97.570-61.938 97.521-61.987Q97.473-62.036 97.473-62.114Q97.473-62.184 97.520-62.235Q97.566-62.286 97.648-62.297L102.961-62.297Q103.035-62.286 103.082-62.235Q103.129-62.184 103.129-62.114Q103.129-62.036 103.080-61.987Q103.031-61.938 102.961-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M108.566-59.098Q107.863-59.098 107.463-59.498Q107.062-59.899 106.918-60.508Q106.773-61.118 106.773-61.817Q106.773-62.340 106.843-62.803Q106.914-63.266 107.107-63.678Q107.300-64.090 107.658-64.338Q108.015-64.586 108.566-64.586Q109.117-64.586 109.474-64.338Q109.832-64.090 110.023-63.680Q110.215-63.270 110.285-62.801Q110.355-62.332 110.355-61.817Q110.355-61.118 110.213-60.510Q110.070-59.903 109.670-59.500Q109.269-59.098 108.566-59.098M108.566-59.356Q109.039-59.356 109.271-59.791Q109.504-60.227 109.558-60.766Q109.613-61.305 109.613-61.946Q109.613-62.942 109.429-63.635Q109.246-64.328 108.566-64.328Q108.199-64.328 107.978-64.090Q107.757-63.852 107.662-63.495Q107.566-63.137 107.541-62.766Q107.515-62.395 107.515-61.946Q107.515-61.305 107.570-60.766Q107.625-60.227 107.857-59.791Q108.090-59.356 108.566-59.356M111.410-59.731Q111.410-59.914 111.547-60.051Q111.683-60.188 111.875-60.188Q112.066-60.188 112.199-60.055Q112.332-59.922 112.332-59.731Q112.332-59.532 112.199-59.399Q112.066-59.266 111.875-59.266Q111.683-59.266 111.547-59.403Q111.410-59.539 111.410-59.731M111.410-62.258Q111.410-62.442 111.547-62.578Q111.683-62.715 111.875-62.715Q112.066-62.715 112.199-62.582Q112.332-62.450 112.332-62.258Q112.332-62.059 112.199-61.926Q112.066-61.793 111.875-61.793Q111.683-61.793 111.547-61.930Q111.410-62.067 111.410-62.258M116.636-59.266L113.476-59.266L113.476-59.473Q113.476-59.500 113.500-59.532L114.851-60.930Q115.230-61.317 115.478-61.606Q115.726-61.895 115.900-62.252Q116.074-62.610 116.074-63Q116.074-63.348 115.941-63.641Q115.808-63.934 115.554-64.112Q115.300-64.289 114.945-64.289Q114.586-64.289 114.295-64.094Q114.004-63.899 113.859-63.571L113.914-63.571Q114.097-63.571 114.222-63.450Q114.347-63.328 114.347-63.137Q114.347-62.957 114.222-62.828Q114.097-62.700 113.914-62.700Q113.734-62.700 113.605-62.828Q113.476-62.957 113.476-63.137Q113.476-63.539 113.697-63.875Q113.918-64.211 114.283-64.399Q114.648-64.586 115.050-64.586Q115.531-64.586 115.947-64.399Q116.363-64.211 116.615-63.850Q116.867-63.489 116.867-63Q116.867-62.641 116.713-62.338Q116.558-62.036 116.306-61.776Q116.054-61.516 115.705-61.231Q115.355-60.946 115.187-60.793L114.257-59.953L114.972-59.953Q116.347-59.953 116.386-59.993Q116.457-60.071 116.500-60.256Q116.543-60.442 116.586-60.731L116.867-60.731L116.636-59.266M118.121-57.860Q118.121-57.899 118.144-57.922Q118.418-58.207 118.560-58.571Q118.703-58.934 118.703-59.321Q118.605-59.266 118.480-59.266Q118.289-59.266 118.152-59.399Q118.015-59.532 118.015-59.731Q118.015-59.922 118.152-60.055Q118.289-60.188 118.480-60.188Q118.961-60.188 118.961-59.313Q118.961-59.024 118.888-58.743Q118.816-58.461 118.674-58.207Q118.531-57.953 118.336-57.746Q118.304-57.715 118.265-57.715Q118.218-57.715 118.170-57.760Q118.121-57.805 118.121-57.860M118.015-62.258Q118.015-62.442 118.152-62.578Q118.289-62.715 118.480-62.715Q118.672-62.715 118.804-62.582Q118.937-62.450 118.937-62.258Q118.937-62.059 118.804-61.926Q118.672-61.793 118.480-61.793Q118.289-61.793 118.152-61.930Q118.015-62.067 118.015-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M124.540-59.297L123.317-62.153Q123.235-62.328 123.091-62.373Q122.946-62.418 122.677-62.418L122.677-62.715L124.388-62.715L124.388-62.418Q123.966-62.418 123.966-62.235Q123.966-62.200 123.981-62.153L124.927-59.961L125.767-61.938Q125.806-62.016 125.806-62.106Q125.806-62.246 125.700-62.332Q125.595-62.418 125.454-62.418L125.454-62.715L126.806-62.715L126.806-62.418Q126.282-62.418 126.067-61.938L124.942-59.297Q124.880-59.188 124.774-59.188L124.708-59.188Q124.595-59.188 124.540-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M126.851-60.098Q126.851-60.582 127.253-60.877Q127.656-61.172 128.206-61.291Q128.757-61.411 129.249-61.411L129.249-61.700Q129.249-61.926 129.134-62.133Q129.019-62.340 128.822-62.459Q128.624-62.578 128.394-62.578Q127.968-62.578 127.683-62.473Q127.753-62.446 127.800-62.391Q127.847-62.336 127.872-62.266Q127.898-62.196 127.898-62.121Q127.898-62.016 127.847-61.924Q127.796-61.832 127.704-61.782Q127.613-61.731 127.507-61.731Q127.402-61.731 127.310-61.782Q127.218-61.832 127.167-61.924Q127.117-62.016 127.117-62.121Q127.117-62.539 127.505-62.686Q127.894-62.832 128.394-62.832Q128.726-62.832 129.079-62.702Q129.433-62.571 129.661-62.317Q129.890-62.063 129.890-61.715L129.890-59.914Q129.890-59.782 129.962-59.672Q130.035-59.563 130.163-59.563Q130.288-59.563 130.357-59.668Q130.425-59.774 130.425-59.914L130.425-60.426L130.706-60.426L130.706-59.914Q130.706-59.711 130.589-59.553Q130.472-59.395 130.290-59.311Q130.109-59.227 129.906-59.227Q129.675-59.227 129.523-59.399Q129.370-59.571 129.339-59.801Q129.179-59.520 128.870-59.354Q128.562-59.188 128.210-59.188Q127.699-59.188 127.275-59.411Q126.851-59.633 126.851-60.098M127.538-60.098Q127.538-59.813 127.765-59.627Q127.992-59.442 128.285-59.442Q128.531-59.442 128.755-59.559Q128.980-59.676 129.115-59.879Q129.249-60.082 129.249-60.336L129.249-61.168Q128.984-61.168 128.699-61.114Q128.413-61.059 128.142-60.930Q127.870-60.801 127.704-60.594Q127.538-60.387 127.538-60.098M132.913-59.266L131.081-59.266L131.081-59.563Q131.355-59.563 131.523-59.610Q131.691-59.657 131.691-59.825L131.691-63.985Q131.691-64.200 131.628-64.295Q131.566-64.391 131.447-64.412Q131.327-64.434 131.081-64.434L131.081-64.731L132.304-64.817L132.304-59.825Q132.304-59.657 132.472-59.610Q132.640-59.563 132.913-59.563L132.913-59.266M133.593-62Q133.593-62.594 133.826-63.125Q134.058-63.657 134.474-64.057Q134.890-64.457 135.423-64.678Q135.956-64.899 136.562-64.899Q136.999-64.899 137.398-64.717Q137.796-64.536 138.105-64.203L138.577-64.868Q138.609-64.899 138.640-64.899L138.687-64.899Q138.714-64.899 138.745-64.868Q138.777-64.836 138.777-64.809L138.777-62.672Q138.777-62.649 138.745-62.618Q138.714-62.586 138.687-62.586L138.570-62.586Q138.542-62.586 138.511-62.618Q138.480-62.649 138.480-62.672Q138.480-62.938 138.337-63.291Q138.195-63.645 138.015-63.883Q137.761-64.215 137.411-64.409Q137.062-64.602 136.656-64.602Q136.152-64.602 135.699-64.383Q135.245-64.164 134.952-63.770Q134.456-63.102 134.456-62Q134.456-61.469 134.593-61.002Q134.730-60.536 135.005-60.170Q135.281-59.805 135.701-59.600Q136.120-59.395 136.663-59.395Q137.152-59.395 137.576-59.639Q137.999-59.883 138.247-60.303Q138.495-60.723 138.495-61.219Q138.495-61.254 138.525-61.280Q138.554-61.305 138.585-61.305L138.687-61.305Q138.730-61.305 138.753-61.276Q138.777-61.246 138.777-61.203Q138.777-60.766 138.601-60.377Q138.425-59.989 138.115-59.705Q137.804-59.422 137.394-59.260Q136.984-59.098 136.562-59.098Q135.972-59.098 135.431-59.319Q134.890-59.539 134.474-59.944Q134.058-60.348 133.826-60.877Q133.593-61.407 133.593-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M148.059-60.243L142.746-60.243Q142.668-60.250 142.619-60.299Q142.571-60.348 142.571-60.426Q142.571-60.496 142.618-60.547Q142.664-60.598 142.746-60.610L148.059-60.610Q148.133-60.598 148.180-60.547Q148.227-60.496 148.227-60.426Q148.227-60.348 148.178-60.299Q148.129-60.250 148.059-60.243M148.059-61.930L142.746-61.930Q142.668-61.938 142.619-61.987Q142.571-62.036 142.571-62.114Q142.571-62.184 142.618-62.235Q142.664-62.286 142.746-62.297L148.059-62.297Q148.133-62.286 148.180-62.235Q148.227-62.184 148.227-62.114Q148.227-62.036 148.178-61.987Q148.129-61.938 148.059-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M153.664-59.098Q152.961-59.098 152.561-59.498Q152.160-59.899 152.016-60.508Q151.871-61.118 151.871-61.817Q151.871-62.340 151.941-62.803Q152.012-63.266 152.205-63.678Q152.398-64.090 152.756-64.338Q153.113-64.586 153.664-64.586Q154.215-64.586 154.572-64.338Q154.930-64.090 155.121-63.680Q155.313-63.270 155.383-62.801Q155.453-62.332 155.453-61.817Q155.453-61.118 155.311-60.510Q155.168-59.903 154.768-59.500Q154.367-59.098 153.664-59.098M153.664-59.356Q154.137-59.356 154.369-59.791Q154.602-60.227 154.656-60.766Q154.711-61.305 154.711-61.946Q154.711-62.942 154.527-63.635Q154.344-64.328 153.664-64.328Q153.297-64.328 153.076-64.090Q152.856-63.852 152.760-63.495Q152.664-63.137 152.639-62.766Q152.613-62.395 152.613-61.946Q152.613-61.305 152.668-60.766Q152.723-60.227 152.955-59.791Q153.188-59.356 153.664-59.356M157.414-59.266L155.918-59.266L155.918-59.563Q156.551-59.563 156.973-60.043L157.742-60.953L156.750-62.153Q156.594-62.332 156.432-62.375Q156.270-62.418 155.965-62.418L155.965-62.715L157.652-62.715L157.652-62.418Q157.559-62.418 157.482-62.375Q157.406-62.332 157.406-62.243Q157.406-62.200 157.438-62.153L158.094-61.364L158.574-61.938Q158.691-62.075 158.691-62.211Q158.691-62.301 158.641-62.360Q158.590-62.418 158.508-62.418L158.508-62.715L159.996-62.715L159.996-62.418Q159.359-62.418 158.949-61.938L158.270-61.137L159.356-59.825Q159.516-59.649 159.676-59.606Q159.836-59.563 160.141-59.563L160.141-59.266L158.453-59.266L158.453-59.563Q158.543-59.563 158.621-59.606Q158.699-59.649 158.699-59.739Q158.699-59.762 158.668-59.825L157.926-60.731L157.340-60.043Q157.223-59.907 157.223-59.770Q157.223-59.684 157.273-59.623Q157.324-59.563 157.414-59.563L157.414-59.266M160.621-60.489Q160.621-60.985 160.947-61.350Q161.273-61.715 161.797-61.961L161.527-62.121Q161.231-62.305 161.047-62.600Q160.863-62.895 160.863-63.235Q160.863-63.629 161.082-63.940Q161.301-64.250 161.654-64.418Q162.008-64.586 162.391-64.586Q162.664-64.586 162.938-64.508Q163.211-64.430 163.428-64.282Q163.645-64.133 163.781-63.907Q163.918-63.680 163.918-63.387Q163.918-62.981 163.648-62.674Q163.379-62.368 162.957-62.153L163.406-61.883Q163.625-61.746 163.793-61.553Q163.961-61.360 164.059-61.121Q164.156-60.883 164.156-60.625Q164.156-60.286 164.006-59.998Q163.856-59.711 163.609-59.514Q163.363-59.317 163.039-59.207Q162.715-59.098 162.391-59.098Q161.961-59.098 161.555-59.260Q161.148-59.422 160.885-59.741Q160.621-60.059 160.621-60.489M161.109-60.489Q161.109-60.004 161.500-59.688Q161.891-59.371 162.391-59.371Q162.684-59.371 162.982-59.483Q163.281-59.594 163.475-59.813Q163.668-60.032 163.668-60.344Q163.668-60.575 163.527-60.786Q163.387-60.996 163.180-61.114L162.070-61.793Q161.652-61.590 161.381-61.254Q161.109-60.918 161.109-60.489M161.695-62.922L162.684-62.321Q163.031-62.504 163.258-62.774Q163.484-63.043 163.484-63.387Q163.484-63.606 163.393-63.782Q163.301-63.957 163.147-64.080Q162.992-64.203 162.791-64.274Q162.590-64.344 162.391-64.344Q161.984-64.344 161.639-64.133Q161.293-63.922 161.293-63.539Q161.293-63.356 161.404-63.194Q161.516-63.032 161.695-62.922M165.340-57.860Q165.340-57.899 165.363-57.922Q165.637-58.207 165.779-58.571Q165.922-58.934 165.922-59.321Q165.824-59.266 165.699-59.266Q165.508-59.266 165.371-59.399Q165.234-59.532 165.234-59.731Q165.234-59.922 165.371-60.055Q165.508-60.188 165.699-60.188Q166.180-60.188 166.180-59.313Q166.180-59.024 166.107-58.743Q166.035-58.461 165.893-58.207Q165.750-57.953 165.555-57.746Q165.523-57.715 165.484-57.715Q165.438-57.715 165.389-57.760Q165.340-57.805 165.340-57.860M165.234-62.258Q165.234-62.442 165.371-62.578Q165.508-62.715 165.699-62.715Q165.891-62.715 166.023-62.582Q166.156-62.450 166.156-62.258Q166.156-62.059 166.023-61.926Q165.891-61.793 165.699-61.793Q165.508-61.793 165.371-61.930Q165.234-62.067 165.234-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M171.762-59.297L170.539-62.153Q170.457-62.328 170.313-62.373Q170.168-62.418 169.899-62.418L169.899-62.715L171.610-62.715L171.610-62.418Q171.188-62.418 171.188-62.235Q171.188-62.200 171.203-62.153L172.149-59.961L172.989-61.938Q173.028-62.016 173.028-62.106Q173.028-62.246 172.922-62.332Q172.817-62.418 172.676-62.418L172.676-62.715L174.028-62.715L174.028-62.418Q173.504-62.418 173.289-61.938L172.164-59.297Q172.102-59.188 171.996-59.188L171.930-59.188Q171.817-59.188 171.762-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M174.073-60.098Q174.073-60.582 174.475-60.877Q174.878-61.172 175.428-61.291Q175.979-61.411 176.471-61.411L176.471-61.700Q176.471-61.926 176.356-62.133Q176.241-62.340 176.044-62.459Q175.846-62.578 175.616-62.578Q175.190-62.578 174.905-62.473Q174.975-62.446 175.022-62.391Q175.069-62.336 175.094-62.266Q175.120-62.196 175.120-62.121Q175.120-62.016 175.069-61.924Q175.018-61.832 174.926-61.782Q174.835-61.731 174.729-61.731Q174.624-61.731 174.532-61.782Q174.440-61.832 174.389-61.924Q174.339-62.016 174.339-62.121Q174.339-62.539 174.727-62.686Q175.116-62.832 175.616-62.832Q175.948-62.832 176.301-62.702Q176.655-62.571 176.883-62.317Q177.112-62.063 177.112-61.715L177.112-59.914Q177.112-59.782 177.184-59.672Q177.257-59.563 177.385-59.563Q177.510-59.563 177.579-59.668Q177.647-59.774 177.647-59.914L177.647-60.426L177.928-60.426L177.928-59.914Q177.928-59.711 177.811-59.553Q177.694-59.395 177.512-59.311Q177.331-59.227 177.128-59.227Q176.897-59.227 176.745-59.399Q176.592-59.571 176.561-59.801Q176.401-59.520 176.092-59.354Q175.784-59.188 175.432-59.188Q174.921-59.188 174.497-59.411Q174.073-59.633 174.073-60.098M174.760-60.098Q174.760-59.813 174.987-59.627Q175.214-59.442 175.507-59.442Q175.753-59.442 175.977-59.559Q176.202-59.676 176.337-59.879Q176.471-60.082 176.471-60.336L176.471-61.168Q176.206-61.168 175.921-61.114Q175.635-61.059 175.364-60.930Q175.092-60.801 174.926-60.594Q174.760-60.387 174.760-60.098M180.135-59.266L178.303-59.266L178.303-59.563Q178.577-59.563 178.745-59.610Q178.913-59.657 178.913-59.825L178.913-63.985Q178.913-64.200 178.850-64.295Q178.788-64.391 178.669-64.412Q178.549-64.434 178.303-64.434L178.303-64.731L179.526-64.817L179.526-59.825Q179.526-59.657 179.694-59.610Q179.862-59.563 180.135-59.563L180.135-59.266M183.077-59.266L180.694-59.266L180.694-59.563Q181.018-59.563 181.260-59.610Q181.503-59.657 181.503-59.825L181.503-64.168Q181.503-64.340 181.260-64.387Q181.018-64.434 180.694-64.434L180.694-64.731L183.639-64.731Q183.983-64.731 184.339-64.631Q184.694-64.532 184.989-64.340Q185.284-64.149 185.466-63.864Q185.647-63.578 185.647-63.219Q185.647-62.746 185.337-62.411Q185.026-62.075 184.561-61.903Q184.096-61.731 183.639-61.731L182.272-61.731L182.272-59.825Q182.272-59.657 182.514-59.610Q182.757-59.563 183.077-59.563L183.077-59.266M182.245-64.168L182.245-62L183.421-62Q184.108-62 184.446-62.276Q184.784-62.551 184.784-63.219Q184.784-63.883 184.446-64.159Q184.108-64.434 183.421-64.434L182.647-64.434Q182.428-64.434 182.337-64.391Q182.245-64.348 182.245-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M194.924-60.243L189.611-60.243Q189.533-60.250 189.484-60.299Q189.436-60.348 189.436-60.426Q189.436-60.496 189.483-60.547Q189.529-60.598 189.611-60.610L194.924-60.610Q194.998-60.598 195.045-60.547Q195.092-60.496 195.092-60.426Q195.092-60.348 195.043-60.299Q194.994-60.250 194.924-60.243M194.924-61.930L189.611-61.930Q189.533-61.938 189.484-61.987Q189.436-62.036 189.436-62.114Q189.436-62.184 189.483-62.235Q189.529-62.286 189.611-62.297L194.924-62.297Q194.998-62.286 195.045-62.235Q195.092-62.184 195.092-62.114Q195.092-62.036 195.043-61.987Q194.994-61.938 194.924-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M201.141-59.266L198.759-59.266L198.759-59.563Q199.083-59.563 199.325-59.610Q199.567-59.657 199.567-59.825L199.567-64.168Q199.567-64.340 199.325-64.387Q199.083-64.434 198.759-64.434L198.759-64.731L201.704-64.731Q202.048-64.731 202.403-64.631Q202.759-64.532 203.053-64.340Q203.348-64.149 203.530-63.864Q203.712-63.578 203.712-63.219Q203.712-62.746 203.401-62.411Q203.091-62.075 202.626-61.903Q202.161-61.731 201.704-61.731L200.337-61.731L200.337-59.825Q200.337-59.657 200.579-59.610Q200.821-59.563 201.141-59.563L201.141-59.266M200.309-64.168L200.309-62L201.485-62Q202.173-62 202.511-62.276Q202.848-62.551 202.848-63.219Q202.848-63.883 202.511-64.159Q202.173-64.434 201.485-64.434L200.712-64.434Q200.493-64.434 200.401-64.391Q200.309-64.348 200.309-64.168M204.657-62Q204.657-62.594 204.889-63.125Q205.122-63.657 205.538-64.057Q205.954-64.457 206.487-64.678Q207.020-64.899 207.626-64.899Q208.063-64.899 208.462-64.717Q208.860-64.536 209.169-64.203L209.641-64.868Q209.673-64.899 209.704-64.899L209.751-64.899Q209.778-64.899 209.809-64.868Q209.841-64.836 209.841-64.809L209.841-62.672Q209.841-62.649 209.809-62.618Q209.778-62.586 209.751-62.586L209.634-62.586Q209.606-62.586 209.575-62.618Q209.544-62.649 209.544-62.672Q209.544-62.938 209.401-63.291Q209.259-63.645 209.079-63.883Q208.825-64.215 208.475-64.409Q208.126-64.602 207.720-64.602Q207.216-64.602 206.762-64.383Q206.309-64.164 206.016-63.770Q205.520-63.102 205.520-62Q205.520-61.469 205.657-61.002Q205.794-60.536 206.069-60.170Q206.345-59.805 206.764-59.600Q207.184-59.395 207.727-59.395Q208.216-59.395 208.639-59.639Q209.063-59.883 209.311-60.303Q209.559-60.723 209.559-61.219Q209.559-61.254 209.589-61.280Q209.618-61.305 209.649-61.305L209.751-61.305Q209.794-61.305 209.817-61.276Q209.841-61.246 209.841-61.203Q209.841-60.766 209.665-60.377Q209.489-59.989 209.178-59.705Q208.868-59.422 208.458-59.260Q208.048-59.098 207.626-59.098Q207.036-59.098 206.495-59.319Q205.954-59.539 205.538-59.944Q205.122-60.348 204.889-60.877Q204.657-61.407 204.657-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M216.281-61.082L213.808-61.082Q213.730-61.094 213.681-61.143Q213.633-61.192 213.633-61.266Q213.633-61.340 213.681-61.389Q213.730-61.438 213.808-61.450L216.281-61.450L216.281-63.930Q216.308-64.098 216.465-64.098Q216.539-64.098 216.588-64.049Q216.637-64 216.648-63.930L216.648-61.450L219.121-61.450Q219.289-61.418 219.289-61.266Q219.289-61.114 219.121-61.082L216.648-61.082L216.648-58.602Q216.637-58.532 216.588-58.483Q216.539-58.434 216.465-58.434Q216.308-58.434 216.281-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M226.199-59.266L223.406-59.266L223.406-59.563Q224.468-59.563 224.468-59.825L224.468-63.993Q224.039-63.778 223.359-63.778L223.359-64.075Q224.378-64.075 224.894-64.586L225.039-64.586Q225.113-64.567 225.132-64.489L225.132-59.825Q225.132-59.563 226.199-59.563L226.199-59.266M228.972-59.098Q228.269-59.098 227.869-59.498Q227.468-59.899 227.324-60.508Q227.179-61.118 227.179-61.817Q227.179-62.340 227.250-62.803Q227.320-63.266 227.513-63.678Q227.707-64.090 228.064-64.338Q228.421-64.586 228.972-64.586Q229.523-64.586 229.880-64.338Q230.238-64.090 230.429-63.680Q230.621-63.270 230.691-62.801Q230.761-62.332 230.761-61.817Q230.761-61.118 230.619-60.510Q230.476-59.903 230.076-59.500Q229.675-59.098 228.972-59.098M228.972-59.356Q229.445-59.356 229.677-59.791Q229.910-60.227 229.964-60.766Q230.019-61.305 230.019-61.946Q230.019-62.942 229.835-63.635Q229.652-64.328 228.972-64.328Q228.605-64.328 228.384-64.090Q228.164-63.852 228.068-63.495Q227.972-63.137 227.947-62.766Q227.921-62.395 227.921-61.946Q227.921-61.305 227.976-60.766Q228.031-60.227 228.263-59.791Q228.496-59.356 228.972-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-47.316h398.338\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M11.739-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.739-64.048Q12.224-64.048 12.660-63.853Q13.096-63.658 13.419-63.316Q13.742-62.974 13.920-62.534Q14.097-62.093 14.097-61.611Q14.097-61.125 13.913-60.702Q13.728-60.278 13.405-59.956Q13.082-59.635 12.650-59.451Q12.218-59.266 11.739-59.266M10.351-63.556L10.351-59.755Q10.351-59.615 10.440-59.580Q10.529-59.546 10.717-59.546L11.541-59.546Q12.166-59.546 12.570-59.808Q12.973-60.069 13.161-60.536Q13.349-61.002 13.349-61.611Q13.349-62.089 13.257-62.482Q13.164-62.875 12.915-63.173Q12.676-63.460 12.312-63.614Q11.948-63.767 11.541-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.866-60.801Q14.866-61.122 14.991-61.411Q15.116-61.700 15.342-61.923Q15.567-62.147 15.863-62.267Q16.158-62.387 16.476-62.387Q16.804-62.387 17.066-62.287Q17.327-62.188 17.503-62.006Q17.679-61.823 17.773-61.565Q17.867-61.307 17.867-60.975Q17.867-60.883 17.785-60.862L15.530-60.862L15.530-60.801Q15.530-60.213 15.813-59.830Q16.097-59.447 16.664-59.447Q16.986-59.447 17.254-59.640Q17.522-59.833 17.611-60.148Q17.618-60.189 17.693-60.203L17.785-60.203Q17.867-60.179 17.867-60.107Q17.867-60.100 17.861-60.073Q17.748-59.676 17.377-59.437Q17.006-59.198 16.582-59.198Q16.145-59.198 15.745-59.406Q15.345-59.615 15.106-59.982Q14.866-60.349 14.866-60.801M15.536-61.071L17.351-61.071Q17.351-61.348 17.254-61.600Q17.157-61.853 16.958-62.009Q16.760-62.164 16.476-62.164Q16.199-62.164 15.986-62.006Q15.772-61.847 15.654-61.592Q15.536-61.337 15.536-61.071M18.455-60.777Q18.455-61.105 18.590-61.406Q18.725-61.706 18.961-61.927Q19.197-62.147 19.501-62.267Q19.805-62.387 20.130-62.387Q20.636-62.387 20.985-62.284Q21.333-62.182 21.333-61.806Q21.333-61.659 21.236-61.558Q21.138-61.457 20.991-61.457Q20.838-61.457 20.739-61.556Q20.639-61.655 20.639-61.806Q20.639-61.994 20.780-62.086Q20.578-62.137 20.137-62.137Q19.782-62.137 19.553-61.941Q19.324-61.744 19.223-61.435Q19.122-61.125 19.122-60.777Q19.122-60.428 19.248-60.122Q19.375-59.816 19.629-59.632Q19.884-59.447 20.240-59.447Q20.462-59.447 20.646-59.531Q20.831-59.615 20.966-59.770Q21.101-59.926 21.159-60.134Q21.173-60.189 21.227-60.189L21.340-60.189Q21.371-60.189 21.393-60.165Q21.415-60.141 21.415-60.107L21.415-60.086Q21.330-59.799 21.142-59.601Q20.954-59.403 20.689-59.300Q20.424-59.198 20.130-59.198Q19.699-59.198 19.312-59.404Q18.924-59.611 18.689-59.974Q18.455-60.336 18.455-60.777M21.962-60.749Q21.962-61.091 22.097-61.390Q22.232-61.689 22.471-61.913Q22.711-62.137 23.029-62.262Q23.346-62.387 23.678-62.387Q24.122-62.387 24.522-62.171Q24.922-61.956 25.156-61.578Q25.390-61.201 25.390-60.749Q25.390-60.408 25.249-60.124Q25.107-59.840 24.862-59.633Q24.618-59.427 24.309-59.312Q23.999-59.198 23.678-59.198Q23.247-59.198 22.846-59.399Q22.444-59.601 22.203-59.953Q21.962-60.305 21.962-60.749M23.678-59.447Q24.280-59.447 24.503-59.825Q24.727-60.203 24.727-60.835Q24.727-61.447 24.493-61.806Q24.259-62.164 23.678-62.164Q22.625-62.164 22.625-60.835Q22.625-60.203 22.851-59.825Q23.076-59.447 23.678-59.447\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M26.221-60.777Q26.221-61.115 26.362-61.406Q26.502-61.696 26.746-61.910Q26.990-62.123 27.295-62.238Q27.599-62.352 27.924-62.352Q28.194-62.352 28.457-62.253Q28.720-62.154 28.911-61.976L28.911-63.374Q28.911-63.644 28.804-63.706Q28.696-63.767 28.385-63.767L28.385-64.048L29.462-64.123L29.462-59.939Q29.462-59.751 29.516-59.668Q29.571-59.584 29.672-59.565Q29.773-59.546 29.988-59.546L29.988-59.266L28.881-59.198L28.881-59.615Q28.464-59.198 27.838-59.198Q27.407-59.198 27.035-59.410Q26.662-59.621 26.442-59.982Q26.221-60.343 26.221-60.777M27.896-59.420Q28.105-59.420 28.291-59.492Q28.477-59.563 28.631-59.700Q28.785-59.837 28.881-60.015L28.881-61.624Q28.795-61.771 28.650-61.891Q28.505-62.011 28.335-62.070Q28.166-62.130 27.985-62.130Q27.425-62.130 27.156-61.741Q26.888-61.351 26.888-60.770Q26.888-60.199 27.122-59.809Q27.356-59.420 27.896-59.420M30.596-60.801Q30.596-61.122 30.721-61.411Q30.846-61.700 31.072-61.923Q31.297-62.147 31.593-62.267Q31.888-62.387 32.206-62.387Q32.534-62.387 32.796-62.287Q33.057-62.188 33.233-62.006Q33.409-61.823 33.503-61.565Q33.597-61.307 33.597-60.975Q33.597-60.883 33.515-60.862L31.260-60.862L31.260-60.801Q31.260-60.213 31.543-59.830Q31.827-59.447 32.394-59.447Q32.716-59.447 32.984-59.640Q33.252-59.833 33.341-60.148Q33.348-60.189 33.423-60.203L33.515-60.203Q33.597-60.179 33.597-60.107Q33.597-60.100 33.591-60.073Q33.478-59.676 33.107-59.437Q32.736-59.198 32.312-59.198Q31.875-59.198 31.475-59.406Q31.075-59.615 30.836-59.982Q30.596-60.349 30.596-60.801M31.266-61.071L33.081-61.071Q33.081-61.348 32.984-61.600Q32.886-61.853 32.688-62.009Q32.490-62.164 32.206-62.164Q31.929-62.164 31.716-62.006Q31.502-61.847 31.384-61.592Q31.266-61.337 31.266-61.071\" 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=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M8.855-59.274L8.855-60.496Q8.855-60.524 8.886-60.555Q8.918-60.586 8.941-60.586L9.047-60.586Q9.117-60.586 9.133-60.524Q9.195-60.203 9.334-59.963Q9.472-59.723 9.705-59.582Q9.937-59.442 10.246-59.442Q10.484-59.442 10.693-59.502Q10.902-59.563 11.039-59.711Q11.176-59.860 11.176-60.106Q11.176-60.360 10.965-60.526Q10.754-60.692 10.484-60.746L9.863-60.860Q9.457-60.938 9.156-61.194Q8.855-61.450 8.855-61.825Q8.855-62.192 9.056-62.414Q9.258-62.637 9.582-62.735Q9.906-62.832 10.246-62.832Q10.711-62.832 11.008-62.625L11.230-62.809Q11.254-62.832 11.285-62.832L11.336-62.832Q11.367-62.832 11.394-62.805Q11.422-62.778 11.422-62.746L11.422-61.762Q11.422-61.731 11.396-61.702Q11.371-61.672 11.336-61.672L11.230-61.672Q11.195-61.672 11.168-61.700Q11.140-61.727 11.140-61.762Q11.140-62.161 10.888-62.381Q10.636-62.602 10.238-62.602Q9.883-62.602 9.599-62.479Q9.316-62.356 9.316-62.051Q9.316-61.832 9.517-61.700Q9.719-61.567 9.965-61.524L10.590-61.411Q11.019-61.321 11.328-61.024Q11.636-60.727 11.636-60.313Q11.636-59.743 11.238-59.465Q10.840-59.188 10.246-59.188Q9.695-59.188 9.344-59.524L9.047-59.211Q9.023-59.188 8.988-59.188L8.941-59.188Q8.918-59.188 8.886-59.219Q8.855-59.250 8.855-59.274M14.172-59.266L12.191-59.266L12.191-59.563Q12.461-59.563 12.629-59.608Q12.797-59.653 12.797-59.825L12.797-61.961Q12.797-62.176 12.734-62.272Q12.672-62.368 12.554-62.389Q12.437-62.411 12.191-62.411L12.191-62.707L13.359-62.793L13.359-62.008Q13.437-62.219 13.590-62.405Q13.742-62.590 13.941-62.692Q14.140-62.793 14.367-62.793Q14.613-62.793 14.804-62.649Q14.996-62.504 14.996-62.274Q14.996-62.118 14.890-62.008Q14.785-61.899 14.629-61.899Q14.472-61.899 14.363-62.008Q14.254-62.118 14.254-62.274Q14.254-62.434 14.359-62.539Q14.035-62.539 13.820-62.311Q13.605-62.082 13.510-61.743Q13.414-61.403 13.414-61.098L13.414-59.825Q13.414-59.657 13.640-59.610Q13.867-59.563 14.172-59.563L14.172-59.266M15.519-60.993Q15.519-61.489 15.769-61.914Q16.019-62.340 16.439-62.586Q16.859-62.832 17.359-62.832Q17.898-62.832 18.289-62.707Q18.679-62.582 18.679-62.168Q18.679-62.063 18.629-61.971Q18.578-61.879 18.486-61.828Q18.394-61.778 18.285-61.778Q18.179-61.778 18.088-61.828Q17.996-61.879 17.945-61.971Q17.894-62.063 17.894-62.168Q17.894-62.391 18.062-62.496Q17.840-62.555 17.367-62.555Q17.070-62.555 16.855-62.416Q16.640-62.278 16.510-62.047Q16.379-61.817 16.320-61.547Q16.261-61.278 16.261-60.993Q16.261-60.598 16.394-60.248Q16.527-59.899 16.799-59.682Q17.070-59.465 17.469-59.465Q17.844-59.465 18.119-59.682Q18.394-59.899 18.496-60.258Q18.511-60.321 18.574-60.321L18.679-60.321Q18.715-60.321 18.740-60.293Q18.765-60.266 18.765-60.227L18.765-60.203Q18.633-59.723 18.248-59.455Q17.863-59.188 17.359-59.188Q16.996-59.188 16.662-59.325Q16.328-59.461 16.068-59.711Q15.808-59.961 15.664-60.297Q15.519-60.633 15.519-60.993M22.664-59.266L19.383-59.266L19.383-59.563Q19.707-59.563 19.949-59.610Q20.191-59.657 20.191-59.825L20.191-64.168Q20.191-64.340 19.949-64.387Q19.707-64.434 19.383-64.434L19.383-64.731L22.429-64.731Q22.855-64.731 23.289-64.577Q23.722-64.422 24.017-64.114Q24.312-63.805 24.312-63.371Q24.312-63.118 24.187-62.901Q24.062-62.684 23.861-62.528Q23.660-62.371 23.428-62.272Q23.195-62.172 22.937-62.121Q23.312-62.086 23.691-61.909Q24.070-61.731 24.310-61.432Q24.551-61.133 24.551-60.739Q24.551-60.286 24.267-59.952Q23.984-59.618 23.549-59.442Q23.113-59.266 22.664-59.266M20.902-61.977L20.902-59.825Q20.902-59.653 20.994-59.608Q21.086-59.563 21.304-59.563L22.429-59.563Q22.668-59.563 22.902-59.651Q23.136-59.739 23.322-59.899Q23.508-60.059 23.609-60.272Q23.711-60.485 23.711-60.739Q23.711-61.059 23.558-61.344Q23.406-61.629 23.136-61.803Q22.867-61.977 22.551-61.977L20.902-61.977M20.902-64.168L20.902-62.235L22.191-62.235Q22.433-62.235 22.672-62.317Q22.910-62.399 23.094-62.545Q23.277-62.692 23.390-62.909Q23.504-63.125 23.504-63.371Q23.504-63.582 23.418-63.784Q23.332-63.985 23.185-64.127Q23.039-64.270 22.844-64.352Q22.648-64.434 22.429-64.434L21.304-64.434Q21.086-64.434 20.994-64.391Q20.902-64.348 20.902-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M33.828-60.243L28.515-60.243Q28.437-60.250 28.388-60.299Q28.340-60.348 28.340-60.426Q28.340-60.496 28.387-60.547Q28.433-60.598 28.515-60.610L33.828-60.610Q33.902-60.598 33.949-60.547Q33.996-60.496 33.996-60.426Q33.996-60.348 33.947-60.299Q33.898-60.250 33.828-60.243M33.828-61.930L28.515-61.930Q28.437-61.938 28.388-61.987Q28.340-62.036 28.340-62.114Q28.340-62.184 28.387-62.235Q28.433-62.286 28.515-62.297L33.828-62.297Q33.902-62.286 33.949-62.235Q33.996-62.184 33.996-62.114Q33.996-62.036 33.947-61.987Q33.898-61.938 33.828-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M39.558-59.266L37.578-59.266L37.578-59.563Q37.847-59.563 38.015-59.608Q38.183-59.653 38.183-59.825L38.183-61.961Q38.183-62.176 38.121-62.272Q38.058-62.368 37.941-62.389Q37.824-62.411 37.578-62.411L37.578-62.707L38.746-62.793L38.746-62.008Q38.824-62.219 38.976-62.405Q39.128-62.590 39.328-62.692Q39.527-62.793 39.753-62.793Q39.999-62.793 40.191-62.649Q40.382-62.504 40.382-62.274Q40.382-62.118 40.277-62.008Q40.171-61.899 40.015-61.899Q39.859-61.899 39.749-62.008Q39.640-62.118 39.640-62.274Q39.640-62.434 39.746-62.539Q39.421-62.539 39.207-62.311Q38.992-62.082 38.896-61.743Q38.800-61.403 38.800-61.098L38.800-59.825Q38.800-59.657 39.027-59.610Q39.253-59.563 39.558-59.563L39.558-59.266M44.273-59.266L40.992-59.266L40.992-59.563Q41.316-59.563 41.558-59.610Q41.800-59.657 41.800-59.825L41.800-64.168Q41.800-64.340 41.558-64.387Q41.316-64.434 40.992-64.434L40.992-64.731L44.039-64.731Q44.464-64.731 44.898-64.577Q45.332-64.422 45.626-64.114Q45.921-63.805 45.921-63.371Q45.921-63.118 45.796-62.901Q45.671-62.684 45.470-62.528Q45.269-62.371 45.037-62.272Q44.804-62.172 44.546-62.121Q44.921-62.086 45.300-61.909Q45.679-61.731 45.919-61.432Q46.160-61.133 46.160-60.739Q46.160-60.286 45.876-59.952Q45.593-59.618 45.158-59.442Q44.722-59.266 44.273-59.266M42.511-61.977L42.511-59.825Q42.511-59.653 42.603-59.608Q42.695-59.563 42.914-59.563L44.039-59.563Q44.277-59.563 44.511-59.651Q44.746-59.739 44.931-59.899Q45.117-60.059 45.218-60.272Q45.320-60.485 45.320-60.739Q45.320-61.059 45.167-61.344Q45.015-61.629 44.746-61.803Q44.476-61.977 44.160-61.977L42.511-61.977M42.511-64.168L42.511-62.235L43.800-62.235Q44.042-62.235 44.281-62.317Q44.519-62.399 44.703-62.545Q44.886-62.692 44.999-62.909Q45.113-63.125 45.113-63.371Q45.113-63.582 45.027-63.784Q44.941-63.985 44.794-64.127Q44.648-64.270 44.453-64.352Q44.257-64.434 44.039-64.434L42.914-64.434Q42.695-64.434 42.603-64.391Q42.511-64.348 42.511-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M55.436-60.243L50.123-60.243Q50.045-60.250 49.996-60.299Q49.948-60.348 49.948-60.426Q49.948-60.496 49.995-60.547Q50.041-60.598 50.123-60.610L55.436-60.610Q55.510-60.598 55.557-60.547Q55.604-60.496 55.604-60.426Q55.604-60.348 55.555-60.299Q55.506-60.250 55.436-60.243M55.436-61.930L50.123-61.930Q50.045-61.938 49.996-61.987Q49.948-62.036 49.948-62.114Q49.948-62.184 49.995-62.235Q50.041-62.286 50.123-62.297L55.436-62.297Q55.510-62.286 55.557-62.235Q55.604-62.184 55.604-62.114Q55.604-62.036 55.555-61.987Q55.506-61.938 55.436-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M60.103-59Q60.103-59.063 60.134-59.106L63.880-64.364Q63.423-64.129 62.856-64.129Q62.204-64.129 61.599-64.450Q61.743-64.102 61.743-63.657Q61.743-63.297 61.622-62.926Q61.501-62.555 61.251-62.299Q61.001-62.043 60.638-62.043Q60.251-62.043 59.968-62.287Q59.685-62.532 59.538-62.905Q59.392-63.278 59.392-63.657Q59.392-64.036 59.538-64.407Q59.685-64.778 59.968-65.022Q60.251-65.266 60.638-65.266Q60.954-65.266 61.224-65.028Q61.560-64.723 61.989-64.551Q62.419-64.379 62.856-64.379Q63.349-64.379 63.767-64.592Q64.185-64.805 64.485-65.203Q64.528-65.266 64.622-65.266Q64.696-65.266 64.751-65.211Q64.806-65.157 64.806-65.082Q64.806-65.020 64.774-64.977L60.431-58.883Q60.384-58.817 60.286-58.817Q60.204-58.817 60.153-58.868Q60.103-58.918 60.103-59M60.638-62.297Q60.911-62.297 61.099-62.522Q61.286-62.746 61.374-63.069Q61.462-63.391 61.462-63.657Q61.462-63.914 61.374-64.237Q61.286-64.559 61.099-64.784Q60.911-65.008 60.638-65.008Q60.251-65.008 60.108-64.580Q59.966-64.153 59.966-63.657Q59.966-63.149 60.106-62.723Q60.247-62.297 60.638-62.297M64.415-58.817Q64.028-58.817 63.745-59.063Q63.462-59.309 63.314-59.682Q63.165-60.055 63.165-60.434Q63.165-60.707 63.251-60.995Q63.337-61.282 63.491-61.516Q63.646-61.750 63.882-61.897Q64.118-62.043 64.415-62.043Q64.696-62.043 64.903-61.891Q65.110-61.739 65.249-61.496Q65.388-61.254 65.454-60.973Q65.521-60.692 65.521-60.434Q65.521-60.075 65.399-59.702Q65.278-59.328 65.028-59.073Q64.778-58.817 64.415-58.817M64.415-59.075Q64.689-59.075 64.876-59.299Q65.064-59.524 65.151-59.846Q65.239-60.168 65.239-60.434Q65.239-60.692 65.151-61.014Q65.064-61.336 64.876-61.561Q64.689-61.786 64.415-61.786Q64.024-61.786 63.884-61.356Q63.743-60.926 63.743-60.434Q63.743-59.926 63.880-59.500Q64.017-59.075 64.415-59.075M68.243-59.266L66.263-59.266L66.263-59.563Q66.532-59.563 66.700-59.608Q66.868-59.653 66.868-59.825L66.868-61.961Q66.868-62.176 66.806-62.272Q66.743-62.368 66.626-62.389Q66.509-62.411 66.263-62.411L66.263-62.707L67.431-62.793L67.431-62.008Q67.509-62.219 67.661-62.405Q67.814-62.590 68.013-62.692Q68.212-62.793 68.439-62.793Q68.685-62.793 68.876-62.649Q69.067-62.504 69.067-62.274Q69.067-62.118 68.962-62.008Q68.856-61.899 68.700-61.899Q68.544-61.899 68.435-62.008Q68.325-62.118 68.325-62.274Q68.325-62.434 68.431-62.539Q68.106-62.539 67.892-62.311Q67.677-62.082 67.581-61.743Q67.485-61.403 67.485-61.098L67.485-59.825Q67.485-59.657 67.712-59.610Q67.939-59.563 68.243-59.563L68.243-59.266M71.364-59.188Q70.884-59.188 70.476-59.432Q70.067-59.676 69.829-60.090Q69.591-60.504 69.591-60.993Q69.591-61.485 69.849-61.901Q70.106-62.317 70.538-62.555Q70.970-62.793 71.462-62.793Q72.083-62.793 72.532-62.356L72.532-63.985Q72.532-64.200 72.470-64.295Q72.407-64.391 72.290-64.412Q72.173-64.434 71.927-64.434L71.927-64.731L73.149-64.817L73.149-60.008Q73.149-59.797 73.212-59.702Q73.274-59.606 73.392-59.584Q73.509-59.563 73.759-59.563L73.759-59.266L72.509-59.188L72.509-59.672Q72.044-59.188 71.364-59.188M71.431-59.442Q71.771-59.442 72.064-59.633Q72.356-59.825 72.509-60.121L72.509-61.953Q72.360-62.227 72.099-62.383Q71.837-62.539 71.524-62.539Q70.899-62.539 70.616-62.092Q70.333-61.645 70.333-60.985Q70.333-60.340 70.585-59.891Q70.837-59.442 71.431-59.442M75.653-59.266L74.157-59.266L74.157-59.563Q74.790-59.563 75.212-60.043L75.981-60.953L74.989-62.153Q74.833-62.332 74.671-62.375Q74.509-62.418 74.204-62.418L74.204-62.715L75.892-62.715L75.892-62.418Q75.798-62.418 75.722-62.375Q75.646-62.332 75.646-62.243Q75.646-62.200 75.677-62.153L76.333-61.364L76.814-61.938Q76.931-62.075 76.931-62.211Q76.931-62.301 76.880-62.360Q76.829-62.418 76.747-62.418L76.747-62.715L78.235-62.715L78.235-62.418Q77.599-62.418 77.189-61.938L76.509-61.137L77.595-59.825Q77.755-59.649 77.915-59.606Q78.075-59.563 78.380-59.563L78.380-59.266L76.692-59.266L76.692-59.563Q76.782-59.563 76.860-59.606Q76.939-59.649 76.939-59.739Q76.939-59.762 76.907-59.825L76.165-60.731L75.579-60.043Q75.462-59.907 75.462-59.770Q75.462-59.684 75.513-59.623Q75.564-59.563 75.653-59.563L75.653-59.266M79.228-59.731Q79.228-59.914 79.364-60.051Q79.501-60.188 79.692-60.188Q79.884-60.188 80.017-60.055Q80.149-59.922 80.149-59.731Q80.149-59.532 80.017-59.399Q79.884-59.266 79.692-59.266Q79.501-59.266 79.364-59.403Q79.228-59.539 79.228-59.731M79.228-62.258Q79.228-62.442 79.364-62.578Q79.501-62.715 79.692-62.715Q79.884-62.715 80.017-62.582Q80.149-62.450 80.149-62.258Q80.149-62.059 80.017-61.926Q79.884-61.793 79.692-61.793Q79.501-61.793 79.364-61.930Q79.228-62.067 79.228-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M86.702-59.297L85.479-62.153Q85.397-62.328 85.253-62.373Q85.108-62.418 84.839-62.418L84.839-62.715L86.550-62.715L86.550-62.418Q86.128-62.418 86.128-62.235Q86.128-62.200 86.143-62.153L87.089-59.961L87.929-61.938Q87.968-62.016 87.968-62.106Q87.968-62.246 87.862-62.332Q87.757-62.418 87.616-62.418L87.616-62.715L88.968-62.715L88.968-62.418Q88.444-62.418 88.229-61.938L87.104-59.297Q87.042-59.188 86.936-59.188L86.870-59.188Q86.757-59.188 86.702-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M89.012-60.098Q89.012-60.582 89.414-60.877Q89.817-61.172 90.367-61.291Q90.918-61.411 91.410-61.411L91.410-61.700Q91.410-61.926 91.295-62.133Q91.180-62.340 90.983-62.459Q90.785-62.578 90.555-62.578Q90.129-62.578 89.844-62.473Q89.914-62.446 89.961-62.391Q90.008-62.336 90.033-62.266Q90.059-62.196 90.059-62.121Q90.059-62.016 90.008-61.924Q89.957-61.832 89.865-61.782Q89.774-61.731 89.668-61.731Q89.563-61.731 89.471-61.782Q89.379-61.832 89.328-61.924Q89.278-62.016 89.278-62.121Q89.278-62.539 89.666-62.686Q90.055-62.832 90.555-62.832Q90.887-62.832 91.240-62.702Q91.594-62.571 91.822-62.317Q92.051-62.063 92.051-61.715L92.051-59.914Q92.051-59.782 92.123-59.672Q92.196-59.563 92.324-59.563Q92.449-59.563 92.518-59.668Q92.586-59.774 92.586-59.914L92.586-60.426L92.867-60.426L92.867-59.914Q92.867-59.711 92.750-59.553Q92.633-59.395 92.451-59.311Q92.270-59.227 92.067-59.227Q91.836-59.227 91.684-59.399Q91.531-59.571 91.500-59.801Q91.340-59.520 91.031-59.354Q90.723-59.188 90.371-59.188Q89.860-59.188 89.436-59.411Q89.012-59.633 89.012-60.098M89.699-60.098Q89.699-59.813 89.926-59.627Q90.153-59.442 90.446-59.442Q90.692-59.442 90.916-59.559Q91.141-59.676 91.276-59.879Q91.410-60.082 91.410-60.336L91.410-61.168Q91.145-61.168 90.860-61.114Q90.574-61.059 90.303-60.930Q90.031-60.801 89.865-60.594Q89.699-60.387 89.699-60.098M95.074-59.266L93.242-59.266L93.242-59.563Q93.516-59.563 93.684-59.610Q93.852-59.657 93.852-59.825L93.852-63.985Q93.852-64.200 93.789-64.295Q93.727-64.391 93.608-64.412Q93.489-64.434 93.242-64.434L93.242-64.731L94.465-64.817L94.465-59.825Q94.465-59.657 94.633-59.610Q94.801-59.563 95.074-59.563L95.074-59.266M98.930-59.266L95.649-59.266L95.649-59.563Q95.973-59.563 96.215-59.610Q96.457-59.657 96.457-59.825L96.457-64.168Q96.457-64.340 96.215-64.387Q95.973-64.434 95.649-64.434L95.649-64.731L98.696-64.731Q99.121-64.731 99.555-64.577Q99.989-64.422 100.283-64.114Q100.578-63.805 100.578-63.371Q100.578-63.118 100.453-62.901Q100.328-62.684 100.127-62.528Q99.926-62.371 99.694-62.272Q99.461-62.172 99.203-62.121Q99.578-62.086 99.957-61.909Q100.336-61.731 100.576-61.432Q100.817-61.133 100.817-60.739Q100.817-60.286 100.533-59.952Q100.250-59.618 99.815-59.442Q99.379-59.266 98.930-59.266M97.168-61.977L97.168-59.825Q97.168-59.653 97.260-59.608Q97.352-59.563 97.571-59.563L98.696-59.563Q98.934-59.563 99.168-59.651Q99.403-59.739 99.588-59.899Q99.774-60.059 99.875-60.272Q99.977-60.485 99.977-60.739Q99.977-61.059 99.824-61.344Q99.672-61.629 99.403-61.803Q99.133-61.977 98.817-61.977L97.168-61.977M97.168-64.168L97.168-62.235L98.457-62.235Q98.699-62.235 98.938-62.317Q99.176-62.399 99.360-62.545Q99.543-62.692 99.656-62.909Q99.770-63.125 99.770-63.371Q99.770-63.582 99.684-63.784Q99.598-63.985 99.451-64.127Q99.305-64.270 99.110-64.352Q98.914-64.434 98.696-64.434L97.571-64.434Q97.352-64.434 97.260-64.391Q97.168-64.348 97.168-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M110.099-60.243L104.786-60.243Q104.708-60.250 104.659-60.299Q104.611-60.348 104.611-60.426Q104.611-60.496 104.658-60.547Q104.704-60.598 104.786-60.610L110.099-60.610Q110.173-60.598 110.220-60.547Q110.267-60.496 110.267-60.426Q110.267-60.348 110.218-60.299Q110.169-60.250 110.099-60.243M110.099-61.930L104.786-61.930Q104.708-61.938 104.659-61.987Q104.611-62.036 104.611-62.114Q104.611-62.184 104.658-62.235Q104.704-62.286 104.786-62.297L110.099-62.297Q110.173-62.286 110.220-62.235Q110.267-62.184 110.267-62.114Q110.267-62.036 110.218-61.987Q110.169-61.938 110.099-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 26.963)\">\u003Cpath d=\"M115.703-59.098Q115-59.098 114.600-59.498Q114.199-59.899 114.055-60.508Q113.910-61.118 113.910-61.817Q113.910-62.340 113.980-62.803Q114.051-63.266 114.244-63.678Q114.437-64.090 114.795-64.338Q115.152-64.586 115.703-64.586Q116.254-64.586 116.611-64.338Q116.969-64.090 117.160-63.680Q117.352-63.270 117.422-62.801Q117.492-62.332 117.492-61.817Q117.492-61.118 117.350-60.510Q117.207-59.903 116.807-59.500Q116.406-59.098 115.703-59.098M115.703-59.356Q116.176-59.356 116.408-59.791Q116.641-60.227 116.695-60.766Q116.750-61.305 116.750-61.946Q116.750-62.942 116.566-63.635Q116.383-64.328 115.703-64.328Q115.336-64.328 115.115-64.090Q114.894-63.852 114.799-63.495Q114.703-63.137 114.678-62.766Q114.652-62.395 114.652-61.946Q114.652-61.305 114.707-60.766Q114.762-60.227 114.994-59.791Q115.227-59.356 115.703-59.356M119.453-59.266L117.957-59.266L117.957-59.563Q118.590-59.563 119.012-60.043L119.781-60.953L118.789-62.153Q118.633-62.332 118.471-62.375Q118.309-62.418 118.004-62.418L118.004-62.715L119.691-62.715L119.691-62.418Q119.598-62.418 119.521-62.375Q119.445-62.332 119.445-62.243Q119.445-62.200 119.477-62.153L120.133-61.364L120.613-61.938Q120.730-62.075 120.730-62.211Q120.730-62.301 120.680-62.360Q120.629-62.418 120.547-62.418L120.547-62.715L122.035-62.715L122.035-62.418Q121.398-62.418 120.988-61.938L120.309-61.137L121.394-59.825Q121.555-59.649 121.715-59.606Q121.875-59.563 122.180-59.563L122.180-59.266L120.492-59.266L120.492-59.563Q120.582-59.563 120.660-59.606Q120.738-59.649 120.738-59.739Q120.738-59.762 120.707-59.825L119.965-60.731L119.379-60.043Q119.262-59.907 119.262-59.770Q119.262-59.684 119.312-59.623Q119.363-59.563 119.453-59.563L119.453-59.266M125.894-59.266L122.734-59.266L122.734-59.473Q122.734-59.500 122.758-59.532L124.109-60.930Q124.488-61.317 124.736-61.606Q124.984-61.895 125.158-62.252Q125.332-62.610 125.332-63Q125.332-63.348 125.199-63.641Q125.066-63.934 124.812-64.112Q124.559-64.289 124.203-64.289Q123.844-64.289 123.553-64.094Q123.262-63.899 123.117-63.571L123.172-63.571Q123.355-63.571 123.480-63.450Q123.605-63.328 123.605-63.137Q123.605-62.957 123.480-62.828Q123.355-62.700 123.172-62.700Q122.992-62.700 122.863-62.828Q122.734-62.957 122.734-63.137Q122.734-63.539 122.955-63.875Q123.176-64.211 123.541-64.399Q123.906-64.586 124.309-64.586Q124.789-64.586 125.205-64.399Q125.621-64.211 125.873-63.850Q126.125-63.489 126.125-63Q126.125-62.641 125.971-62.338Q125.816-62.036 125.564-61.776Q125.312-61.516 124.963-61.231Q124.613-60.946 124.445-60.793L123.516-59.953L124.230-59.953Q125.605-59.953 125.644-59.993Q125.715-60.071 125.758-60.256Q125.801-60.442 125.844-60.731L126.125-60.731L125.894-59.266M128.676-59.098Q127.973-59.098 127.572-59.498Q127.172-59.899 127.027-60.508Q126.883-61.118 126.883-61.817Q126.883-62.340 126.953-62.803Q127.023-63.266 127.217-63.678Q127.410-64.090 127.768-64.338Q128.125-64.586 128.676-64.586Q129.227-64.586 129.584-64.338Q129.941-64.090 130.133-63.680Q130.324-63.270 130.394-62.801Q130.465-62.332 130.465-61.817Q130.465-61.118 130.322-60.510Q130.180-59.903 129.779-59.500Q129.379-59.098 128.676-59.098M128.676-59.356Q129.148-59.356 129.381-59.791Q129.613-60.227 129.668-60.766Q129.723-61.305 129.723-61.946Q129.723-62.942 129.539-63.635Q129.355-64.328 128.676-64.328Q128.309-64.328 128.088-64.090Q127.867-63.852 127.771-63.495Q127.676-63.137 127.650-62.766Q127.625-62.395 127.625-61.946Q127.625-61.305 127.680-60.766Q127.734-60.227 127.967-59.791Q128.199-59.356 128.676-59.356M132.922-59.098Q132.219-59.098 131.818-59.498Q131.418-59.899 131.273-60.508Q131.129-61.118 131.129-61.817Q131.129-62.340 131.199-62.803Q131.269-63.266 131.463-63.678Q131.656-64.090 132.014-64.338Q132.371-64.586 132.922-64.586Q133.473-64.586 133.830-64.338Q134.187-64.090 134.379-63.680Q134.570-63.270 134.641-62.801Q134.711-62.332 134.711-61.817Q134.711-61.118 134.568-60.510Q134.426-59.903 134.025-59.500Q133.625-59.098 132.922-59.098M132.922-59.356Q133.394-59.356 133.627-59.791Q133.859-60.227 133.914-60.766Q133.969-61.305 133.969-61.946Q133.969-62.942 133.785-63.635Q133.602-64.328 132.922-64.328Q132.555-64.328 132.334-64.090Q132.113-63.852 132.018-63.495Q131.922-63.137 131.896-62.766Q131.871-62.395 131.871-61.946Q131.871-61.305 131.926-60.766Q131.980-60.227 132.213-59.791Q132.445-59.356 132.922-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-23.131h398.338\"\u002F>\u003Cg transform=\"translate(-34.163 50.761)\">\u003Cpath d=\"M13.356-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.243-64.048L13.451-62.411L13.188-62.411Q13.130-62.882 13.028-63.147Q12.925-63.412 12.741-63.545Q12.556-63.679 12.284-63.723Q12.012-63.767 11.513-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.891L10.939-61.891Q11.329-61.891 11.512-61.942Q11.695-61.994 11.777-62.166Q11.859-62.339 11.859-62.711L12.122-62.711L12.122-60.790L11.859-60.790Q11.859-61.163 11.777-61.336Q11.695-61.508 11.512-61.559Q11.329-61.611 10.939-61.611L10.365-61.611L10.365-59.755Q10.365-59.615 10.454-59.580Q10.543-59.546 10.731-59.546L11.578-59.546Q12.108-59.546 12.418-59.615Q12.727-59.683 12.915-59.850Q13.103-60.018 13.210-60.320Q13.318-60.623 13.404-61.136L13.670-61.136L13.356-59.266M15.441-59.266L14.118-59.266L14.118-59.546Q14.678-59.546 15.058-59.946L15.772-60.743L14.860-61.792Q14.723-61.939 14.574-61.971Q14.426-62.004 14.159-62.004L14.159-62.284L15.659-62.284L15.659-62.004Q15.468-62.004 15.468-61.870Q15.468-61.840 15.499-61.792L16.094-61.108L16.534-61.604Q16.647-61.734 16.647-61.850Q16.647-61.912 16.610-61.958Q16.572-62.004 16.514-62.004L16.514-62.284L17.830-62.284L17.830-62.004Q17.269-62.004 16.890-61.604L16.268-60.903L17.262-59.755Q17.362-59.656 17.462-59.611Q17.563-59.567 17.674-59.557Q17.785-59.546 17.963-59.546L17.963-59.266L16.470-59.266L16.470-59.546Q16.534-59.546 16.594-59.580Q16.654-59.615 16.654-59.680Q16.654-59.727 16.623-59.755L15.947-60.541L15.413-59.946Q15.301-59.816 15.301-59.700Q15.301-59.635 15.342-59.591Q15.383-59.546 15.441-59.546L15.441-59.266M18.418-60.801Q18.418-61.122 18.543-61.411Q18.667-61.700 18.893-61.923Q19.118-62.147 19.414-62.267Q19.710-62.387 20.028-62.387Q20.356-62.387 20.617-62.287Q20.879-62.188 21.055-62.006Q21.231-61.823 21.325-61.565Q21.419-61.307 21.419-60.975Q21.419-60.883 21.337-60.862L19.081-60.862L19.081-60.801Q19.081-60.213 19.365-59.830Q19.648-59.447 20.216-59.447Q20.537-59.447 20.805-59.640Q21.074-59.833 21.162-60.148Q21.169-60.189 21.244-60.203L21.337-60.203Q21.419-60.179 21.419-60.107Q21.419-60.100 21.412-60.073Q21.299-59.676 20.928-59.437Q20.557-59.198 20.134-59.198Q19.696-59.198 19.296-59.406Q18.896-59.615 18.657-59.982Q18.418-60.349 18.418-60.801M19.088-61.071L20.903-61.071Q20.903-61.348 20.805-61.600Q20.708-61.853 20.510-62.009Q20.311-62.164 20.028-62.164Q19.751-62.164 19.537-62.006Q19.324-61.847 19.206-61.592Q19.088-61.337 19.088-61.071M22.007-60.777Q22.007-61.105 22.142-61.406Q22.277-61.706 22.512-61.927Q22.748-62.147 23.053-62.267Q23.357-62.387 23.681-62.387Q24.187-62.387 24.536-62.284Q24.885-62.182 24.885-61.806Q24.885-61.659 24.787-61.558Q24.690-61.457 24.543-61.457Q24.389-61.457 24.290-61.556Q24.191-61.655 24.191-61.806Q24.191-61.994 24.331-62.086Q24.129-62.137 23.688-62.137Q23.333-62.137 23.104-61.941Q22.875-61.744 22.774-61.435Q22.673-61.125 22.673-60.777Q22.673-60.428 22.800-60.122Q22.926-59.816 23.181-59.632Q23.435-59.447 23.791-59.447Q24.013-59.447 24.198-59.531Q24.382-59.615 24.517-59.770Q24.652-59.926 24.710-60.134Q24.724-60.189 24.779-60.189L24.891-60.189Q24.922-60.189 24.944-60.165Q24.967-60.141 24.967-60.107L24.967-60.086Q24.881-59.799 24.693-59.601Q24.505-59.403 24.240-59.300Q23.975-59.198 23.681-59.198Q23.251-59.198 22.863-59.404Q22.475-59.611 22.241-59.974Q22.007-60.336 22.007-60.777M26.129-60.100L26.129-61.604Q26.129-61.874 26.021-61.935Q25.913-61.997 25.602-61.997L25.602-62.277L26.710-62.352L26.710-60.120L26.710-60.100Q26.710-59.820 26.761-59.676Q26.812-59.533 26.954-59.476Q27.096-59.420 27.383-59.420Q27.636-59.420 27.841-59.560Q28.046-59.700 28.162-59.926Q28.279-60.151 28.279-60.401L28.279-61.604Q28.279-61.874 28.171-61.935Q28.063-61.997 27.752-61.997L27.752-62.277L28.860-62.352L28.860-59.939Q28.860-59.748 28.913-59.666Q28.966-59.584 29.066-59.565Q29.167-59.546 29.383-59.546L29.383-59.266L28.306-59.198L28.306-59.762Q28.197-59.580 28.051-59.457Q27.906-59.334 27.720-59.266Q27.533-59.198 27.332-59.198Q26.129-59.198 26.129-60.100M30.497-60.107L30.497-62.004L29.858-62.004L29.858-62.226Q30.176-62.226 30.393-62.436Q30.610-62.646 30.710-62.956Q30.811-63.265 30.811-63.573L31.078-63.573L31.078-62.284L32.155-62.284L32.155-62.004L31.078-62.004L31.078-60.120Q31.078-59.844 31.182-59.645Q31.286-59.447 31.546-59.447Q31.703-59.447 31.809-59.551Q31.915-59.656 31.965-59.809Q32.014-59.963 32.014-60.120L32.014-60.534L32.281-60.534L32.281-60.107Q32.281-59.881 32.182-59.671Q32.083-59.461 31.898-59.329Q31.714-59.198 31.485-59.198Q31.047-59.198 30.772-59.435Q30.497-59.673 30.497-60.107M33.050-60.801Q33.050-61.122 33.175-61.411Q33.300-61.700 33.525-61.923Q33.751-62.147 34.046-62.267Q34.342-62.387 34.660-62.387Q34.988-62.387 35.250-62.287Q35.511-62.188 35.687-62.006Q35.863-61.823 35.957-61.565Q36.051-61.307 36.051-60.975Q36.051-60.883 35.969-60.862L33.713-60.862L33.713-60.801Q33.713-60.213 33.997-59.830Q34.281-59.447 34.848-59.447Q35.169-59.447 35.438-59.640Q35.706-59.833 35.795-60.148Q35.802-60.189 35.877-60.203L35.969-60.203Q36.051-60.179 36.051-60.107Q36.051-60.100 36.044-60.073Q35.931-59.676 35.561-59.437Q35.190-59.198 34.766-59.198Q34.328-59.198 33.928-59.406Q33.529-59.615 33.289-59.982Q33.050-60.349 33.050-60.801M33.720-61.071L35.535-61.071Q35.535-61.348 35.438-61.600Q35.340-61.853 35.142-62.009Q34.944-62.164 34.660-62.164Q34.383-62.164 34.169-62.006Q33.956-61.847 33.838-61.592Q33.720-61.337 33.720-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M10.613-59.297L9.390-62.153Q9.308-62.328 9.164-62.373Q9.019-62.418 8.750-62.418L8.750-62.715L10.461-62.715L10.461-62.418Q10.039-62.418 10.039-62.235Q10.039-62.200 10.054-62.153L11-59.961L11.840-61.938Q11.879-62.016 11.879-62.106Q11.879-62.246 11.773-62.332Q11.668-62.418 11.527-62.418L11.527-62.715L12.879-62.715L12.879-62.418Q12.355-62.418 12.140-61.938L11.015-59.297Q10.953-59.188 10.847-59.188L10.781-59.188Q10.668-59.188 10.613-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M12.924-60.098Q12.924-60.582 13.326-60.877Q13.729-61.172 14.279-61.291Q14.830-61.411 15.322-61.411L15.322-61.700Q15.322-61.926 15.207-62.133Q15.092-62.340 14.895-62.459Q14.697-62.578 14.467-62.578Q14.041-62.578 13.756-62.473Q13.826-62.446 13.873-62.391Q13.920-62.336 13.945-62.266Q13.971-62.196 13.971-62.121Q13.971-62.016 13.920-61.924Q13.869-61.832 13.777-61.782Q13.686-61.731 13.580-61.731Q13.475-61.731 13.383-61.782Q13.291-61.832 13.240-61.924Q13.190-62.016 13.190-62.121Q13.190-62.539 13.578-62.686Q13.967-62.832 14.467-62.832Q14.799-62.832 15.152-62.702Q15.506-62.571 15.734-62.317Q15.963-62.063 15.963-61.715L15.963-59.914Q15.963-59.782 16.035-59.672Q16.108-59.563 16.236-59.563Q16.361-59.563 16.430-59.668Q16.498-59.774 16.498-59.914L16.498-60.426L16.779-60.426L16.779-59.914Q16.779-59.711 16.662-59.553Q16.545-59.395 16.363-59.311Q16.182-59.227 15.979-59.227Q15.748-59.227 15.596-59.399Q15.443-59.571 15.412-59.801Q15.252-59.520 14.943-59.354Q14.635-59.188 14.283-59.188Q13.772-59.188 13.348-59.411Q12.924-59.633 12.924-60.098M13.611-60.098Q13.611-59.813 13.838-59.627Q14.065-59.442 14.358-59.442Q14.604-59.442 14.828-59.559Q15.053-59.676 15.188-59.879Q15.322-60.082 15.322-60.336L15.322-61.168Q15.057-61.168 14.772-61.114Q14.486-61.059 14.215-60.930Q13.943-60.801 13.777-60.594Q13.611-60.387 13.611-60.098M18.986-59.266L17.154-59.266L17.154-59.563Q17.428-59.563 17.596-59.610Q17.764-59.657 17.764-59.825L17.764-63.985Q17.764-64.200 17.701-64.295Q17.639-64.391 17.520-64.412Q17.401-64.434 17.154-64.434L17.154-64.731L18.377-64.817L18.377-59.825Q18.377-59.657 18.545-59.610Q18.713-59.563 18.986-59.563L18.986-59.266M24.377-59.266L19.529-59.266L19.529-59.563Q19.850-59.563 20.094-59.610Q20.338-59.657 20.338-59.825L20.338-64.168Q20.338-64.340 20.094-64.387Q19.850-64.434 19.529-64.434L19.529-64.731L24.264-64.731L24.498-62.883L24.217-62.883Q24.135-63.578 23.959-63.899Q23.783-64.219 23.436-64.327Q23.088-64.434 22.369-64.434L21.506-64.434Q21.287-64.434 21.195-64.391Q21.104-64.348 21.104-64.168L21.104-62.250L21.736-62.250Q22.162-62.250 22.369-62.313Q22.576-62.375 22.664-62.571Q22.752-62.766 22.752-63.188L23.033-63.188L23.033-61.020L22.752-61.020Q22.752-61.442 22.664-61.635Q22.576-61.828 22.369-61.891Q22.162-61.953 21.736-61.953L21.104-61.953L21.104-59.825Q21.104-59.653 21.195-59.608Q21.287-59.563 21.506-59.563L22.432-59.563Q23.014-59.563 23.367-59.645Q23.721-59.727 23.926-59.924Q24.131-60.121 24.244-60.459Q24.358-60.797 24.451-61.379L24.729-61.379\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M33.774-60.243L28.461-60.243Q28.383-60.250 28.334-60.299Q28.286-60.348 28.286-60.426Q28.286-60.496 28.333-60.547Q28.379-60.598 28.461-60.610L33.774-60.610Q33.848-60.598 33.895-60.547Q33.942-60.496 33.942-60.426Q33.942-60.348 33.893-60.299Q33.844-60.250 33.774-60.243M33.774-61.930L28.461-61.930Q28.383-61.938 28.334-61.987Q28.286-62.036 28.286-62.114Q28.286-62.184 28.333-62.235Q28.379-62.286 28.461-62.297L33.774-62.297Q33.848-62.286 33.895-62.235Q33.942-62.184 33.942-62.114Q33.942-62.036 33.893-61.987Q33.844-61.938 33.774-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M39.297-59.297L38.074-62.153Q37.992-62.328 37.848-62.373Q37.703-62.418 37.434-62.418L37.434-62.715L39.145-62.715L39.145-62.418Q38.723-62.418 38.723-62.235Q38.723-62.200 38.738-62.153L39.684-59.961L40.524-61.938Q40.563-62.016 40.563-62.106Q40.563-62.246 40.457-62.332Q40.352-62.418 40.211-62.418L40.211-62.715L41.563-62.715L41.563-62.418Q41.039-62.418 40.824-61.938L39.699-59.297Q39.637-59.188 39.531-59.188L39.465-59.188Q39.352-59.188 39.297-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M41.608-60.098Q41.608-60.582 42.010-60.877Q42.413-61.172 42.963-61.291Q43.514-61.411 44.006-61.411L44.006-61.700Q44.006-61.926 43.891-62.133Q43.776-62.340 43.579-62.459Q43.381-62.578 43.151-62.578Q42.725-62.578 42.440-62.473Q42.510-62.446 42.557-62.391Q42.604-62.336 42.629-62.266Q42.655-62.196 42.655-62.121Q42.655-62.016 42.604-61.924Q42.553-61.832 42.461-61.782Q42.370-61.731 42.264-61.731Q42.159-61.731 42.067-61.782Q41.975-61.832 41.924-61.924Q41.874-62.016 41.874-62.121Q41.874-62.539 42.262-62.686Q42.651-62.832 43.151-62.832Q43.483-62.832 43.836-62.702Q44.190-62.571 44.418-62.317Q44.647-62.063 44.647-61.715L44.647-59.914Q44.647-59.782 44.719-59.672Q44.792-59.563 44.920-59.563Q45.045-59.563 45.114-59.668Q45.182-59.774 45.182-59.914L45.182-60.426L45.463-60.426L45.463-59.914Q45.463-59.711 45.346-59.553Q45.229-59.395 45.047-59.311Q44.866-59.227 44.663-59.227Q44.432-59.227 44.280-59.399Q44.127-59.571 44.096-59.801Q43.936-59.520 43.627-59.354Q43.319-59.188 42.967-59.188Q42.456-59.188 42.032-59.411Q41.608-59.633 41.608-60.098M42.295-60.098Q42.295-59.813 42.522-59.627Q42.749-59.442 43.042-59.442Q43.288-59.442 43.512-59.559Q43.737-59.676 43.872-59.879Q44.006-60.082 44.006-60.336L44.006-61.168Q43.741-61.168 43.456-61.114Q43.170-61.059 42.899-60.930Q42.627-60.801 42.461-60.594Q42.295-60.387 42.295-60.098M47.670-59.266L45.838-59.266L45.838-59.563Q46.112-59.563 46.280-59.610Q46.448-59.657 46.448-59.825L46.448-63.985Q46.448-64.200 46.385-64.295Q46.323-64.391 46.204-64.412Q46.084-64.434 45.838-64.434L45.838-64.731L47.061-64.817L47.061-59.825Q47.061-59.657 47.229-59.610Q47.397-59.563 47.670-59.563L47.670-59.266M51.526-59.266L48.245-59.266L48.245-59.563Q48.569-59.563 48.811-59.610Q49.053-59.657 49.053-59.825L49.053-64.168Q49.053-64.340 48.811-64.387Q48.569-64.434 48.245-64.434L48.245-64.731L51.292-64.731Q51.717-64.731 52.151-64.577Q52.584-64.422 52.879-64.114Q53.174-63.805 53.174-63.371Q53.174-63.118 53.049-62.901Q52.924-62.684 52.723-62.528Q52.522-62.371 52.290-62.272Q52.057-62.172 51.799-62.121Q52.174-62.086 52.553-61.909Q52.932-61.731 53.172-61.432Q53.413-61.133 53.413-60.739Q53.413-60.286 53.129-59.952Q52.846-59.618 52.411-59.442Q51.975-59.266 51.526-59.266M49.764-61.977L49.764-59.825Q49.764-59.653 49.856-59.608Q49.948-59.563 50.167-59.563L51.292-59.563Q51.530-59.563 51.764-59.651Q51.999-59.739 52.184-59.899Q52.370-60.059 52.471-60.272Q52.573-60.485 52.573-60.739Q52.573-61.059 52.420-61.344Q52.268-61.629 51.999-61.803Q51.729-61.977 51.413-61.977L49.764-61.977M49.764-64.168L49.764-62.235L51.053-62.235Q51.295-62.235 51.534-62.317Q51.772-62.399 51.956-62.545Q52.139-62.692 52.252-62.909Q52.366-63.125 52.366-63.371Q52.366-63.582 52.280-63.784Q52.194-63.985 52.047-64.127Q51.901-64.270 51.706-64.352Q51.510-64.434 51.292-64.434L50.167-64.434Q49.948-64.434 49.856-64.391Q49.764-64.348 49.764-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M59.854-61.082L57.381-61.082Q57.303-61.094 57.254-61.143Q57.206-61.192 57.206-61.266Q57.206-61.340 57.254-61.389Q57.303-61.438 57.381-61.450L59.854-61.450L59.854-63.930Q59.881-64.098 60.038-64.098Q60.112-64.098 60.161-64.049Q60.210-64 60.221-63.930L60.221-61.450L62.694-61.450Q62.862-61.418 62.862-61.266Q62.862-61.114 62.694-61.082L60.221-61.082L60.221-58.602Q60.210-58.532 60.161-58.483Q60.112-58.434 60.038-58.434Q59.881-58.434 59.854-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M68.217-59.297L66.994-62.153Q66.912-62.328 66.768-62.373Q66.623-62.418 66.354-62.418L66.354-62.715L68.065-62.715L68.065-62.418Q67.643-62.418 67.643-62.235Q67.643-62.200 67.658-62.153L68.604-59.961L69.444-61.938Q69.483-62.016 69.483-62.106Q69.483-62.246 69.377-62.332Q69.272-62.418 69.131-62.418L69.131-62.715L70.483-62.715L70.483-62.418Q69.959-62.418 69.744-61.938L68.619-59.297Q68.557-59.188 68.451-59.188L68.385-59.188Q68.272-59.188 68.217-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M70.527-60.098Q70.527-60.582 70.929-60.877Q71.332-61.172 71.882-61.291Q72.433-61.411 72.925-61.411L72.925-61.700Q72.925-61.926 72.810-62.133Q72.695-62.340 72.498-62.459Q72.300-62.578 72.070-62.578Q71.644-62.578 71.359-62.473Q71.429-62.446 71.476-62.391Q71.523-62.336 71.548-62.266Q71.574-62.196 71.574-62.121Q71.574-62.016 71.523-61.924Q71.472-61.832 71.380-61.782Q71.289-61.731 71.183-61.731Q71.078-61.731 70.986-61.782Q70.894-61.832 70.843-61.924Q70.793-62.016 70.793-62.121Q70.793-62.539 71.181-62.686Q71.570-62.832 72.070-62.832Q72.402-62.832 72.755-62.702Q73.109-62.571 73.337-62.317Q73.566-62.063 73.566-61.715L73.566-59.914Q73.566-59.782 73.638-59.672Q73.711-59.563 73.839-59.563Q73.964-59.563 74.033-59.668Q74.101-59.774 74.101-59.914L74.101-60.426L74.382-60.426L74.382-59.914Q74.382-59.711 74.265-59.553Q74.148-59.395 73.966-59.311Q73.785-59.227 73.582-59.227Q73.351-59.227 73.199-59.399Q73.046-59.571 73.015-59.801Q72.855-59.520 72.546-59.354Q72.238-59.188 71.886-59.188Q71.375-59.188 70.951-59.411Q70.527-59.633 70.527-60.098M71.214-60.098Q71.214-59.813 71.441-59.627Q71.668-59.442 71.961-59.442Q72.207-59.442 72.431-59.559Q72.656-59.676 72.791-59.879Q72.925-60.082 72.925-60.336L72.925-61.168Q72.660-61.168 72.375-61.114Q72.089-61.059 71.818-60.930Q71.546-60.801 71.380-60.594Q71.214-60.387 71.214-60.098M76.589-59.266L74.757-59.266L74.757-59.563Q75.031-59.563 75.199-59.610Q75.367-59.657 75.367-59.825L75.367-63.985Q75.367-64.200 75.304-64.295Q75.242-64.391 75.123-64.412Q75.004-64.434 74.757-64.434L74.757-64.731L75.980-64.817L75.980-59.825Q75.980-59.657 76.148-59.610Q76.316-59.563 76.589-59.563L76.589-59.266M77.269-62Q77.269-62.594 77.502-63.125Q77.734-63.657 78.150-64.057Q78.566-64.457 79.099-64.678Q79.632-64.899 80.238-64.899Q80.675-64.899 81.074-64.717Q81.472-64.536 81.781-64.203L82.254-64.868Q82.285-64.899 82.316-64.899L82.363-64.899Q82.390-64.899 82.421-64.868Q82.453-64.836 82.453-64.809L82.453-62.672Q82.453-62.649 82.421-62.618Q82.390-62.586 82.363-62.586L82.246-62.586Q82.218-62.586 82.187-62.618Q82.156-62.649 82.156-62.672Q82.156-62.938 82.013-63.291Q81.871-63.645 81.691-63.883Q81.437-64.215 81.087-64.409Q80.738-64.602 80.332-64.602Q79.828-64.602 79.375-64.383Q78.921-64.164 78.629-63.770Q78.132-63.102 78.132-62Q78.132-61.469 78.269-61.002Q78.406-60.536 78.681-60.170Q78.957-59.805 79.377-59.600Q79.796-59.395 80.339-59.395Q80.828-59.395 81.252-59.639Q81.675-59.883 81.923-60.303Q82.171-60.723 82.171-61.219Q82.171-61.254 82.201-61.280Q82.230-61.305 82.261-61.305L82.363-61.305Q82.406-61.305 82.429-61.276Q82.453-61.246 82.453-61.203Q82.453-60.766 82.277-60.377Q82.101-59.989 81.791-59.705Q81.480-59.422 81.070-59.260Q80.660-59.098 80.238-59.098Q79.648-59.098 79.107-59.319Q78.566-59.539 78.150-59.944Q77.734-60.348 77.502-60.877Q77.269-61.407 77.269-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M91.736-60.243L86.423-60.243Q86.345-60.250 86.296-60.299Q86.248-60.348 86.248-60.426Q86.248-60.496 86.295-60.547Q86.341-60.598 86.423-60.610L91.736-60.610Q91.810-60.598 91.857-60.547Q91.904-60.496 91.904-60.426Q91.904-60.348 91.855-60.299Q91.806-60.250 91.736-60.243M91.736-61.930L86.423-61.930Q86.345-61.938 86.296-61.987Q86.248-62.036 86.248-62.114Q86.248-62.184 86.295-62.235Q86.341-62.286 86.423-62.297L91.736-62.297Q91.810-62.286 91.857-62.235Q91.904-62.184 91.904-62.114Q91.904-62.036 91.855-61.987Q91.806-61.938 91.736-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M97.341-59.098Q96.638-59.098 96.238-59.498Q95.837-59.899 95.693-60.508Q95.548-61.118 95.548-61.817Q95.548-62.340 95.618-62.803Q95.689-63.266 95.882-63.678Q96.075-64.090 96.433-64.338Q96.790-64.586 97.341-64.586Q97.892-64.586 98.249-64.338Q98.607-64.090 98.798-63.680Q98.990-63.270 99.060-62.801Q99.130-62.332 99.130-61.817Q99.130-61.118 98.988-60.510Q98.845-59.903 98.445-59.500Q98.044-59.098 97.341-59.098M97.341-59.356Q97.814-59.356 98.046-59.791Q98.279-60.227 98.333-60.766Q98.388-61.305 98.388-61.946Q98.388-62.942 98.204-63.635Q98.021-64.328 97.341-64.328Q96.974-64.328 96.753-64.090Q96.532-63.852 96.437-63.495Q96.341-63.137 96.316-62.766Q96.290-62.395 96.290-61.946Q96.290-61.305 96.345-60.766Q96.400-60.227 96.632-59.791Q96.865-59.356 97.341-59.356M101.091-59.266L99.595-59.266L99.595-59.563Q100.228-59.563 100.650-60.043L101.419-60.953L100.427-62.153Q100.271-62.332 100.109-62.375Q99.947-62.418 99.642-62.418L99.642-62.715L101.329-62.715L101.329-62.418Q101.236-62.418 101.159-62.375Q101.083-62.332 101.083-62.243Q101.083-62.200 101.115-62.153L101.771-61.364L102.251-61.938Q102.368-62.075 102.368-62.211Q102.368-62.301 102.318-62.360Q102.267-62.418 102.185-62.418L102.185-62.715L103.673-62.715L103.673-62.418Q103.036-62.418 102.626-61.938L101.947-61.137L103.032-59.825Q103.193-59.649 103.353-59.606Q103.513-59.563 103.818-59.563L103.818-59.266L102.130-59.266L102.130-59.563Q102.220-59.563 102.298-59.606Q102.376-59.649 102.376-59.739Q102.376-59.762 102.345-59.825L101.603-60.731L101.017-60.043Q100.900-59.907 100.900-59.770Q100.900-59.684 100.950-59.623Q101.001-59.563 101.091-59.563L101.091-59.266M107.532-59.266L104.372-59.266L104.372-59.473Q104.372-59.500 104.396-59.532L105.747-60.930Q106.126-61.317 106.374-61.606Q106.622-61.895 106.796-62.252Q106.970-62.610 106.970-63Q106.970-63.348 106.837-63.641Q106.704-63.934 106.450-64.112Q106.197-64.289 105.841-64.289Q105.482-64.289 105.191-64.094Q104.900-63.899 104.755-63.571L104.810-63.571Q104.993-63.571 105.118-63.450Q105.243-63.328 105.243-63.137Q105.243-62.957 105.118-62.828Q104.993-62.700 104.810-62.700Q104.630-62.700 104.501-62.828Q104.372-62.957 104.372-63.137Q104.372-63.539 104.593-63.875Q104.814-64.211 105.179-64.399Q105.544-64.586 105.947-64.586Q106.427-64.586 106.843-64.399Q107.259-64.211 107.511-63.850Q107.763-63.489 107.763-63Q107.763-62.641 107.609-62.338Q107.454-62.036 107.202-61.776Q106.950-61.516 106.601-61.231Q106.251-60.946 106.083-60.793L105.154-59.953L105.868-59.953Q107.243-59.953 107.282-59.993Q107.353-60.071 107.396-60.256Q107.439-60.442 107.482-60.731L107.763-60.731L107.532-59.266M110.314-59.098Q109.611-59.098 109.210-59.498Q108.810-59.899 108.665-60.508Q108.521-61.118 108.521-61.817Q108.521-62.340 108.591-62.803Q108.661-63.266 108.855-63.678Q109.048-64.090 109.406-64.338Q109.763-64.586 110.314-64.586Q110.865-64.586 111.222-64.338Q111.579-64.090 111.771-63.680Q111.962-63.270 112.032-62.801Q112.103-62.332 112.103-61.817Q112.103-61.118 111.960-60.510Q111.818-59.903 111.417-59.500Q111.017-59.098 110.314-59.098M110.314-59.356Q110.786-59.356 111.019-59.791Q111.251-60.227 111.306-60.766Q111.361-61.305 111.361-61.946Q111.361-62.942 111.177-63.635Q110.993-64.328 110.314-64.328Q109.947-64.328 109.726-64.090Q109.505-63.852 109.409-63.495Q109.314-63.137 109.288-62.766Q109.263-62.395 109.263-61.946Q109.263-61.305 109.318-60.766Q109.372-60.227 109.605-59.791Q109.837-59.356 110.314-59.356M114.560-59.098Q113.857-59.098 113.456-59.498Q113.056-59.899 112.911-60.508Q112.767-61.118 112.767-61.817Q112.767-62.340 112.837-62.803Q112.907-63.266 113.101-63.678Q113.294-64.090 113.652-64.338Q114.009-64.586 114.560-64.586Q115.111-64.586 115.468-64.338Q115.825-64.090 116.017-63.680Q116.208-63.270 116.279-62.801Q116.349-62.332 116.349-61.817Q116.349-61.118 116.206-60.510Q116.064-59.903 115.663-59.500Q115.263-59.098 114.560-59.098M114.560-59.356Q115.032-59.356 115.265-59.791Q115.497-60.227 115.552-60.766Q115.607-61.305 115.607-61.946Q115.607-62.942 115.423-63.635Q115.240-64.328 114.560-64.328Q114.193-64.328 113.972-64.090Q113.751-63.852 113.656-63.495Q113.560-63.137 113.534-62.766Q113.509-62.395 113.509-61.946Q113.509-61.305 113.564-60.766Q113.618-60.227 113.851-59.791Q114.083-59.356 114.560-59.356\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M122.660-61.082L120.187-61.082Q120.109-61.094 120.060-61.143Q120.012-61.192 120.012-61.266Q120.012-61.340 120.060-61.389Q120.109-61.438 120.187-61.450L122.660-61.450L122.660-63.930Q122.687-64.098 122.844-64.098Q122.918-64.098 122.967-64.049Q123.016-64 123.027-63.930L123.027-61.450L125.500-61.450Q125.668-61.418 125.668-61.266Q125.668-61.114 125.500-61.082L123.027-61.082L123.027-58.602Q123.016-58.532 122.967-58.483Q122.918-58.434 122.844-58.434Q122.687-58.434 122.660-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M131.105-59.098Q130.402-59.098 130.002-59.498Q129.601-59.899 129.457-60.508Q129.312-61.118 129.312-61.817Q129.312-62.340 129.382-62.803Q129.453-63.266 129.646-63.678Q129.839-64.090 130.197-64.338Q130.554-64.586 131.105-64.586Q131.656-64.586 132.013-64.338Q132.371-64.090 132.562-63.680Q132.754-63.270 132.824-62.801Q132.894-62.332 132.894-61.817Q132.894-61.118 132.752-60.510Q132.609-59.903 132.209-59.500Q131.808-59.098 131.105-59.098M131.105-59.356Q131.578-59.356 131.810-59.791Q132.043-60.227 132.097-60.766Q132.152-61.305 132.152-61.946Q132.152-62.942 131.968-63.635Q131.785-64.328 131.105-64.328Q130.738-64.328 130.517-64.090Q130.297-63.852 130.201-63.495Q130.105-63.137 130.080-62.766Q130.054-62.395 130.054-61.946Q130.054-61.305 130.109-60.766Q130.164-60.227 130.396-59.791Q130.629-59.356 131.105-59.356M134.855-59.266L133.359-59.266L133.359-59.563Q133.992-59.563 134.414-60.043L135.183-60.953L134.191-62.153Q134.035-62.332 133.873-62.375Q133.711-62.418 133.406-62.418L133.406-62.715L135.093-62.715L135.093-62.418Q135-62.418 134.923-62.375Q134.847-62.332 134.847-62.243Q134.847-62.200 134.879-62.153L135.535-61.364L136.015-61.938Q136.132-62.075 136.132-62.211Q136.132-62.301 136.082-62.360Q136.031-62.418 135.949-62.418L135.949-62.715L137.437-62.715L137.437-62.418Q136.800-62.418 136.390-61.938L135.711-61.137L136.797-59.825Q136.957-59.649 137.117-59.606Q137.277-59.563 137.582-59.563L137.582-59.266L135.894-59.266L135.894-59.563Q135.984-59.563 136.062-59.606Q136.140-59.649 136.140-59.739Q136.140-59.762 136.109-59.825L135.367-60.731L134.781-60.043Q134.664-59.907 134.664-59.770Q134.664-59.684 134.714-59.623Q134.765-59.563 134.855-59.563L134.855-59.266M138.062-60.489Q138.062-60.985 138.388-61.350Q138.714-61.715 139.238-61.961L138.968-62.121Q138.672-62.305 138.488-62.600Q138.304-62.895 138.304-63.235Q138.304-63.629 138.523-63.940Q138.742-64.250 139.095-64.418Q139.449-64.586 139.832-64.586Q140.105-64.586 140.379-64.508Q140.652-64.430 140.869-64.282Q141.086-64.133 141.222-63.907Q141.359-63.680 141.359-63.387Q141.359-62.981 141.089-62.674Q140.820-62.368 140.398-62.153L140.847-61.883Q141.066-61.746 141.234-61.553Q141.402-61.360 141.500-61.121Q141.597-60.883 141.597-60.625Q141.597-60.286 141.447-59.998Q141.297-59.711 141.050-59.514Q140.804-59.317 140.480-59.207Q140.156-59.098 139.832-59.098Q139.402-59.098 138.996-59.260Q138.589-59.422 138.326-59.741Q138.062-60.059 138.062-60.489M138.550-60.489Q138.550-60.004 138.941-59.688Q139.332-59.371 139.832-59.371Q140.125-59.371 140.423-59.483Q140.722-59.594 140.916-59.813Q141.109-60.032 141.109-60.344Q141.109-60.575 140.968-60.786Q140.828-60.996 140.621-61.114L139.511-61.793Q139.093-61.590 138.822-61.254Q138.550-60.918 138.550-60.489M139.136-62.922L140.125-62.321Q140.472-62.504 140.699-62.774Q140.925-63.043 140.925-63.387Q140.925-63.606 140.834-63.782Q140.742-63.957 140.588-64.080Q140.433-64.203 140.232-64.274Q140.031-64.344 139.832-64.344Q139.425-64.344 139.080-64.133Q138.734-63.922 138.734-63.539Q138.734-63.356 138.845-63.194Q138.957-63.032 139.136-62.922\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M150.765-60.243L145.452-60.243Q145.374-60.250 145.325-60.299Q145.277-60.348 145.277-60.426Q145.277-60.496 145.324-60.547Q145.370-60.598 145.452-60.610L150.765-60.610Q150.839-60.598 150.886-60.547Q150.933-60.496 150.933-60.426Q150.933-60.348 150.884-60.299Q150.835-60.250 150.765-60.243M150.765-61.930L145.452-61.930Q145.374-61.938 145.325-61.987Q145.277-62.036 145.277-62.114Q145.277-62.184 145.324-62.235Q145.370-62.286 145.452-62.297L150.765-62.297Q150.839-62.286 150.886-62.235Q150.933-62.184 150.933-62.114Q150.933-62.036 150.884-61.987Q150.835-61.938 150.765-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.73)\">\u003Cpath d=\"M156.369-59.098Q155.666-59.098 155.266-59.498Q154.865-59.899 154.721-60.508Q154.576-61.118 154.576-61.817Q154.576-62.340 154.646-62.803Q154.717-63.266 154.910-63.678Q155.103-64.090 155.461-64.338Q155.818-64.586 156.369-64.586Q156.920-64.586 157.277-64.338Q157.635-64.090 157.826-63.680Q158.018-63.270 158.088-62.801Q158.158-62.332 158.158-61.817Q158.158-61.118 158.016-60.510Q157.873-59.903 157.473-59.500Q157.072-59.098 156.369-59.098M156.369-59.356Q156.842-59.356 157.074-59.791Q157.307-60.227 157.361-60.766Q157.416-61.305 157.416-61.946Q157.416-62.942 157.232-63.635Q157.049-64.328 156.369-64.328Q156.002-64.328 155.781-64.090Q155.560-63.852 155.465-63.495Q155.369-63.137 155.344-62.766Q155.318-62.395 155.318-61.946Q155.318-61.305 155.373-60.766Q155.428-60.227 155.660-59.791Q155.893-59.356 156.369-59.356M160.119-59.266L158.623-59.266L158.623-59.563Q159.256-59.563 159.678-60.043L160.447-60.953L159.455-62.153Q159.299-62.332 159.137-62.375Q158.975-62.418 158.670-62.418L158.670-62.715L160.357-62.715L160.357-62.418Q160.264-62.418 160.187-62.375Q160.111-62.332 160.111-62.243Q160.111-62.200 160.143-62.153L160.799-61.364L161.279-61.938Q161.396-62.075 161.396-62.211Q161.396-62.301 161.346-62.360Q161.295-62.418 161.213-62.418L161.213-62.715L162.701-62.715L162.701-62.418Q162.064-62.418 161.654-61.938L160.975-61.137L162.060-59.825Q162.221-59.649 162.381-59.606Q162.541-59.563 162.846-59.563L162.846-59.266L161.158-59.266L161.158-59.563Q161.248-59.563 161.326-59.606Q161.404-59.649 161.404-59.739Q161.404-59.762 161.373-59.825L160.631-60.731L160.045-60.043Q159.928-59.907 159.928-59.770Q159.928-59.684 159.978-59.623Q160.029-59.563 160.119-59.563L160.119-59.266M166.560-59.266L163.400-59.266L163.400-59.473Q163.400-59.500 163.424-59.532L164.775-60.930Q165.154-61.317 165.402-61.606Q165.650-61.895 165.824-62.252Q165.998-62.610 165.998-63Q165.998-63.348 165.865-63.641Q165.732-63.934 165.478-64.112Q165.225-64.289 164.869-64.289Q164.510-64.289 164.219-64.094Q163.928-63.899 163.783-63.571L163.838-63.571Q164.021-63.571 164.146-63.450Q164.271-63.328 164.271-63.137Q164.271-62.957 164.146-62.828Q164.021-62.700 163.838-62.700Q163.658-62.700 163.529-62.828Q163.400-62.957 163.400-63.137Q163.400-63.539 163.621-63.875Q163.842-64.211 164.207-64.399Q164.572-64.586 164.975-64.586Q165.455-64.586 165.871-64.399Q166.287-64.211 166.539-63.850Q166.791-63.489 166.791-63Q166.791-62.641 166.637-62.338Q166.482-62.036 166.230-61.776Q165.978-61.516 165.629-61.231Q165.279-60.946 165.111-60.793L164.182-59.953L164.896-59.953Q166.271-59.953 166.310-59.993Q166.381-60.071 166.424-60.256Q166.467-60.442 166.510-60.731L166.791-60.731L166.560-59.266M169.342-59.098Q168.639-59.098 168.238-59.498Q167.838-59.899 167.693-60.508Q167.549-61.118 167.549-61.817Q167.549-62.340 167.619-62.803Q167.689-63.266 167.883-63.678Q168.076-64.090 168.434-64.338Q168.791-64.586 169.342-64.586Q169.893-64.586 170.250-64.338Q170.607-64.090 170.799-63.680Q170.990-63.270 171.060-62.801Q171.131-62.332 171.131-61.817Q171.131-61.118 170.988-60.510Q170.846-59.903 170.445-59.500Q170.045-59.098 169.342-59.098M169.342-59.356Q169.814-59.356 170.047-59.791Q170.279-60.227 170.334-60.766Q170.389-61.305 170.389-61.946Q170.389-62.942 170.205-63.635Q170.021-64.328 169.342-64.328Q168.975-64.328 168.754-64.090Q168.533-63.852 168.437-63.495Q168.342-63.137 168.316-62.766Q168.291-62.395 168.291-61.946Q168.291-61.305 168.346-60.766Q168.400-60.227 168.633-59.791Q168.865-59.356 169.342-59.356M171.818-60.489Q171.818-60.985 172.144-61.350Q172.471-61.715 172.994-61.961L172.725-62.121Q172.428-62.305 172.244-62.600Q172.060-62.895 172.060-63.235Q172.060-63.629 172.279-63.940Q172.498-64.250 172.852-64.418Q173.205-64.586 173.588-64.586Q173.861-64.586 174.135-64.508Q174.408-64.430 174.625-64.282Q174.842-64.133 174.978-63.907Q175.115-63.680 175.115-63.387Q175.115-62.981 174.846-62.674Q174.576-62.368 174.154-62.153L174.603-61.883Q174.822-61.746 174.990-61.553Q175.158-61.360 175.256-61.121Q175.353-60.883 175.353-60.625Q175.353-60.286 175.203-59.998Q175.053-59.711 174.807-59.514Q174.560-59.317 174.236-59.207Q173.912-59.098 173.588-59.098Q173.158-59.098 172.752-59.260Q172.346-59.422 172.082-59.741Q171.818-60.059 171.818-60.489M172.307-60.489Q172.307-60.004 172.697-59.688Q173.088-59.371 173.588-59.371Q173.881-59.371 174.180-59.483Q174.478-59.594 174.672-59.813Q174.865-60.032 174.865-60.344Q174.865-60.575 174.725-60.786Q174.584-60.996 174.377-61.114L173.268-61.793Q172.850-61.590 172.578-61.254Q172.307-60.918 172.307-60.489M172.893-62.922L173.881-62.321Q174.228-62.504 174.455-62.774Q174.682-63.043 174.682-63.387Q174.682-63.606 174.590-63.782Q174.498-63.957 174.344-64.080Q174.189-64.203 173.988-64.274Q173.787-64.344 173.588-64.344Q173.182-64.344 172.836-64.133Q172.490-63.922 172.490-63.539Q172.490-63.356 172.602-63.194Q172.713-63.032 172.893-62.922\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 1.053h398.338\"\u002F>\u003Cg transform=\"translate(-35.01 74.266)\">\u003Cpath d=\"M10.731-59.266L8.994-59.266L8.994-59.546Q9.716-59.546 9.716-59.946L9.716-63.556Q9.716-63.767 8.994-63.767L8.994-64.048L10.351-64.048Q10.447-64.048 10.498-63.949L12.173-59.974L13.845-63.949Q13.892-64.048 13.991-64.048L15.342-64.048L15.342-63.767Q14.620-63.767 14.620-63.556L14.620-59.755Q14.620-59.546 15.342-59.546L15.342-59.266L13.284-59.266L13.284-59.546Q14.005-59.546 14.005-59.755L14.005-63.767L12.153-59.365Q12.105-59.266 11.995-59.266Q11.883-59.266 11.835-59.365L10.010-63.696L10.010-59.946Q10.010-59.546 10.731-59.546L10.731-59.266M16.035-60.801Q16.035-61.122 16.160-61.411Q16.285-61.700 16.511-61.923Q16.736-62.147 17.032-62.267Q17.327-62.387 17.645-62.387Q17.973-62.387 18.235-62.287Q18.496-62.188 18.672-62.006Q18.848-61.823 18.942-61.565Q19.036-61.307 19.036-60.975Q19.036-60.883 18.954-60.862L16.699-60.862L16.699-60.801Q16.699-60.213 16.982-59.830Q17.266-59.447 17.833-59.447Q18.155-59.447 18.423-59.640Q18.691-59.833 18.780-60.148Q18.787-60.189 18.862-60.203L18.954-60.203Q19.036-60.179 19.036-60.107Q19.036-60.100 19.030-60.073Q18.917-59.676 18.546-59.437Q18.175-59.198 17.751-59.198Q17.314-59.198 16.914-59.406Q16.514-59.615 16.275-59.982Q16.035-60.349 16.035-60.801M16.705-61.071L18.520-61.071Q18.520-61.348 18.423-61.600Q18.325-61.853 18.127-62.009Q17.929-62.164 17.645-62.164Q17.368-62.164 17.155-62.006Q16.941-61.847 16.823-61.592Q16.705-61.337 16.705-61.071M21.306-59.266L19.672-59.266L19.672-59.546Q19.901-59.546 20.050-59.580Q20.199-59.615 20.199-59.755L20.199-61.604Q20.199-61.874 20.091-61.935Q19.983-61.997 19.672-61.997L19.672-62.277L20.732-62.352L20.732-61.703Q20.903-62.011 21.207-62.182Q21.511-62.352 21.856-62.352Q22.256-62.352 22.533-62.212Q22.810-62.072 22.895-61.724Q23.063-62.017 23.362-62.185Q23.661-62.352 24.006-62.352Q24.512-62.352 24.796-62.129Q25.079-61.905 25.079-61.409L25.079-59.755Q25.079-59.618 25.228-59.582Q25.377-59.546 25.602-59.546L25.602-59.266L23.972-59.266L23.972-59.546Q24.198-59.546 24.348-59.582Q24.498-59.618 24.498-59.755L24.498-61.395Q24.498-61.730 24.379-61.930Q24.259-62.130 23.945-62.130Q23.675-62.130 23.440-61.994Q23.206-61.857 23.068-61.623Q22.929-61.389 22.929-61.115L22.929-59.755Q22.929-59.618 23.078-59.582Q23.227-59.546 23.452-59.546L23.452-59.266L21.822-59.266L21.822-59.546Q22.051-59.546 22.200-59.580Q22.348-59.615 22.348-59.755L22.348-61.395Q22.348-61.730 22.229-61.930Q22.109-62.130 21.795-62.130Q21.525-62.130 21.291-61.994Q21.056-61.857 20.918-61.623Q20.780-61.389 20.780-61.115L20.780-59.755Q20.780-59.618 20.930-59.582Q21.080-59.546 21.306-59.546L21.306-59.266M26.149-60.749Q26.149-61.091 26.284-61.390Q26.419-61.689 26.658-61.913Q26.898-62.137 27.216-62.262Q27.533-62.387 27.865-62.387Q28.309-62.387 28.709-62.171Q29.109-61.956 29.343-61.578Q29.577-61.201 29.577-60.749Q29.577-60.408 29.436-60.124Q29.294-59.840 29.049-59.633Q28.805-59.427 28.496-59.312Q28.186-59.198 27.865-59.198Q27.434-59.198 27.033-59.399Q26.631-59.601 26.390-59.953Q26.149-60.305 26.149-60.749M27.865-59.447Q28.467-59.447 28.690-59.825Q28.914-60.203 28.914-60.835Q28.914-61.447 28.680-61.806Q28.446-62.164 27.865-62.164Q26.812-62.164 26.812-60.835Q26.812-60.203 27.038-59.825Q27.263-59.447 27.865-59.447M31.922-59.266L30.186-59.266L30.186-59.546Q30.415-59.546 30.564-59.580Q30.712-59.615 30.712-59.755L30.712-61.604Q30.712-61.874 30.605-61.935Q30.497-61.997 30.186-61.997L30.186-62.277L31.215-62.352L31.215-61.645Q31.345-61.953 31.587-62.152Q31.830-62.352 32.148-62.352Q32.366-62.352 32.537-62.228Q32.708-62.103 32.708-61.891Q32.708-61.754 32.609-61.655Q32.510-61.556 32.377-61.556Q32.240-61.556 32.141-61.655Q32.042-61.754 32.042-61.891Q32.042-62.031 32.141-62.130Q31.850-62.130 31.650-61.934Q31.450-61.737 31.358-61.443Q31.266-61.149 31.266-60.869L31.266-59.755Q31.266-59.546 31.922-59.546L31.922-59.266M33.628-58.131Q33.758-58.063 33.894-58.063Q34.065-58.063 34.216-58.152Q34.366-58.241 34.477-58.386Q34.588-58.531 34.667-58.699L34.930-59.266L33.761-61.792Q33.686-61.939 33.556-61.971Q33.426-62.004 33.194-62.004L33.194-62.284L34.715-62.284L34.715-62.004Q34.366-62.004 34.366-61.857Q34.369-61.836 34.371-61.819Q34.373-61.802 34.373-61.792L35.231-59.933L36.003-61.604Q36.037-61.672 36.037-61.751Q36.037-61.864 35.954-61.934Q35.870-62.004 35.757-62.004L35.757-62.284L36.953-62.284L36.953-62.004Q36.735-62.004 36.562-61.900Q36.389-61.795 36.297-61.604L34.961-58.699Q34.790-58.329 34.520-58.083Q34.250-57.837 33.894-57.837Q33.624-57.837 33.406-58.003Q33.187-58.169 33.187-58.432Q33.187-58.569 33.279-58.658Q33.371-58.746 33.511-58.746Q33.648-58.746 33.737-58.658Q33.826-58.569 33.826-58.432Q33.826-58.329 33.773-58.251Q33.720-58.172 33.628-58.131\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M10.613-59.297L9.390-62.153Q9.308-62.328 9.164-62.373Q9.019-62.418 8.750-62.418L8.750-62.715L10.461-62.715L10.461-62.418Q10.039-62.418 10.039-62.235Q10.039-62.200 10.054-62.153L11-59.961L11.840-61.938Q11.879-62.016 11.879-62.106Q11.879-62.246 11.773-62.332Q11.668-62.418 11.527-62.418L11.527-62.715L12.879-62.715L12.879-62.418Q12.355-62.418 12.140-61.938L11.015-59.297Q10.953-59.188 10.847-59.188L10.781-59.188Q10.668-59.188 10.613-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M12.924-60.098Q12.924-60.582 13.326-60.877Q13.729-61.172 14.279-61.291Q14.830-61.411 15.322-61.411L15.322-61.700Q15.322-61.926 15.207-62.133Q15.092-62.340 14.895-62.459Q14.697-62.578 14.467-62.578Q14.041-62.578 13.756-62.473Q13.826-62.446 13.873-62.391Q13.920-62.336 13.945-62.266Q13.971-62.196 13.971-62.121Q13.971-62.016 13.920-61.924Q13.869-61.832 13.777-61.782Q13.686-61.731 13.580-61.731Q13.475-61.731 13.383-61.782Q13.291-61.832 13.240-61.924Q13.190-62.016 13.190-62.121Q13.190-62.539 13.578-62.686Q13.967-62.832 14.467-62.832Q14.799-62.832 15.152-62.702Q15.506-62.571 15.734-62.317Q15.963-62.063 15.963-61.715L15.963-59.914Q15.963-59.782 16.035-59.672Q16.108-59.563 16.236-59.563Q16.361-59.563 16.430-59.668Q16.498-59.774 16.498-59.914L16.498-60.426L16.779-60.426L16.779-59.914Q16.779-59.711 16.662-59.553Q16.545-59.395 16.363-59.311Q16.182-59.227 15.979-59.227Q15.748-59.227 15.596-59.399Q15.443-59.571 15.412-59.801Q15.252-59.520 14.943-59.354Q14.635-59.188 14.283-59.188Q13.772-59.188 13.348-59.411Q12.924-59.633 12.924-60.098M13.611-60.098Q13.611-59.813 13.838-59.627Q14.065-59.442 14.358-59.442Q14.604-59.442 14.828-59.559Q15.053-59.676 15.188-59.879Q15.322-60.082 15.322-60.336L15.322-61.168Q15.057-61.168 14.772-61.114Q14.486-61.059 14.215-60.930Q13.943-60.801 13.777-60.594Q13.611-60.387 13.611-60.098M18.986-59.266L17.154-59.266L17.154-59.563Q17.428-59.563 17.596-59.610Q17.764-59.657 17.764-59.825L17.764-63.985Q17.764-64.200 17.701-64.295Q17.639-64.391 17.520-64.412Q17.401-64.434 17.154-64.434L17.154-64.731L18.377-64.817L18.377-59.825Q18.377-59.657 18.545-59.610Q18.713-59.563 18.986-59.563L18.986-59.266M21.490-59.266L19.568-59.266L19.568-59.563Q20.377-59.563 20.377-60.043L20.377-64.168Q20.377-64.340 20.135-64.387Q19.893-64.434 19.568-64.434L19.568-64.731L21.065-64.731Q21.174-64.731 21.233-64.618L23.080-60.075L24.920-64.618Q24.983-64.731 25.088-64.731L26.592-64.731L26.592-64.434Q26.272-64.434 26.029-64.387Q25.787-64.340 25.787-64.168L25.787-59.825Q25.787-59.657 26.029-59.610Q26.272-59.563 26.592-59.563L26.592-59.266L24.291-59.266L24.291-59.563Q25.096-59.563 25.096-59.825L25.096-64.418L23.049-59.379Q23.014-59.266 22.881-59.266Q22.740-59.266 22.705-59.379L20.682-64.356L20.682-60.043Q20.682-59.563 21.490-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M35.777-60.243L30.464-60.243Q30.386-60.250 30.337-60.299Q30.289-60.348 30.289-60.426Q30.289-60.496 30.336-60.547Q30.382-60.598 30.464-60.610L35.777-60.610Q35.851-60.598 35.898-60.547Q35.945-60.496 35.945-60.426Q35.945-60.348 35.896-60.299Q35.847-60.250 35.777-60.243M35.777-61.930L30.464-61.930Q30.386-61.938 30.337-61.987Q30.289-62.036 30.289-62.114Q30.289-62.184 30.336-62.235Q30.382-62.286 30.464-62.297L35.777-62.297Q35.851-62.286 35.898-62.235Q35.945-62.184 35.945-62.114Q35.945-62.036 35.896-61.987Q35.847-61.938 35.777-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M41.026-59.266L39.308-59.266Q39.268-59.266 39.241-59.307Q39.214-59.348 39.214-59.395L39.237-59.496Q39.245-59.547 39.331-59.563Q40.061-59.563 40.186-60.090L41.214-64.188Q41.237-64.258 41.237-64.321Q41.237-64.383 41.171-64.403Q41.026-64.434 40.604-64.434Q40.499-64.465 40.499-64.563L40.530-64.664Q40.542-64.711 40.620-64.731L42.018-64.731Q42.077-64.731 42.114-64.702Q42.151-64.672 42.155-64.618L42.866-60.043L45.866-64.618Q45.944-64.731 46.061-64.731L47.405-64.731Q47.452-64.719 47.479-64.688Q47.507-64.657 47.507-64.610L47.483-64.504Q47.464-64.450 47.390-64.434Q46.948-64.434 46.788-64.395Q46.640-64.360 46.581-64.129L45.499-59.809Q45.483-59.715 45.483-59.672Q45.483-59.614 45.550-59.594Q45.690-59.563 46.116-59.563Q46.214-59.536 46.214-59.442L46.186-59.336Q46.179-59.286 46.100-59.266L44.018-59.266Q43.979-59.266 43.952-59.307Q43.925-59.348 43.925-59.395L43.948-59.496Q43.956-59.547 44.046-59.563Q44.483-59.563 44.642-59.602Q44.800-59.641 44.843-59.868L45.979-64.411L42.683-59.379Q42.616-59.266 42.483-59.266Q42.350-59.266 42.339-59.379L41.565-64.344L40.483-60.036Q40.468-59.934 40.468-59.883Q40.468-59.684 40.632-59.623Q40.796-59.563 41.046-59.563Q41.140-59.536 41.140-59.442L41.116-59.336Q41.108-59.286 41.026-59.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M47.330-59.078Q47.330-59.465 47.591-59.736Q47.851-60.007 48.253-60.176L48.080-60.273Q47.831-60.420 47.677-60.638Q47.523-60.856 47.523-61.126Q47.523-61.436 47.709-61.669Q47.895-61.902 48.188-62.024Q48.481-62.145 48.783-62.145Q49.073-62.145 49.365-62.047Q49.656-61.949 49.849-61.744Q50.043-61.539 50.043-61.240Q50.043-60.921 49.833-60.701Q49.624-60.481 49.281-60.320L49.603-60.147Q49.885-59.983 50.059-59.737Q50.233-59.491 50.233-59.186Q50.233-58.823 50.018-58.561Q49.803-58.299 49.466-58.164Q49.129-58.029 48.783-58.029Q48.440-58.029 48.106-58.143Q47.772-58.258 47.551-58.493Q47.330-58.729 47.330-59.078M47.737-59.084Q47.737-58.709 48.067-58.489Q48.396-58.269 48.783-58.269Q49.017-58.269 49.258-58.344Q49.498-58.419 49.662-58.577Q49.826-58.735 49.826-58.978Q49.826-59.148 49.718-59.287Q49.609-59.426 49.448-59.517L48.511-60.033Q48.185-59.895 47.961-59.649Q47.737-59.403 47.737-59.084M48.159-60.938L49.035-60.458Q49.682-60.774 49.682-61.240Q49.682-61.454 49.546-61.611Q49.410-61.767 49.203-61.845Q48.997-61.923 48.783-61.923Q48.461-61.923 48.171-61.783Q47.881-61.644 47.881-61.354Q47.881-61.123 48.159-60.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M53.286-57.266L52.110-57.266L52.110-65.266L53.286-65.266L53.286-64.899L52.477-64.899L52.477-57.633L53.286-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M55.600-59.188Q55.166-59.188 54.834-59.426Q54.502-59.664 54.282-60.053Q54.061-60.442 53.954-60.879Q53.846-61.317 53.846-61.715Q53.846-62.106 53.956-62.549Q54.065-62.993 54.282-63.373Q54.499-63.754 54.833-63.995Q55.166-64.235 55.600-64.235Q56.155-64.235 56.555-63.836Q56.956-63.438 57.153-62.852Q57.350-62.266 57.350-61.715Q57.350-61.161 57.153-60.573Q56.956-59.985 56.555-59.586Q56.155-59.188 55.600-59.188M55.600-59.746Q55.901-59.746 56.118-59.963Q56.334-60.180 56.461-60.508Q56.588-60.836 56.649-61.182Q56.709-61.528 56.709-61.809Q56.709-62.059 56.647-62.385Q56.584-62.711 56.454-63.002Q56.323-63.293 56.110-63.483Q55.897-63.672 55.600-63.672Q55.225-63.672 54.973-63.360Q54.721-63.047 54.604-62.614Q54.487-62.180 54.487-61.809Q54.487-61.411 54.600-60.930Q54.713-60.450 54.961-60.098Q55.209-59.746 55.600-59.746M57.983-59.504L57.983-59.594Q58.022-59.801 58.229-59.825L58.635-59.825L59.565-61.043L58.694-62.153L58.276-62.153Q58.081-62.172 58.030-62.395L58.030-62.481Q58.081-62.692 58.276-62.715L59.436-62.715Q59.635-62.692 59.686-62.481L59.686-62.395Q59.635-62.176 59.436-62.153L59.327-62.153L59.823-61.496L60.299-62.153L60.182-62.153Q59.983-62.176 59.932-62.395L59.932-62.481Q59.983-62.692 60.182-62.715L61.342-62.715Q61.538-62.696 61.588-62.481L61.588-62.395Q61.538-62.176 61.342-62.153L60.932-62.153L60.084-61.043L61.045-59.825L61.452-59.825Q61.651-59.801 61.702-59.594L61.702-59.504Q61.663-59.289 61.452-59.266L60.299-59.266Q60.092-59.289 60.053-59.504L60.053-59.594Q60.092-59.801 60.299-59.825L60.428-59.825L59.823-60.680L59.237-59.825L59.381-59.825Q59.588-59.801 59.627-59.594L59.627-59.504Q59.588-59.289 59.381-59.266L58.229-59.266Q58.034-59.286 57.983-59.504M62.397-59.504L62.397-59.578Q62.428-59.746 62.530-59.793L63.819-60.860Q64.151-61.137 64.333-61.289Q64.514-61.442 64.709-61.662Q64.905-61.883 65.026-62.133Q65.147-62.383 65.147-62.649Q65.147-62.973 64.971-63.207Q64.795-63.442 64.516-63.557Q64.237-63.672 63.916-63.672Q63.659-63.672 63.430-63.549Q63.202-63.426 63.100-63.211Q63.202-63.078 63.202-62.930Q63.202-62.770 63.083-62.647Q62.963-62.524 62.803-62.524Q62.627-62.524 62.512-62.649Q62.397-62.774 62.397-62.946Q62.397-63.239 62.532-63.481Q62.666-63.723 62.905-63.895Q63.143-64.067 63.411-64.151Q63.678-64.235 63.971-64.235Q64.452-64.235 64.868-64.045Q65.284-63.856 65.536-63.495Q65.788-63.133 65.788-62.649Q65.788-62.305 65.655-62.002Q65.522-61.700 65.297-61.440Q65.073-61.180 64.764-60.918Q64.456-60.657 64.245-60.481L63.436-59.825L65.147-59.825L65.147-59.969Q65.198-60.180 65.397-60.203L65.538-60.203Q65.737-60.184 65.788-59.969L65.788-59.504Q65.737-59.289 65.538-59.266L62.643-59.266Q62.448-59.286 62.397-59.504M68.338-59.188Q67.905-59.188 67.573-59.426Q67.241-59.664 67.020-60.053Q66.799-60.442 66.692-60.879Q66.584-61.317 66.584-61.715Q66.584-62.106 66.694-62.549Q66.803-62.993 67.020-63.373Q67.237-63.754 67.571-63.995Q67.905-64.235 68.338-64.235Q68.893-64.235 69.293-63.836Q69.694-63.438 69.891-62.852Q70.088-62.266 70.088-61.715Q70.088-61.161 69.891-60.573Q69.694-59.985 69.293-59.586Q68.893-59.188 68.338-59.188M68.338-59.746Q68.639-59.746 68.856-59.963Q69.073-60.180 69.200-60.508Q69.327-60.836 69.387-61.182Q69.448-61.528 69.448-61.809Q69.448-62.059 69.385-62.385Q69.323-62.711 69.192-63.002Q69.061-63.293 68.848-63.483Q68.635-63.672 68.338-63.672Q67.963-63.672 67.711-63.360Q67.459-63.047 67.342-62.614Q67.225-62.180 67.225-61.809Q67.225-61.411 67.338-60.930Q67.452-60.450 67.700-60.098Q67.948-59.746 68.338-59.746M70.815-60.680Q70.815-60.965 70.971-61.219Q71.127-61.473 71.377-61.647Q71.627-61.821 71.913-61.907Q71.674-61.981 71.448-62.123Q71.221-62.266 71.079-62.475Q70.936-62.684 70.936-62.930Q70.936-63.328 71.182-63.623Q71.428-63.918 71.811-64.077Q72.194-64.235 72.584-64.235Q72.975-64.235 73.358-64.077Q73.741-63.918 73.987-63.620Q74.233-63.321 74.233-62.930Q74.233-62.684 74.090-62.477Q73.948-62.270 73.721-62.125Q73.495-61.981 73.256-61.907Q73.709-61.770 74.030-61.444Q74.350-61.118 74.350-60.680Q74.350-60.243 74.092-59.899Q73.834-59.555 73.424-59.371Q73.014-59.188 72.584-59.188Q72.155-59.188 71.745-59.370Q71.334-59.551 71.075-59.895Q70.815-60.239 70.815-60.680M71.456-60.680Q71.456-60.407 71.622-60.192Q71.788-59.977 72.049-59.862Q72.311-59.746 72.584-59.746Q72.858-59.746 73.118-59.862Q73.377-59.977 73.543-60.194Q73.709-60.411 73.709-60.680Q73.709-60.957 73.543-61.174Q73.377-61.391 73.118-61.508Q72.858-61.625 72.584-61.625Q72.311-61.625 72.049-61.508Q71.788-61.391 71.622-61.176Q71.456-60.961 71.456-60.680M71.577-62.930Q71.577-62.692 71.733-62.524Q71.889-62.356 72.125-62.272Q72.362-62.188 72.584-62.188Q72.803-62.188 73.041-62.272Q73.280-62.356 73.436-62.526Q73.592-62.696 73.592-62.930Q73.592-63.164 73.436-63.334Q73.280-63.504 73.041-63.588Q72.803-63.672 72.584-63.672Q72.362-63.672 72.125-63.588Q71.889-63.504 71.733-63.336Q71.577-63.168 71.577-62.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M76.089-57.266L74.914-57.266L74.914-57.633L75.722-57.633L75.722-64.899L74.914-64.899L74.914-65.266L76.089-65.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M85.413-60.243L80.100-60.243Q80.022-60.250 79.973-60.299Q79.925-60.348 79.925-60.426Q79.925-60.496 79.972-60.547Q80.018-60.598 80.100-60.610L85.413-60.610Q85.487-60.598 85.534-60.547Q85.581-60.496 85.581-60.426Q85.581-60.348 85.532-60.299Q85.483-60.250 85.413-60.243M85.413-61.930L80.100-61.930Q80.022-61.938 79.973-61.987Q79.925-62.036 79.925-62.114Q79.925-62.184 79.972-62.235Q80.018-62.286 80.100-62.297L85.413-62.297Q85.487-62.286 85.534-62.235Q85.581-62.184 85.581-62.114Q85.581-62.036 85.532-61.987Q85.483-61.938 85.413-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.555)\">\u003Cpath d=\"M91.017-59.098Q90.314-59.098 89.914-59.498Q89.513-59.899 89.369-60.508Q89.224-61.118 89.224-61.817Q89.224-62.340 89.294-62.803Q89.365-63.266 89.558-63.678Q89.751-64.090 90.109-64.338Q90.466-64.586 91.017-64.586Q91.568-64.586 91.925-64.338Q92.283-64.090 92.474-63.680Q92.666-63.270 92.736-62.801Q92.806-62.332 92.806-61.817Q92.806-61.118 92.664-60.510Q92.521-59.903 92.121-59.500Q91.720-59.098 91.017-59.098M91.017-59.356Q91.490-59.356 91.722-59.791Q91.955-60.227 92.009-60.766Q92.064-61.305 92.064-61.946Q92.064-62.942 91.880-63.635Q91.697-64.328 91.017-64.328Q90.650-64.328 90.429-64.090Q90.209-63.852 90.113-63.495Q90.017-63.137 89.992-62.766Q89.966-62.395 89.966-61.946Q89.966-61.305 90.021-60.766Q90.076-60.227 90.308-59.791Q90.541-59.356 91.017-59.356M94.767-59.266L93.271-59.266L93.271-59.563Q93.904-59.563 94.326-60.043L95.095-60.953L94.103-62.153Q93.947-62.332 93.785-62.375Q93.623-62.418 93.318-62.418L93.318-62.715L95.005-62.715L95.005-62.418Q94.912-62.418 94.835-62.375Q94.759-62.332 94.759-62.243Q94.759-62.200 94.791-62.153L95.447-61.364L95.927-61.938Q96.044-62.075 96.044-62.211Q96.044-62.301 95.994-62.360Q95.943-62.418 95.861-62.418L95.861-62.715L97.349-62.715L97.349-62.418Q96.712-62.418 96.302-61.938L95.623-61.137L96.709-59.825Q96.869-59.649 97.029-59.606Q97.189-59.563 97.494-59.563L97.494-59.266L95.806-59.266L95.806-59.563Q95.896-59.563 95.974-59.606Q96.052-59.649 96.052-59.739Q96.052-59.762 96.021-59.825L95.279-60.731L94.693-60.043Q94.576-59.907 94.576-59.770Q94.576-59.684 94.626-59.623Q94.677-59.563 94.767-59.563L94.767-59.266M101.209-59.266L98.048-59.266L98.048-59.473Q98.048-59.500 98.072-59.532L99.423-60.930Q99.802-61.317 100.050-61.606Q100.298-61.895 100.472-62.252Q100.646-62.610 100.646-63Q100.646-63.348 100.513-63.641Q100.380-63.934 100.126-64.112Q99.873-64.289 99.517-64.289Q99.158-64.289 98.867-64.094Q98.576-63.899 98.431-63.571L98.486-63.571Q98.669-63.571 98.794-63.450Q98.919-63.328 98.919-63.137Q98.919-62.957 98.794-62.828Q98.669-62.700 98.486-62.700Q98.306-62.700 98.177-62.828Q98.048-62.957 98.048-63.137Q98.048-63.539 98.269-63.875Q98.490-64.211 98.855-64.399Q99.220-64.586 99.623-64.586Q100.103-64.586 100.519-64.399Q100.935-64.211 101.187-63.850Q101.439-63.489 101.439-63Q101.439-62.641 101.285-62.338Q101.130-62.036 100.878-61.776Q100.626-61.516 100.277-61.231Q99.927-60.946 99.759-60.793L98.830-59.953L99.544-59.953Q100.919-59.953 100.959-59.993Q101.029-60.071 101.072-60.256Q101.115-60.442 101.158-60.731L101.439-60.731L101.209-59.266M102.205-60.098Q102.205-60.582 102.607-60.877Q103.009-61.172 103.560-61.291Q104.111-61.411 104.603-61.411L104.603-61.700Q104.603-61.926 104.488-62.133Q104.373-62.340 104.175-62.459Q103.978-62.578 103.748-62.578Q103.322-62.578 103.037-62.473Q103.107-62.446 103.154-62.391Q103.201-62.336 103.226-62.266Q103.251-62.196 103.251-62.121Q103.251-62.016 103.201-61.924Q103.150-61.832 103.058-61.782Q102.966-61.731 102.861-61.731Q102.755-61.731 102.664-61.782Q102.572-61.832 102.521-61.924Q102.470-62.016 102.470-62.121Q102.470-62.539 102.859-62.686Q103.248-62.832 103.748-62.832Q104.080-62.832 104.433-62.702Q104.787-62.571 105.015-62.317Q105.244-62.063 105.244-61.715L105.244-59.914Q105.244-59.782 105.316-59.672Q105.388-59.563 105.517-59.563Q105.642-59.563 105.710-59.668Q105.779-59.774 105.779-59.914L105.779-60.426L106.060-60.426L106.060-59.914Q106.060-59.711 105.943-59.553Q105.826-59.395 105.644-59.311Q105.462-59.227 105.259-59.227Q105.029-59.227 104.876-59.399Q104.724-59.571 104.693-59.801Q104.533-59.520 104.224-59.354Q103.916-59.188 103.564-59.188Q103.052-59.188 102.628-59.411Q102.205-59.633 102.205-60.098M102.892-60.098Q102.892-59.813 103.119-59.627Q103.345-59.442 103.638-59.442Q103.884-59.442 104.109-59.559Q104.334-59.676 104.468-59.879Q104.603-60.082 104.603-60.336L104.603-61.168Q104.337-61.168 104.052-61.114Q103.767-61.059 103.496-60.930Q103.224-60.801 103.058-60.594Q102.892-60.387 102.892-60.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 25.238h398.338\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M10.967-59.225L9.415-63.556Q9.353-63.699 9.191-63.733Q9.029-63.767 8.776-63.767L8.776-64.048L10.703-64.048L10.703-63.767Q10.122-63.767 10.122-63.593Q10.122-63.573 10.129-63.556L11.353-60.120L12.460-63.207L12.334-63.556Q12.276-63.699 12.110-63.733Q11.944-63.767 11.695-63.767L11.695-64.048L13.622-64.048L13.622-63.767Q13.041-63.767 13.041-63.593L13.041-63.556L14.272-60.120L15.427-63.368Q15.441-63.409 15.441-63.433Q15.441-63.607 15.248-63.687Q15.054-63.767 14.846-63.767L14.846-64.048L16.422-64.048L16.422-63.767Q16.172-63.767 15.981-63.673Q15.789-63.579 15.714-63.368L14.231-59.225Q14.197-59.126 14.097-59.126L14.019-59.126Q13.920-59.126 13.879-59.225L12.600-62.814L11.319-59.225Q11.302-59.181 11.264-59.153Q11.226-59.126 11.178-59.126L11.100-59.126Q11.008-59.126 10.967-59.225\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M18.048-59.266L16.312-59.266L16.312-59.546Q16.541-59.546 16.690-59.580Q16.838-59.615 16.838-59.755L16.838-61.604Q16.838-61.874 16.731-61.935Q16.623-61.997 16.312-61.997L16.312-62.277L17.341-62.352L17.341-61.645Q17.471-61.953 17.713-62.152Q17.956-62.352 18.274-62.352Q18.493-62.352 18.664-62.228Q18.835-62.103 18.835-61.891Q18.835-61.754 18.735-61.655Q18.636-61.556 18.503-61.556Q18.366-61.556 18.267-61.655Q18.168-61.754 18.168-61.891Q18.168-62.031 18.267-62.130Q17.977-62.130 17.777-61.934Q17.577-61.737 17.484-61.443Q17.392-61.149 17.392-60.869L17.392-59.755Q17.392-59.546 18.048-59.546L18.048-59.266M21.036-59.266L19.484-59.266L19.484-59.546Q19.710-59.546 19.858-59.580Q20.007-59.615 20.007-59.755L20.007-61.604Q20.007-61.792 19.959-61.876Q19.911-61.959 19.814-61.978Q19.716-61.997 19.505-61.997L19.505-62.277L20.561-62.352L20.561-59.755Q20.561-59.615 20.692-59.580Q20.824-59.546 21.036-59.546L21.036-59.266M19.764-63.573Q19.764-63.744 19.887-63.863Q20.010-63.983 20.181-63.983Q20.349-63.983 20.472-63.863Q20.595-63.744 20.595-63.573Q20.595-63.398 20.472-63.275Q20.349-63.152 20.181-63.152Q20.010-63.152 19.887-63.275Q19.764-63.398 19.764-63.573M22.208-60.107L22.208-62.004L21.569-62.004L21.569-62.226Q21.887-62.226 22.104-62.436Q22.321-62.646 22.422-62.956Q22.523-63.265 22.523-63.573L22.789-63.573L22.789-62.284L23.866-62.284L23.866-62.004L22.789-62.004L22.789-60.120Q22.789-59.844 22.893-59.645Q22.998-59.447 23.257-59.447Q23.415-59.447 23.521-59.551Q23.627-59.656 23.676-59.809Q23.726-59.963 23.726-60.120L23.726-60.534L23.992-60.534L23.992-60.107Q23.992-59.881 23.893-59.671Q23.794-59.461 23.609-59.329Q23.425-59.198 23.196-59.198Q22.758-59.198 22.483-59.435Q22.208-59.673 22.208-60.107M24.761-60.801Q24.761-61.122 24.886-61.411Q25.011-61.700 25.236-61.923Q25.462-62.147 25.758-62.267Q26.053-62.387 26.371-62.387Q26.699-62.387 26.961-62.287Q27.222-62.188 27.398-62.006Q27.574-61.823 27.668-61.565Q27.762-61.307 27.762-60.975Q27.762-60.883 27.680-60.862L25.424-60.862L25.424-60.801Q25.424-60.213 25.708-59.830Q25.992-59.447 26.559-59.447Q26.880-59.447 27.149-59.640Q27.417-59.833 27.506-60.148Q27.513-60.189 27.588-60.203L27.680-60.203Q27.762-60.179 27.762-60.107Q27.762-60.100 27.755-60.073Q27.643-59.676 27.272-59.437Q26.901-59.198 26.477-59.198Q26.040-59.198 25.640-59.406Q25.240-59.615 25.001-59.982Q24.761-60.349 24.761-60.801M25.431-61.071L27.246-61.071Q27.246-61.348 27.149-61.600Q27.051-61.853 26.853-62.009Q26.655-62.164 26.371-62.164Q26.094-62.164 25.881-62.006Q25.667-61.847 25.549-61.592Q25.431-61.337 25.431-61.071M30.234-60.520L28.176-60.520L28.176-61.023L30.234-61.023L30.234-60.520M31.843-59.266L31.577-59.266L31.577-63.374Q31.577-63.644 31.469-63.706Q31.361-63.767 31.050-63.767L31.050-64.048L32.130-64.123L32.130-61.953Q32.339-62.144 32.624-62.248Q32.910-62.352 33.207-62.352Q33.525-62.352 33.822-62.231Q34.120-62.110 34.342-61.894Q34.564-61.679 34.691-61.394Q34.817-61.108 34.817-60.777Q34.817-60.332 34.578-59.968Q34.338-59.604 33.945-59.401Q33.552-59.198 33.108-59.198Q32.913-59.198 32.724-59.254Q32.534-59.310 32.373-59.415Q32.213-59.519 32.072-59.680L31.843-59.266M32.158-61.611L32.158-59.994Q32.295-59.734 32.536-59.577Q32.776-59.420 33.053-59.420Q33.347-59.420 33.559-59.527Q33.771-59.635 33.904-59.827Q34.038-60.018 34.096-60.257Q34.154-60.496 34.154-60.777Q34.154-61.136 34.060-61.440Q33.966-61.744 33.739-61.937Q33.511-62.130 33.146-62.130Q32.845-62.130 32.578-61.994Q32.312-61.857 32.158-61.611M35.511-59.994Q35.511-60.326 35.735-60.553Q35.959-60.780 36.302-60.908Q36.646-61.037 37.018-61.089Q37.391-61.142 37.695-61.142L37.695-61.395Q37.695-61.600 37.587-61.780Q37.480-61.959 37.298-62.062Q37.117-62.164 36.909-62.164Q36.502-62.164 36.266-62.072Q36.355-62.035 36.401-61.951Q36.447-61.867 36.447-61.765Q36.447-61.669 36.401-61.590Q36.355-61.512 36.275-61.467Q36.194-61.423 36.106-61.423Q35.955-61.423 35.854-61.520Q35.754-61.618 35.754-61.765Q35.754-62.387 36.909-62.387Q37.121-62.387 37.370-62.323Q37.620-62.260 37.821-62.141Q38.023-62.021 38.150-61.836Q38.276-61.652 38.276-61.409L38.276-59.833Q38.276-59.717 38.338-59.621Q38.399-59.526 38.512-59.526Q38.621-59.526 38.686-59.620Q38.751-59.714 38.751-59.833L38.751-60.281L39.018-60.281L39.018-59.833Q39.018-59.563 38.790-59.398Q38.563-59.232 38.283-59.232Q38.074-59.232 37.938-59.386Q37.801-59.539 37.777-59.755Q37.630-59.488 37.348-59.343Q37.066-59.198 36.741-59.198Q36.464-59.198 36.181-59.273Q35.897-59.348 35.704-59.527Q35.511-59.707 35.511-59.994M36.126-59.994Q36.126-59.820 36.227-59.690Q36.328-59.560 36.483-59.490Q36.639-59.420 36.803-59.420Q37.022-59.420 37.230-59.517Q37.439-59.615 37.567-59.796Q37.695-59.977 37.695-60.203L37.695-60.931Q37.370-60.931 37.005-60.840Q36.639-60.749 36.382-60.537Q36.126-60.326 36.126-59.994M39.435-60.777Q39.435-61.105 39.570-61.406Q39.705-61.706 39.941-61.927Q40.176-62.147 40.481-62.267Q40.785-62.387 41.109-62.387Q41.615-62.387 41.964-62.284Q42.313-62.182 42.313-61.806Q42.313-61.659 42.215-61.558Q42.118-61.457 41.971-61.457Q41.817-61.457 41.718-61.556Q41.619-61.655 41.619-61.806Q41.619-61.994 41.759-62.086Q41.557-62.137 41.116-62.137Q40.761-62.137 40.532-61.941Q40.303-61.744 40.202-61.435Q40.101-61.125 40.101-60.777Q40.101-60.428 40.228-60.122Q40.354-59.816 40.609-59.632Q40.863-59.447 41.219-59.447Q41.441-59.447 41.626-59.531Q41.810-59.615 41.945-59.770Q42.080-59.926 42.138-60.134Q42.152-60.189 42.207-60.189L42.319-60.189Q42.350-60.189 42.372-60.165Q42.395-60.141 42.395-60.107L42.395-60.086Q42.309-59.799 42.121-59.601Q41.933-59.403 41.668-59.300Q41.403-59.198 41.109-59.198Q40.679-59.198 40.291-59.404Q39.903-59.611 39.669-59.974Q39.435-60.336 39.435-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M44.402-59.266L42.819-59.266L42.819-59.546Q43.048-59.546 43.197-59.580Q43.345-59.615 43.345-59.755L43.345-63.374Q43.345-63.644 43.238-63.706Q43.130-63.767 42.819-63.767L42.819-64.048L43.899-64.123L43.899-60.835L44.884-61.604Q45.089-61.741 45.089-61.891Q45.089-61.935 45.048-61.970Q45.007-62.004 44.962-62.004L44.962-62.284L46.326-62.284L46.326-62.004Q45.837-62.004 45.318-61.604L44.761-61.170L45.738-59.946Q45.940-59.700 46.073-59.623Q46.206-59.546 46.493-59.546L46.493-59.266L45.061-59.266L45.061-59.546Q45.249-59.546 45.249-59.659Q45.249-59.755 45.095-59.946L44.361-60.855L43.879-60.476L43.879-59.755Q43.879-59.618 44.027-59.582Q44.176-59.546 44.402-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M11.199-59.266L9.062-59.266Q9.027-59.266 8.996-59.307Q8.965-59.348 8.965-59.395L8.988-59.496Q9-59.547 9.086-59.563Q9.527-59.563 9.685-59.602Q9.844-59.641 9.886-59.868L10.965-64.188Q10.988-64.258 10.988-64.321Q10.988-64.383 10.926-64.403Q10.781-64.434 10.359-64.434Q10.254-64.461 10.254-64.563L10.285-64.664Q10.293-64.711 10.375-64.731L12.886-64.731Q13.293-64.731 13.736-64.608Q14.179-64.485 14.484-64.209Q14.789-63.934 14.789-63.512Q14.789-63.125 14.519-62.809Q14.250-62.493 13.851-62.284Q13.453-62.075 13.078-61.985Q13.386-61.860 13.584-61.621Q13.781-61.383 13.781-61.067Q13.781-61.024 13.779-60.996Q13.777-60.969 13.773-60.938L13.695-60.243Q13.664-59.953 13.664-59.832Q13.664-59.618 13.732-59.487Q13.801-59.356 14.008-59.356Q14.261-59.356 14.457-59.580Q14.652-59.805 14.719-60.082Q14.726-60.129 14.812-60.145L14.894-60.145Q14.988-60.118 14.988-60.036Q14.988-60.028 14.980-59.993Q14.929-59.778 14.785-59.567Q14.640-59.356 14.433-59.227Q14.226-59.098 14-59.098Q13.695-59.098 13.426-59.184Q13.156-59.270 12.984-59.469Q12.812-59.668 12.812-59.977Q12.812-60.086 12.855-60.266L13.031-60.961Q13.054-61.082 13.054-61.176Q13.054-61.512 12.793-61.694Q12.531-61.875 12.168-61.875L11.117-61.875L10.597-59.809Q10.582-59.715 10.582-59.672Q10.582-59.633 10.595-59.620Q10.609-59.606 10.644-59.594Q10.789-59.563 11.215-59.563Q11.308-59.536 11.308-59.442L11.285-59.336Q11.277-59.286 11.199-59.266M11.679-64.129L11.183-62.129L12.125-62.129Q12.469-62.129 12.785-62.198Q13.101-62.266 13.375-62.434Q13.562-62.559 13.699-62.760Q13.836-62.961 13.904-63.194Q13.972-63.426 13.972-63.649Q13.972-64.106 13.605-64.270Q13.238-64.434 12.703-64.434L12.086-64.434Q11.914-64.434 11.851-64.420Q11.789-64.407 11.756-64.348Q11.722-64.289 11.679-64.129\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M17.193-57.266L16.017-57.266L16.017-65.266L17.193-65.266L17.193-64.899L16.384-64.899L16.384-57.633L17.193-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M18.571-59Q18.571-59.063 18.602-59.106L22.348-64.364Q21.891-64.129 21.325-64.129Q20.672-64.129 20.067-64.450Q20.211-64.102 20.211-63.657Q20.211-63.297 20.090-62.926Q19.969-62.555 19.719-62.299Q19.469-62.043 19.106-62.043Q18.719-62.043 18.436-62.287Q18.153-62.532 18.006-62.905Q17.860-63.278 17.860-63.657Q17.860-64.036 18.006-64.407Q18.153-64.778 18.436-65.022Q18.719-65.266 19.106-65.266Q19.422-65.266 19.692-65.028Q20.028-64.723 20.457-64.551Q20.887-64.379 21.325-64.379Q21.817-64.379 22.235-64.592Q22.653-64.805 22.953-65.203Q22.996-65.266 23.090-65.266Q23.164-65.266 23.219-65.211Q23.274-65.157 23.274-65.082Q23.274-65.020 23.242-64.977L18.899-58.883Q18.852-58.817 18.754-58.817Q18.672-58.817 18.621-58.868Q18.571-58.918 18.571-59M19.106-62.297Q19.379-62.297 19.567-62.522Q19.754-62.746 19.842-63.069Q19.930-63.391 19.930-63.657Q19.930-63.914 19.842-64.237Q19.754-64.559 19.567-64.784Q19.379-65.008 19.106-65.008Q18.719-65.008 18.576-64.580Q18.434-64.153 18.434-63.657Q18.434-63.149 18.575-62.723Q18.715-62.297 19.106-62.297M22.883-58.817Q22.496-58.817 22.213-59.063Q21.930-59.309 21.782-59.682Q21.633-60.055 21.633-60.434Q21.633-60.707 21.719-60.995Q21.805-61.282 21.959-61.516Q22.114-61.750 22.350-61.897Q22.586-62.043 22.883-62.043Q23.164-62.043 23.371-61.891Q23.578-61.739 23.717-61.496Q23.856-61.254 23.922-60.973Q23.989-60.692 23.989-60.434Q23.989-60.075 23.867-59.702Q23.746-59.328 23.496-59.073Q23.246-58.817 22.883-58.817M22.883-59.075Q23.157-59.075 23.344-59.299Q23.532-59.524 23.619-59.846Q23.707-60.168 23.707-60.434Q23.707-60.692 23.619-61.014Q23.532-61.336 23.344-61.561Q23.157-61.786 22.883-61.786Q22.492-61.786 22.352-61.356Q22.211-60.926 22.211-60.434Q22.211-59.926 22.348-59.500Q22.485-59.075 22.883-59.075\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M24.693-59.504L24.693-59.594Q24.751-59.801 24.943-59.825L25.654-59.825L25.654-62.153L24.943-62.153Q24.747-62.176 24.693-62.395L24.693-62.481Q24.751-62.692 24.943-62.715L26.044-62.715Q26.243-62.696 26.294-62.481L26.294-62.153Q26.556-62.438 26.911-62.596Q27.267-62.754 27.654-62.754Q27.947-62.754 28.181-62.620Q28.415-62.485 28.415-62.219Q28.415-62.051 28.306-61.934Q28.197-61.817 28.029-61.817Q27.876-61.817 27.761-61.928Q27.646-62.039 27.646-62.196Q27.271-62.196 26.956-61.995Q26.642-61.793 26.468-61.459Q26.294-61.125 26.294-60.746L26.294-59.825L27.240-59.825Q27.447-59.801 27.486-59.594L27.486-59.504Q27.447-59.289 27.240-59.266L24.943-59.266Q24.751-59.289 24.693-59.504M29.122-60.379Q29.122-60.825 29.536-61.082Q29.950-61.340 30.491-61.440Q31.032-61.539 31.540-61.547Q31.540-61.762 31.406-61.914Q31.271-62.067 31.064-62.143Q30.857-62.219 30.646-62.219Q30.302-62.219 30.142-62.196L30.142-62.137Q30.142-61.969 30.023-61.854Q29.904-61.739 29.740-61.739Q29.564-61.739 29.449-61.862Q29.333-61.985 29.333-62.153Q29.333-62.559 29.714-62.668Q30.095-62.778 30.654-62.778Q30.923-62.778 31.191-62.700Q31.458-62.621 31.683-62.471Q31.907-62.321 32.044-62.100Q32.181-61.879 32.181-61.602L32.181-59.883Q32.181-59.825 32.708-59.825Q32.904-59.805 32.954-59.594L32.954-59.504Q32.904-59.289 32.708-59.266L32.564-59.266Q32.220-59.266 31.991-59.313Q31.763-59.360 31.618-59.547Q31.157-59.227 30.450-59.227Q30.115-59.227 29.810-59.368Q29.505-59.508 29.314-59.770Q29.122-60.032 29.122-60.379M29.763-60.371Q29.763-60.098 30.005-59.942Q30.247-59.786 30.532-59.786Q30.751-59.786 30.984-59.844Q31.216-59.903 31.378-60.041Q31.540-60.180 31.540-60.403L31.540-60.993Q31.259-60.993 30.843-60.936Q30.427-60.879 30.095-60.741Q29.763-60.602 29.763-60.371M33.220-59.504L33.220-59.594Q33.259-59.801 33.466-59.825L33.872-59.825L34.802-61.043L33.931-62.153L33.513-62.153Q33.318-62.172 33.267-62.395L33.267-62.481Q33.318-62.692 33.513-62.715L34.673-62.715Q34.872-62.692 34.923-62.481L34.923-62.395Q34.872-62.176 34.673-62.153L34.564-62.153L35.060-61.496L35.536-62.153L35.419-62.153Q35.220-62.176 35.169-62.395L35.169-62.481Q35.220-62.692 35.419-62.715L36.579-62.715Q36.775-62.696 36.825-62.481L36.825-62.395Q36.775-62.176 36.579-62.153L36.169-62.153L35.322-61.043L36.282-59.825L36.689-59.825Q36.888-59.801 36.939-59.594L36.939-59.504Q36.900-59.289 36.689-59.266L35.536-59.266Q35.329-59.289 35.290-59.504L35.290-59.594Q35.329-59.801 35.536-59.825L35.665-59.825L35.060-60.680L34.474-59.825L34.618-59.825Q34.825-59.801 34.865-59.594L34.865-59.504Q34.825-59.289 34.618-59.266L33.466-59.266Q33.271-59.286 33.220-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M38.579-57.266L37.404-57.266L37.404-57.633L38.212-57.633L38.212-64.899L37.404-64.899L37.404-65.266L38.579-65.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M47.903-60.243L42.590-60.243Q42.512-60.250 42.463-60.299Q42.415-60.348 42.415-60.426Q42.415-60.496 42.462-60.547Q42.508-60.598 42.590-60.610L47.903-60.610Q47.977-60.598 48.024-60.547Q48.071-60.496 48.071-60.426Q48.071-60.348 48.022-60.299Q47.973-60.250 47.903-60.243M47.903-61.930L42.590-61.930Q42.512-61.938 42.463-61.987Q42.415-62.036 42.415-62.114Q42.415-62.184 42.462-62.235Q42.508-62.286 42.590-62.297L47.903-62.297Q47.977-62.286 48.024-62.235Q48.071-62.184 48.071-62.114Q48.071-62.036 48.022-61.987Q47.973-61.938 47.903-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M53.426-59.297L52.203-62.153Q52.121-62.328 51.977-62.373Q51.832-62.418 51.563-62.418L51.563-62.715L53.274-62.715L53.274-62.418Q52.852-62.418 52.852-62.235Q52.852-62.200 52.867-62.153L53.813-59.961L54.653-61.938Q54.692-62.016 54.692-62.106Q54.692-62.246 54.586-62.332Q54.481-62.418 54.340-62.418L54.340-62.715L55.692-62.715L55.692-62.418Q55.168-62.418 54.953-61.938L53.828-59.297Q53.766-59.188 53.660-59.188L53.594-59.188Q53.481-59.188 53.426-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M55.737-60.098Q55.737-60.582 56.139-60.877Q56.542-61.172 57.092-61.291Q57.643-61.411 58.135-61.411L58.135-61.700Q58.135-61.926 58.020-62.133Q57.905-62.340 57.708-62.459Q57.510-62.578 57.280-62.578Q56.854-62.578 56.569-62.473Q56.639-62.446 56.686-62.391Q56.733-62.336 56.758-62.266Q56.784-62.196 56.784-62.121Q56.784-62.016 56.733-61.924Q56.682-61.832 56.590-61.782Q56.499-61.731 56.393-61.731Q56.288-61.731 56.196-61.782Q56.104-61.832 56.053-61.924Q56.003-62.016 56.003-62.121Q56.003-62.539 56.391-62.686Q56.780-62.832 57.280-62.832Q57.612-62.832 57.965-62.702Q58.319-62.571 58.547-62.317Q58.776-62.063 58.776-61.715L58.776-59.914Q58.776-59.782 58.848-59.672Q58.921-59.563 59.049-59.563Q59.174-59.563 59.243-59.668Q59.311-59.774 59.311-59.914L59.311-60.426L59.592-60.426L59.592-59.914Q59.592-59.711 59.475-59.553Q59.358-59.395 59.176-59.311Q58.995-59.227 58.792-59.227Q58.561-59.227 58.409-59.399Q58.256-59.571 58.225-59.801Q58.065-59.520 57.756-59.354Q57.448-59.188 57.096-59.188Q56.585-59.188 56.161-59.411Q55.737-59.633 55.737-60.098M56.424-60.098Q56.424-59.813 56.651-59.627Q56.878-59.442 57.171-59.442Q57.417-59.442 57.641-59.559Q57.866-59.676 58.001-59.879Q58.135-60.082 58.135-60.336L58.135-61.168Q57.870-61.168 57.585-61.114Q57.299-61.059 57.028-60.930Q56.756-60.801 56.590-60.594Q56.424-60.387 56.424-60.098M61.799-59.266L59.967-59.266L59.967-59.563Q60.241-59.563 60.409-59.610Q60.577-59.657 60.577-59.825L60.577-63.985Q60.577-64.200 60.514-64.295Q60.452-64.391 60.333-64.412Q60.214-64.434 59.967-64.434L59.967-64.731L61.190-64.817L61.190-59.825Q61.190-59.657 61.358-59.610Q61.526-59.563 61.799-59.563L61.799-59.266M64.303-59.266L62.381-59.266L62.381-59.563Q63.190-59.563 63.190-60.043L63.190-64.168Q63.190-64.340 62.948-64.387Q62.706-64.434 62.381-64.434L62.381-64.731L63.878-64.731Q63.987-64.731 64.046-64.618L65.893-60.075L67.733-64.618Q67.796-64.731 67.901-64.731L69.405-64.731L69.405-64.434Q69.085-64.434 68.842-64.387Q68.600-64.340 68.600-64.168L68.600-59.825Q68.600-59.657 68.842-59.610Q69.085-59.563 69.405-59.563L69.405-59.266L67.104-59.266L67.104-59.563Q67.909-59.563 67.909-59.825L67.909-64.418L65.862-59.379Q65.827-59.266 65.694-59.266Q65.553-59.266 65.518-59.379L63.495-64.356L63.495-60.043Q63.495-59.563 64.303-59.563\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M78.590-60.243L73.277-60.243Q73.199-60.250 73.150-60.299Q73.102-60.348 73.102-60.426Q73.102-60.496 73.149-60.547Q73.195-60.598 73.277-60.610L78.590-60.610Q78.664-60.598 78.711-60.547Q78.758-60.496 78.758-60.426Q78.758-60.348 78.709-60.299Q78.660-60.250 78.590-60.243M78.590-61.930L73.277-61.930Q73.199-61.938 73.150-61.987Q73.102-62.036 73.102-62.114Q73.102-62.184 73.149-62.235Q73.195-62.286 73.277-62.297L78.590-62.297Q78.664-62.286 78.711-62.235Q78.758-62.184 78.758-62.114Q78.758-62.036 78.709-61.987Q78.660-61.938 78.590-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.74)\">\u003Cpath d=\"M84.195-59.098Q83.492-59.098 83.092-59.498Q82.691-59.899 82.547-60.508Q82.402-61.118 82.402-61.817Q82.402-62.340 82.472-62.803Q82.543-63.266 82.736-63.678Q82.929-64.090 83.287-64.338Q83.644-64.586 84.195-64.586Q84.746-64.586 85.103-64.338Q85.461-64.090 85.652-63.680Q85.844-63.270 85.914-62.801Q85.984-62.332 85.984-61.817Q85.984-61.118 85.842-60.510Q85.699-59.903 85.299-59.500Q84.898-59.098 84.195-59.098M84.195-59.356Q84.668-59.356 84.900-59.791Q85.133-60.227 85.187-60.766Q85.242-61.305 85.242-61.946Q85.242-62.942 85.058-63.635Q84.875-64.328 84.195-64.328Q83.828-64.328 83.607-64.090Q83.386-63.852 83.291-63.495Q83.195-63.137 83.170-62.766Q83.144-62.395 83.144-61.946Q83.144-61.305 83.199-60.766Q83.254-60.227 83.486-59.791Q83.719-59.356 84.195-59.356M87.945-59.266L86.449-59.266L86.449-59.563Q87.082-59.563 87.504-60.043L88.273-60.953L87.281-62.153Q87.125-62.332 86.963-62.375Q86.801-62.418 86.496-62.418L86.496-62.715L88.183-62.715L88.183-62.418Q88.090-62.418 88.013-62.375Q87.937-62.332 87.937-62.243Q87.937-62.200 87.969-62.153L88.625-61.364L89.105-61.938Q89.222-62.075 89.222-62.211Q89.222-62.301 89.172-62.360Q89.121-62.418 89.039-62.418L89.039-62.715L90.527-62.715L90.527-62.418Q89.890-62.418 89.480-61.938L88.801-61.137L89.886-59.825Q90.047-59.649 90.207-59.606Q90.367-59.563 90.672-59.563L90.672-59.266L88.984-59.266L88.984-59.563Q89.074-59.563 89.152-59.606Q89.230-59.649 89.230-59.739Q89.230-59.762 89.199-59.825L88.457-60.731L87.871-60.043Q87.754-59.907 87.754-59.770Q87.754-59.684 87.804-59.623Q87.855-59.563 87.945-59.563L87.945-59.266M94.386-59.266L91.226-59.266L91.226-59.473Q91.226-59.500 91.250-59.532L92.601-60.930Q92.980-61.317 93.228-61.606Q93.476-61.895 93.650-62.252Q93.824-62.610 93.824-63Q93.824-63.348 93.691-63.641Q93.558-63.934 93.304-64.112Q93.051-64.289 92.695-64.289Q92.336-64.289 92.045-64.094Q91.754-63.899 91.609-63.571L91.664-63.571Q91.847-63.571 91.972-63.450Q92.097-63.328 92.097-63.137Q92.097-62.957 91.972-62.828Q91.847-62.700 91.664-62.700Q91.484-62.700 91.355-62.828Q91.226-62.957 91.226-63.137Q91.226-63.539 91.447-63.875Q91.668-64.211 92.033-64.399Q92.398-64.586 92.801-64.586Q93.281-64.586 93.697-64.399Q94.113-64.211 94.365-63.850Q94.617-63.489 94.617-63Q94.617-62.641 94.463-62.338Q94.308-62.036 94.056-61.776Q93.804-61.516 93.455-61.231Q93.105-60.946 92.937-60.793L92.008-59.953L92.722-59.953Q94.097-59.953 94.136-59.993Q94.207-60.071 94.250-60.256Q94.293-60.442 94.336-60.731L94.617-60.731L94.386-59.266M95.383-60.098Q95.383-60.582 95.785-60.877Q96.187-61.172 96.738-61.291Q97.289-61.411 97.781-61.411L97.781-61.700Q97.781-61.926 97.666-62.133Q97.551-62.340 97.353-62.459Q97.156-62.578 96.926-62.578Q96.500-62.578 96.215-62.473Q96.285-62.446 96.332-62.391Q96.379-62.336 96.404-62.266Q96.429-62.196 96.429-62.121Q96.429-62.016 96.379-61.924Q96.328-61.832 96.236-61.782Q96.144-61.731 96.039-61.731Q95.933-61.731 95.842-61.782Q95.750-61.832 95.699-61.924Q95.648-62.016 95.648-62.121Q95.648-62.539 96.037-62.686Q96.426-62.832 96.926-62.832Q97.258-62.832 97.611-62.702Q97.965-62.571 98.193-62.317Q98.422-62.063 98.422-61.715L98.422-59.914Q98.422-59.782 98.494-59.672Q98.566-59.563 98.695-59.563Q98.820-59.563 98.888-59.668Q98.957-59.774 98.957-59.914L98.957-60.426L99.238-60.426L99.238-59.914Q99.238-59.711 99.121-59.553Q99.004-59.395 98.822-59.311Q98.640-59.227 98.437-59.227Q98.207-59.227 98.054-59.399Q97.902-59.571 97.871-59.801Q97.711-59.520 97.402-59.354Q97.094-59.188 96.742-59.188Q96.230-59.188 95.806-59.411Q95.383-59.633 95.383-60.098M96.070-60.098Q96.070-59.813 96.297-59.627Q96.523-59.442 96.816-59.442Q97.062-59.442 97.287-59.559Q97.511-59.676 97.646-59.879Q97.781-60.082 97.781-60.336L97.781-61.168Q97.515-61.168 97.230-61.114Q96.945-61.059 96.674-60.930Q96.402-60.801 96.236-60.594Q96.070-60.387 96.070-60.098\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 49.423h398.338\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M11.100-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.633-64.048Q12.043-64.048 12.464-63.894Q12.884-63.740 13.168-63.436Q13.451-63.132 13.451-62.718Q13.451-62.400 13.284-62.154Q13.116-61.908 12.840-61.742Q12.563-61.577 12.241-61.493Q11.920-61.409 11.633-61.409L10.379-61.409L10.379-59.755Q10.379-59.546 11.100-59.546L11.100-59.266M10.351-63.556L10.351-61.659L11.438-61.659Q12.047-61.659 12.361-61.896Q12.676-62.134 12.676-62.718Q12.676-63.111 12.530-63.345Q12.385-63.579 12.113-63.673Q11.842-63.767 11.438-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.432-61.659Q14.432-62.185 14.649-62.653Q14.866-63.121 15.249-63.467Q15.632-63.812 16.116-64Q16.599-64.188 17.129-64.188Q17.532-64.188 17.897-64.031Q18.261-63.873 18.544-63.579L18.968-64.161Q19.002-64.188 19.026-64.188L19.074-64.188Q19.105-64.188 19.129-64.164Q19.153-64.140 19.153-64.109L19.153-62.246Q19.153-62.223 19.127-62.197Q19.101-62.171 19.074-62.171L18.948-62.171Q18.886-62.171 18.872-62.246Q18.842-62.561 18.707-62.865Q18.572-63.169 18.356-63.403Q18.141-63.638 17.852-63.773Q17.563-63.908 17.235-63.908Q16.593-63.908 16.135-63.614Q15.677-63.320 15.444-62.807Q15.212-62.294 15.212-61.659Q15.212-61.187 15.342-60.778Q15.471-60.370 15.731-60.057Q15.991-59.745 16.370-59.575Q16.750-59.406 17.242-59.406Q17.570-59.406 17.864-59.522Q18.158-59.639 18.392-59.854Q18.626-60.069 18.756-60.358Q18.886-60.647 18.886-60.975Q18.886-61.002 18.913-61.026Q18.941-61.050 18.961-61.050L19.074-61.050Q19.112-61.050 19.132-61.025Q19.153-60.999 19.153-60.961Q19.153-60.565 18.987-60.228Q18.821-59.891 18.534-59.644Q18.247-59.396 17.878-59.261Q17.509-59.126 17.129-59.126Q16.610-59.126 16.117-59.316Q15.625-59.505 15.246-59.849Q14.866-60.192 14.649-60.661Q14.432-61.129 14.432-61.659\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M23.241-60.100L23.241-61.604Q23.241-61.874 23.133-61.935Q23.025-61.997 22.714-61.997L22.714-62.277L23.822-62.352L23.822-60.120L23.822-60.100Q23.822-59.820 23.873-59.676Q23.924-59.533 24.066-59.476Q24.208-59.420 24.495-59.420Q24.748-59.420 24.953-59.560Q25.158-59.700 25.274-59.926Q25.391-60.151 25.391-60.401L25.391-61.604Q25.391-61.874 25.283-61.935Q25.175-61.997 24.864-61.997L24.864-62.277L25.972-62.352L25.972-59.939Q25.972-59.748 26.025-59.666Q26.078-59.584 26.178-59.565Q26.279-59.546 26.495-59.546L26.495-59.266L25.418-59.198L25.418-59.762Q25.309-59.580 25.163-59.457Q25.018-59.334 24.832-59.266Q24.645-59.198 24.444-59.198Q23.241-59.198 23.241-60.100M28.727-57.909L27.096-57.909L27.096-58.189Q27.325-58.189 27.474-58.224Q27.623-58.258 27.623-58.398L27.623-61.744Q27.623-61.915 27.486-61.956Q27.349-61.997 27.096-61.997L27.096-62.277L28.176-62.352L28.176-61.946Q28.398-62.147 28.685-62.250Q28.973-62.352 29.280-62.352Q29.707-62.352 30.071-62.139Q30.435-61.925 30.649-61.561Q30.863-61.197 30.863-60.777Q30.863-60.332 30.623-59.968Q30.384-59.604 29.991-59.401Q29.598-59.198 29.154-59.198Q28.887-59.198 28.639-59.298Q28.392-59.399 28.204-59.580L28.204-58.398Q28.204-58.261 28.352-58.225Q28.501-58.189 28.727-58.189L28.727-57.909M28.204-61.597L28.204-59.987Q28.337-59.734 28.580-59.577Q28.822-59.420 29.099-59.420Q29.427-59.420 29.680-59.621Q29.933-59.823 30.066-60.141Q30.200-60.459 30.200-60.777Q30.200-61.006 30.135-61.235Q30.070-61.464 29.942-61.662Q29.813-61.860 29.619-61.980Q29.424-62.099 29.191-62.099Q28.897-62.099 28.629-61.970Q28.361-61.840 28.204-61.597\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M31.714-60.777Q31.714-61.115 31.855-61.406Q31.995-61.696 32.239-61.910Q32.483-62.123 32.788-62.238Q33.092-62.352 33.417-62.352Q33.687-62.352 33.950-62.253Q34.213-62.154 34.404-61.976L34.404-63.374Q34.404-63.644 34.297-63.706Q34.189-63.767 33.878-63.767L33.878-64.048L34.955-64.123L34.955-59.939Q34.955-59.751 35.009-59.668Q35.064-59.584 35.165-59.565Q35.266-59.546 35.481-59.546L35.481-59.266L34.374-59.198L34.374-59.615Q33.957-59.198 33.331-59.198Q32.900-59.198 32.528-59.410Q32.155-59.621 31.935-59.982Q31.714-60.343 31.714-60.777M33.389-59.420Q33.598-59.420 33.784-59.492Q33.970-59.563 34.124-59.700Q34.278-59.837 34.374-60.015L34.374-61.624Q34.288-61.771 34.143-61.891Q33.998-62.011 33.828-62.070Q33.659-62.130 33.478-62.130Q32.918-62.130 32.649-61.741Q32.381-61.351 32.381-60.770Q32.381-60.199 32.615-59.809Q32.849-59.420 33.389-59.420M36.189-59.994Q36.189-60.326 36.412-60.553Q36.636-60.780 36.980-60.908Q37.323-61.037 37.696-61.089Q38.068-61.142 38.373-61.142L38.373-61.395Q38.373-61.600 38.265-61.780Q38.157-61.959 37.976-62.062Q37.795-62.164 37.587-62.164Q37.180-62.164 36.944-62.072Q37.033-62.035 37.079-61.951Q37.125-61.867 37.125-61.765Q37.125-61.669 37.079-61.590Q37.033-61.512 36.952-61.467Q36.872-61.423 36.783-61.423Q36.633-61.423 36.532-61.520Q36.431-61.618 36.431-61.765Q36.431-62.387 37.587-62.387Q37.798-62.387 38.048-62.323Q38.297-62.260 38.499-62.141Q38.701-62.021 38.827-61.836Q38.954-61.652 38.954-61.409L38.954-59.833Q38.954-59.717 39.015-59.621Q39.077-59.526 39.190-59.526Q39.299-59.526 39.364-59.620Q39.429-59.714 39.429-59.833L39.429-60.281L39.695-60.281L39.695-59.833Q39.695-59.563 39.468-59.398Q39.241-59.232 38.961-59.232Q38.752-59.232 38.615-59.386Q38.479-59.539 38.455-59.755Q38.308-59.488 38.026-59.343Q37.744-59.198 37.419-59.198Q37.142-59.198 36.858-59.273Q36.575-59.348 36.382-59.527Q36.189-59.707 36.189-59.994M36.804-59.994Q36.804-59.820 36.905-59.690Q37.005-59.560 37.161-59.490Q37.317-59.420 37.481-59.420Q37.699-59.420 37.908-59.517Q38.116-59.615 38.244-59.796Q38.373-59.977 38.373-60.203L38.373-60.931Q38.048-60.931 37.682-60.840Q37.317-60.749 37.060-60.537Q36.804-60.326 36.804-59.994M40.639-60.107L40.639-62.004L40-62.004L40-62.226Q40.317-62.226 40.535-62.436Q40.752-62.646 40.852-62.956Q40.953-63.265 40.953-63.573L41.220-63.573L41.220-62.284L42.296-62.284L42.296-62.004L41.220-62.004L41.220-60.120Q41.220-59.844 41.324-59.645Q41.428-59.447 41.688-59.447Q41.845-59.447 41.951-59.551Q42.057-59.656 42.107-59.809Q42.156-59.963 42.156-60.120L42.156-60.534L42.423-60.534L42.423-60.107Q42.423-59.881 42.324-59.671Q42.225-59.461 42.040-59.329Q41.856-59.198 41.627-59.198Q41.189-59.198 40.914-59.435Q40.639-59.673 40.639-60.107M43.192-60.801Q43.192-61.122 43.317-61.411Q43.442-61.700 43.667-61.923Q43.893-62.147 44.188-62.267Q44.484-62.387 44.802-62.387Q45.130-62.387 45.391-62.287Q45.653-62.188 45.829-62.006Q46.005-61.823 46.099-61.565Q46.193-61.307 46.193-60.975Q46.193-60.883 46.111-60.862L43.855-60.862L43.855-60.801Q43.855-60.213 44.139-59.830Q44.422-59.447 44.990-59.447Q45.311-59.447 45.579-59.640Q45.848-59.833 45.937-60.148Q45.943-60.189 46.019-60.203L46.111-60.203Q46.193-60.179 46.193-60.107Q46.193-60.100 46.186-60.073Q46.073-59.676 45.702-59.437Q45.332-59.198 44.908-59.198Q44.470-59.198 44.070-59.406Q43.671-59.615 43.431-59.982Q43.192-60.349 43.192-60.801M43.862-61.071L45.677-61.071Q45.677-61.348 45.579-61.600Q45.482-61.853 45.284-62.009Q45.086-62.164 44.802-62.164Q44.525-62.164 44.311-62.006Q44.098-61.847 43.980-61.592Q43.862-61.337 43.862-61.071\" 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=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M11.308-59.266L8.926-59.266L8.926-59.563Q9.250-59.563 9.492-59.610Q9.734-59.657 9.734-59.825L9.734-64.168Q9.734-64.340 9.492-64.387Q9.250-64.434 8.926-64.434L8.926-64.731L11.871-64.731Q12.215-64.731 12.570-64.631Q12.926-64.532 13.220-64.340Q13.515-64.149 13.697-63.864Q13.879-63.578 13.879-63.219Q13.879-62.746 13.568-62.411Q13.258-62.075 12.793-61.903Q12.328-61.731 11.871-61.731L10.504-61.731L10.504-59.825Q10.504-59.657 10.746-59.610Q10.988-59.563 11.308-59.563L11.308-59.266M10.476-64.168L10.476-62L11.652-62Q12.340-62 12.678-62.276Q13.015-62.551 13.015-63.219Q13.015-63.883 12.678-64.159Q12.340-64.434 11.652-64.434L10.879-64.434Q10.660-64.434 10.568-64.391Q10.476-64.348 10.476-64.168M14.824-62Q14.824-62.594 15.056-63.125Q15.289-63.657 15.705-64.057Q16.121-64.457 16.654-64.678Q17.187-64.899 17.793-64.899Q18.230-64.899 18.629-64.717Q19.027-64.536 19.336-64.203L19.808-64.868Q19.840-64.899 19.871-64.899L19.918-64.899Q19.945-64.899 19.976-64.868Q20.008-64.836 20.008-64.809L20.008-62.672Q20.008-62.649 19.976-62.618Q19.945-62.586 19.918-62.586L19.801-62.586Q19.773-62.586 19.742-62.618Q19.711-62.649 19.711-62.672Q19.711-62.938 19.568-63.291Q19.426-63.645 19.246-63.883Q18.992-64.215 18.642-64.409Q18.293-64.602 17.886-64.602Q17.383-64.602 16.929-64.383Q16.476-64.164 16.183-63.770Q15.687-63.102 15.687-62Q15.687-61.469 15.824-61.002Q15.961-60.536 16.236-60.170Q16.511-59.805 16.931-59.600Q17.351-59.395 17.894-59.395Q18.383-59.395 18.806-59.639Q19.230-59.883 19.478-60.303Q19.726-60.723 19.726-61.219Q19.726-61.254 19.756-61.280Q19.785-61.305 19.816-61.305L19.918-61.305Q19.961-61.305 19.984-61.276Q20.008-61.246 20.008-61.203Q20.008-60.766 19.832-60.377Q19.656-59.989 19.345-59.705Q19.035-59.422 18.625-59.260Q18.215-59.098 17.793-59.098Q17.203-59.098 16.662-59.319Q16.121-59.539 15.705-59.944Q15.289-60.348 15.056-60.877Q14.824-61.407 14.824-62\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M29.288-60.243L23.975-60.243Q23.897-60.250 23.848-60.299Q23.800-60.348 23.800-60.426Q23.800-60.496 23.847-60.547Q23.893-60.598 23.975-60.610L29.288-60.610Q29.362-60.598 29.409-60.547Q29.456-60.496 29.456-60.426Q29.456-60.348 29.407-60.299Q29.358-60.250 29.288-60.243M29.288-61.930L23.975-61.930Q23.897-61.938 23.848-61.987Q23.800-62.036 23.800-62.114Q23.800-62.184 23.847-62.235Q23.893-62.286 23.975-62.297L29.288-62.297Q29.362-62.286 29.409-62.235Q29.456-62.184 29.456-62.114Q29.456-62.036 29.407-61.987Q29.358-61.938 29.288-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M34.811-59.297L33.588-62.153Q33.506-62.328 33.362-62.373Q33.217-62.418 32.948-62.418L32.948-62.715L34.659-62.715L34.659-62.418Q34.237-62.418 34.237-62.235Q34.237-62.200 34.252-62.153L35.198-59.961L36.038-61.938Q36.077-62.016 36.077-62.106Q36.077-62.246 35.971-62.332Q35.866-62.418 35.725-62.418L35.725-62.715L37.077-62.715L37.077-62.418Q36.553-62.418 36.338-61.938L35.213-59.297Q35.151-59.188 35.045-59.188L34.979-59.188Q34.866-59.188 34.811-59.297\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M37.121-60.098Q37.121-60.582 37.523-60.877Q37.926-61.172 38.476-61.291Q39.027-61.411 39.519-61.411L39.519-61.700Q39.519-61.926 39.404-62.133Q39.289-62.340 39.092-62.459Q38.894-62.578 38.664-62.578Q38.238-62.578 37.953-62.473Q38.023-62.446 38.070-62.391Q38.117-62.336 38.142-62.266Q38.168-62.196 38.168-62.121Q38.168-62.016 38.117-61.924Q38.066-61.832 37.974-61.782Q37.883-61.731 37.777-61.731Q37.672-61.731 37.580-61.782Q37.488-61.832 37.437-61.924Q37.387-62.016 37.387-62.121Q37.387-62.539 37.775-62.686Q38.164-62.832 38.664-62.832Q38.996-62.832 39.349-62.702Q39.703-62.571 39.931-62.317Q40.160-62.063 40.160-61.715L40.160-59.914Q40.160-59.782 40.232-59.672Q40.305-59.563 40.433-59.563Q40.558-59.563 40.627-59.668Q40.695-59.774 40.695-59.914L40.695-60.426L40.976-60.426L40.976-59.914Q40.976-59.711 40.859-59.553Q40.742-59.395 40.560-59.311Q40.379-59.227 40.176-59.227Q39.945-59.227 39.793-59.399Q39.640-59.571 39.609-59.801Q39.449-59.520 39.140-59.354Q38.832-59.188 38.480-59.188Q37.969-59.188 37.545-59.411Q37.121-59.633 37.121-60.098M37.808-60.098Q37.808-59.813 38.035-59.627Q38.262-59.442 38.555-59.442Q38.801-59.442 39.025-59.559Q39.250-59.676 39.385-59.879Q39.519-60.082 39.519-60.336L39.519-61.168Q39.254-61.168 38.969-61.114Q38.683-61.059 38.412-60.930Q38.140-60.801 37.974-60.594Q37.808-60.387 37.808-60.098M43.183-59.266L41.351-59.266L41.351-59.563Q41.625-59.563 41.793-59.610Q41.961-59.657 41.961-59.825L41.961-63.985Q41.961-64.200 41.898-64.295Q41.836-64.391 41.717-64.412Q41.597-64.434 41.351-64.434L41.351-64.731L42.574-64.817L42.574-59.825Q42.574-59.657 42.742-59.610Q42.910-59.563 43.183-59.563L43.183-59.266M46.125-59.266L43.742-59.266L43.742-59.563Q44.066-59.563 44.308-59.610Q44.551-59.657 44.551-59.825L44.551-64.168Q44.551-64.340 44.308-64.387Q44.066-64.434 43.742-64.434L43.742-64.731L46.687-64.731Q47.031-64.731 47.387-64.631Q47.742-64.532 48.037-64.340Q48.332-64.149 48.514-63.864Q48.695-63.578 48.695-63.219Q48.695-62.746 48.385-62.411Q48.074-62.075 47.609-61.903Q47.144-61.731 46.687-61.731L45.320-61.731L45.320-59.825Q45.320-59.657 45.562-59.610Q45.805-59.563 46.125-59.563L46.125-59.266M45.293-64.168L45.293-62L46.469-62Q47.156-62 47.494-62.276Q47.832-62.551 47.832-63.219Q47.832-63.883 47.494-64.159Q47.156-64.434 46.469-64.434L45.695-64.434Q45.476-64.434 45.385-64.391Q45.293-64.348 45.293-64.168\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 73.608h398.338\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">mrmovq 8(%rdx),%rax traced with %rdx = 0x200 and M[0x208] = 0x2a. Fetch pulls valC = 8; Decode reads valB = 0x200; Execute adds to valE = 0x208; Memory reads valM = 0x2a from that address; Write-back stores it into %rax.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:688.907px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 516.680 172.771\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-73.29 -25.474)\">\u003Cpath d=\"M11.489-37.031L11.489-37.117Q11.532-37.336 11.739-37.359L12.161-37.359L12.161-41.461L11.739-41.461Q11.532-41.484 11.489-41.703L11.489-41.789Q11.536-42 11.739-42.023L12.556-42.023Q12.751-42.004 12.802-41.789L12.802-41.719Q13.013-41.886 13.276-41.974Q13.540-42.062 13.810-42.062Q14.149-42.062 14.446-41.918Q14.743-41.773 14.958-41.521Q15.173-41.269 15.288-40.957Q15.403-40.644 15.403-40.301Q15.403-39.836 15.177-39.426Q14.950-39.015 14.564-38.775Q14.177-38.535 13.708-38.535Q13.189-38.535 12.802-38.902L12.802-37.359L13.228-37.359Q13.435-37.336 13.474-37.117L13.474-37.031Q13.435-36.820 13.228-36.797L11.739-36.797Q11.536-36.820 11.489-37.031M13.665-39.094Q13.974-39.094 14.224-39.263Q14.474-39.433 14.618-39.715Q14.763-39.996 14.763-40.301Q14.763-40.590 14.638-40.869Q14.513-41.148 14.280-41.326Q14.048-41.504 13.747-41.504Q13.427-41.504 13.165-41.318Q12.903-41.133 12.802-40.832L12.802-39.980Q12.892-39.613 13.112-39.353Q13.333-39.094 13.665-39.094M16.407-39.429L16.407-41.461L15.985-41.461Q15.778-41.484 15.735-41.703L15.735-41.789Q15.782-42 15.985-42.023L16.802-42.023Q16.997-42 17.048-41.789L17.048-39.461Q17.048-39.226 17.218-39.160Q17.388-39.094 17.673-39.094Q17.880-39.094 18.075-39.170Q18.271-39.246 18.396-39.396Q18.521-39.547 18.521-39.758L18.521-41.461L18.099-41.461Q17.888-41.484 17.849-41.703L17.849-41.789Q17.888-42 18.099-42.023L18.911-42.023Q19.110-42 19.161-41.789L19.161-39.133L19.587-39.133Q19.794-39.109 19.833-38.902L19.833-38.812Q19.794-38.597 19.587-38.574L18.771-38.574Q18.571-38.597 18.521-38.797Q18.118-38.535 17.610-38.535Q17.376-38.535 17.161-38.576Q16.946-38.617 16.780-38.719Q16.614-38.820 16.511-38.998Q16.407-39.176 16.407-39.429M20.497-38.773L20.497-39.687Q20.524-39.894 20.735-39.918L20.903-39.918Q21.067-39.894 21.126-39.734Q21.329-39.094 22.056-39.094Q22.263-39.094 22.491-39.129Q22.720-39.164 22.888-39.279Q23.056-39.394 23.056-39.597Q23.056-39.808 22.833-39.922Q22.610-40.035 22.337-40.078L21.638-40.191Q20.497-40.402 20.497-41.125Q20.497-41.414 20.642-41.603Q20.786-41.793 21.026-41.900Q21.267-42.008 21.523-42.047Q21.778-42.086 22.056-42.086Q22.306-42.086 22.499-42.056Q22.692-42.027 22.857-41.949Q22.935-42.066 23.064-42.086L23.142-42.086Q23.239-42.074 23.302-42.011Q23.364-41.949 23.376-41.855L23.376-41.148Q23.364-41.054 23.302-40.988Q23.239-40.922 23.142-40.910L22.974-40.910Q22.880-40.922 22.814-40.988Q22.747-41.054 22.735-41.148Q22.735-41.527 22.040-41.527Q21.692-41.527 21.374-41.445Q21.056-41.363 21.056-41.117Q21.056-40.851 21.728-40.742L22.431-40.621Q22.915-40.539 23.265-40.291Q23.614-40.043 23.614-39.597Q23.614-39.207 23.378-38.965Q23.142-38.722 22.792-38.629Q22.442-38.535 22.056-38.535Q21.478-38.535 21.079-38.789Q21.009-38.664 20.960-38.607Q20.911-38.551 20.806-38.535L20.735-38.535Q20.521-38.558 20.497-38.773M24.228-38.812L24.228-38.902Q24.271-39.109 24.478-39.133L24.899-39.133L24.899-42.902L24.478-42.902Q24.271-42.926 24.228-43.140L24.228-43.230Q24.271-43.437 24.478-43.461L25.294-43.461Q25.489-43.437 25.540-43.230L25.540-41.679Q26.001-42.062 26.599-42.062Q26.946-42.062 27.185-41.922Q27.423-41.781 27.538-41.523Q27.653-41.265 27.653-40.910L27.653-39.133L28.079-39.133Q28.286-39.109 28.325-38.902L28.325-38.812Q28.286-38.597 28.079-38.574L26.685-38.574Q26.489-38.597 26.439-38.812L26.439-38.902Q26.489-39.113 26.685-39.133L27.013-39.133L27.013-40.879Q27.013-41.187 26.923-41.345Q26.833-41.504 26.540-41.504Q26.271-41.504 26.042-41.373Q25.814-41.242 25.677-41.013Q25.540-40.785 25.540-40.519L25.540-39.133L25.966-39.133Q26.173-39.109 26.212-38.902L26.212-38.812Q26.173-38.597 25.966-38.574L24.478-38.574Q24.271-38.597 24.228-38.812M30.716-37.031L30.716-37.117Q30.767-37.336 30.962-37.359L31.427-37.359L31.427-38.957Q30.974-38.535 30.364-38.535Q30.009-38.535 29.704-38.678Q29.399-38.820 29.167-39.070Q28.935-39.320 28.810-39.642Q28.685-39.965 28.685-40.301Q28.685-40.785 28.923-41.185Q29.161-41.586 29.567-41.824Q29.974-42.062 30.450-42.062Q31.013-42.062 31.427-41.672L31.427-41.832Q31.478-42.043 31.677-42.062L31.817-42.062Q32.017-42.039 32.067-41.832L32.067-37.359L32.532-37.359Q32.728-37.336 32.778-37.117L32.778-37.031Q32.728-36.820 32.532-36.797L30.962-36.797Q30.767-36.820 30.716-37.031M30.411-39.094Q30.782-39.094 31.058-39.347Q31.333-39.601 31.427-39.965L31.427-40.582Q31.384-40.820 31.261-41.033Q31.138-41.246 30.940-41.375Q30.743-41.504 30.501-41.504Q30.185-41.504 29.913-41.338Q29.642-41.172 29.483-40.890Q29.325-40.609 29.325-40.293Q29.325-39.828 29.640-39.461Q29.954-39.094 30.411-39.094\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -25.474)\">\u003Cpath d=\"M37.142-38.812L37.142-38.902Q37.200-39.109 37.392-39.133L38.103-39.133L38.103-41.461L37.392-41.461Q37.196-41.484 37.142-41.703L37.142-41.789Q37.200-42 37.392-42.023L38.493-42.023Q38.692-42.004 38.743-41.789L38.743-41.461Q39.005-41.746 39.360-41.904Q39.716-42.062 40.103-42.062Q40.396-42.062 40.630-41.928Q40.864-41.793 40.864-41.527Q40.864-41.359 40.755-41.242Q40.646-41.125 40.478-41.125Q40.325-41.125 40.210-41.236Q40.095-41.347 40.095-41.504Q39.720-41.504 39.405-41.303Q39.091-41.101 38.917-40.767Q38.743-40.433 38.743-40.054L38.743-39.133L39.689-39.133Q39.896-39.109 39.935-38.902L39.935-38.812Q39.896-38.597 39.689-38.574L37.392-38.574Q37.200-38.597 37.142-38.812M41.396-38.812L41.396-38.902Q41.454-39.113 41.646-39.133L41.868-39.133L42.821-43.316Q42.845-43.433 42.940-43.508Q43.036-43.582 43.149-43.582L43.423-43.582Q43.536-43.582 43.632-43.506Q43.728-43.429 43.751-43.316L44.700-39.133L44.927-39.133Q45.134-39.109 45.173-38.902L45.173-38.812Q45.122-38.597 44.927-38.574L43.845-38.574Q43.649-38.597 43.599-38.812L43.599-38.902Q43.649-39.109 43.845-39.133L44.044-39.133Q43.915-39.699 43.892-39.781L42.677-39.781Q42.634-39.597 42.524-39.133L42.724-39.133Q42.923-39.109 42.974-38.902L42.974-38.812Q42.923-38.597 42.724-38.574L41.646-38.574Q41.439-38.597 41.396-38.812M42.798-40.344L43.774-40.344Q43.294-42.476 43.294-42.820L43.286-42.820Q43.286-42.636 43.146-41.953Q43.005-41.269 42.798-40.344\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-51.377h230.467\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M14.112-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L15.982-43.356L16.194-41.719L15.927-41.719Q15.849-42.330 15.697-42.609Q15.544-42.887 15.240-42.981Q14.936-43.075 14.311-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.107L13.764-41.107Q14.133-41.107 14.317-41.161Q14.502-41.216 14.581-41.389Q14.659-41.561 14.659-41.927L14.926-41.927L14.926-40.010L14.659-40.010Q14.659-40.375 14.581-40.548Q14.502-40.720 14.317-40.773Q14.133-40.826 13.764-40.826L13.210-40.826L13.210-39.063Q13.210-38.854 14.112-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M16.206-40.109Q16.206-40.430 16.331-40.719Q16.456-41.008 16.682-41.231Q16.907-41.455 17.203-41.575Q17.498-41.695 17.816-41.695Q18.144-41.695 18.406-41.595Q18.667-41.496 18.843-41.314Q19.019-41.131 19.113-40.873Q19.207-40.615 19.207-40.283Q19.207-40.191 19.125-40.170L16.870-40.170L16.870-40.109Q16.870-39.521 17.153-39.138Q17.437-38.755 18.004-38.755Q18.326-38.755 18.594-38.948Q18.862-39.141 18.951-39.456Q18.958-39.497 19.033-39.511L19.125-39.511Q19.207-39.487 19.207-39.415Q19.207-39.408 19.201-39.381Q19.088-38.984 18.717-38.745Q18.346-38.506 17.922-38.506Q17.485-38.506 17.085-38.714Q16.685-38.923 16.446-39.290Q16.206-39.657 16.206-40.109M16.876-40.379L18.691-40.379Q18.691-40.656 18.594-40.908Q18.496-41.161 18.298-41.317Q18.100-41.472 17.816-41.472Q17.539-41.472 17.326-41.314Q17.112-41.155 16.994-40.900Q16.876-40.645 16.876-40.379M20.322-39.415L20.322-41.312L19.683-41.312L19.683-41.534Q20-41.534 20.217-41.744Q20.434-41.954 20.535-42.264Q20.636-42.573 20.636-42.881L20.903-42.881L20.903-41.592L21.979-41.592L21.979-41.312L20.903-41.312L20.903-39.428Q20.903-39.152 21.007-38.953Q21.111-38.755 21.371-38.755Q21.528-38.755 21.634-38.859Q21.740-38.964 21.790-39.117Q21.839-39.271 21.839-39.428L21.839-39.842L22.106-39.842L22.106-39.415Q22.106-39.189 22.007-38.979Q21.908-38.769 21.723-38.637Q21.538-38.506 21.309-38.506Q20.872-38.506 20.597-38.743Q20.322-38.981 20.322-39.415M22.916-40.085Q22.916-40.413 23.051-40.714Q23.186-41.014 23.422-41.235Q23.658-41.455 23.962-41.575Q24.266-41.695 24.591-41.695Q25.097-41.695 25.445-41.592Q25.794-41.490 25.794-41.114Q25.794-40.967 25.696-40.866Q25.599-40.765 25.452-40.765Q25.298-40.765 25.199-40.864Q25.100-40.963 25.100-41.114Q25.100-41.302 25.240-41.394Q25.038-41.445 24.598-41.445Q24.242-41.445 24.013-41.249Q23.784-41.052 23.683-40.743Q23.582-40.433 23.582-40.085Q23.582-39.736 23.709-39.430Q23.835-39.124 24.090-38.940Q24.345-38.755 24.700-38.755Q24.922-38.755 25.107-38.839Q25.291-38.923 25.426-39.078Q25.561-39.234 25.620-39.442Q25.633-39.497 25.688-39.497L25.801-39.497Q25.831-39.497 25.854-39.473Q25.876-39.449 25.876-39.415L25.876-39.394Q25.790-39.107 25.602-38.909Q25.414-38.711 25.150-38.608Q24.885-38.506 24.591-38.506Q24.160-38.506 23.772-38.712Q23.384-38.919 23.150-39.282Q22.916-39.644 22.916-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M27.950-38.574L26.316-38.574L26.316-38.854Q26.545-38.854 26.694-38.888Q26.843-38.923 26.843-39.063L26.843-42.682Q26.843-42.952 26.735-43.014Q26.627-43.075 26.316-43.075L26.316-43.356L27.396-43.431L27.396-41.045Q27.502-41.230 27.680-41.372Q27.858-41.513 28.066-41.587Q28.275-41.660 28.500-41.660Q29.006-41.660 29.290-41.437Q29.574-41.213 29.574-40.717L29.574-39.063Q29.574-38.926 29.722-38.890Q29.871-38.854 30.097-38.854L30.097-38.574L28.466-38.574L28.466-38.854Q28.695-38.854 28.844-38.888Q28.993-38.923 28.993-39.063L28.993-40.703Q28.993-41.038 28.873-41.238Q28.753-41.438 28.439-41.438Q28.169-41.438 27.935-41.302Q27.701-41.165 27.562-40.931Q27.424-40.697 27.424-40.423L27.424-39.063Q27.424-38.926 27.574-38.890Q27.725-38.854 27.950-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M11.642-38.812L11.642-38.902Q11.700-39.109 11.892-39.133L12.603-39.133L12.603-41.461L11.892-41.461Q11.696-41.484 11.642-41.703L11.642-41.789Q11.700-42 11.892-42.023L12.993-42.023Q13.192-42.004 13.243-41.789L13.243-41.461Q13.505-41.746 13.860-41.904Q14.216-42.062 14.603-42.062Q14.896-42.062 15.130-41.928Q15.364-41.793 15.364-41.527Q15.364-41.359 15.255-41.242Q15.146-41.125 14.978-41.125Q14.825-41.125 14.710-41.236Q14.595-41.347 14.595-41.504Q14.220-41.504 13.905-41.303Q13.591-41.101 13.417-40.767Q13.243-40.433 13.243-40.054L13.243-39.133L14.189-39.133Q14.396-39.109 14.435-38.902L14.435-38.812Q14.396-38.597 14.189-38.574L11.892-38.574Q11.700-38.597 11.642-38.812M15.896-38.812L15.896-38.902Q15.954-39.113 16.146-39.133L16.368-39.133L17.321-43.316Q17.345-43.433 17.440-43.508Q17.536-43.582 17.649-43.582L17.923-43.582Q18.036-43.582 18.132-43.506Q18.228-43.429 18.251-43.316L19.200-39.133L19.427-39.133Q19.634-39.109 19.673-38.902L19.673-38.812Q19.622-38.597 19.427-38.574L18.345-38.574Q18.149-38.597 18.099-38.812L18.099-38.902Q18.149-39.109 18.345-39.133L18.544-39.133Q18.415-39.699 18.392-39.781L17.177-39.781Q17.134-39.597 17.024-39.133L17.224-39.133Q17.423-39.109 17.474-38.902L17.474-38.812Q17.423-38.597 17.224-38.574L16.146-38.574Q15.939-38.597 15.896-38.812M17.298-40.344L18.274-40.344Q17.794-42.476 17.794-42.820L17.786-42.820Q17.786-42.636 17.646-41.953Q17.505-41.269 17.298-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M20.638-39.039Q20.638-39.222 20.774-39.359Q20.911-39.496 21.103-39.496Q21.294-39.496 21.427-39.363Q21.560-39.230 21.560-39.039Q21.560-38.840 21.427-38.707Q21.294-38.574 21.103-38.574Q20.911-38.574 20.774-38.711Q20.638-38.847 20.638-39.039M20.638-41.566Q20.638-41.750 20.774-41.886Q20.911-42.023 21.103-42.023Q21.294-42.023 21.427-41.890Q21.560-41.758 21.560-41.566Q21.560-41.367 21.427-41.234Q21.294-41.101 21.103-41.101Q20.911-41.101 20.774-41.238Q20.638-41.375 20.638-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M22.503-38.812L22.503-38.902Q22.561-39.109 22.753-39.133L23.464-39.133L23.464-41.461L22.753-41.461Q22.557-41.484 22.503-41.703L22.503-41.789Q22.561-42 22.753-42.023L23.854-42.023Q24.053-42.004 24.104-41.789L24.104-41.461Q24.366-41.746 24.721-41.904Q25.077-42.062 25.464-42.062Q25.757-42.062 25.991-41.928Q26.225-41.793 26.225-41.527Q26.225-41.359 26.116-41.242Q26.007-41.125 25.839-41.125Q25.686-41.125 25.571-41.236Q25.456-41.347 25.456-41.504Q25.081-41.504 24.766-41.303Q24.452-41.101 24.278-40.767Q24.104-40.433 24.104-40.054L24.104-39.133L25.050-39.133Q25.257-39.109 25.296-38.902L25.296-38.812Q25.257-38.597 25.050-38.574L22.753-38.574Q22.561-38.597 22.503-38.812M26.694-38.812L26.694-38.902Q26.733-39.109 26.940-39.133L27.229-39.133L27.229-42.902L26.940-42.902Q26.733-42.926 26.694-43.140L26.694-43.230Q26.733-43.437 26.940-43.461L28.901-43.461Q29.171-43.461 29.411-43.365Q29.651-43.269 29.843-43.099Q30.034-42.929 30.143-42.701Q30.253-42.472 30.253-42.207Q30.253-41.840 30.012-41.551Q29.772-41.261 29.405-41.133Q29.686-41.070 29.919-40.896Q30.151-40.722 30.286-40.467Q30.421-40.211 30.421-39.926Q30.421-39.566 30.239-39.256Q30.057-38.945 29.743-38.760Q29.428-38.574 29.069-38.574L26.940-38.574Q26.733-38.597 26.694-38.812M27.870-40.840L27.870-39.133L28.901-39.133Q29.128-39.133 29.331-39.236Q29.534-39.340 29.659-39.519Q29.784-39.699 29.784-39.926Q29.784-40.156 29.682-40.365Q29.581-40.574 29.399-40.707Q29.218-40.840 28.991-40.840L27.870-40.840M27.870-42.902L27.870-41.398L28.733-41.398Q29.077-41.398 29.346-41.633Q29.616-41.867 29.616-42.207Q29.616-42.394 29.518-42.554Q29.421-42.715 29.255-42.808Q29.089-42.902 28.901-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M39.102-39.551L33.789-39.551Q33.711-39.558 33.662-39.607Q33.614-39.656 33.614-39.734Q33.614-39.804 33.661-39.855Q33.707-39.906 33.789-39.918L39.102-39.918Q39.176-39.906 39.223-39.855Q39.270-39.804 39.270-39.734Q39.270-39.656 39.221-39.607Q39.172-39.558 39.102-39.551M39.102-41.238L33.789-41.238Q33.711-41.246 33.662-41.295Q33.614-41.344 33.614-41.422Q33.614-41.492 33.661-41.543Q33.707-41.594 33.789-41.605L39.102-41.605Q39.176-41.594 39.223-41.543Q39.270-41.492 39.270-41.422Q39.270-41.344 39.221-41.295Q39.172-41.246 39.102-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M44.352-38.574L42.634-38.574Q42.594-38.574 42.567-38.615Q42.540-38.656 42.540-38.703L42.563-38.804Q42.571-38.855 42.657-38.871Q43.387-38.871 43.512-39.398L44.540-43.496Q44.563-43.566 44.563-43.629Q44.563-43.691 44.497-43.711Q44.352-43.742 43.930-43.742Q43.825-43.773 43.825-43.871L43.856-43.972Q43.868-44.019 43.946-44.039L45.344-44.039Q45.403-44.039 45.440-44.010Q45.477-43.980 45.481-43.926L46.192-39.351L49.192-43.926Q49.270-44.039 49.387-44.039L50.731-44.039Q50.778-44.027 50.805-43.996Q50.833-43.965 50.833-43.918L50.809-43.812Q50.790-43.758 50.716-43.742Q50.274-43.742 50.114-43.703Q49.966-43.668 49.907-43.437L48.825-39.117Q48.809-39.023 48.809-38.980Q48.809-38.922 48.876-38.902Q49.016-38.871 49.442-38.871Q49.540-38.844 49.540-38.750L49.512-38.644Q49.505-38.594 49.426-38.574L47.344-38.574Q47.305-38.574 47.278-38.615Q47.251-38.656 47.251-38.703L47.274-38.804Q47.282-38.855 47.372-38.871Q47.809-38.871 47.968-38.910Q48.126-38.949 48.169-39.176L49.305-43.719L46.009-38.687Q45.942-38.574 45.809-38.574Q45.676-38.574 45.665-38.687L44.891-43.652L43.809-39.344Q43.794-39.242 43.794-39.191Q43.794-38.992 43.958-38.931Q44.122-38.871 44.372-38.871Q44.466-38.844 44.466-38.750L44.442-38.644Q44.434-38.594 44.352-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M53.318-37.463L51.027-37.463L51.027-37.721Q51.903-37.721 51.903-37.894L51.903-40.973Q51.710-40.885 51.478-40.848Q51.247-40.812 50.992-40.812L50.992-41.069Q51.370-41.069 51.691-41.154Q52.011-41.239 52.240-41.453L52.360-41.453Q52.392-41.453 52.417-41.430Q52.442-41.406 52.442-41.368L52.442-37.894Q52.442-37.721 53.318-37.721\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M56.612-36.574L55.436-36.574L55.436-44.574L56.612-44.574L56.612-44.207L55.803-44.207L55.803-36.941L56.612-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M56.989-38.812L56.989-38.902Q57.028-39.109 57.239-39.133L57.547-39.133L57.547-42.902L57.239-42.902Q57.028-42.926 56.989-43.140L56.989-43.230Q57.028-43.437 57.239-43.461L59.188-43.461Q59.586-43.461 59.932-43.260Q60.278-43.058 60.485-42.713Q60.692-42.367 60.692-41.965Q60.692-41.558 60.487-41.215Q60.282-40.871 59.936-40.666Q59.590-40.461 59.188-40.461L58.188-40.461L58.188-39.133L58.500-39.133Q58.711-39.109 58.750-38.902L58.750-38.812Q58.711-38.597 58.500-38.574L57.239-38.574Q57.028-38.597 56.989-38.812M58.188-42.902L58.188-41.023L59.028-41.023Q59.289-41.023 59.526-41.146Q59.762-41.269 59.907-41.484Q60.051-41.699 60.051-41.965Q60.051-42.234 59.907-42.445Q59.762-42.656 59.526-42.779Q59.289-42.902 59.028-42.902L58.188-42.902M63.317-38.496Q62.867-38.496 62.502-38.720Q62.137-38.945 61.883-39.328Q61.629-39.711 61.504-40.154Q61.379-40.597 61.379-41.023Q61.379-41.449 61.504-41.888Q61.629-42.328 61.883-42.711Q62.137-43.094 62.496-43.318Q62.856-43.543 63.317-43.543Q63.594-43.543 63.852-43.451Q64.110-43.359 64.325-43.191L64.457-43.429Q64.485-43.480 64.539-43.511Q64.594-43.543 64.653-43.543L64.731-43.543Q64.825-43.531 64.887-43.472Q64.950-43.414 64.961-43.308L64.961-41.980Q64.950-41.879 64.887-41.816Q64.825-41.754 64.731-41.742L64.563-41.742Q64.461-41.754 64.399-41.820Q64.336-41.886 64.325-41.980Q64.285-42.246 64.162-42.470Q64.039-42.695 63.836-42.838Q63.633-42.980 63.371-42.980Q63.039-42.980 62.787-42.797Q62.535-42.613 62.364-42.312Q62.192-42.011 62.106-41.670Q62.020-41.328 62.020-41.023Q62.020-40.719 62.104-40.377Q62.188-40.035 62.360-39.732Q62.532-39.429 62.789-39.242Q63.047-39.054 63.379-39.054Q63.762-39.054 64.043-39.328Q64.325-39.601 64.325-39.988Q64.352-40.199 64.563-40.222L64.731-40.222Q64.961-40.183 64.961-39.957Q64.961-39.640 64.825-39.369Q64.688-39.097 64.453-38.900Q64.219-38.703 63.928-38.599Q63.637-38.496 63.317-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M68.426-40.390L65.953-40.390Q65.875-40.402 65.826-40.451Q65.778-40.500 65.778-40.574Q65.778-40.648 65.826-40.697Q65.875-40.746 65.953-40.758L68.426-40.758L68.426-43.238Q68.453-43.406 68.610-43.406Q68.684-43.406 68.733-43.357Q68.782-43.308 68.793-43.238L68.793-40.758L71.266-40.758Q71.434-40.726 71.434-40.574Q71.434-40.422 71.266-40.390L68.793-40.390L68.793-37.910Q68.782-37.840 68.733-37.791Q68.684-37.742 68.610-37.742Q68.453-37.742 68.426-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M75.510-38.574L72.717-38.574L72.717-38.871Q73.779-38.871 73.779-39.133L73.779-43.301Q73.350-43.086 72.670-43.086L72.670-43.383Q73.689-43.383 74.205-43.894L74.350-43.894Q74.424-43.875 74.443-43.797L74.443-39.133Q74.443-38.871 75.510-38.871L75.510-38.574M77.521-36.574L76.346-36.574L76.346-36.941L77.154-36.941L77.154-44.207L76.346-44.207L76.346-44.574L77.521-44.574L77.521-36.574M79.346-37.168Q79.346-37.207 79.369-37.230Q79.643-37.515 79.785-37.879Q79.928-38.242 79.928-38.629Q79.830-38.574 79.705-38.574Q79.514-38.574 79.377-38.707Q79.240-38.840 79.240-39.039Q79.240-39.230 79.377-39.363Q79.514-39.496 79.705-39.496Q80.186-39.496 80.186-38.621Q80.186-38.332 80.113-38.051Q80.041-37.769 79.898-37.515Q79.756-37.261 79.561-37.054Q79.529-37.023 79.490-37.023Q79.443-37.023 79.395-37.068Q79.346-37.113 79.346-37.168M79.240-41.566Q79.240-41.750 79.377-41.886Q79.514-42.023 79.705-42.023Q79.896-42.023 80.029-41.890Q80.162-41.758 80.162-41.566Q80.162-41.367 80.029-41.234Q79.896-41.101 79.705-41.101Q79.514-41.101 79.377-41.238Q79.240-41.375 79.240-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M85.378-38.797L84.492-41.461L84.171-41.461Q83.972-41.484 83.921-41.703L83.921-41.789Q83.972-42 84.171-42.023L85.331-42.023Q85.527-42.004 85.577-41.789L85.577-41.703Q85.527-41.484 85.331-41.461L85.050-41.461L85.843-39.086L86.632-41.461L86.355-41.461Q86.156-41.484 86.105-41.703L86.105-41.789Q86.156-42 86.355-42.023L87.515-42.023Q87.710-42 87.761-41.789L87.761-41.703Q87.710-41.484 87.515-41.461L87.195-41.461L86.308-38.797Q86.265-38.683 86.163-38.609Q86.062-38.535 85.937-38.535L85.745-38.535Q85.628-38.535 85.525-38.607Q85.421-38.679 85.378-38.797M88.374-39.687Q88.374-40.133 88.788-40.390Q89.202-40.648 89.743-40.748Q90.284-40.847 90.792-40.855Q90.792-41.070 90.658-41.222Q90.523-41.375 90.316-41.451Q90.109-41.527 89.898-41.527Q89.554-41.527 89.394-41.504L89.394-41.445Q89.394-41.277 89.275-41.162Q89.156-41.047 88.992-41.047Q88.816-41.047 88.701-41.170Q88.585-41.293 88.585-41.461Q88.585-41.867 88.966-41.976Q89.347-42.086 89.906-42.086Q90.175-42.086 90.443-42.008Q90.710-41.929 90.935-41.779Q91.159-41.629 91.296-41.408Q91.433-41.187 91.433-40.910L91.433-39.191Q91.433-39.133 91.960-39.133Q92.156-39.113 92.206-38.902L92.206-38.812Q92.156-38.597 91.960-38.574L91.816-38.574Q91.472-38.574 91.243-38.621Q91.015-38.668 90.870-38.855Q90.409-38.535 89.702-38.535Q89.367-38.535 89.062-38.676Q88.757-38.816 88.566-39.078Q88.374-39.340 88.374-39.687M89.015-39.679Q89.015-39.406 89.257-39.250Q89.499-39.094 89.784-39.094Q90.003-39.094 90.236-39.152Q90.468-39.211 90.630-39.349Q90.792-39.488 90.792-39.711L90.792-40.301Q90.511-40.301 90.095-40.244Q89.679-40.187 89.347-40.049Q89.015-39.910 89.015-39.679M92.663-38.812L92.663-38.902Q92.714-39.109 92.909-39.133L94.015-39.133L94.015-42.902L92.909-42.902Q92.714-42.926 92.663-43.140L92.663-43.230Q92.714-43.437 92.909-43.461L94.406-43.461Q94.597-43.437 94.656-43.230L94.656-39.133L95.757-39.133Q95.956-39.109 96.007-38.902L96.007-38.812Q95.956-38.597 95.757-38.574L92.909-38.574Q92.714-38.597 92.663-38.812M96.644-38.812L96.644-38.902Q96.683-39.109 96.894-39.133L97.202-39.133L97.202-42.902L96.894-42.902Q96.683-42.926 96.644-43.140L96.644-43.230Q96.683-43.437 96.894-43.461L98.843-43.461Q99.242-43.461 99.587-43.260Q99.933-43.058 100.140-42.713Q100.347-42.367 100.347-41.965Q100.347-41.558 100.142-41.215Q99.937-40.871 99.591-40.666Q99.245-40.461 98.843-40.461L97.843-40.461L97.843-39.133L98.156-39.133Q98.367-39.109 98.406-38.902L98.406-38.812Q98.367-38.597 98.156-38.574L96.894-38.574Q96.683-38.597 96.644-38.812M97.843-42.902L97.843-41.023L98.683-41.023Q98.945-41.023 99.181-41.146Q99.417-41.269 99.562-41.484Q99.706-41.699 99.706-41.965Q99.706-42.234 99.562-42.445Q99.417-42.656 99.181-42.779Q98.945-42.902 98.683-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M109.044-39.551L103.731-39.551Q103.653-39.558 103.604-39.607Q103.556-39.656 103.556-39.734Q103.556-39.804 103.603-39.855Q103.649-39.906 103.731-39.918L109.044-39.918Q109.118-39.906 109.165-39.855Q109.212-39.804 109.212-39.734Q109.212-39.656 109.163-39.607Q109.114-39.558 109.044-39.551M109.044-41.238L103.731-41.238Q103.653-41.246 103.604-41.295Q103.556-41.344 103.556-41.422Q103.556-41.492 103.603-41.543Q103.649-41.594 103.731-41.605L109.044-41.605Q109.118-41.594 109.165-41.543Q109.212-41.492 109.212-41.422Q109.212-41.344 109.163-41.295Q109.114-41.246 109.044-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M112.240-38.812L112.240-38.902Q112.279-39.109 112.490-39.133L112.798-39.133L112.798-42.902L112.490-42.902Q112.279-42.926 112.240-43.140L112.240-43.230Q112.279-43.437 112.490-43.461L114.439-43.461Q114.837-43.461 115.183-43.260Q115.529-43.058 115.736-42.713Q115.943-42.367 115.943-41.965Q115.943-41.558 115.738-41.215Q115.533-40.871 115.187-40.666Q114.841-40.461 114.439-40.461L113.439-40.461L113.439-39.133L113.751-39.133Q113.962-39.109 114.001-38.902L114.001-38.812Q113.962-38.597 113.751-38.574L112.490-38.574Q112.279-38.597 112.240-38.812M113.439-42.902L113.439-41.023L114.279-41.023Q114.540-41.023 114.777-41.146Q115.013-41.269 115.158-41.484Q115.302-41.699 115.302-41.965Q115.302-42.234 115.158-42.445Q115.013-42.656 114.777-42.779Q114.540-42.902 114.279-42.902L113.439-42.902M118.568-38.496Q118.118-38.496 117.753-38.720Q117.388-38.945 117.134-39.328Q116.880-39.711 116.755-40.154Q116.630-40.597 116.630-41.023Q116.630-41.449 116.755-41.888Q116.880-42.328 117.134-42.711Q117.388-43.094 117.747-43.318Q118.107-43.543 118.568-43.543Q118.845-43.543 119.103-43.451Q119.361-43.359 119.576-43.191L119.708-43.429Q119.736-43.480 119.790-43.511Q119.845-43.543 119.904-43.543L119.982-43.543Q120.076-43.531 120.138-43.472Q120.201-43.414 120.212-43.308L120.212-41.980Q120.201-41.879 120.138-41.816Q120.076-41.754 119.982-41.742L119.814-41.742Q119.712-41.754 119.650-41.820Q119.587-41.886 119.576-41.980Q119.536-42.246 119.413-42.470Q119.290-42.695 119.087-42.838Q118.884-42.980 118.622-42.980Q118.290-42.980 118.038-42.797Q117.786-42.613 117.615-42.312Q117.443-42.011 117.357-41.670Q117.271-41.328 117.271-41.023Q117.271-40.719 117.355-40.377Q117.439-40.035 117.611-39.732Q117.783-39.429 118.040-39.242Q118.298-39.054 118.630-39.054Q119.013-39.054 119.294-39.328Q119.576-39.601 119.576-39.988Q119.603-40.199 119.814-40.222L119.982-40.222Q120.212-40.183 120.212-39.957Q120.212-39.640 120.076-39.369Q119.939-39.097 119.704-38.900Q119.470-38.703 119.179-38.599Q118.888-38.496 118.568-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M123.677-40.390L121.204-40.390Q121.126-40.402 121.077-40.451Q121.029-40.500 121.029-40.574Q121.029-40.648 121.077-40.697Q121.126-40.746 121.204-40.758L123.677-40.758L123.677-43.238Q123.704-43.406 123.861-43.406Q123.935-43.406 123.984-43.357Q124.033-43.308 124.044-43.238L124.044-40.758L126.517-40.758Q126.685-40.726 126.685-40.574Q126.685-40.422 126.517-40.390L124.044-40.390L124.044-37.910Q124.033-37.840 123.984-37.791Q123.935-37.742 123.861-37.742Q123.704-37.742 123.677-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M130.753-38.574L127.593-38.574L127.593-38.781Q127.593-38.808 127.616-38.840L128.968-40.238Q129.347-40.625 129.595-40.914Q129.843-41.203 130.017-41.560Q130.190-41.918 130.190-42.308Q130.190-42.656 130.058-42.949Q129.925-43.242 129.671-43.420Q129.417-43.597 129.062-43.597Q128.702-43.597 128.411-43.402Q128.120-43.207 127.976-42.879L128.030-42.879Q128.214-42.879 128.339-42.758Q128.464-42.636 128.464-42.445Q128.464-42.265 128.339-42.136Q128.214-42.008 128.030-42.008Q127.851-42.008 127.722-42.136Q127.593-42.265 127.593-42.445Q127.593-42.847 127.813-43.183Q128.034-43.519 128.399-43.707Q128.765-43.894 129.167-43.894Q129.647-43.894 130.063-43.707Q130.480-43.519 130.731-43.158Q130.983-42.797 130.983-42.308Q130.983-41.949 130.829-41.646Q130.675-41.344 130.423-41.084Q130.171-40.824 129.821-40.539Q129.472-40.254 129.304-40.101L128.374-39.261L129.089-39.261Q130.464-39.261 130.503-39.301Q130.573-39.379 130.616-39.564Q130.659-39.750 130.702-40.039L130.983-40.039\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-26.624h230.467\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M14.584-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.584-43.356Q15.069-43.356 15.505-43.161Q15.941-42.966 16.264-42.624Q16.587-42.282 16.765-41.842Q16.942-41.401 16.942-40.919Q16.942-40.433 16.758-40.010Q16.573-39.586 16.250-39.264Q15.927-38.943 15.495-38.759Q15.063-38.574 14.584-38.574M13.196-42.864L13.196-39.063Q13.196-38.923 13.285-38.888Q13.374-38.854 13.562-38.854L14.386-38.854Q15.011-38.854 15.415-39.116Q15.818-39.377 16.006-39.844Q16.194-40.310 16.194-40.919Q16.194-41.397 16.102-41.790Q16.009-42.183 15.760-42.481Q15.521-42.768 15.157-42.922Q14.793-43.075 14.386-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.711-40.109Q17.711-40.430 17.836-40.719Q17.961-41.008 18.187-41.231Q18.412-41.455 18.708-41.575Q19.003-41.695 19.321-41.695Q19.649-41.695 19.911-41.595Q20.172-41.496 20.348-41.314Q20.524-41.131 20.618-40.873Q20.712-40.615 20.712-40.283Q20.712-40.191 20.630-40.170L18.375-40.170L18.375-40.109Q18.375-39.521 18.658-39.138Q18.942-38.755 19.509-38.755Q19.831-38.755 20.099-38.948Q20.367-39.141 20.456-39.456Q20.463-39.497 20.538-39.511L20.630-39.511Q20.712-39.487 20.712-39.415Q20.712-39.408 20.706-39.381Q20.593-38.984 20.222-38.745Q19.851-38.506 19.427-38.506Q18.990-38.506 18.590-38.714Q18.190-38.923 17.951-39.290Q17.711-39.657 17.711-40.109M18.381-40.379L20.196-40.379Q20.196-40.656 20.099-40.908Q20.002-41.161 19.803-41.317Q19.605-41.472 19.321-41.472Q19.044-41.472 18.831-41.314Q18.617-41.155 18.499-40.900Q18.381-40.645 18.381-40.379M21.300-40.085Q21.300-40.413 21.435-40.714Q21.570-41.014 21.806-41.235Q22.042-41.455 22.346-41.575Q22.650-41.695 22.975-41.695Q23.481-41.695 23.830-41.592Q24.178-41.490 24.178-41.114Q24.178-40.967 24.081-40.866Q23.983-40.765 23.836-40.765Q23.683-40.765 23.584-40.864Q23.484-40.963 23.484-41.114Q23.484-41.302 23.625-41.394Q23.423-41.445 22.982-41.445Q22.627-41.445 22.398-41.249Q22.169-41.052 22.068-40.743Q21.967-40.433 21.967-40.085Q21.967-39.736 22.093-39.430Q22.220-39.124 22.474-38.940Q22.729-38.755 23.085-38.755Q23.307-38.755 23.491-38.839Q23.676-38.923 23.811-39.078Q23.946-39.234 24.004-39.442Q24.018-39.497 24.072-39.497L24.185-39.497Q24.216-39.497 24.238-39.473Q24.260-39.449 24.260-39.415L24.260-39.394Q24.175-39.107 23.987-38.909Q23.799-38.711 23.534-38.608Q23.269-38.506 22.975-38.506Q22.544-38.506 22.157-38.712Q21.769-38.919 21.534-39.282Q21.300-39.644 21.300-40.085M24.807-40.057Q24.807-40.399 24.942-40.698Q25.077-40.997 25.316-41.221Q25.556-41.445 25.874-41.570Q26.191-41.695 26.523-41.695Q26.967-41.695 27.367-41.479Q27.767-41.264 28.001-40.886Q28.235-40.509 28.235-40.057Q28.235-39.716 28.094-39.432Q27.952-39.148 27.707-38.941Q27.463-38.735 27.154-38.620Q26.844-38.506 26.523-38.506Q26.092-38.506 25.691-38.707Q25.289-38.909 25.048-39.261Q24.807-39.613 24.807-40.057M26.523-38.755Q27.125-38.755 27.348-39.133Q27.572-39.511 27.572-40.143Q27.572-40.755 27.338-41.114Q27.104-41.472 26.523-41.472Q25.470-41.472 25.470-40.143Q25.470-39.511 25.696-39.133Q25.921-38.755 26.523-38.755\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M29.066-40.085Q29.066-40.423 29.207-40.714Q29.347-41.004 29.591-41.218Q29.835-41.431 30.140-41.546Q30.444-41.660 30.769-41.660Q31.039-41.660 31.302-41.561Q31.565-41.462 31.756-41.284L31.756-42.682Q31.756-42.952 31.649-43.014Q31.541-43.075 31.230-43.075L31.230-43.356L32.307-43.431L32.307-39.247Q32.307-39.059 32.361-38.976Q32.416-38.892 32.517-38.873Q32.618-38.854 32.833-38.854L32.833-38.574L31.726-38.506L31.726-38.923Q31.309-38.506 30.683-38.506Q30.252-38.506 29.880-38.718Q29.507-38.929 29.287-39.290Q29.066-39.651 29.066-40.085M30.741-38.728Q30.950-38.728 31.136-38.800Q31.322-38.871 31.476-39.008Q31.630-39.145 31.726-39.323L31.726-40.932Q31.640-41.079 31.495-41.199Q31.350-41.319 31.180-41.378Q31.011-41.438 30.830-41.438Q30.270-41.438 30.001-41.049Q29.733-40.659 29.733-40.078Q29.733-39.507 29.967-39.117Q30.201-38.728 30.741-38.728M33.441-40.109Q33.441-40.430 33.566-40.719Q33.691-41.008 33.917-41.231Q34.142-41.455 34.438-41.575Q34.733-41.695 35.051-41.695Q35.379-41.695 35.641-41.595Q35.902-41.496 36.078-41.314Q36.254-41.131 36.348-40.873Q36.442-40.615 36.442-40.283Q36.442-40.191 36.360-40.170L34.105-40.170L34.105-40.109Q34.105-39.521 34.388-39.138Q34.672-38.755 35.239-38.755Q35.561-38.755 35.829-38.948Q36.097-39.141 36.186-39.456Q36.193-39.497 36.268-39.511L36.360-39.511Q36.442-39.487 36.442-39.415Q36.442-39.408 36.436-39.381Q36.323-38.984 35.952-38.745Q35.581-38.506 35.157-38.506Q34.720-38.506 34.320-38.714Q33.920-38.923 33.681-39.290Q33.441-39.657 33.441-40.109M34.111-40.379L35.926-40.379Q35.926-40.656 35.829-40.908Q35.731-41.161 35.533-41.317Q35.335-41.472 35.051-41.472Q34.774-41.472 34.561-41.314Q34.347-41.155 34.229-40.900Q34.111-40.645 34.111-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.388-38.812L24.388-38.902Q24.446-39.113 24.638-39.133L24.860-39.133L25.814-43.316Q25.837-43.433 25.933-43.508Q26.028-43.582 26.142-43.582L26.415-43.582Q26.528-43.582 26.624-43.506Q26.720-43.429 26.743-43.316L27.692-39.133L27.919-39.133Q28.126-39.109 28.165-38.902L28.165-38.812Q28.114-38.597 27.919-38.574L26.837-38.574Q26.642-38.597 26.591-38.812L26.591-38.902Q26.642-39.109 26.837-39.133L27.036-39.133Q26.907-39.699 26.884-39.781L25.669-39.781Q25.626-39.597 25.517-39.133L25.716-39.133Q25.915-39.109 25.966-38.902L25.966-38.812Q25.915-38.597 25.716-38.574L24.638-38.574Q24.431-38.597 24.388-38.812M25.790-40.344L26.767-40.344Q26.286-42.476 26.286-42.820L26.278-42.820Q26.278-42.636 26.138-41.953Q25.997-41.269 25.790-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M42.378-38.574L40.241-38.574Q40.206-38.574 40.175-38.615Q40.144-38.656 40.144-38.703L40.167-38.804Q40.179-38.855 40.265-38.871Q40.706-38.871 40.864-38.910Q41.023-38.949 41.066-39.176L42.144-43.496Q42.167-43.566 42.167-43.629Q42.167-43.691 42.105-43.711Q41.960-43.742 41.538-43.742Q41.433-43.769 41.433-43.871L41.464-43.972Q41.472-44.019 41.554-44.039L44.066-44.039Q44.472-44.039 44.915-43.916Q45.358-43.793 45.663-43.517Q45.968-43.242 45.968-42.820Q45.968-42.433 45.698-42.117Q45.429-41.801 45.030-41.592Q44.632-41.383 44.257-41.293Q44.566-41.168 44.763-40.929Q44.960-40.691 44.960-40.375Q44.960-40.332 44.958-40.304Q44.956-40.277 44.952-40.246L44.874-39.551Q44.843-39.261 44.843-39.140Q44.843-38.926 44.911-38.795Q44.980-38.664 45.187-38.664Q45.441-38.664 45.636-38.888Q45.831-39.113 45.898-39.390Q45.905-39.437 45.991-39.453L46.073-39.453Q46.167-39.426 46.167-39.344Q46.167-39.336 46.159-39.301Q46.108-39.086 45.964-38.875Q45.819-38.664 45.612-38.535Q45.405-38.406 45.179-38.406Q44.874-38.406 44.605-38.492Q44.335-38.578 44.163-38.777Q43.991-38.976 43.991-39.285Q43.991-39.394 44.034-39.574L44.210-40.269Q44.233-40.390 44.233-40.484Q44.233-40.820 43.972-41.002Q43.710-41.183 43.347-41.183L42.296-41.183L41.776-39.117Q41.761-39.023 41.761-38.980Q41.761-38.941 41.774-38.928Q41.788-38.914 41.823-38.902Q41.968-38.871 42.394-38.871Q42.487-38.844 42.487-38.750L42.464-38.644Q42.456-38.594 42.378-38.574M42.858-43.437L42.362-41.437L43.304-41.437Q43.648-41.437 43.964-41.506Q44.280-41.574 44.554-41.742Q44.741-41.867 44.878-42.068Q45.015-42.269 45.083-42.502Q45.151-42.734 45.151-42.957Q45.151-43.414 44.784-43.578Q44.417-43.742 43.882-43.742L43.265-43.742Q43.093-43.742 43.030-43.728Q42.968-43.715 42.935-43.656Q42.901-43.597 42.858-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M48.372-36.574L47.196-36.574L47.196-44.574L48.372-44.574L48.372-44.207L47.563-44.207L47.563-36.941L48.372-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M48.788-38.812L48.788-38.902Q48.846-39.109 49.038-39.133L49.749-39.133L49.749-41.461L49.038-41.461Q48.842-41.484 48.788-41.703L48.788-41.789Q48.846-42 49.038-42.023L50.139-42.023Q50.338-42.004 50.389-41.789L50.389-41.461Q50.651-41.746 51.006-41.904Q51.362-42.062 51.749-42.062Q52.042-42.062 52.276-41.928Q52.510-41.793 52.510-41.527Q52.510-41.359 52.401-41.242Q52.292-41.125 52.124-41.125Q51.971-41.125 51.856-41.236Q51.741-41.347 51.741-41.504Q51.366-41.504 51.051-41.303Q50.737-41.101 50.563-40.767Q50.389-40.433 50.389-40.054L50.389-39.133L51.335-39.133Q51.542-39.109 51.581-38.902L51.581-38.812Q51.542-38.597 51.335-38.574L49.038-38.574Q48.846-38.597 48.788-38.812M53.042-38.812L53.042-38.902Q53.100-39.113 53.292-39.133L53.514-39.133L54.467-43.316Q54.491-43.433 54.586-43.508Q54.682-43.582 54.795-43.582L55.069-43.582Q55.182-43.582 55.278-43.506Q55.374-43.429 55.397-43.316L56.346-39.133L56.573-39.133Q56.780-39.109 56.819-38.902L56.819-38.812Q56.768-38.597 56.573-38.574L55.491-38.574Q55.295-38.597 55.245-38.812L55.245-38.902Q55.295-39.109 55.491-39.133L55.690-39.133Q55.561-39.699 55.538-39.781L54.323-39.781Q54.280-39.597 54.170-39.133L54.370-39.133Q54.569-39.109 54.620-38.902L54.620-38.812Q54.569-38.597 54.370-38.574L53.292-38.574Q53.085-38.597 53.042-38.812M54.444-40.344L55.420-40.344Q54.940-42.476 54.940-42.820L54.932-42.820Q54.932-42.636 54.792-41.953Q54.651-41.269 54.444-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M58.424-36.574L57.249-36.574L57.249-36.941L58.057-36.941L58.057-44.207L57.249-44.207L57.249-44.574L58.424-44.574L58.424-36.574M60.249-37.168Q60.249-37.207 60.272-37.230Q60.545-37.515 60.688-37.879Q60.831-38.242 60.831-38.629Q60.733-38.574 60.608-38.574Q60.417-38.574 60.280-38.707Q60.143-38.840 60.143-39.039Q60.143-39.230 60.280-39.363Q60.417-39.496 60.608-39.496Q61.088-39.496 61.088-38.621Q61.088-38.332 61.016-38.051Q60.944-37.769 60.801-37.515Q60.659-37.261 60.463-37.054Q60.432-37.023 60.393-37.023Q60.346-37.023 60.297-37.068Q60.249-37.113 60.249-37.168M60.143-41.566Q60.143-41.750 60.280-41.886Q60.417-42.023 60.608-42.023Q60.799-42.023 60.932-41.890Q61.065-41.758 61.065-41.566Q61.065-41.367 60.932-41.234Q60.799-41.101 60.608-41.101Q60.417-41.101 60.280-41.238Q60.143-41.375 60.143-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M66.277-38.797L65.391-41.461L65.070-41.461Q64.871-41.484 64.820-41.703L64.820-41.789Q64.871-42 65.070-42.023L66.230-42.023Q66.426-42.004 66.476-41.789L66.476-41.703Q66.426-41.484 66.230-41.461L65.949-41.461L66.742-39.086L67.531-41.461L67.254-41.461Q67.055-41.484 67.004-41.703L67.004-41.789Q67.055-42 67.254-42.023L68.414-42.023Q68.609-42 68.660-41.789L68.660-41.703Q68.609-41.484 68.414-41.461L68.094-41.461L67.207-38.797Q67.164-38.683 67.062-38.609Q66.961-38.535 66.836-38.535L66.644-38.535Q66.527-38.535 66.424-38.607Q66.320-38.679 66.277-38.797M69.273-39.687Q69.273-40.133 69.687-40.390Q70.101-40.648 70.642-40.748Q71.183-40.847 71.691-40.855Q71.691-41.070 71.557-41.222Q71.422-41.375 71.215-41.451Q71.008-41.527 70.797-41.527Q70.453-41.527 70.293-41.504L70.293-41.445Q70.293-41.277 70.174-41.162Q70.055-41.047 69.891-41.047Q69.715-41.047 69.600-41.170Q69.484-41.293 69.484-41.461Q69.484-41.867 69.865-41.976Q70.246-42.086 70.805-42.086Q71.074-42.086 71.342-42.008Q71.609-41.929 71.834-41.779Q72.058-41.629 72.195-41.408Q72.332-41.187 72.332-40.910L72.332-39.191Q72.332-39.133 72.859-39.133Q73.055-39.113 73.105-38.902L73.105-38.812Q73.055-38.597 72.859-38.574L72.715-38.574Q72.371-38.574 72.142-38.621Q71.914-38.668 71.769-38.855Q71.308-38.535 70.601-38.535Q70.266-38.535 69.961-38.676Q69.656-38.816 69.465-39.078Q69.273-39.340 69.273-39.687M69.914-39.679Q69.914-39.406 70.156-39.250Q70.398-39.094 70.683-39.094Q70.902-39.094 71.135-39.152Q71.367-39.211 71.529-39.349Q71.691-39.488 71.691-39.711L71.691-40.301Q71.410-40.301 70.994-40.244Q70.578-40.187 70.246-40.049Q69.914-39.910 69.914-39.679M73.562-38.812L73.562-38.902Q73.613-39.109 73.808-39.133L74.914-39.133L74.914-42.902L73.808-42.902Q73.613-42.926 73.562-43.140L73.562-43.230Q73.613-43.437 73.808-43.461L75.305-43.461Q75.496-43.437 75.555-43.230L75.555-39.133L76.656-39.133Q76.855-39.109 76.906-38.902L76.906-38.812Q76.855-38.597 76.656-38.574L73.808-38.574Q73.613-38.597 73.562-38.812M77.527-38.812L77.527-38.902Q77.566-39.109 77.773-39.133L78.062-39.133L78.062-42.902L77.773-42.902Q77.566-42.926 77.527-43.140L77.527-43.230Q77.566-43.437 77.773-43.461L79.734-43.461Q80.004-43.461 80.244-43.365Q80.484-43.269 80.676-43.099Q80.867-42.929 80.976-42.701Q81.086-42.472 81.086-42.207Q81.086-41.840 80.846-41.551Q80.605-41.261 80.238-41.133Q80.519-41.070 80.752-40.896Q80.984-40.722 81.119-40.467Q81.254-40.211 81.254-39.926Q81.254-39.566 81.072-39.256Q80.891-38.945 80.576-38.760Q80.262-38.574 79.902-38.574L77.773-38.574Q77.566-38.597 77.527-38.812M78.703-40.840L78.703-39.133L79.734-39.133Q79.961-39.133 80.164-39.236Q80.367-39.340 80.492-39.519Q80.617-39.699 80.617-39.926Q80.617-40.156 80.516-40.365Q80.414-40.574 80.232-40.707Q80.051-40.840 79.824-40.840L78.703-40.840M78.703-42.902L78.703-41.398L79.566-41.398Q79.910-41.398 80.180-41.633Q80.449-41.867 80.449-42.207Q80.449-42.394 80.351-42.554Q80.254-42.715 80.088-42.808Q79.922-42.902 79.734-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M89.943-39.551L84.630-39.551Q84.552-39.558 84.503-39.607Q84.455-39.656 84.455-39.734Q84.455-39.804 84.502-39.855Q84.548-39.906 84.630-39.918L89.943-39.918Q90.017-39.906 90.064-39.855Q90.111-39.804 90.111-39.734Q90.111-39.656 90.062-39.607Q90.013-39.558 89.943-39.551M89.943-41.238L84.630-41.238Q84.552-41.246 84.503-41.295Q84.455-41.344 84.455-41.422Q84.455-41.492 84.502-41.543Q84.548-41.594 84.630-41.605L89.943-41.605Q90.017-41.594 90.064-41.543Q90.111-41.492 90.111-41.422Q90.111-41.344 90.062-41.295Q90.013-41.246 89.943-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M95.580-38.574L93.443-38.574Q93.408-38.574 93.377-38.615Q93.346-38.656 93.346-38.703L93.369-38.804Q93.381-38.855 93.467-38.871Q93.908-38.871 94.066-38.910Q94.225-38.949 94.267-39.176L95.346-43.496Q95.369-43.566 95.369-43.629Q95.369-43.691 95.307-43.711Q95.162-43.742 94.740-43.742Q94.635-43.769 94.635-43.871L94.666-43.972Q94.674-44.019 94.756-44.039L97.267-44.039Q97.674-44.039 98.117-43.916Q98.560-43.793 98.865-43.517Q99.170-43.242 99.170-42.820Q99.170-42.433 98.900-42.117Q98.631-41.801 98.232-41.592Q97.834-41.383 97.459-41.293Q97.767-41.168 97.965-40.929Q98.162-40.691 98.162-40.375Q98.162-40.332 98.160-40.304Q98.158-40.277 98.154-40.246L98.076-39.551Q98.045-39.261 98.045-39.140Q98.045-38.926 98.113-38.795Q98.182-38.664 98.389-38.664Q98.642-38.664 98.838-38.888Q99.033-39.113 99.100-39.390Q99.107-39.437 99.193-39.453L99.275-39.453Q99.369-39.426 99.369-39.344Q99.369-39.336 99.361-39.301Q99.310-39.086 99.166-38.875Q99.021-38.664 98.814-38.535Q98.607-38.406 98.381-38.406Q98.076-38.406 97.807-38.492Q97.537-38.578 97.365-38.777Q97.193-38.976 97.193-39.285Q97.193-39.394 97.236-39.574L97.412-40.269Q97.435-40.390 97.435-40.484Q97.435-40.820 97.174-41.002Q96.912-41.183 96.549-41.183L95.498-41.183L94.978-39.117Q94.963-39.023 94.963-38.980Q94.963-38.941 94.976-38.928Q94.990-38.914 95.025-38.902Q95.170-38.871 95.596-38.871Q95.689-38.844 95.689-38.750L95.666-38.644Q95.658-38.594 95.580-38.574M96.060-43.437L95.564-41.437L96.506-41.437Q96.850-41.437 97.166-41.506Q97.482-41.574 97.756-41.742Q97.943-41.867 98.080-42.068Q98.217-42.269 98.285-42.502Q98.353-42.734 98.353-42.957Q98.353-43.414 97.986-43.578Q97.619-43.742 97.084-43.742L96.467-43.742Q96.295-43.742 96.232-43.728Q96.170-43.715 96.137-43.656Q96.103-43.597 96.060-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M101.574-36.574L100.398-36.574L100.398-44.574L101.574-44.574L101.574-44.207L100.765-44.207L100.765-36.941L101.574-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M102.951-38.308Q102.951-38.371 102.982-38.414L106.728-43.672Q106.271-43.437 105.704-43.437Q105.052-43.437 104.447-43.758Q104.591-43.410 104.591-42.965Q104.591-42.605 104.470-42.234Q104.349-41.863 104.099-41.607Q103.849-41.351 103.486-41.351Q103.099-41.351 102.816-41.595Q102.533-41.840 102.386-42.213Q102.240-42.586 102.240-42.965Q102.240-43.344 102.386-43.715Q102.533-44.086 102.816-44.330Q103.099-44.574 103.486-44.574Q103.802-44.574 104.072-44.336Q104.408-44.031 104.837-43.859Q105.267-43.687 105.704-43.687Q106.197-43.687 106.615-43.900Q107.033-44.113 107.333-44.511Q107.376-44.574 107.470-44.574Q107.544-44.574 107.599-44.519Q107.654-44.465 107.654-44.390Q107.654-44.328 107.622-44.285L103.279-38.191Q103.232-38.125 103.134-38.125Q103.052-38.125 103.001-38.176Q102.951-38.226 102.951-38.308M103.486-41.605Q103.759-41.605 103.947-41.830Q104.134-42.054 104.222-42.377Q104.310-42.699 104.310-42.965Q104.310-43.222 104.222-43.545Q104.134-43.867 103.947-44.092Q103.759-44.316 103.486-44.316Q103.099-44.316 102.956-43.888Q102.814-43.461 102.814-42.965Q102.814-42.457 102.954-42.031Q103.095-41.605 103.486-41.605M107.263-38.125Q106.876-38.125 106.593-38.371Q106.310-38.617 106.162-38.990Q106.013-39.363 106.013-39.742Q106.013-40.015 106.099-40.303Q106.185-40.590 106.339-40.824Q106.494-41.058 106.730-41.205Q106.966-41.351 107.263-41.351Q107.544-41.351 107.751-41.199Q107.958-41.047 108.097-40.804Q108.236-40.562 108.302-40.281Q108.369-40 108.369-39.742Q108.369-39.383 108.247-39.010Q108.126-38.636 107.876-38.381Q107.626-38.125 107.263-38.125M107.263-38.383Q107.537-38.383 107.724-38.607Q107.912-38.832 107.999-39.154Q108.087-39.476 108.087-39.742Q108.087-40 107.999-40.322Q107.912-40.644 107.724-40.869Q107.537-41.094 107.263-41.094Q106.872-41.094 106.732-40.664Q106.591-40.234 106.591-39.742Q106.591-39.234 106.728-38.808Q106.865-38.383 107.263-38.383\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M109.074-38.812L109.074-38.902Q109.132-39.109 109.324-39.133L110.035-39.133L110.035-41.461L109.324-41.461Q109.128-41.484 109.074-41.703L109.074-41.789Q109.132-42 109.324-42.023L110.425-42.023Q110.624-42.004 110.675-41.789L110.675-41.461Q110.937-41.746 111.292-41.904Q111.648-42.062 112.035-42.062Q112.328-42.062 112.562-41.928Q112.796-41.793 112.796-41.527Q112.796-41.359 112.687-41.242Q112.578-41.125 112.410-41.125Q112.257-41.125 112.142-41.236Q112.027-41.347 112.027-41.504Q111.652-41.504 111.337-41.303Q111.023-41.101 110.849-40.767Q110.675-40.433 110.675-40.054L110.675-39.133L111.621-39.133Q111.828-39.109 111.867-38.902L111.867-38.812Q111.828-38.597 111.621-38.574L109.324-38.574Q109.132-38.597 109.074-38.812M113.683-38.773L113.683-39.687Q113.710-39.894 113.921-39.918L114.089-39.918Q114.253-39.894 114.312-39.734Q114.515-39.094 115.242-39.094Q115.449-39.094 115.677-39.129Q115.906-39.164 116.074-39.279Q116.242-39.394 116.242-39.597Q116.242-39.808 116.019-39.922Q115.796-40.035 115.523-40.078L114.824-40.191Q113.683-40.402 113.683-41.125Q113.683-41.414 113.828-41.603Q113.972-41.793 114.212-41.900Q114.453-42.008 114.708-42.047Q114.964-42.086 115.242-42.086Q115.492-42.086 115.685-42.056Q115.878-42.027 116.042-41.949Q116.121-42.066 116.249-42.086L116.328-42.086Q116.425-42.074 116.488-42.011Q116.550-41.949 116.562-41.855L116.562-41.148Q116.550-41.054 116.488-40.988Q116.425-40.922 116.328-40.910L116.160-40.910Q116.066-40.922 115.999-40.988Q115.933-41.054 115.921-41.148Q115.921-41.527 115.226-41.527Q114.878-41.527 114.560-41.445Q114.242-41.363 114.242-41.117Q114.242-40.851 114.913-40.742L115.617-40.621Q116.101-40.539 116.451-40.291Q116.800-40.043 116.800-39.597Q116.800-39.207 116.564-38.965Q116.328-38.722 115.978-38.629Q115.628-38.535 115.242-38.535Q114.663-38.535 114.265-38.789Q114.195-38.664 114.146-38.607Q114.097-38.551 113.992-38.535L113.921-38.535Q113.706-38.558 113.683-38.773M117.413-37.031L117.413-37.117Q117.456-37.336 117.663-37.359L118.085-37.359L118.085-41.461L117.663-41.461Q117.456-41.484 117.413-41.703L117.413-41.789Q117.460-42 117.663-42.023L118.480-42.023Q118.675-42.004 118.726-41.789L118.726-41.719Q118.937-41.886 119.201-41.974Q119.464-42.062 119.734-42.062Q120.074-42.062 120.371-41.918Q120.667-41.773 120.882-41.521Q121.097-41.269 121.212-40.957Q121.328-40.644 121.328-40.301Q121.328-39.836 121.101-39.426Q120.874-39.015 120.488-38.775Q120.101-38.535 119.632-38.535Q119.113-38.535 118.726-38.902L118.726-37.359L119.152-37.359Q119.359-37.336 119.398-37.117L119.398-37.031Q119.359-36.820 119.152-36.797L117.663-36.797Q117.460-36.820 117.413-37.031M119.589-39.094Q119.898-39.094 120.148-39.263Q120.398-39.433 120.542-39.715Q120.687-39.996 120.687-40.301Q120.687-40.590 120.562-40.869Q120.437-41.148 120.205-41.326Q119.972-41.504 119.671-41.504Q119.351-41.504 119.089-41.318Q118.828-41.133 118.726-40.832L118.726-39.980Q118.816-39.613 119.037-39.353Q119.257-39.094 119.589-39.094\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M122.960-36.574L121.785-36.574L121.785-36.941L122.593-36.941L122.593-44.207L121.785-44.207L121.785-44.574L122.960-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-2.439h230.467\"\u002F>\u003Cg transform=\"translate(-37.008 50.761)\">\u003Cpath d=\"M16.201-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L16.088-43.356L16.296-41.719L16.033-41.719Q15.975-42.190 15.873-42.455Q15.770-42.720 15.586-42.853Q15.401-42.987 15.129-43.031Q14.857-43.075 14.358-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.199L13.784-41.199Q14.174-41.199 14.357-41.250Q14.540-41.302 14.622-41.474Q14.704-41.647 14.704-42.019L14.967-42.019L14.967-40.098L14.704-40.098Q14.704-40.471 14.622-40.644Q14.540-40.816 14.357-40.867Q14.174-40.919 13.784-40.919L13.210-40.919L13.210-39.063Q13.210-38.923 13.299-38.888Q13.388-38.854 13.576-38.854L14.423-38.854Q14.953-38.854 15.263-38.923Q15.572-38.991 15.760-39.158Q15.948-39.326 16.055-39.628Q16.163-39.931 16.249-40.444L16.515-40.444L16.201-38.574M18.286-38.574L16.963-38.574L16.963-38.854Q17.523-38.854 17.903-39.254L18.617-40.051L17.705-41.100Q17.568-41.247 17.419-41.279Q17.271-41.312 17.004-41.312L17.004-41.592L18.504-41.592L18.504-41.312Q18.313-41.312 18.313-41.178Q18.313-41.148 18.344-41.100L18.939-40.416L19.379-40.912Q19.492-41.042 19.492-41.158Q19.492-41.220 19.455-41.266Q19.417-41.312 19.359-41.312L19.359-41.592L20.675-41.592L20.675-41.312Q20.114-41.312 19.735-40.912L19.113-40.211L20.107-39.063Q20.207-38.964 20.307-38.919Q20.408-38.875 20.519-38.865Q20.630-38.854 20.808-38.854L20.808-38.574L19.315-38.574L19.315-38.854Q19.379-38.854 19.439-38.888Q19.499-38.923 19.499-38.988Q19.499-39.035 19.468-39.063L18.792-39.849L18.258-39.254Q18.146-39.124 18.146-39.008Q18.146-38.943 18.187-38.899Q18.228-38.854 18.286-38.854L18.286-38.574M21.263-40.109Q21.263-40.430 21.388-40.719Q21.512-41.008 21.738-41.231Q21.963-41.455 22.259-41.575Q22.555-41.695 22.873-41.695Q23.201-41.695 23.462-41.595Q23.724-41.496 23.900-41.314Q24.076-41.131 24.170-40.873Q24.264-40.615 24.264-40.283Q24.264-40.191 24.182-40.170L21.926-40.170L21.926-40.109Q21.926-39.521 22.210-39.138Q22.493-38.755 23.061-38.755Q23.382-38.755 23.650-38.948Q23.919-39.141 24.007-39.456Q24.014-39.497 24.089-39.511L24.182-39.511Q24.264-39.487 24.264-39.415Q24.264-39.408 24.257-39.381Q24.144-38.984 23.773-38.745Q23.402-38.506 22.979-38.506Q22.541-38.506 22.141-38.714Q21.741-38.923 21.502-39.290Q21.263-39.657 21.263-40.109M21.933-40.379L23.748-40.379Q23.748-40.656 23.650-40.908Q23.553-41.161 23.355-41.317Q23.156-41.472 22.873-41.472Q22.596-41.472 22.382-41.314Q22.169-41.155 22.051-40.900Q21.933-40.645 21.933-40.379M24.852-40.085Q24.852-40.413 24.987-40.714Q25.122-41.014 25.357-41.235Q25.593-41.455 25.898-41.575Q26.202-41.695 26.526-41.695Q27.032-41.695 27.381-41.592Q27.730-41.490 27.730-41.114Q27.730-40.967 27.632-40.866Q27.535-40.765 27.388-40.765Q27.234-40.765 27.135-40.864Q27.036-40.963 27.036-41.114Q27.036-41.302 27.176-41.394Q26.974-41.445 26.533-41.445Q26.178-41.445 25.949-41.249Q25.720-41.052 25.619-40.743Q25.518-40.433 25.518-40.085Q25.518-39.736 25.645-39.430Q25.771-39.124 26.026-38.940Q26.280-38.755 26.636-38.755Q26.858-38.755 27.043-38.839Q27.227-38.923 27.362-39.078Q27.497-39.234 27.555-39.442Q27.569-39.497 27.624-39.497L27.736-39.497Q27.767-39.497 27.789-39.473Q27.812-39.449 27.812-39.415L27.812-39.394Q27.726-39.107 27.538-38.909Q27.350-38.711 27.085-38.608Q26.820-38.506 26.526-38.506Q26.096-38.506 25.708-38.712Q25.320-38.919 25.086-39.282Q24.852-39.644 24.852-40.085M28.974-39.408L28.974-40.912Q28.974-41.182 28.866-41.243Q28.758-41.305 28.447-41.305L28.447-41.585L29.555-41.660L29.555-39.428L29.555-39.408Q29.555-39.128 29.606-38.984Q29.657-38.841 29.799-38.784Q29.941-38.728 30.228-38.728Q30.481-38.728 30.686-38.868Q30.891-39.008 31.007-39.234Q31.124-39.459 31.124-39.709L31.124-40.912Q31.124-41.182 31.016-41.243Q30.908-41.305 30.597-41.305L30.597-41.585L31.705-41.660L31.705-39.247Q31.705-39.056 31.758-38.974Q31.811-38.892 31.911-38.873Q32.012-38.854 32.228-38.854L32.228-38.574L31.151-38.506L31.151-39.070Q31.042-38.888 30.896-38.765Q30.751-38.642 30.565-38.574Q30.378-38.506 30.177-38.506Q28.974-38.506 28.974-39.408M33.342-39.415L33.342-41.312L32.703-41.312L32.703-41.534Q33.021-41.534 33.238-41.744Q33.455-41.954 33.555-42.264Q33.656-42.573 33.656-42.881L33.923-42.881L33.923-41.592L35-41.592L35-41.312L33.923-41.312L33.923-39.428Q33.923-39.152 34.027-38.953Q34.131-38.755 34.391-38.755Q34.548-38.755 34.654-38.859Q34.760-38.964 34.810-39.117Q34.859-39.271 34.859-39.428L34.859-39.842L35.126-39.842L35.126-39.415Q35.126-39.189 35.027-38.979Q34.928-38.769 34.743-38.637Q34.559-38.506 34.330-38.506Q33.892-38.506 33.617-38.743Q33.342-38.981 33.342-39.415M35.895-40.109Q35.895-40.430 36.020-40.719Q36.145-41.008 36.370-41.231Q36.596-41.455 36.891-41.575Q37.187-41.695 37.505-41.695Q37.833-41.695 38.095-41.595Q38.356-41.496 38.532-41.314Q38.708-41.131 38.802-40.873Q38.896-40.615 38.896-40.283Q38.896-40.191 38.814-40.170L36.558-40.170L36.558-40.109Q36.558-39.521 36.842-39.138Q37.126-38.755 37.693-38.755Q38.014-38.755 38.283-38.948Q38.551-39.141 38.640-39.456Q38.647-39.497 38.722-39.511L38.814-39.511Q38.896-39.487 38.896-39.415Q38.896-39.408 38.889-39.381Q38.776-38.984 38.406-38.745Q38.035-38.506 37.611-38.506Q37.173-38.506 36.773-38.714Q36.374-38.923 36.134-39.290Q35.895-39.657 35.895-40.109M36.565-40.379L38.380-40.379Q38.380-40.656 38.283-40.908Q38.185-41.161 37.987-41.317Q37.789-41.472 37.505-41.472Q37.228-41.472 37.014-41.314Q36.801-41.155 36.683-40.900Q36.565-40.645 36.565-40.379\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.341-38.812L24.341-38.902Q24.380-39.109 24.591-39.133L24.899-39.133L24.899-42.902L24.591-42.902Q24.380-42.926 24.341-43.140L24.341-43.230Q24.380-43.437 24.591-43.461L27.798-43.461Q27.993-43.437 28.044-43.230L28.044-42.390Q27.993-42.176 27.798-42.148L27.653-42.148Q27.458-42.176 27.403-42.390L27.403-42.902L25.540-42.902L25.540-41.383L26.517-41.383L26.517-41.597Q26.567-41.804 26.767-41.832L26.911-41.832Q27.107-41.804 27.157-41.597L27.157-40.613Q27.107-40.398 26.911-40.375L26.767-40.375Q26.567-40.398 26.517-40.613L26.517-40.820L25.540-40.820L25.540-39.133L27.583-39.133L27.583-39.773Q27.634-39.980 27.829-40.008L27.974-40.008Q28.169-39.980 28.220-39.773L28.220-38.812Q28.169-38.594 27.974-38.574L24.591-38.574Q24.380-38.597 24.341-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M41.409-38.797L40.523-41.461L40.202-41.461Q40.003-41.484 39.952-41.703L39.952-41.789Q40.003-42 40.202-42.023L41.362-42.023Q41.558-42.004 41.608-41.789L41.608-41.703Q41.558-41.484 41.362-41.461L41.081-41.461L41.874-39.086L42.663-41.461L42.386-41.461Q42.187-41.484 42.136-41.703L42.136-41.789Q42.187-42 42.386-42.023L43.546-42.023Q43.741-42 43.792-41.789L43.792-41.703Q43.741-41.484 43.546-41.461L43.226-41.461L42.339-38.797Q42.296-38.683 42.194-38.609Q42.093-38.535 41.968-38.535L41.776-38.535Q41.659-38.535 41.556-38.607Q41.452-38.679 41.409-38.797M44.405-39.687Q44.405-40.133 44.819-40.390Q45.233-40.648 45.774-40.748Q46.316-40.847 46.823-40.855Q46.823-41.070 46.689-41.222Q46.554-41.375 46.347-41.451Q46.140-41.527 45.929-41.527Q45.585-41.527 45.425-41.504L45.425-41.445Q45.425-41.277 45.306-41.162Q45.187-41.047 45.023-41.047Q44.847-41.047 44.732-41.170Q44.616-41.293 44.616-41.461Q44.616-41.867 44.997-41.976Q45.378-42.086 45.937-42.086Q46.206-42.086 46.474-42.008Q46.741-41.929 46.966-41.779Q47.191-41.629 47.327-41.408Q47.464-41.187 47.464-40.910L47.464-39.191Q47.464-39.133 47.991-39.133Q48.187-39.113 48.237-38.902L48.237-38.812Q48.187-38.597 47.991-38.574L47.847-38.574Q47.503-38.574 47.274-38.621Q47.046-38.668 46.901-38.855Q46.441-38.535 45.733-38.535Q45.398-38.535 45.093-38.676Q44.788-38.816 44.597-39.078Q44.405-39.340 44.405-39.687M45.046-39.679Q45.046-39.406 45.288-39.250Q45.530-39.094 45.816-39.094Q46.034-39.094 46.267-39.152Q46.499-39.211 46.661-39.349Q46.823-39.488 46.823-39.711L46.823-40.301Q46.542-40.301 46.126-40.244Q45.710-40.187 45.378-40.049Q45.046-39.910 45.046-39.679M48.694-38.812L48.694-38.902Q48.745-39.109 48.941-39.133L50.046-39.133L50.046-42.902L48.941-42.902Q48.745-42.926 48.694-43.140L48.694-43.230Q48.745-43.437 48.941-43.461L50.437-43.461Q50.628-43.437 50.687-43.230L50.687-39.133L51.788-39.133Q51.987-39.109 52.038-38.902L52.038-38.812Q51.987-38.597 51.788-38.574L48.941-38.574Q48.745-38.597 48.694-38.812M52.659-38.812L52.659-38.902Q52.698-39.109 52.905-39.133L53.194-39.133L53.194-42.902L52.905-42.902Q52.698-42.926 52.659-43.140L52.659-43.230Q52.698-43.437 52.905-43.461L54.866-43.461Q55.136-43.461 55.376-43.365Q55.616-43.269 55.808-43.099Q55.999-42.929 56.108-42.701Q56.218-42.472 56.218-42.207Q56.218-41.840 55.978-41.551Q55.737-41.261 55.370-41.133Q55.651-41.070 55.884-40.896Q56.116-40.722 56.251-40.467Q56.386-40.211 56.386-39.926Q56.386-39.566 56.204-39.256Q56.023-38.945 55.708-38.760Q55.394-38.574 55.034-38.574L52.905-38.574Q52.698-38.597 52.659-38.812M53.835-40.840L53.835-39.133L54.866-39.133Q55.093-39.133 55.296-39.236Q55.499-39.340 55.624-39.519Q55.749-39.699 55.749-39.926Q55.749-40.156 55.648-40.365Q55.546-40.574 55.364-40.707Q55.183-40.840 54.956-40.840L53.835-40.840M53.835-42.902L53.835-41.398L54.698-41.398Q55.042-41.398 55.312-41.633Q55.581-41.867 55.581-42.207Q55.581-42.394 55.483-42.554Q55.386-42.715 55.220-42.808Q55.054-42.902 54.866-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M61.938-40.023L59.684-40.023L59.684-40.574L61.938-40.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M65.605-39.797Q65.605-40.293 65.931-40.658Q66.257-41.023 66.780-41.269L66.511-41.429Q66.214-41.613 66.030-41.908Q65.847-42.203 65.847-42.543Q65.847-42.937 66.066-43.248Q66.284-43.558 66.638-43.726Q66.991-43.894 67.374-43.894Q67.648-43.894 67.921-43.816Q68.194-43.738 68.411-43.590Q68.628-43.441 68.765-43.215Q68.901-42.988 68.901-42.695Q68.901-42.289 68.632-41.982Q68.362-41.676 67.941-41.461L68.390-41.191Q68.608-41.054 68.776-40.861Q68.944-40.668 69.042-40.429Q69.140-40.191 69.140-39.933Q69.140-39.594 68.989-39.306Q68.839-39.019 68.593-38.822Q68.347-38.625 68.023-38.515Q67.698-38.406 67.374-38.406Q66.944-38.406 66.538-38.568Q66.132-38.730 65.868-39.049Q65.605-39.367 65.605-39.797M66.093-39.797Q66.093-39.312 66.483-38.996Q66.874-38.679 67.374-38.679Q67.667-38.679 67.966-38.791Q68.265-38.902 68.458-39.121Q68.651-39.340 68.651-39.652Q68.651-39.883 68.511-40.094Q68.370-40.304 68.163-40.422L67.054-41.101Q66.636-40.898 66.364-40.562Q66.093-40.226 66.093-39.797M66.679-42.230L67.667-41.629Q68.015-41.812 68.241-42.082Q68.468-42.351 68.468-42.695Q68.468-42.914 68.376-43.090Q68.284-43.265 68.130-43.388Q67.976-43.511 67.774-43.582Q67.573-43.652 67.374-43.652Q66.968-43.652 66.622-43.441Q66.276-43.230 66.276-42.847Q66.276-42.664 66.388-42.502Q66.499-42.340 66.679-42.230\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 21.746h230.467\"\u002F>\u003Cg transform=\"translate(-37.856 74.266)\">\u003Cpath d=\"M13.576-38.574L11.839-38.574L11.839-38.854Q12.561-38.854 12.561-39.254L12.561-42.864Q12.561-43.075 11.839-43.075L11.839-43.356L13.196-43.356Q13.292-43.356 13.343-43.257L15.018-39.282L16.690-43.257Q16.737-43.356 16.836-43.356L18.187-43.356L18.187-43.075Q17.465-43.075 17.465-42.864L17.465-39.063Q17.465-38.854 18.187-38.854L18.187-38.574L16.129-38.574L16.129-38.854Q16.850-38.854 16.850-39.063L16.850-43.075L14.998-38.673Q14.950-38.574 14.840-38.574Q14.728-38.574 14.680-38.673L12.855-43.004L12.855-39.254Q12.855-38.854 13.576-38.854L13.576-38.574M18.880-40.109Q18.880-40.430 19.005-40.719Q19.130-41.008 19.356-41.231Q19.581-41.455 19.877-41.575Q20.172-41.695 20.490-41.695Q20.818-41.695 21.080-41.595Q21.341-41.496 21.517-41.314Q21.693-41.131 21.787-40.873Q21.881-40.615 21.881-40.283Q21.881-40.191 21.799-40.170L19.544-40.170L19.544-40.109Q19.544-39.521 19.827-39.138Q20.111-38.755 20.678-38.755Q21-38.755 21.268-38.948Q21.536-39.141 21.625-39.456Q21.632-39.497 21.707-39.511L21.799-39.511Q21.881-39.487 21.881-39.415Q21.881-39.408 21.875-39.381Q21.762-38.984 21.391-38.745Q21.020-38.506 20.596-38.506Q20.159-38.506 19.759-38.714Q19.359-38.923 19.120-39.290Q18.880-39.657 18.880-40.109M19.550-40.379L21.365-40.379Q21.365-40.656 21.268-40.908Q21.170-41.161 20.972-41.317Q20.774-41.472 20.490-41.472Q20.213-41.472 20-41.314Q19.786-41.155 19.668-40.900Q19.550-40.645 19.550-40.379M24.151-38.574L22.517-38.574L22.517-38.854Q22.746-38.854 22.895-38.888Q23.044-38.923 23.044-39.063L23.044-40.912Q23.044-41.182 22.936-41.243Q22.828-41.305 22.517-41.305L22.517-41.585L23.577-41.660L23.577-41.011Q23.748-41.319 24.052-41.490Q24.356-41.660 24.701-41.660Q25.101-41.660 25.378-41.520Q25.655-41.380 25.740-41.032Q25.908-41.325 26.207-41.493Q26.506-41.660 26.851-41.660Q27.357-41.660 27.641-41.437Q27.924-41.213 27.924-40.717L27.924-39.063Q27.924-38.926 28.073-38.890Q28.222-38.854 28.447-38.854L28.447-38.574L26.817-38.574L26.817-38.854Q27.043-38.854 27.193-38.890Q27.343-38.926 27.343-39.063L27.343-40.703Q27.343-41.038 27.224-41.238Q27.104-41.438 26.790-41.438Q26.520-41.438 26.285-41.302Q26.051-41.165 25.913-40.931Q25.774-40.697 25.774-40.423L25.774-39.063Q25.774-38.926 25.923-38.890Q26.072-38.854 26.297-38.854L26.297-38.574L24.667-38.574L24.667-38.854Q24.896-38.854 25.045-38.888Q25.193-38.923 25.193-39.063L25.193-40.703Q25.193-41.038 25.074-41.238Q24.954-41.438 24.640-41.438Q24.370-41.438 24.136-41.302Q23.901-41.165 23.763-40.931Q23.625-40.697 23.625-40.423L23.625-39.063Q23.625-38.926 23.775-38.890Q23.925-38.854 24.151-38.854L24.151-38.574M28.994-40.057Q28.994-40.399 29.129-40.698Q29.264-40.997 29.503-41.221Q29.743-41.445 30.061-41.570Q30.378-41.695 30.710-41.695Q31.154-41.695 31.554-41.479Q31.954-41.264 32.188-40.886Q32.422-40.509 32.422-40.057Q32.422-39.716 32.281-39.432Q32.139-39.148 31.894-38.941Q31.650-38.735 31.341-38.620Q31.031-38.506 30.710-38.506Q30.279-38.506 29.878-38.707Q29.476-38.909 29.235-39.261Q28.994-39.613 28.994-40.057M30.710-38.755Q31.312-38.755 31.535-39.133Q31.759-39.511 31.759-40.143Q31.759-40.755 31.525-41.114Q31.291-41.472 30.710-41.472Q29.657-41.472 29.657-40.143Q29.657-39.511 29.883-39.133Q30.108-38.755 30.710-38.755M34.767-38.574L33.031-38.574L33.031-38.854Q33.260-38.854 33.409-38.888Q33.557-38.923 33.557-39.063L33.557-40.912Q33.557-41.182 33.450-41.243Q33.342-41.305 33.031-41.305L33.031-41.585L34.060-41.660L34.060-40.953Q34.190-41.261 34.432-41.460Q34.675-41.660 34.993-41.660Q35.211-41.660 35.382-41.536Q35.553-41.411 35.553-41.199Q35.553-41.062 35.454-40.963Q35.355-40.864 35.222-40.864Q35.085-40.864 34.986-40.963Q34.887-41.062 34.887-41.199Q34.887-41.339 34.986-41.438Q34.695-41.438 34.495-41.242Q34.295-41.045 34.203-40.751Q34.111-40.457 34.111-40.177L34.111-39.063Q34.111-38.854 34.767-38.854L34.767-38.574M36.473-37.439Q36.603-37.371 36.739-37.371Q36.910-37.371 37.061-37.460Q37.211-37.549 37.322-37.694Q37.433-37.839 37.512-38.007L37.775-38.574L36.606-41.100Q36.531-41.247 36.401-41.279Q36.271-41.312 36.039-41.312L36.039-41.592L37.560-41.592L37.560-41.312Q37.211-41.312 37.211-41.165Q37.214-41.144 37.216-41.127Q37.218-41.110 37.218-41.100L38.076-39.241L38.848-40.912Q38.882-40.980 38.882-41.059Q38.882-41.172 38.799-41.242Q38.715-41.312 38.602-41.312L38.602-41.592L39.798-41.592L39.798-41.312Q39.580-41.312 39.407-41.208Q39.234-41.103 39.142-40.912L37.806-38.007Q37.635-37.637 37.365-37.391Q37.095-37.145 36.739-37.145Q36.469-37.145 36.251-37.311Q36.032-37.477 36.032-37.740Q36.032-37.877 36.124-37.966Q36.216-38.054 36.356-38.054Q36.493-38.054 36.582-37.966Q36.671-37.877 36.671-37.740Q36.671-37.637 36.618-37.559Q36.565-37.480 36.473-37.439\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M13.657-38.574L11.939-38.574Q11.899-38.574 11.872-38.615Q11.845-38.656 11.845-38.703L11.868-38.804Q11.876-38.855 11.962-38.871Q12.692-38.871 12.817-39.398L13.845-43.496Q13.868-43.566 13.868-43.629Q13.868-43.691 13.802-43.711Q13.657-43.742 13.235-43.742Q13.130-43.773 13.130-43.871L13.161-43.972Q13.173-44.019 13.251-44.039L14.649-44.039Q14.708-44.039 14.745-44.010Q14.782-43.980 14.786-43.926L15.497-39.351L18.497-43.926Q18.575-44.039 18.692-44.039L20.036-44.039Q20.083-44.027 20.110-43.996Q20.138-43.965 20.138-43.918L20.114-43.812Q20.095-43.758 20.021-43.742Q19.579-43.742 19.419-43.703Q19.271-43.668 19.212-43.437L18.130-39.117Q18.114-39.023 18.114-38.980Q18.114-38.922 18.181-38.902Q18.321-38.871 18.747-38.871Q18.845-38.844 18.845-38.750L18.817-38.644Q18.810-38.594 18.732-38.574L16.649-38.574Q16.610-38.574 16.583-38.615Q16.556-38.656 16.556-38.703L16.579-38.804Q16.587-38.855 16.677-38.871Q17.114-38.871 17.273-38.910Q17.431-38.949 17.474-39.176L18.610-43.719L15.314-38.687Q15.247-38.574 15.114-38.574Q14.982-38.574 14.970-38.687L14.196-43.652L13.114-39.344Q13.099-39.242 13.099-39.191Q13.099-38.992 13.263-38.931Q13.427-38.871 13.677-38.871Q13.771-38.844 13.771-38.750L13.747-38.644Q13.739-38.594 13.657-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M19.960-38.386Q19.960-38.773 20.221-39.044Q20.481-39.315 20.883-39.484L20.710-39.581Q20.461-39.728 20.307-39.946Q20.153-40.164 20.153-40.434Q20.153-40.744 20.339-40.977Q20.525-41.210 20.818-41.332Q21.111-41.453 21.413-41.453Q21.703-41.453 21.995-41.355Q22.286-41.257 22.479-41.052Q22.673-40.847 22.673-40.548Q22.673-40.229 22.463-40.009Q22.254-39.789 21.911-39.628L22.233-39.455Q22.515-39.291 22.689-39.045Q22.863-38.799 22.863-38.494Q22.863-38.131 22.648-37.869Q22.433-37.607 22.096-37.472Q21.759-37.337 21.413-37.337Q21.070-37.337 20.736-37.451Q20.402-37.566 20.181-37.801Q19.960-38.037 19.960-38.386M20.367-38.392Q20.367-38.017 20.697-37.797Q21.026-37.577 21.413-37.577Q21.647-37.577 21.888-37.652Q22.128-37.727 22.292-37.885Q22.456-38.043 22.456-38.286Q22.456-38.456 22.348-38.595Q22.239-38.734 22.078-38.825L21.141-39.341Q20.815-39.203 20.591-38.957Q20.367-38.711 20.367-38.392M20.789-40.246L21.665-39.766Q22.312-40.082 22.312-40.548Q22.312-40.762 22.176-40.919Q22.040-41.075 21.833-41.153Q21.627-41.231 21.413-41.231Q21.091-41.231 20.801-41.091Q20.511-40.952 20.511-40.662Q20.511-40.431 20.789-40.246\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M25.917-36.574L24.741-36.574L24.741-44.574L25.917-44.574L25.917-44.207L25.108-44.207L25.108-36.941L25.917-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M27.766-38.797L26.880-41.461L26.559-41.461Q26.360-41.484 26.309-41.703L26.309-41.789Q26.360-42 26.559-42.023L27.719-42.023Q27.915-42.004 27.965-41.789L27.965-41.703Q27.915-41.484 27.719-41.461L27.438-41.461L28.231-39.086L29.020-41.461L28.743-41.461Q28.544-41.484 28.493-41.703L28.493-41.789Q28.544-42 28.743-42.023L29.903-42.023Q30.098-42 30.149-41.789L30.149-41.703Q30.098-41.484 29.903-41.461L29.583-41.461L28.696-38.797Q28.653-38.683 28.551-38.609Q28.450-38.535 28.325-38.535L28.133-38.535Q28.016-38.535 27.913-38.607Q27.809-38.679 27.766-38.797M30.762-39.687Q30.762-40.133 31.176-40.390Q31.590-40.648 32.131-40.748Q32.672-40.847 33.180-40.855Q33.180-41.070 33.046-41.222Q32.911-41.375 32.704-41.451Q32.497-41.527 32.286-41.527Q31.942-41.527 31.782-41.504L31.782-41.445Q31.782-41.277 31.663-41.162Q31.544-41.047 31.380-41.047Q31.204-41.047 31.089-41.170Q30.973-41.293 30.973-41.461Q30.973-41.867 31.354-41.976Q31.735-42.086 32.294-42.086Q32.563-42.086 32.831-42.008Q33.098-41.929 33.323-41.779Q33.547-41.629 33.684-41.408Q33.821-41.187 33.821-40.910L33.821-39.191Q33.821-39.133 34.348-39.133Q34.544-39.113 34.594-38.902L34.594-38.812Q34.544-38.597 34.348-38.574L34.204-38.574Q33.860-38.574 33.631-38.621Q33.403-38.668 33.258-38.855Q32.797-38.535 32.090-38.535Q31.755-38.535 31.450-38.676Q31.145-38.816 30.954-39.078Q30.762-39.340 30.762-39.687M31.403-39.679Q31.403-39.406 31.645-39.250Q31.887-39.094 32.172-39.094Q32.391-39.094 32.624-39.152Q32.856-39.211 33.018-39.349Q33.180-39.488 33.180-39.711L33.180-40.301Q32.899-40.301 32.483-40.244Q32.067-40.187 31.735-40.049Q31.403-39.910 31.403-39.679M35.051-38.812L35.051-38.902Q35.102-39.109 35.297-39.133L36.403-39.133L36.403-42.902L35.297-42.902Q35.102-42.926 35.051-43.140L35.051-43.230Q35.102-43.437 35.297-43.461L36.794-43.461Q36.985-43.437 37.044-43.230L37.044-39.133L38.145-39.133Q38.344-39.109 38.395-38.902L38.395-38.812Q38.344-38.597 38.145-38.574L35.297-38.574Q35.102-38.597 35.051-38.812M39.032-38.812L39.032-38.902Q39.071-39.109 39.282-39.133L39.590-39.133L39.590-42.902L39.282-42.902Q39.071-42.926 39.032-43.140L39.032-43.230Q39.071-43.437 39.282-43.461L42.489-43.461Q42.684-43.437 42.735-43.230L42.735-42.390Q42.684-42.176 42.489-42.148L42.344-42.148Q42.149-42.176 42.094-42.390L42.094-42.902L40.231-42.902L40.231-41.383L41.208-41.383L41.208-41.597Q41.258-41.804 41.458-41.832L41.602-41.832Q41.797-41.804 41.848-41.597L41.848-40.613Q41.797-40.398 41.602-40.375L41.458-40.375Q41.258-40.398 41.208-40.613L41.208-40.820L40.231-40.820L40.231-39.133L42.274-39.133L42.274-39.773Q42.325-39.980 42.520-40.008L42.665-40.008Q42.860-39.980 42.911-39.773L42.911-38.812Q42.860-38.594 42.665-38.574L39.282-38.574Q39.071-38.597 39.032-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M44.469-36.574L43.294-36.574L43.294-36.941L44.102-36.941L44.102-44.207L43.294-44.207L43.294-44.574L44.469-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M53.794-39.551L48.481-39.551Q48.403-39.558 48.354-39.607Q48.306-39.656 48.306-39.734Q48.306-39.804 48.353-39.855Q48.399-39.906 48.481-39.918L53.794-39.918Q53.868-39.906 53.915-39.855Q53.962-39.804 53.962-39.734Q53.962-39.656 53.913-39.607Q53.864-39.558 53.794-39.551M53.794-41.238L48.481-41.238Q48.403-41.246 48.354-41.295Q48.306-41.344 48.306-41.422Q48.306-41.492 48.353-41.543Q48.399-41.594 48.481-41.605L53.794-41.605Q53.868-41.594 53.915-41.543Q53.962-41.492 53.962-41.422Q53.962-41.344 53.913-41.295Q53.864-41.246 53.794-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M58.461-38.797L57.575-41.461L57.254-41.461Q57.055-41.484 57.004-41.703L57.004-41.789Q57.055-42 57.254-42.023L58.414-42.023Q58.610-42.004 58.660-41.789L58.660-41.703Q58.610-41.484 58.414-41.461L58.133-41.461L58.926-39.086L59.715-41.461L59.438-41.461Q59.239-41.484 59.188-41.703L59.188-41.789Q59.239-42 59.438-42.023L60.598-42.023Q60.793-42 60.844-41.789L60.844-41.703Q60.793-41.484 60.598-41.461L60.278-41.461L59.391-38.797Q59.348-38.683 59.246-38.609Q59.145-38.535 59.020-38.535L58.828-38.535Q58.711-38.535 58.608-38.607Q58.504-38.679 58.461-38.797M61.457-39.687Q61.457-40.133 61.871-40.390Q62.285-40.648 62.826-40.748Q63.367-40.847 63.875-40.855Q63.875-41.070 63.741-41.222Q63.606-41.375 63.399-41.451Q63.192-41.527 62.981-41.527Q62.637-41.527 62.477-41.504L62.477-41.445Q62.477-41.277 62.358-41.162Q62.239-41.047 62.075-41.047Q61.899-41.047 61.784-41.170Q61.668-41.293 61.668-41.461Q61.668-41.867 62.049-41.976Q62.430-42.086 62.989-42.086Q63.258-42.086 63.526-42.008Q63.793-41.929 64.018-41.779Q64.243-41.629 64.379-41.408Q64.516-41.187 64.516-40.910L64.516-39.191Q64.516-39.133 65.043-39.133Q65.239-39.113 65.289-38.902L65.289-38.812Q65.239-38.597 65.043-38.574L64.899-38.574Q64.555-38.574 64.326-38.621Q64.098-38.668 63.953-38.855Q63.492-38.535 62.785-38.535Q62.450-38.535 62.145-38.676Q61.840-38.816 61.649-39.078Q61.457-39.340 61.457-39.687M62.098-39.679Q62.098-39.406 62.340-39.250Q62.582-39.094 62.867-39.094Q63.086-39.094 63.319-39.152Q63.551-39.211 63.713-39.349Q63.875-39.488 63.875-39.711L63.875-40.301Q63.594-40.301 63.178-40.244Q62.762-40.187 62.430-40.049Q62.098-39.910 62.098-39.679M65.746-38.812L65.746-38.902Q65.797-39.109 65.993-39.133L67.098-39.133L67.098-42.902L65.993-42.902Q65.797-42.926 65.746-43.140L65.746-43.230Q65.797-43.437 65.993-43.461L67.489-43.461Q67.680-43.437 67.739-43.230L67.739-39.133L68.840-39.133Q69.039-39.109 69.090-38.902L69.090-38.812Q69.039-38.597 68.840-38.574L65.993-38.574Q65.797-38.597 65.746-38.812M69.774-38.812L69.774-38.902Q69.832-39.113 70.024-39.133L70.246-39.133L71.200-43.316Q71.223-43.433 71.319-43.508Q71.414-43.582 71.528-43.582L71.801-43.582Q71.914-43.582 72.010-43.506Q72.106-43.429 72.129-43.316L73.078-39.133L73.305-39.133Q73.512-39.109 73.551-38.902L73.551-38.812Q73.500-38.597 73.305-38.574L72.223-38.574Q72.028-38.597 71.977-38.812L71.977-38.902Q72.028-39.109 72.223-39.133L72.422-39.133Q72.293-39.699 72.270-39.781L71.055-39.781Q71.012-39.597 70.903-39.133L71.102-39.133Q71.301-39.109 71.352-38.902L71.352-38.812Q71.301-38.597 71.102-38.574L70.024-38.574Q69.817-38.597 69.774-38.812M71.176-40.344L72.153-40.344Q71.672-42.476 71.672-42.820L71.664-42.820Q71.664-42.636 71.524-41.953Q71.383-41.269 71.176-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 45.931h230.467\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M13.812-38.533L12.260-42.864Q12.198-43.007 12.036-43.041Q11.874-43.075 11.621-43.075L11.621-43.356L13.548-43.356L13.548-43.075Q12.967-43.075 12.967-42.901Q12.967-42.881 12.974-42.864L14.198-39.428L15.305-42.515L15.179-42.864Q15.121-43.007 14.955-43.041Q14.789-43.075 14.540-43.075L14.540-43.356L16.467-43.356L16.467-43.075Q15.886-43.075 15.886-42.901L15.886-42.864L17.117-39.428L18.272-42.676Q18.286-42.717 18.286-42.741Q18.286-42.915 18.093-42.995Q17.899-43.075 17.691-43.075L17.691-43.356L19.267-43.356L19.267-43.075Q19.017-43.075 18.826-42.981Q18.634-42.887 18.559-42.676L17.076-38.533Q17.042-38.434 16.942-38.434L16.864-38.434Q16.765-38.434 16.724-38.533L15.445-42.122L14.164-38.533Q14.147-38.489 14.109-38.461Q14.071-38.434 14.023-38.434L13.945-38.434Q13.853-38.434 13.812-38.533\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M20.893-38.574L19.157-38.574L19.157-38.854Q19.386-38.854 19.535-38.888Q19.683-38.923 19.683-39.063L19.683-40.912Q19.683-41.182 19.576-41.243Q19.468-41.305 19.157-41.305L19.157-41.585L20.186-41.660L20.186-40.953Q20.316-41.261 20.558-41.460Q20.801-41.660 21.119-41.660Q21.338-41.660 21.509-41.536Q21.680-41.411 21.680-41.199Q21.680-41.062 21.580-40.963Q21.481-40.864 21.348-40.864Q21.211-40.864 21.112-40.963Q21.013-41.062 21.013-41.199Q21.013-41.339 21.112-41.438Q20.822-41.438 20.622-41.242Q20.422-41.045 20.329-40.751Q20.237-40.457 20.237-40.177L20.237-39.063Q20.237-38.854 20.893-38.854L20.893-38.574M23.881-38.574L22.329-38.574L22.329-38.854Q22.555-38.854 22.703-38.888Q22.852-38.923 22.852-39.063L22.852-40.912Q22.852-41.100 22.804-41.184Q22.756-41.267 22.659-41.286Q22.561-41.305 22.350-41.305L22.350-41.585L23.406-41.660L23.406-39.063Q23.406-38.923 23.537-38.888Q23.669-38.854 23.881-38.854L23.881-38.574M22.609-42.881Q22.609-43.052 22.732-43.171Q22.855-43.291 23.026-43.291Q23.194-43.291 23.317-43.171Q23.440-43.052 23.440-42.881Q23.440-42.706 23.317-42.583Q23.194-42.460 23.026-42.460Q22.855-42.460 22.732-42.583Q22.609-42.706 22.609-42.881M25.053-39.415L25.053-41.312L24.414-41.312L24.414-41.534Q24.732-41.534 24.949-41.744Q25.166-41.954 25.267-42.264Q25.368-42.573 25.368-42.881L25.634-42.881L25.634-41.592L26.711-41.592L26.711-41.312L25.634-41.312L25.634-39.428Q25.634-39.152 25.738-38.953Q25.843-38.755 26.102-38.755Q26.260-38.755 26.366-38.859Q26.472-38.964 26.521-39.117Q26.571-39.271 26.571-39.428L26.571-39.842L26.837-39.842L26.837-39.415Q26.837-39.189 26.738-38.979Q26.639-38.769 26.454-38.637Q26.270-38.506 26.041-38.506Q25.603-38.506 25.328-38.743Q25.053-38.981 25.053-39.415M27.606-40.109Q27.606-40.430 27.731-40.719Q27.856-41.008 28.081-41.231Q28.307-41.455 28.603-41.575Q28.898-41.695 29.216-41.695Q29.544-41.695 29.806-41.595Q30.067-41.496 30.243-41.314Q30.419-41.131 30.513-40.873Q30.607-40.615 30.607-40.283Q30.607-40.191 30.525-40.170L28.269-40.170L28.269-40.109Q28.269-39.521 28.553-39.138Q28.837-38.755 29.404-38.755Q29.725-38.755 29.994-38.948Q30.262-39.141 30.351-39.456Q30.358-39.497 30.433-39.511L30.525-39.511Q30.607-39.487 30.607-39.415Q30.607-39.408 30.600-39.381Q30.488-38.984 30.117-38.745Q29.746-38.506 29.322-38.506Q28.885-38.506 28.485-38.714Q28.085-38.923 27.846-39.290Q27.606-39.657 27.606-40.109M28.276-40.379L30.091-40.379Q30.091-40.656 29.994-40.908Q29.896-41.161 29.698-41.317Q29.500-41.472 29.216-41.472Q28.939-41.472 28.726-41.314Q28.512-41.155 28.394-40.900Q28.276-40.645 28.276-40.379M33.079-39.828L31.021-39.828L31.021-40.331L33.079-40.331L33.079-39.828M34.688-38.574L34.422-38.574L34.422-42.682Q34.422-42.952 34.314-43.014Q34.206-43.075 33.895-43.075L33.895-43.356L34.975-43.431L34.975-41.261Q35.184-41.452 35.469-41.556Q35.755-41.660 36.052-41.660Q36.370-41.660 36.667-41.539Q36.965-41.418 37.187-41.202Q37.409-40.987 37.536-40.702Q37.662-40.416 37.662-40.085Q37.662-39.640 37.423-39.276Q37.183-38.912 36.790-38.709Q36.397-38.506 35.953-38.506Q35.758-38.506 35.569-38.562Q35.379-38.618 35.218-38.723Q35.058-38.827 34.917-38.988L34.688-38.574M35.003-40.919L35.003-39.302Q35.140-39.042 35.381-38.885Q35.621-38.728 35.898-38.728Q36.192-38.728 36.404-38.835Q36.616-38.943 36.749-39.135Q36.883-39.326 36.941-39.565Q36.999-39.804 36.999-40.085Q36.999-40.444 36.905-40.748Q36.811-41.052 36.584-41.245Q36.356-41.438 35.991-41.438Q35.690-41.438 35.423-41.302Q35.157-41.165 35.003-40.919M38.356-39.302Q38.356-39.634 38.580-39.861Q38.804-40.088 39.147-40.216Q39.491-40.345 39.863-40.397Q40.236-40.450 40.540-40.450L40.540-40.703Q40.540-40.908 40.432-41.088Q40.325-41.267 40.143-41.370Q39.962-41.472 39.754-41.472Q39.347-41.472 39.111-41.380Q39.200-41.343 39.246-41.259Q39.292-41.175 39.292-41.073Q39.292-40.977 39.246-40.898Q39.200-40.820 39.120-40.775Q39.039-40.731 38.951-40.731Q38.800-40.731 38.699-40.828Q38.599-40.926 38.599-41.073Q38.599-41.695 39.754-41.695Q39.966-41.695 40.215-41.631Q40.465-41.568 40.666-41.449Q40.868-41.329 40.995-41.144Q41.121-40.960 41.121-40.717L41.121-39.141Q41.121-39.025 41.183-38.929Q41.244-38.834 41.357-38.834Q41.466-38.834 41.531-38.928Q41.596-39.022 41.596-39.141L41.596-39.589L41.863-39.589L41.863-39.141Q41.863-38.871 41.635-38.706Q41.408-38.540 41.128-38.540Q40.919-38.540 40.783-38.694Q40.646-38.847 40.622-39.063Q40.475-38.796 40.193-38.651Q39.911-38.506 39.586-38.506Q39.309-38.506 39.026-38.581Q38.742-38.656 38.549-38.835Q38.356-39.015 38.356-39.302M38.971-39.302Q38.971-39.128 39.072-38.998Q39.173-38.868 39.328-38.798Q39.484-38.728 39.648-38.728Q39.867-38.728 40.075-38.825Q40.284-38.923 40.412-39.104Q40.540-39.285 40.540-39.511L40.540-40.239Q40.215-40.239 39.850-40.148Q39.484-40.057 39.227-39.845Q38.971-39.634 38.971-39.302M42.280-40.085Q42.280-40.413 42.415-40.714Q42.550-41.014 42.786-41.235Q43.021-41.455 43.326-41.575Q43.630-41.695 43.954-41.695Q44.460-41.695 44.809-41.592Q45.158-41.490 45.158-41.114Q45.158-40.967 45.060-40.866Q44.963-40.765 44.816-40.765Q44.662-40.765 44.563-40.864Q44.464-40.963 44.464-41.114Q44.464-41.302 44.604-41.394Q44.402-41.445 43.961-41.445Q43.606-41.445 43.377-41.249Q43.148-41.052 43.047-40.743Q42.946-40.433 42.946-40.085Q42.946-39.736 43.073-39.430Q43.199-39.124 43.454-38.940Q43.708-38.755 44.064-38.755Q44.286-38.755 44.471-38.839Q44.655-38.923 44.790-39.078Q44.925-39.234 44.983-39.442Q44.997-39.497 45.052-39.497L45.164-39.497Q45.195-39.497 45.217-39.473Q45.240-39.449 45.240-39.415L45.240-39.394Q45.154-39.107 44.966-38.909Q44.778-38.711 44.513-38.608Q44.248-38.506 43.954-38.506Q43.524-38.506 43.136-38.712Q42.748-38.919 42.514-39.282Q42.280-39.644 42.280-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M47.247-38.574L45.664-38.574L45.664-38.854Q45.893-38.854 46.042-38.888Q46.190-38.923 46.190-39.063L46.190-42.682Q46.190-42.952 46.083-43.014Q45.975-43.075 45.664-43.075L45.664-43.356L46.744-43.431L46.744-40.143L47.729-40.912Q47.934-41.049 47.934-41.199Q47.934-41.243 47.893-41.278Q47.852-41.312 47.807-41.312L47.807-41.592L49.171-41.592L49.171-41.312Q48.682-41.312 48.163-40.912L47.606-40.478L48.583-39.254Q48.785-39.008 48.918-38.931Q49.051-38.854 49.338-38.854L49.338-38.574L47.906-38.574L47.906-38.854Q48.094-38.854 48.094-38.967Q48.094-39.063 47.940-39.254L47.206-40.163L46.724-39.784L46.724-39.063Q46.724-38.926 46.872-38.890Q47.021-38.854 47.247-38.854\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M14.044-38.574L11.907-38.574Q11.872-38.574 11.841-38.615Q11.810-38.656 11.810-38.703L11.833-38.804Q11.845-38.855 11.931-38.871Q12.372-38.871 12.530-38.910Q12.689-38.949 12.732-39.176L13.810-43.496Q13.833-43.566 13.833-43.629Q13.833-43.691 13.771-43.711Q13.626-43.742 13.204-43.742Q13.099-43.769 13.099-43.871L13.130-43.972Q13.138-44.019 13.220-44.039L15.732-44.039Q16.138-44.039 16.581-43.916Q17.024-43.793 17.329-43.517Q17.634-43.242 17.634-42.820Q17.634-42.433 17.364-42.117Q17.095-41.801 16.696-41.592Q16.298-41.383 15.923-41.293Q16.232-41.168 16.429-40.929Q16.626-40.691 16.626-40.375Q16.626-40.332 16.624-40.304Q16.622-40.277 16.618-40.246L16.540-39.551Q16.509-39.261 16.509-39.140Q16.509-38.926 16.577-38.795Q16.646-38.664 16.853-38.664Q17.107-38.664 17.302-38.888Q17.497-39.113 17.564-39.390Q17.571-39.437 17.657-39.453L17.739-39.453Q17.833-39.426 17.833-39.344Q17.833-39.336 17.825-39.301Q17.774-39.086 17.630-38.875Q17.485-38.664 17.278-38.535Q17.071-38.406 16.845-38.406Q16.540-38.406 16.271-38.492Q16.001-38.578 15.829-38.777Q15.657-38.976 15.657-39.285Q15.657-39.394 15.700-39.574L15.876-40.269Q15.899-40.390 15.899-40.484Q15.899-40.820 15.638-41.002Q15.376-41.183 15.013-41.183L13.962-41.183L13.442-39.117Q13.427-39.023 13.427-38.980Q13.427-38.941 13.440-38.928Q13.454-38.914 13.489-38.902Q13.634-38.871 14.060-38.871Q14.153-38.844 14.153-38.750L14.130-38.644Q14.122-38.594 14.044-38.574M14.524-43.437L14.028-41.437L14.970-41.437Q15.314-41.437 15.630-41.506Q15.946-41.574 16.220-41.742Q16.407-41.867 16.544-42.068Q16.681-42.269 16.749-42.502Q16.817-42.734 16.817-42.957Q16.817-43.414 16.450-43.578Q16.083-43.742 15.548-43.742L14.931-43.742Q14.759-43.742 14.696-43.728Q14.634-43.715 14.601-43.656Q14.567-43.597 14.524-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M20.038-36.574L18.862-36.574L18.862-44.574L20.038-44.574L20.038-44.207L19.229-44.207L19.229-36.941L20.038-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M21.416-38.308Q21.416-38.371 21.447-38.414L25.193-43.672Q24.736-43.437 24.169-43.437Q23.517-43.437 22.912-43.758Q23.056-43.410 23.056-42.965Q23.056-42.605 22.935-42.234Q22.814-41.863 22.564-41.607Q22.314-41.351 21.951-41.351Q21.564-41.351 21.281-41.595Q20.998-41.840 20.851-42.213Q20.705-42.586 20.705-42.965Q20.705-43.344 20.851-43.715Q20.998-44.086 21.281-44.330Q21.564-44.574 21.951-44.574Q22.267-44.574 22.537-44.336Q22.873-44.031 23.302-43.859Q23.732-43.687 24.169-43.687Q24.662-43.687 25.080-43.900Q25.498-44.113 25.798-44.511Q25.841-44.574 25.935-44.574Q26.009-44.574 26.064-44.519Q26.119-44.465 26.119-44.390Q26.119-44.328 26.087-44.285L21.744-38.191Q21.697-38.125 21.599-38.125Q21.517-38.125 21.466-38.176Q21.416-38.226 21.416-38.308M21.951-41.605Q22.224-41.605 22.412-41.830Q22.599-42.054 22.687-42.377Q22.775-42.699 22.775-42.965Q22.775-43.222 22.687-43.545Q22.599-43.867 22.412-44.092Q22.224-44.316 21.951-44.316Q21.564-44.316 21.421-43.888Q21.279-43.461 21.279-42.965Q21.279-42.457 21.419-42.031Q21.560-41.605 21.951-41.605M25.728-38.125Q25.341-38.125 25.058-38.371Q24.775-38.617 24.627-38.990Q24.478-39.363 24.478-39.742Q24.478-40.015 24.564-40.303Q24.650-40.590 24.804-40.824Q24.959-41.058 25.195-41.205Q25.431-41.351 25.728-41.351Q26.009-41.351 26.216-41.199Q26.423-41.047 26.562-40.804Q26.701-40.562 26.767-40.281Q26.834-40 26.834-39.742Q26.834-39.383 26.712-39.010Q26.591-38.636 26.341-38.381Q26.091-38.125 25.728-38.125M25.728-38.383Q26.002-38.383 26.189-38.607Q26.377-38.832 26.464-39.154Q26.552-39.476 26.552-39.742Q26.552-40 26.464-40.322Q26.377-40.644 26.189-40.869Q26.002-41.094 25.728-41.094Q25.337-41.094 25.197-40.664Q25.056-40.234 25.056-39.742Q25.056-39.234 25.193-38.808Q25.330-38.383 25.728-38.383\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M27.538-38.812L27.538-38.902Q27.596-39.109 27.788-39.133L28.499-39.133L28.499-41.461L27.788-41.461Q27.592-41.484 27.538-41.703L27.538-41.789Q27.596-42 27.788-42.023L28.889-42.023Q29.088-42.004 29.139-41.789L29.139-41.461Q29.401-41.746 29.756-41.904Q30.112-42.062 30.499-42.062Q30.792-42.062 31.026-41.928Q31.260-41.793 31.260-41.527Q31.260-41.359 31.151-41.242Q31.042-41.125 30.874-41.125Q30.721-41.125 30.606-41.236Q30.491-41.347 30.491-41.504Q30.116-41.504 29.801-41.303Q29.487-41.101 29.313-40.767Q29.139-40.433 29.139-40.054L29.139-39.133L30.085-39.133Q30.292-39.109 30.331-38.902L30.331-38.812Q30.292-38.597 30.085-38.574L27.788-38.574Q27.596-38.597 27.538-38.812M32.147-38.773L32.147-39.687Q32.174-39.894 32.385-39.918L32.553-39.918Q32.717-39.894 32.776-39.734Q32.979-39.094 33.706-39.094Q33.913-39.094 34.141-39.129Q34.370-39.164 34.538-39.279Q34.706-39.394 34.706-39.597Q34.706-39.808 34.483-39.922Q34.260-40.035 33.987-40.078L33.288-40.191Q32.147-40.402 32.147-41.125Q32.147-41.414 32.292-41.603Q32.436-41.793 32.676-41.900Q32.917-42.008 33.172-42.047Q33.428-42.086 33.706-42.086Q33.956-42.086 34.149-42.056Q34.342-42.027 34.506-41.949Q34.585-42.066 34.713-42.086L34.792-42.086Q34.889-42.074 34.952-42.011Q35.014-41.949 35.026-41.855L35.026-41.148Q35.014-41.054 34.952-40.988Q34.889-40.922 34.792-40.910L34.624-40.910Q34.530-40.922 34.463-40.988Q34.397-41.054 34.385-41.148Q34.385-41.527 33.690-41.527Q33.342-41.527 33.024-41.445Q32.706-41.363 32.706-41.117Q32.706-40.851 33.377-40.742L34.081-40.621Q34.565-40.539 34.915-40.291Q35.264-40.043 35.264-39.597Q35.264-39.207 35.028-38.965Q34.792-38.722 34.442-38.629Q34.092-38.535 33.706-38.535Q33.127-38.535 32.729-38.789Q32.659-38.664 32.610-38.607Q32.561-38.551 32.456-38.535L32.385-38.535Q32.170-38.558 32.147-38.773M35.877-37.031L35.877-37.117Q35.920-37.336 36.127-37.359L36.549-37.359L36.549-41.461L36.127-41.461Q35.920-41.484 35.877-41.703L35.877-41.789Q35.924-42 36.127-42.023L36.944-42.023Q37.139-42.004 37.190-41.789L37.190-41.719Q37.401-41.886 37.665-41.974Q37.928-42.062 38.198-42.062Q38.538-42.062 38.835-41.918Q39.131-41.773 39.346-41.521Q39.561-41.269 39.676-40.957Q39.792-40.644 39.792-40.301Q39.792-39.836 39.565-39.426Q39.338-39.015 38.952-38.775Q38.565-38.535 38.096-38.535Q37.577-38.535 37.190-38.902L37.190-37.359L37.616-37.359Q37.823-37.336 37.862-37.117L37.862-37.031Q37.823-36.820 37.616-36.797L36.127-36.797Q35.924-36.820 35.877-37.031M38.053-39.094Q38.362-39.094 38.612-39.263Q38.862-39.433 39.006-39.715Q39.151-39.996 39.151-40.301Q39.151-40.590 39.026-40.869Q38.901-41.148 38.669-41.326Q38.436-41.504 38.135-41.504Q37.815-41.504 37.553-41.318Q37.292-41.133 37.190-40.832L37.190-39.980Q37.280-39.613 37.501-39.353Q37.721-39.094 38.053-39.094\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M41.424-36.574L40.249-36.574L40.249-36.941L41.057-36.941L41.057-44.207L40.249-44.207L40.249-44.574L41.424-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M50.748-39.551L45.435-39.551Q45.357-39.558 45.308-39.607Q45.260-39.656 45.260-39.734Q45.260-39.804 45.307-39.855Q45.353-39.906 45.435-39.918L50.748-39.918Q50.822-39.906 50.869-39.855Q50.916-39.804 50.916-39.734Q50.916-39.656 50.867-39.607Q50.818-39.558 50.748-39.551M50.748-41.238L45.435-41.238Q45.357-41.246 45.308-41.295Q45.260-41.344 45.260-41.422Q45.260-41.492 45.307-41.543Q45.353-41.594 45.435-41.605L50.748-41.605Q50.822-41.594 50.869-41.543Q50.916-41.492 50.916-41.422Q50.916-41.344 50.867-41.295Q50.818-41.246 50.748-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M55.416-38.797L54.530-41.461L54.209-41.461Q54.010-41.484 53.959-41.703L53.959-41.789Q54.010-42 54.209-42.023L55.369-42.023Q55.565-42.004 55.615-41.789L55.615-41.703Q55.565-41.484 55.369-41.461L55.088-41.461L55.881-39.086L56.670-41.461L56.393-41.461Q56.194-41.484 56.143-41.703L56.143-41.789Q56.194-42 56.393-42.023L57.553-42.023Q57.748-42 57.799-41.789L57.799-41.703Q57.748-41.484 57.553-41.461L57.233-41.461L56.346-38.797Q56.303-38.683 56.201-38.609Q56.100-38.535 55.975-38.535L55.783-38.535Q55.666-38.535 55.563-38.607Q55.459-38.679 55.416-38.797M58.412-39.687Q58.412-40.133 58.826-40.390Q59.240-40.648 59.781-40.748Q60.322-40.847 60.830-40.855Q60.830-41.070 60.696-41.222Q60.561-41.375 60.354-41.451Q60.147-41.527 59.936-41.527Q59.592-41.527 59.432-41.504L59.432-41.445Q59.432-41.277 59.313-41.162Q59.194-41.047 59.030-41.047Q58.854-41.047 58.739-41.170Q58.623-41.293 58.623-41.461Q58.623-41.867 59.004-41.976Q59.385-42.086 59.944-42.086Q60.213-42.086 60.481-42.008Q60.748-41.929 60.973-41.779Q61.197-41.629 61.334-41.408Q61.471-41.187 61.471-40.910L61.471-39.191Q61.471-39.133 61.998-39.133Q62.194-39.113 62.244-38.902L62.244-38.812Q62.194-38.597 61.998-38.574L61.854-38.574Q61.510-38.574 61.281-38.621Q61.053-38.668 60.908-38.855Q60.447-38.535 59.740-38.535Q59.405-38.535 59.100-38.676Q58.795-38.816 58.604-39.078Q58.412-39.340 58.412-39.687M59.053-39.679Q59.053-39.406 59.295-39.250Q59.537-39.094 59.822-39.094Q60.041-39.094 60.274-39.152Q60.506-39.211 60.668-39.349Q60.830-39.488 60.830-39.711L60.830-40.301Q60.549-40.301 60.133-40.244Q59.717-40.187 59.385-40.049Q59.053-39.910 59.053-39.679M62.701-38.812L62.701-38.902Q62.752-39.109 62.947-39.133L64.053-39.133L64.053-42.902L62.947-42.902Q62.752-42.926 62.701-43.140L62.701-43.230Q62.752-43.437 62.947-43.461L64.444-43.461Q64.635-43.437 64.694-43.230L64.694-39.133L65.795-39.133Q65.994-39.109 66.045-38.902L66.045-38.812Q65.994-38.597 65.795-38.574L62.947-38.574Q62.752-38.597 62.701-38.812M66.682-38.812L66.682-38.902Q66.721-39.109 66.932-39.133L67.240-39.133L67.240-42.902L66.932-42.902Q66.721-42.926 66.682-43.140L66.682-43.230Q66.721-43.437 66.932-43.461L70.139-43.461Q70.334-43.437 70.385-43.230L70.385-42.390Q70.334-42.176 70.139-42.148L69.994-42.148Q69.799-42.176 69.744-42.390L69.744-42.902L67.881-42.902L67.881-41.383L68.858-41.383L68.858-41.597Q68.908-41.804 69.108-41.832L69.252-41.832Q69.447-41.804 69.498-41.597L69.498-40.613Q69.447-40.398 69.252-40.375L69.108-40.375Q68.908-40.398 68.858-40.613L68.858-40.820L67.881-40.820L67.881-39.133L69.924-39.133L69.924-39.773Q69.975-39.980 70.170-40.008L70.315-40.008Q70.510-39.980 70.561-39.773L70.561-38.812Q70.510-38.594 70.315-38.574L66.932-38.574Q66.721-38.597 66.682-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 70.116h230.467\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M13.945-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.478-43.356Q14.888-43.356 15.309-43.202Q15.729-43.048 16.013-42.744Q16.296-42.440 16.296-42.026Q16.296-41.708 16.129-41.462Q15.961-41.216 15.685-41.050Q15.408-40.885 15.086-40.801Q14.765-40.717 14.478-40.717L13.224-40.717L13.224-39.063Q13.224-38.854 13.945-38.854L13.945-38.574M13.196-42.864L13.196-40.967L14.283-40.967Q14.892-40.967 15.206-41.204Q15.521-41.442 15.521-42.026Q15.521-42.419 15.375-42.653Q15.230-42.887 14.958-42.981Q14.687-43.075 14.283-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.277-40.967Q17.277-41.493 17.494-41.961Q17.711-42.429 18.094-42.775Q18.477-43.120 18.961-43.308Q19.444-43.496 19.974-43.496Q20.377-43.496 20.742-43.339Q21.106-43.181 21.389-42.887L21.813-43.469Q21.847-43.496 21.871-43.496L21.919-43.496Q21.950-43.496 21.974-43.472Q21.998-43.448 21.998-43.417L21.998-41.554Q21.998-41.531 21.972-41.505Q21.946-41.479 21.919-41.479L21.793-41.479Q21.731-41.479 21.717-41.554Q21.687-41.869 21.552-42.173Q21.417-42.477 21.201-42.711Q20.986-42.946 20.697-43.081Q20.408-43.216 20.080-43.216Q19.438-43.216 18.980-42.922Q18.522-42.628 18.289-42.115Q18.057-41.602 18.057-40.967Q18.057-40.495 18.187-40.086Q18.316-39.678 18.576-39.365Q18.836-39.053 19.215-38.883Q19.595-38.714 20.087-38.714Q20.415-38.714 20.709-38.830Q21.003-38.947 21.237-39.162Q21.471-39.377 21.601-39.666Q21.731-39.955 21.731-40.283Q21.731-40.310 21.758-40.334Q21.786-40.358 21.806-40.358L21.919-40.358Q21.957-40.358 21.977-40.333Q21.998-40.307 21.998-40.269Q21.998-39.873 21.832-39.536Q21.666-39.199 21.379-38.952Q21.092-38.704 20.723-38.569Q20.354-38.434 19.974-38.434Q19.455-38.434 18.962-38.624Q18.470-38.813 18.091-39.157Q17.711-39.500 17.494-39.969Q17.277-40.437 17.277-40.967\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M26.086-39.408L26.086-40.912Q26.086-41.182 25.978-41.243Q25.870-41.305 25.559-41.305L25.559-41.585L26.667-41.660L26.667-39.428L26.667-39.408Q26.667-39.128 26.718-38.984Q26.769-38.841 26.911-38.784Q27.053-38.728 27.340-38.728Q27.593-38.728 27.798-38.868Q28.003-39.008 28.119-39.234Q28.236-39.459 28.236-39.709L28.236-40.912Q28.236-41.182 28.128-41.243Q28.020-41.305 27.709-41.305L27.709-41.585L28.817-41.660L28.817-39.247Q28.817-39.056 28.870-38.974Q28.923-38.892 29.023-38.873Q29.124-38.854 29.340-38.854L29.340-38.574L28.263-38.506L28.263-39.070Q28.154-38.888 28.008-38.765Q27.863-38.642 27.677-38.574Q27.490-38.506 27.289-38.506Q26.086-38.506 26.086-39.408M31.572-37.217L29.941-37.217L29.941-37.497Q30.170-37.497 30.319-37.532Q30.468-37.566 30.468-37.706L30.468-41.052Q30.468-41.223 30.331-41.264Q30.194-41.305 29.941-41.305L29.941-41.585L31.021-41.660L31.021-41.254Q31.243-41.455 31.530-41.558Q31.818-41.660 32.125-41.660Q32.552-41.660 32.916-41.447Q33.280-41.233 33.494-40.869Q33.708-40.505 33.708-40.085Q33.708-39.640 33.468-39.276Q33.229-38.912 32.836-38.709Q32.443-38.506 31.999-38.506Q31.732-38.506 31.484-38.606Q31.237-38.707 31.049-38.888L31.049-37.706Q31.049-37.569 31.197-37.533Q31.346-37.497 31.572-37.497L31.572-37.217M31.049-40.905L31.049-39.295Q31.182-39.042 31.425-38.885Q31.667-38.728 31.944-38.728Q32.272-38.728 32.525-38.929Q32.778-39.131 32.911-39.449Q33.045-39.767 33.045-40.085Q33.045-40.314 32.980-40.543Q32.915-40.772 32.787-40.970Q32.658-41.168 32.464-41.288Q32.269-41.407 32.036-41.407Q31.742-41.407 31.474-41.278Q31.206-41.148 31.049-40.905\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M34.559-40.085Q34.559-40.423 34.700-40.714Q34.840-41.004 35.084-41.218Q35.328-41.431 35.633-41.546Q35.937-41.660 36.262-41.660Q36.532-41.660 36.795-41.561Q37.058-41.462 37.249-41.284L37.249-42.682Q37.249-42.952 37.142-43.014Q37.034-43.075 36.723-43.075L36.723-43.356L37.800-43.431L37.800-39.247Q37.800-39.059 37.854-38.976Q37.909-38.892 38.010-38.873Q38.111-38.854 38.326-38.854L38.326-38.574L37.219-38.506L37.219-38.923Q36.802-38.506 36.176-38.506Q35.745-38.506 35.373-38.718Q35-38.929 34.780-39.290Q34.559-39.651 34.559-40.085M36.234-38.728Q36.443-38.728 36.629-38.800Q36.815-38.871 36.969-39.008Q37.123-39.145 37.219-39.323L37.219-40.932Q37.133-41.079 36.988-41.199Q36.843-41.319 36.673-41.378Q36.504-41.438 36.323-41.438Q35.763-41.438 35.494-41.049Q35.226-40.659 35.226-40.078Q35.226-39.507 35.460-39.117Q35.694-38.728 36.234-38.728M39.034-39.302Q39.034-39.634 39.257-39.861Q39.481-40.088 39.825-40.216Q40.168-40.345 40.541-40.397Q40.913-40.450 41.218-40.450L41.218-40.703Q41.218-40.908 41.110-41.088Q41.002-41.267 40.821-41.370Q40.640-41.472 40.432-41.472Q40.025-41.472 39.789-41.380Q39.878-41.343 39.924-41.259Q39.970-41.175 39.970-41.073Q39.970-40.977 39.924-40.898Q39.878-40.820 39.797-40.775Q39.717-40.731 39.628-40.731Q39.478-40.731 39.377-40.828Q39.276-40.926 39.276-41.073Q39.276-41.695 40.432-41.695Q40.643-41.695 40.893-41.631Q41.142-41.568 41.344-41.449Q41.546-41.329 41.672-41.144Q41.799-40.960 41.799-40.717L41.799-39.141Q41.799-39.025 41.860-38.929Q41.922-38.834 42.035-38.834Q42.144-38.834 42.209-38.928Q42.274-39.022 42.274-39.141L42.274-39.589L42.540-39.589L42.540-39.141Q42.540-38.871 42.313-38.706Q42.086-38.540 41.806-38.540Q41.597-38.540 41.460-38.694Q41.324-38.847 41.300-39.063Q41.153-38.796 40.871-38.651Q40.589-38.506 40.264-38.506Q39.987-38.506 39.703-38.581Q39.420-38.656 39.227-38.835Q39.034-39.015 39.034-39.302M39.649-39.302Q39.649-39.128 39.750-38.998Q39.850-38.868 40.006-38.798Q40.162-38.728 40.326-38.728Q40.544-38.728 40.753-38.825Q40.961-38.923 41.089-39.104Q41.218-39.285 41.218-39.511L41.218-40.239Q40.893-40.239 40.527-40.148Q40.162-40.057 39.905-39.845Q39.649-39.634 39.649-39.302M43.484-39.415L43.484-41.312L42.845-41.312L42.845-41.534Q43.162-41.534 43.380-41.744Q43.597-41.954 43.697-42.264Q43.798-42.573 43.798-42.881L44.065-42.881L44.065-41.592L45.141-41.592L45.141-41.312L44.065-41.312L44.065-39.428Q44.065-39.152 44.169-38.953Q44.273-38.755 44.533-38.755Q44.690-38.755 44.796-38.859Q44.902-38.964 44.952-39.117Q45.001-39.271 45.001-39.428L45.001-39.842L45.268-39.842L45.268-39.415Q45.268-39.189 45.169-38.979Q45.070-38.769 44.885-38.637Q44.701-38.506 44.472-38.506Q44.034-38.506 43.759-38.743Q43.484-38.981 43.484-39.415M46.037-40.109Q46.037-40.430 46.162-40.719Q46.287-41.008 46.512-41.231Q46.738-41.455 47.033-41.575Q47.329-41.695 47.647-41.695Q47.975-41.695 48.236-41.595Q48.498-41.496 48.674-41.314Q48.850-41.131 48.944-40.873Q49.038-40.615 49.038-40.283Q49.038-40.191 48.956-40.170L46.700-40.170L46.700-40.109Q46.700-39.521 46.984-39.138Q47.267-38.755 47.835-38.755Q48.156-38.755 48.424-38.948Q48.693-39.141 48.782-39.456Q48.788-39.497 48.864-39.511L48.956-39.511Q49.038-39.487 49.038-39.415Q49.038-39.408 49.031-39.381Q48.918-38.984 48.547-38.745Q48.177-38.506 47.753-38.506Q47.315-38.506 46.915-38.714Q46.516-38.923 46.276-39.290Q46.037-39.657 46.037-40.109M46.707-40.379L48.522-40.379Q48.522-40.656 48.424-40.908Q48.327-41.161 48.129-41.317Q47.931-41.472 47.647-41.472Q47.370-41.472 47.156-41.314Q46.943-41.155 46.825-40.900Q46.707-40.645 46.707-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M11.603-38.812L11.603-38.902Q11.642-39.109 11.853-39.133L12.161-39.133L12.161-42.902L11.853-42.902Q11.642-42.926 11.603-43.140L11.603-43.230Q11.642-43.437 11.853-43.461L13.802-43.461Q14.200-43.461 14.546-43.260Q14.892-43.058 15.099-42.713Q15.306-42.367 15.306-41.965Q15.306-41.558 15.101-41.215Q14.896-40.871 14.550-40.666Q14.204-40.461 13.802-40.461L12.802-40.461L12.802-39.133L13.114-39.133Q13.325-39.109 13.364-38.902L13.364-38.812Q13.325-38.597 13.114-38.574L11.853-38.574Q11.642-38.597 11.603-38.812M12.802-42.902L12.802-41.023L13.642-41.023Q13.903-41.023 14.140-41.146Q14.376-41.269 14.521-41.484Q14.665-41.699 14.665-41.965Q14.665-42.234 14.521-42.445Q14.376-42.656 14.140-42.779Q13.903-42.902 13.642-42.902L12.802-42.902M17.931-38.496Q17.482-38.496 17.116-38.720Q16.751-38.945 16.497-39.328Q16.243-39.711 16.118-40.154Q15.993-40.597 15.993-41.023Q15.993-41.449 16.118-41.888Q16.243-42.328 16.497-42.711Q16.751-43.094 17.110-43.318Q17.470-43.543 17.931-43.543Q18.208-43.543 18.466-43.451Q18.724-43.359 18.939-43.191L19.071-43.429Q19.099-43.480 19.153-43.511Q19.208-43.543 19.267-43.543L19.345-43.543Q19.439-43.531 19.501-43.472Q19.564-43.414 19.575-43.308L19.575-41.980Q19.564-41.879 19.501-41.816Q19.439-41.754 19.345-41.742L19.177-41.742Q19.075-41.754 19.013-41.820Q18.950-41.886 18.939-41.980Q18.899-42.246 18.776-42.470Q18.653-42.695 18.450-42.838Q18.247-42.980 17.985-42.980Q17.653-42.980 17.401-42.797Q17.149-42.613 16.978-42.312Q16.806-42.011 16.720-41.670Q16.634-41.328 16.634-41.023Q16.634-40.719 16.718-40.377Q16.802-40.035 16.974-39.732Q17.146-39.429 17.403-39.242Q17.661-39.054 17.993-39.054Q18.376-39.054 18.657-39.328Q18.939-39.601 18.939-39.988Q18.966-40.199 19.177-40.222L19.345-40.222Q19.575-40.183 19.575-39.957Q19.575-39.640 19.439-39.369Q19.302-39.097 19.067-38.900Q18.833-38.703 18.542-38.599Q18.251-38.496 17.931-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M28.241-39.551L22.928-39.551Q22.850-39.558 22.801-39.607Q22.753-39.656 22.753-39.734Q22.753-39.804 22.800-39.855Q22.846-39.906 22.928-39.918L28.241-39.918Q28.315-39.906 28.362-39.855Q28.409-39.804 28.409-39.734Q28.409-39.656 28.360-39.607Q28.311-39.558 28.241-39.551M28.241-41.238L22.928-41.238Q22.850-41.246 22.801-41.295Q22.753-41.344 22.753-41.422Q22.753-41.492 22.800-41.543Q22.846-41.594 22.928-41.605L28.241-41.605Q28.315-41.594 28.362-41.543Q28.409-41.492 28.409-41.422Q28.409-41.344 28.360-41.295Q28.311-41.246 28.241-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M32.909-38.797L32.023-41.461L31.702-41.461Q31.503-41.484 31.452-41.703L31.452-41.789Q31.503-42 31.702-42.023L32.862-42.023Q33.058-42.004 33.108-41.789L33.108-41.703Q33.058-41.484 32.862-41.461L32.581-41.461L33.374-39.086L34.163-41.461L33.886-41.461Q33.687-41.484 33.636-41.703L33.636-41.789Q33.687-42 33.886-42.023L35.046-42.023Q35.241-42 35.292-41.789L35.292-41.703Q35.241-41.484 35.046-41.461L34.726-41.461L33.839-38.797Q33.796-38.683 33.694-38.609Q33.593-38.535 33.468-38.535L33.276-38.535Q33.159-38.535 33.056-38.607Q32.952-38.679 32.909-38.797M35.905-39.687Q35.905-40.133 36.319-40.390Q36.733-40.648 37.274-40.748Q37.816-40.847 38.323-40.855Q38.323-41.070 38.189-41.222Q38.054-41.375 37.847-41.451Q37.640-41.527 37.429-41.527Q37.085-41.527 36.925-41.504L36.925-41.445Q36.925-41.277 36.806-41.162Q36.687-41.047 36.523-41.047Q36.347-41.047 36.232-41.170Q36.116-41.293 36.116-41.461Q36.116-41.867 36.497-41.976Q36.878-42.086 37.437-42.086Q37.706-42.086 37.974-42.008Q38.241-41.929 38.466-41.779Q38.691-41.629 38.827-41.408Q38.964-41.187 38.964-40.910L38.964-39.191Q38.964-39.133 39.491-39.133Q39.687-39.113 39.737-38.902L39.737-38.812Q39.687-38.597 39.491-38.574L39.347-38.574Q39.003-38.574 38.774-38.621Q38.546-38.668 38.401-38.855Q37.941-38.535 37.233-38.535Q36.898-38.535 36.593-38.676Q36.288-38.816 36.097-39.078Q35.905-39.340 35.905-39.687M36.546-39.679Q36.546-39.406 36.788-39.250Q37.030-39.094 37.316-39.094Q37.534-39.094 37.767-39.152Q37.999-39.211 38.161-39.349Q38.323-39.488 38.323-39.711L38.323-40.301Q38.042-40.301 37.626-40.244Q37.210-40.187 36.878-40.049Q36.546-39.910 36.546-39.679M40.194-38.812L40.194-38.902Q40.245-39.109 40.441-39.133L41.546-39.133L41.546-42.902L40.441-42.902Q40.245-42.926 40.194-43.140L40.194-43.230Q40.245-43.437 40.441-43.461L41.937-43.461Q42.128-43.437 42.187-43.230L42.187-39.133L43.288-39.133Q43.487-39.109 43.538-38.902L43.538-38.812Q43.487-38.597 43.288-38.574L40.441-38.574Q40.245-38.597 40.194-38.812M44.175-38.812L44.175-38.902Q44.214-39.109 44.425-39.133L44.733-39.133L44.733-42.902L44.425-42.902Q44.214-42.926 44.175-43.140L44.175-43.230Q44.214-43.437 44.425-43.461L46.374-43.461Q46.773-43.461 47.118-43.260Q47.464-43.058 47.671-42.713Q47.878-42.367 47.878-41.965Q47.878-41.558 47.673-41.215Q47.468-40.871 47.122-40.666Q46.776-40.461 46.374-40.461L45.374-40.461L45.374-39.133L45.687-39.133Q45.898-39.109 45.937-38.902L45.937-38.812Q45.898-38.597 45.687-38.574L44.425-38.574Q44.214-38.597 44.175-38.812M45.374-42.902L45.374-41.023L46.214-41.023Q46.476-41.023 46.712-41.146Q46.948-41.269 47.093-41.484Q47.237-41.699 47.237-41.965Q47.237-42.234 47.093-42.445Q46.948-42.656 46.712-42.779Q46.476-42.902 46.214-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 94.3h230.467\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(199.857 -25.474)\">\u003Cpath d=\"M11.489-37.031L11.489-37.117Q11.532-37.336 11.739-37.359L12.161-37.359L12.161-41.461L11.739-41.461Q11.532-41.484 11.489-41.703L11.489-41.789Q11.536-42 11.739-42.023L12.556-42.023Q12.751-42.004 12.802-41.789L12.802-41.719Q13.013-41.886 13.276-41.974Q13.540-42.062 13.810-42.062Q14.149-42.062 14.446-41.918Q14.743-41.773 14.958-41.521Q15.173-41.269 15.288-40.957Q15.403-40.644 15.403-40.301Q15.403-39.836 15.177-39.426Q14.950-39.015 14.564-38.775Q14.177-38.535 13.708-38.535Q13.189-38.535 12.802-38.902L12.802-37.359L13.228-37.359Q13.435-37.336 13.474-37.117L13.474-37.031Q13.435-36.820 13.228-36.797L11.739-36.797Q11.536-36.820 11.489-37.031M13.665-39.094Q13.974-39.094 14.224-39.263Q14.474-39.433 14.618-39.715Q14.763-39.996 14.763-40.301Q14.763-40.590 14.638-40.869Q14.513-41.148 14.280-41.326Q14.048-41.504 13.747-41.504Q13.427-41.504 13.165-41.318Q12.903-41.133 12.802-40.832L12.802-39.980Q12.892-39.613 13.112-39.353Q13.333-39.094 13.665-39.094M17.786-38.535Q17.314-38.535 16.929-38.779Q16.544-39.023 16.321-39.433Q16.099-39.844 16.099-40.301Q16.099-40.644 16.224-40.967Q16.349-41.289 16.579-41.543Q16.810-41.797 17.116-41.941Q17.423-42.086 17.786-42.086Q18.149-42.086 18.462-41.939Q18.774-41.793 18.997-41.547Q19.220-41.301 19.347-40.980Q19.474-40.660 19.474-40.301Q19.474-39.844 19.249-39.431Q19.024-39.019 18.640-38.777Q18.255-38.535 17.786-38.535M17.786-39.094Q18.251-39.094 18.542-39.488Q18.833-39.883 18.833-40.367Q18.833-40.660 18.698-40.928Q18.564-41.195 18.323-41.361Q18.083-41.527 17.786-41.527Q17.482-41.527 17.243-41.361Q17.005-41.195 16.870-40.928Q16.735-40.660 16.735-40.367Q16.735-39.886 17.028-39.490Q17.321-39.094 17.786-39.094M19.982-37.031L19.982-37.117Q20.024-37.336 20.232-37.359L20.653-37.359L20.653-41.461L20.232-41.461Q20.024-41.484 19.982-41.703L19.982-41.789Q20.028-42 20.232-42.023L21.048-42.023Q21.243-42.004 21.294-41.789L21.294-41.719Q21.505-41.886 21.769-41.974Q22.032-42.062 22.302-42.062Q22.642-42.062 22.939-41.918Q23.235-41.773 23.450-41.521Q23.665-41.269 23.780-40.957Q23.896-40.644 23.896-40.301Q23.896-39.836 23.669-39.426Q23.442-39.015 23.056-38.775Q22.669-38.535 22.200-38.535Q21.681-38.535 21.294-38.902L21.294-37.359L21.720-37.359Q21.927-37.336 21.966-37.117L21.966-37.031Q21.927-36.820 21.720-36.797L20.232-36.797Q20.028-36.820 19.982-37.031M22.157-39.094Q22.466-39.094 22.716-39.263Q22.966-39.433 23.110-39.715Q23.255-39.996 23.255-40.301Q23.255-40.590 23.130-40.869Q23.005-41.148 22.773-41.326Q22.540-41.504 22.239-41.504Q21.919-41.504 21.657-41.318Q21.396-41.133 21.294-40.832L21.294-39.980Q21.384-39.613 21.605-39.353Q21.825-39.094 22.157-39.094M26.470-37.031L26.470-37.117Q26.521-37.336 26.716-37.359L27.181-37.359L27.181-38.957Q26.728-38.535 26.118-38.535Q25.763-38.535 25.458-38.678Q25.153-38.820 24.921-39.070Q24.689-39.320 24.564-39.642Q24.439-39.965 24.439-40.301Q24.439-40.785 24.677-41.185Q24.915-41.586 25.321-41.824Q25.728-42.062 26.204-42.062Q26.767-42.062 27.181-41.672L27.181-41.832Q27.232-42.043 27.431-42.062L27.571-42.062Q27.771-42.039 27.821-41.832L27.821-37.359L28.286-37.359Q28.482-37.336 28.532-37.117L28.532-37.031Q28.482-36.820 28.286-36.797L26.716-36.797Q26.521-36.820 26.470-37.031M26.165-39.094Q26.536-39.094 26.812-39.347Q27.087-39.601 27.181-39.965L27.181-40.582Q27.138-40.820 27.015-41.033Q26.892-41.246 26.694-41.375Q26.497-41.504 26.255-41.504Q25.939-41.504 25.667-41.338Q25.396-41.172 25.237-40.890Q25.079-40.609 25.079-40.293Q25.079-39.828 25.394-39.461Q25.708-39.094 26.165-39.094\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(199.857 -25.474)\">\u003Cpath d=\"M32.892-38.812L32.892-38.902Q32.950-39.109 33.142-39.133L33.853-39.133L33.853-41.461L33.142-41.461Q32.946-41.484 32.892-41.703L32.892-41.789Q32.950-42 33.142-42.023L34.243-42.023Q34.442-42.004 34.493-41.789L34.493-41.461Q34.755-41.746 35.110-41.904Q35.466-42.062 35.853-42.062Q36.146-42.062 36.380-41.928Q36.614-41.793 36.614-41.527Q36.614-41.359 36.505-41.242Q36.396-41.125 36.228-41.125Q36.075-41.125 35.960-41.236Q35.845-41.347 35.845-41.504Q35.470-41.504 35.155-41.303Q34.841-41.101 34.667-40.767Q34.493-40.433 34.493-40.054L34.493-39.133L35.439-39.133Q35.646-39.109 35.685-38.902L35.685-38.812Q35.646-38.597 35.439-38.574L33.142-38.574Q32.950-38.597 32.892-38.812M37.146-38.812L37.146-38.902Q37.204-39.113 37.396-39.133L37.618-39.133L38.571-43.316Q38.595-43.433 38.690-43.508Q38.786-43.582 38.899-43.582L39.173-43.582Q39.286-43.582 39.382-43.506Q39.478-43.429 39.501-43.316L40.450-39.133L40.677-39.133Q40.884-39.109 40.923-38.902L40.923-38.812Q40.872-38.597 40.677-38.574L39.595-38.574Q39.399-38.597 39.349-38.812L39.349-38.902Q39.399-39.109 39.595-39.133L39.794-39.133Q39.665-39.699 39.642-39.781L38.427-39.781Q38.384-39.597 38.274-39.133L38.474-39.133Q38.673-39.109 38.724-38.902L38.724-38.812Q38.673-38.597 38.474-38.574L37.396-38.574Q37.189-38.597 37.146-38.812M38.548-40.344L39.524-40.344Q39.044-42.476 39.044-42.820L39.036-42.820Q39.036-42.636 38.896-41.953Q38.755-41.269 38.548-40.344\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743-51.377H438.21\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(176.685 2.43)\">\u003Cpath d=\"M14.112-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L15.982-43.356L16.194-41.719L15.927-41.719Q15.849-42.330 15.697-42.609Q15.544-42.887 15.240-42.981Q14.936-43.075 14.311-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.107L13.764-41.107Q14.133-41.107 14.317-41.161Q14.502-41.216 14.581-41.389Q14.659-41.561 14.659-41.927L14.926-41.927L14.926-40.010L14.659-40.010Q14.659-40.375 14.581-40.548Q14.502-40.720 14.317-40.773Q14.133-40.826 13.764-40.826L13.210-40.826L13.210-39.063Q13.210-38.854 14.112-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(176.685 2.43)\">\u003Cpath d=\"M16.206-40.109Q16.206-40.430 16.331-40.719Q16.456-41.008 16.682-41.231Q16.907-41.455 17.203-41.575Q17.498-41.695 17.816-41.695Q18.144-41.695 18.406-41.595Q18.667-41.496 18.843-41.314Q19.019-41.131 19.113-40.873Q19.207-40.615 19.207-40.283Q19.207-40.191 19.125-40.170L16.870-40.170L16.870-40.109Q16.870-39.521 17.153-39.138Q17.437-38.755 18.004-38.755Q18.326-38.755 18.594-38.948Q18.862-39.141 18.951-39.456Q18.958-39.497 19.033-39.511L19.125-39.511Q19.207-39.487 19.207-39.415Q19.207-39.408 19.201-39.381Q19.088-38.984 18.717-38.745Q18.346-38.506 17.922-38.506Q17.485-38.506 17.085-38.714Q16.685-38.923 16.446-39.290Q16.206-39.657 16.206-40.109M16.876-40.379L18.691-40.379Q18.691-40.656 18.594-40.908Q18.496-41.161 18.298-41.317Q18.100-41.472 17.816-41.472Q17.539-41.472 17.326-41.314Q17.112-41.155 16.994-40.900Q16.876-40.645 16.876-40.379M20.322-39.415L20.322-41.312L19.683-41.312L19.683-41.534Q20-41.534 20.217-41.744Q20.434-41.954 20.535-42.264Q20.636-42.573 20.636-42.881L20.903-42.881L20.903-41.592L21.979-41.592L21.979-41.312L20.903-41.312L20.903-39.428Q20.903-39.152 21.007-38.953Q21.111-38.755 21.371-38.755Q21.528-38.755 21.634-38.859Q21.740-38.964 21.790-39.117Q21.839-39.271 21.839-39.428L21.839-39.842L22.106-39.842L22.106-39.415Q22.106-39.189 22.007-38.979Q21.908-38.769 21.723-38.637Q21.538-38.506 21.309-38.506Q20.872-38.506 20.597-38.743Q20.322-38.981 20.322-39.415M22.916-40.085Q22.916-40.413 23.051-40.714Q23.186-41.014 23.422-41.235Q23.658-41.455 23.962-41.575Q24.266-41.695 24.591-41.695Q25.097-41.695 25.445-41.592Q25.794-41.490 25.794-41.114Q25.794-40.967 25.696-40.866Q25.599-40.765 25.452-40.765Q25.298-40.765 25.199-40.864Q25.100-40.963 25.100-41.114Q25.100-41.302 25.240-41.394Q25.038-41.445 24.598-41.445Q24.242-41.445 24.013-41.249Q23.784-41.052 23.683-40.743Q23.582-40.433 23.582-40.085Q23.582-39.736 23.709-39.430Q23.835-39.124 24.090-38.940Q24.345-38.755 24.700-38.755Q24.922-38.755 25.107-38.839Q25.291-38.923 25.426-39.078Q25.561-39.234 25.620-39.442Q25.633-39.497 25.688-39.497L25.801-39.497Q25.831-39.497 25.854-39.473Q25.876-39.449 25.876-39.415L25.876-39.394Q25.790-39.107 25.602-38.909Q25.414-38.711 25.150-38.608Q24.885-38.506 24.591-38.506Q24.160-38.506 23.772-38.712Q23.384-38.919 23.150-39.282Q22.916-39.644 22.916-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(176.685 2.43)\">\u003Cpath d=\"M27.950-38.574L26.316-38.574L26.316-38.854Q26.545-38.854 26.694-38.888Q26.843-38.923 26.843-39.063L26.843-42.682Q26.843-42.952 26.735-43.014Q26.627-43.075 26.316-43.075L26.316-43.356L27.396-43.431L27.396-41.045Q27.502-41.230 27.680-41.372Q27.858-41.513 28.066-41.587Q28.275-41.660 28.500-41.660Q29.006-41.660 29.290-41.437Q29.574-41.213 29.574-40.717L29.574-39.063Q29.574-38.926 29.722-38.890Q29.871-38.854 30.097-38.854L30.097-38.574L28.466-38.574L28.466-38.854Q28.695-38.854 28.844-38.888Q28.993-38.923 28.993-39.063L28.993-40.703Q28.993-41.038 28.873-41.238Q28.753-41.438 28.439-41.438Q28.169-41.438 27.935-41.302Q27.701-41.165 27.562-40.931Q27.424-40.697 27.424-40.423L27.424-39.063Q27.424-38.926 27.574-38.890Q27.725-38.854 27.950-38.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M11.642-38.812L11.642-38.902Q11.700-39.109 11.892-39.133L12.603-39.133L12.603-41.461L11.892-41.461Q11.696-41.484 11.642-41.703L11.642-41.789Q11.700-42 11.892-42.023L12.993-42.023Q13.192-42.004 13.243-41.789L13.243-41.461Q13.505-41.746 13.860-41.904Q14.216-42.062 14.603-42.062Q14.896-42.062 15.130-41.928Q15.364-41.793 15.364-41.527Q15.364-41.359 15.255-41.242Q15.146-41.125 14.978-41.125Q14.825-41.125 14.710-41.236Q14.595-41.347 14.595-41.504Q14.220-41.504 13.905-41.303Q13.591-41.101 13.417-40.767Q13.243-40.433 13.243-40.054L13.243-39.133L14.189-39.133Q14.396-39.109 14.435-38.902L14.435-38.812Q14.396-38.597 14.189-38.574L11.892-38.574Q11.700-38.597 11.642-38.812M15.896-38.812L15.896-38.902Q15.954-39.113 16.146-39.133L16.368-39.133L17.321-43.316Q17.345-43.433 17.440-43.508Q17.536-43.582 17.649-43.582L17.923-43.582Q18.036-43.582 18.132-43.506Q18.228-43.429 18.251-43.316L19.200-39.133L19.427-39.133Q19.634-39.109 19.673-38.902L19.673-38.812Q19.622-38.597 19.427-38.574L18.345-38.574Q18.149-38.597 18.099-38.812L18.099-38.902Q18.149-39.109 18.345-39.133L18.544-39.133Q18.415-39.699 18.392-39.781L17.177-39.781Q17.134-39.597 17.024-39.133L17.224-39.133Q17.423-39.109 17.474-38.902L17.474-38.812Q17.423-38.597 17.224-38.574L16.146-38.574Q15.939-38.597 15.896-38.812M17.298-40.344L18.274-40.344Q17.794-42.476 17.794-42.820L17.786-42.820Q17.786-42.636 17.646-41.953Q17.505-41.269 17.298-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M20.638-39.039Q20.638-39.222 20.774-39.359Q20.911-39.496 21.103-39.496Q21.294-39.496 21.427-39.363Q21.560-39.230 21.560-39.039Q21.560-38.840 21.427-38.707Q21.294-38.574 21.103-38.574Q20.911-38.574 20.774-38.711Q20.638-38.847 20.638-39.039M20.638-41.566Q20.638-41.750 20.774-41.886Q20.911-42.023 21.103-42.023Q21.294-42.023 21.427-41.890Q21.560-41.758 21.560-41.566Q21.560-41.367 21.427-41.234Q21.294-41.101 21.103-41.101Q20.911-41.101 20.774-41.238Q20.638-41.375 20.638-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M22.503-38.812L22.503-38.902Q22.561-39.109 22.753-39.133L23.464-39.133L23.464-41.461L22.753-41.461Q22.557-41.484 22.503-41.703L22.503-41.789Q22.561-42 22.753-42.023L23.854-42.023Q24.053-42.004 24.104-41.789L24.104-41.461Q24.366-41.746 24.721-41.904Q25.077-42.062 25.464-42.062Q25.757-42.062 25.991-41.928Q26.225-41.793 26.225-41.527Q26.225-41.359 26.116-41.242Q26.007-41.125 25.839-41.125Q25.686-41.125 25.571-41.236Q25.456-41.347 25.456-41.504Q25.081-41.504 24.766-41.303Q24.452-41.101 24.278-40.767Q24.104-40.433 24.104-40.054L24.104-39.133L25.050-39.133Q25.257-39.109 25.296-38.902L25.296-38.812Q25.257-38.597 25.050-38.574L22.753-38.574Q22.561-38.597 22.503-38.812M26.694-38.812L26.694-38.902Q26.733-39.109 26.940-39.133L27.229-39.133L27.229-42.902L26.940-42.902Q26.733-42.926 26.694-43.140L26.694-43.230Q26.733-43.437 26.940-43.461L28.901-43.461Q29.171-43.461 29.411-43.365Q29.651-43.269 29.843-43.099Q30.034-42.929 30.143-42.701Q30.253-42.472 30.253-42.207Q30.253-41.840 30.012-41.551Q29.772-41.261 29.405-41.133Q29.686-41.070 29.919-40.896Q30.151-40.722 30.286-40.467Q30.421-40.211 30.421-39.926Q30.421-39.566 30.239-39.256Q30.057-38.945 29.743-38.760Q29.428-38.574 29.069-38.574L26.940-38.574Q26.733-38.597 26.694-38.812M27.870-40.840L27.870-39.133L28.901-39.133Q29.128-39.133 29.331-39.236Q29.534-39.340 29.659-39.519Q29.784-39.699 29.784-39.926Q29.784-40.156 29.682-40.365Q29.581-40.574 29.399-40.707Q29.218-40.840 28.991-40.840L27.870-40.840M27.870-42.902L27.870-41.398L28.733-41.398Q29.077-41.398 29.346-41.633Q29.616-41.867 29.616-42.207Q29.616-42.394 29.518-42.554Q29.421-42.715 29.255-42.808Q29.089-42.902 28.901-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M39.102-39.551L33.789-39.551Q33.711-39.558 33.662-39.607Q33.614-39.656 33.614-39.734Q33.614-39.804 33.661-39.855Q33.707-39.906 33.789-39.918L39.102-39.918Q39.176-39.906 39.223-39.855Q39.270-39.804 39.270-39.734Q39.270-39.656 39.221-39.607Q39.172-39.558 39.102-39.551M39.102-41.238L33.789-41.238Q33.711-41.246 33.662-41.295Q33.614-41.344 33.614-41.422Q33.614-41.492 33.661-41.543Q33.707-41.594 33.789-41.605L39.102-41.605Q39.176-41.594 39.223-41.543Q39.270-41.492 39.270-41.422Q39.270-41.344 39.221-41.295Q39.172-41.246 39.102-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M44.352-38.574L42.634-38.574Q42.594-38.574 42.567-38.615Q42.540-38.656 42.540-38.703L42.563-38.804Q42.571-38.855 42.657-38.871Q43.387-38.871 43.512-39.398L44.540-43.496Q44.563-43.566 44.563-43.629Q44.563-43.691 44.497-43.711Q44.352-43.742 43.930-43.742Q43.825-43.773 43.825-43.871L43.856-43.972Q43.868-44.019 43.946-44.039L45.344-44.039Q45.403-44.039 45.440-44.010Q45.477-43.980 45.481-43.926L46.192-39.351L49.192-43.926Q49.270-44.039 49.387-44.039L50.731-44.039Q50.778-44.027 50.805-43.996Q50.833-43.965 50.833-43.918L50.809-43.812Q50.790-43.758 50.716-43.742Q50.274-43.742 50.114-43.703Q49.966-43.668 49.907-43.437L48.825-39.117Q48.809-39.023 48.809-38.980Q48.809-38.922 48.876-38.902Q49.016-38.871 49.442-38.871Q49.540-38.844 49.540-38.750L49.512-38.644Q49.505-38.594 49.426-38.574L47.344-38.574Q47.305-38.574 47.278-38.615Q47.251-38.656 47.251-38.703L47.274-38.804Q47.282-38.855 47.372-38.871Q47.809-38.871 47.968-38.910Q48.126-38.949 48.169-39.176L49.305-43.719L46.009-38.687Q45.942-38.574 45.809-38.574Q45.676-38.574 45.665-38.687L44.891-43.652L43.809-39.344Q43.794-39.242 43.794-39.191Q43.794-38.992 43.958-38.931Q44.122-38.871 44.372-38.871Q44.466-38.844 44.466-38.750L44.442-38.644Q44.434-38.594 44.352-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M53.318-37.463L51.027-37.463L51.027-37.721Q51.903-37.721 51.903-37.894L51.903-40.973Q51.710-40.885 51.478-40.848Q51.247-40.812 50.992-40.812L50.992-41.069Q51.370-41.069 51.691-41.154Q52.011-41.239 52.240-41.453L52.360-41.453Q52.392-41.453 52.417-41.430Q52.442-41.406 52.442-41.368L52.442-37.894Q52.442-37.721 53.318-37.721\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M56.612-36.574L55.436-36.574L55.436-44.574L56.612-44.574L56.612-44.207L55.803-44.207L55.803-36.941L56.612-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M56.989-38.812L56.989-38.902Q57.028-39.109 57.239-39.133L57.547-39.133L57.547-42.902L57.239-42.902Q57.028-42.926 56.989-43.140L56.989-43.230Q57.028-43.437 57.239-43.461L59.188-43.461Q59.586-43.461 59.932-43.260Q60.278-43.058 60.485-42.713Q60.692-42.367 60.692-41.965Q60.692-41.558 60.487-41.215Q60.282-40.871 59.936-40.666Q59.590-40.461 59.188-40.461L58.188-40.461L58.188-39.133L58.500-39.133Q58.711-39.109 58.750-38.902L58.750-38.812Q58.711-38.597 58.500-38.574L57.239-38.574Q57.028-38.597 56.989-38.812M58.188-42.902L58.188-41.023L59.028-41.023Q59.289-41.023 59.526-41.146Q59.762-41.269 59.907-41.484Q60.051-41.699 60.051-41.965Q60.051-42.234 59.907-42.445Q59.762-42.656 59.526-42.779Q59.289-42.902 59.028-42.902L58.188-42.902M63.317-38.496Q62.867-38.496 62.502-38.720Q62.137-38.945 61.883-39.328Q61.629-39.711 61.504-40.154Q61.379-40.597 61.379-41.023Q61.379-41.449 61.504-41.888Q61.629-42.328 61.883-42.711Q62.137-43.094 62.496-43.318Q62.856-43.543 63.317-43.543Q63.594-43.543 63.852-43.451Q64.110-43.359 64.325-43.191L64.457-43.429Q64.485-43.480 64.539-43.511Q64.594-43.543 64.653-43.543L64.731-43.543Q64.825-43.531 64.887-43.472Q64.950-43.414 64.961-43.308L64.961-41.980Q64.950-41.879 64.887-41.816Q64.825-41.754 64.731-41.742L64.563-41.742Q64.461-41.754 64.399-41.820Q64.336-41.886 64.325-41.980Q64.285-42.246 64.162-42.470Q64.039-42.695 63.836-42.838Q63.633-42.980 63.371-42.980Q63.039-42.980 62.787-42.797Q62.535-42.613 62.364-42.312Q62.192-42.011 62.106-41.670Q62.020-41.328 62.020-41.023Q62.020-40.719 62.104-40.377Q62.188-40.035 62.360-39.732Q62.532-39.429 62.789-39.242Q63.047-39.054 63.379-39.054Q63.762-39.054 64.043-39.328Q64.325-39.601 64.325-39.988Q64.352-40.199 64.563-40.222L64.731-40.222Q64.961-40.183 64.961-39.957Q64.961-39.640 64.825-39.369Q64.688-39.097 64.453-38.900Q64.219-38.703 63.928-38.599Q63.637-38.496 63.317-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M68.426-40.390L65.953-40.390Q65.875-40.402 65.826-40.451Q65.778-40.500 65.778-40.574Q65.778-40.648 65.826-40.697Q65.875-40.746 65.953-40.758L68.426-40.758L68.426-43.238Q68.453-43.406 68.610-43.406Q68.684-43.406 68.733-43.357Q68.782-43.308 68.793-43.238L68.793-40.758L71.266-40.758Q71.434-40.726 71.434-40.574Q71.434-40.422 71.266-40.390L68.793-40.390L68.793-37.910Q68.782-37.840 68.733-37.791Q68.684-37.742 68.610-37.742Q68.453-37.742 68.426-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M75.510-38.574L72.717-38.574L72.717-38.871Q73.779-38.871 73.779-39.133L73.779-43.301Q73.350-43.086 72.670-43.086L72.670-43.383Q73.689-43.383 74.205-43.894L74.350-43.894Q74.424-43.875 74.443-43.797L74.443-39.133Q74.443-38.871 75.510-38.871L75.510-38.574M77.521-36.574L76.346-36.574L76.346-36.941L77.154-36.941L77.154-44.207L76.346-44.207L76.346-44.574L77.521-44.574L77.521-36.574M79.346-37.168Q79.346-37.207 79.369-37.230Q79.643-37.515 79.785-37.879Q79.928-38.242 79.928-38.629Q79.830-38.574 79.705-38.574Q79.514-38.574 79.377-38.707Q79.240-38.840 79.240-39.039Q79.240-39.230 79.377-39.363Q79.514-39.496 79.705-39.496Q80.186-39.496 80.186-38.621Q80.186-38.332 80.113-38.051Q80.041-37.769 79.898-37.515Q79.756-37.261 79.561-37.054Q79.529-37.023 79.490-37.023Q79.443-37.023 79.395-37.068Q79.346-37.113 79.346-37.168M79.240-41.566Q79.240-41.750 79.377-41.886Q79.514-42.023 79.705-42.023Q79.896-42.023 80.029-41.890Q80.162-41.758 80.162-41.566Q80.162-41.367 80.029-41.234Q79.896-41.101 79.705-41.101Q79.514-41.101 79.377-41.238Q79.240-41.375 79.240-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M85.378-38.797L84.492-41.461L84.171-41.461Q83.972-41.484 83.921-41.703L83.921-41.789Q83.972-42 84.171-42.023L85.331-42.023Q85.527-42.004 85.577-41.789L85.577-41.703Q85.527-41.484 85.331-41.461L85.050-41.461L85.843-39.086L86.632-41.461L86.355-41.461Q86.156-41.484 86.105-41.703L86.105-41.789Q86.156-42 86.355-42.023L87.515-42.023Q87.710-42 87.761-41.789L87.761-41.703Q87.710-41.484 87.515-41.461L87.195-41.461L86.308-38.797Q86.265-38.683 86.163-38.609Q86.062-38.535 85.937-38.535L85.745-38.535Q85.628-38.535 85.525-38.607Q85.421-38.679 85.378-38.797M88.374-39.687Q88.374-40.133 88.788-40.390Q89.202-40.648 89.743-40.748Q90.284-40.847 90.792-40.855Q90.792-41.070 90.658-41.222Q90.523-41.375 90.316-41.451Q90.109-41.527 89.898-41.527Q89.554-41.527 89.394-41.504L89.394-41.445Q89.394-41.277 89.275-41.162Q89.156-41.047 88.992-41.047Q88.816-41.047 88.701-41.170Q88.585-41.293 88.585-41.461Q88.585-41.867 88.966-41.976Q89.347-42.086 89.906-42.086Q90.175-42.086 90.443-42.008Q90.710-41.929 90.935-41.779Q91.159-41.629 91.296-41.408Q91.433-41.187 91.433-40.910L91.433-39.191Q91.433-39.133 91.960-39.133Q92.156-39.113 92.206-38.902L92.206-38.812Q92.156-38.597 91.960-38.574L91.816-38.574Q91.472-38.574 91.243-38.621Q91.015-38.668 90.870-38.855Q90.409-38.535 89.702-38.535Q89.367-38.535 89.062-38.676Q88.757-38.816 88.566-39.078Q88.374-39.340 88.374-39.687M89.015-39.679Q89.015-39.406 89.257-39.250Q89.499-39.094 89.784-39.094Q90.003-39.094 90.236-39.152Q90.468-39.211 90.630-39.349Q90.792-39.488 90.792-39.711L90.792-40.301Q90.511-40.301 90.095-40.244Q89.679-40.187 89.347-40.049Q89.015-39.910 89.015-39.679M92.663-38.812L92.663-38.902Q92.714-39.109 92.909-39.133L94.015-39.133L94.015-42.902L92.909-42.902Q92.714-42.926 92.663-43.140L92.663-43.230Q92.714-43.437 92.909-43.461L94.406-43.461Q94.597-43.437 94.656-43.230L94.656-39.133L95.757-39.133Q95.956-39.109 96.007-38.902L96.007-38.812Q95.956-38.597 95.757-38.574L92.909-38.574Q92.714-38.597 92.663-38.812M96.644-38.812L96.644-38.902Q96.683-39.109 96.894-39.133L97.202-39.133L97.202-42.902L96.894-42.902Q96.683-42.926 96.644-43.140L96.644-43.230Q96.683-43.437 96.894-43.461L98.843-43.461Q99.242-43.461 99.587-43.260Q99.933-43.058 100.140-42.713Q100.347-42.367 100.347-41.965Q100.347-41.558 100.142-41.215Q99.937-40.871 99.591-40.666Q99.245-40.461 98.843-40.461L97.843-40.461L97.843-39.133L98.156-39.133Q98.367-39.109 98.406-38.902L98.406-38.812Q98.367-38.597 98.156-38.574L96.894-38.574Q96.683-38.597 96.644-38.812M97.843-42.902L97.843-41.023L98.683-41.023Q98.945-41.023 99.181-41.146Q99.417-41.269 99.562-41.484Q99.706-41.699 99.706-41.965Q99.706-42.234 99.562-42.445Q99.417-42.656 99.181-42.779Q98.945-42.902 98.683-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M109.044-39.551L103.731-39.551Q103.653-39.558 103.604-39.607Q103.556-39.656 103.556-39.734Q103.556-39.804 103.603-39.855Q103.649-39.906 103.731-39.918L109.044-39.918Q109.118-39.906 109.165-39.855Q109.212-39.804 109.212-39.734Q109.212-39.656 109.163-39.607Q109.114-39.558 109.044-39.551M109.044-41.238L103.731-41.238Q103.653-41.246 103.604-41.295Q103.556-41.344 103.556-41.422Q103.556-41.492 103.603-41.543Q103.649-41.594 103.731-41.605L109.044-41.605Q109.118-41.594 109.165-41.543Q109.212-41.492 109.212-41.422Q109.212-41.344 109.163-41.295Q109.114-41.246 109.044-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M112.240-38.812L112.240-38.902Q112.279-39.109 112.490-39.133L112.798-39.133L112.798-42.902L112.490-42.902Q112.279-42.926 112.240-43.140L112.240-43.230Q112.279-43.437 112.490-43.461L114.439-43.461Q114.837-43.461 115.183-43.260Q115.529-43.058 115.736-42.713Q115.943-42.367 115.943-41.965Q115.943-41.558 115.738-41.215Q115.533-40.871 115.187-40.666Q114.841-40.461 114.439-40.461L113.439-40.461L113.439-39.133L113.751-39.133Q113.962-39.109 114.001-38.902L114.001-38.812Q113.962-38.597 113.751-38.574L112.490-38.574Q112.279-38.597 112.240-38.812M113.439-42.902L113.439-41.023L114.279-41.023Q114.540-41.023 114.777-41.146Q115.013-41.269 115.158-41.484Q115.302-41.699 115.302-41.965Q115.302-42.234 115.158-42.445Q115.013-42.656 114.777-42.779Q114.540-42.902 114.279-42.902L113.439-42.902M118.568-38.496Q118.118-38.496 117.753-38.720Q117.388-38.945 117.134-39.328Q116.880-39.711 116.755-40.154Q116.630-40.597 116.630-41.023Q116.630-41.449 116.755-41.888Q116.880-42.328 117.134-42.711Q117.388-43.094 117.747-43.318Q118.107-43.543 118.568-43.543Q118.845-43.543 119.103-43.451Q119.361-43.359 119.576-43.191L119.708-43.429Q119.736-43.480 119.790-43.511Q119.845-43.543 119.904-43.543L119.982-43.543Q120.076-43.531 120.138-43.472Q120.201-43.414 120.212-43.308L120.212-41.980Q120.201-41.879 120.138-41.816Q120.076-41.754 119.982-41.742L119.814-41.742Q119.712-41.754 119.650-41.820Q119.587-41.886 119.576-41.980Q119.536-42.246 119.413-42.470Q119.290-42.695 119.087-42.838Q118.884-42.980 118.622-42.980Q118.290-42.980 118.038-42.797Q117.786-42.613 117.615-42.312Q117.443-42.011 117.357-41.670Q117.271-41.328 117.271-41.023Q117.271-40.719 117.355-40.377Q117.439-40.035 117.611-39.732Q117.783-39.429 118.040-39.242Q118.298-39.054 118.630-39.054Q119.013-39.054 119.294-39.328Q119.576-39.601 119.576-39.988Q119.603-40.199 119.814-40.222L119.982-40.222Q120.212-40.183 120.212-39.957Q120.212-39.640 120.076-39.369Q119.939-39.097 119.704-38.900Q119.470-38.703 119.179-38.599Q118.888-38.496 118.568-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M123.677-40.390L121.204-40.390Q121.126-40.402 121.077-40.451Q121.029-40.500 121.029-40.574Q121.029-40.648 121.077-40.697Q121.126-40.746 121.204-40.758L123.677-40.758L123.677-43.238Q123.704-43.406 123.861-43.406Q123.935-43.406 123.984-43.357Q124.033-43.308 124.044-43.238L124.044-40.758L126.517-40.758Q126.685-40.726 126.685-40.574Q126.685-40.422 126.517-40.390L124.044-40.390L124.044-37.910Q124.033-37.840 123.984-37.791Q123.935-37.742 123.861-37.742Q123.704-37.742 123.677-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 2)\">\u003Cpath d=\"M130.753-38.574L127.593-38.574L127.593-38.781Q127.593-38.808 127.616-38.840L128.968-40.238Q129.347-40.625 129.595-40.914Q129.843-41.203 130.017-41.560Q130.190-41.918 130.190-42.308Q130.190-42.656 130.058-42.949Q129.925-43.242 129.671-43.420Q129.417-43.597 129.062-43.597Q128.702-43.597 128.411-43.402Q128.120-43.207 127.976-42.879L128.030-42.879Q128.214-42.879 128.339-42.758Q128.464-42.636 128.464-42.445Q128.464-42.265 128.339-42.136Q128.214-42.008 128.030-42.008Q127.851-42.008 127.722-42.136Q127.593-42.265 127.593-42.445Q127.593-42.847 127.813-43.183Q128.034-43.519 128.399-43.707Q128.765-43.894 129.167-43.894Q129.647-43.894 130.063-43.707Q130.480-43.519 130.731-43.158Q130.983-42.797 130.983-42.308Q130.983-41.949 130.829-41.646Q130.675-41.344 130.423-41.084Q130.171-40.824 129.821-40.539Q129.472-40.254 129.304-40.101L128.374-39.261L129.089-39.261Q130.464-39.261 130.503-39.301Q130.573-39.379 130.616-39.564Q130.659-39.750 130.702-40.039L130.983-40.039\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743-26.624H438.21\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(170.33 26.616)\">\u003Cpath d=\"M14.584-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.584-43.356Q15.069-43.356 15.505-43.161Q15.941-42.966 16.264-42.624Q16.587-42.282 16.765-41.842Q16.942-41.401 16.942-40.919Q16.942-40.433 16.758-40.010Q16.573-39.586 16.250-39.264Q15.927-38.943 15.495-38.759Q15.063-38.574 14.584-38.574M13.196-42.864L13.196-39.063Q13.196-38.923 13.285-38.888Q13.374-38.854 13.562-38.854L14.386-38.854Q15.011-38.854 15.415-39.116Q15.818-39.377 16.006-39.844Q16.194-40.310 16.194-40.919Q16.194-41.397 16.102-41.790Q16.009-42.183 15.760-42.481Q15.521-42.768 15.157-42.922Q14.793-43.075 14.386-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.711-40.109Q17.711-40.430 17.836-40.719Q17.961-41.008 18.187-41.231Q18.412-41.455 18.708-41.575Q19.003-41.695 19.321-41.695Q19.649-41.695 19.911-41.595Q20.172-41.496 20.348-41.314Q20.524-41.131 20.618-40.873Q20.712-40.615 20.712-40.283Q20.712-40.191 20.630-40.170L18.375-40.170L18.375-40.109Q18.375-39.521 18.658-39.138Q18.942-38.755 19.509-38.755Q19.831-38.755 20.099-38.948Q20.367-39.141 20.456-39.456Q20.463-39.497 20.538-39.511L20.630-39.511Q20.712-39.487 20.712-39.415Q20.712-39.408 20.706-39.381Q20.593-38.984 20.222-38.745Q19.851-38.506 19.427-38.506Q18.990-38.506 18.590-38.714Q18.190-38.923 17.951-39.290Q17.711-39.657 17.711-40.109M18.381-40.379L20.196-40.379Q20.196-40.656 20.099-40.908Q20.002-41.161 19.803-41.317Q19.605-41.472 19.321-41.472Q19.044-41.472 18.831-41.314Q18.617-41.155 18.499-40.900Q18.381-40.645 18.381-40.379M21.300-40.085Q21.300-40.413 21.435-40.714Q21.570-41.014 21.806-41.235Q22.042-41.455 22.346-41.575Q22.650-41.695 22.975-41.695Q23.481-41.695 23.830-41.592Q24.178-41.490 24.178-41.114Q24.178-40.967 24.081-40.866Q23.983-40.765 23.836-40.765Q23.683-40.765 23.584-40.864Q23.484-40.963 23.484-41.114Q23.484-41.302 23.625-41.394Q23.423-41.445 22.982-41.445Q22.627-41.445 22.398-41.249Q22.169-41.052 22.068-40.743Q21.967-40.433 21.967-40.085Q21.967-39.736 22.093-39.430Q22.220-39.124 22.474-38.940Q22.729-38.755 23.085-38.755Q23.307-38.755 23.491-38.839Q23.676-38.923 23.811-39.078Q23.946-39.234 24.004-39.442Q24.018-39.497 24.072-39.497L24.185-39.497Q24.216-39.497 24.238-39.473Q24.260-39.449 24.260-39.415L24.260-39.394Q24.175-39.107 23.987-38.909Q23.799-38.711 23.534-38.608Q23.269-38.506 22.975-38.506Q22.544-38.506 22.157-38.712Q21.769-38.919 21.534-39.282Q21.300-39.644 21.300-40.085M24.807-40.057Q24.807-40.399 24.942-40.698Q25.077-40.997 25.316-41.221Q25.556-41.445 25.874-41.570Q26.191-41.695 26.523-41.695Q26.967-41.695 27.367-41.479Q27.767-41.264 28.001-40.886Q28.235-40.509 28.235-40.057Q28.235-39.716 28.094-39.432Q27.952-39.148 27.707-38.941Q27.463-38.735 27.154-38.620Q26.844-38.506 26.523-38.506Q26.092-38.506 25.691-38.707Q25.289-38.909 25.048-39.261Q24.807-39.613 24.807-40.057M26.523-38.755Q27.125-38.755 27.348-39.133Q27.572-39.511 27.572-40.143Q27.572-40.755 27.338-41.114Q27.104-41.472 26.523-41.472Q25.470-41.472 25.470-40.143Q25.470-39.511 25.696-39.133Q25.921-38.755 26.523-38.755\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(170.33 26.616)\">\u003Cpath d=\"M29.066-40.085Q29.066-40.423 29.207-40.714Q29.347-41.004 29.591-41.218Q29.835-41.431 30.140-41.546Q30.444-41.660 30.769-41.660Q31.039-41.660 31.302-41.561Q31.565-41.462 31.756-41.284L31.756-42.682Q31.756-42.952 31.649-43.014Q31.541-43.075 31.230-43.075L31.230-43.356L32.307-43.431L32.307-39.247Q32.307-39.059 32.361-38.976Q32.416-38.892 32.517-38.873Q32.618-38.854 32.833-38.854L32.833-38.574L31.726-38.506L31.726-38.923Q31.309-38.506 30.683-38.506Q30.252-38.506 29.880-38.718Q29.507-38.929 29.287-39.290Q29.066-39.651 29.066-40.085M30.741-38.728Q30.950-38.728 31.136-38.800Q31.322-38.871 31.476-39.008Q31.630-39.145 31.726-39.323L31.726-40.932Q31.640-41.079 31.495-41.199Q31.350-41.319 31.180-41.378Q31.011-41.438 30.830-41.438Q30.270-41.438 30.001-41.049Q29.733-40.659 29.733-40.078Q29.733-39.507 29.967-39.117Q30.201-38.728 30.741-38.728M33.441-40.109Q33.441-40.430 33.566-40.719Q33.691-41.008 33.917-41.231Q34.142-41.455 34.438-41.575Q34.733-41.695 35.051-41.695Q35.379-41.695 35.641-41.595Q35.902-41.496 36.078-41.314Q36.254-41.131 36.348-40.873Q36.442-40.615 36.442-40.283Q36.442-40.191 36.360-40.170L34.105-40.170L34.105-40.109Q34.105-39.521 34.388-39.138Q34.672-38.755 35.239-38.755Q35.561-38.755 35.829-38.948Q36.097-39.141 36.186-39.456Q36.193-39.497 36.268-39.511L36.360-39.511Q36.442-39.487 36.442-39.415Q36.442-39.408 36.436-39.381Q36.323-38.984 35.952-38.745Q35.581-38.506 35.157-38.506Q34.720-38.506 34.320-38.714Q33.920-38.923 33.681-39.290Q33.441-39.657 33.441-40.109M34.111-40.379L35.926-40.379Q35.926-40.656 35.829-40.908Q35.731-41.161 35.533-41.317Q35.335-41.472 35.051-41.472Q34.774-41.472 34.561-41.314Q34.347-41.155 34.229-40.900Q34.111-40.645 34.111-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.388-38.812L24.388-38.902Q24.446-39.113 24.638-39.133L24.860-39.133L25.814-43.316Q25.837-43.433 25.933-43.508Q26.028-43.582 26.142-43.582L26.415-43.582Q26.528-43.582 26.624-43.506Q26.720-43.429 26.743-43.316L27.692-39.133L27.919-39.133Q28.126-39.109 28.165-38.902L28.165-38.812Q28.114-38.597 27.919-38.574L26.837-38.574Q26.642-38.597 26.591-38.812L26.591-38.902Q26.642-39.109 26.837-39.133L27.036-39.133Q26.907-39.699 26.884-39.781L25.669-39.781Q25.626-39.597 25.517-39.133L25.716-39.133Q25.915-39.109 25.966-38.902L25.966-38.812Q25.915-38.597 25.716-38.574L24.638-38.574Q24.431-38.597 24.388-38.812M25.790-40.344L26.767-40.344Q26.286-42.476 26.286-42.820L26.278-42.820Q26.278-42.636 26.138-41.953Q25.997-41.269 25.790-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M42.378-38.574L40.241-38.574Q40.206-38.574 40.175-38.615Q40.144-38.656 40.144-38.703L40.167-38.804Q40.179-38.855 40.265-38.871Q40.706-38.871 40.864-38.910Q41.023-38.949 41.066-39.176L42.144-43.496Q42.167-43.566 42.167-43.629Q42.167-43.691 42.105-43.711Q41.960-43.742 41.538-43.742Q41.433-43.769 41.433-43.871L41.464-43.972Q41.472-44.019 41.554-44.039L44.066-44.039Q44.472-44.039 44.915-43.916Q45.358-43.793 45.663-43.517Q45.968-43.242 45.968-42.820Q45.968-42.433 45.698-42.117Q45.429-41.801 45.030-41.592Q44.632-41.383 44.257-41.293Q44.566-41.168 44.763-40.929Q44.960-40.691 44.960-40.375Q44.960-40.332 44.958-40.304Q44.956-40.277 44.952-40.246L44.874-39.551Q44.843-39.261 44.843-39.140Q44.843-38.926 44.911-38.795Q44.980-38.664 45.187-38.664Q45.441-38.664 45.636-38.888Q45.831-39.113 45.898-39.390Q45.905-39.437 45.991-39.453L46.073-39.453Q46.167-39.426 46.167-39.344Q46.167-39.336 46.159-39.301Q46.108-39.086 45.964-38.875Q45.819-38.664 45.612-38.535Q45.405-38.406 45.179-38.406Q44.874-38.406 44.605-38.492Q44.335-38.578 44.163-38.777Q43.991-38.976 43.991-39.285Q43.991-39.394 44.034-39.574L44.210-40.269Q44.233-40.390 44.233-40.484Q44.233-40.820 43.972-41.002Q43.710-41.183 43.347-41.183L42.296-41.183L41.776-39.117Q41.761-39.023 41.761-38.980Q41.761-38.941 41.774-38.928Q41.788-38.914 41.823-38.902Q41.968-38.871 42.394-38.871Q42.487-38.844 42.487-38.750L42.464-38.644Q42.456-38.594 42.378-38.574M42.858-43.437L42.362-41.437L43.304-41.437Q43.648-41.437 43.964-41.506Q44.280-41.574 44.554-41.742Q44.741-41.867 44.878-42.068Q45.015-42.269 45.083-42.502Q45.151-42.734 45.151-42.957Q45.151-43.414 44.784-43.578Q44.417-43.742 43.882-43.742L43.265-43.742Q43.093-43.742 43.030-43.728Q42.968-43.715 42.935-43.656Q42.901-43.597 42.858-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M48.372-36.574L47.196-36.574L47.196-44.574L48.372-44.574L48.372-44.207L47.563-44.207L47.563-36.941L48.372-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M49.749-38.308Q49.749-38.371 49.780-38.414L53.526-43.672Q53.069-43.437 52.502-43.437Q51.850-43.437 51.245-43.758Q51.389-43.410 51.389-42.965Q51.389-42.605 51.268-42.234Q51.147-41.863 50.897-41.607Q50.647-41.351 50.284-41.351Q49.897-41.351 49.614-41.595Q49.331-41.840 49.184-42.213Q49.038-42.586 49.038-42.965Q49.038-43.344 49.184-43.715Q49.331-44.086 49.614-44.330Q49.897-44.574 50.284-44.574Q50.600-44.574 50.870-44.336Q51.206-44.031 51.635-43.859Q52.065-43.687 52.502-43.687Q52.995-43.687 53.413-43.900Q53.831-44.113 54.131-44.511Q54.174-44.574 54.268-44.574Q54.342-44.574 54.397-44.519Q54.452-44.465 54.452-44.390Q54.452-44.328 54.420-44.285L50.077-38.191Q50.030-38.125 49.932-38.125Q49.850-38.125 49.799-38.176Q49.749-38.226 49.749-38.308M50.284-41.605Q50.557-41.605 50.745-41.830Q50.932-42.054 51.020-42.377Q51.108-42.699 51.108-42.965Q51.108-43.222 51.020-43.545Q50.932-43.867 50.745-44.092Q50.557-44.316 50.284-44.316Q49.897-44.316 49.754-43.888Q49.612-43.461 49.612-42.965Q49.612-42.457 49.752-42.031Q49.893-41.605 50.284-41.605M54.061-38.125Q53.674-38.125 53.391-38.371Q53.108-38.617 52.960-38.990Q52.811-39.363 52.811-39.742Q52.811-40.015 52.897-40.303Q52.983-40.590 53.137-40.824Q53.292-41.058 53.528-41.205Q53.764-41.351 54.061-41.351Q54.342-41.351 54.549-41.199Q54.756-41.047 54.895-40.804Q55.034-40.562 55.100-40.281Q55.167-40 55.167-39.742Q55.167-39.383 55.045-39.010Q54.924-38.636 54.674-38.381Q54.424-38.125 54.061-38.125M54.061-38.383Q54.335-38.383 54.522-38.607Q54.710-38.832 54.797-39.154Q54.885-39.476 54.885-39.742Q54.885-40 54.797-40.322Q54.710-40.644 54.522-40.869Q54.335-41.094 54.061-41.094Q53.670-41.094 53.530-40.664Q53.389-40.234 53.389-39.742Q53.389-39.234 53.526-38.808Q53.663-38.383 54.061-38.383\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M55.872-38.812L55.872-38.902Q55.930-39.109 56.122-39.133L56.833-39.133L56.833-41.461L56.122-41.461Q55.926-41.484 55.872-41.703L55.872-41.789Q55.930-42 56.122-42.023L57.223-42.023Q57.422-42.004 57.473-41.789L57.473-41.461Q57.735-41.746 58.090-41.904Q58.446-42.062 58.833-42.062Q59.126-42.062 59.360-41.928Q59.594-41.793 59.594-41.527Q59.594-41.359 59.485-41.242Q59.376-41.125 59.208-41.125Q59.055-41.125 58.940-41.236Q58.825-41.347 58.825-41.504Q58.450-41.504 58.135-41.303Q57.821-41.101 57.647-40.767Q57.473-40.433 57.473-40.054L57.473-39.133L58.419-39.133Q58.626-39.109 58.665-38.902L58.665-38.812Q58.626-38.597 58.419-38.574L56.122-38.574Q55.930-38.597 55.872-38.812M60.481-38.773L60.481-39.687Q60.508-39.894 60.719-39.918L60.887-39.918Q61.051-39.894 61.110-39.734Q61.313-39.094 62.040-39.094Q62.247-39.094 62.475-39.129Q62.704-39.164 62.872-39.279Q63.040-39.394 63.040-39.597Q63.040-39.808 62.817-39.922Q62.594-40.035 62.321-40.078L61.622-40.191Q60.481-40.402 60.481-41.125Q60.481-41.414 60.626-41.603Q60.770-41.793 61.010-41.900Q61.251-42.008 61.506-42.047Q61.762-42.086 62.040-42.086Q62.290-42.086 62.483-42.056Q62.676-42.027 62.840-41.949Q62.919-42.066 63.047-42.086L63.126-42.086Q63.223-42.074 63.286-42.011Q63.348-41.949 63.360-41.855L63.360-41.148Q63.348-41.054 63.286-40.988Q63.223-40.922 63.126-40.910L62.958-40.910Q62.864-40.922 62.797-40.988Q62.731-41.054 62.719-41.148Q62.719-41.527 62.024-41.527Q61.676-41.527 61.358-41.445Q61.040-41.363 61.040-41.117Q61.040-40.851 61.712-40.742L62.415-40.621Q62.899-40.539 63.249-40.291Q63.598-40.043 63.598-39.597Q63.598-39.207 63.362-38.965Q63.126-38.722 62.776-38.629Q62.426-38.535 62.040-38.535Q61.462-38.535 61.063-38.789Q60.993-38.664 60.944-38.607Q60.895-38.551 60.790-38.535L60.719-38.535Q60.504-38.558 60.481-38.773M64.212-37.031L64.212-37.117Q64.254-37.336 64.462-37.359L64.883-37.359L64.883-41.461L64.462-41.461Q64.254-41.484 64.212-41.703L64.212-41.789Q64.258-42 64.462-42.023L65.278-42.023Q65.473-42.004 65.524-41.789L65.524-41.719Q65.735-41.886 65.999-41.974Q66.262-42.062 66.532-42.062Q66.872-42.062 67.169-41.918Q67.465-41.773 67.680-41.521Q67.895-41.269 68.010-40.957Q68.126-40.644 68.126-40.301Q68.126-39.836 67.899-39.426Q67.672-39.015 67.286-38.775Q66.899-38.535 66.430-38.535Q65.911-38.535 65.524-38.902L65.524-37.359L65.950-37.359Q66.157-37.336 66.196-37.117L66.196-37.031Q66.157-36.820 65.950-36.797L64.462-36.797Q64.258-36.820 64.212-37.031M66.387-39.094Q66.696-39.094 66.946-39.263Q67.196-39.433 67.340-39.715Q67.485-39.996 67.485-40.301Q67.485-40.590 67.360-40.869Q67.235-41.148 67.003-41.326Q66.770-41.504 66.469-41.504Q66.149-41.504 65.887-41.318Q65.626-41.133 65.524-40.832L65.524-39.980Q65.614-39.613 65.835-39.353Q66.055-39.094 66.387-39.094\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M69.758-36.574L68.583-36.574L68.583-36.941L69.391-36.941L69.391-44.207L68.583-44.207L68.583-44.574L69.758-44.574L69.758-36.574M71.583-37.168Q71.583-37.207 71.606-37.230Q71.879-37.515 72.022-37.879Q72.165-38.242 72.165-38.629Q72.067-38.574 71.942-38.574Q71.751-38.574 71.614-38.707Q71.477-38.840 71.477-39.039Q71.477-39.230 71.614-39.363Q71.751-39.496 71.942-39.496Q72.422-39.496 72.422-38.621Q72.422-38.332 72.350-38.051Q72.278-37.769 72.135-37.515Q71.993-37.261 71.797-37.054Q71.766-37.023 71.727-37.023Q71.680-37.023 71.631-37.068Q71.583-37.113 71.583-37.168M71.477-41.566Q71.477-41.750 71.614-41.886Q71.751-42.023 71.942-42.023Q72.133-42.023 72.266-41.890Q72.399-41.758 72.399-41.566Q72.399-41.367 72.266-41.234Q72.133-41.101 71.942-41.101Q71.751-41.101 71.614-41.238Q71.477-41.375 71.477-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M77.611-38.797L76.725-41.461L76.404-41.461Q76.205-41.484 76.154-41.703L76.154-41.789Q76.205-42 76.404-42.023L77.564-42.023Q77.760-42.004 77.810-41.789L77.810-41.703Q77.760-41.484 77.564-41.461L77.283-41.461L78.076-39.086L78.865-41.461L78.588-41.461Q78.389-41.484 78.338-41.703L78.338-41.789Q78.389-42 78.588-42.023L79.748-42.023Q79.943-42 79.994-41.789L79.994-41.703Q79.943-41.484 79.748-41.461L79.428-41.461L78.541-38.797Q78.498-38.683 78.396-38.609Q78.295-38.535 78.170-38.535L77.978-38.535Q77.861-38.535 77.758-38.607Q77.654-38.679 77.611-38.797M80.607-39.687Q80.607-40.133 81.021-40.390Q81.435-40.648 81.976-40.748Q82.517-40.847 83.025-40.855Q83.025-41.070 82.891-41.222Q82.756-41.375 82.549-41.451Q82.342-41.527 82.131-41.527Q81.787-41.527 81.627-41.504L81.627-41.445Q81.627-41.277 81.508-41.162Q81.389-41.047 81.225-41.047Q81.049-41.047 80.934-41.170Q80.818-41.293 80.818-41.461Q80.818-41.867 81.199-41.976Q81.580-42.086 82.139-42.086Q82.408-42.086 82.676-42.008Q82.943-41.929 83.168-41.779Q83.392-41.629 83.529-41.408Q83.666-41.187 83.666-40.910L83.666-39.191Q83.666-39.133 84.193-39.133Q84.389-39.113 84.439-38.902L84.439-38.812Q84.389-38.597 84.193-38.574L84.049-38.574Q83.705-38.574 83.476-38.621Q83.248-38.668 83.103-38.855Q82.642-38.535 81.935-38.535Q81.600-38.535 81.295-38.676Q80.990-38.816 80.799-39.078Q80.607-39.340 80.607-39.687M81.248-39.679Q81.248-39.406 81.490-39.250Q81.732-39.094 82.017-39.094Q82.236-39.094 82.469-39.152Q82.701-39.211 82.863-39.349Q83.025-39.488 83.025-39.711L83.025-40.301Q82.744-40.301 82.328-40.244Q81.912-40.187 81.580-40.049Q81.248-39.910 81.248-39.679M84.896-38.812L84.896-38.902Q84.947-39.109 85.142-39.133L86.248-39.133L86.248-42.902L85.142-42.902Q84.947-42.926 84.896-43.140L84.896-43.230Q84.947-43.437 85.142-43.461L86.639-43.461Q86.830-43.437 86.889-43.230L86.889-39.133L87.990-39.133Q88.189-39.109 88.240-38.902L88.240-38.812Q88.189-38.597 87.990-38.574L85.142-38.574Q84.947-38.597 84.896-38.812M88.861-38.812L88.861-38.902Q88.900-39.109 89.107-39.133L89.396-39.133L89.396-42.902L89.107-42.902Q88.900-42.926 88.861-43.140L88.861-43.230Q88.900-43.437 89.107-43.461L91.068-43.461Q91.338-43.461 91.578-43.365Q91.818-43.269 92.010-43.099Q92.201-42.929 92.310-42.701Q92.420-42.472 92.420-42.207Q92.420-41.840 92.180-41.551Q91.939-41.261 91.572-41.133Q91.853-41.070 92.086-40.896Q92.318-40.722 92.453-40.467Q92.588-40.211 92.588-39.926Q92.588-39.566 92.406-39.256Q92.225-38.945 91.910-38.760Q91.596-38.574 91.236-38.574L89.107-38.574Q88.900-38.597 88.861-38.812M90.037-40.840L90.037-39.133L91.068-39.133Q91.295-39.133 91.498-39.236Q91.701-39.340 91.826-39.519Q91.951-39.699 91.951-39.926Q91.951-40.156 91.850-40.365Q91.748-40.574 91.566-40.707Q91.385-40.840 91.158-40.840L90.037-40.840M90.037-42.902L90.037-41.398L90.900-41.398Q91.244-41.398 91.514-41.633Q91.783-41.867 91.783-42.207Q91.783-42.394 91.685-42.554Q91.588-42.715 91.422-42.808Q91.256-42.902 91.068-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M101.277-39.551L95.964-39.551Q95.886-39.558 95.837-39.607Q95.789-39.656 95.789-39.734Q95.789-39.804 95.836-39.855Q95.882-39.906 95.964-39.918L101.277-39.918Q101.351-39.906 101.398-39.855Q101.445-39.804 101.445-39.734Q101.445-39.656 101.396-39.607Q101.347-39.558 101.277-39.551M101.277-41.238L95.964-41.238Q95.886-41.246 95.837-41.295Q95.789-41.344 95.789-41.422Q95.789-41.492 95.836-41.543Q95.882-41.594 95.964-41.605L101.277-41.605Q101.351-41.594 101.398-41.543Q101.445-41.492 101.445-41.422Q101.445-41.344 101.396-41.295Q101.347-41.246 101.277-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M106.913-38.574L104.776-38.574Q104.741-38.574 104.710-38.615Q104.679-38.656 104.679-38.703L104.702-38.804Q104.714-38.855 104.800-38.871Q105.241-38.871 105.399-38.910Q105.558-38.949 105.600-39.176L106.679-43.496Q106.702-43.566 106.702-43.629Q106.702-43.691 106.640-43.711Q106.495-43.742 106.073-43.742Q105.968-43.769 105.968-43.871L105.999-43.972Q106.007-44.019 106.089-44.039L108.600-44.039Q109.007-44.039 109.450-43.916Q109.893-43.793 110.198-43.517Q110.503-43.242 110.503-42.820Q110.503-42.433 110.233-42.117Q109.964-41.801 109.565-41.592Q109.167-41.383 108.792-41.293Q109.100-41.168 109.298-40.929Q109.495-40.691 109.495-40.375Q109.495-40.332 109.493-40.304Q109.491-40.277 109.487-40.246L109.409-39.551Q109.378-39.261 109.378-39.140Q109.378-38.926 109.446-38.795Q109.515-38.664 109.722-38.664Q109.975-38.664 110.171-38.888Q110.366-39.113 110.433-39.390Q110.440-39.437 110.526-39.453L110.608-39.453Q110.702-39.426 110.702-39.344Q110.702-39.336 110.694-39.301Q110.643-39.086 110.499-38.875Q110.354-38.664 110.147-38.535Q109.940-38.406 109.714-38.406Q109.409-38.406 109.140-38.492Q108.870-38.578 108.698-38.777Q108.526-38.976 108.526-39.285Q108.526-39.394 108.569-39.574L108.745-40.269Q108.768-40.390 108.768-40.484Q108.768-40.820 108.507-41.002Q108.245-41.183 107.882-41.183L106.831-41.183L106.311-39.117Q106.296-39.023 106.296-38.980Q106.296-38.941 106.309-38.928Q106.323-38.914 106.358-38.902Q106.503-38.871 106.929-38.871Q107.022-38.844 107.022-38.750L106.999-38.644Q106.991-38.594 106.913-38.574M107.393-43.437L106.897-41.437L107.839-41.437Q108.183-41.437 108.499-41.506Q108.815-41.574 109.089-41.742Q109.276-41.867 109.413-42.068Q109.550-42.269 109.618-42.502Q109.686-42.734 109.686-42.957Q109.686-43.414 109.319-43.578Q108.952-43.742 108.417-43.742L107.800-43.742Q107.628-43.742 107.565-43.728Q107.503-43.715 107.470-43.656Q107.436-43.597 107.393-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M112.908-36.574L111.732-36.574L111.732-44.574L112.908-44.574L112.908-44.207L112.099-44.207L112.099-36.941L112.908-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M114.285-38.308Q114.285-38.371 114.316-38.414L118.062-43.672Q117.605-43.437 117.038-43.437Q116.386-43.437 115.781-43.758Q115.925-43.410 115.925-42.965Q115.925-42.605 115.804-42.234Q115.683-41.863 115.433-41.607Q115.183-41.351 114.820-41.351Q114.433-41.351 114.150-41.595Q113.867-41.840 113.720-42.213Q113.574-42.586 113.574-42.965Q113.574-43.344 113.720-43.715Q113.867-44.086 114.150-44.330Q114.433-44.574 114.820-44.574Q115.136-44.574 115.406-44.336Q115.742-44.031 116.171-43.859Q116.601-43.687 117.038-43.687Q117.531-43.687 117.949-43.900Q118.367-44.113 118.667-44.511Q118.710-44.574 118.804-44.574Q118.878-44.574 118.933-44.519Q118.988-44.465 118.988-44.390Q118.988-44.328 118.956-44.285L114.613-38.191Q114.566-38.125 114.468-38.125Q114.386-38.125 114.335-38.176Q114.285-38.226 114.285-38.308M114.820-41.605Q115.093-41.605 115.281-41.830Q115.468-42.054 115.556-42.377Q115.644-42.699 115.644-42.965Q115.644-43.222 115.556-43.545Q115.468-43.867 115.281-44.092Q115.093-44.316 114.820-44.316Q114.433-44.316 114.290-43.888Q114.148-43.461 114.148-42.965Q114.148-42.457 114.288-42.031Q114.429-41.605 114.820-41.605M118.597-38.125Q118.210-38.125 117.927-38.371Q117.644-38.617 117.496-38.990Q117.347-39.363 117.347-39.742Q117.347-40.015 117.433-40.303Q117.519-40.590 117.673-40.824Q117.828-41.058 118.064-41.205Q118.300-41.351 118.597-41.351Q118.878-41.351 119.085-41.199Q119.292-41.047 119.431-40.804Q119.570-40.562 119.636-40.281Q119.703-40 119.703-39.742Q119.703-39.383 119.581-39.010Q119.460-38.636 119.210-38.381Q118.960-38.125 118.597-38.125M118.597-38.383Q118.871-38.383 119.058-38.607Q119.246-38.832 119.333-39.154Q119.421-39.476 119.421-39.742Q119.421-40 119.333-40.322Q119.246-40.644 119.058-40.869Q118.871-41.094 118.597-41.094Q118.206-41.094 118.066-40.664Q117.925-40.234 117.925-39.742Q117.925-39.234 118.062-38.808Q118.199-38.383 118.597-38.383\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M120.407-38.812L120.407-38.902Q120.465-39.109 120.657-39.133L121.368-39.133L121.368-41.461L120.657-41.461Q120.461-41.484 120.407-41.703L120.407-41.789Q120.465-42 120.657-42.023L121.758-42.023Q121.957-42.004 122.008-41.789L122.008-41.461Q122.270-41.746 122.625-41.904Q122.981-42.062 123.368-42.062Q123.661-42.062 123.895-41.928Q124.129-41.793 124.129-41.527Q124.129-41.359 124.020-41.242Q123.911-41.125 123.743-41.125Q123.590-41.125 123.475-41.236Q123.360-41.347 123.360-41.504Q122.985-41.504 122.670-41.303Q122.356-41.101 122.182-40.767Q122.008-40.433 122.008-40.054L122.008-39.133L122.954-39.133Q123.161-39.109 123.200-38.902L123.200-38.812Q123.161-38.597 122.954-38.574L120.657-38.574Q120.465-38.597 120.407-38.812M125.016-38.773L125.016-39.687Q125.043-39.894 125.254-39.918L125.422-39.918Q125.586-39.894 125.645-39.734Q125.848-39.094 126.575-39.094Q126.782-39.094 127.010-39.129Q127.239-39.164 127.407-39.279Q127.575-39.394 127.575-39.597Q127.575-39.808 127.352-39.922Q127.129-40.035 126.856-40.078L126.157-40.191Q125.016-40.402 125.016-41.125Q125.016-41.414 125.161-41.603Q125.305-41.793 125.545-41.900Q125.786-42.008 126.041-42.047Q126.297-42.086 126.575-42.086Q126.825-42.086 127.018-42.056Q127.211-42.027 127.375-41.949Q127.454-42.066 127.582-42.086L127.661-42.086Q127.758-42.074 127.821-42.011Q127.883-41.949 127.895-41.855L127.895-41.148Q127.883-41.054 127.821-40.988Q127.758-40.922 127.661-40.910L127.493-40.910Q127.399-40.922 127.332-40.988Q127.266-41.054 127.254-41.148Q127.254-41.527 126.559-41.527Q126.211-41.527 125.893-41.445Q125.575-41.363 125.575-41.117Q125.575-40.851 126.246-40.742L126.950-40.621Q127.434-40.539 127.784-40.291Q128.133-40.043 128.133-39.597Q128.133-39.207 127.897-38.965Q127.661-38.722 127.311-38.629Q126.961-38.535 126.575-38.535Q125.996-38.535 125.598-38.789Q125.528-38.664 125.479-38.607Q125.430-38.551 125.325-38.535L125.254-38.535Q125.039-38.558 125.016-38.773M128.746-37.031L128.746-37.117Q128.789-37.336 128.996-37.359L129.418-37.359L129.418-41.461L128.996-41.461Q128.789-41.484 128.746-41.703L128.746-41.789Q128.793-42 128.996-42.023L129.813-42.023Q130.008-42.004 130.059-41.789L130.059-41.719Q130.270-41.886 130.534-41.974Q130.797-42.062 131.067-42.062Q131.407-42.062 131.704-41.918Q132-41.773 132.215-41.521Q132.430-41.269 132.545-40.957Q132.661-40.644 132.661-40.301Q132.661-39.836 132.434-39.426Q132.207-39.015 131.821-38.775Q131.434-38.535 130.965-38.535Q130.446-38.535 130.059-38.902L130.059-37.359L130.485-37.359Q130.692-37.336 130.731-37.117L130.731-37.031Q130.692-36.820 130.485-36.797L128.996-36.797Q128.793-36.820 128.746-37.031M130.922-39.094Q131.231-39.094 131.481-39.263Q131.731-39.433 131.875-39.715Q132.020-39.996 132.020-40.301Q132.020-40.590 131.895-40.869Q131.770-41.148 131.538-41.326Q131.305-41.504 131.004-41.504Q130.684-41.504 130.422-41.318Q130.161-41.133 130.059-40.832L130.059-39.980Q130.149-39.613 130.370-39.353Q130.590-39.094 130.922-39.094\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 26.185)\">\u003Cpath d=\"M134.294-36.574L133.119-36.574L133.119-36.941L133.927-36.941L133.927-44.207L133.119-44.207L133.119-44.574L134.294-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743-2.439H438.21\"\u002F>\u003Cg transform=\"translate(167.851 50.761)\">\u003Cpath d=\"M16.201-38.574L11.798-38.574L11.798-38.854Q12.520-38.854 12.520-39.063L12.520-42.864Q12.520-43.075 11.798-43.075L11.798-43.356L16.088-43.356L16.296-41.719L16.033-41.719Q15.975-42.190 15.873-42.455Q15.770-42.720 15.586-42.853Q15.401-42.987 15.129-43.031Q14.857-43.075 14.358-43.075L13.576-43.075Q13.388-43.075 13.299-43.041Q13.210-43.007 13.210-42.864L13.210-41.199L13.784-41.199Q14.174-41.199 14.357-41.250Q14.540-41.302 14.622-41.474Q14.704-41.647 14.704-42.019L14.967-42.019L14.967-40.098L14.704-40.098Q14.704-40.471 14.622-40.644Q14.540-40.816 14.357-40.867Q14.174-40.919 13.784-40.919L13.210-40.919L13.210-39.063Q13.210-38.923 13.299-38.888Q13.388-38.854 13.576-38.854L14.423-38.854Q14.953-38.854 15.263-38.923Q15.572-38.991 15.760-39.158Q15.948-39.326 16.055-39.628Q16.163-39.931 16.249-40.444L16.515-40.444L16.201-38.574M18.286-38.574L16.963-38.574L16.963-38.854Q17.523-38.854 17.903-39.254L18.617-40.051L17.705-41.100Q17.568-41.247 17.419-41.279Q17.271-41.312 17.004-41.312L17.004-41.592L18.504-41.592L18.504-41.312Q18.313-41.312 18.313-41.178Q18.313-41.148 18.344-41.100L18.939-40.416L19.379-40.912Q19.492-41.042 19.492-41.158Q19.492-41.220 19.455-41.266Q19.417-41.312 19.359-41.312L19.359-41.592L20.675-41.592L20.675-41.312Q20.114-41.312 19.735-40.912L19.113-40.211L20.107-39.063Q20.207-38.964 20.307-38.919Q20.408-38.875 20.519-38.865Q20.630-38.854 20.808-38.854L20.808-38.574L19.315-38.574L19.315-38.854Q19.379-38.854 19.439-38.888Q19.499-38.923 19.499-38.988Q19.499-39.035 19.468-39.063L18.792-39.849L18.258-39.254Q18.146-39.124 18.146-39.008Q18.146-38.943 18.187-38.899Q18.228-38.854 18.286-38.854L18.286-38.574M21.263-40.109Q21.263-40.430 21.388-40.719Q21.512-41.008 21.738-41.231Q21.963-41.455 22.259-41.575Q22.555-41.695 22.873-41.695Q23.201-41.695 23.462-41.595Q23.724-41.496 23.900-41.314Q24.076-41.131 24.170-40.873Q24.264-40.615 24.264-40.283Q24.264-40.191 24.182-40.170L21.926-40.170L21.926-40.109Q21.926-39.521 22.210-39.138Q22.493-38.755 23.061-38.755Q23.382-38.755 23.650-38.948Q23.919-39.141 24.007-39.456Q24.014-39.497 24.089-39.511L24.182-39.511Q24.264-39.487 24.264-39.415Q24.264-39.408 24.257-39.381Q24.144-38.984 23.773-38.745Q23.402-38.506 22.979-38.506Q22.541-38.506 22.141-38.714Q21.741-38.923 21.502-39.290Q21.263-39.657 21.263-40.109M21.933-40.379L23.748-40.379Q23.748-40.656 23.650-40.908Q23.553-41.161 23.355-41.317Q23.156-41.472 22.873-41.472Q22.596-41.472 22.382-41.314Q22.169-41.155 22.051-40.900Q21.933-40.645 21.933-40.379M24.852-40.085Q24.852-40.413 24.987-40.714Q25.122-41.014 25.357-41.235Q25.593-41.455 25.898-41.575Q26.202-41.695 26.526-41.695Q27.032-41.695 27.381-41.592Q27.730-41.490 27.730-41.114Q27.730-40.967 27.632-40.866Q27.535-40.765 27.388-40.765Q27.234-40.765 27.135-40.864Q27.036-40.963 27.036-41.114Q27.036-41.302 27.176-41.394Q26.974-41.445 26.533-41.445Q26.178-41.445 25.949-41.249Q25.720-41.052 25.619-40.743Q25.518-40.433 25.518-40.085Q25.518-39.736 25.645-39.430Q25.771-39.124 26.026-38.940Q26.280-38.755 26.636-38.755Q26.858-38.755 27.043-38.839Q27.227-38.923 27.362-39.078Q27.497-39.234 27.555-39.442Q27.569-39.497 27.624-39.497L27.736-39.497Q27.767-39.497 27.789-39.473Q27.812-39.449 27.812-39.415L27.812-39.394Q27.726-39.107 27.538-38.909Q27.350-38.711 27.085-38.608Q26.820-38.506 26.526-38.506Q26.096-38.506 25.708-38.712Q25.320-38.919 25.086-39.282Q24.852-39.644 24.852-40.085M28.974-39.408L28.974-40.912Q28.974-41.182 28.866-41.243Q28.758-41.305 28.447-41.305L28.447-41.585L29.555-41.660L29.555-39.428L29.555-39.408Q29.555-39.128 29.606-38.984Q29.657-38.841 29.799-38.784Q29.941-38.728 30.228-38.728Q30.481-38.728 30.686-38.868Q30.891-39.008 31.007-39.234Q31.124-39.459 31.124-39.709L31.124-40.912Q31.124-41.182 31.016-41.243Q30.908-41.305 30.597-41.305L30.597-41.585L31.705-41.660L31.705-39.247Q31.705-39.056 31.758-38.974Q31.811-38.892 31.911-38.873Q32.012-38.854 32.228-38.854L32.228-38.574L31.151-38.506L31.151-39.070Q31.042-38.888 30.896-38.765Q30.751-38.642 30.565-38.574Q30.378-38.506 30.177-38.506Q28.974-38.506 28.974-39.408M33.342-39.415L33.342-41.312L32.703-41.312L32.703-41.534Q33.021-41.534 33.238-41.744Q33.455-41.954 33.555-42.264Q33.656-42.573 33.656-42.881L33.923-42.881L33.923-41.592L35-41.592L35-41.312L33.923-41.312L33.923-39.428Q33.923-39.152 34.027-38.953Q34.131-38.755 34.391-38.755Q34.548-38.755 34.654-38.859Q34.760-38.964 34.810-39.117Q34.859-39.271 34.859-39.428L34.859-39.842L35.126-39.842L35.126-39.415Q35.126-39.189 35.027-38.979Q34.928-38.769 34.743-38.637Q34.559-38.506 34.330-38.506Q33.892-38.506 33.617-38.743Q33.342-38.981 33.342-39.415M35.895-40.109Q35.895-40.430 36.020-40.719Q36.145-41.008 36.370-41.231Q36.596-41.455 36.891-41.575Q37.187-41.695 37.505-41.695Q37.833-41.695 38.095-41.595Q38.356-41.496 38.532-41.314Q38.708-41.131 38.802-40.873Q38.896-40.615 38.896-40.283Q38.896-40.191 38.814-40.170L36.558-40.170L36.558-40.109Q36.558-39.521 36.842-39.138Q37.126-38.755 37.693-38.755Q38.014-38.755 38.283-38.948Q38.551-39.141 38.640-39.456Q38.647-39.497 38.722-39.511L38.814-39.511Q38.896-39.487 38.896-39.415Q38.896-39.408 38.889-39.381Q38.776-38.984 38.406-38.745Q38.035-38.506 37.611-38.506Q37.173-38.506 36.773-38.714Q36.374-38.923 36.134-39.290Q35.895-39.657 35.895-40.109M36.565-40.379L38.380-40.379Q38.380-40.656 38.283-40.908Q38.185-41.161 37.987-41.317Q37.789-41.472 37.505-41.472Q37.228-41.472 37.014-41.314Q36.801-41.155 36.683-40.900Q36.565-40.645 36.565-40.379\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(211.238 50.53)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.341-38.812L24.341-38.902Q24.380-39.109 24.591-39.133L24.899-39.133L24.899-42.902L24.591-42.902Q24.380-42.926 24.341-43.140L24.341-43.230Q24.380-43.437 24.591-43.461L27.798-43.461Q27.993-43.437 28.044-43.230L28.044-42.390Q27.993-42.176 27.798-42.148L27.653-42.148Q27.458-42.176 27.403-42.390L27.403-42.902L25.540-42.902L25.540-41.383L26.517-41.383L26.517-41.597Q26.567-41.804 26.767-41.832L26.911-41.832Q27.107-41.804 27.157-41.597L27.157-40.613Q27.107-40.398 26.911-40.375L26.767-40.375Q26.567-40.398 26.517-40.613L26.517-40.820L25.540-40.820L25.540-39.133L27.583-39.133L27.583-39.773Q27.634-39.980 27.829-40.008L27.974-40.008Q28.169-39.980 28.220-39.773L28.220-38.812Q28.169-38.594 27.974-38.574L24.591-38.574Q24.380-38.597 24.341-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 50.53)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 50.53)\">\u003Cpath d=\"M41.409-38.797L40.523-41.461L40.202-41.461Q40.003-41.484 39.952-41.703L39.952-41.789Q40.003-42 40.202-42.023L41.362-42.023Q41.558-42.004 41.608-41.789L41.608-41.703Q41.558-41.484 41.362-41.461L41.081-41.461L41.874-39.086L42.663-41.461L42.386-41.461Q42.187-41.484 42.136-41.703L42.136-41.789Q42.187-42 42.386-42.023L43.546-42.023Q43.741-42 43.792-41.789L43.792-41.703Q43.741-41.484 43.546-41.461L43.226-41.461L42.339-38.797Q42.296-38.683 42.194-38.609Q42.093-38.535 41.968-38.535L41.776-38.535Q41.659-38.535 41.556-38.607Q41.452-38.679 41.409-38.797M44.405-39.687Q44.405-40.133 44.819-40.390Q45.233-40.648 45.774-40.748Q46.316-40.847 46.823-40.855Q46.823-41.070 46.689-41.222Q46.554-41.375 46.347-41.451Q46.140-41.527 45.929-41.527Q45.585-41.527 45.425-41.504L45.425-41.445Q45.425-41.277 45.306-41.162Q45.187-41.047 45.023-41.047Q44.847-41.047 44.732-41.170Q44.616-41.293 44.616-41.461Q44.616-41.867 44.997-41.976Q45.378-42.086 45.937-42.086Q46.206-42.086 46.474-42.008Q46.741-41.929 46.966-41.779Q47.191-41.629 47.327-41.408Q47.464-41.187 47.464-40.910L47.464-39.191Q47.464-39.133 47.991-39.133Q48.187-39.113 48.237-38.902L48.237-38.812Q48.187-38.597 47.991-38.574L47.847-38.574Q47.503-38.574 47.274-38.621Q47.046-38.668 46.901-38.855Q46.441-38.535 45.733-38.535Q45.398-38.535 45.093-38.676Q44.788-38.816 44.597-39.078Q44.405-39.340 44.405-39.687M45.046-39.679Q45.046-39.406 45.288-39.250Q45.530-39.094 45.816-39.094Q46.034-39.094 46.267-39.152Q46.499-39.211 46.661-39.349Q46.823-39.488 46.823-39.711L46.823-40.301Q46.542-40.301 46.126-40.244Q45.710-40.187 45.378-40.049Q45.046-39.910 45.046-39.679M48.694-38.812L48.694-38.902Q48.745-39.109 48.941-39.133L50.046-39.133L50.046-42.902L48.941-42.902Q48.745-42.926 48.694-43.140L48.694-43.230Q48.745-43.437 48.941-43.461L50.437-43.461Q50.628-43.437 50.687-43.230L50.687-39.133L51.788-39.133Q51.987-39.109 52.038-38.902L52.038-38.812Q51.987-38.597 51.788-38.574L48.941-38.574Q48.745-38.597 48.694-38.812M52.659-38.812L52.659-38.902Q52.698-39.109 52.905-39.133L53.194-39.133L53.194-42.902L52.905-42.902Q52.698-42.926 52.659-43.140L52.659-43.230Q52.698-43.437 52.905-43.461L54.866-43.461Q55.136-43.461 55.376-43.365Q55.616-43.269 55.808-43.099Q55.999-42.929 56.108-42.701Q56.218-42.472 56.218-42.207Q56.218-41.840 55.978-41.551Q55.737-41.261 55.370-41.133Q55.651-41.070 55.884-40.896Q56.116-40.722 56.251-40.467Q56.386-40.211 56.386-39.926Q56.386-39.566 56.204-39.256Q56.023-38.945 55.708-38.760Q55.394-38.574 55.034-38.574L52.905-38.574Q52.698-38.597 52.659-38.812M53.835-40.840L53.835-39.133L54.866-39.133Q55.093-39.133 55.296-39.236Q55.499-39.340 55.624-39.519Q55.749-39.699 55.749-39.926Q55.749-40.156 55.648-40.365Q55.546-40.574 55.364-40.707Q55.183-40.840 54.956-40.840L53.835-40.840M53.835-42.902L53.835-41.398L54.698-41.398Q55.042-41.398 55.312-41.633Q55.581-41.867 55.581-42.207Q55.581-42.394 55.483-42.554Q55.386-42.715 55.220-42.808Q55.054-42.902 54.866-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 50.53)\">\u003Cpath d=\"M61.763-40.390L59.290-40.390Q59.212-40.402 59.163-40.451Q59.115-40.500 59.115-40.574Q59.115-40.648 59.163-40.697Q59.212-40.746 59.290-40.758L61.763-40.758L61.763-43.238Q61.790-43.406 61.947-43.406Q62.021-43.406 62.070-43.357Q62.119-43.308 62.130-43.238L62.130-40.758L64.603-40.758Q64.771-40.726 64.771-40.574Q64.771-40.422 64.603-40.390L62.130-40.390L62.130-37.910Q62.119-37.840 62.070-37.791Q62.021-37.742 61.947-37.742Q61.790-37.742 61.763-37.910\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 50.53)\">\u003Cpath d=\"M67.494-39.797Q67.494-40.293 67.820-40.658Q68.146-41.023 68.669-41.269L68.400-41.429Q68.103-41.613 67.919-41.908Q67.736-42.203 67.736-42.543Q67.736-42.937 67.954-43.248Q68.173-43.558 68.527-43.726Q68.880-43.894 69.263-43.894Q69.537-43.894 69.810-43.816Q70.083-43.738 70.300-43.590Q70.517-43.441 70.654-43.215Q70.790-42.988 70.790-42.695Q70.790-42.289 70.521-41.982Q70.251-41.676 69.829-41.461L70.279-41.191Q70.497-41.054 70.665-40.861Q70.833-40.668 70.931-40.429Q71.029-40.191 71.029-39.933Q71.029-39.594 70.878-39.306Q70.728-39.019 70.482-38.822Q70.236-38.625 69.912-38.515Q69.587-38.406 69.263-38.406Q68.833-38.406 68.427-38.568Q68.021-38.730 67.757-39.049Q67.494-39.367 67.494-39.797M67.982-39.797Q67.982-39.312 68.372-38.996Q68.763-38.679 69.263-38.679Q69.556-38.679 69.855-38.791Q70.154-38.902 70.347-39.121Q70.540-39.340 70.540-39.652Q70.540-39.883 70.400-40.094Q70.259-40.304 70.052-40.422L68.943-41.101Q68.525-40.898 68.253-40.562Q67.982-40.226 67.982-39.797M68.568-42.230L69.556-41.629Q69.904-41.812 70.130-42.082Q70.357-42.351 70.357-42.695Q70.357-42.914 70.265-43.090Q70.173-43.265 70.019-43.388Q69.865-43.511 69.663-43.582Q69.462-43.652 69.263-43.652Q68.857-43.652 68.511-43.441Q68.165-43.230 68.165-42.847Q68.165-42.664 68.277-42.502Q68.388-42.340 68.568-42.230\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743 21.746H438.21\"\u002F>\u003Cg transform=\"translate(167.004 74.266)\">\u003Cpath d=\"M13.576-38.574L11.839-38.574L11.839-38.854Q12.561-38.854 12.561-39.254L12.561-42.864Q12.561-43.075 11.839-43.075L11.839-43.356L13.196-43.356Q13.292-43.356 13.343-43.257L15.018-39.282L16.690-43.257Q16.737-43.356 16.836-43.356L18.187-43.356L18.187-43.075Q17.465-43.075 17.465-42.864L17.465-39.063Q17.465-38.854 18.187-38.854L18.187-38.574L16.129-38.574L16.129-38.854Q16.850-38.854 16.850-39.063L16.850-43.075L14.998-38.673Q14.950-38.574 14.840-38.574Q14.728-38.574 14.680-38.673L12.855-43.004L12.855-39.254Q12.855-38.854 13.576-38.854L13.576-38.574M18.880-40.109Q18.880-40.430 19.005-40.719Q19.130-41.008 19.356-41.231Q19.581-41.455 19.877-41.575Q20.172-41.695 20.490-41.695Q20.818-41.695 21.080-41.595Q21.341-41.496 21.517-41.314Q21.693-41.131 21.787-40.873Q21.881-40.615 21.881-40.283Q21.881-40.191 21.799-40.170L19.544-40.170L19.544-40.109Q19.544-39.521 19.827-39.138Q20.111-38.755 20.678-38.755Q21-38.755 21.268-38.948Q21.536-39.141 21.625-39.456Q21.632-39.497 21.707-39.511L21.799-39.511Q21.881-39.487 21.881-39.415Q21.881-39.408 21.875-39.381Q21.762-38.984 21.391-38.745Q21.020-38.506 20.596-38.506Q20.159-38.506 19.759-38.714Q19.359-38.923 19.120-39.290Q18.880-39.657 18.880-40.109M19.550-40.379L21.365-40.379Q21.365-40.656 21.268-40.908Q21.170-41.161 20.972-41.317Q20.774-41.472 20.490-41.472Q20.213-41.472 20-41.314Q19.786-41.155 19.668-40.900Q19.550-40.645 19.550-40.379M24.151-38.574L22.517-38.574L22.517-38.854Q22.746-38.854 22.895-38.888Q23.044-38.923 23.044-39.063L23.044-40.912Q23.044-41.182 22.936-41.243Q22.828-41.305 22.517-41.305L22.517-41.585L23.577-41.660L23.577-41.011Q23.748-41.319 24.052-41.490Q24.356-41.660 24.701-41.660Q25.101-41.660 25.378-41.520Q25.655-41.380 25.740-41.032Q25.908-41.325 26.207-41.493Q26.506-41.660 26.851-41.660Q27.357-41.660 27.641-41.437Q27.924-41.213 27.924-40.717L27.924-39.063Q27.924-38.926 28.073-38.890Q28.222-38.854 28.447-38.854L28.447-38.574L26.817-38.574L26.817-38.854Q27.043-38.854 27.193-38.890Q27.343-38.926 27.343-39.063L27.343-40.703Q27.343-41.038 27.224-41.238Q27.104-41.438 26.790-41.438Q26.520-41.438 26.285-41.302Q26.051-41.165 25.913-40.931Q25.774-40.697 25.774-40.423L25.774-39.063Q25.774-38.926 25.923-38.890Q26.072-38.854 26.297-38.854L26.297-38.574L24.667-38.574L24.667-38.854Q24.896-38.854 25.045-38.888Q25.193-38.923 25.193-39.063L25.193-40.703Q25.193-41.038 25.074-41.238Q24.954-41.438 24.640-41.438Q24.370-41.438 24.136-41.302Q23.901-41.165 23.763-40.931Q23.625-40.697 23.625-40.423L23.625-39.063Q23.625-38.926 23.775-38.890Q23.925-38.854 24.151-38.854L24.151-38.574M28.994-40.057Q28.994-40.399 29.129-40.698Q29.264-40.997 29.503-41.221Q29.743-41.445 30.061-41.570Q30.378-41.695 30.710-41.695Q31.154-41.695 31.554-41.479Q31.954-41.264 32.188-40.886Q32.422-40.509 32.422-40.057Q32.422-39.716 32.281-39.432Q32.139-39.148 31.894-38.941Q31.650-38.735 31.341-38.620Q31.031-38.506 30.710-38.506Q30.279-38.506 29.878-38.707Q29.476-38.909 29.235-39.261Q28.994-39.613 28.994-40.057M30.710-38.755Q31.312-38.755 31.535-39.133Q31.759-39.511 31.759-40.143Q31.759-40.755 31.525-41.114Q31.291-41.472 30.710-41.472Q29.657-41.472 29.657-40.143Q29.657-39.511 29.883-39.133Q30.108-38.755 30.710-38.755M34.767-38.574L33.031-38.574L33.031-38.854Q33.260-38.854 33.409-38.888Q33.557-38.923 33.557-39.063L33.557-40.912Q33.557-41.182 33.450-41.243Q33.342-41.305 33.031-41.305L33.031-41.585L34.060-41.660L34.060-40.953Q34.190-41.261 34.432-41.460Q34.675-41.660 34.993-41.660Q35.211-41.660 35.382-41.536Q35.553-41.411 35.553-41.199Q35.553-41.062 35.454-40.963Q35.355-40.864 35.222-40.864Q35.085-40.864 34.986-40.963Q34.887-41.062 34.887-41.199Q34.887-41.339 34.986-41.438Q34.695-41.438 34.495-41.242Q34.295-41.045 34.203-40.751Q34.111-40.457 34.111-40.177L34.111-39.063Q34.111-38.854 34.767-38.854L34.767-38.574M36.473-37.439Q36.603-37.371 36.739-37.371Q36.910-37.371 37.061-37.460Q37.211-37.549 37.322-37.694Q37.433-37.839 37.512-38.007L37.775-38.574L36.606-41.100Q36.531-41.247 36.401-41.279Q36.271-41.312 36.039-41.312L36.039-41.592L37.560-41.592L37.560-41.312Q37.211-41.312 37.211-41.165Q37.214-41.144 37.216-41.127Q37.218-41.110 37.218-41.100L38.076-39.241L38.848-40.912Q38.882-40.980 38.882-41.059Q38.882-41.172 38.799-41.242Q38.715-41.312 38.602-41.312L38.602-41.592L39.798-41.592L39.798-41.312Q39.580-41.312 39.407-41.208Q39.234-41.103 39.142-40.912L37.806-38.007Q37.635-37.637 37.365-37.391Q37.095-37.145 36.739-37.145Q36.469-37.145 36.251-37.311Q36.032-37.477 36.032-37.740Q36.032-37.877 36.124-37.966Q36.216-38.054 36.356-38.054Q36.493-38.054 36.582-37.966Q36.671-37.877 36.671-37.740Q36.671-37.637 36.618-37.559Q36.565-37.480 36.473-37.439\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M13.075-38.797L12.189-41.461L11.868-41.461Q11.669-41.484 11.618-41.703L11.618-41.789Q11.669-42 11.868-42.023L13.028-42.023Q13.224-42.004 13.274-41.789L13.274-41.703Q13.224-41.484 13.028-41.461L12.747-41.461L13.540-39.086L14.329-41.461L14.052-41.461Q13.853-41.484 13.802-41.703L13.802-41.789Q13.853-42 14.052-42.023L15.212-42.023Q15.407-42 15.458-41.789L15.458-41.703Q15.407-41.484 15.212-41.461L14.892-41.461L14.005-38.797Q13.962-38.683 13.860-38.609Q13.759-38.535 13.634-38.535L13.442-38.535Q13.325-38.535 13.222-38.607Q13.118-38.679 13.075-38.797M16.071-39.687Q16.071-40.133 16.485-40.390Q16.899-40.648 17.440-40.748Q17.982-40.847 18.489-40.855Q18.489-41.070 18.355-41.222Q18.220-41.375 18.013-41.451Q17.806-41.527 17.595-41.527Q17.251-41.527 17.091-41.504L17.091-41.445Q17.091-41.277 16.972-41.162Q16.853-41.047 16.689-41.047Q16.513-41.047 16.398-41.170Q16.282-41.293 16.282-41.461Q16.282-41.867 16.663-41.976Q17.044-42.086 17.603-42.086Q17.872-42.086 18.140-42.008Q18.407-41.929 18.632-41.779Q18.857-41.629 18.993-41.408Q19.130-41.187 19.130-40.910L19.130-39.191Q19.130-39.133 19.657-39.133Q19.853-39.113 19.903-38.902L19.903-38.812Q19.853-38.597 19.657-38.574L19.513-38.574Q19.169-38.574 18.940-38.621Q18.712-38.668 18.567-38.855Q18.107-38.535 17.399-38.535Q17.064-38.535 16.759-38.676Q16.454-38.816 16.263-39.078Q16.071-39.340 16.071-39.687M16.712-39.679Q16.712-39.406 16.954-39.250Q17.196-39.094 17.482-39.094Q17.700-39.094 17.933-39.152Q18.165-39.211 18.327-39.349Q18.489-39.488 18.489-39.711L18.489-40.301Q18.208-40.301 17.792-40.244Q17.376-40.187 17.044-40.049Q16.712-39.910 16.712-39.679M20.360-38.812L20.360-38.902Q20.411-39.109 20.607-39.133L21.712-39.133L21.712-42.902L20.607-42.902Q20.411-42.926 20.360-43.140L20.360-43.230Q20.411-43.437 20.607-43.461L22.103-43.461Q22.294-43.437 22.353-43.230L22.353-39.133L23.454-39.133Q23.653-39.109 23.704-38.902L23.704-38.812Q23.653-38.597 23.454-38.574L20.607-38.574Q20.411-38.597 20.360-38.812M24.271-38.812L24.271-38.902Q24.321-39.109 24.517-39.133L24.692-39.133L24.692-42.902L24.517-42.902Q24.321-42.926 24.271-43.140L24.271-43.230Q24.321-43.437 24.517-43.461L25.204-43.461Q25.333-43.461 25.433-43.385Q25.532-43.308 25.571-43.199Q25.603-43.094 25.825-42.404Q26.048-41.715 26.163-41.318Q26.278-40.922 26.278-40.847Q26.286-40.926 26.341-41.123Q26.396-41.320 26.509-41.691Q26.622-42.062 26.769-42.525Q26.915-42.988 26.982-43.199Q27.021-43.308 27.124-43.385Q27.228-43.461 27.349-43.461L28.036-43.461Q28.235-43.437 28.286-43.230L28.286-43.140Q28.235-42.926 28.036-42.902L27.860-42.902L27.860-39.133L28.036-39.133Q28.235-39.109 28.286-38.902L28.286-38.812Q28.235-38.597 28.036-38.574L27.157-38.574Q26.962-38.597 26.911-38.812L26.911-38.902Q26.962-39.109 27.157-39.133L27.333-39.133L27.333-42.820Q27.333-42.761 27.249-42.463Q27.165-42.164 27.062-41.832Q26.958-41.500 26.827-41.092Q26.696-40.683 26.630-40.469Q26.591-40.355 26.491-40.281Q26.392-40.207 26.278-40.207Q26.165-40.207 26.065-40.281Q25.966-40.355 25.927-40.469Q25.860-40.683 25.726-41.101Q25.591-41.519 25.454-41.963Q25.317-42.406 25.273-42.570Q25.228-42.734 25.220-42.820L25.220-39.133L25.396-39.133Q25.595-39.109 25.646-38.902L25.646-38.812Q25.595-38.597 25.396-38.574L24.517-38.574Q24.321-38.597 24.271-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M36.741-39.551L31.428-39.551Q31.350-39.558 31.301-39.607Q31.253-39.656 31.253-39.734Q31.253-39.804 31.300-39.855Q31.346-39.906 31.428-39.918L36.741-39.918Q36.815-39.906 36.862-39.855Q36.909-39.804 36.909-39.734Q36.909-39.656 36.860-39.607Q36.811-39.558 36.741-39.551M36.741-41.238L31.428-41.238Q31.350-41.246 31.301-41.295Q31.253-41.344 31.253-41.422Q31.253-41.492 31.300-41.543Q31.346-41.594 31.428-41.605L36.741-41.605Q36.815-41.594 36.862-41.543Q36.909-41.492 36.909-41.422Q36.909-41.344 36.860-41.295Q36.811-41.246 36.741-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M41.991-38.574L40.273-38.574Q40.233-38.574 40.206-38.615Q40.179-38.656 40.179-38.703L40.202-38.804Q40.210-38.855 40.296-38.871Q41.026-38.871 41.151-39.398L42.179-43.496Q42.202-43.566 42.202-43.629Q42.202-43.691 42.136-43.711Q41.991-43.742 41.569-43.742Q41.464-43.773 41.464-43.871L41.495-43.972Q41.507-44.019 41.585-44.039L42.983-44.039Q43.042-44.039 43.079-44.010Q43.116-43.980 43.120-43.926L43.831-39.351L46.831-43.926Q46.909-44.039 47.026-44.039L48.370-44.039Q48.417-44.027 48.444-43.996Q48.472-43.965 48.472-43.918L48.448-43.812Q48.429-43.758 48.355-43.742Q47.913-43.742 47.753-43.703Q47.605-43.668 47.546-43.437L46.464-39.117Q46.448-39.023 46.448-38.980Q46.448-38.922 46.515-38.902Q46.655-38.871 47.081-38.871Q47.179-38.844 47.179-38.750L47.151-38.644Q47.144-38.594 47.066-38.574L44.983-38.574Q44.944-38.574 44.917-38.615Q44.890-38.656 44.890-38.703L44.913-38.804Q44.921-38.855 45.011-38.871Q45.448-38.871 45.607-38.910Q45.765-38.949 45.808-39.176L46.944-43.719L43.648-38.687Q43.581-38.574 43.448-38.574Q43.316-38.574 43.304-38.687L42.530-43.652L41.448-39.344Q41.433-39.242 41.433-39.191Q41.433-38.992 41.597-38.931Q41.761-38.871 42.011-38.871Q42.105-38.844 42.105-38.750L42.081-38.644Q42.073-38.594 41.991-38.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M48.294-38.386Q48.294-38.773 48.555-39.044Q48.815-39.315 49.217-39.484L49.044-39.581Q48.795-39.728 48.641-39.946Q48.487-40.164 48.487-40.434Q48.487-40.744 48.673-40.977Q48.859-41.210 49.152-41.332Q49.445-41.453 49.747-41.453Q50.037-41.453 50.329-41.355Q50.620-41.257 50.813-41.052Q51.007-40.847 51.007-40.548Q51.007-40.229 50.797-40.009Q50.588-39.789 50.245-39.628L50.567-39.455Q50.849-39.291 51.023-39.045Q51.197-38.799 51.197-38.494Q51.197-38.131 50.982-37.869Q50.767-37.607 50.430-37.472Q50.093-37.337 49.747-37.337Q49.404-37.337 49.070-37.451Q48.736-37.566 48.515-37.801Q48.294-38.037 48.294-38.386M48.701-38.392Q48.701-38.017 49.031-37.797Q49.360-37.577 49.747-37.577Q49.981-37.577 50.222-37.652Q50.462-37.727 50.626-37.885Q50.790-38.043 50.790-38.286Q50.790-38.456 50.682-38.595Q50.573-38.734 50.412-38.825L49.475-39.341Q49.149-39.203 48.925-38.957Q48.701-38.711 48.701-38.392M49.123-40.246L49.999-39.766Q50.646-40.082 50.646-40.548Q50.646-40.762 50.510-40.919Q50.374-41.075 50.167-41.153Q49.961-41.231 49.747-41.231Q49.425-41.231 49.135-41.091Q48.845-40.952 48.845-40.662Q48.845-40.431 49.123-40.246\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M54.251-36.574L53.075-36.574L53.075-44.574L54.251-44.574L54.251-44.207L53.442-44.207L53.442-36.941L54.251-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M56.100-38.797L55.214-41.461L54.893-41.461Q54.694-41.484 54.643-41.703L54.643-41.789Q54.694-42 54.893-42.023L56.053-42.023Q56.249-42.004 56.299-41.789L56.299-41.703Q56.249-41.484 56.053-41.461L55.772-41.461L56.565-39.086L57.354-41.461L57.077-41.461Q56.878-41.484 56.827-41.703L56.827-41.789Q56.878-42 57.077-42.023L58.237-42.023Q58.432-42 58.483-41.789L58.483-41.703Q58.432-41.484 58.237-41.461L57.917-41.461L57.030-38.797Q56.987-38.683 56.885-38.609Q56.784-38.535 56.659-38.535L56.467-38.535Q56.350-38.535 56.247-38.607Q56.143-38.679 56.100-38.797M59.096-39.687Q59.096-40.133 59.510-40.390Q59.924-40.648 60.465-40.748Q61.007-40.847 61.514-40.855Q61.514-41.070 61.380-41.222Q61.245-41.375 61.038-41.451Q60.831-41.527 60.620-41.527Q60.276-41.527 60.116-41.504L60.116-41.445Q60.116-41.277 59.997-41.162Q59.878-41.047 59.714-41.047Q59.538-41.047 59.423-41.170Q59.307-41.293 59.307-41.461Q59.307-41.867 59.688-41.976Q60.069-42.086 60.628-42.086Q60.897-42.086 61.165-42.008Q61.432-41.929 61.657-41.779Q61.882-41.629 62.018-41.408Q62.155-41.187 62.155-40.910L62.155-39.191Q62.155-39.133 62.682-39.133Q62.878-39.113 62.928-38.902L62.928-38.812Q62.878-38.597 62.682-38.574L62.538-38.574Q62.194-38.574 61.965-38.621Q61.737-38.668 61.592-38.855Q61.132-38.535 60.424-38.535Q60.089-38.535 59.784-38.676Q59.479-38.816 59.288-39.078Q59.096-39.340 59.096-39.687M59.737-39.679Q59.737-39.406 59.979-39.250Q60.221-39.094 60.507-39.094Q60.725-39.094 60.958-39.152Q61.190-39.211 61.352-39.349Q61.514-39.488 61.514-39.711L61.514-40.301Q61.233-40.301 60.817-40.244Q60.401-40.187 60.069-40.049Q59.737-39.910 59.737-39.679M63.385-38.812L63.385-38.902Q63.436-39.109 63.632-39.133L64.737-39.133L64.737-42.902L63.632-42.902Q63.436-42.926 63.385-43.140L63.385-43.230Q63.436-43.437 63.632-43.461L65.128-43.461Q65.319-43.437 65.378-43.230L65.378-39.133L66.479-39.133Q66.678-39.109 66.729-38.902L66.729-38.812Q66.678-38.597 66.479-38.574L63.632-38.574Q63.436-38.597 63.385-38.812M67.413-38.812L67.413-38.902Q67.471-39.113 67.663-39.133L67.885-39.133L68.839-43.316Q68.862-43.433 68.958-43.508Q69.053-43.582 69.167-43.582L69.440-43.582Q69.553-43.582 69.649-43.506Q69.745-43.429 69.768-43.316L70.717-39.133L70.944-39.133Q71.151-39.109 71.190-38.902L71.190-38.812Q71.139-38.597 70.944-38.574L69.862-38.574Q69.667-38.597 69.616-38.812L69.616-38.902Q69.667-39.109 69.862-39.133L70.061-39.133Q69.932-39.699 69.909-39.781L68.694-39.781Q68.651-39.597 68.542-39.133L68.741-39.133Q68.940-39.109 68.991-38.902L68.991-38.812Q68.940-38.597 68.741-38.574L67.663-38.574Q67.456-38.597 67.413-38.812M68.815-40.344L69.792-40.344Q69.311-42.476 69.311-42.820L69.303-42.820Q69.303-42.636 69.163-41.953Q69.022-41.269 68.815-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 74.555)\">\u003Cpath d=\"M72.803-36.574L71.628-36.574L71.628-36.941L72.436-36.941L72.436-44.207L71.628-44.207L71.628-44.574L72.803-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743 45.931H438.21\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(157.518 99.17)\">\u003Cpath d=\"M13.812-38.533L12.260-42.864Q12.198-43.007 12.036-43.041Q11.874-43.075 11.621-43.075L11.621-43.356L13.548-43.356L13.548-43.075Q12.967-43.075 12.967-42.901Q12.967-42.881 12.974-42.864L14.198-39.428L15.305-42.515L15.179-42.864Q15.121-43.007 14.955-43.041Q14.789-43.075 14.540-43.075L14.540-43.356L16.467-43.356L16.467-43.075Q15.886-43.075 15.886-42.901L15.886-42.864L17.117-39.428L18.272-42.676Q18.286-42.717 18.286-42.741Q18.286-42.915 18.093-42.995Q17.899-43.075 17.691-43.075L17.691-43.356L19.267-43.356L19.267-43.075Q19.017-43.075 18.826-42.981Q18.634-42.887 18.559-42.676L17.076-38.533Q17.042-38.434 16.942-38.434L16.864-38.434Q16.765-38.434 16.724-38.533L15.445-42.122L14.164-38.533Q14.147-38.489 14.109-38.461Q14.071-38.434 14.023-38.434L13.945-38.434Q13.853-38.434 13.812-38.533\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.518 99.17)\">\u003Cpath d=\"M20.893-38.574L19.157-38.574L19.157-38.854Q19.386-38.854 19.535-38.888Q19.683-38.923 19.683-39.063L19.683-40.912Q19.683-41.182 19.576-41.243Q19.468-41.305 19.157-41.305L19.157-41.585L20.186-41.660L20.186-40.953Q20.316-41.261 20.558-41.460Q20.801-41.660 21.119-41.660Q21.338-41.660 21.509-41.536Q21.680-41.411 21.680-41.199Q21.680-41.062 21.580-40.963Q21.481-40.864 21.348-40.864Q21.211-40.864 21.112-40.963Q21.013-41.062 21.013-41.199Q21.013-41.339 21.112-41.438Q20.822-41.438 20.622-41.242Q20.422-41.045 20.329-40.751Q20.237-40.457 20.237-40.177L20.237-39.063Q20.237-38.854 20.893-38.854L20.893-38.574M23.881-38.574L22.329-38.574L22.329-38.854Q22.555-38.854 22.703-38.888Q22.852-38.923 22.852-39.063L22.852-40.912Q22.852-41.100 22.804-41.184Q22.756-41.267 22.659-41.286Q22.561-41.305 22.350-41.305L22.350-41.585L23.406-41.660L23.406-39.063Q23.406-38.923 23.537-38.888Q23.669-38.854 23.881-38.854L23.881-38.574M22.609-42.881Q22.609-43.052 22.732-43.171Q22.855-43.291 23.026-43.291Q23.194-43.291 23.317-43.171Q23.440-43.052 23.440-42.881Q23.440-42.706 23.317-42.583Q23.194-42.460 23.026-42.460Q22.855-42.460 22.732-42.583Q22.609-42.706 22.609-42.881M25.053-39.415L25.053-41.312L24.414-41.312L24.414-41.534Q24.732-41.534 24.949-41.744Q25.166-41.954 25.267-42.264Q25.368-42.573 25.368-42.881L25.634-42.881L25.634-41.592L26.711-41.592L26.711-41.312L25.634-41.312L25.634-39.428Q25.634-39.152 25.738-38.953Q25.843-38.755 26.102-38.755Q26.260-38.755 26.366-38.859Q26.472-38.964 26.521-39.117Q26.571-39.271 26.571-39.428L26.571-39.842L26.837-39.842L26.837-39.415Q26.837-39.189 26.738-38.979Q26.639-38.769 26.454-38.637Q26.270-38.506 26.041-38.506Q25.603-38.506 25.328-38.743Q25.053-38.981 25.053-39.415M27.606-40.109Q27.606-40.430 27.731-40.719Q27.856-41.008 28.081-41.231Q28.307-41.455 28.603-41.575Q28.898-41.695 29.216-41.695Q29.544-41.695 29.806-41.595Q30.067-41.496 30.243-41.314Q30.419-41.131 30.513-40.873Q30.607-40.615 30.607-40.283Q30.607-40.191 30.525-40.170L28.269-40.170L28.269-40.109Q28.269-39.521 28.553-39.138Q28.837-38.755 29.404-38.755Q29.725-38.755 29.994-38.948Q30.262-39.141 30.351-39.456Q30.358-39.497 30.433-39.511L30.525-39.511Q30.607-39.487 30.607-39.415Q30.607-39.408 30.600-39.381Q30.488-38.984 30.117-38.745Q29.746-38.506 29.322-38.506Q28.885-38.506 28.485-38.714Q28.085-38.923 27.846-39.290Q27.606-39.657 27.606-40.109M28.276-40.379L30.091-40.379Q30.091-40.656 29.994-40.908Q29.896-41.161 29.698-41.317Q29.500-41.472 29.216-41.472Q28.939-41.472 28.726-41.314Q28.512-41.155 28.394-40.900Q28.276-40.645 28.276-40.379M33.079-39.828L31.021-39.828L31.021-40.331L33.079-40.331L33.079-39.828M34.688-38.574L34.422-38.574L34.422-42.682Q34.422-42.952 34.314-43.014Q34.206-43.075 33.895-43.075L33.895-43.356L34.975-43.431L34.975-41.261Q35.184-41.452 35.469-41.556Q35.755-41.660 36.052-41.660Q36.370-41.660 36.667-41.539Q36.965-41.418 37.187-41.202Q37.409-40.987 37.536-40.702Q37.662-40.416 37.662-40.085Q37.662-39.640 37.423-39.276Q37.183-38.912 36.790-38.709Q36.397-38.506 35.953-38.506Q35.758-38.506 35.569-38.562Q35.379-38.618 35.218-38.723Q35.058-38.827 34.917-38.988L34.688-38.574M35.003-40.919L35.003-39.302Q35.140-39.042 35.381-38.885Q35.621-38.728 35.898-38.728Q36.192-38.728 36.404-38.835Q36.616-38.943 36.749-39.135Q36.883-39.326 36.941-39.565Q36.999-39.804 36.999-40.085Q36.999-40.444 36.905-40.748Q36.811-41.052 36.584-41.245Q36.356-41.438 35.991-41.438Q35.690-41.438 35.423-41.302Q35.157-41.165 35.003-40.919M38.356-39.302Q38.356-39.634 38.580-39.861Q38.804-40.088 39.147-40.216Q39.491-40.345 39.863-40.397Q40.236-40.450 40.540-40.450L40.540-40.703Q40.540-40.908 40.432-41.088Q40.325-41.267 40.143-41.370Q39.962-41.472 39.754-41.472Q39.347-41.472 39.111-41.380Q39.200-41.343 39.246-41.259Q39.292-41.175 39.292-41.073Q39.292-40.977 39.246-40.898Q39.200-40.820 39.120-40.775Q39.039-40.731 38.951-40.731Q38.800-40.731 38.699-40.828Q38.599-40.926 38.599-41.073Q38.599-41.695 39.754-41.695Q39.966-41.695 40.215-41.631Q40.465-41.568 40.666-41.449Q40.868-41.329 40.995-41.144Q41.121-40.960 41.121-40.717L41.121-39.141Q41.121-39.025 41.183-38.929Q41.244-38.834 41.357-38.834Q41.466-38.834 41.531-38.928Q41.596-39.022 41.596-39.141L41.596-39.589L41.863-39.589L41.863-39.141Q41.863-38.871 41.635-38.706Q41.408-38.540 41.128-38.540Q40.919-38.540 40.783-38.694Q40.646-38.847 40.622-39.063Q40.475-38.796 40.193-38.651Q39.911-38.506 39.586-38.506Q39.309-38.506 39.026-38.581Q38.742-38.656 38.549-38.835Q38.356-39.015 38.356-39.302M38.971-39.302Q38.971-39.128 39.072-38.998Q39.173-38.868 39.328-38.798Q39.484-38.728 39.648-38.728Q39.867-38.728 40.075-38.825Q40.284-38.923 40.412-39.104Q40.540-39.285 40.540-39.511L40.540-40.239Q40.215-40.239 39.850-40.148Q39.484-40.057 39.227-39.845Q38.971-39.634 38.971-39.302M42.280-40.085Q42.280-40.413 42.415-40.714Q42.550-41.014 42.786-41.235Q43.021-41.455 43.326-41.575Q43.630-41.695 43.954-41.695Q44.460-41.695 44.809-41.592Q45.158-41.490 45.158-41.114Q45.158-40.967 45.060-40.866Q44.963-40.765 44.816-40.765Q44.662-40.765 44.563-40.864Q44.464-40.963 44.464-41.114Q44.464-41.302 44.604-41.394Q44.402-41.445 43.961-41.445Q43.606-41.445 43.377-41.249Q43.148-41.052 43.047-40.743Q42.946-40.433 42.946-40.085Q42.946-39.736 43.073-39.430Q43.199-39.124 43.454-38.940Q43.708-38.755 44.064-38.755Q44.286-38.755 44.471-38.839Q44.655-38.923 44.790-39.078Q44.925-39.234 44.983-39.442Q44.997-39.497 45.052-39.497L45.164-39.497Q45.195-39.497 45.217-39.473Q45.240-39.449 45.240-39.415L45.240-39.394Q45.154-39.107 44.966-38.909Q44.778-38.711 44.513-38.608Q44.248-38.506 43.954-38.506Q43.524-38.506 43.136-38.712Q42.748-38.919 42.514-39.282Q42.280-39.644 42.280-40.085\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.518 99.17)\">\u003Cpath d=\"M47.247-38.574L45.664-38.574L45.664-38.854Q45.893-38.854 46.042-38.888Q46.190-38.923 46.190-39.063L46.190-42.682Q46.190-42.952 46.083-43.014Q45.975-43.075 45.664-43.075L45.664-43.356L46.744-43.431L46.744-40.143L47.729-40.912Q47.934-41.049 47.934-41.199Q47.934-41.243 47.893-41.278Q47.852-41.312 47.807-41.312L47.807-41.592L49.171-41.592L49.171-41.312Q48.682-41.312 48.163-40.912L47.606-40.478L48.583-39.254Q48.785-39.008 48.918-38.931Q49.051-38.854 49.338-38.854L49.338-38.574L47.906-38.574L47.906-38.854Q48.094-38.854 48.094-38.967Q48.094-39.063 47.940-39.254L47.206-40.163L46.724-39.784L46.724-39.063Q46.724-38.926 46.872-38.890Q47.021-38.854 47.247-38.854\" 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-size=\"8\">\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M14.044-38.574L11.907-38.574Q11.872-38.574 11.841-38.615Q11.810-38.656 11.810-38.703L11.833-38.804Q11.845-38.855 11.931-38.871Q12.372-38.871 12.530-38.910Q12.689-38.949 12.732-39.176L13.810-43.496Q13.833-43.566 13.833-43.629Q13.833-43.691 13.771-43.711Q13.626-43.742 13.204-43.742Q13.099-43.769 13.099-43.871L13.130-43.972Q13.138-44.019 13.220-44.039L15.732-44.039Q16.138-44.039 16.581-43.916Q17.024-43.793 17.329-43.517Q17.634-43.242 17.634-42.820Q17.634-42.433 17.364-42.117Q17.095-41.801 16.696-41.592Q16.298-41.383 15.923-41.293Q16.232-41.168 16.429-40.929Q16.626-40.691 16.626-40.375Q16.626-40.332 16.624-40.304Q16.622-40.277 16.618-40.246L16.540-39.551Q16.509-39.261 16.509-39.140Q16.509-38.926 16.577-38.795Q16.646-38.664 16.853-38.664Q17.107-38.664 17.302-38.888Q17.497-39.113 17.564-39.390Q17.571-39.437 17.657-39.453L17.739-39.453Q17.833-39.426 17.833-39.344Q17.833-39.336 17.825-39.301Q17.774-39.086 17.630-38.875Q17.485-38.664 17.278-38.535Q17.071-38.406 16.845-38.406Q16.540-38.406 16.271-38.492Q16.001-38.578 15.829-38.777Q15.657-38.976 15.657-39.285Q15.657-39.394 15.700-39.574L15.876-40.269Q15.899-40.390 15.899-40.484Q15.899-40.820 15.638-41.002Q15.376-41.183 15.013-41.183L13.962-41.183L13.442-39.117Q13.427-39.023 13.427-38.980Q13.427-38.941 13.440-38.928Q13.454-38.914 13.489-38.902Q13.634-38.871 14.060-38.871Q14.153-38.844 14.153-38.750L14.130-38.644Q14.122-38.594 14.044-38.574M14.524-43.437L14.028-41.437L14.970-41.437Q15.314-41.437 15.630-41.506Q15.946-41.574 16.220-41.742Q16.407-41.867 16.544-42.068Q16.681-42.269 16.749-42.502Q16.817-42.734 16.817-42.957Q16.817-43.414 16.450-43.578Q16.083-43.742 15.548-43.742L14.931-43.742Q14.759-43.742 14.696-43.728Q14.634-43.715 14.601-43.656Q14.567-43.597 14.524-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M20.038-36.574L18.862-36.574L18.862-44.574L20.038-44.574L20.038-44.207L19.229-44.207L19.229-36.941L20.038-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M21.416-38.308Q21.416-38.371 21.447-38.414L25.193-43.672Q24.736-43.437 24.169-43.437Q23.517-43.437 22.912-43.758Q23.056-43.410 23.056-42.965Q23.056-42.605 22.935-42.234Q22.814-41.863 22.564-41.607Q22.314-41.351 21.951-41.351Q21.564-41.351 21.281-41.595Q20.998-41.840 20.851-42.213Q20.705-42.586 20.705-42.965Q20.705-43.344 20.851-43.715Q20.998-44.086 21.281-44.330Q21.564-44.574 21.951-44.574Q22.267-44.574 22.537-44.336Q22.873-44.031 23.302-43.859Q23.732-43.687 24.169-43.687Q24.662-43.687 25.080-43.900Q25.498-44.113 25.798-44.511Q25.841-44.574 25.935-44.574Q26.009-44.574 26.064-44.519Q26.119-44.465 26.119-44.390Q26.119-44.328 26.087-44.285L21.744-38.191Q21.697-38.125 21.599-38.125Q21.517-38.125 21.466-38.176Q21.416-38.226 21.416-38.308M21.951-41.605Q22.224-41.605 22.412-41.830Q22.599-42.054 22.687-42.377Q22.775-42.699 22.775-42.965Q22.775-43.222 22.687-43.545Q22.599-43.867 22.412-44.092Q22.224-44.316 21.951-44.316Q21.564-44.316 21.421-43.888Q21.279-43.461 21.279-42.965Q21.279-42.457 21.419-42.031Q21.560-41.605 21.951-41.605M25.728-38.125Q25.341-38.125 25.058-38.371Q24.775-38.617 24.627-38.990Q24.478-39.363 24.478-39.742Q24.478-40.015 24.564-40.303Q24.650-40.590 24.804-40.824Q24.959-41.058 25.195-41.205Q25.431-41.351 25.728-41.351Q26.009-41.351 26.216-41.199Q26.423-41.047 26.562-40.804Q26.701-40.562 26.767-40.281Q26.834-40 26.834-39.742Q26.834-39.383 26.712-39.010Q26.591-38.636 26.341-38.381Q26.091-38.125 25.728-38.125M25.728-38.383Q26.002-38.383 26.189-38.607Q26.377-38.832 26.464-39.154Q26.552-39.476 26.552-39.742Q26.552-40 26.464-40.322Q26.377-40.644 26.189-40.869Q26.002-41.094 25.728-41.094Q25.337-41.094 25.197-40.664Q25.056-40.234 25.056-39.742Q25.056-39.234 25.193-38.808Q25.330-38.383 25.728-38.383\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M27.538-38.812L27.538-38.902Q27.596-39.109 27.788-39.133L28.499-39.133L28.499-41.461L27.788-41.461Q27.592-41.484 27.538-41.703L27.538-41.789Q27.596-42 27.788-42.023L28.889-42.023Q29.088-42.004 29.139-41.789L29.139-41.461Q29.401-41.746 29.756-41.904Q30.112-42.062 30.499-42.062Q30.792-42.062 31.026-41.928Q31.260-41.793 31.260-41.527Q31.260-41.359 31.151-41.242Q31.042-41.125 30.874-41.125Q30.721-41.125 30.606-41.236Q30.491-41.347 30.491-41.504Q30.116-41.504 29.801-41.303Q29.487-41.101 29.313-40.767Q29.139-40.433 29.139-40.054L29.139-39.133L30.085-39.133Q30.292-39.109 30.331-38.902L30.331-38.812Q30.292-38.597 30.085-38.574L27.788-38.574Q27.596-38.597 27.538-38.812M32.147-38.773L32.147-39.687Q32.174-39.894 32.385-39.918L32.553-39.918Q32.717-39.894 32.776-39.734Q32.979-39.094 33.706-39.094Q33.913-39.094 34.141-39.129Q34.370-39.164 34.538-39.279Q34.706-39.394 34.706-39.597Q34.706-39.808 34.483-39.922Q34.260-40.035 33.987-40.078L33.288-40.191Q32.147-40.402 32.147-41.125Q32.147-41.414 32.292-41.603Q32.436-41.793 32.676-41.900Q32.917-42.008 33.172-42.047Q33.428-42.086 33.706-42.086Q33.956-42.086 34.149-42.056Q34.342-42.027 34.506-41.949Q34.585-42.066 34.713-42.086L34.792-42.086Q34.889-42.074 34.952-42.011Q35.014-41.949 35.026-41.855L35.026-41.148Q35.014-41.054 34.952-40.988Q34.889-40.922 34.792-40.910L34.624-40.910Q34.530-40.922 34.463-40.988Q34.397-41.054 34.385-41.148Q34.385-41.527 33.690-41.527Q33.342-41.527 33.024-41.445Q32.706-41.363 32.706-41.117Q32.706-40.851 33.377-40.742L34.081-40.621Q34.565-40.539 34.915-40.291Q35.264-40.043 35.264-39.597Q35.264-39.207 35.028-38.965Q34.792-38.722 34.442-38.629Q34.092-38.535 33.706-38.535Q33.127-38.535 32.729-38.789Q32.659-38.664 32.610-38.607Q32.561-38.551 32.456-38.535L32.385-38.535Q32.170-38.558 32.147-38.773M35.877-37.031L35.877-37.117Q35.920-37.336 36.127-37.359L36.549-37.359L36.549-41.461L36.127-41.461Q35.920-41.484 35.877-41.703L35.877-41.789Q35.924-42 36.127-42.023L36.944-42.023Q37.139-42.004 37.190-41.789L37.190-41.719Q37.401-41.886 37.665-41.974Q37.928-42.062 38.198-42.062Q38.538-42.062 38.835-41.918Q39.131-41.773 39.346-41.521Q39.561-41.269 39.676-40.957Q39.792-40.644 39.792-40.301Q39.792-39.836 39.565-39.426Q39.338-39.015 38.952-38.775Q38.565-38.535 38.096-38.535Q37.577-38.535 37.190-38.902L37.190-37.359L37.616-37.359Q37.823-37.336 37.862-37.117L37.862-37.031Q37.823-36.820 37.616-36.797L36.127-36.797Q35.924-36.820 35.877-37.031M38.053-39.094Q38.362-39.094 38.612-39.263Q38.862-39.433 39.006-39.715Q39.151-39.996 39.151-40.301Q39.151-40.590 39.026-40.869Q38.901-41.148 38.669-41.326Q38.436-41.504 38.135-41.504Q37.815-41.504 37.553-41.318Q37.292-41.133 37.190-40.832L37.190-39.980Q37.280-39.613 37.501-39.353Q37.721-39.094 38.053-39.094\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M41.424-36.574L40.249-36.574L40.249-36.941L41.057-36.941L41.057-44.207L40.249-44.207L40.249-44.574L41.424-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M50.748-39.551L45.435-39.551Q45.357-39.558 45.308-39.607Q45.260-39.656 45.260-39.734Q45.260-39.804 45.307-39.855Q45.353-39.906 45.435-39.918L50.748-39.918Q50.822-39.906 50.869-39.855Q50.916-39.804 50.916-39.734Q50.916-39.656 50.867-39.607Q50.818-39.558 50.748-39.551M50.748-41.238L45.435-41.238Q45.357-41.246 45.308-41.295Q45.260-41.344 45.260-41.422Q45.260-41.492 45.307-41.543Q45.353-41.594 45.435-41.605L50.748-41.605Q50.822-41.594 50.869-41.543Q50.916-41.492 50.916-41.422Q50.916-41.344 50.867-41.295Q50.818-41.246 50.748-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M55.416-38.797L54.530-41.461L54.209-41.461Q54.010-41.484 53.959-41.703L53.959-41.789Q54.010-42 54.209-42.023L55.369-42.023Q55.565-42.004 55.615-41.789L55.615-41.703Q55.565-41.484 55.369-41.461L55.088-41.461L55.881-39.086L56.670-41.461L56.393-41.461Q56.194-41.484 56.143-41.703L56.143-41.789Q56.194-42 56.393-42.023L57.553-42.023Q57.748-42 57.799-41.789L57.799-41.703Q57.748-41.484 57.553-41.461L57.233-41.461L56.346-38.797Q56.303-38.683 56.201-38.609Q56.100-38.535 55.975-38.535L55.783-38.535Q55.666-38.535 55.563-38.607Q55.459-38.679 55.416-38.797M58.412-39.687Q58.412-40.133 58.826-40.390Q59.240-40.648 59.781-40.748Q60.322-40.847 60.830-40.855Q60.830-41.070 60.696-41.222Q60.561-41.375 60.354-41.451Q60.147-41.527 59.936-41.527Q59.592-41.527 59.432-41.504L59.432-41.445Q59.432-41.277 59.313-41.162Q59.194-41.047 59.030-41.047Q58.854-41.047 58.739-41.170Q58.623-41.293 58.623-41.461Q58.623-41.867 59.004-41.976Q59.385-42.086 59.944-42.086Q60.213-42.086 60.481-42.008Q60.748-41.929 60.973-41.779Q61.197-41.629 61.334-41.408Q61.471-41.187 61.471-40.910L61.471-39.191Q61.471-39.133 61.998-39.133Q62.194-39.113 62.244-38.902L62.244-38.812Q62.194-38.597 61.998-38.574L61.854-38.574Q61.510-38.574 61.281-38.621Q61.053-38.668 60.908-38.855Q60.447-38.535 59.740-38.535Q59.405-38.535 59.100-38.676Q58.795-38.816 58.604-39.078Q58.412-39.340 58.412-39.687M59.053-39.679Q59.053-39.406 59.295-39.250Q59.537-39.094 59.822-39.094Q60.041-39.094 60.274-39.152Q60.506-39.211 60.668-39.349Q60.830-39.488 60.830-39.711L60.830-40.301Q60.549-40.301 60.133-40.244Q59.717-40.187 59.385-40.049Q59.053-39.910 59.053-39.679M62.701-38.812L62.701-38.902Q62.752-39.109 62.947-39.133L64.053-39.133L64.053-42.902L62.947-42.902Q62.752-42.926 62.701-43.140L62.701-43.230Q62.752-43.437 62.947-43.461L64.444-43.461Q64.635-43.437 64.694-43.230L64.694-39.133L65.795-39.133Q65.994-39.109 66.045-38.902L66.045-38.812Q65.994-38.597 65.795-38.574L62.947-38.574Q62.752-38.597 62.701-38.812M66.682-38.812L66.682-38.902Q66.721-39.109 66.932-39.133L67.240-39.133L67.240-42.902L66.932-42.902Q66.721-42.926 66.682-43.140L66.682-43.230Q66.721-43.437 66.932-43.461L70.139-43.461Q70.334-43.437 70.385-43.230L70.385-42.390Q70.334-42.176 70.139-42.148L69.994-42.148Q69.799-42.176 69.744-42.390L69.744-42.902L67.881-42.902L67.881-41.383L68.858-41.383L68.858-41.597Q68.908-41.804 69.108-41.832L69.252-41.832Q69.447-41.804 69.498-41.597L69.498-40.613Q69.447-40.398 69.252-40.375L69.108-40.375Q68.908-40.398 68.858-40.613L68.858-40.820L67.881-40.820L67.881-39.133L69.924-39.133L69.924-39.773Q69.975-39.980 70.170-40.008L70.315-40.008Q70.510-39.980 70.561-39.773L70.561-38.812Q70.510-38.594 70.315-38.574L66.932-38.574Q66.721-38.597 66.682-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M71.584-37.168Q71.584-37.207 71.608-37.230Q71.881-37.515 72.024-37.879Q72.166-38.242 72.166-38.629Q72.069-38.574 71.944-38.574Q71.752-38.574 71.615-38.707Q71.479-38.840 71.479-39.039Q71.479-39.230 71.615-39.363Q71.752-39.496 71.944-39.496Q72.424-39.496 72.424-38.621Q72.424-38.332 72.352-38.051Q72.280-37.769 72.137-37.515Q71.994-37.261 71.799-37.054Q71.768-37.023 71.729-37.023Q71.682-37.023 71.633-37.068Q71.584-37.113 71.584-37.168M71.479-41.566Q71.479-41.750 71.615-41.886Q71.752-42.023 71.944-42.023Q72.135-42.023 72.268-41.890Q72.401-41.758 72.401-41.566Q72.401-41.367 72.268-41.234Q72.135-41.101 71.944-41.101Q71.752-41.101 71.615-41.238Q71.479-41.375 71.479-41.566\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M78.580-38.574L76.443-38.574Q76.408-38.574 76.377-38.615Q76.346-38.656 76.346-38.703L76.369-38.804Q76.381-38.855 76.467-38.871Q76.908-38.871 77.066-38.910Q77.225-38.949 77.267-39.176L78.346-43.496Q78.369-43.566 78.369-43.629Q78.369-43.691 78.307-43.711Q78.162-43.742 77.740-43.742Q77.635-43.769 77.635-43.871L77.666-43.972Q77.674-44.019 77.756-44.039L80.267-44.039Q80.674-44.039 81.117-43.916Q81.560-43.793 81.865-43.517Q82.170-43.242 82.170-42.820Q82.170-42.433 81.900-42.117Q81.631-41.801 81.232-41.592Q80.834-41.383 80.459-41.293Q80.767-41.168 80.965-40.929Q81.162-40.691 81.162-40.375Q81.162-40.332 81.160-40.304Q81.158-40.277 81.154-40.246L81.076-39.551Q81.045-39.261 81.045-39.140Q81.045-38.926 81.113-38.795Q81.182-38.664 81.389-38.664Q81.642-38.664 81.838-38.888Q82.033-39.113 82.100-39.390Q82.107-39.437 82.193-39.453L82.275-39.453Q82.369-39.426 82.369-39.344Q82.369-39.336 82.361-39.301Q82.310-39.086 82.166-38.875Q82.021-38.664 81.814-38.535Q81.607-38.406 81.381-38.406Q81.076-38.406 80.807-38.492Q80.537-38.578 80.365-38.777Q80.193-38.976 80.193-39.285Q80.193-39.394 80.236-39.574L80.412-40.269Q80.435-40.390 80.435-40.484Q80.435-40.820 80.174-41.002Q79.912-41.183 79.549-41.183L78.498-41.183L77.978-39.117Q77.963-39.023 77.963-38.980Q77.963-38.941 77.976-38.928Q77.990-38.914 78.025-38.902Q78.170-38.871 78.596-38.871Q78.689-38.844 78.689-38.750L78.666-38.644Q78.658-38.594 78.580-38.574M79.060-43.437L78.564-41.437L79.506-41.437Q79.850-41.437 80.166-41.506Q80.482-41.574 80.756-41.742Q80.943-41.867 81.080-42.068Q81.217-42.269 81.285-42.502Q81.353-42.734 81.353-42.957Q81.353-43.414 80.986-43.578Q80.619-43.742 80.084-43.742L79.467-43.742Q79.295-43.742 79.232-43.728Q79.170-43.715 79.137-43.656Q79.103-43.597 79.060-43.437\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M84.574-36.574L83.398-36.574L83.398-44.574L84.574-44.574L84.574-44.207L83.765-44.207L83.765-36.941L84.574-36.941\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M84.990-38.812L84.990-38.902Q85.048-39.109 85.240-39.133L85.951-39.133L85.951-41.461L85.240-41.461Q85.044-41.484 84.990-41.703L84.990-41.789Q85.048-42 85.240-42.023L86.341-42.023Q86.540-42.004 86.591-41.789L86.591-41.461Q86.853-41.746 87.208-41.904Q87.564-42.062 87.951-42.062Q88.244-42.062 88.478-41.928Q88.712-41.793 88.712-41.527Q88.712-41.359 88.603-41.242Q88.494-41.125 88.326-41.125Q88.173-41.125 88.058-41.236Q87.943-41.347 87.943-41.504Q87.568-41.504 87.253-41.303Q86.939-41.101 86.765-40.767Q86.591-40.433 86.591-40.054L86.591-39.133L87.537-39.133Q87.744-39.109 87.783-38.902L87.783-38.812Q87.744-38.597 87.537-38.574L85.240-38.574Q85.048-38.597 84.990-38.812M89.244-38.812L89.244-38.902Q89.302-39.113 89.494-39.133L89.716-39.133L90.669-43.316Q90.693-43.433 90.788-43.508Q90.884-43.582 90.997-43.582L91.271-43.582Q91.384-43.582 91.480-43.506Q91.576-43.429 91.599-43.316L92.548-39.133L92.775-39.133Q92.982-39.109 93.021-38.902L93.021-38.812Q92.970-38.597 92.775-38.574L91.693-38.574Q91.497-38.597 91.447-38.812L91.447-38.902Q91.497-39.109 91.693-39.133L91.892-39.133Q91.763-39.699 91.740-39.781L90.525-39.781Q90.482-39.597 90.372-39.133L90.572-39.133Q90.771-39.109 90.822-38.902L90.822-38.812Q90.771-38.597 90.572-38.574L89.494-38.574Q89.287-38.597 89.244-38.812M90.646-40.344L91.622-40.344Q91.142-42.476 91.142-42.820L91.134-42.820Q91.134-42.636 90.994-41.953Q90.853-41.269 90.646-40.344\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M94.626-36.574L93.451-36.574L93.451-36.941L94.259-36.941L94.259-44.207L93.451-44.207L93.451-44.574L94.626-44.574\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M103.951-39.551L98.638-39.551Q98.560-39.558 98.511-39.607Q98.463-39.656 98.463-39.734Q98.463-39.804 98.510-39.855Q98.556-39.906 98.638-39.918L103.951-39.918Q104.025-39.906 104.072-39.855Q104.119-39.804 104.119-39.734Q104.119-39.656 104.070-39.607Q104.021-39.558 103.951-39.551M103.951-41.238L98.638-41.238Q98.560-41.246 98.511-41.295Q98.463-41.344 98.463-41.422Q98.463-41.492 98.510-41.543Q98.556-41.594 98.638-41.605L103.951-41.605Q104.025-41.594 104.072-41.543Q104.119-41.492 104.119-41.422Q104.119-41.344 104.070-41.295Q104.021-41.246 103.951-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 98.74)\">\u003Cpath d=\"M108.618-38.797L107.732-41.461L107.411-41.461Q107.212-41.484 107.161-41.703L107.161-41.789Q107.212-42 107.411-42.023L108.571-42.023Q108.767-42.004 108.817-41.789L108.817-41.703Q108.767-41.484 108.571-41.461L108.290-41.461L109.083-39.086L109.872-41.461L109.595-41.461Q109.396-41.484 109.345-41.703L109.345-41.789Q109.396-42 109.595-42.023L110.755-42.023Q110.950-42 111.001-41.789L111.001-41.703Q110.950-41.484 110.755-41.461L110.435-41.461L109.548-38.797Q109.505-38.683 109.403-38.609Q109.302-38.535 109.177-38.535L108.985-38.535Q108.868-38.535 108.765-38.607Q108.661-38.679 108.618-38.797M111.614-39.687Q111.614-40.133 112.028-40.390Q112.442-40.648 112.983-40.748Q113.525-40.847 114.032-40.855Q114.032-41.070 113.898-41.222Q113.763-41.375 113.556-41.451Q113.349-41.527 113.138-41.527Q112.794-41.527 112.634-41.504L112.634-41.445Q112.634-41.277 112.515-41.162Q112.396-41.047 112.232-41.047Q112.056-41.047 111.941-41.170Q111.825-41.293 111.825-41.461Q111.825-41.867 112.206-41.976Q112.587-42.086 113.146-42.086Q113.415-42.086 113.683-42.008Q113.950-41.929 114.175-41.779Q114.400-41.629 114.536-41.408Q114.673-41.187 114.673-40.910L114.673-39.191Q114.673-39.133 115.200-39.133Q115.396-39.113 115.446-38.902L115.446-38.812Q115.396-38.597 115.200-38.574L115.056-38.574Q114.712-38.574 114.483-38.621Q114.255-38.668 114.110-38.855Q113.650-38.535 112.942-38.535Q112.607-38.535 112.302-38.676Q111.997-38.816 111.806-39.078Q111.614-39.340 111.614-39.687M112.255-39.679Q112.255-39.406 112.497-39.250Q112.739-39.094 113.025-39.094Q113.243-39.094 113.476-39.152Q113.708-39.211 113.870-39.349Q114.032-39.488 114.032-39.711L114.032-40.301Q113.751-40.301 113.335-40.244Q112.919-40.187 112.587-40.049Q112.255-39.910 112.255-39.679M115.903-38.812L115.903-38.902Q115.954-39.109 116.150-39.133L117.255-39.133L117.255-42.902L116.150-42.902Q115.954-42.926 115.903-43.140L115.903-43.230Q115.954-43.437 116.150-43.461L117.646-43.461Q117.837-43.437 117.896-43.230L117.896-39.133L118.997-39.133Q119.196-39.109 119.247-38.902L119.247-38.812Q119.196-38.597 118.997-38.574L116.150-38.574Q115.954-38.597 115.903-38.812M119.814-38.812L119.814-38.902Q119.864-39.109 120.060-39.133L120.235-39.133L120.235-42.902L120.060-42.902Q119.864-42.926 119.814-43.140L119.814-43.230Q119.864-43.437 120.060-43.461L120.747-43.461Q120.876-43.461 120.976-43.385Q121.075-43.308 121.114-43.199Q121.146-43.094 121.368-42.404Q121.591-41.715 121.706-41.318Q121.821-40.922 121.821-40.847Q121.829-40.926 121.884-41.123Q121.939-41.320 122.052-41.691Q122.165-42.062 122.312-42.525Q122.458-42.988 122.525-43.199Q122.564-43.308 122.667-43.385Q122.771-43.461 122.892-43.461L123.579-43.461Q123.778-43.437 123.829-43.230L123.829-43.140Q123.778-42.926 123.579-42.902L123.403-42.902L123.403-39.133L123.579-39.133Q123.778-39.109 123.829-38.902L123.829-38.812Q123.778-38.597 123.579-38.574L122.700-38.574Q122.505-38.597 122.454-38.812L122.454-38.902Q122.505-39.109 122.700-39.133L122.876-39.133L122.876-42.820Q122.876-42.761 122.792-42.463Q122.708-42.164 122.605-41.832Q122.501-41.500 122.370-41.092Q122.239-40.683 122.173-40.469Q122.134-40.355 122.034-40.281Q121.935-40.207 121.821-40.207Q121.708-40.207 121.608-40.281Q121.509-40.355 121.470-40.469Q121.403-40.683 121.269-41.101Q121.134-41.519 120.997-41.963Q120.860-42.406 120.816-42.570Q120.771-42.734 120.763-42.820L120.763-39.133L120.939-39.133Q121.138-39.109 121.189-38.902L121.189-38.812Q121.138-38.597 120.939-38.574L120.060-38.574Q119.864-38.597 119.814-38.812\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743 70.116H438.21\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(157.726 122.674)\">\u003Cpath d=\"M13.945-38.574L11.812-38.574L11.812-38.854Q12.533-38.854 12.533-39.063L12.533-42.864Q12.533-43.075 11.812-43.075L11.812-43.356L14.478-43.356Q14.888-43.356 15.309-43.202Q15.729-43.048 16.013-42.744Q16.296-42.440 16.296-42.026Q16.296-41.708 16.129-41.462Q15.961-41.216 15.685-41.050Q15.408-40.885 15.086-40.801Q14.765-40.717 14.478-40.717L13.224-40.717L13.224-39.063Q13.224-38.854 13.945-38.854L13.945-38.574M13.196-42.864L13.196-40.967L14.283-40.967Q14.892-40.967 15.206-41.204Q15.521-41.442 15.521-42.026Q15.521-42.419 15.375-42.653Q15.230-42.887 14.958-42.981Q14.687-43.075 14.283-43.075L13.562-43.075Q13.374-43.075 13.285-43.041Q13.196-43.007 13.196-42.864M17.277-40.967Q17.277-41.493 17.494-41.961Q17.711-42.429 18.094-42.775Q18.477-43.120 18.961-43.308Q19.444-43.496 19.974-43.496Q20.377-43.496 20.742-43.339Q21.106-43.181 21.389-42.887L21.813-43.469Q21.847-43.496 21.871-43.496L21.919-43.496Q21.950-43.496 21.974-43.472Q21.998-43.448 21.998-43.417L21.998-41.554Q21.998-41.531 21.972-41.505Q21.946-41.479 21.919-41.479L21.793-41.479Q21.731-41.479 21.717-41.554Q21.687-41.869 21.552-42.173Q21.417-42.477 21.201-42.711Q20.986-42.946 20.697-43.081Q20.408-43.216 20.080-43.216Q19.438-43.216 18.980-42.922Q18.522-42.628 18.289-42.115Q18.057-41.602 18.057-40.967Q18.057-40.495 18.187-40.086Q18.316-39.678 18.576-39.365Q18.836-39.053 19.215-38.883Q19.595-38.714 20.087-38.714Q20.415-38.714 20.709-38.830Q21.003-38.947 21.237-39.162Q21.471-39.377 21.601-39.666Q21.731-39.955 21.731-40.283Q21.731-40.310 21.758-40.334Q21.786-40.358 21.806-40.358L21.919-40.358Q21.957-40.358 21.977-40.333Q21.998-40.307 21.998-40.269Q21.998-39.873 21.832-39.536Q21.666-39.199 21.379-38.952Q21.092-38.704 20.723-38.569Q20.354-38.434 19.974-38.434Q19.455-38.434 18.962-38.624Q18.470-38.813 18.091-39.157Q17.711-39.500 17.494-39.969Q17.277-40.437 17.277-40.967\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.726 122.674)\">\u003Cpath d=\"M26.086-39.408L26.086-40.912Q26.086-41.182 25.978-41.243Q25.870-41.305 25.559-41.305L25.559-41.585L26.667-41.660L26.667-39.428L26.667-39.408Q26.667-39.128 26.718-38.984Q26.769-38.841 26.911-38.784Q27.053-38.728 27.340-38.728Q27.593-38.728 27.798-38.868Q28.003-39.008 28.119-39.234Q28.236-39.459 28.236-39.709L28.236-40.912Q28.236-41.182 28.128-41.243Q28.020-41.305 27.709-41.305L27.709-41.585L28.817-41.660L28.817-39.247Q28.817-39.056 28.870-38.974Q28.923-38.892 29.023-38.873Q29.124-38.854 29.340-38.854L29.340-38.574L28.263-38.506L28.263-39.070Q28.154-38.888 28.008-38.765Q27.863-38.642 27.677-38.574Q27.490-38.506 27.289-38.506Q26.086-38.506 26.086-39.408M31.572-37.217L29.941-37.217L29.941-37.497Q30.170-37.497 30.319-37.532Q30.468-37.566 30.468-37.706L30.468-41.052Q30.468-41.223 30.331-41.264Q30.194-41.305 29.941-41.305L29.941-41.585L31.021-41.660L31.021-41.254Q31.243-41.455 31.530-41.558Q31.818-41.660 32.125-41.660Q32.552-41.660 32.916-41.447Q33.280-41.233 33.494-40.869Q33.708-40.505 33.708-40.085Q33.708-39.640 33.468-39.276Q33.229-38.912 32.836-38.709Q32.443-38.506 31.999-38.506Q31.732-38.506 31.484-38.606Q31.237-38.707 31.049-38.888L31.049-37.706Q31.049-37.569 31.197-37.533Q31.346-37.497 31.572-37.497L31.572-37.217M31.049-40.905L31.049-39.295Q31.182-39.042 31.425-38.885Q31.667-38.728 31.944-38.728Q32.272-38.728 32.525-38.929Q32.778-39.131 32.911-39.449Q33.045-39.767 33.045-40.085Q33.045-40.314 32.980-40.543Q32.915-40.772 32.787-40.970Q32.658-41.168 32.464-41.288Q32.269-41.407 32.036-41.407Q31.742-41.407 31.474-41.278Q31.206-41.148 31.049-40.905\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(157.726 122.674)\">\u003Cpath d=\"M34.559-40.085Q34.559-40.423 34.700-40.714Q34.840-41.004 35.084-41.218Q35.328-41.431 35.633-41.546Q35.937-41.660 36.262-41.660Q36.532-41.660 36.795-41.561Q37.058-41.462 37.249-41.284L37.249-42.682Q37.249-42.952 37.142-43.014Q37.034-43.075 36.723-43.075L36.723-43.356L37.800-43.431L37.800-39.247Q37.800-39.059 37.854-38.976Q37.909-38.892 38.010-38.873Q38.111-38.854 38.326-38.854L38.326-38.574L37.219-38.506L37.219-38.923Q36.802-38.506 36.176-38.506Q35.745-38.506 35.373-38.718Q35-38.929 34.780-39.290Q34.559-39.651 34.559-40.085M36.234-38.728Q36.443-38.728 36.629-38.800Q36.815-38.871 36.969-39.008Q37.123-39.145 37.219-39.323L37.219-40.932Q37.133-41.079 36.988-41.199Q36.843-41.319 36.673-41.378Q36.504-41.438 36.323-41.438Q35.763-41.438 35.494-41.049Q35.226-40.659 35.226-40.078Q35.226-39.507 35.460-39.117Q35.694-38.728 36.234-38.728M39.034-39.302Q39.034-39.634 39.257-39.861Q39.481-40.088 39.825-40.216Q40.168-40.345 40.541-40.397Q40.913-40.450 41.218-40.450L41.218-40.703Q41.218-40.908 41.110-41.088Q41.002-41.267 40.821-41.370Q40.640-41.472 40.432-41.472Q40.025-41.472 39.789-41.380Q39.878-41.343 39.924-41.259Q39.970-41.175 39.970-41.073Q39.970-40.977 39.924-40.898Q39.878-40.820 39.797-40.775Q39.717-40.731 39.628-40.731Q39.478-40.731 39.377-40.828Q39.276-40.926 39.276-41.073Q39.276-41.695 40.432-41.695Q40.643-41.695 40.893-41.631Q41.142-41.568 41.344-41.449Q41.546-41.329 41.672-41.144Q41.799-40.960 41.799-40.717L41.799-39.141Q41.799-39.025 41.860-38.929Q41.922-38.834 42.035-38.834Q42.144-38.834 42.209-38.928Q42.274-39.022 42.274-39.141L42.274-39.589L42.540-39.589L42.540-39.141Q42.540-38.871 42.313-38.706Q42.086-38.540 41.806-38.540Q41.597-38.540 41.460-38.694Q41.324-38.847 41.300-39.063Q41.153-38.796 40.871-38.651Q40.589-38.506 40.264-38.506Q39.987-38.506 39.703-38.581Q39.420-38.656 39.227-38.835Q39.034-39.015 39.034-39.302M39.649-39.302Q39.649-39.128 39.750-38.998Q39.850-38.868 40.006-38.798Q40.162-38.728 40.326-38.728Q40.544-38.728 40.753-38.825Q40.961-38.923 41.089-39.104Q41.218-39.285 41.218-39.511L41.218-40.239Q40.893-40.239 40.527-40.148Q40.162-40.057 39.905-39.845Q39.649-39.634 39.649-39.302M43.484-39.415L43.484-41.312L42.845-41.312L42.845-41.534Q43.162-41.534 43.380-41.744Q43.597-41.954 43.697-42.264Q43.798-42.573 43.798-42.881L44.065-42.881L44.065-41.592L45.141-41.592L45.141-41.312L44.065-41.312L44.065-39.428Q44.065-39.152 44.169-38.953Q44.273-38.755 44.533-38.755Q44.690-38.755 44.796-38.859Q44.902-38.964 44.952-39.117Q45.001-39.271 45.001-39.428L45.001-39.842L45.268-39.842L45.268-39.415Q45.268-39.189 45.169-38.979Q45.070-38.769 44.885-38.637Q44.701-38.506 44.472-38.506Q44.034-38.506 43.759-38.743Q43.484-38.981 43.484-39.415M46.037-40.109Q46.037-40.430 46.162-40.719Q46.287-41.008 46.512-41.231Q46.738-41.455 47.033-41.575Q47.329-41.695 47.647-41.695Q47.975-41.695 48.236-41.595Q48.498-41.496 48.674-41.314Q48.850-41.131 48.944-40.873Q49.038-40.615 49.038-40.283Q49.038-40.191 48.956-40.170L46.700-40.170L46.700-40.109Q46.700-39.521 46.984-39.138Q47.267-38.755 47.835-38.755Q48.156-38.755 48.424-38.948Q48.693-39.141 48.782-39.456Q48.788-39.497 48.864-39.511L48.956-39.511Q49.038-39.487 49.038-39.415Q49.038-39.408 49.031-39.381Q48.918-38.984 48.547-38.745Q48.177-38.506 47.753-38.506Q47.315-38.506 46.915-38.714Q46.516-38.923 46.276-39.290Q46.037-39.657 46.037-40.109M46.707-40.379L48.522-40.379Q48.522-40.656 48.424-40.908Q48.327-41.161 48.129-41.317Q47.931-41.472 47.647-41.472Q47.370-41.472 47.156-41.314Q46.943-41.155 46.825-40.900Q46.707-40.645 46.707-40.379\" 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-size=\"8\">\u003Cg transform=\"translate(211.238 123.369)\">\u003Cpath d=\"M11.603-38.812L11.603-38.902Q11.642-39.109 11.853-39.133L12.161-39.133L12.161-42.902L11.853-42.902Q11.642-42.926 11.603-43.140L11.603-43.230Q11.642-43.437 11.853-43.461L13.802-43.461Q14.200-43.461 14.546-43.260Q14.892-43.058 15.099-42.713Q15.306-42.367 15.306-41.965Q15.306-41.558 15.101-41.215Q14.896-40.871 14.550-40.666Q14.204-40.461 13.802-40.461L12.802-40.461L12.802-39.133L13.114-39.133Q13.325-39.109 13.364-38.902L13.364-38.812Q13.325-38.597 13.114-38.574L11.853-38.574Q11.642-38.597 11.603-38.812M12.802-42.902L12.802-41.023L13.642-41.023Q13.903-41.023 14.140-41.146Q14.376-41.269 14.521-41.484Q14.665-41.699 14.665-41.965Q14.665-42.234 14.521-42.445Q14.376-42.656 14.140-42.779Q13.903-42.902 13.642-42.902L12.802-42.902M17.931-38.496Q17.482-38.496 17.116-38.720Q16.751-38.945 16.497-39.328Q16.243-39.711 16.118-40.154Q15.993-40.597 15.993-41.023Q15.993-41.449 16.118-41.888Q16.243-42.328 16.497-42.711Q16.751-43.094 17.110-43.318Q17.470-43.543 17.931-43.543Q18.208-43.543 18.466-43.451Q18.724-43.359 18.939-43.191L19.071-43.429Q19.099-43.480 19.153-43.511Q19.208-43.543 19.267-43.543L19.345-43.543Q19.439-43.531 19.501-43.472Q19.564-43.414 19.575-43.308L19.575-41.980Q19.564-41.879 19.501-41.816Q19.439-41.754 19.345-41.742L19.177-41.742Q19.075-41.754 19.013-41.820Q18.950-41.886 18.939-41.980Q18.899-42.246 18.776-42.470Q18.653-42.695 18.450-42.838Q18.247-42.980 17.985-42.980Q17.653-42.980 17.401-42.797Q17.149-42.613 16.978-42.312Q16.806-42.011 16.720-41.670Q16.634-41.328 16.634-41.023Q16.634-40.719 16.718-40.377Q16.802-40.035 16.974-39.732Q17.146-39.429 17.403-39.242Q17.661-39.054 17.993-39.054Q18.376-39.054 18.657-39.328Q18.939-39.601 18.939-39.988Q18.966-40.199 19.177-40.222L19.345-40.222Q19.575-40.183 19.575-39.957Q19.575-39.640 19.439-39.369Q19.302-39.097 19.067-38.900Q18.833-38.703 18.542-38.599Q18.251-38.496 17.931-38.496\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 123.369)\">\u003Cpath d=\"M28.241-39.551L22.928-39.551Q22.850-39.558 22.801-39.607Q22.753-39.656 22.753-39.734Q22.753-39.804 22.800-39.855Q22.846-39.906 22.928-39.918L28.241-39.918Q28.315-39.906 28.362-39.855Q28.409-39.804 28.409-39.734Q28.409-39.656 28.360-39.607Q28.311-39.558 28.241-39.551M28.241-41.238L22.928-41.238Q22.850-41.246 22.801-41.295Q22.753-41.344 22.753-41.422Q22.753-41.492 22.800-41.543Q22.846-41.594 22.928-41.605L28.241-41.605Q28.315-41.594 28.362-41.543Q28.409-41.492 28.409-41.422Q28.409-41.344 28.360-41.295Q28.311-41.246 28.241-41.238\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(211.238 123.369)\">\u003Cpath d=\"M32.909-38.797L32.023-41.461L31.702-41.461Q31.503-41.484 31.452-41.703L31.452-41.789Q31.503-42 31.702-42.023L32.862-42.023Q33.058-42.004 33.108-41.789L33.108-41.703Q33.058-41.484 32.862-41.461L32.581-41.461L33.374-39.086L34.163-41.461L33.886-41.461Q33.687-41.484 33.636-41.703L33.636-41.789Q33.687-42 33.886-42.023L35.046-42.023Q35.241-42 35.292-41.789L35.292-41.703Q35.241-41.484 35.046-41.461L34.726-41.461L33.839-38.797Q33.796-38.683 33.694-38.609Q33.593-38.535 33.468-38.535L33.276-38.535Q33.159-38.535 33.056-38.607Q32.952-38.679 32.909-38.797M35.905-39.687Q35.905-40.133 36.319-40.390Q36.733-40.648 37.274-40.748Q37.816-40.847 38.323-40.855Q38.323-41.070 38.189-41.222Q38.054-41.375 37.847-41.451Q37.640-41.527 37.429-41.527Q37.085-41.527 36.925-41.504L36.925-41.445Q36.925-41.277 36.806-41.162Q36.687-41.047 36.523-41.047Q36.347-41.047 36.232-41.170Q36.116-41.293 36.116-41.461Q36.116-41.867 36.497-41.976Q36.878-42.086 37.437-42.086Q37.706-42.086 37.974-42.008Q38.241-41.929 38.466-41.779Q38.691-41.629 38.827-41.408Q38.964-41.187 38.964-40.910L38.964-39.191Q38.964-39.133 39.491-39.133Q39.687-39.113 39.737-38.902L39.737-38.812Q39.687-38.597 39.491-38.574L39.347-38.574Q39.003-38.574 38.774-38.621Q38.546-38.668 38.401-38.855Q37.941-38.535 37.233-38.535Q36.898-38.535 36.593-38.676Q36.288-38.816 36.097-39.078Q35.905-39.340 35.905-39.687M36.546-39.679Q36.546-39.406 36.788-39.250Q37.030-39.094 37.316-39.094Q37.534-39.094 37.767-39.152Q37.999-39.211 38.161-39.349Q38.323-39.488 38.323-39.711L38.323-40.301Q38.042-40.301 37.626-40.244Q37.210-40.187 36.878-40.049Q36.546-39.910 36.546-39.679M40.194-38.812L40.194-38.902Q40.245-39.109 40.441-39.133L41.546-39.133L41.546-42.902L40.441-42.902Q40.245-42.926 40.194-43.140L40.194-43.230Q40.245-43.437 40.441-43.461L41.937-43.461Q42.128-43.437 42.187-43.230L42.187-39.133L43.288-39.133Q43.487-39.109 43.538-38.902L43.538-38.812Q43.487-38.597 43.288-38.574L40.441-38.574Q40.245-38.597 40.194-38.812M44.175-38.812L44.175-38.902Q44.214-39.109 44.425-39.133L44.733-39.133L44.733-42.902L44.425-42.902Q44.214-42.926 44.175-43.140L44.175-43.230Q44.214-43.437 44.425-43.461L46.374-43.461Q46.773-43.461 47.118-43.260Q47.464-43.058 47.671-42.713Q47.878-42.367 47.878-41.965Q47.878-41.558 47.673-41.215Q47.468-40.871 47.122-40.666Q46.776-40.461 46.374-40.461L45.374-40.461L45.374-39.133L45.687-39.133Q45.898-39.109 45.937-38.902L45.937-38.812Q45.898-38.597 45.687-38.574L44.425-38.574Q44.214-38.597 44.175-38.812M45.374-42.902L45.374-41.023L46.214-41.023Q46.476-41.023 46.712-41.146Q46.948-41.269 47.093-41.484Q47.237-41.699 47.237-41.965Q47.237-42.234 47.093-42.445Q46.948-42.656 46.712-42.779Q46.476-42.902 46.214-42.902\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M207.743 94.3H438.21\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">pushq rA (left) decrements %rsp by 8 in Execute, then stores valA at the new top, and writes the decremented pointer back. popq rA (right) increments %rsp by 8 but reads from the OLD top (valA, the unincremented %rsp), writing both the incremented pointer (dstE) and the loaded word.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:472.666px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 354.500 152.078\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-72.07H276.03\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M11.267-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.137-64.048L13.349-62.411L13.082-62.411Q13.004-63.022 12.852-63.301Q12.699-63.579 12.395-63.673Q12.091-63.767 11.466-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.799L10.919-61.799Q11.288-61.799 11.472-61.853Q11.657-61.908 11.736-62.081Q11.814-62.253 11.814-62.619L12.081-62.619L12.081-60.702L11.814-60.702Q11.814-61.067 11.736-61.240Q11.657-61.412 11.472-61.465Q11.288-61.518 10.919-61.518L10.365-61.518L10.365-59.755Q10.365-59.546 11.267-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M13.361-60.801Q13.361-61.122 13.486-61.411Q13.611-61.700 13.837-61.923Q14.062-62.147 14.358-62.267Q14.653-62.387 14.971-62.387Q15.299-62.387 15.561-62.287Q15.822-62.188 15.998-62.006Q16.174-61.823 16.268-61.565Q16.362-61.307 16.362-60.975Q16.362-60.883 16.280-60.862L14.025-60.862L14.025-60.801Q14.025-60.213 14.308-59.830Q14.592-59.447 15.159-59.447Q15.481-59.447 15.749-59.640Q16.017-59.833 16.106-60.148Q16.113-60.189 16.188-60.203L16.280-60.203Q16.362-60.179 16.362-60.107Q16.362-60.100 16.356-60.073Q16.243-59.676 15.872-59.437Q15.501-59.198 15.077-59.198Q14.640-59.198 14.240-59.406Q13.840-59.615 13.601-59.982Q13.361-60.349 13.361-60.801M14.031-61.071L15.846-61.071Q15.846-61.348 15.749-61.600Q15.651-61.853 15.453-62.009Q15.255-62.164 14.971-62.164Q14.694-62.164 14.481-62.006Q14.267-61.847 14.149-61.592Q14.031-61.337 14.031-61.071M17.477-60.107L17.477-62.004L16.838-62.004L16.838-62.226Q17.155-62.226 17.372-62.436Q17.589-62.646 17.690-62.956Q17.791-63.265 17.791-63.573L18.058-63.573L18.058-62.284L19.134-62.284L19.134-62.004L18.058-62.004L18.058-60.120Q18.058-59.844 18.162-59.645Q18.266-59.447 18.526-59.447Q18.683-59.447 18.789-59.551Q18.895-59.656 18.945-59.809Q18.994-59.963 18.994-60.120L18.994-60.534L19.261-60.534L19.261-60.107Q19.261-59.881 19.162-59.671Q19.063-59.461 18.878-59.329Q18.693-59.198 18.464-59.198Q18.027-59.198 17.752-59.435Q17.477-59.673 17.477-60.107M20.071-60.777Q20.071-61.105 20.206-61.406Q20.341-61.706 20.577-61.927Q20.813-62.147 21.117-62.267Q21.421-62.387 21.746-62.387Q22.252-62.387 22.600-62.284Q22.949-62.182 22.949-61.806Q22.949-61.659 22.851-61.558Q22.754-61.457 22.607-61.457Q22.453-61.457 22.354-61.556Q22.255-61.655 22.255-61.806Q22.255-61.994 22.395-62.086Q22.193-62.137 21.753-62.137Q21.397-62.137 21.168-61.941Q20.939-61.744 20.838-61.435Q20.737-61.125 20.737-60.777Q20.737-60.428 20.864-60.122Q20.990-59.816 21.245-59.632Q21.500-59.447 21.855-59.447Q22.077-59.447 22.262-59.531Q22.446-59.615 22.581-59.770Q22.716-59.926 22.775-60.134Q22.788-60.189 22.843-60.189L22.956-60.189Q22.986-60.189 23.009-60.165Q23.031-60.141 23.031-60.107L23.031-60.086Q22.945-59.799 22.757-59.601Q22.569-59.403 22.305-59.300Q22.040-59.198 21.746-59.198Q21.315-59.198 20.927-59.404Q20.539-59.611 20.305-59.974Q20.071-60.336 20.071-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-25.33 2.43)\">\u003Cpath d=\"M25.105-59.266L23.471-59.266L23.471-59.546Q23.700-59.546 23.849-59.580Q23.998-59.615 23.998-59.755L23.998-63.374Q23.998-63.644 23.890-63.706Q23.782-63.767 23.471-63.767L23.471-64.048L24.551-64.123L24.551-61.737Q24.657-61.922 24.835-62.064Q25.013-62.205 25.221-62.279Q25.430-62.352 25.655-62.352Q26.161-62.352 26.445-62.129Q26.729-61.905 26.729-61.409L26.729-59.755Q26.729-59.618 26.877-59.582Q27.026-59.546 27.252-59.546L27.252-59.266L25.621-59.266L25.621-59.546Q25.850-59.546 25.999-59.580Q26.148-59.615 26.148-59.755L26.148-61.395Q26.148-61.730 26.028-61.930Q25.908-62.130 25.594-62.130Q25.324-62.130 25.090-61.994Q24.856-61.857 24.717-61.623Q24.579-61.389 24.579-61.115L24.579-59.755Q24.579-59.618 24.729-59.582Q24.880-59.546 25.105-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M9.191-59.504L9.191-59.594Q9.242-59.801 9.437-59.825L10.476-59.825L10.476-62.153L9.504-62.153Q9.304-62.176 9.254-62.395L9.254-62.481Q9.304-62.692 9.504-62.715L10.871-62.715Q11.066-62.696 11.117-62.481L11.117-59.825L12.031-59.825Q12.226-59.801 12.277-59.594L12.277-59.504Q12.226-59.289 12.031-59.266L9.437-59.266Q9.242-59.289 9.191-59.504M10.222-63.692L10.222-63.746Q10.222-63.918 10.359-64.039Q10.496-64.161 10.672-64.161Q10.844-64.161 10.980-64.039Q11.117-63.918 11.117-63.746L11.117-63.692Q11.117-63.516 10.980-63.395Q10.844-63.274 10.672-63.274Q10.496-63.274 10.359-63.395Q10.222-63.516 10.222-63.692M13.379-60.993Q13.379-61.473 13.623-61.887Q13.867-62.301 14.283-62.539Q14.699-62.778 15.179-62.778Q15.734-62.778 16.113-62.668Q16.492-62.559 16.492-62.153Q16.492-61.985 16.379-61.862Q16.265-61.739 16.094-61.739Q15.922-61.739 15.803-61.854Q15.683-61.969 15.683-62.137L15.683-62.196Q15.523-62.219 15.187-62.219Q14.859-62.219 14.592-62.049Q14.324-61.879 14.172-61.596Q14.019-61.313 14.019-60.993Q14.019-60.672 14.191-60.391Q14.363-60.110 14.648-59.948Q14.933-59.786 15.261-59.786Q15.574-59.786 15.701-59.889Q15.828-59.993 15.945-60.182Q16.062-60.371 16.179-60.387L16.347-60.387Q16.453-60.375 16.517-60.307Q16.582-60.239 16.582-60.137Q16.582-60.090 16.562-60.051Q16.453-59.758 16.250-59.578Q16.047-59.399 15.771-59.313Q15.496-59.227 15.179-59.227Q14.695-59.227 14.279-59.465Q13.863-59.703 13.621-60.106Q13.379-60.508 13.379-60.993M19.187-59.227Q18.715-59.227 18.330-59.471Q17.945-59.715 17.722-60.125Q17.500-60.536 17.500-60.993Q17.500-61.336 17.625-61.659Q17.750-61.981 17.980-62.235Q18.211-62.489 18.517-62.633Q18.824-62.778 19.187-62.778Q19.551-62.778 19.863-62.631Q20.176-62.485 20.398-62.239Q20.621-61.993 20.748-61.672Q20.875-61.352 20.875-60.993Q20.875-60.536 20.650-60.123Q20.426-59.711 20.041-59.469Q19.656-59.227 19.187-59.227M19.187-59.786Q19.652-59.786 19.943-60.180Q20.234-60.575 20.234-61.059Q20.234-61.352 20.099-61.620Q19.965-61.887 19.724-62.053Q19.484-62.219 19.187-62.219Q18.883-62.219 18.644-62.053Q18.406-61.887 18.271-61.620Q18.136-61.352 18.136-61.059Q18.136-60.578 18.429-60.182Q18.722-59.786 19.187-59.786M23.176-59.227Q22.711-59.227 22.345-59.477Q21.980-59.727 21.775-60.131Q21.570-60.536 21.570-60.993Q21.570-61.336 21.695-61.657Q21.820-61.977 22.053-62.227Q22.285-62.477 22.590-62.616Q22.894-62.754 23.250-62.754Q23.761-62.754 24.168-62.434L24.168-63.594L23.746-63.594Q23.535-63.618 23.496-63.832L23.496-63.922Q23.535-64.129 23.746-64.153L24.558-64.153Q24.758-64.129 24.808-63.922L24.808-59.825L25.234-59.825Q25.441-59.801 25.480-59.594L25.480-59.504Q25.441-59.289 25.234-59.266L24.418-59.266Q24.219-59.289 24.168-59.504L24.168-59.633Q23.972-59.442 23.711-59.334Q23.449-59.227 23.176-59.227M23.215-59.786Q23.574-59.786 23.826-60.055Q24.078-60.325 24.168-60.700L24.168-61.532Q24.109-61.719 23.982-61.870Q23.855-62.020 23.678-62.108Q23.500-62.196 23.304-62.196Q22.996-62.196 22.746-62.026Q22.496-61.856 22.351-61.571Q22.207-61.286 22.207-60.985Q22.207-60.536 22.492-60.161Q22.777-59.786 23.215-59.786M29.070-60.754L26.629-60.754Q26.683-60.477 26.881-60.254Q27.078-60.032 27.355-59.909Q27.633-59.786 27.918-59.786Q28.390-59.786 28.613-60.075Q28.621-60.086 28.678-60.192Q28.734-60.297 28.783-60.340Q28.832-60.383 28.926-60.395L29.070-60.395Q29.261-60.375 29.320-60.161L29.320-60.106Q29.254-59.805 29.023-59.608Q28.793-59.411 28.480-59.319Q28.168-59.227 27.863-59.227Q27.379-59.227 26.939-59.455Q26.500-59.684 26.232-60.084Q25.965-60.485 25.965-60.977L25.965-61.036Q25.965-61.504 26.211-61.907Q26.457-62.309 26.865-62.543Q27.273-62.778 27.742-62.778Q28.246-62.778 28.599-62.555Q28.953-62.332 29.136-61.944Q29.320-61.555 29.320-61.051L29.320-60.993Q29.261-60.778 29.070-60.754M26.636-61.305L28.664-61.305Q28.617-61.715 28.379-61.967Q28.140-62.219 27.742-62.219Q27.347-62.219 27.041-61.957Q26.734-61.696 26.636-61.305\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M30.543-59.731Q30.543-59.914 30.679-60.051Q30.816-60.188 31.008-60.188Q31.199-60.188 31.332-60.055Q31.465-59.922 31.465-59.731Q31.465-59.532 31.332-59.399Q31.199-59.266 31.008-59.266Q30.816-59.266 30.679-59.403Q30.543-59.539 30.543-59.731M30.543-62.258Q30.543-62.442 30.679-62.578Q30.816-62.715 31.008-62.715Q31.199-62.715 31.332-62.582Q31.465-62.450 31.465-62.258Q31.465-62.059 31.332-61.926Q31.199-61.793 31.008-61.793Q30.816-61.793 30.679-61.930Q30.543-62.067 30.543-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M32.802-59.504L32.802-59.594Q32.853-59.801 33.048-59.825L34.087-59.825L34.087-62.153L33.115-62.153Q32.915-62.176 32.865-62.395L32.865-62.481Q32.915-62.692 33.115-62.715L34.482-62.715Q34.677-62.696 34.728-62.481L34.728-59.825L35.642-59.825Q35.837-59.801 35.888-59.594L35.888-59.504Q35.837-59.289 35.642-59.266L33.048-59.266Q32.853-59.289 32.802-59.504M33.833-63.692L33.833-63.746Q33.833-63.918 33.970-64.039Q34.107-64.161 34.283-64.161Q34.455-64.161 34.591-64.039Q34.728-63.918 34.728-63.746L34.728-63.692Q34.728-63.516 34.591-63.395Q34.455-63.274 34.283-63.274Q34.107-63.274 33.970-63.395Q33.833-63.516 33.833-63.692M36.751-59.504L36.751-59.594Q36.802-59.801 36.998-59.825L37.880-59.825L37.880-62.153L37.025-62.153Q36.826-62.176 36.775-62.395L36.775-62.481Q36.826-62.692 37.025-62.715L37.880-62.715L37.880-63.168Q37.880-63.633 38.287-63.914Q38.693-64.196 39.173-64.196Q39.486-64.196 39.730-64.075Q39.974-63.953 39.974-63.672Q39.974-63.508 39.865-63.391Q39.755-63.274 39.591-63.274Q39.443-63.274 39.322-63.379Q39.201-63.485 39.201-63.633L39.119-63.633Q38.966-63.633 38.830-63.573Q38.693-63.512 38.607-63.397Q38.521-63.282 38.521-63.137L38.521-62.715L39.552-62.715Q39.748-62.696 39.798-62.481L39.798-62.395Q39.748-62.176 39.552-62.153L38.521-62.153L38.521-59.825L39.400-59.825Q39.595-59.801 39.646-59.594L39.646-59.504Q39.595-59.289 39.400-59.266L36.998-59.266Q36.802-59.289 36.751-59.504M41.419-60.121L41.419-62.153L40.998-62.153Q40.790-62.176 40.748-62.395L40.748-62.481Q40.794-62.692 40.998-62.715L41.814-62.715Q42.009-62.692 42.060-62.481L42.060-60.153Q42.060-59.918 42.230-59.852Q42.400-59.786 42.685-59.786Q42.892-59.786 43.087-59.862Q43.283-59.938 43.408-60.088Q43.533-60.239 43.533-60.450L43.533-62.153L43.111-62.153Q42.900-62.176 42.861-62.395L42.861-62.481Q42.900-62.692 43.111-62.715L43.923-62.715Q44.123-62.692 44.173-62.481L44.173-59.825L44.599-59.825Q44.806-59.801 44.845-59.594L44.845-59.504Q44.806-59.289 44.599-59.266L43.783-59.266Q43.583-59.289 43.533-59.489Q43.130-59.227 42.623-59.227Q42.388-59.227 42.173-59.268Q41.958-59.309 41.792-59.411Q41.626-59.512 41.523-59.690Q41.419-59.868 41.419-60.121M44.994-59.504L44.994-59.594Q45.037-59.801 45.244-59.825L45.665-59.825L45.665-62.153L45.244-62.153Q45.037-62.176 44.994-62.395L44.994-62.481Q45.040-62.692 45.244-62.715L46.060-62.715Q46.255-62.692 46.306-62.481L46.306-62.395L46.298-62.371Q46.525-62.551 46.798-62.653Q47.072-62.754 47.365-62.754Q47.712-62.754 47.951-62.614Q48.189-62.473 48.304-62.215Q48.419-61.957 48.419-61.602L48.419-59.825L48.845-59.825Q49.052-59.801 49.091-59.594L49.091-59.504Q49.052-59.289 48.845-59.266L47.451-59.266Q47.255-59.289 47.205-59.504L47.205-59.594Q47.255-59.805 47.451-59.825L47.779-59.825L47.779-61.571Q47.779-61.879 47.689-62.037Q47.599-62.196 47.306-62.196Q47.037-62.196 46.808-62.065Q46.580-61.934 46.443-61.705Q46.306-61.477 46.306-61.211L46.306-59.825L46.732-59.825Q46.939-59.801 46.978-59.594L46.978-59.504Q46.939-59.289 46.732-59.266L45.244-59.266Q45.037-59.289 44.994-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M57.508-60.243L52.195-60.243Q52.117-60.250 52.068-60.299Q52.020-60.348 52.020-60.426Q52.020-60.496 52.067-60.547Q52.113-60.598 52.195-60.610L57.508-60.610Q57.582-60.598 57.629-60.547Q57.676-60.496 57.676-60.426Q57.676-60.348 57.627-60.299Q57.578-60.250 57.508-60.243M57.508-61.930L52.195-61.930Q52.117-61.938 52.068-61.987Q52.020-62.036 52.020-62.114Q52.020-62.184 52.067-62.235Q52.113-62.286 52.195-62.297L57.508-62.297Q57.582-62.286 57.629-62.235Q57.676-62.184 57.676-62.114Q57.676-62.036 57.627-61.987Q57.578-61.938 57.508-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M62.757-59.266L61.039-59.266Q60.999-59.266 60.972-59.307Q60.945-59.348 60.945-59.395L60.968-59.496Q60.976-59.547 61.062-59.563Q61.792-59.563 61.917-60.090L62.945-64.188Q62.968-64.258 62.968-64.321Q62.968-64.383 62.902-64.403Q62.757-64.434 62.335-64.434Q62.230-64.465 62.230-64.563L62.261-64.664Q62.273-64.711 62.351-64.731L63.749-64.731Q63.808-64.731 63.845-64.702Q63.882-64.672 63.886-64.618L64.597-60.043L67.597-64.618Q67.675-64.731 67.792-64.731L69.136-64.731Q69.183-64.719 69.210-64.688Q69.238-64.657 69.238-64.610L69.214-64.504Q69.195-64.450 69.121-64.434Q68.679-64.434 68.519-64.395Q68.371-64.360 68.312-64.129L67.230-59.809Q67.214-59.715 67.214-59.672Q67.214-59.614 67.281-59.594Q67.421-59.563 67.847-59.563Q67.945-59.536 67.945-59.442L67.917-59.336Q67.910-59.286 67.832-59.266L65.749-59.266Q65.710-59.266 65.683-59.307Q65.656-59.348 65.656-59.395L65.679-59.496Q65.687-59.547 65.777-59.563Q66.214-59.563 66.373-59.602Q66.531-59.641 66.574-59.868L67.710-64.411L64.414-59.379Q64.347-59.266 64.214-59.266Q64.082-59.266 64.070-59.379L63.296-64.344L62.214-60.036Q62.199-59.934 62.199-59.883Q62.199-59.684 62.363-59.623Q62.527-59.563 62.777-59.563Q62.871-59.536 62.871-59.442L62.847-59.336Q62.839-59.286 62.757-59.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M71.723-58.155L69.432-58.155L69.432-58.413Q70.308-58.413 70.308-58.586L70.308-61.665Q70.115-61.577 69.883-61.540Q69.652-61.504 69.397-61.504L69.397-61.761Q69.775-61.761 70.096-61.846Q70.416-61.931 70.645-62.145L70.765-62.145Q70.797-62.145 70.822-62.122Q70.847-62.098 70.847-62.060L70.847-58.586Q70.847-58.413 71.723-58.413\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M75.017-57.266L73.841-57.266L73.841-65.266L75.017-65.266L75.017-64.899L74.208-64.899L74.208-57.633L75.017-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M75.394-59.504L75.394-59.594Q75.433-59.801 75.644-59.825L75.952-59.825L75.952-63.594L75.644-63.594Q75.433-63.618 75.394-63.832L75.394-63.922Q75.433-64.129 75.644-64.153L77.593-64.153Q77.991-64.153 78.337-63.952Q78.683-63.750 78.890-63.405Q79.097-63.059 79.097-62.657Q79.097-62.250 78.892-61.907Q78.687-61.563 78.341-61.358Q77.995-61.153 77.593-61.153L76.593-61.153L76.593-59.825L76.905-59.825Q77.116-59.801 77.155-59.594L77.155-59.504Q77.116-59.289 76.905-59.266L75.644-59.266Q75.433-59.289 75.394-59.504M76.593-63.594L76.593-61.715L77.433-61.715Q77.694-61.715 77.931-61.838Q78.167-61.961 78.312-62.176Q78.456-62.391 78.456-62.657Q78.456-62.926 78.312-63.137Q78.167-63.348 77.931-63.471Q77.694-63.594 77.433-63.594L76.593-63.594M81.722-59.188Q81.272-59.188 80.907-59.412Q80.542-59.637 80.288-60.020Q80.034-60.403 79.909-60.846Q79.784-61.289 79.784-61.715Q79.784-62.141 79.909-62.580Q80.034-63.020 80.288-63.403Q80.542-63.786 80.901-64.010Q81.261-64.235 81.722-64.235Q81.999-64.235 82.257-64.143Q82.515-64.051 82.730-63.883L82.862-64.121Q82.890-64.172 82.944-64.203Q82.999-64.235 83.058-64.235L83.136-64.235Q83.230-64.223 83.292-64.164Q83.355-64.106 83.366-64L83.366-62.672Q83.355-62.571 83.292-62.508Q83.230-62.446 83.136-62.434L82.968-62.434Q82.866-62.446 82.804-62.512Q82.741-62.578 82.730-62.672Q82.690-62.938 82.567-63.162Q82.444-63.387 82.241-63.530Q82.038-63.672 81.776-63.672Q81.444-63.672 81.192-63.489Q80.940-63.305 80.769-63.004Q80.597-62.703 80.511-62.362Q80.425-62.020 80.425-61.715Q80.425-61.411 80.509-61.069Q80.593-60.727 80.765-60.424Q80.937-60.121 81.194-59.934Q81.452-59.746 81.784-59.746Q82.167-59.746 82.448-60.020Q82.730-60.293 82.730-60.680Q82.757-60.891 82.968-60.914L83.136-60.914Q83.366-60.875 83.366-60.649Q83.366-60.332 83.230-60.061Q83.093-59.789 82.858-59.592Q82.624-59.395 82.333-59.291Q82.042-59.188 81.722-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M85.069-57.266L83.894-57.266L83.894-57.633L84.702-57.633L84.702-64.899L83.894-64.899L83.894-65.266L85.069-65.266L85.069-57.266M86.894-57.860Q86.894-57.899 86.917-57.922Q87.190-58.207 87.333-58.571Q87.476-58.934 87.476-59.321Q87.378-59.266 87.253-59.266Q87.062-59.266 86.925-59.399Q86.788-59.532 86.788-59.731Q86.788-59.922 86.925-60.055Q87.062-60.188 87.253-60.188Q87.733-60.188 87.733-59.313Q87.733-59.024 87.661-58.743Q87.589-58.461 87.446-58.207Q87.304-57.953 87.108-57.746Q87.077-57.715 87.038-57.715Q86.991-57.715 86.942-57.760Q86.894-57.805 86.894-57.860M86.788-62.258Q86.788-62.442 86.925-62.578Q87.062-62.715 87.253-62.715Q87.444-62.715 87.577-62.582Q87.710-62.450 87.710-62.258Q87.710-62.059 87.577-61.926Q87.444-61.793 87.253-61.793Q87.062-61.793 86.925-61.930Q86.788-62.067 86.788-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M92.922-59.489L92.036-62.153L91.715-62.153Q91.516-62.176 91.465-62.395L91.465-62.481Q91.516-62.692 91.715-62.715L92.875-62.715Q93.071-62.696 93.121-62.481L93.121-62.395Q93.071-62.176 92.875-62.153L92.594-62.153L93.387-59.778L94.176-62.153L93.899-62.153Q93.700-62.176 93.649-62.395L93.649-62.481Q93.700-62.692 93.899-62.715L95.059-62.715Q95.254-62.692 95.305-62.481L95.305-62.395Q95.254-62.176 95.059-62.153L94.739-62.153L93.852-59.489Q93.809-59.375 93.707-59.301Q93.606-59.227 93.481-59.227L93.289-59.227Q93.172-59.227 93.069-59.299Q92.965-59.371 92.922-59.489M95.918-60.379Q95.918-60.825 96.332-61.082Q96.746-61.340 97.287-61.440Q97.829-61.539 98.336-61.547Q98.336-61.762 98.202-61.914Q98.067-62.067 97.860-62.143Q97.653-62.219 97.442-62.219Q97.098-62.219 96.938-62.196L96.938-62.137Q96.938-61.969 96.819-61.854Q96.700-61.739 96.536-61.739Q96.360-61.739 96.245-61.862Q96.129-61.985 96.129-62.153Q96.129-62.559 96.510-62.668Q96.891-62.778 97.450-62.778Q97.719-62.778 97.987-62.700Q98.254-62.621 98.479-62.471Q98.704-62.321 98.840-62.100Q98.977-61.879 98.977-61.602L98.977-59.883Q98.977-59.825 99.504-59.825Q99.700-59.805 99.750-59.594L99.750-59.504Q99.700-59.289 99.504-59.266L99.360-59.266Q99.016-59.266 98.787-59.313Q98.559-59.360 98.414-59.547Q97.954-59.227 97.246-59.227Q96.911-59.227 96.606-59.368Q96.301-59.508 96.110-59.770Q95.918-60.032 95.918-60.379M96.559-60.371Q96.559-60.098 96.801-59.942Q97.043-59.786 97.329-59.786Q97.547-59.786 97.780-59.844Q98.012-59.903 98.174-60.041Q98.336-60.180 98.336-60.403L98.336-60.993Q98.055-60.993 97.639-60.936Q97.223-60.879 96.891-60.741Q96.559-60.602 96.559-60.371M100.207-59.504L100.207-59.594Q100.258-59.801 100.454-59.825L101.559-59.825L101.559-63.594L100.454-63.594Q100.258-63.618 100.207-63.832L100.207-63.922Q100.258-64.129 100.454-64.153L101.950-64.153Q102.141-64.129 102.200-63.922L102.200-59.825L103.301-59.825Q103.500-59.801 103.551-59.594L103.551-59.504Q103.500-59.289 103.301-59.266L100.454-59.266Q100.258-59.289 100.207-59.504M106.270-59.188Q105.821-59.188 105.455-59.412Q105.090-59.637 104.836-60.020Q104.582-60.403 104.457-60.846Q104.332-61.289 104.332-61.715Q104.332-62.141 104.457-62.580Q104.582-63.020 104.836-63.403Q105.090-63.786 105.450-64.010Q105.809-64.235 106.270-64.235Q106.547-64.235 106.805-64.143Q107.063-64.051 107.278-63.883L107.411-64.121Q107.438-64.172 107.493-64.203Q107.547-64.235 107.606-64.235L107.684-64.235Q107.778-64.223 107.840-64.164Q107.903-64.106 107.914-64L107.914-62.672Q107.903-62.571 107.840-62.508Q107.778-62.446 107.684-62.434L107.516-62.434Q107.414-62.446 107.352-62.512Q107.289-62.578 107.278-62.672Q107.239-62.938 107.116-63.162Q106.993-63.387 106.789-63.530Q106.586-63.672 106.325-63.672Q105.993-63.672 105.741-63.489Q105.489-63.305 105.317-63.004Q105.145-62.703 105.059-62.362Q104.973-62.020 104.973-61.715Q104.973-61.411 105.057-61.069Q105.141-60.727 105.313-60.424Q105.485-60.121 105.743-59.934Q106-59.746 106.332-59.746Q106.715-59.746 106.996-60.020Q107.278-60.293 107.278-60.680Q107.305-60.891 107.516-60.914L107.684-60.914Q107.914-60.875 107.914-60.649Q107.914-60.332 107.778-60.061Q107.641-59.789 107.407-59.592Q107.172-59.395 106.881-59.291Q106.590-59.188 106.270-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M116.588-60.243L111.275-60.243Q111.197-60.250 111.148-60.299Q111.100-60.348 111.100-60.426Q111.100-60.496 111.147-60.547Q111.193-60.598 111.275-60.610L116.588-60.610Q116.662-60.598 116.709-60.547Q116.756-60.496 116.756-60.426Q116.756-60.348 116.707-60.299Q116.658-60.250 116.588-60.243M116.588-61.930L111.275-61.930Q111.197-61.938 111.148-61.987Q111.100-62.036 111.100-62.114Q111.100-62.184 111.147-62.235Q111.193-62.286 111.275-62.297L116.588-62.297Q116.662-62.286 116.709-62.235Q116.756-62.184 116.756-62.114Q116.756-62.036 116.707-61.987Q116.658-61.938 116.588-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M121.838-59.266L120.120-59.266Q120.080-59.266 120.053-59.307Q120.026-59.348 120.026-59.395L120.049-59.496Q120.057-59.547 120.143-59.563Q120.873-59.563 120.998-60.090L122.026-64.188Q122.049-64.258 122.049-64.321Q122.049-64.383 121.983-64.403Q121.838-64.434 121.416-64.434Q121.311-64.465 121.311-64.563L121.342-64.664Q121.354-64.711 121.432-64.731L122.830-64.731Q122.889-64.731 122.926-64.702Q122.963-64.672 122.967-64.618L123.678-60.043L126.678-64.618Q126.756-64.731 126.873-64.731L128.217-64.731Q128.264-64.719 128.291-64.688Q128.319-64.657 128.319-64.610L128.295-64.504Q128.276-64.450 128.202-64.434Q127.760-64.434 127.600-64.395Q127.452-64.360 127.393-64.129L126.311-59.809Q126.295-59.715 126.295-59.672Q126.295-59.614 126.362-59.594Q126.502-59.563 126.928-59.563Q127.026-59.536 127.026-59.442L126.998-59.336Q126.991-59.286 126.912-59.266L124.830-59.266Q124.791-59.266 124.764-59.307Q124.737-59.348 124.737-59.395L124.760-59.496Q124.768-59.547 124.858-59.563Q125.295-59.563 125.454-59.602Q125.612-59.641 125.655-59.868L126.791-64.411L123.495-59.379Q123.428-59.266 123.295-59.266Q123.162-59.266 123.151-59.379L122.377-64.344L121.295-60.036Q121.280-59.934 121.280-59.883Q121.280-59.684 121.444-59.623Q121.608-59.563 121.858-59.563Q121.952-59.536 121.952-59.442L121.928-59.336Q121.920-59.286 121.838-59.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M128.141-59.078Q128.141-59.465 128.402-59.736Q128.662-60.007 129.064-60.176L128.891-60.273Q128.642-60.420 128.488-60.638Q128.334-60.856 128.334-61.126Q128.334-61.436 128.520-61.669Q128.706-61.902 128.999-62.024Q129.292-62.145 129.594-62.145Q129.884-62.145 130.176-62.047Q130.467-61.949 130.660-61.744Q130.854-61.539 130.854-61.240Q130.854-60.921 130.644-60.701Q130.435-60.481 130.092-60.320L130.414-60.147Q130.696-59.983 130.870-59.737Q131.044-59.491 131.044-59.186Q131.044-58.823 130.829-58.561Q130.614-58.299 130.277-58.164Q129.940-58.029 129.594-58.029Q129.251-58.029 128.917-58.143Q128.583-58.258 128.362-58.493Q128.141-58.729 128.141-59.078M128.548-59.084Q128.548-58.709 128.878-58.489Q129.207-58.269 129.594-58.269Q129.828-58.269 130.069-58.344Q130.309-58.419 130.473-58.577Q130.637-58.735 130.637-58.978Q130.637-59.148 130.529-59.287Q130.420-59.426 130.259-59.517L129.322-60.033Q128.996-59.895 128.772-59.649Q128.548-59.403 128.548-59.084M128.970-60.938L129.846-60.458Q130.493-60.774 130.493-61.240Q130.493-61.454 130.357-61.611Q130.221-61.767 130.014-61.845Q129.808-61.923 129.594-61.923Q129.272-61.923 128.982-61.783Q128.692-61.644 128.692-61.354Q128.692-61.123 128.970-60.938\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M134.098-57.266L132.922-57.266L132.922-65.266L134.098-65.266L134.098-64.899L133.289-64.899L133.289-57.633L134.098-57.633\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M134.475-59.504L134.475-59.594Q134.514-59.801 134.725-59.825L135.033-59.825L135.033-63.594L134.725-63.594Q134.514-63.618 134.475-63.832L134.475-63.922Q134.514-64.129 134.725-64.153L136.674-64.153Q137.072-64.153 137.418-63.952Q137.764-63.750 137.971-63.405Q138.178-63.059 138.178-62.657Q138.178-62.250 137.973-61.907Q137.768-61.563 137.422-61.358Q137.076-61.153 136.674-61.153L135.674-61.153L135.674-59.825L135.986-59.825Q136.197-59.801 136.236-59.594L136.236-59.504Q136.197-59.289 135.986-59.266L134.725-59.266Q134.514-59.289 134.475-59.504M135.674-63.594L135.674-61.715L136.514-61.715Q136.775-61.715 137.012-61.838Q137.248-61.961 137.393-62.176Q137.537-62.391 137.537-62.657Q137.537-62.926 137.393-63.137Q137.248-63.348 137.012-63.471Q136.775-63.594 136.514-63.594L135.674-63.594M140.803-59.188Q140.353-59.188 139.988-59.412Q139.623-59.637 139.369-60.020Q139.115-60.403 138.990-60.846Q138.865-61.289 138.865-61.715Q138.865-62.141 138.990-62.580Q139.115-63.020 139.369-63.403Q139.623-63.786 139.982-64.010Q140.342-64.235 140.803-64.235Q141.080-64.235 141.338-64.143Q141.596-64.051 141.811-63.883L141.943-64.121Q141.971-64.172 142.025-64.203Q142.080-64.235 142.139-64.235L142.217-64.235Q142.311-64.223 142.373-64.164Q142.436-64.106 142.447-64L142.447-62.672Q142.436-62.571 142.373-62.508Q142.311-62.446 142.217-62.434L142.049-62.434Q141.947-62.446 141.885-62.512Q141.822-62.578 141.811-62.672Q141.771-62.938 141.648-63.162Q141.525-63.387 141.322-63.530Q141.119-63.672 140.857-63.672Q140.525-63.672 140.273-63.489Q140.021-63.305 139.850-63.004Q139.678-62.703 139.592-62.362Q139.506-62.020 139.506-61.715Q139.506-61.411 139.590-61.069Q139.674-60.727 139.846-60.424Q140.018-60.121 140.275-59.934Q140.533-59.746 140.865-59.746Q141.248-59.746 141.529-60.020Q141.811-60.293 141.811-60.680Q141.838-60.891 142.049-60.914L142.217-60.914Q142.447-60.875 142.447-60.649Q142.447-60.332 142.311-60.061Q142.174-59.789 141.939-59.592Q141.705-59.395 141.414-59.291Q141.123-59.188 140.803-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M145.912-61.082L143.439-61.082Q143.361-61.094 143.312-61.143Q143.264-61.192 143.264-61.266Q143.264-61.340 143.312-61.389Q143.361-61.438 143.439-61.450L145.912-61.450L145.912-63.930Q145.939-64.098 146.096-64.098Q146.170-64.098 146.219-64.049Q146.268-64 146.279-63.930L146.279-61.450L148.752-61.450Q148.920-61.418 148.920-61.266Q148.920-61.114 148.752-61.082L146.279-61.082L146.279-58.602Q146.268-58.532 146.219-58.483Q146.170-58.434 146.096-58.434Q145.939-58.434 145.912-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M152.996-59.266L150.203-59.266L150.203-59.563Q151.265-59.563 151.265-59.825L151.265-63.993Q150.836-63.778 150.156-63.778L150.156-64.075Q151.175-64.075 151.691-64.586L151.836-64.586Q151.910-64.567 151.929-64.489L151.929-59.825Q151.929-59.563 152.996-59.563L152.996-59.266M155.007-57.266L153.832-57.266L153.832-57.633L154.640-57.633L154.640-64.899L153.832-64.899L153.832-65.266L155.007-65.266L155.007-57.266M156.832-57.860Q156.832-57.899 156.855-57.922Q157.129-58.207 157.271-58.571Q157.414-58.934 157.414-59.321Q157.316-59.266 157.191-59.266Q157-59.266 156.863-59.399Q156.726-59.532 156.726-59.731Q156.726-59.922 156.863-60.055Q157-60.188 157.191-60.188Q157.672-60.188 157.672-59.313Q157.672-59.024 157.599-58.743Q157.527-58.461 157.384-58.207Q157.242-57.953 157.047-57.746Q157.015-57.715 156.976-57.715Q156.929-57.715 156.881-57.760Q156.832-57.805 156.832-57.860M156.726-62.258Q156.726-62.442 156.863-62.578Q157-62.715 157.191-62.715Q157.382-62.715 157.515-62.582Q157.648-62.450 157.648-62.258Q157.648-62.059 157.515-61.926Q157.382-61.793 157.191-61.793Q157-61.793 156.863-61.930Q156.726-62.067 156.726-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M162.864-59.489L161.978-62.153L161.657-62.153Q161.458-62.176 161.407-62.395L161.407-62.481Q161.458-62.692 161.657-62.715L162.817-62.715Q163.013-62.696 163.063-62.481L163.063-62.395Q163.013-62.176 162.817-62.153L162.536-62.153L163.329-59.778L164.118-62.153L163.841-62.153Q163.642-62.176 163.591-62.395L163.591-62.481Q163.642-62.692 163.841-62.715L165.001-62.715Q165.196-62.692 165.247-62.481L165.247-62.395Q165.196-62.176 165.001-62.153L164.681-62.153L163.794-59.489Q163.751-59.375 163.649-59.301Q163.548-59.227 163.423-59.227L163.231-59.227Q163.114-59.227 163.011-59.299Q162.907-59.371 162.864-59.489M165.860-60.379Q165.860-60.825 166.274-61.082Q166.688-61.340 167.229-61.440Q167.770-61.539 168.278-61.547Q168.278-61.762 168.144-61.914Q168.009-62.067 167.802-62.143Q167.595-62.219 167.384-62.219Q167.040-62.219 166.880-62.196L166.880-62.137Q166.880-61.969 166.761-61.854Q166.642-61.739 166.478-61.739Q166.302-61.739 166.187-61.862Q166.071-61.985 166.071-62.153Q166.071-62.559 166.452-62.668Q166.833-62.778 167.392-62.778Q167.661-62.778 167.929-62.700Q168.196-62.621 168.421-62.471Q168.645-62.321 168.782-62.100Q168.919-61.879 168.919-61.602L168.919-59.883Q168.919-59.825 169.446-59.825Q169.642-59.805 169.692-59.594L169.692-59.504Q169.642-59.289 169.446-59.266L169.302-59.266Q168.958-59.266 168.729-59.313Q168.501-59.360 168.356-59.547Q167.895-59.227 167.188-59.227Q166.853-59.227 166.548-59.368Q166.243-59.508 166.052-59.770Q165.860-60.032 165.860-60.379M166.501-60.371Q166.501-60.098 166.743-59.942Q166.985-59.786 167.270-59.786Q167.489-59.786 167.722-59.844Q167.954-59.903 168.116-60.041Q168.278-60.180 168.278-60.403L168.278-60.993Q167.997-60.993 167.581-60.936Q167.165-60.879 166.833-60.741Q166.501-60.602 166.501-60.371M170.149-59.504L170.149-59.594Q170.200-59.801 170.395-59.825L171.501-59.825L171.501-63.594L170.395-63.594Q170.200-63.618 170.149-63.832L170.149-63.922Q170.200-64.129 170.395-64.153L171.892-64.153Q172.083-64.129 172.142-63.922L172.142-59.825L173.243-59.825Q173.442-59.801 173.493-59.594L173.493-59.504Q173.442-59.289 173.243-59.266L170.395-59.266Q170.200-59.289 170.149-59.504M174.130-59.504L174.130-59.594Q174.169-59.801 174.380-59.825L174.688-59.825L174.688-63.594L174.380-63.594Q174.169-63.618 174.130-63.832L174.130-63.922Q174.169-64.129 174.380-64.153L176.329-64.153Q176.728-64.153 177.073-63.952Q177.419-63.750 177.626-63.405Q177.833-63.059 177.833-62.657Q177.833-62.250 177.628-61.907Q177.423-61.563 177.077-61.358Q176.731-61.153 176.329-61.153L175.329-61.153L175.329-59.825L175.642-59.825Q175.853-59.801 175.892-59.594L175.892-59.504Q175.853-59.289 175.642-59.266L174.380-59.266Q174.169-59.289 174.130-59.504M175.329-63.594L175.329-61.715L176.169-61.715Q176.431-61.715 176.667-61.838Q176.903-61.961 177.048-62.176Q177.192-62.391 177.192-62.657Q177.192-62.926 177.048-63.137Q176.903-63.348 176.667-63.471Q176.431-63.594 176.169-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M186.530-60.243L181.217-60.243Q181.139-60.250 181.090-60.299Q181.042-60.348 181.042-60.426Q181.042-60.496 181.089-60.547Q181.135-60.598 181.217-60.610L186.530-60.610Q186.604-60.598 186.651-60.547Q186.698-60.496 186.698-60.426Q186.698-60.348 186.649-60.299Q186.600-60.250 186.530-60.243M186.530-61.930L181.217-61.930Q181.139-61.938 181.090-61.987Q181.042-62.036 181.042-62.114Q181.042-62.184 181.089-62.235Q181.135-62.286 181.217-62.297L186.530-62.297Q186.604-62.286 186.651-62.235Q186.698-62.184 186.698-62.114Q186.698-62.036 186.649-61.987Q186.600-61.938 186.530-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M189.726-59.504L189.726-59.594Q189.765-59.801 189.976-59.825L190.284-59.825L190.284-63.594L189.976-63.594Q189.765-63.618 189.726-63.832L189.726-63.922Q189.765-64.129 189.976-64.153L191.925-64.153Q192.323-64.153 192.669-63.952Q193.015-63.750 193.222-63.405Q193.429-63.059 193.429-62.657Q193.429-62.250 193.224-61.907Q193.019-61.563 192.673-61.358Q192.327-61.153 191.925-61.153L190.925-61.153L190.925-59.825L191.237-59.825Q191.448-59.801 191.487-59.594L191.487-59.504Q191.448-59.289 191.237-59.266L189.976-59.266Q189.765-59.289 189.726-59.504M190.925-63.594L190.925-61.715L191.765-61.715Q192.026-61.715 192.263-61.838Q192.499-61.961 192.644-62.176Q192.788-62.391 192.788-62.657Q192.788-62.926 192.644-63.137Q192.499-63.348 192.263-63.471Q192.026-63.594 191.765-63.594L190.925-63.594M196.054-59.188Q195.605-59.188 195.239-59.412Q194.874-59.637 194.620-60.020Q194.366-60.403 194.241-60.846Q194.116-61.289 194.116-61.715Q194.116-62.141 194.241-62.580Q194.366-63.020 194.620-63.403Q194.874-63.786 195.233-64.010Q195.593-64.235 196.054-64.235Q196.331-64.235 196.589-64.143Q196.847-64.051 197.062-63.883L197.194-64.121Q197.222-64.172 197.276-64.203Q197.331-64.235 197.390-64.235L197.468-64.235Q197.562-64.223 197.624-64.164Q197.687-64.106 197.698-64L197.698-62.672Q197.687-62.571 197.624-62.508Q197.562-62.446 197.468-62.434L197.300-62.434Q197.198-62.446 197.136-62.512Q197.073-62.578 197.062-62.672Q197.022-62.938 196.899-63.162Q196.776-63.387 196.573-63.530Q196.370-63.672 196.108-63.672Q195.776-63.672 195.524-63.489Q195.272-63.305 195.101-63.004Q194.929-62.703 194.843-62.362Q194.757-62.020 194.757-61.715Q194.757-61.411 194.841-61.069Q194.925-60.727 195.097-60.424Q195.269-60.121 195.526-59.934Q195.784-59.746 196.116-59.746Q196.499-59.746 196.780-60.020Q197.062-60.293 197.062-60.680Q197.089-60.891 197.300-60.914L197.468-60.914Q197.698-60.875 197.698-60.649Q197.698-60.332 197.562-60.061Q197.425-59.789 197.190-59.592Q196.956-59.395 196.665-59.291Q196.374-59.188 196.054-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M201.163-61.082L198.690-61.082Q198.612-61.094 198.563-61.143Q198.515-61.192 198.515-61.266Q198.515-61.340 198.563-61.389Q198.612-61.438 198.690-61.450L201.163-61.450L201.163-63.930Q201.190-64.098 201.347-64.098Q201.421-64.098 201.470-64.049Q201.519-64 201.530-63.930L201.530-61.450L204.003-61.450Q204.171-61.418 204.171-61.266Q204.171-61.114 204.003-61.082L201.530-61.082L201.530-58.602Q201.519-58.532 201.470-58.483Q201.421-58.434 201.347-58.434Q201.190-58.434 201.163-58.602\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 2)\">\u003Cpath d=\"M205.645-59.610Q205.876-59.371 206.423-59.371Q206.676-59.371 206.899-59.495Q207.122-59.618 207.292-59.834Q207.462-60.051 207.555-60.282Q207.680-60.594 207.719-60.934Q207.758-61.274 207.758-61.723Q207.590-61.391 207.307-61.196Q207.024-61 206.684-61Q206.321-61 206.008-61.145Q205.696-61.289 205.473-61.541Q205.251-61.793 205.128-62.120Q205.005-62.446 205.005-62.801Q205.005-63.297 205.247-63.707Q205.489-64.118 205.907-64.352Q206.325-64.586 206.821-64.586Q207.778-64.586 208.159-63.756Q208.540-62.926 208.540-61.852Q208.540-61.219 208.290-60.575Q208.040-59.930 207.557-59.514Q207.075-59.098 206.423-59.098Q205.919-59.098 205.569-59.315Q205.219-59.532 205.219-60Q205.219-60.168 205.333-60.282Q205.446-60.395 205.614-60.395Q205.719-60.395 205.811-60.344Q205.903-60.293 205.954-60.202Q206.005-60.110 206.005-60Q206.005-59.852 205.903-59.731Q205.801-59.610 205.645-59.610M206.723-61.258Q207.055-61.258 207.288-61.469Q207.520-61.680 207.632-62.002Q207.743-62.325 207.743-62.641Q207.743-62.739 207.731-62.793Q207.735-62.801 207.739-62.813Q207.743-62.825 207.743-62.832Q207.743-63.075 207.700-63.338Q207.657-63.602 207.555-63.830Q207.454-64.059 207.272-64.202Q207.090-64.344 206.821-64.344Q206.387-64.344 206.161-64.123Q205.934-63.903 205.862-63.571Q205.790-63.239 205.790-62.801Q205.790-62.356 205.846-62.034Q205.903-61.711 206.108-61.485Q206.313-61.258 206.723-61.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-47.316H276.03\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M11.739-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.739-64.048Q12.224-64.048 12.660-63.853Q13.096-63.658 13.419-63.316Q13.742-62.974 13.920-62.534Q14.097-62.093 14.097-61.611Q14.097-61.125 13.913-60.702Q13.728-60.278 13.405-59.956Q13.082-59.635 12.650-59.451Q12.218-59.266 11.739-59.266M10.351-63.556L10.351-59.755Q10.351-59.615 10.440-59.580Q10.529-59.546 10.717-59.546L11.541-59.546Q12.166-59.546 12.570-59.808Q12.973-60.069 13.161-60.536Q13.349-61.002 13.349-61.611Q13.349-62.089 13.257-62.482Q13.164-62.875 12.915-63.173Q12.676-63.460 12.312-63.614Q11.948-63.767 11.541-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.866-60.801Q14.866-61.122 14.991-61.411Q15.116-61.700 15.342-61.923Q15.567-62.147 15.863-62.267Q16.158-62.387 16.476-62.387Q16.804-62.387 17.066-62.287Q17.327-62.188 17.503-62.006Q17.679-61.823 17.773-61.565Q17.867-61.307 17.867-60.975Q17.867-60.883 17.785-60.862L15.530-60.862L15.530-60.801Q15.530-60.213 15.813-59.830Q16.097-59.447 16.664-59.447Q16.986-59.447 17.254-59.640Q17.522-59.833 17.611-60.148Q17.618-60.189 17.693-60.203L17.785-60.203Q17.867-60.179 17.867-60.107Q17.867-60.100 17.861-60.073Q17.748-59.676 17.377-59.437Q17.006-59.198 16.582-59.198Q16.145-59.198 15.745-59.406Q15.345-59.615 15.106-59.982Q14.866-60.349 14.866-60.801M15.536-61.071L17.351-61.071Q17.351-61.348 17.254-61.600Q17.157-61.853 16.958-62.009Q16.760-62.164 16.476-62.164Q16.199-62.164 15.986-62.006Q15.772-61.847 15.654-61.592Q15.536-61.337 15.536-61.071M18.455-60.777Q18.455-61.105 18.590-61.406Q18.725-61.706 18.961-61.927Q19.197-62.147 19.501-62.267Q19.805-62.387 20.130-62.387Q20.636-62.387 20.985-62.284Q21.333-62.182 21.333-61.806Q21.333-61.659 21.236-61.558Q21.138-61.457 20.991-61.457Q20.838-61.457 20.739-61.556Q20.639-61.655 20.639-61.806Q20.639-61.994 20.780-62.086Q20.578-62.137 20.137-62.137Q19.782-62.137 19.553-61.941Q19.324-61.744 19.223-61.435Q19.122-61.125 19.122-60.777Q19.122-60.428 19.248-60.122Q19.375-59.816 19.629-59.632Q19.884-59.447 20.240-59.447Q20.462-59.447 20.646-59.531Q20.831-59.615 20.966-59.770Q21.101-59.926 21.159-60.134Q21.173-60.189 21.227-60.189L21.340-60.189Q21.371-60.189 21.393-60.165Q21.415-60.141 21.415-60.107L21.415-60.086Q21.330-59.799 21.142-59.601Q20.954-59.403 20.689-59.300Q20.424-59.198 20.130-59.198Q19.699-59.198 19.312-59.404Q18.924-59.611 18.689-59.974Q18.455-60.336 18.455-60.777M21.962-60.749Q21.962-61.091 22.097-61.390Q22.232-61.689 22.471-61.913Q22.711-62.137 23.029-62.262Q23.346-62.387 23.678-62.387Q24.122-62.387 24.522-62.171Q24.922-61.956 25.156-61.578Q25.390-61.201 25.390-60.749Q25.390-60.408 25.249-60.124Q25.107-59.840 24.862-59.633Q24.618-59.427 24.309-59.312Q23.999-59.198 23.678-59.198Q23.247-59.198 22.846-59.399Q22.444-59.601 22.203-59.953Q21.962-60.305 21.962-60.749M23.678-59.447Q24.280-59.447 24.503-59.825Q24.727-60.203 24.727-60.835Q24.727-61.447 24.493-61.806Q24.259-62.164 23.678-62.164Q22.625-62.164 22.625-60.835Q22.625-60.203 22.851-59.825Q23.076-59.447 23.678-59.447\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.684 26.616)\">\u003Cpath d=\"M26.221-60.777Q26.221-61.115 26.362-61.406Q26.502-61.696 26.746-61.910Q26.990-62.123 27.295-62.238Q27.599-62.352 27.924-62.352Q28.194-62.352 28.457-62.253Q28.720-62.154 28.911-61.976L28.911-63.374Q28.911-63.644 28.804-63.706Q28.696-63.767 28.385-63.767L28.385-64.048L29.462-64.123L29.462-59.939Q29.462-59.751 29.516-59.668Q29.571-59.584 29.672-59.565Q29.773-59.546 29.988-59.546L29.988-59.266L28.881-59.198L28.881-59.615Q28.464-59.198 27.838-59.198Q27.407-59.198 27.035-59.410Q26.662-59.621 26.442-59.982Q26.221-60.343 26.221-60.777M27.896-59.420Q28.105-59.420 28.291-59.492Q28.477-59.563 28.631-59.700Q28.785-59.837 28.881-60.015L28.881-61.624Q28.795-61.771 28.650-61.891Q28.505-62.011 28.335-62.070Q28.166-62.130 27.985-62.130Q27.425-62.130 27.156-61.741Q26.888-61.351 26.888-60.770Q26.888-60.199 27.122-59.809Q27.356-59.420 27.896-59.420M30.596-60.801Q30.596-61.122 30.721-61.411Q30.846-61.700 31.072-61.923Q31.297-62.147 31.593-62.267Q31.888-62.387 32.206-62.387Q32.534-62.387 32.796-62.287Q33.057-62.188 33.233-62.006Q33.409-61.823 33.503-61.565Q33.597-61.307 33.597-60.975Q33.597-60.883 33.515-60.862L31.260-60.862L31.260-60.801Q31.260-60.213 31.543-59.830Q31.827-59.447 32.394-59.447Q32.716-59.447 32.984-59.640Q33.252-59.833 33.341-60.148Q33.348-60.189 33.423-60.203L33.515-60.203Q33.597-60.179 33.597-60.107Q33.597-60.100 33.591-60.073Q33.478-59.676 33.107-59.437Q32.736-59.198 32.312-59.198Q31.875-59.198 31.475-59.406Q31.075-59.615 30.836-59.982Q30.596-60.349 30.596-60.801M31.266-61.071L33.081-61.071Q33.081-61.348 32.984-61.600Q32.886-61.853 32.688-62.009Q32.490-62.164 32.206-62.164Q31.929-62.164 31.716-62.006Q31.502-61.847 31.384-61.592Q31.266-61.337 31.266-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 25.907)\">\u003Cpath d=\"M10.926-60.715L8.672-60.715L8.672-61.266L10.926-61.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-23.131H276.03\"\u002F>\u003Cg transform=\"translate(-34.163 50.761)\">\u003Cpath d=\"M13.356-59.266L8.953-59.266L8.953-59.546Q9.675-59.546 9.675-59.755L9.675-63.556Q9.675-63.767 8.953-63.767L8.953-64.048L13.243-64.048L13.451-62.411L13.188-62.411Q13.130-62.882 13.028-63.147Q12.925-63.412 12.741-63.545Q12.556-63.679 12.284-63.723Q12.012-63.767 11.513-63.767L10.731-63.767Q10.543-63.767 10.454-63.733Q10.365-63.699 10.365-63.556L10.365-61.891L10.939-61.891Q11.329-61.891 11.512-61.942Q11.695-61.994 11.777-62.166Q11.859-62.339 11.859-62.711L12.122-62.711L12.122-60.790L11.859-60.790Q11.859-61.163 11.777-61.336Q11.695-61.508 11.512-61.559Q11.329-61.611 10.939-61.611L10.365-61.611L10.365-59.755Q10.365-59.615 10.454-59.580Q10.543-59.546 10.731-59.546L11.578-59.546Q12.108-59.546 12.418-59.615Q12.727-59.683 12.915-59.850Q13.103-60.018 13.210-60.320Q13.318-60.623 13.404-61.136L13.670-61.136L13.356-59.266M15.441-59.266L14.118-59.266L14.118-59.546Q14.678-59.546 15.058-59.946L15.772-60.743L14.860-61.792Q14.723-61.939 14.574-61.971Q14.426-62.004 14.159-62.004L14.159-62.284L15.659-62.284L15.659-62.004Q15.468-62.004 15.468-61.870Q15.468-61.840 15.499-61.792L16.094-61.108L16.534-61.604Q16.647-61.734 16.647-61.850Q16.647-61.912 16.610-61.958Q16.572-62.004 16.514-62.004L16.514-62.284L17.830-62.284L17.830-62.004Q17.269-62.004 16.890-61.604L16.268-60.903L17.262-59.755Q17.362-59.656 17.462-59.611Q17.563-59.567 17.674-59.557Q17.785-59.546 17.963-59.546L17.963-59.266L16.470-59.266L16.470-59.546Q16.534-59.546 16.594-59.580Q16.654-59.615 16.654-59.680Q16.654-59.727 16.623-59.755L15.947-60.541L15.413-59.946Q15.301-59.816 15.301-59.700Q15.301-59.635 15.342-59.591Q15.383-59.546 15.441-59.546L15.441-59.266M18.418-60.801Q18.418-61.122 18.543-61.411Q18.667-61.700 18.893-61.923Q19.118-62.147 19.414-62.267Q19.710-62.387 20.028-62.387Q20.356-62.387 20.617-62.287Q20.879-62.188 21.055-62.006Q21.231-61.823 21.325-61.565Q21.419-61.307 21.419-60.975Q21.419-60.883 21.337-60.862L19.081-60.862L19.081-60.801Q19.081-60.213 19.365-59.830Q19.648-59.447 20.216-59.447Q20.537-59.447 20.805-59.640Q21.074-59.833 21.162-60.148Q21.169-60.189 21.244-60.203L21.337-60.203Q21.419-60.179 21.419-60.107Q21.419-60.100 21.412-60.073Q21.299-59.676 20.928-59.437Q20.557-59.198 20.134-59.198Q19.696-59.198 19.296-59.406Q18.896-59.615 18.657-59.982Q18.418-60.349 18.418-60.801M19.088-61.071L20.903-61.071Q20.903-61.348 20.805-61.600Q20.708-61.853 20.510-62.009Q20.311-62.164 20.028-62.164Q19.751-62.164 19.537-62.006Q19.324-61.847 19.206-61.592Q19.088-61.337 19.088-61.071M22.007-60.777Q22.007-61.105 22.142-61.406Q22.277-61.706 22.512-61.927Q22.748-62.147 23.053-62.267Q23.357-62.387 23.681-62.387Q24.187-62.387 24.536-62.284Q24.885-62.182 24.885-61.806Q24.885-61.659 24.787-61.558Q24.690-61.457 24.543-61.457Q24.389-61.457 24.290-61.556Q24.191-61.655 24.191-61.806Q24.191-61.994 24.331-62.086Q24.129-62.137 23.688-62.137Q23.333-62.137 23.104-61.941Q22.875-61.744 22.774-61.435Q22.673-61.125 22.673-60.777Q22.673-60.428 22.800-60.122Q22.926-59.816 23.181-59.632Q23.435-59.447 23.791-59.447Q24.013-59.447 24.198-59.531Q24.382-59.615 24.517-59.770Q24.652-59.926 24.710-60.134Q24.724-60.189 24.779-60.189L24.891-60.189Q24.922-60.189 24.944-60.165Q24.967-60.141 24.967-60.107L24.967-60.086Q24.881-59.799 24.693-59.601Q24.505-59.403 24.240-59.300Q23.975-59.198 23.681-59.198Q23.251-59.198 22.863-59.404Q22.475-59.611 22.241-59.974Q22.007-60.336 22.007-60.777M26.129-60.100L26.129-61.604Q26.129-61.874 26.021-61.935Q25.913-61.997 25.602-61.997L25.602-62.277L26.710-62.352L26.710-60.120L26.710-60.100Q26.710-59.820 26.761-59.676Q26.812-59.533 26.954-59.476Q27.096-59.420 27.383-59.420Q27.636-59.420 27.841-59.560Q28.046-59.700 28.162-59.926Q28.279-60.151 28.279-60.401L28.279-61.604Q28.279-61.874 28.171-61.935Q28.063-61.997 27.752-61.997L27.752-62.277L28.860-62.352L28.860-59.939Q28.860-59.748 28.913-59.666Q28.966-59.584 29.066-59.565Q29.167-59.546 29.383-59.546L29.383-59.266L28.306-59.198L28.306-59.762Q28.197-59.580 28.051-59.457Q27.906-59.334 27.720-59.266Q27.533-59.198 27.332-59.198Q26.129-59.198 26.129-60.100M30.497-60.107L30.497-62.004L29.858-62.004L29.858-62.226Q30.176-62.226 30.393-62.436Q30.610-62.646 30.710-62.956Q30.811-63.265 30.811-63.573L31.078-63.573L31.078-62.284L32.155-62.284L32.155-62.004L31.078-62.004L31.078-60.120Q31.078-59.844 31.182-59.645Q31.286-59.447 31.546-59.447Q31.703-59.447 31.809-59.551Q31.915-59.656 31.965-59.809Q32.014-59.963 32.014-60.120L32.014-60.534L32.281-60.534L32.281-60.107Q32.281-59.881 32.182-59.671Q32.083-59.461 31.898-59.329Q31.714-59.198 31.485-59.198Q31.047-59.198 30.772-59.435Q30.497-59.673 30.497-60.107M33.050-60.801Q33.050-61.122 33.175-61.411Q33.300-61.700 33.525-61.923Q33.751-62.147 34.046-62.267Q34.342-62.387 34.660-62.387Q34.988-62.387 35.250-62.287Q35.511-62.188 35.687-62.006Q35.863-61.823 35.957-61.565Q36.051-61.307 36.051-60.975Q36.051-60.883 35.969-60.862L33.713-60.862L33.713-60.801Q33.713-60.213 33.997-59.830Q34.281-59.447 34.848-59.447Q35.169-59.447 35.438-59.640Q35.706-59.833 35.795-60.148Q35.802-60.189 35.877-60.203L35.969-60.203Q36.051-60.179 36.051-60.107Q36.051-60.100 36.044-60.073Q35.931-59.676 35.561-59.437Q35.190-59.198 34.766-59.198Q34.328-59.198 33.928-59.406Q33.529-59.615 33.289-59.982Q33.050-60.349 33.050-60.801M33.720-61.071L35.535-61.071Q35.535-61.348 35.438-61.600Q35.340-61.853 35.142-62.009Q34.944-62.164 34.660-62.164Q34.383-62.164 34.169-62.006Q33.956-61.847 33.838-61.592Q33.720-61.337 33.720-61.071\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M10.840-59.188Q10.390-59.188 10.025-59.412Q9.660-59.637 9.406-60.020Q9.152-60.403 9.027-60.846Q8.902-61.289 8.902-61.715Q8.902-62.141 9.027-62.580Q9.152-63.020 9.406-63.403Q9.660-63.786 10.019-64.010Q10.379-64.235 10.840-64.235Q11.117-64.235 11.375-64.143Q11.633-64.051 11.847-63.883L11.980-64.121Q12.008-64.172 12.062-64.203Q12.117-64.235 12.176-64.235L12.254-64.235Q12.347-64.223 12.410-64.164Q12.472-64.106 12.484-64L12.484-62.672Q12.472-62.571 12.410-62.508Q12.347-62.446 12.254-62.434L12.086-62.434Q11.984-62.446 11.922-62.512Q11.859-62.578 11.847-62.672Q11.808-62.938 11.685-63.162Q11.562-63.387 11.359-63.530Q11.156-63.672 10.894-63.672Q10.562-63.672 10.310-63.489Q10.058-63.305 9.886-63.004Q9.715-62.703 9.629-62.362Q9.543-62.020 9.543-61.715Q9.543-61.411 9.627-61.069Q9.711-60.727 9.883-60.424Q10.054-60.121 10.312-59.934Q10.570-59.746 10.902-59.746Q11.285-59.746 11.566-60.020Q11.847-60.293 11.847-60.680Q11.875-60.891 12.086-60.914L12.254-60.914Q12.484-60.875 12.484-60.649Q12.484-60.332 12.347-60.061Q12.211-59.789 11.976-59.592Q11.742-59.395 11.451-59.291Q11.160-59.188 10.840-59.188M12.890-59.504L12.890-59.594Q12.933-59.801 13.140-59.825L13.562-59.825L13.562-62.153L13.140-62.153Q12.933-62.176 12.890-62.395L12.890-62.481Q12.937-62.692 13.140-62.715L13.957-62.715Q14.152-62.692 14.203-62.481L14.203-62.395L14.195-62.371Q14.422-62.551 14.695-62.653Q14.969-62.754 15.261-62.754Q15.609-62.754 15.847-62.614Q16.086-62.473 16.201-62.215Q16.316-61.957 16.316-61.602L16.316-59.825L16.742-59.825Q16.949-59.801 16.988-59.594L16.988-59.504Q16.949-59.289 16.742-59.266L15.347-59.266Q15.152-59.289 15.101-59.504L15.101-59.594Q15.152-59.805 15.347-59.825L15.676-59.825L15.676-61.571Q15.676-61.879 15.586-62.037Q15.496-62.196 15.203-62.196Q14.933-62.196 14.705-62.065Q14.476-61.934 14.340-61.705Q14.203-61.477 14.203-61.211L14.203-59.825L14.629-59.825Q14.836-59.801 14.875-59.594L14.875-59.504Q14.836-59.289 14.629-59.266L13.140-59.266Q12.933-59.289 12.890-59.504M18.929-59.227Q18.465-59.227 18.099-59.477Q17.734-59.727 17.529-60.131Q17.324-60.536 17.324-60.993Q17.324-61.336 17.449-61.657Q17.574-61.977 17.806-62.227Q18.039-62.477 18.344-62.616Q18.648-62.754 19.004-62.754Q19.515-62.754 19.922-62.434L19.922-63.594L19.500-63.594Q19.289-63.618 19.250-63.832L19.250-63.922Q19.289-64.129 19.500-64.153L20.312-64.153Q20.511-64.129 20.562-63.922L20.562-59.825L20.988-59.825Q21.195-59.801 21.234-59.594L21.234-59.504Q21.195-59.289 20.988-59.266L20.172-59.266Q19.972-59.289 19.922-59.504L19.922-59.633Q19.726-59.442 19.465-59.334Q19.203-59.227 18.929-59.227M18.969-59.786Q19.328-59.786 19.580-60.055Q19.832-60.325 19.922-60.700L19.922-61.532Q19.863-61.719 19.736-61.870Q19.609-62.020 19.431-62.108Q19.254-62.196 19.058-62.196Q18.750-62.196 18.500-62.026Q18.250-61.856 18.105-61.571Q17.961-61.286 17.961-60.985Q17.961-60.536 18.246-60.161Q18.531-59.786 18.969-59.786\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M29.646-60.243L24.333-60.243Q24.255-60.250 24.206-60.299Q24.158-60.348 24.158-60.426Q24.158-60.496 24.205-60.547Q24.251-60.598 24.333-60.610L29.646-60.610Q29.720-60.598 29.767-60.547Q29.814-60.496 29.814-60.426Q29.814-60.348 29.765-60.299Q29.716-60.250 29.646-60.243M29.646-61.930L24.333-61.930Q24.255-61.938 24.206-61.987Q24.158-62.036 24.158-62.114Q24.158-62.184 24.205-62.235Q24.251-62.286 24.333-62.297L29.646-62.297Q29.720-62.286 29.767-62.235Q29.814-62.184 29.814-62.114Q29.814-62.036 29.765-61.987Q29.716-61.938 29.646-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M33.131-62Q33.131-62.594 33.363-63.125Q33.596-63.657 34.012-64.057Q34.428-64.457 34.961-64.678Q35.494-64.899 36.099-64.899Q36.537-64.899 36.935-64.717Q37.334-64.536 37.642-64.203L38.115-64.868Q38.146-64.899 38.178-64.899L38.224-64.899Q38.252-64.899 38.283-64.868Q38.314-64.836 38.314-64.809L38.314-62.672Q38.314-62.649 38.283-62.618Q38.252-62.586 38.224-62.586L38.107-62.586Q38.080-62.586 38.049-62.618Q38.017-62.649 38.017-62.672Q38.017-62.938 37.875-63.291Q37.732-63.645 37.553-63.883Q37.299-64.215 36.949-64.409Q36.599-64.602 36.193-64.602Q35.689-64.602 35.236-64.383Q34.783-64.164 34.490-63.770Q33.994-63.102 33.994-62Q33.994-61.469 34.131-61.002Q34.267-60.536 34.543-60.170Q34.818-59.805 35.238-59.600Q35.658-59.395 36.201-59.395Q36.689-59.395 37.113-59.639Q37.537-59.883 37.785-60.303Q38.033-60.723 38.033-61.219Q38.033-61.254 38.062-61.280Q38.092-61.305 38.123-61.305L38.224-61.305Q38.267-61.305 38.291-61.276Q38.314-61.246 38.314-61.203Q38.314-60.766 38.138-60.377Q37.963-59.989 37.652-59.705Q37.342-59.422 36.931-59.260Q36.521-59.098 36.099-59.098Q35.510-59.098 34.969-59.319Q34.428-59.539 34.012-59.944Q33.596-60.348 33.363-60.877Q33.131-61.407 33.131-62M39.033-60.961Q39.033-61.465 39.289-61.897Q39.545-62.328 39.980-62.580Q40.416-62.832 40.916-62.832Q41.303-62.832 41.644-62.688Q41.986-62.543 42.248-62.282Q42.510-62.020 42.652-61.684Q42.795-61.348 42.795-60.961Q42.795-60.469 42.531-60.059Q42.267-59.649 41.838-59.418Q41.408-59.188 40.916-59.188Q40.424-59.188 39.990-59.420Q39.556-59.653 39.295-60.061Q39.033-60.469 39.033-60.961M40.916-59.465Q41.373-59.465 41.625-59.688Q41.877-59.911 41.965-60.262Q42.053-60.614 42.053-61.059Q42.053-61.489 41.959-61.827Q41.865-62.164 41.611-62.371Q41.357-62.578 40.916-62.578Q40.267-62.578 40.023-62.162Q39.779-61.746 39.779-61.059Q39.779-60.614 39.867-60.262Q39.955-59.911 40.207-59.688Q40.459-59.465 40.916-59.465M45.209-59.266L43.353-59.266L43.353-59.563Q43.627-59.563 43.795-59.610Q43.963-59.657 43.963-59.825L43.963-61.961Q43.963-62.176 43.900-62.272Q43.838-62.368 43.719-62.389Q43.599-62.411 43.353-62.411L43.353-62.707L44.545-62.793L44.545-62.059Q44.658-62.274 44.851-62.442Q45.045-62.610 45.283-62.702Q45.521-62.793 45.775-62.793Q46.943-62.793 46.943-61.715L46.943-59.825Q46.943-59.657 47.113-59.610Q47.283-59.563 47.553-59.563L47.553-59.266L45.697-59.266L45.697-59.563Q45.971-59.563 46.138-59.610Q46.306-59.657 46.306-59.825L46.306-61.700Q46.306-62.082 46.185-62.311Q46.064-62.539 45.713-62.539Q45.400-62.539 45.146-62.377Q44.892-62.215 44.746-61.946Q44.599-61.676 44.599-61.379L44.599-59.825Q44.599-59.657 44.769-59.610Q44.939-59.563 45.209-59.563L45.209-59.266M49.814-59.188Q49.334-59.188 48.926-59.432Q48.517-59.676 48.279-60.090Q48.041-60.504 48.041-60.993Q48.041-61.485 48.299-61.901Q48.556-62.317 48.988-62.555Q49.420-62.793 49.912-62.793Q50.533-62.793 50.982-62.356L50.982-63.985Q50.982-64.200 50.920-64.295Q50.857-64.391 50.740-64.412Q50.623-64.434 50.377-64.434L50.377-64.731L51.599-64.817L51.599-60.008Q51.599-59.797 51.662-59.702Q51.724-59.606 51.842-59.584Q51.959-59.563 52.209-59.563L52.209-59.266L50.959-59.188L50.959-59.672Q50.494-59.188 49.814-59.188M49.881-59.442Q50.221-59.442 50.513-59.633Q50.806-59.825 50.959-60.121L50.959-61.953Q50.810-62.227 50.549-62.383Q50.287-62.539 49.974-62.539Q49.349-62.539 49.066-62.092Q48.783-61.645 48.783-60.985Q48.783-60.340 49.035-59.891Q49.287-59.442 49.881-59.442\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M55.108-57.274Q54.495-57.731 54.093-58.366Q53.690-59 53.495-59.746Q53.300-60.493 53.300-61.266Q53.300-62.039 53.495-62.786Q53.690-63.532 54.093-64.166Q54.495-64.801 55.108-65.258Q55.120-65.262 55.128-65.264Q55.136-65.266 55.147-65.266L55.225-65.266Q55.264-65.266 55.290-65.239Q55.315-65.211 55.315-65.168Q55.315-65.118 55.284-65.098Q54.776-64.645 54.454-64.022Q54.132-63.399 53.991-62.703Q53.850-62.008 53.850-61.266Q53.850-60.532 53.989-59.832Q54.128-59.133 54.452-58.508Q54.776-57.883 55.284-57.434Q55.315-57.414 55.315-57.364Q55.315-57.321 55.290-57.293Q55.264-57.266 55.225-57.266L55.147-57.266Q55.139-57.270 55.130-57.272Q55.120-57.274 55.108-57.274\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M58.063-59.188Q57.613-59.188 57.248-59.412Q56.883-59.637 56.629-60.020Q56.375-60.403 56.250-60.846Q56.125-61.289 56.125-61.715Q56.125-62.141 56.250-62.580Q56.375-63.020 56.629-63.403Q56.883-63.786 57.242-64.010Q57.602-64.235 58.063-64.235Q58.340-64.235 58.598-64.143Q58.856-64.051 59.070-63.883L59.203-64.121Q59.231-64.172 59.285-64.203Q59.340-64.235 59.399-64.235L59.477-64.235Q59.570-64.223 59.633-64.164Q59.695-64.106 59.707-64L59.707-62.672Q59.695-62.571 59.633-62.508Q59.570-62.446 59.477-62.434L59.309-62.434Q59.207-62.446 59.145-62.512Q59.082-62.578 59.070-62.672Q59.031-62.938 58.908-63.162Q58.785-63.387 58.582-63.530Q58.379-63.672 58.117-63.672Q57.785-63.672 57.533-63.489Q57.281-63.305 57.109-63.004Q56.938-62.703 56.852-62.362Q56.766-62.020 56.766-61.715Q56.766-61.411 56.850-61.069Q56.934-60.727 57.106-60.424Q57.277-60.121 57.535-59.934Q57.793-59.746 58.125-59.746Q58.508-59.746 58.789-60.020Q59.070-60.293 59.070-60.680Q59.098-60.891 59.309-60.914L59.477-60.914Q59.707-60.875 59.707-60.649Q59.707-60.332 59.570-60.061Q59.434-59.789 59.199-59.592Q58.965-59.395 58.674-59.291Q58.383-59.188 58.063-59.188M62.309-59.188Q61.859-59.188 61.494-59.412Q61.129-59.637 60.875-60.020Q60.621-60.403 60.496-60.846Q60.371-61.289 60.371-61.715Q60.371-62.141 60.496-62.580Q60.621-63.020 60.875-63.403Q61.129-63.786 61.488-64.010Q61.848-64.235 62.309-64.235Q62.586-64.235 62.844-64.143Q63.102-64.051 63.317-63.883L63.449-64.121Q63.477-64.172 63.531-64.203Q63.586-64.235 63.645-64.235L63.723-64.235Q63.817-64.223 63.879-64.164Q63.942-64.106 63.953-64L63.953-62.672Q63.942-62.571 63.879-62.508Q63.817-62.446 63.723-62.434L63.555-62.434Q63.453-62.446 63.391-62.512Q63.328-62.578 63.317-62.672Q63.277-62.938 63.154-63.162Q63.031-63.387 62.828-63.530Q62.625-63.672 62.363-63.672Q62.031-63.672 61.779-63.489Q61.527-63.305 61.356-63.004Q61.184-62.703 61.098-62.362Q61.012-62.020 61.012-61.715Q61.012-61.411 61.096-61.069Q61.180-60.727 61.352-60.424Q61.524-60.121 61.781-59.934Q62.039-59.746 62.371-59.746Q62.754-59.746 63.035-60.020Q63.317-60.293 63.317-60.680Q63.344-60.891 63.555-60.914L63.723-60.914Q63.953-60.875 63.953-60.649Q63.953-60.332 63.817-60.061Q63.680-59.789 63.445-59.592Q63.211-59.395 62.920-59.291Q62.629-59.188 62.309-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M65.121-57.860Q65.121-57.883 65.152-57.930Q65.445-58.192 65.611-58.559Q65.777-58.926 65.777-59.313L65.777-59.371Q65.649-59.266 65.481-59.266Q65.289-59.266 65.152-59.399Q65.016-59.532 65.016-59.731Q65.016-59.922 65.152-60.055Q65.289-60.188 65.481-60.188Q65.781-60.188 65.906-59.918Q66.031-59.649 66.031-59.313Q66.031-58.864 65.850-58.450Q65.668-58.036 65.328-57.739Q65.305-57.715 65.266-57.715Q65.219-57.715 65.170-57.760Q65.121-57.805 65.121-57.860\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M68.692-59.504L68.692-59.594Q68.743-59.801 68.938-59.825L69.977-59.825L69.977-62.153L69.005-62.153Q68.805-62.176 68.755-62.395L68.755-62.481Q68.805-62.692 69.005-62.715L70.372-62.715Q70.567-62.696 70.618-62.481L70.618-59.825L71.532-59.825Q71.727-59.801 71.778-59.594L71.778-59.504Q71.727-59.289 71.532-59.266L68.938-59.266Q68.743-59.289 68.692-59.504M69.723-63.692L69.723-63.746Q69.723-63.918 69.860-64.039Q69.997-64.161 70.173-64.161Q70.345-64.161 70.481-64.039Q70.618-63.918 70.618-63.746L70.618-63.692Q70.618-63.516 70.481-63.395Q70.345-63.274 70.173-63.274Q69.997-63.274 69.860-63.395Q69.723-63.516 69.723-63.692M72.641-59.504L72.641-59.594Q72.692-59.801 72.888-59.825L73.770-59.825L73.770-62.153L72.915-62.153Q72.716-62.176 72.665-62.395L72.665-62.481Q72.716-62.692 72.915-62.715L73.770-62.715L73.770-63.168Q73.770-63.633 74.177-63.914Q74.583-64.196 75.063-64.196Q75.376-64.196 75.620-64.075Q75.864-63.953 75.864-63.672Q75.864-63.508 75.755-63.391Q75.645-63.274 75.481-63.274Q75.333-63.274 75.212-63.379Q75.091-63.485 75.091-63.633L75.009-63.633Q74.856-63.633 74.720-63.573Q74.583-63.512 74.497-63.397Q74.411-63.282 74.411-63.137L74.411-62.715L75.442-62.715Q75.638-62.696 75.688-62.481L75.688-62.395Q75.638-62.176 75.442-62.153L74.411-62.153L74.411-59.825L75.290-59.825Q75.485-59.801 75.536-59.594L75.536-59.504Q75.485-59.289 75.290-59.266L72.888-59.266Q72.692-59.289 72.641-59.504M77.309-60.121L77.309-62.153L76.888-62.153Q76.680-62.176 76.638-62.395L76.638-62.481Q76.684-62.692 76.888-62.715L77.704-62.715Q77.899-62.692 77.950-62.481L77.950-60.153Q77.950-59.918 78.120-59.852Q78.290-59.786 78.575-59.786Q78.782-59.786 78.977-59.862Q79.173-59.938 79.298-60.088Q79.423-60.239 79.423-60.450L79.423-62.153L79.001-62.153Q78.790-62.176 78.751-62.395L78.751-62.481Q78.790-62.692 79.001-62.715L79.813-62.715Q80.013-62.692 80.063-62.481L80.063-59.825L80.489-59.825Q80.696-59.801 80.735-59.594L80.735-59.504Q80.696-59.289 80.489-59.266L79.673-59.266Q79.473-59.289 79.423-59.489Q79.020-59.227 78.513-59.227Q78.278-59.227 78.063-59.268Q77.848-59.309 77.682-59.411Q77.516-59.512 77.413-59.690Q77.309-59.868 77.309-60.121M80.884-59.504L80.884-59.594Q80.927-59.801 81.134-59.825L81.555-59.825L81.555-62.153L81.134-62.153Q80.927-62.176 80.884-62.395L80.884-62.481Q80.930-62.692 81.134-62.715L81.950-62.715Q82.145-62.692 82.196-62.481L82.196-62.395L82.188-62.371Q82.415-62.551 82.688-62.653Q82.962-62.754 83.255-62.754Q83.602-62.754 83.841-62.614Q84.079-62.473 84.194-62.215Q84.309-61.957 84.309-61.602L84.309-59.825L84.735-59.825Q84.942-59.801 84.981-59.594L84.981-59.504Q84.942-59.289 84.735-59.266L83.341-59.266Q83.145-59.289 83.095-59.504L83.095-59.594Q83.145-59.805 83.341-59.825L83.669-59.825L83.669-61.571Q83.669-61.879 83.579-62.037Q83.489-62.196 83.196-62.196Q82.927-62.196 82.698-62.065Q82.470-61.934 82.333-61.705Q82.196-61.477 82.196-61.211L82.196-59.825L82.622-59.825Q82.829-59.801 82.868-59.594L82.868-59.504Q82.829-59.289 82.622-59.266L81.134-59.266Q80.927-59.289 80.884-59.504\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 50.37)\">\u003Cpath d=\"M85.716-57.266L85.634-57.266Q85.598-57.266 85.573-57.295Q85.548-57.325 85.548-57.364Q85.548-57.414 85.579-57.434Q85.966-57.770 86.249-58.219Q86.532-58.668 86.698-59.168Q86.864-59.668 86.938-60.186Q87.013-60.703 87.013-61.266Q87.013-61.836 86.938-62.352Q86.864-62.868 86.698-63.364Q86.532-63.860 86.253-64.307Q85.973-64.754 85.579-65.098Q85.548-65.118 85.548-65.168Q85.548-65.207 85.573-65.237Q85.598-65.266 85.634-65.266L85.716-65.266Q85.727-65.266 85.737-65.264Q85.747-65.262 85.755-65.258Q86.368-64.801 86.770-64.166Q87.173-63.532 87.368-62.786Q87.563-62.039 87.563-61.266Q87.563-60.493 87.368-59.746Q87.173-59 86.770-58.366Q86.368-57.731 85.755-57.274Q85.743-57.274 85.735-57.272Q85.727-57.270 85.716-57.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 1.053H276.03\"\u002F>\u003Cg transform=\"translate(-35.01 74.266)\">\u003Cpath d=\"M10.731-59.266L8.994-59.266L8.994-59.546Q9.716-59.546 9.716-59.946L9.716-63.556Q9.716-63.767 8.994-63.767L8.994-64.048L10.351-64.048Q10.447-64.048 10.498-63.949L12.173-59.974L13.845-63.949Q13.892-64.048 13.991-64.048L15.342-64.048L15.342-63.767Q14.620-63.767 14.620-63.556L14.620-59.755Q14.620-59.546 15.342-59.546L15.342-59.266L13.284-59.266L13.284-59.546Q14.005-59.546 14.005-59.755L14.005-63.767L12.153-59.365Q12.105-59.266 11.995-59.266Q11.883-59.266 11.835-59.365L10.010-63.696L10.010-59.946Q10.010-59.546 10.731-59.546L10.731-59.266M16.035-60.801Q16.035-61.122 16.160-61.411Q16.285-61.700 16.511-61.923Q16.736-62.147 17.032-62.267Q17.327-62.387 17.645-62.387Q17.973-62.387 18.235-62.287Q18.496-62.188 18.672-62.006Q18.848-61.823 18.942-61.565Q19.036-61.307 19.036-60.975Q19.036-60.883 18.954-60.862L16.699-60.862L16.699-60.801Q16.699-60.213 16.982-59.830Q17.266-59.447 17.833-59.447Q18.155-59.447 18.423-59.640Q18.691-59.833 18.780-60.148Q18.787-60.189 18.862-60.203L18.954-60.203Q19.036-60.179 19.036-60.107Q19.036-60.100 19.030-60.073Q18.917-59.676 18.546-59.437Q18.175-59.198 17.751-59.198Q17.314-59.198 16.914-59.406Q16.514-59.615 16.275-59.982Q16.035-60.349 16.035-60.801M16.705-61.071L18.520-61.071Q18.520-61.348 18.423-61.600Q18.325-61.853 18.127-62.009Q17.929-62.164 17.645-62.164Q17.368-62.164 17.155-62.006Q16.941-61.847 16.823-61.592Q16.705-61.337 16.705-61.071M21.306-59.266L19.672-59.266L19.672-59.546Q19.901-59.546 20.050-59.580Q20.199-59.615 20.199-59.755L20.199-61.604Q20.199-61.874 20.091-61.935Q19.983-61.997 19.672-61.997L19.672-62.277L20.732-62.352L20.732-61.703Q20.903-62.011 21.207-62.182Q21.511-62.352 21.856-62.352Q22.256-62.352 22.533-62.212Q22.810-62.072 22.895-61.724Q23.063-62.017 23.362-62.185Q23.661-62.352 24.006-62.352Q24.512-62.352 24.796-62.129Q25.079-61.905 25.079-61.409L25.079-59.755Q25.079-59.618 25.228-59.582Q25.377-59.546 25.602-59.546L25.602-59.266L23.972-59.266L23.972-59.546Q24.198-59.546 24.348-59.582Q24.498-59.618 24.498-59.755L24.498-61.395Q24.498-61.730 24.379-61.930Q24.259-62.130 23.945-62.130Q23.675-62.130 23.440-61.994Q23.206-61.857 23.068-61.623Q22.929-61.389 22.929-61.115L22.929-59.755Q22.929-59.618 23.078-59.582Q23.227-59.546 23.452-59.546L23.452-59.266L21.822-59.266L21.822-59.546Q22.051-59.546 22.200-59.580Q22.348-59.615 22.348-59.755L22.348-61.395Q22.348-61.730 22.229-61.930Q22.109-62.130 21.795-62.130Q21.525-62.130 21.291-61.994Q21.056-61.857 20.918-61.623Q20.780-61.389 20.780-61.115L20.780-59.755Q20.780-59.618 20.930-59.582Q21.080-59.546 21.306-59.546L21.306-59.266M26.149-60.749Q26.149-61.091 26.284-61.390Q26.419-61.689 26.658-61.913Q26.898-62.137 27.216-62.262Q27.533-62.387 27.865-62.387Q28.309-62.387 28.709-62.171Q29.109-61.956 29.343-61.578Q29.577-61.201 29.577-60.749Q29.577-60.408 29.436-60.124Q29.294-59.840 29.049-59.633Q28.805-59.427 28.496-59.312Q28.186-59.198 27.865-59.198Q27.434-59.198 27.033-59.399Q26.631-59.601 26.390-59.953Q26.149-60.305 26.149-60.749M27.865-59.447Q28.467-59.447 28.690-59.825Q28.914-60.203 28.914-60.835Q28.914-61.447 28.680-61.806Q28.446-62.164 27.865-62.164Q26.812-62.164 26.812-60.835Q26.812-60.203 27.038-59.825Q27.263-59.447 27.865-59.447M31.922-59.266L30.186-59.266L30.186-59.546Q30.415-59.546 30.564-59.580Q30.712-59.615 30.712-59.755L30.712-61.604Q30.712-61.874 30.605-61.935Q30.497-61.997 30.186-61.997L30.186-62.277L31.215-62.352L31.215-61.645Q31.345-61.953 31.587-62.152Q31.830-62.352 32.148-62.352Q32.366-62.352 32.537-62.228Q32.708-62.103 32.708-61.891Q32.708-61.754 32.609-61.655Q32.510-61.556 32.377-61.556Q32.240-61.556 32.141-61.655Q32.042-61.754 32.042-61.891Q32.042-62.031 32.141-62.130Q31.850-62.130 31.650-61.934Q31.450-61.737 31.358-61.443Q31.266-61.149 31.266-60.869L31.266-59.755Q31.266-59.546 31.922-59.546L31.922-59.266M33.628-58.131Q33.758-58.063 33.894-58.063Q34.065-58.063 34.216-58.152Q34.366-58.241 34.477-58.386Q34.588-58.531 34.667-58.699L34.930-59.266L33.761-61.792Q33.686-61.939 33.556-61.971Q33.426-62.004 33.194-62.004L33.194-62.284L34.715-62.284L34.715-62.004Q34.366-62.004 34.366-61.857Q34.369-61.836 34.371-61.819Q34.373-61.802 34.373-61.792L35.231-59.933L36.003-61.604Q36.037-61.672 36.037-61.751Q36.037-61.864 35.954-61.934Q35.870-62.004 35.757-62.004L35.757-62.284L36.953-62.284L36.953-62.004Q36.735-62.004 36.562-61.900Q36.389-61.795 36.297-61.604L34.961-58.699Q34.790-58.329 34.520-58.083Q34.250-57.837 33.894-57.837Q33.624-57.837 33.406-58.003Q33.187-58.169 33.187-58.432Q33.187-58.569 33.279-58.658Q33.371-58.746 33.511-58.746Q33.648-58.746 33.737-58.658Q33.826-58.569 33.826-58.432Q33.826-58.329 33.773-58.251Q33.720-58.172 33.628-58.131\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 74.277)\">\u003Cpath d=\"M10.926-60.715L8.672-60.715L8.672-61.266L10.926-61.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 25.238H276.03\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M10.967-59.225L9.415-63.556Q9.353-63.699 9.191-63.733Q9.029-63.767 8.776-63.767L8.776-64.048L10.703-64.048L10.703-63.767Q10.122-63.767 10.122-63.593Q10.122-63.573 10.129-63.556L11.353-60.120L12.460-63.207L12.334-63.556Q12.276-63.699 12.110-63.733Q11.944-63.767 11.695-63.767L11.695-64.048L13.622-64.048L13.622-63.767Q13.041-63.767 13.041-63.593L13.041-63.556L14.272-60.120L15.427-63.368Q15.441-63.409 15.441-63.433Q15.441-63.607 15.248-63.687Q15.054-63.767 14.846-63.767L14.846-64.048L16.422-64.048L16.422-63.767Q16.172-63.767 15.981-63.673Q15.789-63.579 15.714-63.368L14.231-59.225Q14.197-59.126 14.097-59.126L14.019-59.126Q13.920-59.126 13.879-59.225L12.600-62.814L11.319-59.225Q11.302-59.181 11.264-59.153Q11.226-59.126 11.178-59.126L11.100-59.126Q11.008-59.126 10.967-59.225\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M18.048-59.266L16.312-59.266L16.312-59.546Q16.541-59.546 16.690-59.580Q16.838-59.615 16.838-59.755L16.838-61.604Q16.838-61.874 16.731-61.935Q16.623-61.997 16.312-61.997L16.312-62.277L17.341-62.352L17.341-61.645Q17.471-61.953 17.713-62.152Q17.956-62.352 18.274-62.352Q18.493-62.352 18.664-62.228Q18.835-62.103 18.835-61.891Q18.835-61.754 18.735-61.655Q18.636-61.556 18.503-61.556Q18.366-61.556 18.267-61.655Q18.168-61.754 18.168-61.891Q18.168-62.031 18.267-62.130Q17.977-62.130 17.777-61.934Q17.577-61.737 17.484-61.443Q17.392-61.149 17.392-60.869L17.392-59.755Q17.392-59.546 18.048-59.546L18.048-59.266M21.036-59.266L19.484-59.266L19.484-59.546Q19.710-59.546 19.858-59.580Q20.007-59.615 20.007-59.755L20.007-61.604Q20.007-61.792 19.959-61.876Q19.911-61.959 19.814-61.978Q19.716-61.997 19.505-61.997L19.505-62.277L20.561-62.352L20.561-59.755Q20.561-59.615 20.692-59.580Q20.824-59.546 21.036-59.546L21.036-59.266M19.764-63.573Q19.764-63.744 19.887-63.863Q20.010-63.983 20.181-63.983Q20.349-63.983 20.472-63.863Q20.595-63.744 20.595-63.573Q20.595-63.398 20.472-63.275Q20.349-63.152 20.181-63.152Q20.010-63.152 19.887-63.275Q19.764-63.398 19.764-63.573M22.208-60.107L22.208-62.004L21.569-62.004L21.569-62.226Q21.887-62.226 22.104-62.436Q22.321-62.646 22.422-62.956Q22.523-63.265 22.523-63.573L22.789-63.573L22.789-62.284L23.866-62.284L23.866-62.004L22.789-62.004L22.789-60.120Q22.789-59.844 22.893-59.645Q22.998-59.447 23.257-59.447Q23.415-59.447 23.521-59.551Q23.627-59.656 23.676-59.809Q23.726-59.963 23.726-60.120L23.726-60.534L23.992-60.534L23.992-60.107Q23.992-59.881 23.893-59.671Q23.794-59.461 23.609-59.329Q23.425-59.198 23.196-59.198Q22.758-59.198 22.483-59.435Q22.208-59.673 22.208-60.107M24.761-60.801Q24.761-61.122 24.886-61.411Q25.011-61.700 25.236-61.923Q25.462-62.147 25.758-62.267Q26.053-62.387 26.371-62.387Q26.699-62.387 26.961-62.287Q27.222-62.188 27.398-62.006Q27.574-61.823 27.668-61.565Q27.762-61.307 27.762-60.975Q27.762-60.883 27.680-60.862L25.424-60.862L25.424-60.801Q25.424-60.213 25.708-59.830Q25.992-59.447 26.559-59.447Q26.880-59.447 27.149-59.640Q27.417-59.833 27.506-60.148Q27.513-60.189 27.588-60.203L27.680-60.203Q27.762-60.179 27.762-60.107Q27.762-60.100 27.755-60.073Q27.643-59.676 27.272-59.437Q26.901-59.198 26.477-59.198Q26.040-59.198 25.640-59.406Q25.240-59.615 25.001-59.982Q24.761-60.349 24.761-60.801M25.431-61.071L27.246-61.071Q27.246-61.348 27.149-61.600Q27.051-61.853 26.853-62.009Q26.655-62.164 26.371-62.164Q26.094-62.164 25.881-62.006Q25.667-61.847 25.549-61.592Q25.431-61.337 25.431-61.071M30.234-60.520L28.176-60.520L28.176-61.023L30.234-61.023L30.234-60.520M31.843-59.266L31.577-59.266L31.577-63.374Q31.577-63.644 31.469-63.706Q31.361-63.767 31.050-63.767L31.050-64.048L32.130-64.123L32.130-61.953Q32.339-62.144 32.624-62.248Q32.910-62.352 33.207-62.352Q33.525-62.352 33.822-62.231Q34.120-62.110 34.342-61.894Q34.564-61.679 34.691-61.394Q34.817-61.108 34.817-60.777Q34.817-60.332 34.578-59.968Q34.338-59.604 33.945-59.401Q33.552-59.198 33.108-59.198Q32.913-59.198 32.724-59.254Q32.534-59.310 32.373-59.415Q32.213-59.519 32.072-59.680L31.843-59.266M32.158-61.611L32.158-59.994Q32.295-59.734 32.536-59.577Q32.776-59.420 33.053-59.420Q33.347-59.420 33.559-59.527Q33.771-59.635 33.904-59.827Q34.038-60.018 34.096-60.257Q34.154-60.496 34.154-60.777Q34.154-61.136 34.060-61.440Q33.966-61.744 33.739-61.937Q33.511-62.130 33.146-62.130Q32.845-62.130 32.578-61.994Q32.312-61.857 32.158-61.611M35.511-59.994Q35.511-60.326 35.735-60.553Q35.959-60.780 36.302-60.908Q36.646-61.037 37.018-61.089Q37.391-61.142 37.695-61.142L37.695-61.395Q37.695-61.600 37.587-61.780Q37.480-61.959 37.298-62.062Q37.117-62.164 36.909-62.164Q36.502-62.164 36.266-62.072Q36.355-62.035 36.401-61.951Q36.447-61.867 36.447-61.765Q36.447-61.669 36.401-61.590Q36.355-61.512 36.275-61.467Q36.194-61.423 36.106-61.423Q35.955-61.423 35.854-61.520Q35.754-61.618 35.754-61.765Q35.754-62.387 36.909-62.387Q37.121-62.387 37.370-62.323Q37.620-62.260 37.821-62.141Q38.023-62.021 38.150-61.836Q38.276-61.652 38.276-61.409L38.276-59.833Q38.276-59.717 38.338-59.621Q38.399-59.526 38.512-59.526Q38.621-59.526 38.686-59.620Q38.751-59.714 38.751-59.833L38.751-60.281L39.018-60.281L39.018-59.833Q39.018-59.563 38.790-59.398Q38.563-59.232 38.283-59.232Q38.074-59.232 37.938-59.386Q37.801-59.539 37.777-59.755Q37.630-59.488 37.348-59.343Q37.066-59.198 36.741-59.198Q36.464-59.198 36.181-59.273Q35.897-59.348 35.704-59.527Q35.511-59.707 35.511-59.994M36.126-59.994Q36.126-59.820 36.227-59.690Q36.328-59.560 36.483-59.490Q36.639-59.420 36.803-59.420Q37.022-59.420 37.230-59.517Q37.439-59.615 37.567-59.796Q37.695-59.977 37.695-60.203L37.695-60.931Q37.370-60.931 37.005-60.840Q36.639-60.749 36.382-60.537Q36.126-60.326 36.126-59.994M39.435-60.777Q39.435-61.105 39.570-61.406Q39.705-61.706 39.941-61.927Q40.176-62.147 40.481-62.267Q40.785-62.387 41.109-62.387Q41.615-62.387 41.964-62.284Q42.313-62.182 42.313-61.806Q42.313-61.659 42.215-61.558Q42.118-61.457 41.971-61.457Q41.817-61.457 41.718-61.556Q41.619-61.655 41.619-61.806Q41.619-61.994 41.759-62.086Q41.557-62.137 41.116-62.137Q40.761-62.137 40.532-61.941Q40.303-61.744 40.202-61.435Q40.101-61.125 40.101-60.777Q40.101-60.428 40.228-60.122Q40.354-59.816 40.609-59.632Q40.863-59.447 41.219-59.447Q41.441-59.447 41.626-59.531Q41.810-59.615 41.945-59.770Q42.080-59.926 42.138-60.134Q42.152-60.189 42.207-60.189L42.319-60.189Q42.350-60.189 42.372-60.165Q42.395-60.141 42.395-60.107L42.395-60.086Q42.309-59.799 42.121-59.601Q41.933-59.403 41.668-59.300Q41.403-59.198 41.109-59.198Q40.679-59.198 40.291-59.404Q39.903-59.611 39.669-59.974Q39.435-60.336 39.435-60.777\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.497 99.17)\">\u003Cpath d=\"M44.402-59.266L42.819-59.266L42.819-59.546Q43.048-59.546 43.197-59.580Q43.345-59.615 43.345-59.755L43.345-63.374Q43.345-63.644 43.238-63.706Q43.130-63.767 42.819-63.767L42.819-64.048L43.899-64.123L43.899-60.835L44.884-61.604Q45.089-61.741 45.089-61.891Q45.089-61.935 45.048-61.970Q45.007-62.004 44.962-62.004L44.962-62.284L46.326-62.284L46.326-62.004Q45.837-62.004 45.318-61.604L44.761-61.170L45.738-59.946Q45.940-59.700 46.073-59.623Q46.206-59.546 46.493-59.546L46.493-59.266L45.061-59.266L45.061-59.546Q45.249-59.546 45.249-59.659Q45.249-59.755 45.095-59.946L44.361-60.855L43.879-60.476L43.879-59.755Q43.879-59.618 44.027-59.582Q44.176-59.546 44.402-59.546\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 98.461)\">\u003Cpath d=\"M10.926-60.715L8.672-60.715L8.672-61.266L10.926-61.266\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 49.423H276.03\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M11.100-59.266L8.967-59.266L8.967-59.546Q9.688-59.546 9.688-59.755L9.688-63.556Q9.688-63.767 8.967-63.767L8.967-64.048L11.633-64.048Q12.043-64.048 12.464-63.894Q12.884-63.740 13.168-63.436Q13.451-63.132 13.451-62.718Q13.451-62.400 13.284-62.154Q13.116-61.908 12.840-61.742Q12.563-61.577 12.241-61.493Q11.920-61.409 11.633-61.409L10.379-61.409L10.379-59.755Q10.379-59.546 11.100-59.546L11.100-59.266M10.351-63.556L10.351-61.659L11.438-61.659Q12.047-61.659 12.361-61.896Q12.676-62.134 12.676-62.718Q12.676-63.111 12.530-63.345Q12.385-63.579 12.113-63.673Q11.842-63.767 11.438-63.767L10.717-63.767Q10.529-63.767 10.440-63.733Q10.351-63.699 10.351-63.556M14.432-61.659Q14.432-62.185 14.649-62.653Q14.866-63.121 15.249-63.467Q15.632-63.812 16.116-64Q16.599-64.188 17.129-64.188Q17.532-64.188 17.897-64.031Q18.261-63.873 18.544-63.579L18.968-64.161Q19.002-64.188 19.026-64.188L19.074-64.188Q19.105-64.188 19.129-64.164Q19.153-64.140 19.153-64.109L19.153-62.246Q19.153-62.223 19.127-62.197Q19.101-62.171 19.074-62.171L18.948-62.171Q18.886-62.171 18.872-62.246Q18.842-62.561 18.707-62.865Q18.572-63.169 18.356-63.403Q18.141-63.638 17.852-63.773Q17.563-63.908 17.235-63.908Q16.593-63.908 16.135-63.614Q15.677-63.320 15.444-62.807Q15.212-62.294 15.212-61.659Q15.212-61.187 15.342-60.778Q15.471-60.370 15.731-60.057Q15.991-59.745 16.370-59.575Q16.750-59.406 17.242-59.406Q17.570-59.406 17.864-59.522Q18.158-59.639 18.392-59.854Q18.626-60.069 18.756-60.358Q18.886-60.647 18.886-60.975Q18.886-61.002 18.913-61.026Q18.941-61.050 18.961-61.050L19.074-61.050Q19.112-61.050 19.132-61.025Q19.153-60.999 19.153-60.961Q19.153-60.565 18.987-60.228Q18.821-59.891 18.534-59.644Q18.247-59.396 17.878-59.261Q17.509-59.126 17.129-59.126Q16.610-59.126 16.117-59.316Q15.625-59.505 15.246-59.849Q14.866-60.192 14.649-60.661Q14.432-61.129 14.432-61.659\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M23.241-60.100L23.241-61.604Q23.241-61.874 23.133-61.935Q23.025-61.997 22.714-61.997L22.714-62.277L23.822-62.352L23.822-60.120L23.822-60.100Q23.822-59.820 23.873-59.676Q23.924-59.533 24.066-59.476Q24.208-59.420 24.495-59.420Q24.748-59.420 24.953-59.560Q25.158-59.700 25.274-59.926Q25.391-60.151 25.391-60.401L25.391-61.604Q25.391-61.874 25.283-61.935Q25.175-61.997 24.864-61.997L24.864-62.277L25.972-62.352L25.972-59.939Q25.972-59.748 26.025-59.666Q26.078-59.584 26.178-59.565Q26.279-59.546 26.495-59.546L26.495-59.266L25.418-59.198L25.418-59.762Q25.309-59.580 25.163-59.457Q25.018-59.334 24.832-59.266Q24.645-59.198 24.444-59.198Q23.241-59.198 23.241-60.100M28.727-57.909L27.096-57.909L27.096-58.189Q27.325-58.189 27.474-58.224Q27.623-58.258 27.623-58.398L27.623-61.744Q27.623-61.915 27.486-61.956Q27.349-61.997 27.096-61.997L27.096-62.277L28.176-62.352L28.176-61.946Q28.398-62.147 28.685-62.250Q28.973-62.352 29.280-62.352Q29.707-62.352 30.071-62.139Q30.435-61.925 30.649-61.561Q30.863-61.197 30.863-60.777Q30.863-60.332 30.623-59.968Q30.384-59.604 29.991-59.401Q29.598-59.198 29.154-59.198Q28.887-59.198 28.639-59.298Q28.392-59.399 28.204-59.580L28.204-58.398Q28.204-58.261 28.352-58.225Q28.501-58.189 28.727-58.189L28.727-57.909M28.204-61.597L28.204-59.987Q28.337-59.734 28.580-59.577Q28.822-59.420 29.099-59.420Q29.427-59.420 29.680-59.621Q29.933-59.823 30.066-60.141Q30.200-60.459 30.200-60.777Q30.200-61.006 30.135-61.235Q30.070-61.464 29.942-61.662Q29.813-61.860 29.619-61.980Q29.424-62.099 29.191-62.099Q28.897-62.099 28.629-61.970Q28.361-61.840 28.204-61.597\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-44.288 122.674)\">\u003Cpath d=\"M31.714-60.777Q31.714-61.115 31.855-61.406Q31.995-61.696 32.239-61.910Q32.483-62.123 32.788-62.238Q33.092-62.352 33.417-62.352Q33.687-62.352 33.950-62.253Q34.213-62.154 34.404-61.976L34.404-63.374Q34.404-63.644 34.297-63.706Q34.189-63.767 33.878-63.767L33.878-64.048L34.955-64.123L34.955-59.939Q34.955-59.751 35.009-59.668Q35.064-59.584 35.165-59.565Q35.266-59.546 35.481-59.546L35.481-59.266L34.374-59.198L34.374-59.615Q33.957-59.198 33.331-59.198Q32.900-59.198 32.528-59.410Q32.155-59.621 31.935-59.982Q31.714-60.343 31.714-60.777M33.389-59.420Q33.598-59.420 33.784-59.492Q33.970-59.563 34.124-59.700Q34.278-59.837 34.374-60.015L34.374-61.624Q34.288-61.771 34.143-61.891Q33.998-62.011 33.828-62.070Q33.659-62.130 33.478-62.130Q32.918-62.130 32.649-61.741Q32.381-61.351 32.381-60.770Q32.381-60.199 32.615-59.809Q32.849-59.420 33.389-59.420M36.189-59.994Q36.189-60.326 36.412-60.553Q36.636-60.780 36.980-60.908Q37.323-61.037 37.696-61.089Q38.068-61.142 38.373-61.142L38.373-61.395Q38.373-61.600 38.265-61.780Q38.157-61.959 37.976-62.062Q37.795-62.164 37.587-62.164Q37.180-62.164 36.944-62.072Q37.033-62.035 37.079-61.951Q37.125-61.867 37.125-61.765Q37.125-61.669 37.079-61.590Q37.033-61.512 36.952-61.467Q36.872-61.423 36.783-61.423Q36.633-61.423 36.532-61.520Q36.431-61.618 36.431-61.765Q36.431-62.387 37.587-62.387Q37.798-62.387 38.048-62.323Q38.297-62.260 38.499-62.141Q38.701-62.021 38.827-61.836Q38.954-61.652 38.954-61.409L38.954-59.833Q38.954-59.717 39.015-59.621Q39.077-59.526 39.190-59.526Q39.299-59.526 39.364-59.620Q39.429-59.714 39.429-59.833L39.429-60.281L39.695-60.281L39.695-59.833Q39.695-59.563 39.468-59.398Q39.241-59.232 38.961-59.232Q38.752-59.232 38.615-59.386Q38.479-59.539 38.455-59.755Q38.308-59.488 38.026-59.343Q37.744-59.198 37.419-59.198Q37.142-59.198 36.858-59.273Q36.575-59.348 36.382-59.527Q36.189-59.707 36.189-59.994M36.804-59.994Q36.804-59.820 36.905-59.690Q37.005-59.560 37.161-59.490Q37.317-59.420 37.481-59.420Q37.699-59.420 37.908-59.517Q38.116-59.615 38.244-59.796Q38.373-59.977 38.373-60.203L38.373-60.931Q38.048-60.931 37.682-60.840Q37.317-60.749 37.060-60.537Q36.804-60.326 36.804-59.994M40.639-60.107L40.639-62.004L40-62.004L40-62.226Q40.317-62.226 40.535-62.436Q40.752-62.646 40.852-62.956Q40.953-63.265 40.953-63.573L41.220-63.573L41.220-62.284L42.296-62.284L42.296-62.004L41.220-62.004L41.220-60.120Q41.220-59.844 41.324-59.645Q41.428-59.447 41.688-59.447Q41.845-59.447 41.951-59.551Q42.057-59.656 42.107-59.809Q42.156-59.963 42.156-60.120L42.156-60.534L42.423-60.534L42.423-60.107Q42.423-59.881 42.324-59.671Q42.225-59.461 42.040-59.329Q41.856-59.198 41.627-59.198Q41.189-59.198 40.914-59.435Q40.639-59.673 40.639-60.107M43.192-60.801Q43.192-61.122 43.317-61.411Q43.442-61.700 43.667-61.923Q43.893-62.147 44.188-62.267Q44.484-62.387 44.802-62.387Q45.130-62.387 45.391-62.287Q45.653-62.188 45.829-62.006Q46.005-61.823 46.099-61.565Q46.193-61.307 46.193-60.975Q46.193-60.883 46.111-60.862L43.855-60.862L43.855-60.801Q43.855-60.213 44.139-59.830Q44.422-59.447 44.990-59.447Q45.311-59.447 45.579-59.640Q45.848-59.833 45.937-60.148Q45.943-60.189 46.019-60.203L46.111-60.203Q46.193-60.179 46.193-60.107Q46.193-60.100 46.186-60.073Q46.073-59.676 45.702-59.437Q45.332-59.198 44.908-59.198Q44.470-59.198 44.070-59.406Q43.671-59.615 43.431-59.982Q43.192-60.349 43.192-60.801M43.862-61.071L45.677-61.071Q45.677-61.348 45.579-61.600Q45.482-61.853 45.284-62.009Q45.086-62.164 44.802-62.164Q44.525-62.164 44.311-62.006Q44.098-61.847 43.980-61.592Q43.862-61.337 43.862-61.071\" 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-size=\"8\">\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M8.758-59.504L8.758-59.594Q8.797-59.801 9.008-59.825L9.316-59.825L9.316-63.594L9.008-63.594Q8.797-63.618 8.758-63.832L8.758-63.922Q8.797-64.129 9.008-64.153L10.957-64.153Q11.355-64.153 11.701-63.952Q12.047-63.750 12.254-63.405Q12.461-63.059 12.461-62.657Q12.461-62.250 12.256-61.907Q12.051-61.563 11.705-61.358Q11.359-61.153 10.957-61.153L9.957-61.153L9.957-59.825L10.269-59.825Q10.480-59.801 10.519-59.594L10.519-59.504Q10.480-59.289 10.269-59.266L9.008-59.266Q8.797-59.289 8.758-59.504M9.957-63.594L9.957-61.715L10.797-61.715Q11.058-61.715 11.295-61.838Q11.531-61.961 11.676-62.176Q11.820-62.391 11.820-62.657Q11.820-62.926 11.676-63.137Q11.531-63.348 11.295-63.471Q11.058-63.594 10.797-63.594L9.957-63.594M15.086-59.188Q14.636-59.188 14.271-59.412Q13.906-59.637 13.652-60.020Q13.398-60.403 13.273-60.846Q13.148-61.289 13.148-61.715Q13.148-62.141 13.273-62.580Q13.398-63.020 13.652-63.403Q13.906-63.786 14.265-64.010Q14.625-64.235 15.086-64.235Q15.363-64.235 15.621-64.143Q15.879-64.051 16.094-63.883L16.226-64.121Q16.254-64.172 16.308-64.203Q16.363-64.235 16.422-64.235L16.500-64.235Q16.594-64.223 16.656-64.164Q16.719-64.106 16.730-64L16.730-62.672Q16.719-62.571 16.656-62.508Q16.594-62.446 16.500-62.434L16.332-62.434Q16.230-62.446 16.168-62.512Q16.105-62.578 16.094-62.672Q16.054-62.938 15.931-63.162Q15.808-63.387 15.605-63.530Q15.402-63.672 15.140-63.672Q14.808-63.672 14.556-63.489Q14.304-63.305 14.133-63.004Q13.961-62.703 13.875-62.362Q13.789-62.020 13.789-61.715Q13.789-61.411 13.873-61.069Q13.957-60.727 14.129-60.424Q14.301-60.121 14.558-59.934Q14.816-59.746 15.148-59.746Q15.531-59.746 15.812-60.020Q16.094-60.293 16.094-60.680Q16.121-60.891 16.332-60.914L16.500-60.914Q16.730-60.875 16.730-60.649Q16.730-60.332 16.594-60.061Q16.457-59.789 16.222-59.592Q15.988-59.395 15.697-59.291Q15.406-59.188 15.086-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M25.396-60.243L20.083-60.243Q20.005-60.250 19.956-60.299Q19.908-60.348 19.908-60.426Q19.908-60.496 19.955-60.547Q20.001-60.598 20.083-60.610L25.396-60.610Q25.470-60.598 25.517-60.547Q25.564-60.496 25.564-60.426Q25.564-60.348 25.515-60.299Q25.466-60.250 25.396-60.243M25.396-61.930L20.083-61.930Q20.005-61.938 19.956-61.987Q19.908-62.036 19.908-62.114Q19.908-62.184 19.955-62.235Q20.001-62.286 20.083-62.297L25.396-62.297Q25.470-62.286 25.517-62.235Q25.564-62.184 25.564-62.114Q25.564-62.036 25.515-61.987Q25.466-61.938 25.396-61.930\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M30.674-59.188Q30.224-59.188 29.859-59.412Q29.494-59.637 29.240-60.020Q28.986-60.403 28.861-60.846Q28.736-61.289 28.736-61.715Q28.736-62.141 28.861-62.580Q28.986-63.020 29.240-63.403Q29.494-63.786 29.853-64.010Q30.213-64.235 30.674-64.235Q30.951-64.235 31.209-64.143Q31.467-64.051 31.681-63.883L31.814-64.121Q31.842-64.172 31.896-64.203Q31.951-64.235 32.010-64.235L32.088-64.235Q32.181-64.223 32.244-64.164Q32.306-64.106 32.318-64L32.318-62.672Q32.306-62.571 32.244-62.508Q32.181-62.446 32.088-62.434L31.920-62.434Q31.818-62.446 31.756-62.512Q31.693-62.578 31.681-62.672Q31.642-62.938 31.519-63.162Q31.396-63.387 31.193-63.530Q30.990-63.672 30.728-63.672Q30.396-63.672 30.144-63.489Q29.892-63.305 29.721-63.004Q29.549-62.703 29.463-62.362Q29.377-62.020 29.377-61.715Q29.377-61.411 29.461-61.069Q29.545-60.727 29.717-60.424Q29.888-60.121 30.146-59.934Q30.404-59.746 30.736-59.746Q31.119-59.746 31.400-60.020Q31.681-60.293 31.681-60.680Q31.709-60.891 31.920-60.914L32.088-60.914Q32.318-60.875 32.318-60.649Q32.318-60.332 32.181-60.061Q32.045-59.789 31.810-59.592Q31.576-59.395 31.285-59.291Q30.994-59.188 30.674-59.188M32.724-59.504L32.724-59.594Q32.767-59.801 32.974-59.825L33.396-59.825L33.396-62.153L32.974-62.153Q32.767-62.176 32.724-62.395L32.724-62.481Q32.771-62.692 32.974-62.715L33.791-62.715Q33.986-62.692 34.037-62.481L34.037-62.395L34.029-62.371Q34.256-62.551 34.529-62.653Q34.803-62.754 35.096-62.754Q35.443-62.754 35.681-62.614Q35.920-62.473 36.035-62.215Q36.150-61.957 36.150-61.602L36.150-59.825L36.576-59.825Q36.783-59.801 36.822-59.594L36.822-59.504Q36.783-59.289 36.576-59.266L35.181-59.266Q34.986-59.289 34.935-59.504L34.935-59.594Q34.986-59.805 35.181-59.825L35.510-59.825L35.510-61.571Q35.510-61.879 35.420-62.037Q35.330-62.196 35.037-62.196Q34.767-62.196 34.539-62.065Q34.310-61.934 34.174-61.705Q34.037-61.477 34.037-61.211L34.037-59.825L34.463-59.825Q34.670-59.801 34.709-59.594L34.709-59.504Q34.670-59.289 34.463-59.266L32.974-59.266Q32.767-59.289 32.724-59.504M38.763-59.227Q38.299-59.227 37.933-59.477Q37.568-59.727 37.363-60.131Q37.158-60.536 37.158-60.993Q37.158-61.336 37.283-61.657Q37.408-61.977 37.640-62.227Q37.873-62.477 38.178-62.616Q38.482-62.754 38.838-62.754Q39.349-62.754 39.756-62.434L39.756-63.594L39.334-63.594Q39.123-63.618 39.084-63.832L39.084-63.922Q39.123-64.129 39.334-64.153L40.146-64.153Q40.346-64.129 40.396-63.922L40.396-59.825L40.822-59.825Q41.029-59.801 41.068-59.594L41.068-59.504Q41.029-59.289 40.822-59.266L40.006-59.266Q39.806-59.289 39.756-59.504L39.756-59.633Q39.560-59.442 39.299-59.334Q39.037-59.227 38.763-59.227M38.803-59.786Q39.162-59.786 39.414-60.055Q39.666-60.325 39.756-60.700L39.756-61.532Q39.697-61.719 39.570-61.870Q39.443-62.020 39.265-62.108Q39.088-62.196 38.892-62.196Q38.584-62.196 38.334-62.026Q38.084-61.856 37.939-61.571Q37.795-61.286 37.795-60.985Q37.795-60.536 38.080-60.161Q38.365-59.786 38.803-59.786\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M45.417-59.731Q45.417-59.922 45.550-60.055Q45.682-60.188 45.878-60.188Q46.069-60.188 46.202-60.055Q46.335-59.922 46.335-59.731Q46.335-59.532 46.202-59.399Q46.069-59.266 45.878-59.266Q45.682-59.266 45.550-59.399Q45.417-59.532 45.417-59.731M45.733-60.907L45.733-61.305Q45.733-61.703 45.862-62.104Q45.991-62.504 46.237-62.840Q46.315-62.946 46.481-63.121Q46.647-63.297 46.716-63.434Q46.784-63.571 46.784-63.809Q46.784-64.297 46.581-64.469Q46.378-64.641 45.878-64.641Q45.569-64.641 45.292-64.530Q45.014-64.418 44.862-64.196Q45.034-64.196 45.141-64.082Q45.249-63.969 45.249-63.801Q45.249-63.700 45.198-63.608Q45.147-63.516 45.057-63.463Q44.968-63.411 44.854-63.411Q44.745-63.411 44.655-63.463Q44.565-63.516 44.514-63.608Q44.464-63.700 44.464-63.801Q44.464-64.149 44.675-64.399Q44.886-64.649 45.210-64.774Q45.534-64.899 45.878-64.899Q46.538-64.899 47.032-64.649Q47.526-64.399 47.526-63.801Q47.526-63.551 47.403-63.336Q47.280-63.121 47.069-62.985Q46.757-62.782 46.524-62.526Q46.292-62.270 46.153-61.953Q46.014-61.637 46.014-61.289L46.014-60.907Q46.014-60.871 45.987-60.844Q45.960-60.817 45.928-60.817L45.823-60.817Q45.792-60.817 45.762-60.842Q45.733-60.868 45.733-60.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M53.439-59.489L52.553-62.153L52.232-62.153Q52.033-62.176 51.982-62.395L51.982-62.481Q52.033-62.692 52.232-62.715L53.392-62.715Q53.588-62.696 53.638-62.481L53.638-62.395Q53.588-62.176 53.392-62.153L53.111-62.153L53.904-59.778L54.693-62.153L54.416-62.153Q54.217-62.176 54.166-62.395L54.166-62.481Q54.217-62.692 54.416-62.715L55.576-62.715Q55.771-62.692 55.822-62.481L55.822-62.395Q55.771-62.176 55.576-62.153L55.256-62.153L54.369-59.489Q54.326-59.375 54.224-59.301Q54.123-59.227 53.998-59.227L53.806-59.227Q53.689-59.227 53.586-59.299Q53.482-59.371 53.439-59.489M56.435-60.379Q56.435-60.825 56.849-61.082Q57.263-61.340 57.804-61.440Q58.346-61.539 58.853-61.547Q58.853-61.762 58.719-61.914Q58.584-62.067 58.377-62.143Q58.170-62.219 57.959-62.219Q57.615-62.219 57.455-62.196L57.455-62.137Q57.455-61.969 57.336-61.854Q57.217-61.739 57.053-61.739Q56.877-61.739 56.762-61.862Q56.646-61.985 56.646-62.153Q56.646-62.559 57.027-62.668Q57.408-62.778 57.967-62.778Q58.236-62.778 58.504-62.700Q58.771-62.621 58.996-62.471Q59.221-62.321 59.357-62.100Q59.494-61.879 59.494-61.602L59.494-59.883Q59.494-59.825 60.021-59.825Q60.217-59.805 60.267-59.594L60.267-59.504Q60.217-59.289 60.021-59.266L59.877-59.266Q59.533-59.266 59.304-59.313Q59.076-59.360 58.931-59.547Q58.471-59.227 57.763-59.227Q57.428-59.227 57.123-59.368Q56.818-59.508 56.627-59.770Q56.435-60.032 56.435-60.379M57.076-60.371Q57.076-60.098 57.318-59.942Q57.560-59.786 57.846-59.786Q58.064-59.786 58.297-59.844Q58.529-59.903 58.691-60.041Q58.853-60.180 58.853-60.403L58.853-60.993Q58.572-60.993 58.156-60.936Q57.740-60.879 57.408-60.741Q57.076-60.602 57.076-60.371M60.724-59.504L60.724-59.594Q60.775-59.801 60.971-59.825L62.076-59.825L62.076-63.594L60.971-63.594Q60.775-63.618 60.724-63.832L60.724-63.922Q60.775-64.129 60.971-64.153L62.467-64.153Q62.658-64.129 62.717-63.922L62.717-59.825L63.818-59.825Q64.017-59.801 64.068-59.594L64.068-59.504Q64.017-59.289 63.818-59.266L60.971-59.266Q60.775-59.289 60.724-59.504M66.787-59.188Q66.338-59.188 65.972-59.412Q65.607-59.637 65.353-60.020Q65.099-60.403 64.974-60.846Q64.849-61.289 64.849-61.715Q64.849-62.141 64.974-62.580Q65.099-63.020 65.353-63.403Q65.607-63.786 65.967-64.010Q66.326-64.235 66.787-64.235Q67.064-64.235 67.322-64.143Q67.580-64.051 67.795-63.883L67.928-64.121Q67.955-64.172 68.010-64.203Q68.064-64.235 68.123-64.235L68.201-64.235Q68.295-64.223 68.357-64.164Q68.420-64.106 68.431-64L68.431-62.672Q68.420-62.571 68.357-62.508Q68.295-62.446 68.201-62.434L68.033-62.434Q67.931-62.446 67.869-62.512Q67.806-62.578 67.795-62.672Q67.756-62.938 67.633-63.162Q67.510-63.387 67.306-63.530Q67.103-63.672 66.842-63.672Q66.510-63.672 66.258-63.489Q66.006-63.305 65.834-63.004Q65.662-62.703 65.576-62.362Q65.490-62.020 65.490-61.715Q65.490-61.411 65.574-61.069Q65.658-60.727 65.830-60.424Q66.002-60.121 66.260-59.934Q66.517-59.746 66.849-59.746Q67.232-59.746 67.513-60.020Q67.795-60.293 67.795-60.680Q67.822-60.891 68.033-60.914L68.201-60.914Q68.431-60.875 68.431-60.649Q68.431-60.332 68.295-60.061Q68.158-59.789 67.924-59.592Q67.689-59.395 67.398-59.291Q67.107-59.188 66.787-59.188\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M72.336-59.731Q72.336-59.914 72.472-60.051Q72.609-60.188 72.801-60.188Q72.992-60.188 73.125-60.055Q73.258-59.922 73.258-59.731Q73.258-59.532 73.125-59.399Q72.992-59.266 72.801-59.266Q72.609-59.266 72.472-59.403Q72.336-59.539 72.336-59.731M72.336-62.258Q72.336-62.442 72.472-62.578Q72.609-62.715 72.801-62.715Q72.992-62.715 73.125-62.582Q73.258-62.450 73.258-62.258Q73.258-62.059 73.125-61.926Q72.992-61.793 72.801-61.793Q72.609-61.793 72.472-61.930Q72.336-62.067 72.336-62.258\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(9.223 123.702)\">\u003Cpath d=\"M79.411-59.489L78.525-62.153L78.204-62.153Q78.005-62.176 77.954-62.395L77.954-62.481Q78.005-62.692 78.204-62.715L79.364-62.715Q79.560-62.696 79.610-62.481L79.610-62.395Q79.560-62.176 79.364-62.153L79.083-62.153L79.876-59.778L80.665-62.153L80.388-62.153Q80.189-62.176 80.138-62.395L80.138-62.481Q80.189-62.692 80.388-62.715L81.548-62.715Q81.743-62.692 81.794-62.481L81.794-62.395Q81.743-62.176 81.548-62.153L81.228-62.153L80.341-59.489Q80.298-59.375 80.196-59.301Q80.095-59.227 79.970-59.227L79.778-59.227Q79.661-59.227 79.558-59.299Q79.454-59.371 79.411-59.489M82.407-60.379Q82.407-60.825 82.821-61.082Q83.235-61.340 83.776-61.440Q84.317-61.539 84.825-61.547Q84.825-61.762 84.691-61.914Q84.556-62.067 84.349-62.143Q84.142-62.219 83.931-62.219Q83.587-62.219 83.427-62.196L83.427-62.137Q83.427-61.969 83.308-61.854Q83.189-61.739 83.025-61.739Q82.849-61.739 82.734-61.862Q82.618-61.985 82.618-62.153Q82.618-62.559 82.999-62.668Q83.380-62.778 83.939-62.778Q84.208-62.778 84.476-62.700Q84.743-62.621 84.968-62.471Q85.192-62.321 85.329-62.100Q85.466-61.879 85.466-61.602L85.466-59.883Q85.466-59.825 85.993-59.825Q86.189-59.805 86.239-59.594L86.239-59.504Q86.189-59.289 85.993-59.266L85.849-59.266Q85.505-59.266 85.276-59.313Q85.048-59.360 84.903-59.547Q84.442-59.227 83.735-59.227Q83.400-59.227 83.095-59.368Q82.790-59.508 82.599-59.770Q82.407-60.032 82.407-60.379M83.048-60.371Q83.048-60.098 83.290-59.942Q83.532-59.786 83.817-59.786Q84.036-59.786 84.269-59.844Q84.501-59.903 84.663-60.041Q84.825-60.180 84.825-60.403L84.825-60.993Q84.544-60.993 84.128-60.936Q83.712-60.879 83.380-60.741Q83.048-60.602 83.048-60.371M86.696-59.504L86.696-59.594Q86.747-59.801 86.942-59.825L88.048-59.825L88.048-63.594L86.942-63.594Q86.747-63.618 86.696-63.832L86.696-63.922Q86.747-64.129 86.942-64.153L88.439-64.153Q88.630-64.129 88.689-63.922L88.689-59.825L89.790-59.825Q89.989-59.801 90.040-59.594L90.040-59.504Q89.989-59.289 89.790-59.266L86.942-59.266Q86.747-59.289 86.696-59.504M90.677-59.504L90.677-59.594Q90.716-59.801 90.927-59.825L91.235-59.825L91.235-63.594L90.927-63.594Q90.716-63.618 90.677-63.832L90.677-63.922Q90.716-64.129 90.927-64.153L92.876-64.153Q93.275-64.153 93.620-63.952Q93.966-63.750 94.173-63.405Q94.380-63.059 94.380-62.657Q94.380-62.250 94.175-61.907Q93.970-61.563 93.624-61.358Q93.278-61.153 92.876-61.153L91.876-61.153L91.876-59.825L92.189-59.825Q92.400-59.801 92.439-59.594L92.439-59.504Q92.400-59.289 92.189-59.266L90.927-59.266Q90.716-59.289 90.677-59.504M91.876-63.594L91.876-61.715L92.716-61.715Q92.978-61.715 93.214-61.838Q93.450-61.961 93.595-62.176Q93.739-62.391 93.739-62.657Q93.739-62.926 93.595-63.137Q93.450-63.348 93.214-63.471Q92.978-63.594 92.716-63.594\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 73.608H276.03\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The jXX Dest stage table. Fetch reads the 8-byte destination valC; Execute evaluates Cnd from the condition codes and ifun; nothing touches the register file or memory. PC update picks valC if Cnd holds, else valP.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:696.494px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 522.371 171.882\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-73.29 -24.586)\">\u003Cpath d=\"M11.978-41.190Q11.978-41.670 12.222-42.084Q12.466-42.498 12.882-42.736Q13.298-42.975 13.778-42.975Q14.333-42.975 14.712-42.865Q15.091-42.756 15.091-42.350Q15.091-42.182 14.978-42.059Q14.864-41.936 14.692-41.936Q14.521-41.936 14.401-42.051Q14.282-42.166 14.282-42.334L14.282-42.393Q14.122-42.416 13.786-42.416Q13.458-42.416 13.190-42.246Q12.923-42.076 12.771-41.793Q12.618-41.510 12.618-41.190Q12.618-40.869 12.790-40.588Q12.962-40.307 13.247-40.145Q13.532-39.983 13.860-39.983Q14.173-39.983 14.300-40.086Q14.427-40.190 14.544-40.379Q14.661-40.568 14.778-40.584L14.946-40.584Q15.052-40.572 15.116-40.504Q15.181-40.436 15.181-40.334Q15.181-40.287 15.161-40.248Q15.052-39.955 14.849-39.776Q14.646-39.596 14.370-39.510Q14.095-39.424 13.778-39.424Q13.294-39.424 12.878-39.662Q12.462-39.901 12.220-40.303Q11.978-40.705 11.978-41.190M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.607-39.701L24.607-39.791Q24.657-39.998 24.853-40.022L25.958-40.022L25.958-43.791L24.853-43.791Q24.657-43.815 24.607-44.029L24.607-44.119Q24.657-44.326 24.853-44.350L26.349-44.350Q26.540-44.326 26.599-44.119L26.599-40.022L27.700-40.022Q27.899-39.998 27.950-39.791L27.950-39.701Q27.899-39.486 27.700-39.463L24.853-39.463Q24.657-39.486 24.607-39.701\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.29 -24.586)\">\u003Cpath d=\"M32.806-39.701L32.806-39.791Q32.845-39.998 33.052-40.022L33.302-40.022L33.302-43.791L33.052-43.791Q32.845-43.815 32.806-44.029L32.806-44.119Q32.845-44.326 33.052-44.350L34.868-44.350Q35.419-44.350 35.814-43.957Q36.208-43.565 36.403-42.986Q36.599-42.408 36.599-41.861Q36.599-41.334 36.399-40.770Q36.200-40.205 35.808-39.834Q35.415-39.463 34.868-39.463L33.052-39.463Q32.845-39.486 32.806-39.701M33.942-43.791L33.942-40.022L34.708-40.022Q35.302-40.022 35.630-40.617Q35.958-41.213 35.958-41.861Q35.958-42.268 35.823-42.717Q35.689-43.166 35.403-43.479Q35.118-43.791 34.708-43.791L33.942-43.791M40.427-40.951L37.985-40.951Q38.040-40.674 38.237-40.451Q38.435-40.229 38.712-40.106Q38.989-39.983 39.274-39.983Q39.747-39.983 39.970-40.272Q39.978-40.283 40.034-40.389Q40.091-40.494 40.140-40.537Q40.189-40.580 40.282-40.592L40.427-40.592Q40.618-40.572 40.677-40.358L40.677-40.303Q40.610-40.002 40.380-39.805Q40.149-39.608 39.837-39.516Q39.524-39.424 39.220-39.424Q38.735-39.424 38.296-39.652Q37.856-39.881 37.589-40.281Q37.321-40.682 37.321-41.174L37.321-41.233Q37.321-41.701 37.567-42.104Q37.814-42.506 38.222-42.740Q38.630-42.975 39.099-42.975Q39.603-42.975 39.956-42.752Q40.310-42.529 40.493-42.141Q40.677-41.752 40.677-41.248L40.677-41.190Q40.618-40.975 40.427-40.951M37.993-41.502L40.021-41.502Q39.974-41.912 39.735-42.164Q39.497-42.416 39.099-42.416Q38.704-42.416 38.398-42.154Q38.091-41.893 37.993-41.502M41.747-39.662L41.747-40.576Q41.774-40.783 41.985-40.807L42.153-40.807Q42.317-40.783 42.376-40.623Q42.579-39.983 43.306-39.983Q43.513-39.983 43.741-40.018Q43.970-40.053 44.138-40.168Q44.306-40.283 44.306-40.486Q44.306-40.697 44.083-40.811Q43.860-40.924 43.587-40.967L42.888-41.080Q41.747-41.291 41.747-42.014Q41.747-42.303 41.892-42.492Q42.036-42.682 42.276-42.789Q42.517-42.897 42.773-42.936Q43.028-42.975 43.306-42.975Q43.556-42.975 43.749-42.945Q43.942-42.916 44.106-42.838Q44.185-42.955 44.314-42.975L44.392-42.975Q44.489-42.963 44.552-42.901Q44.614-42.838 44.626-42.744L44.626-42.037Q44.614-41.943 44.552-41.877Q44.489-41.811 44.392-41.799L44.224-41.799Q44.130-41.811 44.064-41.877Q43.997-41.943 43.985-42.037Q43.985-42.416 43.290-42.416Q42.942-42.416 42.624-42.334Q42.306-42.252 42.306-42.006Q42.306-41.740 42.978-41.631L43.681-41.510Q44.165-41.428 44.515-41.180Q44.864-40.932 44.864-40.486Q44.864-40.096 44.628-39.854Q44.392-39.611 44.042-39.518Q43.692-39.424 43.306-39.424Q42.728-39.424 42.329-39.678Q42.259-39.553 42.210-39.496Q42.161-39.440 42.056-39.424L41.985-39.424Q41.771-39.447 41.747-39.662M46.606-40.568L46.606-42.350L45.856-42.350Q45.657-42.373 45.606-42.592L45.606-42.678Q45.657-42.889 45.856-42.912L46.606-42.912L46.606-43.662Q46.657-43.869 46.856-43.897L47.001-43.897Q47.196-43.869 47.247-43.662L47.247-42.912L48.606-42.912Q48.798-42.893 48.856-42.678L48.856-42.592Q48.802-42.373 48.606-42.350L47.247-42.350L47.247-40.600Q47.247-39.983 47.821-39.983Q48.071-39.983 48.235-40.168Q48.399-40.354 48.399-40.600Q48.399-40.693 48.472-40.764Q48.544-40.834 48.646-40.846L48.790-40.846Q48.989-40.822 49.040-40.615L49.040-40.568Q49.040-40.244 48.856-39.981Q48.673-39.717 48.380-39.570Q48.087-39.424 47.767-39.424Q47.255-39.424 46.931-39.734Q46.606-40.045 46.606-40.568\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-52.266h233.312\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M14.112-39.463L11.798-39.463L11.798-39.743Q12.520-39.743 12.520-39.952L12.520-43.753Q12.520-43.964 11.798-43.964L11.798-44.245L15.982-44.245L16.194-42.608L15.927-42.608Q15.849-43.219 15.697-43.498Q15.544-43.776 15.240-43.870Q14.936-43.964 14.311-43.964L13.576-43.964Q13.388-43.964 13.299-43.930Q13.210-43.896 13.210-43.753L13.210-41.996L13.764-41.996Q14.133-41.996 14.317-42.050Q14.502-42.105 14.581-42.278Q14.659-42.450 14.659-42.816L14.926-42.816L14.926-40.899L14.659-40.899Q14.659-41.264 14.581-41.437Q14.502-41.609 14.317-41.662Q14.133-41.715 13.764-41.715L13.210-41.715L13.210-39.952Q13.210-39.743 14.112-39.743\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M16.206-40.998Q16.206-41.319 16.331-41.608Q16.456-41.897 16.682-42.120Q16.907-42.344 17.203-42.464Q17.498-42.584 17.816-42.584Q18.144-42.584 18.406-42.484Q18.667-42.385 18.843-42.203Q19.019-42.020 19.113-41.762Q19.207-41.504 19.207-41.172Q19.207-41.080 19.125-41.059L16.870-41.059L16.870-40.998Q16.870-40.410 17.153-40.027Q17.437-39.644 18.004-39.644Q18.326-39.644 18.594-39.837Q18.862-40.030 18.951-40.345Q18.958-40.386 19.033-40.400L19.125-40.400Q19.207-40.376 19.207-40.304Q19.207-40.297 19.201-40.270Q19.088-39.873 18.717-39.634Q18.346-39.395 17.922-39.395Q17.485-39.395 17.085-39.603Q16.685-39.812 16.446-40.179Q16.206-40.546 16.206-40.998M16.876-41.268L18.691-41.268Q18.691-41.545 18.594-41.797Q18.496-42.050 18.298-42.206Q18.100-42.361 17.816-42.361Q17.539-42.361 17.326-42.203Q17.112-42.044 16.994-41.789Q16.876-41.534 16.876-41.268M20.322-40.304L20.322-42.201L19.683-42.201L19.683-42.423Q20-42.423 20.217-42.633Q20.434-42.843 20.535-43.153Q20.636-43.462 20.636-43.770L20.903-43.770L20.903-42.481L21.979-42.481L21.979-42.201L20.903-42.201L20.903-40.317Q20.903-40.041 21.007-39.842Q21.111-39.644 21.371-39.644Q21.528-39.644 21.634-39.748Q21.740-39.853 21.790-40.006Q21.839-40.160 21.839-40.317L21.839-40.731L22.106-40.731L22.106-40.304Q22.106-40.078 22.007-39.868Q21.908-39.658 21.723-39.526Q21.538-39.395 21.309-39.395Q20.872-39.395 20.597-39.632Q20.322-39.870 20.322-40.304M22.916-40.974Q22.916-41.302 23.051-41.603Q23.186-41.903 23.422-42.124Q23.658-42.344 23.962-42.464Q24.266-42.584 24.591-42.584Q25.097-42.584 25.445-42.481Q25.794-42.379 25.794-42.003Q25.794-41.856 25.696-41.755Q25.599-41.654 25.452-41.654Q25.298-41.654 25.199-41.753Q25.100-41.852 25.100-42.003Q25.100-42.191 25.240-42.283Q25.038-42.334 24.598-42.334Q24.242-42.334 24.013-42.138Q23.784-41.941 23.683-41.632Q23.582-41.322 23.582-40.974Q23.582-40.625 23.709-40.319Q23.835-40.013 24.090-39.829Q24.345-39.644 24.700-39.644Q24.922-39.644 25.107-39.728Q25.291-39.812 25.426-39.967Q25.561-40.123 25.620-40.331Q25.633-40.386 25.688-40.386L25.801-40.386Q25.831-40.386 25.854-40.362Q25.876-40.338 25.876-40.304L25.876-40.283Q25.790-39.996 25.602-39.798Q25.414-39.600 25.150-39.497Q24.885-39.395 24.591-39.395Q24.160-39.395 23.772-39.601Q23.384-39.808 23.150-40.171Q22.916-40.533 22.916-40.974\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-28.175 2.43)\">\u003Cpath d=\"M27.950-39.463L26.316-39.463L26.316-39.743Q26.545-39.743 26.694-39.777Q26.843-39.812 26.843-39.952L26.843-43.571Q26.843-43.841 26.735-43.903Q26.627-43.964 26.316-43.964L26.316-44.245L27.396-44.320L27.396-41.934Q27.502-42.119 27.680-42.261Q27.858-42.402 28.066-42.476Q28.275-42.549 28.500-42.549Q29.006-42.549 29.290-42.326Q29.574-42.102 29.574-41.606L29.574-39.952Q29.574-39.815 29.722-39.779Q29.871-39.743 30.097-39.743L30.097-39.463L28.466-39.463L28.466-39.743Q28.695-39.743 28.844-39.777Q28.993-39.812 28.993-39.952L28.993-41.592Q28.993-41.927 28.873-42.127Q28.753-42.327 28.439-42.327Q28.169-42.327 27.935-42.191Q27.701-42.054 27.562-41.820Q27.424-41.586 27.424-41.312L27.424-39.952Q27.424-39.815 27.574-39.779Q27.725-39.743 27.950-39.743\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M26.423-39.385Q25.974-39.385 25.608-39.609Q25.243-39.834 24.989-40.217Q24.735-40.600 24.610-41.043Q24.485-41.486 24.485-41.912Q24.485-42.338 24.610-42.777Q24.735-43.217 24.989-43.600Q25.243-43.983 25.603-44.207Q25.962-44.432 26.423-44.432Q26.700-44.432 26.958-44.340Q27.216-44.248 27.431-44.080L27.564-44.318Q27.591-44.369 27.646-44.401Q27.700-44.432 27.759-44.432L27.837-44.432Q27.931-44.420 27.993-44.361Q28.056-44.303 28.067-44.197L28.067-42.869Q28.056-42.768 27.993-42.705Q27.931-42.643 27.837-42.631L27.669-42.631Q27.567-42.643 27.505-42.709Q27.442-42.776 27.431-42.869Q27.392-43.135 27.269-43.359Q27.146-43.584 26.942-43.727Q26.739-43.869 26.478-43.869Q26.146-43.869 25.894-43.686Q25.642-43.502 25.470-43.201Q25.298-42.901 25.212-42.559Q25.126-42.217 25.126-41.912Q25.126-41.608 25.210-41.266Q25.294-40.924 25.466-40.621Q25.638-40.318 25.896-40.131Q26.153-39.943 26.485-39.943Q26.868-39.943 27.149-40.217Q27.431-40.490 27.431-40.877Q27.458-41.088 27.669-41.111L27.837-41.111Q28.067-41.072 28.067-40.846Q28.067-40.529 27.931-40.258Q27.794-39.986 27.560-39.789Q27.325-39.592 27.034-39.488Q26.743-39.385 26.423-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M41.991-39.463L40.273-39.463Q40.233-39.463 40.206-39.504Q40.179-39.545 40.179-39.592L40.202-39.693Q40.210-39.744 40.296-39.760Q41.026-39.760 41.151-40.287L42.179-44.385Q42.202-44.455 42.202-44.518Q42.202-44.580 42.136-44.600Q41.991-44.631 41.569-44.631Q41.464-44.662 41.464-44.760L41.495-44.861Q41.507-44.908 41.585-44.928L42.983-44.928Q43.042-44.928 43.079-44.899Q43.116-44.869 43.120-44.815L43.831-40.240L46.831-44.815Q46.909-44.928 47.026-44.928L48.370-44.928Q48.417-44.916 48.444-44.885Q48.472-44.854 48.472-44.807L48.448-44.701Q48.429-44.647 48.355-44.631Q47.913-44.631 47.753-44.592Q47.605-44.557 47.546-44.326L46.464-40.006Q46.448-39.912 46.448-39.869Q46.448-39.811 46.515-39.791Q46.655-39.760 47.081-39.760Q47.179-39.733 47.179-39.639L47.151-39.533Q47.144-39.483 47.066-39.463L44.983-39.463Q44.944-39.463 44.917-39.504Q44.890-39.545 44.890-39.592L44.913-39.693Q44.921-39.744 45.011-39.760Q45.448-39.760 45.607-39.799Q45.765-39.838 45.808-40.065L46.944-44.608L43.648-39.576Q43.581-39.463 43.448-39.463Q43.316-39.463 43.304-39.576L42.530-44.541L41.448-40.233Q41.433-40.131 41.433-40.080Q41.433-39.881 41.597-39.820Q41.761-39.760 42.011-39.760Q42.105-39.733 42.105-39.639L42.081-39.533Q42.073-39.483 41.991-39.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M48.294-39.274Q48.294-39.661 48.555-39.932Q48.815-40.203 49.217-40.372L49.044-40.469Q48.795-40.616 48.641-40.834Q48.487-41.052 48.487-41.322Q48.487-41.632 48.673-41.865Q48.859-42.098 49.152-42.220Q49.445-42.341 49.747-42.341Q50.037-42.341 50.329-42.243Q50.620-42.145 50.813-41.940Q51.007-41.735 51.007-41.436Q51.007-41.117 50.797-40.897Q50.588-40.677 50.245-40.516L50.567-40.343Q50.849-40.179 51.023-39.933Q51.197-39.687 51.197-39.382Q51.197-39.019 50.982-38.757Q50.767-38.495 50.430-38.360Q50.093-38.225 49.747-38.225Q49.404-38.225 49.070-38.339Q48.736-38.454 48.515-38.689Q48.294-38.925 48.294-39.274M48.701-39.280Q48.701-38.905 49.031-38.685Q49.360-38.465 49.747-38.465Q49.981-38.465 50.222-38.540Q50.462-38.615 50.626-38.773Q50.790-38.931 50.790-39.174Q50.790-39.344 50.682-39.483Q50.573-39.622 50.412-39.713L49.475-40.229Q49.149-40.091 48.925-39.845Q48.701-39.599 48.701-39.280M49.123-41.134L49.999-40.654Q50.646-40.970 50.646-41.436Q50.646-41.650 50.510-41.807Q50.374-41.963 50.167-42.041Q49.961-42.119 49.747-42.119Q49.425-42.119 49.135-41.979Q48.845-41.840 48.845-41.550Q48.845-41.319 49.123-41.134\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M54.251-37.463L53.075-37.463L53.075-45.463L54.251-45.463L54.251-45.096L53.442-45.096L53.442-37.830L54.251-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M54.628-39.701L54.628-39.791Q54.667-39.998 54.878-40.022L55.186-40.022L55.186-43.791L54.878-43.791Q54.667-43.815 54.628-44.029L54.628-44.119Q54.667-44.326 54.878-44.350L56.827-44.350Q57.225-44.350 57.571-44.149Q57.917-43.947 58.124-43.602Q58.331-43.256 58.331-42.854Q58.331-42.447 58.126-42.104Q57.921-41.760 57.575-41.555Q57.229-41.350 56.827-41.350L55.827-41.350L55.827-40.022L56.139-40.022Q56.350-39.998 56.389-39.791L56.389-39.701Q56.350-39.486 56.139-39.463L54.878-39.463Q54.667-39.486 54.628-39.701M55.827-43.791L55.827-41.912L56.667-41.912Q56.928-41.912 57.165-42.035Q57.401-42.158 57.546-42.373Q57.690-42.588 57.690-42.854Q57.690-43.123 57.546-43.334Q57.401-43.545 57.165-43.668Q56.928-43.791 56.667-43.791L55.827-43.791M60.956-39.385Q60.507-39.385 60.141-39.609Q59.776-39.834 59.522-40.217Q59.268-40.600 59.143-41.043Q59.018-41.486 59.018-41.912Q59.018-42.338 59.143-42.777Q59.268-43.217 59.522-43.600Q59.776-43.983 60.135-44.207Q60.495-44.432 60.956-44.432Q61.233-44.432 61.491-44.340Q61.749-44.248 61.964-44.080L62.096-44.318Q62.124-44.369 62.178-44.401Q62.233-44.432 62.292-44.432L62.370-44.432Q62.464-44.420 62.526-44.361Q62.589-44.303 62.600-44.197L62.600-42.869Q62.589-42.768 62.526-42.705Q62.464-42.643 62.370-42.631L62.202-42.631Q62.100-42.643 62.038-42.709Q61.975-42.776 61.964-42.869Q61.924-43.135 61.801-43.359Q61.678-43.584 61.475-43.727Q61.272-43.869 61.010-43.869Q60.678-43.869 60.426-43.686Q60.174-43.502 60.003-43.201Q59.831-42.901 59.745-42.559Q59.659-42.217 59.659-41.912Q59.659-41.608 59.743-41.266Q59.827-40.924 59.999-40.621Q60.171-40.318 60.428-40.131Q60.686-39.943 61.018-39.943Q61.401-39.943 61.682-40.217Q61.964-40.490 61.964-40.877Q61.991-41.088 62.202-41.111L62.370-41.111Q62.600-41.072 62.600-40.846Q62.600-40.529 62.464-40.258Q62.327-39.986 62.092-39.789Q61.858-39.592 61.567-39.488Q61.276-39.385 60.956-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M66.065-41.279L63.592-41.279Q63.514-41.291 63.465-41.340Q63.417-41.389 63.417-41.463Q63.417-41.537 63.465-41.586Q63.514-41.635 63.592-41.647L66.065-41.647L66.065-44.127Q66.092-44.295 66.249-44.295Q66.323-44.295 66.372-44.246Q66.421-44.197 66.432-44.127L66.432-41.647L68.905-41.647Q69.073-41.615 69.073-41.463Q69.073-41.311 68.905-41.279L66.432-41.279L66.432-38.799Q66.421-38.729 66.372-38.680Q66.323-38.631 66.249-38.631Q66.092-38.631 66.065-38.799\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M73.149-39.463L70.356-39.463L70.356-39.760Q71.418-39.760 71.418-40.022L71.418-44.190Q70.989-43.975 70.309-43.975L70.309-44.272Q71.328-44.272 71.844-44.783L71.989-44.783Q72.063-44.764 72.082-44.686L72.082-40.022Q72.082-39.760 73.149-39.760L73.149-39.463M75.160-37.463L73.985-37.463L73.985-37.830L74.793-37.830L74.793-45.096L73.985-45.096L73.985-45.463L75.160-45.463L75.160-37.463M76.985-38.057Q76.985-38.096 77.008-38.119Q77.282-38.404 77.424-38.768Q77.567-39.131 77.567-39.518Q77.469-39.463 77.344-39.463Q77.153-39.463 77.016-39.596Q76.879-39.729 76.879-39.928Q76.879-40.119 77.016-40.252Q77.153-40.385 77.344-40.385Q77.825-40.385 77.825-39.510Q77.825-39.221 77.752-38.940Q77.680-38.658 77.537-38.404Q77.395-38.151 77.200-37.943Q77.168-37.912 77.129-37.912Q77.082-37.912 77.034-37.957Q76.985-38.002 76.985-38.057M76.879-42.455Q76.879-42.639 77.016-42.776Q77.153-42.912 77.344-42.912Q77.535-42.912 77.668-42.779Q77.801-42.647 77.801-42.455Q77.801-42.256 77.668-42.123Q77.535-41.990 77.344-41.990Q77.153-41.990 77.016-42.127Q76.879-42.264 76.879-42.455\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M83.017-39.686L82.131-42.350L81.810-42.350Q81.611-42.373 81.560-42.592L81.560-42.678Q81.611-42.889 81.810-42.912L82.970-42.912Q83.166-42.893 83.216-42.678L83.216-42.592Q83.166-42.373 82.970-42.350L82.689-42.350L83.482-39.975L84.271-42.350L83.994-42.350Q83.795-42.373 83.744-42.592L83.744-42.678Q83.795-42.889 83.994-42.912L85.154-42.912Q85.349-42.889 85.400-42.678L85.400-42.592Q85.349-42.373 85.154-42.350L84.834-42.350L83.947-39.686Q83.904-39.572 83.802-39.498Q83.701-39.424 83.576-39.424L83.384-39.424Q83.267-39.424 83.164-39.496Q83.060-39.568 83.017-39.686M86.013-40.576Q86.013-41.022 86.427-41.279Q86.841-41.537 87.382-41.637Q87.924-41.736 88.431-41.744Q88.431-41.959 88.297-42.111Q88.162-42.264 87.955-42.340Q87.748-42.416 87.537-42.416Q87.193-42.416 87.033-42.393L87.033-42.334Q87.033-42.166 86.914-42.051Q86.795-41.936 86.631-41.936Q86.455-41.936 86.340-42.059Q86.224-42.182 86.224-42.350Q86.224-42.756 86.605-42.865Q86.986-42.975 87.545-42.975Q87.814-42.975 88.082-42.897Q88.349-42.818 88.574-42.668Q88.799-42.518 88.935-42.297Q89.072-42.076 89.072-41.799L89.072-40.080Q89.072-40.022 89.599-40.022Q89.795-40.002 89.845-39.791L89.845-39.701Q89.795-39.486 89.599-39.463L89.455-39.463Q89.111-39.463 88.882-39.510Q88.654-39.557 88.509-39.744Q88.049-39.424 87.341-39.424Q87.006-39.424 86.701-39.565Q86.396-39.705 86.205-39.967Q86.013-40.229 86.013-40.576M86.654-40.568Q86.654-40.295 86.896-40.139Q87.138-39.983 87.424-39.983Q87.642-39.983 87.875-40.041Q88.107-40.100 88.269-40.238Q88.431-40.377 88.431-40.600L88.431-41.190Q88.150-41.190 87.734-41.133Q87.318-41.076 86.986-40.938Q86.654-40.799 86.654-40.568M90.302-39.701L90.302-39.791Q90.353-39.998 90.549-40.022L91.654-40.022L91.654-43.791L90.549-43.791Q90.353-43.815 90.302-44.029L90.302-44.119Q90.353-44.326 90.549-44.350L92.045-44.350Q92.236-44.326 92.295-44.119L92.295-40.022L93.396-40.022Q93.595-39.998 93.646-39.791L93.646-39.701Q93.595-39.486 93.396-39.463L90.549-39.463Q90.353-39.486 90.302-39.701M94.283-39.701L94.283-39.791Q94.322-39.998 94.533-40.022L94.841-40.022L94.841-43.791L94.533-43.791Q94.322-43.815 94.283-44.029L94.283-44.119Q94.322-44.326 94.533-44.350L96.482-44.350Q96.881-44.350 97.226-44.149Q97.572-43.947 97.779-43.602Q97.986-43.256 97.986-42.854Q97.986-42.447 97.781-42.104Q97.576-41.760 97.230-41.555Q96.884-41.350 96.482-41.350L95.482-41.350L95.482-40.022L95.795-40.022Q96.006-39.998 96.045-39.791L96.045-39.701Q96.006-39.486 95.795-39.463L94.533-39.463Q94.322-39.486 94.283-39.701M95.482-43.791L95.482-41.912L96.322-41.912Q96.584-41.912 96.820-42.035Q97.056-42.158 97.201-42.373Q97.345-42.588 97.345-42.854Q97.345-43.123 97.201-43.334Q97.056-43.545 96.820-43.668Q96.584-43.791 96.322-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M106.683-40.440L101.370-40.440Q101.292-40.447 101.243-40.496Q101.195-40.545 101.195-40.623Q101.195-40.693 101.242-40.744Q101.288-40.795 101.370-40.807L106.683-40.807Q106.757-40.795 106.804-40.744Q106.851-40.693 106.851-40.623Q106.851-40.545 106.802-40.496Q106.753-40.447 106.683-40.440M106.683-42.127L101.370-42.127Q101.292-42.135 101.243-42.184Q101.195-42.233 101.195-42.311Q101.195-42.381 101.242-42.432Q101.288-42.483 101.370-42.494L106.683-42.494Q106.757-42.483 106.804-42.432Q106.851-42.381 106.851-42.311Q106.851-42.233 106.802-42.184Q106.753-42.135 106.683-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M109.879-39.701L109.879-39.791Q109.918-39.998 110.129-40.022L110.437-40.022L110.437-43.791L110.129-43.791Q109.918-43.815 109.879-44.029L109.879-44.119Q109.918-44.326 110.129-44.350L112.078-44.350Q112.476-44.350 112.822-44.149Q113.168-43.947 113.375-43.602Q113.582-43.256 113.582-42.854Q113.582-42.447 113.377-42.104Q113.172-41.760 112.826-41.555Q112.480-41.350 112.078-41.350L111.078-41.350L111.078-40.022L111.390-40.022Q111.601-39.998 111.640-39.791L111.640-39.701Q111.601-39.486 111.390-39.463L110.129-39.463Q109.918-39.486 109.879-39.701M111.078-43.791L111.078-41.912L111.918-41.912Q112.179-41.912 112.416-42.035Q112.652-42.158 112.797-42.373Q112.941-42.588 112.941-42.854Q112.941-43.123 112.797-43.334Q112.652-43.545 112.416-43.668Q112.179-43.791 111.918-43.791L111.078-43.791M116.207-39.385Q115.757-39.385 115.392-39.609Q115.027-39.834 114.773-40.217Q114.519-40.600 114.394-41.043Q114.269-41.486 114.269-41.912Q114.269-42.338 114.394-42.777Q114.519-43.217 114.773-43.600Q115.027-43.983 115.386-44.207Q115.746-44.432 116.207-44.432Q116.484-44.432 116.742-44.340Q117-44.248 117.215-44.080L117.347-44.318Q117.375-44.369 117.429-44.401Q117.484-44.432 117.543-44.432L117.621-44.432Q117.715-44.420 117.777-44.361Q117.840-44.303 117.851-44.197L117.851-42.869Q117.840-42.768 117.777-42.705Q117.715-42.643 117.621-42.631L117.453-42.631Q117.351-42.643 117.289-42.709Q117.226-42.776 117.215-42.869Q117.175-43.135 117.052-43.359Q116.929-43.584 116.726-43.727Q116.523-43.869 116.261-43.869Q115.929-43.869 115.677-43.686Q115.425-43.502 115.254-43.201Q115.082-42.901 114.996-42.559Q114.910-42.217 114.910-41.912Q114.910-41.608 114.994-41.266Q115.078-40.924 115.250-40.621Q115.422-40.318 115.679-40.131Q115.937-39.943 116.269-39.943Q116.652-39.943 116.933-40.217Q117.215-40.490 117.215-40.877Q117.242-41.088 117.453-41.111L117.621-41.111Q117.851-41.072 117.851-40.846Q117.851-40.529 117.715-40.258Q117.578-39.986 117.343-39.789Q117.109-39.592 116.818-39.488Q116.527-39.385 116.207-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M121.316-41.279L118.843-41.279Q118.765-41.291 118.716-41.340Q118.668-41.389 118.668-41.463Q118.668-41.537 118.716-41.586Q118.765-41.635 118.843-41.647L121.316-41.647L121.316-44.127Q121.343-44.295 121.500-44.295Q121.574-44.295 121.623-44.246Q121.672-44.197 121.683-44.127L121.683-41.647L124.156-41.647Q124.324-41.615 124.324-41.463Q124.324-41.311 124.156-41.279L121.683-41.279L121.683-38.799Q121.672-38.729 121.623-38.680Q121.574-38.631 121.500-38.631Q121.343-38.631 121.316-38.799\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 2)\">\u003Cpath d=\"M125.798-39.807Q126.029-39.568 126.576-39.568Q126.829-39.568 127.052-39.692Q127.275-39.815 127.445-40.031Q127.615-40.248 127.708-40.479Q127.833-40.791 127.872-41.131Q127.911-41.471 127.911-41.920Q127.743-41.588 127.460-41.393Q127.177-41.197 126.837-41.197Q126.474-41.197 126.161-41.342Q125.849-41.486 125.626-41.738Q125.404-41.990 125.281-42.317Q125.158-42.643 125.158-42.998Q125.158-43.494 125.400-43.904Q125.642-44.315 126.060-44.549Q126.478-44.783 126.974-44.783Q127.931-44.783 128.312-43.953Q128.693-43.123 128.693-42.049Q128.693-41.416 128.443-40.772Q128.193-40.127 127.710-39.711Q127.228-39.295 126.576-39.295Q126.072-39.295 125.722-39.512Q125.372-39.729 125.372-40.197Q125.372-40.365 125.486-40.479Q125.599-40.592 125.767-40.592Q125.872-40.592 125.964-40.541Q126.056-40.490 126.107-40.399Q126.158-40.307 126.158-40.197Q126.158-40.049 126.056-39.928Q125.954-39.807 125.798-39.807M126.876-41.455Q127.208-41.455 127.441-41.666Q127.673-41.877 127.785-42.199Q127.896-42.522 127.896-42.838Q127.896-42.936 127.884-42.990Q127.888-42.998 127.892-43.010Q127.896-43.022 127.896-43.029Q127.896-43.272 127.853-43.535Q127.810-43.799 127.708-44.027Q127.607-44.256 127.425-44.399Q127.243-44.541 126.974-44.541Q126.540-44.541 126.314-44.320Q126.087-44.100 126.015-43.768Q125.943-43.436 125.943-42.998Q125.943-42.553 125.999-42.231Q126.056-41.908 126.261-41.682Q126.466-41.455 126.876-41.455\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-27.512h233.312\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M14.584-39.463L11.812-39.463L11.812-39.743Q12.533-39.743 12.533-39.952L12.533-43.753Q12.533-43.964 11.812-43.964L11.812-44.245L14.584-44.245Q15.069-44.245 15.505-44.050Q15.941-43.855 16.264-43.513Q16.587-43.171 16.765-42.731Q16.942-42.290 16.942-41.808Q16.942-41.322 16.758-40.899Q16.573-40.475 16.250-40.153Q15.927-39.832 15.495-39.648Q15.063-39.463 14.584-39.463M13.196-43.753L13.196-39.952Q13.196-39.812 13.285-39.777Q13.374-39.743 13.562-39.743L14.386-39.743Q15.011-39.743 15.415-40.005Q15.818-40.266 16.006-40.733Q16.194-41.199 16.194-41.808Q16.194-42.286 16.102-42.679Q16.009-43.072 15.760-43.370Q15.521-43.657 15.157-43.811Q14.793-43.964 14.386-43.964L13.562-43.964Q13.374-43.964 13.285-43.930Q13.196-43.896 13.196-43.753M17.711-40.998Q17.711-41.319 17.836-41.608Q17.961-41.897 18.187-42.120Q18.412-42.344 18.708-42.464Q19.003-42.584 19.321-42.584Q19.649-42.584 19.911-42.484Q20.172-42.385 20.348-42.203Q20.524-42.020 20.618-41.762Q20.712-41.504 20.712-41.172Q20.712-41.080 20.630-41.059L18.375-41.059L18.375-40.998Q18.375-40.410 18.658-40.027Q18.942-39.644 19.509-39.644Q19.831-39.644 20.099-39.837Q20.367-40.030 20.456-40.345Q20.463-40.386 20.538-40.400L20.630-40.400Q20.712-40.376 20.712-40.304Q20.712-40.297 20.706-40.270Q20.593-39.873 20.222-39.634Q19.851-39.395 19.427-39.395Q18.990-39.395 18.590-39.603Q18.190-39.812 17.951-40.179Q17.711-40.546 17.711-40.998M18.381-41.268L20.196-41.268Q20.196-41.545 20.099-41.797Q20.002-42.050 19.803-42.206Q19.605-42.361 19.321-42.361Q19.044-42.361 18.831-42.203Q18.617-42.044 18.499-41.789Q18.381-41.534 18.381-41.268M21.300-40.974Q21.300-41.302 21.435-41.603Q21.570-41.903 21.806-42.124Q22.042-42.344 22.346-42.464Q22.650-42.584 22.975-42.584Q23.481-42.584 23.830-42.481Q24.178-42.379 24.178-42.003Q24.178-41.856 24.081-41.755Q23.983-41.654 23.836-41.654Q23.683-41.654 23.584-41.753Q23.484-41.852 23.484-42.003Q23.484-42.191 23.625-42.283Q23.423-42.334 22.982-42.334Q22.627-42.334 22.398-42.138Q22.169-41.941 22.068-41.632Q21.967-41.322 21.967-40.974Q21.967-40.625 22.093-40.319Q22.220-40.013 22.474-39.829Q22.729-39.644 23.085-39.644Q23.307-39.644 23.491-39.728Q23.676-39.812 23.811-39.967Q23.946-40.123 24.004-40.331Q24.018-40.386 24.072-40.386L24.185-40.386Q24.216-40.386 24.238-40.362Q24.260-40.338 24.260-40.304L24.260-40.283Q24.175-39.996 23.987-39.798Q23.799-39.600 23.534-39.497Q23.269-39.395 22.975-39.395Q22.544-39.395 22.157-39.601Q21.769-39.808 21.534-40.171Q21.300-40.533 21.300-40.974M24.807-40.946Q24.807-41.288 24.942-41.587Q25.077-41.886 25.316-42.110Q25.556-42.334 25.874-42.459Q26.191-42.584 26.523-42.584Q26.967-42.584 27.367-42.368Q27.767-42.153 28.001-41.775Q28.235-41.398 28.235-40.946Q28.235-40.605 28.094-40.321Q27.952-40.037 27.707-39.830Q27.463-39.624 27.154-39.509Q26.844-39.395 26.523-39.395Q26.092-39.395 25.691-39.596Q25.289-39.798 25.048-40.150Q24.807-40.502 24.807-40.946M26.523-39.644Q27.125-39.644 27.348-40.022Q27.572-40.400 27.572-41.032Q27.572-41.644 27.338-42.003Q27.104-42.361 26.523-42.361Q25.470-42.361 25.470-41.032Q25.470-40.400 25.696-40.022Q25.921-39.644 26.523-39.644\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-34.53 26.616)\">\u003Cpath d=\"M29.066-40.974Q29.066-41.312 29.207-41.603Q29.347-41.893 29.591-42.107Q29.835-42.320 30.140-42.435Q30.444-42.549 30.769-42.549Q31.039-42.549 31.302-42.450Q31.565-42.351 31.756-42.173L31.756-43.571Q31.756-43.841 31.649-43.903Q31.541-43.964 31.230-43.964L31.230-44.245L32.307-44.320L32.307-40.136Q32.307-39.948 32.361-39.865Q32.416-39.781 32.517-39.762Q32.618-39.743 32.833-39.743L32.833-39.463L31.726-39.395L31.726-39.812Q31.309-39.395 30.683-39.395Q30.252-39.395 29.880-39.607Q29.507-39.818 29.287-40.179Q29.066-40.540 29.066-40.974M30.741-39.617Q30.950-39.617 31.136-39.689Q31.322-39.760 31.476-39.897Q31.630-40.034 31.726-40.212L31.726-41.821Q31.640-41.968 31.495-42.088Q31.350-42.208 31.180-42.267Q31.011-42.327 30.830-42.327Q30.270-42.327 30.001-41.938Q29.733-41.548 29.733-40.967Q29.733-40.396 29.967-40.006Q30.201-39.617 30.741-39.617M33.441-40.998Q33.441-41.319 33.566-41.608Q33.691-41.897 33.917-42.120Q34.142-42.344 34.438-42.464Q34.733-42.584 35.051-42.584Q35.379-42.584 35.641-42.484Q35.902-42.385 36.078-42.203Q36.254-42.020 36.348-41.762Q36.442-41.504 36.442-41.172Q36.442-41.080 36.360-41.059L34.105-41.059L34.105-40.998Q34.105-40.410 34.388-40.027Q34.672-39.644 35.239-39.644Q35.561-39.644 35.829-39.837Q36.097-40.030 36.186-40.345Q36.193-40.386 36.268-40.400L36.360-40.400Q36.442-40.376 36.442-40.304Q36.442-40.297 36.436-40.270Q36.323-39.873 35.952-39.634Q35.581-39.395 35.157-39.395Q34.720-39.395 34.320-39.603Q33.920-39.812 33.681-40.179Q33.441-40.546 33.441-40.998M34.111-41.268L35.926-41.268Q35.926-41.545 35.829-41.797Q35.731-42.050 35.533-42.206Q35.335-42.361 35.051-42.361Q34.774-42.361 34.561-42.203Q34.347-42.044 34.229-41.789Q34.111-41.534 34.111-41.268\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.325-39.701L24.325-39.791Q24.364-39.998 24.571-40.022L24.860-40.022L24.860-43.791L24.571-43.791Q24.364-43.815 24.325-44.029L24.325-44.119Q24.364-44.326 24.571-44.350L26.532-44.350Q26.802-44.350 27.042-44.254Q27.282-44.158 27.474-43.988Q27.665-43.818 27.774-43.590Q27.884-43.361 27.884-43.096Q27.884-42.729 27.644-42.440Q27.403-42.151 27.036-42.022Q27.317-41.959 27.550-41.785Q27.782-41.611 27.917-41.356Q28.052-41.100 28.052-40.815Q28.052-40.455 27.870-40.145Q27.689-39.834 27.374-39.649Q27.060-39.463 26.700-39.463L24.571-39.463Q24.364-39.486 24.325-39.701M25.501-41.729L25.501-40.022L26.532-40.022Q26.759-40.022 26.962-40.125Q27.165-40.229 27.290-40.408Q27.415-40.588 27.415-40.815Q27.415-41.045 27.314-41.254Q27.212-41.463 27.030-41.596Q26.849-41.729 26.622-41.729L25.501-41.729M25.501-43.791L25.501-42.287L26.364-42.287Q26.708-42.287 26.978-42.522Q27.247-42.756 27.247-43.096Q27.247-43.283 27.149-43.443Q27.052-43.604 26.886-43.697Q26.720-43.791 26.532-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M42.378-39.463L40.241-39.463Q40.206-39.463 40.175-39.504Q40.144-39.545 40.144-39.592L40.167-39.693Q40.179-39.744 40.265-39.760Q40.706-39.760 40.864-39.799Q41.023-39.838 41.066-40.065L42.144-44.385Q42.167-44.455 42.167-44.518Q42.167-44.580 42.105-44.600Q41.960-44.631 41.538-44.631Q41.433-44.658 41.433-44.760L41.464-44.861Q41.472-44.908 41.554-44.928L44.066-44.928Q44.472-44.928 44.915-44.805Q45.358-44.682 45.663-44.406Q45.968-44.131 45.968-43.709Q45.968-43.322 45.698-43.006Q45.429-42.690 45.030-42.481Q44.632-42.272 44.257-42.182Q44.566-42.057 44.763-41.818Q44.960-41.580 44.960-41.264Q44.960-41.221 44.958-41.193Q44.956-41.166 44.952-41.135L44.874-40.440Q44.843-40.151 44.843-40.029Q44.843-39.815 44.911-39.684Q44.980-39.553 45.187-39.553Q45.441-39.553 45.636-39.777Q45.831-40.002 45.898-40.279Q45.905-40.326 45.991-40.342L46.073-40.342Q46.167-40.315 46.167-40.233Q46.167-40.225 46.159-40.190Q46.108-39.975 45.964-39.764Q45.819-39.553 45.612-39.424Q45.405-39.295 45.179-39.295Q44.874-39.295 44.605-39.381Q44.335-39.467 44.163-39.666Q43.991-39.865 43.991-40.174Q43.991-40.283 44.034-40.463L44.210-41.158Q44.233-41.279 44.233-41.373Q44.233-41.709 43.972-41.891Q43.710-42.072 43.347-42.072L42.296-42.072L41.776-40.006Q41.761-39.912 41.761-39.869Q41.761-39.830 41.774-39.817Q41.788-39.803 41.823-39.791Q41.968-39.760 42.394-39.760Q42.487-39.733 42.487-39.639L42.464-39.533Q42.456-39.483 42.378-39.463M42.858-44.326L42.362-42.326L43.304-42.326Q43.648-42.326 43.964-42.395Q44.280-42.463 44.554-42.631Q44.741-42.756 44.878-42.957Q45.015-43.158 45.083-43.391Q45.151-43.623 45.151-43.846Q45.151-44.303 44.784-44.467Q44.417-44.631 43.882-44.631L43.265-44.631Q43.093-44.631 43.030-44.617Q42.968-44.604 42.935-44.545Q42.901-44.486 42.858-44.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M48.372-37.463L47.196-37.463L47.196-45.463L48.372-45.463L48.372-45.096L47.563-45.096L47.563-37.830L48.372-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M49.749-39.197Q49.749-39.260 49.780-39.303L53.526-44.561Q53.069-44.326 52.502-44.326Q51.850-44.326 51.245-44.647Q51.389-44.299 51.389-43.854Q51.389-43.494 51.268-43.123Q51.147-42.752 50.897-42.496Q50.647-42.240 50.284-42.240Q49.897-42.240 49.614-42.484Q49.331-42.729 49.184-43.102Q49.038-43.475 49.038-43.854Q49.038-44.233 49.184-44.604Q49.331-44.975 49.614-45.219Q49.897-45.463 50.284-45.463Q50.600-45.463 50.870-45.225Q51.206-44.920 51.635-44.748Q52.065-44.576 52.502-44.576Q52.995-44.576 53.413-44.789Q53.831-45.002 54.131-45.401Q54.174-45.463 54.268-45.463Q54.342-45.463 54.397-45.408Q54.452-45.354 54.452-45.279Q54.452-45.217 54.420-45.174L50.077-39.080Q50.030-39.014 49.932-39.014Q49.850-39.014 49.799-39.065Q49.749-39.115 49.749-39.197M50.284-42.494Q50.557-42.494 50.745-42.719Q50.932-42.943 51.020-43.266Q51.108-43.588 51.108-43.854Q51.108-44.111 51.020-44.434Q50.932-44.756 50.745-44.981Q50.557-45.205 50.284-45.205Q49.897-45.205 49.754-44.777Q49.612-44.350 49.612-43.854Q49.612-43.346 49.752-42.920Q49.893-42.494 50.284-42.494M54.061-39.014Q53.674-39.014 53.391-39.260Q53.108-39.506 52.960-39.879Q52.811-40.252 52.811-40.631Q52.811-40.904 52.897-41.192Q52.983-41.479 53.137-41.713Q53.292-41.947 53.528-42.094Q53.764-42.240 54.061-42.240Q54.342-42.240 54.549-42.088Q54.756-41.936 54.895-41.693Q55.034-41.451 55.100-41.170Q55.167-40.889 55.167-40.631Q55.167-40.272 55.045-39.899Q54.924-39.526 54.674-39.270Q54.424-39.014 54.061-39.014M54.061-39.272Q54.335-39.272 54.522-39.496Q54.710-39.721 54.797-40.043Q54.885-40.365 54.885-40.631Q54.885-40.889 54.797-41.211Q54.710-41.533 54.522-41.758Q54.335-41.983 54.061-41.983Q53.670-41.983 53.530-41.553Q53.389-41.123 53.389-40.631Q53.389-40.123 53.526-39.697Q53.663-39.272 54.061-39.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M55.872-39.701L55.872-39.791Q55.930-39.998 56.122-40.022L56.833-40.022L56.833-42.350L56.122-42.350Q55.926-42.373 55.872-42.592L55.872-42.678Q55.930-42.889 56.122-42.912L57.223-42.912Q57.422-42.893 57.473-42.678L57.473-42.350Q57.735-42.635 58.090-42.793Q58.446-42.951 58.833-42.951Q59.126-42.951 59.360-42.817Q59.594-42.682 59.594-42.416Q59.594-42.248 59.485-42.131Q59.376-42.014 59.208-42.014Q59.055-42.014 58.940-42.125Q58.825-42.236 58.825-42.393Q58.450-42.393 58.135-42.192Q57.821-41.990 57.647-41.656Q57.473-41.322 57.473-40.943L57.473-40.022L58.419-40.022Q58.626-39.998 58.665-39.791L58.665-39.701Q58.626-39.486 58.419-39.463L56.122-39.463Q55.930-39.486 55.872-39.701M60.481-39.662L60.481-40.576Q60.508-40.783 60.719-40.807L60.887-40.807Q61.051-40.783 61.110-40.623Q61.313-39.983 62.040-39.983Q62.247-39.983 62.475-40.018Q62.704-40.053 62.872-40.168Q63.040-40.283 63.040-40.486Q63.040-40.697 62.817-40.811Q62.594-40.924 62.321-40.967L61.622-41.080Q60.481-41.291 60.481-42.014Q60.481-42.303 60.626-42.492Q60.770-42.682 61.010-42.789Q61.251-42.897 61.506-42.936Q61.762-42.975 62.040-42.975Q62.290-42.975 62.483-42.945Q62.676-42.916 62.840-42.838Q62.919-42.955 63.047-42.975L63.126-42.975Q63.223-42.963 63.286-42.901Q63.348-42.838 63.360-42.744L63.360-42.037Q63.348-41.943 63.286-41.877Q63.223-41.811 63.126-41.799L62.958-41.799Q62.864-41.811 62.797-41.877Q62.731-41.943 62.719-42.037Q62.719-42.416 62.024-42.416Q61.676-42.416 61.358-42.334Q61.040-42.252 61.040-42.006Q61.040-41.740 61.712-41.631L62.415-41.510Q62.899-41.428 63.249-41.180Q63.598-40.932 63.598-40.486Q63.598-40.096 63.362-39.854Q63.126-39.611 62.776-39.518Q62.426-39.424 62.040-39.424Q61.462-39.424 61.063-39.678Q60.993-39.553 60.944-39.496Q60.895-39.440 60.790-39.424L60.719-39.424Q60.504-39.447 60.481-39.662M64.212-37.920L64.212-38.006Q64.254-38.225 64.462-38.248L64.883-38.248L64.883-42.350L64.462-42.350Q64.254-42.373 64.212-42.592L64.212-42.678Q64.258-42.889 64.462-42.912L65.278-42.912Q65.473-42.893 65.524-42.678L65.524-42.608Q65.735-42.776 65.999-42.863Q66.262-42.951 66.532-42.951Q66.872-42.951 67.169-42.807Q67.465-42.662 67.680-42.410Q67.895-42.158 68.010-41.846Q68.126-41.533 68.126-41.190Q68.126-40.725 67.899-40.315Q67.672-39.904 67.286-39.664Q66.899-39.424 66.430-39.424Q65.911-39.424 65.524-39.791L65.524-38.248L65.950-38.248Q66.157-38.225 66.196-38.006L66.196-37.920Q66.157-37.709 65.950-37.686L64.462-37.686Q64.258-37.709 64.212-37.920M66.387-39.983Q66.696-39.983 66.946-40.152Q67.196-40.322 67.340-40.604Q67.485-40.885 67.485-41.190Q67.485-41.479 67.360-41.758Q67.235-42.037 67.003-42.215Q66.770-42.393 66.469-42.393Q66.149-42.393 65.887-42.207Q65.626-42.022 65.524-41.721L65.524-40.869Q65.614-40.502 65.835-40.242Q66.055-39.983 66.387-39.983\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 26.185)\">\u003Cpath d=\"M69.758-37.463L68.583-37.463L68.583-37.830L69.391-37.830L69.391-45.096L68.583-45.096L68.583-45.463L69.758-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-3.327h233.312\"\u002F>\u003Cg transform=\"translate(-37.008 50.761)\">\u003Cpath d=\"M16.201-39.463L11.798-39.463L11.798-39.743Q12.520-39.743 12.520-39.952L12.520-43.753Q12.520-43.964 11.798-43.964L11.798-44.245L16.088-44.245L16.296-42.608L16.033-42.608Q15.975-43.079 15.873-43.344Q15.770-43.609 15.586-43.742Q15.401-43.876 15.129-43.920Q14.857-43.964 14.358-43.964L13.576-43.964Q13.388-43.964 13.299-43.930Q13.210-43.896 13.210-43.753L13.210-42.088L13.784-42.088Q14.174-42.088 14.357-42.139Q14.540-42.191 14.622-42.363Q14.704-42.536 14.704-42.908L14.967-42.908L14.967-40.987L14.704-40.987Q14.704-41.360 14.622-41.533Q14.540-41.705 14.357-41.756Q14.174-41.808 13.784-41.808L13.210-41.808L13.210-39.952Q13.210-39.812 13.299-39.777Q13.388-39.743 13.576-39.743L14.423-39.743Q14.953-39.743 15.263-39.812Q15.572-39.880 15.760-40.047Q15.948-40.215 16.055-40.517Q16.163-40.820 16.249-41.333L16.515-41.333L16.201-39.463M18.286-39.463L16.963-39.463L16.963-39.743Q17.523-39.743 17.903-40.143L18.617-40.940L17.705-41.989Q17.568-42.136 17.419-42.168Q17.271-42.201 17.004-42.201L17.004-42.481L18.504-42.481L18.504-42.201Q18.313-42.201 18.313-42.067Q18.313-42.037 18.344-41.989L18.939-41.305L19.379-41.801Q19.492-41.931 19.492-42.047Q19.492-42.109 19.455-42.155Q19.417-42.201 19.359-42.201L19.359-42.481L20.675-42.481L20.675-42.201Q20.114-42.201 19.735-41.801L19.113-41.100L20.107-39.952Q20.207-39.853 20.307-39.808Q20.408-39.764 20.519-39.754Q20.630-39.743 20.808-39.743L20.808-39.463L19.315-39.463L19.315-39.743Q19.379-39.743 19.439-39.777Q19.499-39.812 19.499-39.877Q19.499-39.924 19.468-39.952L18.792-40.738L18.258-40.143Q18.146-40.013 18.146-39.897Q18.146-39.832 18.187-39.788Q18.228-39.743 18.286-39.743L18.286-39.463M21.263-40.998Q21.263-41.319 21.388-41.608Q21.512-41.897 21.738-42.120Q21.963-42.344 22.259-42.464Q22.555-42.584 22.873-42.584Q23.201-42.584 23.462-42.484Q23.724-42.385 23.900-42.203Q24.076-42.020 24.170-41.762Q24.264-41.504 24.264-41.172Q24.264-41.080 24.182-41.059L21.926-41.059L21.926-40.998Q21.926-40.410 22.210-40.027Q22.493-39.644 23.061-39.644Q23.382-39.644 23.650-39.837Q23.919-40.030 24.007-40.345Q24.014-40.386 24.089-40.400L24.182-40.400Q24.264-40.376 24.264-40.304Q24.264-40.297 24.257-40.270Q24.144-39.873 23.773-39.634Q23.402-39.395 22.979-39.395Q22.541-39.395 22.141-39.603Q21.741-39.812 21.502-40.179Q21.263-40.546 21.263-40.998M21.933-41.268L23.748-41.268Q23.748-41.545 23.650-41.797Q23.553-42.050 23.355-42.206Q23.156-42.361 22.873-42.361Q22.596-42.361 22.382-42.203Q22.169-42.044 22.051-41.789Q21.933-41.534 21.933-41.268M24.852-40.974Q24.852-41.302 24.987-41.603Q25.122-41.903 25.357-42.124Q25.593-42.344 25.898-42.464Q26.202-42.584 26.526-42.584Q27.032-42.584 27.381-42.481Q27.730-42.379 27.730-42.003Q27.730-41.856 27.632-41.755Q27.535-41.654 27.388-41.654Q27.234-41.654 27.135-41.753Q27.036-41.852 27.036-42.003Q27.036-42.191 27.176-42.283Q26.974-42.334 26.533-42.334Q26.178-42.334 25.949-42.138Q25.720-41.941 25.619-41.632Q25.518-41.322 25.518-40.974Q25.518-40.625 25.645-40.319Q25.771-40.013 26.026-39.829Q26.280-39.644 26.636-39.644Q26.858-39.644 27.043-39.728Q27.227-39.812 27.362-39.967Q27.497-40.123 27.555-40.331Q27.569-40.386 27.624-40.386L27.736-40.386Q27.767-40.386 27.789-40.362Q27.812-40.338 27.812-40.304L27.812-40.283Q27.726-39.996 27.538-39.798Q27.350-39.600 27.085-39.497Q26.820-39.395 26.526-39.395Q26.096-39.395 25.708-39.601Q25.320-39.808 25.086-40.171Q24.852-40.533 24.852-40.974M28.974-40.297L28.974-41.801Q28.974-42.071 28.866-42.132Q28.758-42.194 28.447-42.194L28.447-42.474L29.555-42.549L29.555-40.317L29.555-40.297Q29.555-40.017 29.606-39.873Q29.657-39.730 29.799-39.673Q29.941-39.617 30.228-39.617Q30.481-39.617 30.686-39.757Q30.891-39.897 31.007-40.123Q31.124-40.348 31.124-40.598L31.124-41.801Q31.124-42.071 31.016-42.132Q30.908-42.194 30.597-42.194L30.597-42.474L31.705-42.549L31.705-40.136Q31.705-39.945 31.758-39.863Q31.811-39.781 31.911-39.762Q32.012-39.743 32.228-39.743L32.228-39.463L31.151-39.395L31.151-39.959Q31.042-39.777 30.896-39.654Q30.751-39.531 30.565-39.463Q30.378-39.395 30.177-39.395Q28.974-39.395 28.974-40.297M33.342-40.304L33.342-42.201L32.703-42.201L32.703-42.423Q33.021-42.423 33.238-42.633Q33.455-42.843 33.555-43.153Q33.656-43.462 33.656-43.770L33.923-43.770L33.923-42.481L35-42.481L35-42.201L33.923-42.201L33.923-40.317Q33.923-40.041 34.027-39.842Q34.131-39.644 34.391-39.644Q34.548-39.644 34.654-39.748Q34.760-39.853 34.810-40.006Q34.859-40.160 34.859-40.317L34.859-40.731L35.126-40.731L35.126-40.304Q35.126-40.078 35.027-39.868Q34.928-39.658 34.743-39.526Q34.559-39.395 34.330-39.395Q33.892-39.395 33.617-39.632Q33.342-39.870 33.342-40.304M35.895-40.998Q35.895-41.319 36.020-41.608Q36.145-41.897 36.370-42.120Q36.596-42.344 36.891-42.464Q37.187-42.584 37.505-42.584Q37.833-42.584 38.095-42.484Q38.356-42.385 38.532-42.203Q38.708-42.020 38.802-41.762Q38.896-41.504 38.896-41.172Q38.896-41.080 38.814-41.059L36.558-41.059L36.558-40.998Q36.558-40.410 36.842-40.027Q37.126-39.644 37.693-39.644Q38.014-39.644 38.283-39.837Q38.551-40.030 38.640-40.345Q38.647-40.386 38.722-40.400L38.814-40.400Q38.896-40.376 38.896-40.304Q38.896-40.297 38.889-40.270Q38.776-39.873 38.406-39.634Q38.035-39.395 37.611-39.395Q37.173-39.395 36.773-39.603Q36.374-39.812 36.134-40.179Q35.895-40.546 35.895-40.998M36.565-41.268L38.380-41.268Q38.380-41.545 38.283-41.797Q38.185-42.050 37.987-42.206Q37.789-42.361 37.505-42.361Q37.228-42.361 37.014-42.203Q36.801-42.044 36.683-41.789Q36.565-41.534 36.565-41.268\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.341-39.701L24.341-39.791Q24.380-39.998 24.591-40.022L24.899-40.022L24.899-43.791L24.591-43.791Q24.380-43.815 24.341-44.029L24.341-44.119Q24.380-44.326 24.591-44.350L27.798-44.350Q27.993-44.326 28.044-44.119L28.044-43.279Q27.993-43.065 27.798-43.037L27.653-43.037Q27.458-43.065 27.403-43.279L27.403-43.791L25.540-43.791L25.540-42.272L26.517-42.272L26.517-42.486Q26.567-42.693 26.767-42.721L26.911-42.721Q27.107-42.693 27.157-42.486L27.157-41.502Q27.107-41.287 26.911-41.264L26.767-41.264Q26.567-41.287 26.517-41.502L26.517-41.709L25.540-41.709L25.540-40.022L27.583-40.022L27.583-40.662Q27.634-40.869 27.829-40.897L27.974-40.897Q28.169-40.869 28.220-40.662L28.220-39.701Q28.169-39.483 27.974-39.463L24.591-39.463Q24.380-39.486 24.341-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M41.409-39.686L40.523-42.350L40.202-42.350Q40.003-42.373 39.952-42.592L39.952-42.678Q40.003-42.889 40.202-42.912L41.362-42.912Q41.558-42.893 41.608-42.678L41.608-42.592Q41.558-42.373 41.362-42.350L41.081-42.350L41.874-39.975L42.663-42.350L42.386-42.350Q42.187-42.373 42.136-42.592L42.136-42.678Q42.187-42.889 42.386-42.912L43.546-42.912Q43.741-42.889 43.792-42.678L43.792-42.592Q43.741-42.373 43.546-42.350L43.226-42.350L42.339-39.686Q42.296-39.572 42.194-39.498Q42.093-39.424 41.968-39.424L41.776-39.424Q41.659-39.424 41.556-39.496Q41.452-39.568 41.409-39.686M44.405-40.576Q44.405-41.022 44.819-41.279Q45.233-41.537 45.774-41.637Q46.316-41.736 46.823-41.744Q46.823-41.959 46.689-42.111Q46.554-42.264 46.347-42.340Q46.140-42.416 45.929-42.416Q45.585-42.416 45.425-42.393L45.425-42.334Q45.425-42.166 45.306-42.051Q45.187-41.936 45.023-41.936Q44.847-41.936 44.732-42.059Q44.616-42.182 44.616-42.350Q44.616-42.756 44.997-42.865Q45.378-42.975 45.937-42.975Q46.206-42.975 46.474-42.897Q46.741-42.818 46.966-42.668Q47.191-42.518 47.327-42.297Q47.464-42.076 47.464-41.799L47.464-40.080Q47.464-40.022 47.991-40.022Q48.187-40.002 48.237-39.791L48.237-39.701Q48.187-39.486 47.991-39.463L47.847-39.463Q47.503-39.463 47.274-39.510Q47.046-39.557 46.901-39.744Q46.441-39.424 45.733-39.424Q45.398-39.424 45.093-39.565Q44.788-39.705 44.597-39.967Q44.405-40.229 44.405-40.576M45.046-40.568Q45.046-40.295 45.288-40.139Q45.530-39.983 45.816-39.983Q46.034-39.983 46.267-40.041Q46.499-40.100 46.661-40.238Q46.823-40.377 46.823-40.600L46.823-41.190Q46.542-41.190 46.126-41.133Q45.710-41.076 45.378-40.938Q45.046-40.799 45.046-40.568M48.694-39.701L48.694-39.791Q48.745-39.998 48.941-40.022L50.046-40.022L50.046-43.791L48.941-43.791Q48.745-43.815 48.694-44.029L48.694-44.119Q48.745-44.326 48.941-44.350L50.437-44.350Q50.628-44.326 50.687-44.119L50.687-40.022L51.788-40.022Q51.987-39.998 52.038-39.791L52.038-39.701Q51.987-39.486 51.788-39.463L48.941-39.463Q48.745-39.486 48.694-39.701M52.659-39.701L52.659-39.791Q52.698-39.998 52.905-40.022L53.194-40.022L53.194-43.791L52.905-43.791Q52.698-43.815 52.659-44.029L52.659-44.119Q52.698-44.326 52.905-44.350L54.866-44.350Q55.136-44.350 55.376-44.254Q55.616-44.158 55.808-43.988Q55.999-43.818 56.108-43.590Q56.218-43.361 56.218-43.096Q56.218-42.729 55.978-42.440Q55.737-42.151 55.370-42.022Q55.651-41.959 55.884-41.785Q56.116-41.611 56.251-41.356Q56.386-41.100 56.386-40.815Q56.386-40.455 56.204-40.145Q56.023-39.834 55.708-39.649Q55.394-39.463 55.034-39.463L52.905-39.463Q52.698-39.486 52.659-39.701M53.835-41.729L53.835-40.022L54.866-40.022Q55.093-40.022 55.296-40.125Q55.499-40.229 55.624-40.408Q55.749-40.588 55.749-40.815Q55.749-41.045 55.648-41.254Q55.546-41.463 55.364-41.596Q55.183-41.729 54.956-41.729L53.835-41.729M53.835-43.791L53.835-42.287L54.698-42.287Q55.042-42.287 55.312-42.522Q55.581-42.756 55.581-43.096Q55.581-43.283 55.483-43.443Q55.386-43.604 55.220-43.697Q55.054-43.791 54.866-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M61.938-40.912L59.684-40.912L59.684-41.463L61.938-41.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 50.947)\">\u003Cpath d=\"M65.605-40.686Q65.605-41.182 65.931-41.547Q66.257-41.912 66.780-42.158L66.511-42.318Q66.214-42.502 66.030-42.797Q65.847-43.092 65.847-43.432Q65.847-43.826 66.066-44.137Q66.284-44.447 66.638-44.615Q66.991-44.783 67.374-44.783Q67.648-44.783 67.921-44.705Q68.194-44.627 68.411-44.479Q68.628-44.330 68.765-44.104Q68.901-43.877 68.901-43.584Q68.901-43.178 68.632-42.871Q68.362-42.565 67.941-42.350L68.390-42.080Q68.608-41.943 68.776-41.750Q68.944-41.557 69.042-41.318Q69.140-41.080 69.140-40.822Q69.140-40.483 68.989-40.195Q68.839-39.908 68.593-39.711Q68.347-39.514 68.023-39.404Q67.698-39.295 67.374-39.295Q66.944-39.295 66.538-39.457Q66.132-39.619 65.868-39.938Q65.605-40.256 65.605-40.686M66.093-40.686Q66.093-40.201 66.483-39.885Q66.874-39.568 67.374-39.568Q67.667-39.568 67.966-39.680Q68.265-39.791 68.458-40.010Q68.651-40.229 68.651-40.541Q68.651-40.772 68.511-40.983Q68.370-41.193 68.163-41.311L67.054-41.990Q66.636-41.787 66.364-41.451Q66.093-41.115 66.093-40.686M66.679-43.119L67.667-42.518Q68.015-42.701 68.241-42.971Q68.468-43.240 68.468-43.584Q68.468-43.803 68.376-43.979Q68.284-44.154 68.130-44.277Q67.976-44.401 67.774-44.471Q67.573-44.541 67.374-44.541Q66.968-44.541 66.622-44.330Q66.276-44.119 66.276-43.736Q66.276-43.553 66.388-43.391Q66.499-43.229 66.679-43.119\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 20.857h233.312\"\u002F>\u003Cg transform=\"translate(-37.856 74.266)\">\u003Cpath d=\"M13.576-39.463L11.839-39.463L11.839-39.743Q12.561-39.743 12.561-40.143L12.561-43.753Q12.561-43.964 11.839-43.964L11.839-44.245L13.196-44.245Q13.292-44.245 13.343-44.146L15.018-40.171L16.690-44.146Q16.737-44.245 16.836-44.245L18.187-44.245L18.187-43.964Q17.465-43.964 17.465-43.753L17.465-39.952Q17.465-39.743 18.187-39.743L18.187-39.463L16.129-39.463L16.129-39.743Q16.850-39.743 16.850-39.952L16.850-43.964L14.998-39.562Q14.950-39.463 14.840-39.463Q14.728-39.463 14.680-39.562L12.855-43.893L12.855-40.143Q12.855-39.743 13.576-39.743L13.576-39.463M18.880-40.998Q18.880-41.319 19.005-41.608Q19.130-41.897 19.356-42.120Q19.581-42.344 19.877-42.464Q20.172-42.584 20.490-42.584Q20.818-42.584 21.080-42.484Q21.341-42.385 21.517-42.203Q21.693-42.020 21.787-41.762Q21.881-41.504 21.881-41.172Q21.881-41.080 21.799-41.059L19.544-41.059L19.544-40.998Q19.544-40.410 19.827-40.027Q20.111-39.644 20.678-39.644Q21-39.644 21.268-39.837Q21.536-40.030 21.625-40.345Q21.632-40.386 21.707-40.400L21.799-40.400Q21.881-40.376 21.881-40.304Q21.881-40.297 21.875-40.270Q21.762-39.873 21.391-39.634Q21.020-39.395 20.596-39.395Q20.159-39.395 19.759-39.603Q19.359-39.812 19.120-40.179Q18.880-40.546 18.880-40.998M19.550-41.268L21.365-41.268Q21.365-41.545 21.268-41.797Q21.170-42.050 20.972-42.206Q20.774-42.361 20.490-42.361Q20.213-42.361 20-42.203Q19.786-42.044 19.668-41.789Q19.550-41.534 19.550-41.268M24.151-39.463L22.517-39.463L22.517-39.743Q22.746-39.743 22.895-39.777Q23.044-39.812 23.044-39.952L23.044-41.801Q23.044-42.071 22.936-42.132Q22.828-42.194 22.517-42.194L22.517-42.474L23.577-42.549L23.577-41.900Q23.748-42.208 24.052-42.379Q24.356-42.549 24.701-42.549Q25.101-42.549 25.378-42.409Q25.655-42.269 25.740-41.921Q25.908-42.214 26.207-42.382Q26.506-42.549 26.851-42.549Q27.357-42.549 27.641-42.326Q27.924-42.102 27.924-41.606L27.924-39.952Q27.924-39.815 28.073-39.779Q28.222-39.743 28.447-39.743L28.447-39.463L26.817-39.463L26.817-39.743Q27.043-39.743 27.193-39.779Q27.343-39.815 27.343-39.952L27.343-41.592Q27.343-41.927 27.224-42.127Q27.104-42.327 26.790-42.327Q26.520-42.327 26.285-42.191Q26.051-42.054 25.913-41.820Q25.774-41.586 25.774-41.312L25.774-39.952Q25.774-39.815 25.923-39.779Q26.072-39.743 26.297-39.743L26.297-39.463L24.667-39.463L24.667-39.743Q24.896-39.743 25.045-39.777Q25.193-39.812 25.193-39.952L25.193-41.592Q25.193-41.927 25.074-42.127Q24.954-42.327 24.640-42.327Q24.370-42.327 24.136-42.191Q23.901-42.054 23.763-41.820Q23.625-41.586 23.625-41.312L23.625-39.952Q23.625-39.815 23.775-39.779Q23.925-39.743 24.151-39.743L24.151-39.463M28.994-40.946Q28.994-41.288 29.129-41.587Q29.264-41.886 29.503-42.110Q29.743-42.334 30.061-42.459Q30.378-42.584 30.710-42.584Q31.154-42.584 31.554-42.368Q31.954-42.153 32.188-41.775Q32.422-41.398 32.422-40.946Q32.422-40.605 32.281-40.321Q32.139-40.037 31.894-39.830Q31.650-39.624 31.341-39.509Q31.031-39.395 30.710-39.395Q30.279-39.395 29.878-39.596Q29.476-39.798 29.235-40.150Q28.994-40.502 28.994-40.946M30.710-39.644Q31.312-39.644 31.535-40.022Q31.759-40.400 31.759-41.032Q31.759-41.644 31.525-42.003Q31.291-42.361 30.710-42.361Q29.657-42.361 29.657-41.032Q29.657-40.400 29.883-40.022Q30.108-39.644 30.710-39.644M34.767-39.463L33.031-39.463L33.031-39.743Q33.260-39.743 33.409-39.777Q33.557-39.812 33.557-39.952L33.557-41.801Q33.557-42.071 33.450-42.132Q33.342-42.194 33.031-42.194L33.031-42.474L34.060-42.549L34.060-41.842Q34.190-42.150 34.432-42.349Q34.675-42.549 34.993-42.549Q35.211-42.549 35.382-42.425Q35.553-42.300 35.553-42.088Q35.553-41.951 35.454-41.852Q35.355-41.753 35.222-41.753Q35.085-41.753 34.986-41.852Q34.887-41.951 34.887-42.088Q34.887-42.228 34.986-42.327Q34.695-42.327 34.495-42.131Q34.295-41.934 34.203-41.640Q34.111-41.346 34.111-41.066L34.111-39.952Q34.111-39.743 34.767-39.743L34.767-39.463M36.473-38.328Q36.603-38.260 36.739-38.260Q36.910-38.260 37.061-38.349Q37.211-38.438 37.322-38.583Q37.433-38.728 37.512-38.896L37.775-39.463L36.606-41.989Q36.531-42.136 36.401-42.168Q36.271-42.201 36.039-42.201L36.039-42.481L37.560-42.481L37.560-42.201Q37.211-42.201 37.211-42.054Q37.214-42.033 37.216-42.016Q37.218-41.999 37.218-41.989L38.076-40.130L38.848-41.801Q38.882-41.869 38.882-41.948Q38.882-42.061 38.799-42.131Q38.715-42.201 38.602-42.201L38.602-42.481L39.798-42.481L39.798-42.201Q39.580-42.201 39.407-42.097Q39.234-41.992 39.142-41.801L37.806-38.896Q37.635-38.526 37.365-38.280Q37.095-38.034 36.739-38.034Q36.469-38.034 36.251-38.200Q36.032-38.366 36.032-38.629Q36.032-38.766 36.124-38.855Q36.216-38.943 36.356-38.943Q36.493-38.943 36.582-38.855Q36.671-38.766 36.671-38.629Q36.671-38.526 36.618-38.448Q36.565-38.369 36.473-38.328\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M13.657-39.463L11.939-39.463Q11.899-39.463 11.872-39.504Q11.845-39.545 11.845-39.592L11.868-39.693Q11.876-39.744 11.962-39.760Q12.692-39.760 12.817-40.287L13.845-44.385Q13.868-44.455 13.868-44.518Q13.868-44.580 13.802-44.600Q13.657-44.631 13.235-44.631Q13.130-44.662 13.130-44.760L13.161-44.861Q13.173-44.908 13.251-44.928L14.649-44.928Q14.708-44.928 14.745-44.899Q14.782-44.869 14.786-44.815L15.497-40.240L18.497-44.815Q18.575-44.928 18.692-44.928L20.036-44.928Q20.083-44.916 20.110-44.885Q20.138-44.854 20.138-44.807L20.114-44.701Q20.095-44.647 20.021-44.631Q19.579-44.631 19.419-44.592Q19.271-44.557 19.212-44.326L18.130-40.006Q18.114-39.912 18.114-39.869Q18.114-39.811 18.181-39.791Q18.321-39.760 18.747-39.760Q18.845-39.733 18.845-39.639L18.817-39.533Q18.810-39.483 18.732-39.463L16.649-39.463Q16.610-39.463 16.583-39.504Q16.556-39.545 16.556-39.592L16.579-39.693Q16.587-39.744 16.677-39.760Q17.114-39.760 17.273-39.799Q17.431-39.838 17.474-40.065L18.610-44.608L15.314-39.576Q15.247-39.463 15.114-39.463Q14.982-39.463 14.970-39.576L14.196-44.541L13.114-40.233Q13.099-40.131 13.099-40.080Q13.099-39.881 13.263-39.820Q13.427-39.760 13.677-39.760Q13.771-39.733 13.771-39.639L13.747-39.533Q13.739-39.483 13.657-39.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M19.960-39.274Q19.960-39.661 20.221-39.932Q20.481-40.203 20.883-40.372L20.710-40.469Q20.461-40.616 20.307-40.834Q20.153-41.052 20.153-41.322Q20.153-41.632 20.339-41.865Q20.525-42.098 20.818-42.220Q21.111-42.341 21.413-42.341Q21.703-42.341 21.995-42.243Q22.286-42.145 22.479-41.940Q22.673-41.735 22.673-41.436Q22.673-41.117 22.463-40.897Q22.254-40.677 21.911-40.516L22.233-40.343Q22.515-40.179 22.689-39.933Q22.863-39.687 22.863-39.382Q22.863-39.019 22.648-38.757Q22.433-38.495 22.096-38.360Q21.759-38.225 21.413-38.225Q21.070-38.225 20.736-38.339Q20.402-38.454 20.181-38.689Q19.960-38.925 19.960-39.274M20.367-39.280Q20.367-38.905 20.697-38.685Q21.026-38.465 21.413-38.465Q21.647-38.465 21.888-38.540Q22.128-38.615 22.292-38.773Q22.456-38.931 22.456-39.174Q22.456-39.344 22.348-39.483Q22.239-39.622 22.078-39.713L21.141-40.229Q20.815-40.091 20.591-39.845Q20.367-39.599 20.367-39.280M20.789-41.134L21.665-40.654Q22.312-40.970 22.312-41.436Q22.312-41.650 22.176-41.807Q22.040-41.963 21.833-42.041Q21.627-42.119 21.413-42.119Q21.091-42.119 20.801-41.979Q20.511-41.840 20.511-41.550Q20.511-41.319 20.789-41.134\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M25.917-37.463L24.741-37.463L24.741-45.463L25.917-45.463L25.917-45.096L25.108-45.096L25.108-37.830L25.917-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M27.766-39.686L26.880-42.350L26.559-42.350Q26.360-42.373 26.309-42.592L26.309-42.678Q26.360-42.889 26.559-42.912L27.719-42.912Q27.915-42.893 27.965-42.678L27.965-42.592Q27.915-42.373 27.719-42.350L27.438-42.350L28.231-39.975L29.020-42.350L28.743-42.350Q28.544-42.373 28.493-42.592L28.493-42.678Q28.544-42.889 28.743-42.912L29.903-42.912Q30.098-42.889 30.149-42.678L30.149-42.592Q30.098-42.373 29.903-42.350L29.583-42.350L28.696-39.686Q28.653-39.572 28.551-39.498Q28.450-39.424 28.325-39.424L28.133-39.424Q28.016-39.424 27.913-39.496Q27.809-39.568 27.766-39.686M30.762-40.576Q30.762-41.022 31.176-41.279Q31.590-41.537 32.131-41.637Q32.672-41.736 33.180-41.744Q33.180-41.959 33.046-42.111Q32.911-42.264 32.704-42.340Q32.497-42.416 32.286-42.416Q31.942-42.416 31.782-42.393L31.782-42.334Q31.782-42.166 31.663-42.051Q31.544-41.936 31.380-41.936Q31.204-41.936 31.089-42.059Q30.973-42.182 30.973-42.350Q30.973-42.756 31.354-42.865Q31.735-42.975 32.294-42.975Q32.563-42.975 32.831-42.897Q33.098-42.818 33.323-42.668Q33.547-42.518 33.684-42.297Q33.821-42.076 33.821-41.799L33.821-40.080Q33.821-40.022 34.348-40.022Q34.544-40.002 34.594-39.791L34.594-39.701Q34.544-39.486 34.348-39.463L34.204-39.463Q33.860-39.463 33.631-39.510Q33.403-39.557 33.258-39.744Q32.797-39.424 32.090-39.424Q31.755-39.424 31.450-39.565Q31.145-39.705 30.954-39.967Q30.762-40.229 30.762-40.576M31.403-40.568Q31.403-40.295 31.645-40.139Q31.887-39.983 32.172-39.983Q32.391-39.983 32.624-40.041Q32.856-40.100 33.018-40.238Q33.180-40.377 33.180-40.600L33.180-41.190Q32.899-41.190 32.483-41.133Q32.067-41.076 31.735-40.938Q31.403-40.799 31.403-40.568M35.051-39.701L35.051-39.791Q35.102-39.998 35.297-40.022L36.403-40.022L36.403-43.791L35.297-43.791Q35.102-43.815 35.051-44.029L35.051-44.119Q35.102-44.326 35.297-44.350L36.794-44.350Q36.985-44.326 37.044-44.119L37.044-40.022L38.145-40.022Q38.344-39.998 38.395-39.791L38.395-39.701Q38.344-39.486 38.145-39.463L35.297-39.463Q35.102-39.486 35.051-39.701M39.032-39.701L39.032-39.791Q39.071-39.998 39.282-40.022L39.590-40.022L39.590-43.791L39.282-43.791Q39.071-43.815 39.032-44.029L39.032-44.119Q39.071-44.326 39.282-44.350L42.489-44.350Q42.684-44.326 42.735-44.119L42.735-43.279Q42.684-43.065 42.489-43.037L42.344-43.037Q42.149-43.065 42.094-43.279L42.094-43.791L40.231-43.791L40.231-42.272L41.208-42.272L41.208-42.486Q41.258-42.693 41.458-42.721L41.602-42.721Q41.797-42.693 41.848-42.486L41.848-41.502Q41.797-41.287 41.602-41.264L41.458-41.264Q41.258-41.287 41.208-41.502L41.208-41.709L40.231-41.709L40.231-40.022L42.274-40.022L42.274-40.662Q42.325-40.869 42.520-40.897L42.665-40.897Q42.860-40.869 42.911-40.662L42.911-39.701Q42.860-39.483 42.665-39.463L39.282-39.463Q39.071-39.486 39.032-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M44.469-37.463L43.294-37.463L43.294-37.830L44.102-37.830L44.102-45.096L43.294-45.096L43.294-45.463L44.469-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M53.794-40.440L48.481-40.440Q48.403-40.447 48.354-40.496Q48.306-40.545 48.306-40.623Q48.306-40.693 48.353-40.744Q48.399-40.795 48.481-40.807L53.794-40.807Q53.868-40.795 53.915-40.744Q53.962-40.693 53.962-40.623Q53.962-40.545 53.913-40.496Q53.864-40.447 53.794-40.440M53.794-42.127L48.481-42.127Q48.403-42.135 48.354-42.184Q48.306-42.233 48.306-42.311Q48.306-42.381 48.353-42.432Q48.399-42.483 48.481-42.494L53.794-42.494Q53.868-42.483 53.915-42.432Q53.962-42.381 53.962-42.311Q53.962-42.233 53.913-42.184Q53.864-42.135 53.794-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 74.555)\">\u003Cpath d=\"M58.461-39.686L57.575-42.350L57.254-42.350Q57.055-42.373 57.004-42.592L57.004-42.678Q57.055-42.889 57.254-42.912L58.414-42.912Q58.610-42.893 58.660-42.678L58.660-42.592Q58.610-42.373 58.414-42.350L58.133-42.350L58.926-39.975L59.715-42.350L59.438-42.350Q59.239-42.373 59.188-42.592L59.188-42.678Q59.239-42.889 59.438-42.912L60.598-42.912Q60.793-42.889 60.844-42.678L60.844-42.592Q60.793-42.373 60.598-42.350L60.278-42.350L59.391-39.686Q59.348-39.572 59.246-39.498Q59.145-39.424 59.020-39.424L58.828-39.424Q58.711-39.424 58.608-39.496Q58.504-39.568 58.461-39.686M61.457-40.576Q61.457-41.022 61.871-41.279Q62.285-41.537 62.826-41.637Q63.367-41.736 63.875-41.744Q63.875-41.959 63.741-42.111Q63.606-42.264 63.399-42.340Q63.192-42.416 62.981-42.416Q62.637-42.416 62.477-42.393L62.477-42.334Q62.477-42.166 62.358-42.051Q62.239-41.936 62.075-41.936Q61.899-41.936 61.784-42.059Q61.668-42.182 61.668-42.350Q61.668-42.756 62.049-42.865Q62.430-42.975 62.989-42.975Q63.258-42.975 63.526-42.897Q63.793-42.818 64.018-42.668Q64.243-42.518 64.379-42.297Q64.516-42.076 64.516-41.799L64.516-40.080Q64.516-40.022 65.043-40.022Q65.239-40.002 65.289-39.791L65.289-39.701Q65.239-39.486 65.043-39.463L64.899-39.463Q64.555-39.463 64.326-39.510Q64.098-39.557 63.953-39.744Q63.492-39.424 62.785-39.424Q62.450-39.424 62.145-39.565Q61.840-39.705 61.649-39.967Q61.457-40.229 61.457-40.576M62.098-40.568Q62.098-40.295 62.340-40.139Q62.582-39.983 62.867-39.983Q63.086-39.983 63.319-40.041Q63.551-40.100 63.713-40.238Q63.875-40.377 63.875-40.600L63.875-41.190Q63.594-41.190 63.178-41.133Q62.762-41.076 62.430-40.938Q62.098-40.799 62.098-40.568M65.746-39.701L65.746-39.791Q65.797-39.998 65.993-40.022L67.098-40.022L67.098-43.791L65.993-43.791Q65.797-43.815 65.746-44.029L65.746-44.119Q65.797-44.326 65.993-44.350L67.489-44.350Q67.680-44.326 67.739-44.119L67.739-40.022L68.840-40.022Q69.039-39.998 69.090-39.791L69.090-39.701Q69.039-39.486 68.840-39.463L65.993-39.463Q65.797-39.486 65.746-39.701M69.727-39.701L69.727-39.791Q69.766-39.998 69.977-40.022L70.285-40.022L70.285-43.791L69.977-43.791Q69.766-43.815 69.727-44.029L69.727-44.119Q69.766-44.326 69.977-44.350L71.926-44.350Q72.325-44.350 72.670-44.149Q73.016-43.947 73.223-43.602Q73.430-43.256 73.430-42.854Q73.430-42.447 73.225-42.104Q73.020-41.760 72.674-41.555Q72.328-41.350 71.926-41.350L70.926-41.350L70.926-40.022L71.239-40.022Q71.450-39.998 71.489-39.791L71.489-39.701Q71.450-39.486 71.239-39.463L69.977-39.463Q69.766-39.486 69.727-39.701M70.926-43.791L70.926-41.912L71.766-41.912Q72.028-41.912 72.264-42.035Q72.500-42.158 72.645-42.373Q72.789-42.588 72.789-42.854Q72.789-43.123 72.645-43.334Q72.500-43.545 72.264-43.668Q72.028-43.791 71.766-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 45.042h233.312\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M13.812-39.422L12.260-43.753Q12.198-43.896 12.036-43.930Q11.874-43.964 11.621-43.964L11.621-44.245L13.548-44.245L13.548-43.964Q12.967-43.964 12.967-43.790Q12.967-43.770 12.974-43.753L14.198-40.317L15.305-43.404L15.179-43.753Q15.121-43.896 14.955-43.930Q14.789-43.964 14.540-43.964L14.540-44.245L16.467-44.245L16.467-43.964Q15.886-43.964 15.886-43.790L15.886-43.753L17.117-40.317L18.272-43.565Q18.286-43.606 18.286-43.630Q18.286-43.804 18.093-43.884Q17.899-43.964 17.691-43.964L17.691-44.245L19.267-44.245L19.267-43.964Q19.017-43.964 18.826-43.870Q18.634-43.776 18.559-43.565L17.076-39.422Q17.042-39.323 16.942-39.323L16.864-39.323Q16.765-39.323 16.724-39.422L15.445-43.011L14.164-39.422Q14.147-39.378 14.109-39.350Q14.071-39.323 14.023-39.323L13.945-39.323Q13.853-39.323 13.812-39.422\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M20.893-39.463L19.157-39.463L19.157-39.743Q19.386-39.743 19.535-39.777Q19.683-39.812 19.683-39.952L19.683-41.801Q19.683-42.071 19.576-42.132Q19.468-42.194 19.157-42.194L19.157-42.474L20.186-42.549L20.186-41.842Q20.316-42.150 20.558-42.349Q20.801-42.549 21.119-42.549Q21.338-42.549 21.509-42.425Q21.680-42.300 21.680-42.088Q21.680-41.951 21.580-41.852Q21.481-41.753 21.348-41.753Q21.211-41.753 21.112-41.852Q21.013-41.951 21.013-42.088Q21.013-42.228 21.112-42.327Q20.822-42.327 20.622-42.131Q20.422-41.934 20.329-41.640Q20.237-41.346 20.237-41.066L20.237-39.952Q20.237-39.743 20.893-39.743L20.893-39.463M23.881-39.463L22.329-39.463L22.329-39.743Q22.555-39.743 22.703-39.777Q22.852-39.812 22.852-39.952L22.852-41.801Q22.852-41.989 22.804-42.073Q22.756-42.156 22.659-42.175Q22.561-42.194 22.350-42.194L22.350-42.474L23.406-42.549L23.406-39.952Q23.406-39.812 23.537-39.777Q23.669-39.743 23.881-39.743L23.881-39.463M22.609-43.770Q22.609-43.941 22.732-44.060Q22.855-44.180 23.026-44.180Q23.194-44.180 23.317-44.060Q23.440-43.941 23.440-43.770Q23.440-43.595 23.317-43.472Q23.194-43.349 23.026-43.349Q22.855-43.349 22.732-43.472Q22.609-43.595 22.609-43.770M25.053-40.304L25.053-42.201L24.414-42.201L24.414-42.423Q24.732-42.423 24.949-42.633Q25.166-42.843 25.267-43.153Q25.368-43.462 25.368-43.770L25.634-43.770L25.634-42.481L26.711-42.481L26.711-42.201L25.634-42.201L25.634-40.317Q25.634-40.041 25.738-39.842Q25.843-39.644 26.102-39.644Q26.260-39.644 26.366-39.748Q26.472-39.853 26.521-40.006Q26.571-40.160 26.571-40.317L26.571-40.731L26.837-40.731L26.837-40.304Q26.837-40.078 26.738-39.868Q26.639-39.658 26.454-39.526Q26.270-39.395 26.041-39.395Q25.603-39.395 25.328-39.632Q25.053-39.870 25.053-40.304M27.606-40.998Q27.606-41.319 27.731-41.608Q27.856-41.897 28.081-42.120Q28.307-42.344 28.603-42.464Q28.898-42.584 29.216-42.584Q29.544-42.584 29.806-42.484Q30.067-42.385 30.243-42.203Q30.419-42.020 30.513-41.762Q30.607-41.504 30.607-41.172Q30.607-41.080 30.525-41.059L28.269-41.059L28.269-40.998Q28.269-40.410 28.553-40.027Q28.837-39.644 29.404-39.644Q29.725-39.644 29.994-39.837Q30.262-40.030 30.351-40.345Q30.358-40.386 30.433-40.400L30.525-40.400Q30.607-40.376 30.607-40.304Q30.607-40.297 30.600-40.270Q30.488-39.873 30.117-39.634Q29.746-39.395 29.322-39.395Q28.885-39.395 28.485-39.603Q28.085-39.812 27.846-40.179Q27.606-40.546 27.606-40.998M28.276-41.268L30.091-41.268Q30.091-41.545 29.994-41.797Q29.896-42.050 29.698-42.206Q29.500-42.361 29.216-42.361Q28.939-42.361 28.726-42.203Q28.512-42.044 28.394-41.789Q28.276-41.534 28.276-41.268M33.079-40.717L31.021-40.717L31.021-41.220L33.079-41.220L33.079-40.717M34.688-39.463L34.422-39.463L34.422-43.571Q34.422-43.841 34.314-43.903Q34.206-43.964 33.895-43.964L33.895-44.245L34.975-44.320L34.975-42.150Q35.184-42.341 35.469-42.445Q35.755-42.549 36.052-42.549Q36.370-42.549 36.667-42.428Q36.965-42.307 37.187-42.091Q37.409-41.876 37.536-41.591Q37.662-41.305 37.662-40.974Q37.662-40.529 37.423-40.165Q37.183-39.801 36.790-39.598Q36.397-39.395 35.953-39.395Q35.758-39.395 35.569-39.451Q35.379-39.507 35.218-39.612Q35.058-39.716 34.917-39.877L34.688-39.463M35.003-41.808L35.003-40.191Q35.140-39.931 35.381-39.774Q35.621-39.617 35.898-39.617Q36.192-39.617 36.404-39.724Q36.616-39.832 36.749-40.024Q36.883-40.215 36.941-40.454Q36.999-40.693 36.999-40.974Q36.999-41.333 36.905-41.637Q36.811-41.941 36.584-42.134Q36.356-42.327 35.991-42.327Q35.690-42.327 35.423-42.191Q35.157-42.054 35.003-41.808M38.356-40.191Q38.356-40.523 38.580-40.750Q38.804-40.977 39.147-41.105Q39.491-41.234 39.863-41.286Q40.236-41.339 40.540-41.339L40.540-41.592Q40.540-41.797 40.432-41.977Q40.325-42.156 40.143-42.259Q39.962-42.361 39.754-42.361Q39.347-42.361 39.111-42.269Q39.200-42.232 39.246-42.148Q39.292-42.064 39.292-41.962Q39.292-41.866 39.246-41.787Q39.200-41.709 39.120-41.664Q39.039-41.620 38.951-41.620Q38.800-41.620 38.699-41.717Q38.599-41.815 38.599-41.962Q38.599-42.584 39.754-42.584Q39.966-42.584 40.215-42.520Q40.465-42.457 40.666-42.338Q40.868-42.218 40.995-42.033Q41.121-41.849 41.121-41.606L41.121-40.030Q41.121-39.914 41.183-39.818Q41.244-39.723 41.357-39.723Q41.466-39.723 41.531-39.817Q41.596-39.911 41.596-40.030L41.596-40.478L41.863-40.478L41.863-40.030Q41.863-39.760 41.635-39.595Q41.408-39.429 41.128-39.429Q40.919-39.429 40.783-39.583Q40.646-39.736 40.622-39.952Q40.475-39.685 40.193-39.540Q39.911-39.395 39.586-39.395Q39.309-39.395 39.026-39.470Q38.742-39.545 38.549-39.724Q38.356-39.904 38.356-40.191M38.971-40.191Q38.971-40.017 39.072-39.887Q39.173-39.757 39.328-39.687Q39.484-39.617 39.648-39.617Q39.867-39.617 40.075-39.714Q40.284-39.812 40.412-39.993Q40.540-40.174 40.540-40.400L40.540-41.128Q40.215-41.128 39.850-41.037Q39.484-40.946 39.227-40.734Q38.971-40.523 38.971-40.191M42.280-40.974Q42.280-41.302 42.415-41.603Q42.550-41.903 42.786-42.124Q43.021-42.344 43.326-42.464Q43.630-42.584 43.954-42.584Q44.460-42.584 44.809-42.481Q45.158-42.379 45.158-42.003Q45.158-41.856 45.060-41.755Q44.963-41.654 44.816-41.654Q44.662-41.654 44.563-41.753Q44.464-41.852 44.464-42.003Q44.464-42.191 44.604-42.283Q44.402-42.334 43.961-42.334Q43.606-42.334 43.377-42.138Q43.148-41.941 43.047-41.632Q42.946-41.322 42.946-40.974Q42.946-40.625 43.073-40.319Q43.199-40.013 43.454-39.829Q43.708-39.644 44.064-39.644Q44.286-39.644 44.471-39.728Q44.655-39.812 44.790-39.967Q44.925-40.123 44.983-40.331Q44.997-40.386 45.052-40.386L45.164-40.386Q45.195-40.386 45.217-40.362Q45.240-40.338 45.240-40.304L45.240-40.283Q45.154-39.996 44.966-39.798Q44.778-39.600 44.513-39.497Q44.248-39.395 43.954-39.395Q43.524-39.395 43.136-39.601Q42.748-39.808 42.514-40.171Q42.280-40.533 42.280-40.974\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.342 99.17)\">\u003Cpath d=\"M47.247-39.463L45.664-39.463L45.664-39.743Q45.893-39.743 46.042-39.777Q46.190-39.812 46.190-39.952L46.190-43.571Q46.190-43.841 46.083-43.903Q45.975-43.964 45.664-43.964L45.664-44.245L46.744-44.320L46.744-41.032L47.729-41.801Q47.934-41.938 47.934-42.088Q47.934-42.132 47.893-42.167Q47.852-42.201 47.807-42.201L47.807-42.481L49.171-42.481L49.171-42.201Q48.682-42.201 48.163-41.801L47.606-41.367L48.583-40.143Q48.785-39.897 48.918-39.820Q49.051-39.743 49.338-39.743L49.338-39.463L47.906-39.463L47.906-39.743Q48.094-39.743 48.094-39.856Q48.094-39.952 47.940-40.143L47.206-41.052L46.724-40.673L46.724-39.952Q46.724-39.815 46.872-39.779Q47.021-39.743 47.247-39.743\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M14.044-39.463L11.907-39.463Q11.872-39.463 11.841-39.504Q11.810-39.545 11.810-39.592L11.833-39.693Q11.845-39.744 11.931-39.760Q12.372-39.760 12.530-39.799Q12.689-39.838 12.732-40.065L13.810-44.385Q13.833-44.455 13.833-44.518Q13.833-44.580 13.771-44.600Q13.626-44.631 13.204-44.631Q13.099-44.658 13.099-44.760L13.130-44.861Q13.138-44.908 13.220-44.928L15.732-44.928Q16.138-44.928 16.581-44.805Q17.024-44.682 17.329-44.406Q17.634-44.131 17.634-43.709Q17.634-43.322 17.364-43.006Q17.095-42.690 16.696-42.481Q16.298-42.272 15.923-42.182Q16.232-42.057 16.429-41.818Q16.626-41.580 16.626-41.264Q16.626-41.221 16.624-41.193Q16.622-41.166 16.618-41.135L16.540-40.440Q16.509-40.151 16.509-40.029Q16.509-39.815 16.577-39.684Q16.646-39.553 16.853-39.553Q17.107-39.553 17.302-39.777Q17.497-40.002 17.564-40.279Q17.571-40.326 17.657-40.342L17.739-40.342Q17.833-40.315 17.833-40.233Q17.833-40.225 17.825-40.190Q17.774-39.975 17.630-39.764Q17.485-39.553 17.278-39.424Q17.071-39.295 16.845-39.295Q16.540-39.295 16.271-39.381Q16.001-39.467 15.829-39.666Q15.657-39.865 15.657-40.174Q15.657-40.283 15.700-40.463L15.876-41.158Q15.899-41.279 15.899-41.373Q15.899-41.709 15.638-41.891Q15.376-42.072 15.013-42.072L13.962-42.072L13.442-40.006Q13.427-39.912 13.427-39.869Q13.427-39.830 13.440-39.817Q13.454-39.803 13.489-39.791Q13.634-39.760 14.060-39.760Q14.153-39.733 14.153-39.639L14.130-39.533Q14.122-39.483 14.044-39.463M14.524-44.326L14.028-42.326L14.970-42.326Q15.314-42.326 15.630-42.395Q15.946-42.463 16.220-42.631Q16.407-42.756 16.544-42.957Q16.681-43.158 16.749-43.391Q16.817-43.623 16.817-43.846Q16.817-44.303 16.450-44.467Q16.083-44.631 15.548-44.631L14.931-44.631Q14.759-44.631 14.696-44.617Q14.634-44.604 14.601-44.545Q14.567-44.486 14.524-44.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M20.038-37.463L18.862-37.463L18.862-45.463L20.038-45.463L20.038-45.096L19.229-45.096L19.229-37.830L20.038-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M21.416-39.197Q21.416-39.260 21.447-39.303L25.193-44.561Q24.736-44.326 24.169-44.326Q23.517-44.326 22.912-44.647Q23.056-44.299 23.056-43.854Q23.056-43.494 22.935-43.123Q22.814-42.752 22.564-42.496Q22.314-42.240 21.951-42.240Q21.564-42.240 21.281-42.484Q20.998-42.729 20.851-43.102Q20.705-43.475 20.705-43.854Q20.705-44.233 20.851-44.604Q20.998-44.975 21.281-45.219Q21.564-45.463 21.951-45.463Q22.267-45.463 22.537-45.225Q22.873-44.920 23.302-44.748Q23.732-44.576 24.169-44.576Q24.662-44.576 25.080-44.789Q25.498-45.002 25.798-45.401Q25.841-45.463 25.935-45.463Q26.009-45.463 26.064-45.408Q26.119-45.354 26.119-45.279Q26.119-45.217 26.087-45.174L21.744-39.080Q21.697-39.014 21.599-39.014Q21.517-39.014 21.466-39.065Q21.416-39.115 21.416-39.197M21.951-42.494Q22.224-42.494 22.412-42.719Q22.599-42.943 22.687-43.266Q22.775-43.588 22.775-43.854Q22.775-44.111 22.687-44.434Q22.599-44.756 22.412-44.981Q22.224-45.205 21.951-45.205Q21.564-45.205 21.421-44.777Q21.279-44.350 21.279-43.854Q21.279-43.346 21.419-42.920Q21.560-42.494 21.951-42.494M25.728-39.014Q25.341-39.014 25.058-39.260Q24.775-39.506 24.627-39.879Q24.478-40.252 24.478-40.631Q24.478-40.904 24.564-41.192Q24.650-41.479 24.804-41.713Q24.959-41.947 25.195-42.094Q25.431-42.240 25.728-42.240Q26.009-42.240 26.216-42.088Q26.423-41.936 26.562-41.693Q26.701-41.451 26.767-41.170Q26.834-40.889 26.834-40.631Q26.834-40.272 26.712-39.899Q26.591-39.526 26.341-39.270Q26.091-39.014 25.728-39.014M25.728-39.272Q26.002-39.272 26.189-39.496Q26.377-39.721 26.464-40.043Q26.552-40.365 26.552-40.631Q26.552-40.889 26.464-41.211Q26.377-41.533 26.189-41.758Q26.002-41.983 25.728-41.983Q25.337-41.983 25.197-41.553Q25.056-41.123 25.056-40.631Q25.056-40.123 25.193-39.697Q25.330-39.272 25.728-39.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M27.538-39.701L27.538-39.791Q27.596-39.998 27.788-40.022L28.499-40.022L28.499-42.350L27.788-42.350Q27.592-42.373 27.538-42.592L27.538-42.678Q27.596-42.889 27.788-42.912L28.889-42.912Q29.088-42.893 29.139-42.678L29.139-42.350Q29.401-42.635 29.756-42.793Q30.112-42.951 30.499-42.951Q30.792-42.951 31.026-42.817Q31.260-42.682 31.260-42.416Q31.260-42.248 31.151-42.131Q31.042-42.014 30.874-42.014Q30.721-42.014 30.606-42.125Q30.491-42.236 30.491-42.393Q30.116-42.393 29.801-42.192Q29.487-41.990 29.313-41.656Q29.139-41.322 29.139-40.943L29.139-40.022L30.085-40.022Q30.292-39.998 30.331-39.791L30.331-39.701Q30.292-39.486 30.085-39.463L27.788-39.463Q27.596-39.486 27.538-39.701M32.147-39.662L32.147-40.576Q32.174-40.783 32.385-40.807L32.553-40.807Q32.717-40.783 32.776-40.623Q32.979-39.983 33.706-39.983Q33.913-39.983 34.141-40.018Q34.370-40.053 34.538-40.168Q34.706-40.283 34.706-40.486Q34.706-40.697 34.483-40.811Q34.260-40.924 33.987-40.967L33.288-41.080Q32.147-41.291 32.147-42.014Q32.147-42.303 32.292-42.492Q32.436-42.682 32.676-42.789Q32.917-42.897 33.172-42.936Q33.428-42.975 33.706-42.975Q33.956-42.975 34.149-42.945Q34.342-42.916 34.506-42.838Q34.585-42.955 34.713-42.975L34.792-42.975Q34.889-42.963 34.952-42.901Q35.014-42.838 35.026-42.744L35.026-42.037Q35.014-41.943 34.952-41.877Q34.889-41.811 34.792-41.799L34.624-41.799Q34.530-41.811 34.463-41.877Q34.397-41.943 34.385-42.037Q34.385-42.416 33.690-42.416Q33.342-42.416 33.024-42.334Q32.706-42.252 32.706-42.006Q32.706-41.740 33.377-41.631L34.081-41.510Q34.565-41.428 34.915-41.180Q35.264-40.932 35.264-40.486Q35.264-40.096 35.028-39.854Q34.792-39.611 34.442-39.518Q34.092-39.424 33.706-39.424Q33.127-39.424 32.729-39.678Q32.659-39.553 32.610-39.496Q32.561-39.440 32.456-39.424L32.385-39.424Q32.170-39.447 32.147-39.662M35.877-37.920L35.877-38.006Q35.920-38.225 36.127-38.248L36.549-38.248L36.549-42.350L36.127-42.350Q35.920-42.373 35.877-42.592L35.877-42.678Q35.924-42.889 36.127-42.912L36.944-42.912Q37.139-42.893 37.190-42.678L37.190-42.608Q37.401-42.776 37.665-42.863Q37.928-42.951 38.198-42.951Q38.538-42.951 38.835-42.807Q39.131-42.662 39.346-42.410Q39.561-42.158 39.676-41.846Q39.792-41.533 39.792-41.190Q39.792-40.725 39.565-40.315Q39.338-39.904 38.952-39.664Q38.565-39.424 38.096-39.424Q37.577-39.424 37.190-39.791L37.190-38.248L37.616-38.248Q37.823-38.225 37.862-38.006L37.862-37.920Q37.823-37.709 37.616-37.686L36.127-37.686Q35.924-37.709 35.877-37.920M38.053-39.983Q38.362-39.983 38.612-40.152Q38.862-40.322 39.006-40.604Q39.151-40.885 39.151-41.190Q39.151-41.479 39.026-41.758Q38.901-42.037 38.669-42.215Q38.436-42.393 38.135-42.393Q37.815-42.393 37.553-42.207Q37.292-42.022 37.190-41.721L37.190-40.869Q37.280-40.502 37.501-40.242Q37.721-39.983 38.053-39.983\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M41.424-37.463L40.249-37.463L40.249-37.830L41.057-37.830L41.057-45.096L40.249-45.096L40.249-45.463L41.424-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M50.748-40.440L45.435-40.440Q45.357-40.447 45.308-40.496Q45.260-40.545 45.260-40.623Q45.260-40.693 45.307-40.744Q45.353-40.795 45.435-40.807L50.748-40.807Q50.822-40.795 50.869-40.744Q50.916-40.693 50.916-40.623Q50.916-40.545 50.867-40.496Q50.818-40.447 50.748-40.440M50.748-42.127L45.435-42.127Q45.357-42.135 45.308-42.184Q45.260-42.233 45.260-42.311Q45.260-42.381 45.307-42.432Q45.353-42.483 45.435-42.494L50.748-42.494Q50.822-42.483 50.869-42.432Q50.916-42.381 50.916-42.311Q50.916-42.233 50.867-42.184Q50.818-42.135 50.748-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 98.74)\">\u003Cpath d=\"M55.416-39.686L54.530-42.350L54.209-42.350Q54.010-42.373 53.959-42.592L53.959-42.678Q54.010-42.889 54.209-42.912L55.369-42.912Q55.565-42.893 55.615-42.678L55.615-42.592Q55.565-42.373 55.369-42.350L55.088-42.350L55.881-39.975L56.670-42.350L56.393-42.350Q56.194-42.373 56.143-42.592L56.143-42.678Q56.194-42.889 56.393-42.912L57.553-42.912Q57.748-42.889 57.799-42.678L57.799-42.592Q57.748-42.373 57.553-42.350L57.233-42.350L56.346-39.686Q56.303-39.572 56.201-39.498Q56.100-39.424 55.975-39.424L55.783-39.424Q55.666-39.424 55.563-39.496Q55.459-39.568 55.416-39.686M58.412-40.576Q58.412-41.022 58.826-41.279Q59.240-41.537 59.781-41.637Q60.322-41.736 60.830-41.744Q60.830-41.959 60.696-42.111Q60.561-42.264 60.354-42.340Q60.147-42.416 59.936-42.416Q59.592-42.416 59.432-42.393L59.432-42.334Q59.432-42.166 59.313-42.051Q59.194-41.936 59.030-41.936Q58.854-41.936 58.739-42.059Q58.623-42.182 58.623-42.350Q58.623-42.756 59.004-42.865Q59.385-42.975 59.944-42.975Q60.213-42.975 60.481-42.897Q60.748-42.818 60.973-42.668Q61.197-42.518 61.334-42.297Q61.471-42.076 61.471-41.799L61.471-40.080Q61.471-40.022 61.998-40.022Q62.194-40.002 62.244-39.791L62.244-39.701Q62.194-39.486 61.998-39.463L61.854-39.463Q61.510-39.463 61.281-39.510Q61.053-39.557 60.908-39.744Q60.447-39.424 59.740-39.424Q59.405-39.424 59.100-39.565Q58.795-39.705 58.604-39.967Q58.412-40.229 58.412-40.576M59.053-40.568Q59.053-40.295 59.295-40.139Q59.537-39.983 59.822-39.983Q60.041-39.983 60.274-40.041Q60.506-40.100 60.668-40.238Q60.830-40.377 60.830-40.600L60.830-41.190Q60.549-41.190 60.133-41.133Q59.717-41.076 59.385-40.938Q59.053-40.799 59.053-40.568M62.701-39.701L62.701-39.791Q62.752-39.998 62.947-40.022L64.053-40.022L64.053-43.791L62.947-43.791Q62.752-43.815 62.701-44.029L62.701-44.119Q62.752-44.326 62.947-44.350L64.444-44.350Q64.635-44.326 64.694-44.119L64.694-40.022L65.795-40.022Q65.994-39.998 66.045-39.791L66.045-39.701Q65.994-39.486 65.795-39.463L62.947-39.463Q62.752-39.486 62.701-39.701M66.682-39.701L66.682-39.791Q66.721-39.998 66.932-40.022L67.240-40.022L67.240-43.791L66.932-43.791Q66.721-43.815 66.682-44.029L66.682-44.119Q66.721-44.326 66.932-44.350L70.139-44.350Q70.334-44.326 70.385-44.119L70.385-43.279Q70.334-43.065 70.139-43.037L69.994-43.037Q69.799-43.065 69.744-43.279L69.744-43.791L67.881-43.791L67.881-42.272L68.858-42.272L68.858-42.486Q68.908-42.693 69.108-42.721L69.252-42.721Q69.447-42.693 69.498-42.486L69.498-41.502Q69.447-41.287 69.252-41.264L69.108-41.264Q68.908-41.287 68.858-41.502L68.858-41.709L67.881-41.709L67.881-40.022L69.924-40.022L69.924-40.662Q69.975-40.869 70.170-40.897L70.315-40.897Q70.510-40.869 70.561-40.662L70.561-39.701Q70.510-39.483 70.315-39.463L66.932-39.463Q66.721-39.486 66.682-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 69.227h233.312\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M13.945-39.463L11.812-39.463L11.812-39.743Q12.533-39.743 12.533-39.952L12.533-43.753Q12.533-43.964 11.812-43.964L11.812-44.245L14.478-44.245Q14.888-44.245 15.309-44.091Q15.729-43.937 16.013-43.633Q16.296-43.329 16.296-42.915Q16.296-42.597 16.129-42.351Q15.961-42.105 15.685-41.939Q15.408-41.774 15.086-41.690Q14.765-41.606 14.478-41.606L13.224-41.606L13.224-39.952Q13.224-39.743 13.945-39.743L13.945-39.463M13.196-43.753L13.196-41.856L14.283-41.856Q14.892-41.856 15.206-42.093Q15.521-42.331 15.521-42.915Q15.521-43.308 15.375-43.542Q15.230-43.776 14.958-43.870Q14.687-43.964 14.283-43.964L13.562-43.964Q13.374-43.964 13.285-43.930Q13.196-43.896 13.196-43.753M17.277-41.856Q17.277-42.382 17.494-42.850Q17.711-43.318 18.094-43.664Q18.477-44.009 18.961-44.197Q19.444-44.385 19.974-44.385Q20.377-44.385 20.742-44.228Q21.106-44.070 21.389-43.776L21.813-44.358Q21.847-44.385 21.871-44.385L21.919-44.385Q21.950-44.385 21.974-44.361Q21.998-44.337 21.998-44.306L21.998-42.443Q21.998-42.420 21.972-42.394Q21.946-42.368 21.919-42.368L21.793-42.368Q21.731-42.368 21.717-42.443Q21.687-42.758 21.552-43.062Q21.417-43.366 21.201-43.600Q20.986-43.835 20.697-43.970Q20.408-44.105 20.080-44.105Q19.438-44.105 18.980-43.811Q18.522-43.517 18.289-43.004Q18.057-42.491 18.057-41.856Q18.057-41.384 18.187-40.975Q18.316-40.567 18.576-40.254Q18.836-39.942 19.215-39.772Q19.595-39.603 20.087-39.603Q20.415-39.603 20.709-39.719Q21.003-39.836 21.237-40.051Q21.471-40.266 21.601-40.555Q21.731-40.844 21.731-41.172Q21.731-41.199 21.758-41.223Q21.786-41.247 21.806-41.247L21.919-41.247Q21.957-41.247 21.977-41.222Q21.998-41.196 21.998-41.158Q21.998-40.762 21.832-40.425Q21.666-40.088 21.379-39.841Q21.092-39.593 20.723-39.458Q20.354-39.323 19.974-39.323Q19.455-39.323 18.962-39.513Q18.470-39.702 18.091-40.046Q17.711-40.389 17.494-40.858Q17.277-41.326 17.277-41.856\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M26.086-40.297L26.086-41.801Q26.086-42.071 25.978-42.132Q25.870-42.194 25.559-42.194L25.559-42.474L26.667-42.549L26.667-40.317L26.667-40.297Q26.667-40.017 26.718-39.873Q26.769-39.730 26.911-39.673Q27.053-39.617 27.340-39.617Q27.593-39.617 27.798-39.757Q28.003-39.897 28.119-40.123Q28.236-40.348 28.236-40.598L28.236-41.801Q28.236-42.071 28.128-42.132Q28.020-42.194 27.709-42.194L27.709-42.474L28.817-42.549L28.817-40.136Q28.817-39.945 28.870-39.863Q28.923-39.781 29.023-39.762Q29.124-39.743 29.340-39.743L29.340-39.463L28.263-39.395L28.263-39.959Q28.154-39.777 28.008-39.654Q27.863-39.531 27.677-39.463Q27.490-39.395 27.289-39.395Q26.086-39.395 26.086-40.297M31.572-38.106L29.941-38.106L29.941-38.386Q30.170-38.386 30.319-38.421Q30.468-38.455 30.468-38.595L30.468-41.941Q30.468-42.112 30.331-42.153Q30.194-42.194 29.941-42.194L29.941-42.474L31.021-42.549L31.021-42.143Q31.243-42.344 31.530-42.447Q31.818-42.549 32.125-42.549Q32.552-42.549 32.916-42.336Q33.280-42.122 33.494-41.758Q33.708-41.394 33.708-40.974Q33.708-40.529 33.468-40.165Q33.229-39.801 32.836-39.598Q32.443-39.395 31.999-39.395Q31.732-39.395 31.484-39.495Q31.237-39.596 31.049-39.777L31.049-38.595Q31.049-38.458 31.197-38.422Q31.346-38.386 31.572-38.386L31.572-38.106M31.049-41.794L31.049-40.184Q31.182-39.931 31.425-39.774Q31.667-39.617 31.944-39.617Q32.272-39.617 32.525-39.818Q32.778-40.020 32.911-40.338Q33.045-40.656 33.045-40.974Q33.045-41.203 32.980-41.432Q32.915-41.661 32.787-41.859Q32.658-42.057 32.464-42.177Q32.269-42.296 32.036-42.296Q31.742-42.296 31.474-42.167Q31.206-42.037 31.049-41.794\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-47.133 122.674)\">\u003Cpath d=\"M34.559-40.974Q34.559-41.312 34.700-41.603Q34.840-41.893 35.084-42.107Q35.328-42.320 35.633-42.435Q35.937-42.549 36.262-42.549Q36.532-42.549 36.795-42.450Q37.058-42.351 37.249-42.173L37.249-43.571Q37.249-43.841 37.142-43.903Q37.034-43.964 36.723-43.964L36.723-44.245L37.800-44.320L37.800-40.136Q37.800-39.948 37.854-39.865Q37.909-39.781 38.010-39.762Q38.111-39.743 38.326-39.743L38.326-39.463L37.219-39.395L37.219-39.812Q36.802-39.395 36.176-39.395Q35.745-39.395 35.373-39.607Q35-39.818 34.780-40.179Q34.559-40.540 34.559-40.974M36.234-39.617Q36.443-39.617 36.629-39.689Q36.815-39.760 36.969-39.897Q37.123-40.034 37.219-40.212L37.219-41.821Q37.133-41.968 36.988-42.088Q36.843-42.208 36.673-42.267Q36.504-42.327 36.323-42.327Q35.763-42.327 35.494-41.938Q35.226-41.548 35.226-40.967Q35.226-40.396 35.460-40.006Q35.694-39.617 36.234-39.617M39.034-40.191Q39.034-40.523 39.257-40.750Q39.481-40.977 39.825-41.105Q40.168-41.234 40.541-41.286Q40.913-41.339 41.218-41.339L41.218-41.592Q41.218-41.797 41.110-41.977Q41.002-42.156 40.821-42.259Q40.640-42.361 40.432-42.361Q40.025-42.361 39.789-42.269Q39.878-42.232 39.924-42.148Q39.970-42.064 39.970-41.962Q39.970-41.866 39.924-41.787Q39.878-41.709 39.797-41.664Q39.717-41.620 39.628-41.620Q39.478-41.620 39.377-41.717Q39.276-41.815 39.276-41.962Q39.276-42.584 40.432-42.584Q40.643-42.584 40.893-42.520Q41.142-42.457 41.344-42.338Q41.546-42.218 41.672-42.033Q41.799-41.849 41.799-41.606L41.799-40.030Q41.799-39.914 41.860-39.818Q41.922-39.723 42.035-39.723Q42.144-39.723 42.209-39.817Q42.274-39.911 42.274-40.030L42.274-40.478L42.540-40.478L42.540-40.030Q42.540-39.760 42.313-39.595Q42.086-39.429 41.806-39.429Q41.597-39.429 41.460-39.583Q41.324-39.736 41.300-39.952Q41.153-39.685 40.871-39.540Q40.589-39.395 40.264-39.395Q39.987-39.395 39.703-39.470Q39.420-39.545 39.227-39.724Q39.034-39.904 39.034-40.191M39.649-40.191Q39.649-40.017 39.750-39.887Q39.850-39.757 40.006-39.687Q40.162-39.617 40.326-39.617Q40.544-39.617 40.753-39.714Q40.961-39.812 41.089-39.993Q41.218-40.174 41.218-40.400L41.218-41.128Q40.893-41.128 40.527-41.037Q40.162-40.946 39.905-40.734Q39.649-40.523 39.649-40.191M43.484-40.304L43.484-42.201L42.845-42.201L42.845-42.423Q43.162-42.423 43.380-42.633Q43.597-42.843 43.697-43.153Q43.798-43.462 43.798-43.770L44.065-43.770L44.065-42.481L45.141-42.481L45.141-42.201L44.065-42.201L44.065-40.317Q44.065-40.041 44.169-39.842Q44.273-39.644 44.533-39.644Q44.690-39.644 44.796-39.748Q44.902-39.853 44.952-40.006Q45.001-40.160 45.001-40.317L45.001-40.731L45.268-40.731L45.268-40.304Q45.268-40.078 45.169-39.868Q45.070-39.658 44.885-39.526Q44.701-39.395 44.472-39.395Q44.034-39.395 43.759-39.632Q43.484-39.870 43.484-40.304M46.037-40.998Q46.037-41.319 46.162-41.608Q46.287-41.897 46.512-42.120Q46.738-42.344 47.033-42.464Q47.329-42.584 47.647-42.584Q47.975-42.584 48.236-42.484Q48.498-42.385 48.674-42.203Q48.850-42.020 48.944-41.762Q49.038-41.504 49.038-41.172Q49.038-41.080 48.956-41.059L46.700-41.059L46.700-40.998Q46.700-40.410 46.984-40.027Q47.267-39.644 47.835-39.644Q48.156-39.644 48.424-39.837Q48.693-40.030 48.782-40.345Q48.788-40.386 48.864-40.400L48.956-40.400Q49.038-40.376 49.038-40.304Q49.038-40.297 49.031-40.270Q48.918-39.873 48.547-39.634Q48.177-39.395 47.753-39.395Q47.315-39.395 46.915-39.603Q46.516-39.812 46.276-40.179Q46.037-40.546 46.037-40.998M46.707-41.268L48.522-41.268Q48.522-41.545 48.424-41.797Q48.327-42.050 48.129-42.206Q47.931-42.361 47.647-42.361Q47.370-42.361 47.156-42.203Q46.943-42.044 46.825-41.789Q46.707-41.534 46.707-41.268\" 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-size=\"8\">\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M11.603-39.701L11.603-39.791Q11.642-39.998 11.853-40.022L12.161-40.022L12.161-43.791L11.853-43.791Q11.642-43.815 11.603-44.029L11.603-44.119Q11.642-44.326 11.853-44.350L13.802-44.350Q14.200-44.350 14.546-44.149Q14.892-43.947 15.099-43.602Q15.306-43.256 15.306-42.854Q15.306-42.447 15.101-42.104Q14.896-41.760 14.550-41.555Q14.204-41.350 13.802-41.350L12.802-41.350L12.802-40.022L13.114-40.022Q13.325-39.998 13.364-39.791L13.364-39.701Q13.325-39.486 13.114-39.463L11.853-39.463Q11.642-39.486 11.603-39.701M12.802-43.791L12.802-41.912L13.642-41.912Q13.903-41.912 14.140-42.035Q14.376-42.158 14.521-42.373Q14.665-42.588 14.665-42.854Q14.665-43.123 14.521-43.334Q14.376-43.545 14.140-43.668Q13.903-43.791 13.642-43.791L12.802-43.791M17.931-39.385Q17.482-39.385 17.116-39.609Q16.751-39.834 16.497-40.217Q16.243-40.600 16.118-41.043Q15.993-41.486 15.993-41.912Q15.993-42.338 16.118-42.777Q16.243-43.217 16.497-43.600Q16.751-43.983 17.110-44.207Q17.470-44.432 17.931-44.432Q18.208-44.432 18.466-44.340Q18.724-44.248 18.939-44.080L19.071-44.318Q19.099-44.369 19.153-44.401Q19.208-44.432 19.267-44.432L19.345-44.432Q19.439-44.420 19.501-44.361Q19.564-44.303 19.575-44.197L19.575-42.869Q19.564-42.768 19.501-42.705Q19.439-42.643 19.345-42.631L19.177-42.631Q19.075-42.643 19.013-42.709Q18.950-42.776 18.939-42.869Q18.899-43.135 18.776-43.359Q18.653-43.584 18.450-43.727Q18.247-43.869 17.985-43.869Q17.653-43.869 17.401-43.686Q17.149-43.502 16.978-43.201Q16.806-42.901 16.720-42.559Q16.634-42.217 16.634-41.912Q16.634-41.608 16.718-41.266Q16.802-40.924 16.974-40.621Q17.146-40.318 17.403-40.131Q17.661-39.943 17.993-39.943Q18.376-39.943 18.657-40.217Q18.939-40.490 18.939-40.877Q18.966-41.088 19.177-41.111L19.345-41.111Q19.575-41.072 19.575-40.846Q19.575-40.529 19.439-40.258Q19.302-39.986 19.067-39.789Q18.833-39.592 18.542-39.488Q18.251-39.385 17.931-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M28.241-40.440L22.928-40.440Q22.850-40.447 22.801-40.496Q22.753-40.545 22.753-40.623Q22.753-40.693 22.800-40.744Q22.846-40.795 22.928-40.807L28.241-40.807Q28.315-40.795 28.362-40.744Q28.409-40.693 28.409-40.623Q28.409-40.545 28.360-40.496Q28.311-40.447 28.241-40.440M28.241-42.127L22.928-42.127Q22.850-42.135 22.801-42.184Q22.753-42.233 22.753-42.311Q22.753-42.381 22.800-42.432Q22.846-42.483 22.928-42.494L28.241-42.494Q28.315-42.483 28.362-42.432Q28.409-42.381 28.409-42.311Q28.409-42.233 28.360-42.184Q28.311-42.135 28.241-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(6.378 123.369)\">\u003Cpath d=\"M32.909-39.686L32.023-42.350L31.702-42.350Q31.503-42.373 31.452-42.592L31.452-42.678Q31.503-42.889 31.702-42.912L32.862-42.912Q33.058-42.893 33.108-42.678L33.108-42.592Q33.058-42.373 32.862-42.350L32.581-42.350L33.374-39.975L34.163-42.350L33.886-42.350Q33.687-42.373 33.636-42.592L33.636-42.678Q33.687-42.889 33.886-42.912L35.046-42.912Q35.241-42.889 35.292-42.678L35.292-42.592Q35.241-42.373 35.046-42.350L34.726-42.350L33.839-39.686Q33.796-39.572 33.694-39.498Q33.593-39.424 33.468-39.424L33.276-39.424Q33.159-39.424 33.056-39.496Q32.952-39.568 32.909-39.686M35.905-40.576Q35.905-41.022 36.319-41.279Q36.733-41.537 37.274-41.637Q37.816-41.736 38.323-41.744Q38.323-41.959 38.189-42.111Q38.054-42.264 37.847-42.340Q37.640-42.416 37.429-42.416Q37.085-42.416 36.925-42.393L36.925-42.334Q36.925-42.166 36.806-42.051Q36.687-41.936 36.523-41.936Q36.347-41.936 36.232-42.059Q36.116-42.182 36.116-42.350Q36.116-42.756 36.497-42.865Q36.878-42.975 37.437-42.975Q37.706-42.975 37.974-42.897Q38.241-42.818 38.466-42.668Q38.691-42.518 38.827-42.297Q38.964-42.076 38.964-41.799L38.964-40.080Q38.964-40.022 39.491-40.022Q39.687-40.002 39.737-39.791L39.737-39.701Q39.687-39.486 39.491-39.463L39.347-39.463Q39.003-39.463 38.774-39.510Q38.546-39.557 38.401-39.744Q37.941-39.424 37.233-39.424Q36.898-39.424 36.593-39.565Q36.288-39.705 36.097-39.967Q35.905-40.229 35.905-40.576M36.546-40.568Q36.546-40.295 36.788-40.139Q37.030-39.983 37.316-39.983Q37.534-39.983 37.767-40.041Q37.999-40.100 38.161-40.238Q38.323-40.377 38.323-40.600L38.323-41.190Q38.042-41.190 37.626-41.133Q37.210-41.076 36.878-40.938Q36.546-40.799 36.546-40.568M40.194-39.701L40.194-39.791Q40.245-39.998 40.441-40.022L41.546-40.022L41.546-43.791L40.441-43.791Q40.245-43.815 40.194-44.029L40.194-44.119Q40.245-44.326 40.441-44.350L41.937-44.350Q42.128-44.326 42.187-44.119L42.187-40.022L43.288-40.022Q43.487-39.998 43.538-39.791L43.538-39.701Q43.487-39.486 43.288-39.463L40.441-39.463Q40.245-39.486 40.194-39.701M46.257-39.385Q45.808-39.385 45.442-39.609Q45.077-39.834 44.823-40.217Q44.569-40.600 44.444-41.043Q44.319-41.486 44.319-41.912Q44.319-42.338 44.444-42.777Q44.569-43.217 44.823-43.600Q45.077-43.983 45.437-44.207Q45.796-44.432 46.257-44.432Q46.534-44.432 46.792-44.340Q47.050-44.248 47.265-44.080L47.398-44.318Q47.425-44.369 47.480-44.401Q47.534-44.432 47.593-44.432L47.671-44.432Q47.765-44.420 47.827-44.361Q47.890-44.303 47.901-44.197L47.901-42.869Q47.890-42.768 47.827-42.705Q47.765-42.643 47.671-42.631L47.503-42.631Q47.401-42.643 47.339-42.709Q47.276-42.776 47.265-42.869Q47.226-43.135 47.103-43.359Q46.980-43.584 46.776-43.727Q46.573-43.869 46.312-43.869Q45.980-43.869 45.728-43.686Q45.476-43.502 45.304-43.201Q45.132-42.901 45.046-42.559Q44.960-42.217 44.960-41.912Q44.960-41.608 45.044-41.266Q45.128-40.924 45.300-40.621Q45.472-40.318 45.730-40.131Q45.987-39.943 46.319-39.943Q46.702-39.943 46.983-40.217Q47.265-40.490 47.265-40.877Q47.292-41.088 47.503-41.111L47.671-41.111Q47.901-41.072 47.901-40.846Q47.901-40.529 47.765-40.258Q47.628-39.986 47.394-39.789Q47.159-39.592 46.868-39.488Q46.577-39.385 46.257-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 93.412h233.312\"\u002F>\u003Cg transform=\"translate(202.702 -24.816)\">\u003Cpath d=\"M11.642-39.701L11.642-39.791Q11.700-39.998 11.892-40.022L12.603-40.022L12.603-42.350L11.892-42.350Q11.696-42.373 11.642-42.592L11.642-42.678Q11.700-42.889 11.892-42.912L12.993-42.912Q13.192-42.893 13.243-42.678L13.243-42.350Q13.505-42.635 13.860-42.793Q14.216-42.951 14.603-42.951Q14.896-42.951 15.130-42.817Q15.364-42.682 15.364-42.416Q15.364-42.248 15.255-42.131Q15.146-42.014 14.978-42.014Q14.825-42.014 14.710-42.125Q14.595-42.236 14.595-42.393Q14.220-42.393 13.905-42.192Q13.591-41.990 13.417-41.656Q13.243-41.322 13.243-40.943L13.243-40.022L14.189-40.022Q14.396-39.998 14.435-39.791L14.435-39.701Q14.396-39.486 14.189-39.463L11.892-39.463Q11.700-39.486 11.642-39.701M19.177-40.951L16.735-40.951Q16.790-40.674 16.987-40.451Q17.185-40.229 17.462-40.106Q17.739-39.983 18.024-39.983Q18.497-39.983 18.720-40.272Q18.728-40.283 18.784-40.389Q18.841-40.494 18.890-40.537Q18.939-40.580 19.032-40.592L19.177-40.592Q19.368-40.572 19.427-40.358L19.427-40.303Q19.360-40.002 19.130-39.805Q18.899-39.608 18.587-39.516Q18.274-39.424 17.970-39.424Q17.485-39.424 17.046-39.652Q16.607-39.881 16.339-40.281Q16.071-40.682 16.071-41.174L16.071-41.233Q16.071-41.701 16.317-42.104Q16.564-42.506 16.972-42.740Q17.380-42.975 17.849-42.975Q18.353-42.975 18.706-42.752Q19.060-42.529 19.243-42.141Q19.427-41.752 19.427-41.248L19.427-41.190Q19.368-40.975 19.177-40.951M16.743-41.502L18.771-41.502Q18.724-41.912 18.485-42.164Q18.247-42.416 17.849-42.416Q17.454-42.416 17.148-42.154Q16.841-41.893 16.743-41.502M21.110-40.568L21.110-42.350L20.360-42.350Q20.161-42.373 20.110-42.592L20.110-42.678Q20.161-42.889 20.360-42.912L21.110-42.912L21.110-43.662Q21.161-43.869 21.360-43.897L21.505-43.897Q21.700-43.869 21.751-43.662L21.751-42.912L23.110-42.912Q23.302-42.893 23.360-42.678L23.360-42.592Q23.306-42.373 23.110-42.350L21.751-42.350L21.751-40.600Q21.751-39.983 22.325-39.983Q22.575-39.983 22.739-40.168Q22.903-40.354 22.903-40.600Q22.903-40.693 22.976-40.764Q23.048-40.834 23.149-40.846L23.294-40.846Q23.493-40.822 23.544-40.615L23.544-40.568Q23.544-40.244 23.360-39.981Q23.177-39.717 22.884-39.570Q22.591-39.424 22.271-39.424Q21.759-39.424 21.435-39.734Q21.110-40.045 21.110-40.568\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588-52.266h233.313\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(179.53 2.43)\">\u003Cpath d=\"M14.112-39.463L11.798-39.463L11.798-39.743Q12.520-39.743 12.520-39.952L12.520-43.753Q12.520-43.964 11.798-43.964L11.798-44.245L15.982-44.245L16.194-42.608L15.927-42.608Q15.849-43.219 15.697-43.498Q15.544-43.776 15.240-43.870Q14.936-43.964 14.311-43.964L13.576-43.964Q13.388-43.964 13.299-43.930Q13.210-43.896 13.210-43.753L13.210-41.996L13.764-41.996Q14.133-41.996 14.317-42.050Q14.502-42.105 14.581-42.278Q14.659-42.450 14.659-42.816L14.926-42.816L14.926-40.899L14.659-40.899Q14.659-41.264 14.581-41.437Q14.502-41.609 14.317-41.662Q14.133-41.715 13.764-41.715L13.210-41.715L13.210-39.952Q13.210-39.743 14.112-39.743\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.53 2.43)\">\u003Cpath d=\"M16.206-40.998Q16.206-41.319 16.331-41.608Q16.456-41.897 16.682-42.120Q16.907-42.344 17.203-42.464Q17.498-42.584 17.816-42.584Q18.144-42.584 18.406-42.484Q18.667-42.385 18.843-42.203Q19.019-42.020 19.113-41.762Q19.207-41.504 19.207-41.172Q19.207-41.080 19.125-41.059L16.870-41.059L16.870-40.998Q16.870-40.410 17.153-40.027Q17.437-39.644 18.004-39.644Q18.326-39.644 18.594-39.837Q18.862-40.030 18.951-40.345Q18.958-40.386 19.033-40.400L19.125-40.400Q19.207-40.376 19.207-40.304Q19.207-40.297 19.201-40.270Q19.088-39.873 18.717-39.634Q18.346-39.395 17.922-39.395Q17.485-39.395 17.085-39.603Q16.685-39.812 16.446-40.179Q16.206-40.546 16.206-40.998M16.876-41.268L18.691-41.268Q18.691-41.545 18.594-41.797Q18.496-42.050 18.298-42.206Q18.100-42.361 17.816-42.361Q17.539-42.361 17.326-42.203Q17.112-42.044 16.994-41.789Q16.876-41.534 16.876-41.268M20.322-40.304L20.322-42.201L19.683-42.201L19.683-42.423Q20-42.423 20.217-42.633Q20.434-42.843 20.535-43.153Q20.636-43.462 20.636-43.770L20.903-43.770L20.903-42.481L21.979-42.481L21.979-42.201L20.903-42.201L20.903-40.317Q20.903-40.041 21.007-39.842Q21.111-39.644 21.371-39.644Q21.528-39.644 21.634-39.748Q21.740-39.853 21.790-40.006Q21.839-40.160 21.839-40.317L21.839-40.731L22.106-40.731L22.106-40.304Q22.106-40.078 22.007-39.868Q21.908-39.658 21.723-39.526Q21.538-39.395 21.309-39.395Q20.872-39.395 20.597-39.632Q20.322-39.870 20.322-40.304M22.916-40.974Q22.916-41.302 23.051-41.603Q23.186-41.903 23.422-42.124Q23.658-42.344 23.962-42.464Q24.266-42.584 24.591-42.584Q25.097-42.584 25.445-42.481Q25.794-42.379 25.794-42.003Q25.794-41.856 25.696-41.755Q25.599-41.654 25.452-41.654Q25.298-41.654 25.199-41.753Q25.100-41.852 25.100-42.003Q25.100-42.191 25.240-42.283Q25.038-42.334 24.598-42.334Q24.242-42.334 24.013-42.138Q23.784-41.941 23.683-41.632Q23.582-41.322 23.582-40.974Q23.582-40.625 23.709-40.319Q23.835-40.013 24.090-39.829Q24.345-39.644 24.700-39.644Q24.922-39.644 25.107-39.728Q25.291-39.812 25.426-39.967Q25.561-40.123 25.620-40.331Q25.633-40.386 25.688-40.386L25.801-40.386Q25.831-40.386 25.854-40.362Q25.876-40.338 25.876-40.304L25.876-40.283Q25.790-39.996 25.602-39.798Q25.414-39.600 25.150-39.497Q24.885-39.395 24.591-39.395Q24.160-39.395 23.772-39.601Q23.384-39.808 23.150-40.171Q22.916-40.533 22.916-40.974\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(179.53 2.43)\">\u003Cpath d=\"M27.950-39.463L26.316-39.463L26.316-39.743Q26.545-39.743 26.694-39.777Q26.843-39.812 26.843-39.952L26.843-43.571Q26.843-43.841 26.735-43.903Q26.627-43.964 26.316-43.964L26.316-44.245L27.396-44.320L27.396-41.934Q27.502-42.119 27.680-42.261Q27.858-42.402 28.066-42.476Q28.275-42.549 28.500-42.549Q29.006-42.549 29.290-42.326Q29.574-42.102 29.574-41.606L29.574-39.952Q29.574-39.815 29.722-39.779Q29.871-39.743 30.097-39.743L30.097-39.463L28.466-39.463L28.466-39.743Q28.695-39.743 28.844-39.777Q28.993-39.812 28.993-39.952L28.993-41.592Q28.993-41.927 28.873-42.127Q28.753-42.327 28.439-42.327Q28.169-42.327 27.935-42.191Q27.701-42.054 27.562-41.820Q27.424-41.586 27.424-41.312L27.424-39.952Q27.424-39.815 27.574-39.779Q27.725-39.743 27.950-39.743\" 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-size=\"8\">\u003Cg transform=\"translate(214.083 2.161)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.341-39.701L24.341-39.791Q24.380-39.998 24.591-40.022L24.899-40.022L24.899-43.791L24.591-43.791Q24.380-43.815 24.341-44.029L24.341-44.119Q24.380-44.326 24.591-44.350L26.540-44.350Q26.939-44.350 27.284-44.149Q27.630-43.947 27.837-43.602Q28.044-43.256 28.044-42.854Q28.044-42.447 27.839-42.104Q27.634-41.760 27.288-41.555Q26.942-41.350 26.540-41.350L25.540-41.350L25.540-40.022L25.853-40.022Q26.064-39.998 26.103-39.791L26.103-39.701Q26.064-39.486 25.853-39.463L24.591-39.463Q24.380-39.486 24.341-39.701M25.540-43.791L25.540-41.912L26.380-41.912Q26.642-41.912 26.878-42.035Q27.114-42.158 27.259-42.373Q27.403-42.588 27.403-42.854Q27.403-43.123 27.259-43.334Q27.114-43.545 26.878-43.668Q26.642-43.791 26.380-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 2.161)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 2.161)\">\u003Cpath d=\"M39.937-39.701L39.937-39.791Q39.976-39.998 40.187-40.022L40.495-40.022L40.495-43.791L40.187-43.791Q39.976-43.815 39.937-44.029L39.937-44.119Q39.976-44.326 40.187-44.350L42.136-44.350Q42.534-44.350 42.880-44.149Q43.226-43.947 43.433-43.602Q43.640-43.256 43.640-42.854Q43.640-42.447 43.435-42.104Q43.230-41.760 42.884-41.555Q42.538-41.350 42.136-41.350L41.136-41.350L41.136-40.022L41.448-40.022Q41.659-39.998 41.698-39.791L41.698-39.701Q41.659-39.486 41.448-39.463L40.187-39.463Q39.976-39.486 39.937-39.701M41.136-43.791L41.136-41.912L41.976-41.912Q42.237-41.912 42.474-42.035Q42.710-42.158 42.855-42.373Q42.999-42.588 42.999-42.854Q42.999-43.123 42.855-43.334Q42.710-43.545 42.474-43.668Q42.237-43.791 41.976-43.791L41.136-43.791M46.265-39.385Q45.816-39.385 45.450-39.609Q45.085-39.834 44.831-40.217Q44.577-40.600 44.452-41.043Q44.327-41.486 44.327-41.912Q44.327-42.338 44.452-42.777Q44.577-43.217 44.831-43.600Q45.085-43.983 45.444-44.207Q45.804-44.432 46.265-44.432Q46.542-44.432 46.800-44.340Q47.058-44.248 47.273-44.080L47.405-44.318Q47.433-44.369 47.487-44.401Q47.542-44.432 47.601-44.432L47.679-44.432Q47.773-44.420 47.835-44.361Q47.898-44.303 47.909-44.197L47.909-42.869Q47.898-42.768 47.835-42.705Q47.773-42.643 47.679-42.631L47.511-42.631Q47.409-42.643 47.347-42.709Q47.284-42.776 47.273-42.869Q47.233-43.135 47.110-43.359Q46.987-43.584 46.784-43.727Q46.581-43.869 46.319-43.869Q45.987-43.869 45.735-43.686Q45.483-43.502 45.312-43.201Q45.140-42.901 45.054-42.559Q44.968-42.217 44.968-41.912Q44.968-41.608 45.052-41.266Q45.136-40.924 45.308-40.621Q45.480-40.318 45.737-40.131Q45.995-39.943 46.327-39.943Q46.710-39.943 46.991-40.217Q47.273-40.490 47.273-40.877Q47.300-41.088 47.511-41.111L47.679-41.111Q47.909-41.072 47.909-40.846Q47.909-40.529 47.773-40.258Q47.636-39.986 47.401-39.789Q47.167-39.592 46.876-39.488Q46.585-39.385 46.265-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 2.161)\">\u003Cpath d=\"M51.374-41.279L48.901-41.279Q48.823-41.291 48.774-41.340Q48.726-41.389 48.726-41.463Q48.726-41.537 48.774-41.586Q48.823-41.635 48.901-41.647L51.374-41.647L51.374-44.127Q51.401-44.295 51.558-44.295Q51.632-44.295 51.681-44.246Q51.730-44.197 51.741-44.127L51.741-41.647L54.214-41.647Q54.382-41.615 54.382-41.463Q54.382-41.311 54.214-41.279L51.741-41.279L51.741-38.799Q51.730-38.729 51.681-38.680Q51.632-38.631 51.558-38.631Q51.401-38.631 51.374-38.799\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 2.161)\">\u003Cpath d=\"M58.458-39.463L55.665-39.463L55.665-39.760Q56.727-39.760 56.727-40.022L56.727-44.190Q56.298-43.975 55.618-43.975L55.618-44.272Q56.637-44.272 57.153-44.783L57.298-44.783Q57.372-44.764 57.391-44.686L57.391-40.022Q57.391-39.760 58.458-39.760\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588-27.512h233.313\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(173.176 26.616)\">\u003Cpath d=\"M14.584-39.463L11.812-39.463L11.812-39.743Q12.533-39.743 12.533-39.952L12.533-43.753Q12.533-43.964 11.812-43.964L11.812-44.245L14.584-44.245Q15.069-44.245 15.505-44.050Q15.941-43.855 16.264-43.513Q16.587-43.171 16.765-42.731Q16.942-42.290 16.942-41.808Q16.942-41.322 16.758-40.899Q16.573-40.475 16.250-40.153Q15.927-39.832 15.495-39.648Q15.063-39.463 14.584-39.463M13.196-43.753L13.196-39.952Q13.196-39.812 13.285-39.777Q13.374-39.743 13.562-39.743L14.386-39.743Q15.011-39.743 15.415-40.005Q15.818-40.266 16.006-40.733Q16.194-41.199 16.194-41.808Q16.194-42.286 16.102-42.679Q16.009-43.072 15.760-43.370Q15.521-43.657 15.157-43.811Q14.793-43.964 14.386-43.964L13.562-43.964Q13.374-43.964 13.285-43.930Q13.196-43.896 13.196-43.753M17.711-40.998Q17.711-41.319 17.836-41.608Q17.961-41.897 18.187-42.120Q18.412-42.344 18.708-42.464Q19.003-42.584 19.321-42.584Q19.649-42.584 19.911-42.484Q20.172-42.385 20.348-42.203Q20.524-42.020 20.618-41.762Q20.712-41.504 20.712-41.172Q20.712-41.080 20.630-41.059L18.375-41.059L18.375-40.998Q18.375-40.410 18.658-40.027Q18.942-39.644 19.509-39.644Q19.831-39.644 20.099-39.837Q20.367-40.030 20.456-40.345Q20.463-40.386 20.538-40.400L20.630-40.400Q20.712-40.376 20.712-40.304Q20.712-40.297 20.706-40.270Q20.593-39.873 20.222-39.634Q19.851-39.395 19.427-39.395Q18.990-39.395 18.590-39.603Q18.190-39.812 17.951-40.179Q17.711-40.546 17.711-40.998M18.381-41.268L20.196-41.268Q20.196-41.545 20.099-41.797Q20.002-42.050 19.803-42.206Q19.605-42.361 19.321-42.361Q19.044-42.361 18.831-42.203Q18.617-42.044 18.499-41.789Q18.381-41.534 18.381-41.268M21.300-40.974Q21.300-41.302 21.435-41.603Q21.570-41.903 21.806-42.124Q22.042-42.344 22.346-42.464Q22.650-42.584 22.975-42.584Q23.481-42.584 23.830-42.481Q24.178-42.379 24.178-42.003Q24.178-41.856 24.081-41.755Q23.983-41.654 23.836-41.654Q23.683-41.654 23.584-41.753Q23.484-41.852 23.484-42.003Q23.484-42.191 23.625-42.283Q23.423-42.334 22.982-42.334Q22.627-42.334 22.398-42.138Q22.169-41.941 22.068-41.632Q21.967-41.322 21.967-40.974Q21.967-40.625 22.093-40.319Q22.220-40.013 22.474-39.829Q22.729-39.644 23.085-39.644Q23.307-39.644 23.491-39.728Q23.676-39.812 23.811-39.967Q23.946-40.123 24.004-40.331Q24.018-40.386 24.072-40.386L24.185-40.386Q24.216-40.386 24.238-40.362Q24.260-40.338 24.260-40.304L24.260-40.283Q24.175-39.996 23.987-39.798Q23.799-39.600 23.534-39.497Q23.269-39.395 22.975-39.395Q22.544-39.395 22.157-39.601Q21.769-39.808 21.534-40.171Q21.300-40.533 21.300-40.974M24.807-40.946Q24.807-41.288 24.942-41.587Q25.077-41.886 25.316-42.110Q25.556-42.334 25.874-42.459Q26.191-42.584 26.523-42.584Q26.967-42.584 27.367-42.368Q27.767-42.153 28.001-41.775Q28.235-41.398 28.235-40.946Q28.235-40.605 28.094-40.321Q27.952-40.037 27.707-39.830Q27.463-39.624 27.154-39.509Q26.844-39.395 26.523-39.395Q26.092-39.395 25.691-39.596Q25.289-39.798 25.048-40.150Q24.807-40.502 24.807-40.946M26.523-39.644Q27.125-39.644 27.348-40.022Q27.572-40.400 27.572-41.032Q27.572-41.644 27.338-42.003Q27.104-42.361 26.523-42.361Q25.470-42.361 25.470-41.032Q25.470-40.400 25.696-40.022Q25.921-39.644 26.523-39.644\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(173.176 26.616)\">\u003Cpath d=\"M29.066-40.974Q29.066-41.312 29.207-41.603Q29.347-41.893 29.591-42.107Q29.835-42.320 30.140-42.435Q30.444-42.549 30.769-42.549Q31.039-42.549 31.302-42.450Q31.565-42.351 31.756-42.173L31.756-43.571Q31.756-43.841 31.649-43.903Q31.541-43.964 31.230-43.964L31.230-44.245L32.307-44.320L32.307-40.136Q32.307-39.948 32.361-39.865Q32.416-39.781 32.517-39.762Q32.618-39.743 32.833-39.743L32.833-39.463L31.726-39.395L31.726-39.812Q31.309-39.395 30.683-39.395Q30.252-39.395 29.880-39.607Q29.507-39.818 29.287-40.179Q29.066-40.540 29.066-40.974M30.741-39.617Q30.950-39.617 31.136-39.689Q31.322-39.760 31.476-39.897Q31.630-40.034 31.726-40.212L31.726-41.821Q31.640-41.968 31.495-42.088Q31.350-42.208 31.180-42.267Q31.011-42.327 30.830-42.327Q30.270-42.327 30.001-41.938Q29.733-41.548 29.733-40.967Q29.733-40.396 29.967-40.006Q30.201-39.617 30.741-39.617M33.441-40.998Q33.441-41.319 33.566-41.608Q33.691-41.897 33.917-42.120Q34.142-42.344 34.438-42.464Q34.733-42.584 35.051-42.584Q35.379-42.584 35.641-42.484Q35.902-42.385 36.078-42.203Q36.254-42.020 36.348-41.762Q36.442-41.504 36.442-41.172Q36.442-41.080 36.360-41.059L34.105-41.059L34.105-40.998Q34.105-40.410 34.388-40.027Q34.672-39.644 35.239-39.644Q35.561-39.644 35.829-39.837Q36.097-40.030 36.186-40.345Q36.193-40.386 36.268-40.400L36.360-40.400Q36.442-40.376 36.442-40.304Q36.442-40.297 36.436-40.270Q36.323-39.873 35.952-39.634Q35.581-39.395 35.157-39.395Q34.720-39.395 34.320-39.603Q33.920-39.812 33.681-40.179Q33.441-40.546 33.441-40.998M34.111-41.268L35.926-41.268Q35.926-41.545 35.829-41.797Q35.731-42.050 35.533-42.206Q35.335-42.361 35.051-42.361Q34.774-42.361 34.561-42.203Q34.347-42.044 34.229-41.789Q34.111-41.534 34.111-41.268\" 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-size=\"8\">\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.388-39.701L24.388-39.791Q24.446-40.002 24.638-40.022L24.860-40.022L25.814-44.205Q25.837-44.322 25.933-44.397Q26.028-44.471 26.142-44.471L26.415-44.471Q26.528-44.471 26.624-44.395Q26.720-44.318 26.743-44.205L27.692-40.022L27.919-40.022Q28.126-39.998 28.165-39.791L28.165-39.701Q28.114-39.486 27.919-39.463L26.837-39.463Q26.642-39.486 26.591-39.701L26.591-39.791Q26.642-39.998 26.837-40.022L27.036-40.022Q26.907-40.588 26.884-40.670L25.669-40.670Q25.626-40.486 25.517-40.022L25.716-40.022Q25.915-39.998 25.966-39.791L25.966-39.701Q25.915-39.486 25.716-39.463L24.638-39.463Q24.431-39.486 24.388-39.701M25.790-41.233L26.767-41.233Q26.286-43.365 26.286-43.709L26.278-43.709Q26.278-43.526 26.138-42.842Q25.997-42.158 25.790-41.233\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M42.378-39.463L40.241-39.463Q40.206-39.463 40.175-39.504Q40.144-39.545 40.144-39.592L40.167-39.693Q40.179-39.744 40.265-39.760Q40.706-39.760 40.864-39.799Q41.023-39.838 41.066-40.065L42.144-44.385Q42.167-44.455 42.167-44.518Q42.167-44.580 42.105-44.600Q41.960-44.631 41.538-44.631Q41.433-44.658 41.433-44.760L41.464-44.861Q41.472-44.908 41.554-44.928L44.066-44.928Q44.472-44.928 44.915-44.805Q45.358-44.682 45.663-44.406Q45.968-44.131 45.968-43.709Q45.968-43.322 45.698-43.006Q45.429-42.690 45.030-42.481Q44.632-42.272 44.257-42.182Q44.566-42.057 44.763-41.818Q44.960-41.580 44.960-41.264Q44.960-41.221 44.958-41.193Q44.956-41.166 44.952-41.135L44.874-40.440Q44.843-40.151 44.843-40.029Q44.843-39.815 44.911-39.684Q44.980-39.553 45.187-39.553Q45.441-39.553 45.636-39.777Q45.831-40.002 45.898-40.279Q45.905-40.326 45.991-40.342L46.073-40.342Q46.167-40.315 46.167-40.233Q46.167-40.225 46.159-40.190Q46.108-39.975 45.964-39.764Q45.819-39.553 45.612-39.424Q45.405-39.295 45.179-39.295Q44.874-39.295 44.605-39.381Q44.335-39.467 44.163-39.666Q43.991-39.865 43.991-40.174Q43.991-40.283 44.034-40.463L44.210-41.158Q44.233-41.279 44.233-41.373Q44.233-41.709 43.972-41.891Q43.710-42.072 43.347-42.072L42.296-42.072L41.776-40.006Q41.761-39.912 41.761-39.869Q41.761-39.830 41.774-39.817Q41.788-39.803 41.823-39.791Q41.968-39.760 42.394-39.760Q42.487-39.733 42.487-39.639L42.464-39.533Q42.456-39.483 42.378-39.463M42.858-44.326L42.362-42.326L43.304-42.326Q43.648-42.326 43.964-42.395Q44.280-42.463 44.554-42.631Q44.741-42.756 44.878-42.957Q45.015-43.158 45.083-43.391Q45.151-43.623 45.151-43.846Q45.151-44.303 44.784-44.467Q44.417-44.631 43.882-44.631L43.265-44.631Q43.093-44.631 43.030-44.617Q42.968-44.604 42.935-44.545Q42.901-44.486 42.858-44.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M48.372-37.463L47.196-37.463L47.196-45.463L48.372-45.463L48.372-45.096L47.563-45.096L47.563-37.830L48.372-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M49.749-39.197Q49.749-39.260 49.780-39.303L53.526-44.561Q53.069-44.326 52.502-44.326Q51.850-44.326 51.245-44.647Q51.389-44.299 51.389-43.854Q51.389-43.494 51.268-43.123Q51.147-42.752 50.897-42.496Q50.647-42.240 50.284-42.240Q49.897-42.240 49.614-42.484Q49.331-42.729 49.184-43.102Q49.038-43.475 49.038-43.854Q49.038-44.233 49.184-44.604Q49.331-44.975 49.614-45.219Q49.897-45.463 50.284-45.463Q50.600-45.463 50.870-45.225Q51.206-44.920 51.635-44.748Q52.065-44.576 52.502-44.576Q52.995-44.576 53.413-44.789Q53.831-45.002 54.131-45.401Q54.174-45.463 54.268-45.463Q54.342-45.463 54.397-45.408Q54.452-45.354 54.452-45.279Q54.452-45.217 54.420-45.174L50.077-39.080Q50.030-39.014 49.932-39.014Q49.850-39.014 49.799-39.065Q49.749-39.115 49.749-39.197M50.284-42.494Q50.557-42.494 50.745-42.719Q50.932-42.943 51.020-43.266Q51.108-43.588 51.108-43.854Q51.108-44.111 51.020-44.434Q50.932-44.756 50.745-44.981Q50.557-45.205 50.284-45.205Q49.897-45.205 49.754-44.777Q49.612-44.350 49.612-43.854Q49.612-43.346 49.752-42.920Q49.893-42.494 50.284-42.494M54.061-39.014Q53.674-39.014 53.391-39.260Q53.108-39.506 52.960-39.879Q52.811-40.252 52.811-40.631Q52.811-40.904 52.897-41.192Q52.983-41.479 53.137-41.713Q53.292-41.947 53.528-42.094Q53.764-42.240 54.061-42.240Q54.342-42.240 54.549-42.088Q54.756-41.936 54.895-41.693Q55.034-41.451 55.100-41.170Q55.167-40.889 55.167-40.631Q55.167-40.272 55.045-39.899Q54.924-39.526 54.674-39.270Q54.424-39.014 54.061-39.014M54.061-39.272Q54.335-39.272 54.522-39.496Q54.710-39.721 54.797-40.043Q54.885-40.365 54.885-40.631Q54.885-40.889 54.797-41.211Q54.710-41.533 54.522-41.758Q54.335-41.983 54.061-41.983Q53.670-41.983 53.530-41.553Q53.389-41.123 53.389-40.631Q53.389-40.123 53.526-39.697Q53.663-39.272 54.061-39.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M55.872-39.701L55.872-39.791Q55.930-39.998 56.122-40.022L56.833-40.022L56.833-42.350L56.122-42.350Q55.926-42.373 55.872-42.592L55.872-42.678Q55.930-42.889 56.122-42.912L57.223-42.912Q57.422-42.893 57.473-42.678L57.473-42.350Q57.735-42.635 58.090-42.793Q58.446-42.951 58.833-42.951Q59.126-42.951 59.360-42.817Q59.594-42.682 59.594-42.416Q59.594-42.248 59.485-42.131Q59.376-42.014 59.208-42.014Q59.055-42.014 58.940-42.125Q58.825-42.236 58.825-42.393Q58.450-42.393 58.135-42.192Q57.821-41.990 57.647-41.656Q57.473-41.322 57.473-40.943L57.473-40.022L58.419-40.022Q58.626-39.998 58.665-39.791L58.665-39.701Q58.626-39.486 58.419-39.463L56.122-39.463Q55.930-39.486 55.872-39.701M60.481-39.662L60.481-40.576Q60.508-40.783 60.719-40.807L60.887-40.807Q61.051-40.783 61.110-40.623Q61.313-39.983 62.040-39.983Q62.247-39.983 62.475-40.018Q62.704-40.053 62.872-40.168Q63.040-40.283 63.040-40.486Q63.040-40.697 62.817-40.811Q62.594-40.924 62.321-40.967L61.622-41.080Q60.481-41.291 60.481-42.014Q60.481-42.303 60.626-42.492Q60.770-42.682 61.010-42.789Q61.251-42.897 61.506-42.936Q61.762-42.975 62.040-42.975Q62.290-42.975 62.483-42.945Q62.676-42.916 62.840-42.838Q62.919-42.955 63.047-42.975L63.126-42.975Q63.223-42.963 63.286-42.901Q63.348-42.838 63.360-42.744L63.360-42.037Q63.348-41.943 63.286-41.877Q63.223-41.811 63.126-41.799L62.958-41.799Q62.864-41.811 62.797-41.877Q62.731-41.943 62.719-42.037Q62.719-42.416 62.024-42.416Q61.676-42.416 61.358-42.334Q61.040-42.252 61.040-42.006Q61.040-41.740 61.712-41.631L62.415-41.510Q62.899-41.428 63.249-41.180Q63.598-40.932 63.598-40.486Q63.598-40.096 63.362-39.854Q63.126-39.611 62.776-39.518Q62.426-39.424 62.040-39.424Q61.462-39.424 61.063-39.678Q60.993-39.553 60.944-39.496Q60.895-39.440 60.790-39.424L60.719-39.424Q60.504-39.447 60.481-39.662M64.212-37.920L64.212-38.006Q64.254-38.225 64.462-38.248L64.883-38.248L64.883-42.350L64.462-42.350Q64.254-42.373 64.212-42.592L64.212-42.678Q64.258-42.889 64.462-42.912L65.278-42.912Q65.473-42.893 65.524-42.678L65.524-42.608Q65.735-42.776 65.999-42.863Q66.262-42.951 66.532-42.951Q66.872-42.951 67.169-42.807Q67.465-42.662 67.680-42.410Q67.895-42.158 68.010-41.846Q68.126-41.533 68.126-41.190Q68.126-40.725 67.899-40.315Q67.672-39.904 67.286-39.664Q66.899-39.424 66.430-39.424Q65.911-39.424 65.524-39.791L65.524-38.248L65.950-38.248Q66.157-38.225 66.196-38.006L66.196-37.920Q66.157-37.709 65.950-37.686L64.462-37.686Q64.258-37.709 64.212-37.920M66.387-39.983Q66.696-39.983 66.946-40.152Q67.196-40.322 67.340-40.604Q67.485-40.885 67.485-41.190Q67.485-41.479 67.360-41.758Q67.235-42.037 67.003-42.215Q66.770-42.393 66.469-42.393Q66.149-42.393 65.887-42.207Q65.626-42.022 65.524-41.721L65.524-40.869Q65.614-40.502 65.835-40.242Q66.055-39.983 66.387-39.983\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M69.758-37.463L68.583-37.463L68.583-37.830L69.391-37.830L69.391-45.096L68.583-45.096L68.583-45.463L69.758-45.463L69.758-37.463M71.583-38.057Q71.583-38.096 71.606-38.119Q71.879-38.404 72.022-38.768Q72.165-39.131 72.165-39.518Q72.067-39.463 71.942-39.463Q71.751-39.463 71.614-39.596Q71.477-39.729 71.477-39.928Q71.477-40.119 71.614-40.252Q71.751-40.385 71.942-40.385Q72.422-40.385 72.422-39.510Q72.422-39.221 72.350-38.940Q72.278-38.658 72.135-38.404Q71.993-38.151 71.797-37.943Q71.766-37.912 71.727-37.912Q71.680-37.912 71.631-37.957Q71.583-38.002 71.583-38.057M71.477-42.455Q71.477-42.639 71.614-42.776Q71.751-42.912 71.942-42.912Q72.133-42.912 72.266-42.779Q72.399-42.647 72.399-42.455Q72.399-42.256 72.266-42.123Q72.133-41.990 71.942-41.990Q71.751-41.990 71.614-42.127Q71.477-42.264 71.477-42.455\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M77.611-39.686L76.725-42.350L76.404-42.350Q76.205-42.373 76.154-42.592L76.154-42.678Q76.205-42.889 76.404-42.912L77.564-42.912Q77.760-42.893 77.810-42.678L77.810-42.592Q77.760-42.373 77.564-42.350L77.283-42.350L78.076-39.975L78.865-42.350L78.588-42.350Q78.389-42.373 78.338-42.592L78.338-42.678Q78.389-42.889 78.588-42.912L79.748-42.912Q79.943-42.889 79.994-42.678L79.994-42.592Q79.943-42.373 79.748-42.350L79.428-42.350L78.541-39.686Q78.498-39.572 78.396-39.498Q78.295-39.424 78.170-39.424L77.978-39.424Q77.861-39.424 77.758-39.496Q77.654-39.568 77.611-39.686M80.607-40.576Q80.607-41.022 81.021-41.279Q81.435-41.537 81.976-41.637Q82.517-41.736 83.025-41.744Q83.025-41.959 82.891-42.111Q82.756-42.264 82.549-42.340Q82.342-42.416 82.131-42.416Q81.787-42.416 81.627-42.393L81.627-42.334Q81.627-42.166 81.508-42.051Q81.389-41.936 81.225-41.936Q81.049-41.936 80.934-42.059Q80.818-42.182 80.818-42.350Q80.818-42.756 81.199-42.865Q81.580-42.975 82.139-42.975Q82.408-42.975 82.676-42.897Q82.943-42.818 83.168-42.668Q83.392-42.518 83.529-42.297Q83.666-42.076 83.666-41.799L83.666-40.080Q83.666-40.022 84.193-40.022Q84.389-40.002 84.439-39.791L84.439-39.701Q84.389-39.486 84.193-39.463L84.049-39.463Q83.705-39.463 83.476-39.510Q83.248-39.557 83.103-39.744Q82.642-39.424 81.935-39.424Q81.600-39.424 81.295-39.565Q80.990-39.705 80.799-39.967Q80.607-40.229 80.607-40.576M81.248-40.568Q81.248-40.295 81.490-40.139Q81.732-39.983 82.017-39.983Q82.236-39.983 82.469-40.041Q82.701-40.100 82.863-40.238Q83.025-40.377 83.025-40.600L83.025-41.190Q82.744-41.190 82.328-41.133Q81.912-41.076 81.580-40.938Q81.248-40.799 81.248-40.568M84.896-39.701L84.896-39.791Q84.947-39.998 85.142-40.022L86.248-40.022L86.248-43.791L85.142-43.791Q84.947-43.815 84.896-44.029L84.896-44.119Q84.947-44.326 85.142-44.350L86.639-44.350Q86.830-44.326 86.889-44.119L86.889-40.022L87.990-40.022Q88.189-39.998 88.240-39.791L88.240-39.701Q88.189-39.486 87.990-39.463L85.142-39.463Q84.947-39.486 84.896-39.701M88.861-39.701L88.861-39.791Q88.900-39.998 89.107-40.022L89.396-40.022L89.396-43.791L89.107-43.791Q88.900-43.815 88.861-44.029L88.861-44.119Q88.900-44.326 89.107-44.350L91.068-44.350Q91.338-44.350 91.578-44.254Q91.818-44.158 92.010-43.988Q92.201-43.818 92.310-43.590Q92.420-43.361 92.420-43.096Q92.420-42.729 92.180-42.440Q91.939-42.151 91.572-42.022Q91.853-41.959 92.086-41.785Q92.318-41.611 92.453-41.356Q92.588-41.100 92.588-40.815Q92.588-40.455 92.406-40.145Q92.225-39.834 91.910-39.649Q91.596-39.463 91.236-39.463L89.107-39.463Q88.900-39.486 88.861-39.701M90.037-41.729L90.037-40.022L91.068-40.022Q91.295-40.022 91.498-40.125Q91.701-40.229 91.826-40.408Q91.951-40.588 91.951-40.815Q91.951-41.045 91.850-41.254Q91.748-41.463 91.566-41.596Q91.385-41.729 91.158-41.729L90.037-41.729M90.037-43.791L90.037-42.287L90.900-42.287Q91.244-42.287 91.514-42.522Q91.783-42.756 91.783-43.096Q91.783-43.283 91.685-43.443Q91.588-43.604 91.422-43.697Q91.256-43.791 91.068-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M101.277-40.440L95.964-40.440Q95.886-40.447 95.837-40.496Q95.789-40.545 95.789-40.623Q95.789-40.693 95.836-40.744Q95.882-40.795 95.964-40.807L101.277-40.807Q101.351-40.795 101.398-40.744Q101.445-40.693 101.445-40.623Q101.445-40.545 101.396-40.496Q101.347-40.447 101.277-40.440M101.277-42.127L95.964-42.127Q95.886-42.135 95.837-42.184Q95.789-42.233 95.789-42.311Q95.789-42.381 95.836-42.432Q95.882-42.483 95.964-42.494L101.277-42.494Q101.351-42.483 101.398-42.432Q101.445-42.381 101.445-42.311Q101.445-42.233 101.396-42.184Q101.347-42.135 101.277-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M106.913-39.463L104.776-39.463Q104.741-39.463 104.710-39.504Q104.679-39.545 104.679-39.592L104.702-39.693Q104.714-39.744 104.800-39.760Q105.241-39.760 105.399-39.799Q105.558-39.838 105.600-40.065L106.679-44.385Q106.702-44.455 106.702-44.518Q106.702-44.580 106.640-44.600Q106.495-44.631 106.073-44.631Q105.968-44.658 105.968-44.760L105.999-44.861Q106.007-44.908 106.089-44.928L108.600-44.928Q109.007-44.928 109.450-44.805Q109.893-44.682 110.198-44.406Q110.503-44.131 110.503-43.709Q110.503-43.322 110.233-43.006Q109.964-42.690 109.565-42.481Q109.167-42.272 108.792-42.182Q109.100-42.057 109.298-41.818Q109.495-41.580 109.495-41.264Q109.495-41.221 109.493-41.193Q109.491-41.166 109.487-41.135L109.409-40.440Q109.378-40.151 109.378-40.029Q109.378-39.815 109.446-39.684Q109.515-39.553 109.722-39.553Q109.975-39.553 110.171-39.777Q110.366-40.002 110.433-40.279Q110.440-40.326 110.526-40.342L110.608-40.342Q110.702-40.315 110.702-40.233Q110.702-40.225 110.694-40.190Q110.643-39.975 110.499-39.764Q110.354-39.553 110.147-39.424Q109.940-39.295 109.714-39.295Q109.409-39.295 109.140-39.381Q108.870-39.467 108.698-39.666Q108.526-39.865 108.526-40.174Q108.526-40.283 108.569-40.463L108.745-41.158Q108.768-41.279 108.768-41.373Q108.768-41.709 108.507-41.891Q108.245-42.072 107.882-42.072L106.831-42.072L106.311-40.006Q106.296-39.912 106.296-39.869Q106.296-39.830 106.309-39.817Q106.323-39.803 106.358-39.791Q106.503-39.760 106.929-39.760Q107.022-39.733 107.022-39.639L106.999-39.533Q106.991-39.483 106.913-39.463M107.393-44.326L106.897-42.326L107.839-42.326Q108.183-42.326 108.499-42.395Q108.815-42.463 109.089-42.631Q109.276-42.756 109.413-42.957Q109.550-43.158 109.618-43.391Q109.686-43.623 109.686-43.846Q109.686-44.303 109.319-44.467Q108.952-44.631 108.417-44.631L107.800-44.631Q107.628-44.631 107.565-44.617Q107.503-44.604 107.470-44.545Q107.436-44.486 107.393-44.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M112.908-37.463L111.732-37.463L111.732-45.463L112.908-45.463L112.908-45.096L112.099-45.096L112.099-37.830L112.908-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M114.285-39.197Q114.285-39.260 114.316-39.303L118.062-44.561Q117.605-44.326 117.038-44.326Q116.386-44.326 115.781-44.647Q115.925-44.299 115.925-43.854Q115.925-43.494 115.804-43.123Q115.683-42.752 115.433-42.496Q115.183-42.240 114.820-42.240Q114.433-42.240 114.150-42.484Q113.867-42.729 113.720-43.102Q113.574-43.475 113.574-43.854Q113.574-44.233 113.720-44.604Q113.867-44.975 114.150-45.219Q114.433-45.463 114.820-45.463Q115.136-45.463 115.406-45.225Q115.742-44.920 116.171-44.748Q116.601-44.576 117.038-44.576Q117.531-44.576 117.949-44.789Q118.367-45.002 118.667-45.401Q118.710-45.463 118.804-45.463Q118.878-45.463 118.933-45.408Q118.988-45.354 118.988-45.279Q118.988-45.217 118.956-45.174L114.613-39.080Q114.566-39.014 114.468-39.014Q114.386-39.014 114.335-39.065Q114.285-39.115 114.285-39.197M114.820-42.494Q115.093-42.494 115.281-42.719Q115.468-42.943 115.556-43.266Q115.644-43.588 115.644-43.854Q115.644-44.111 115.556-44.434Q115.468-44.756 115.281-44.981Q115.093-45.205 114.820-45.205Q114.433-45.205 114.290-44.777Q114.148-44.350 114.148-43.854Q114.148-43.346 114.288-42.920Q114.429-42.494 114.820-42.494M118.597-39.014Q118.210-39.014 117.927-39.260Q117.644-39.506 117.496-39.879Q117.347-40.252 117.347-40.631Q117.347-40.904 117.433-41.192Q117.519-41.479 117.673-41.713Q117.828-41.947 118.064-42.094Q118.300-42.240 118.597-42.240Q118.878-42.240 119.085-42.088Q119.292-41.936 119.431-41.693Q119.570-41.451 119.636-41.170Q119.703-40.889 119.703-40.631Q119.703-40.272 119.581-39.899Q119.460-39.526 119.210-39.270Q118.960-39.014 118.597-39.014M118.597-39.272Q118.871-39.272 119.058-39.496Q119.246-39.721 119.333-40.043Q119.421-40.365 119.421-40.631Q119.421-40.889 119.333-41.211Q119.246-41.533 119.058-41.758Q118.871-41.983 118.597-41.983Q118.206-41.983 118.066-41.553Q117.925-41.123 117.925-40.631Q117.925-40.123 118.062-39.697Q118.199-39.272 118.597-39.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M120.407-39.701L120.407-39.791Q120.465-39.998 120.657-40.022L121.368-40.022L121.368-42.350L120.657-42.350Q120.461-42.373 120.407-42.592L120.407-42.678Q120.465-42.889 120.657-42.912L121.758-42.912Q121.957-42.893 122.008-42.678L122.008-42.350Q122.270-42.635 122.625-42.793Q122.981-42.951 123.368-42.951Q123.661-42.951 123.895-42.817Q124.129-42.682 124.129-42.416Q124.129-42.248 124.020-42.131Q123.911-42.014 123.743-42.014Q123.590-42.014 123.475-42.125Q123.360-42.236 123.360-42.393Q122.985-42.393 122.670-42.192Q122.356-41.990 122.182-41.656Q122.008-41.322 122.008-40.943L122.008-40.022L122.954-40.022Q123.161-39.998 123.200-39.791L123.200-39.701Q123.161-39.486 122.954-39.463L120.657-39.463Q120.465-39.486 120.407-39.701M125.016-39.662L125.016-40.576Q125.043-40.783 125.254-40.807L125.422-40.807Q125.586-40.783 125.645-40.623Q125.848-39.983 126.575-39.983Q126.782-39.983 127.010-40.018Q127.239-40.053 127.407-40.168Q127.575-40.283 127.575-40.486Q127.575-40.697 127.352-40.811Q127.129-40.924 126.856-40.967L126.157-41.080Q125.016-41.291 125.016-42.014Q125.016-42.303 125.161-42.492Q125.305-42.682 125.545-42.789Q125.786-42.897 126.041-42.936Q126.297-42.975 126.575-42.975Q126.825-42.975 127.018-42.945Q127.211-42.916 127.375-42.838Q127.454-42.955 127.582-42.975L127.661-42.975Q127.758-42.963 127.821-42.901Q127.883-42.838 127.895-42.744L127.895-42.037Q127.883-41.943 127.821-41.877Q127.758-41.811 127.661-41.799L127.493-41.799Q127.399-41.811 127.332-41.877Q127.266-41.943 127.254-42.037Q127.254-42.416 126.559-42.416Q126.211-42.416 125.893-42.334Q125.575-42.252 125.575-42.006Q125.575-41.740 126.246-41.631L126.950-41.510Q127.434-41.428 127.784-41.180Q128.133-40.932 128.133-40.486Q128.133-40.096 127.897-39.854Q127.661-39.611 127.311-39.518Q126.961-39.424 126.575-39.424Q125.996-39.424 125.598-39.678Q125.528-39.553 125.479-39.496Q125.430-39.440 125.325-39.424L125.254-39.424Q125.039-39.447 125.016-39.662M128.746-37.920L128.746-38.006Q128.789-38.225 128.996-38.248L129.418-38.248L129.418-42.350L128.996-42.350Q128.789-42.373 128.746-42.592L128.746-42.678Q128.793-42.889 128.996-42.912L129.813-42.912Q130.008-42.893 130.059-42.678L130.059-42.608Q130.270-42.776 130.534-42.863Q130.797-42.951 131.067-42.951Q131.407-42.951 131.704-42.807Q132-42.662 132.215-42.410Q132.430-42.158 132.545-41.846Q132.661-41.533 132.661-41.190Q132.661-40.725 132.434-40.315Q132.207-39.904 131.821-39.664Q131.434-39.424 130.965-39.424Q130.446-39.424 130.059-39.791L130.059-38.248L130.485-38.248Q130.692-38.225 130.731-38.006L130.731-37.920Q130.692-37.709 130.485-37.686L128.996-37.686Q128.793-37.709 128.746-37.920M130.922-39.983Q131.231-39.983 131.481-40.152Q131.731-40.322 131.875-40.604Q132.020-40.885 132.020-41.190Q132.020-41.479 131.895-41.758Q131.770-42.037 131.538-42.215Q131.305-42.393 131.004-42.393Q130.684-42.393 130.422-42.207Q130.161-42.022 130.059-41.721L130.059-40.869Q130.149-40.502 130.370-40.242Q130.590-39.983 130.922-39.983\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 26.185)\">\u003Cpath d=\"M134.294-37.463L133.119-37.463L133.119-37.830L133.927-37.830L133.927-45.096L133.119-45.096L133.119-45.463L134.294-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588-3.327h233.313\"\u002F>\u003Cg transform=\"translate(170.697 50.761)\">\u003Cpath d=\"M16.201-39.463L11.798-39.463L11.798-39.743Q12.520-39.743 12.520-39.952L12.520-43.753Q12.520-43.964 11.798-43.964L11.798-44.245L16.088-44.245L16.296-42.608L16.033-42.608Q15.975-43.079 15.873-43.344Q15.770-43.609 15.586-43.742Q15.401-43.876 15.129-43.920Q14.857-43.964 14.358-43.964L13.576-43.964Q13.388-43.964 13.299-43.930Q13.210-43.896 13.210-43.753L13.210-42.088L13.784-42.088Q14.174-42.088 14.357-42.139Q14.540-42.191 14.622-42.363Q14.704-42.536 14.704-42.908L14.967-42.908L14.967-40.987L14.704-40.987Q14.704-41.360 14.622-41.533Q14.540-41.705 14.357-41.756Q14.174-41.808 13.784-41.808L13.210-41.808L13.210-39.952Q13.210-39.812 13.299-39.777Q13.388-39.743 13.576-39.743L14.423-39.743Q14.953-39.743 15.263-39.812Q15.572-39.880 15.760-40.047Q15.948-40.215 16.055-40.517Q16.163-40.820 16.249-41.333L16.515-41.333L16.201-39.463M18.286-39.463L16.963-39.463L16.963-39.743Q17.523-39.743 17.903-40.143L18.617-40.940L17.705-41.989Q17.568-42.136 17.419-42.168Q17.271-42.201 17.004-42.201L17.004-42.481L18.504-42.481L18.504-42.201Q18.313-42.201 18.313-42.067Q18.313-42.037 18.344-41.989L18.939-41.305L19.379-41.801Q19.492-41.931 19.492-42.047Q19.492-42.109 19.455-42.155Q19.417-42.201 19.359-42.201L19.359-42.481L20.675-42.481L20.675-42.201Q20.114-42.201 19.735-41.801L19.113-41.100L20.107-39.952Q20.207-39.853 20.307-39.808Q20.408-39.764 20.519-39.754Q20.630-39.743 20.808-39.743L20.808-39.463L19.315-39.463L19.315-39.743Q19.379-39.743 19.439-39.777Q19.499-39.812 19.499-39.877Q19.499-39.924 19.468-39.952L18.792-40.738L18.258-40.143Q18.146-40.013 18.146-39.897Q18.146-39.832 18.187-39.788Q18.228-39.743 18.286-39.743L18.286-39.463M21.263-40.998Q21.263-41.319 21.388-41.608Q21.512-41.897 21.738-42.120Q21.963-42.344 22.259-42.464Q22.555-42.584 22.873-42.584Q23.201-42.584 23.462-42.484Q23.724-42.385 23.900-42.203Q24.076-42.020 24.170-41.762Q24.264-41.504 24.264-41.172Q24.264-41.080 24.182-41.059L21.926-41.059L21.926-40.998Q21.926-40.410 22.210-40.027Q22.493-39.644 23.061-39.644Q23.382-39.644 23.650-39.837Q23.919-40.030 24.007-40.345Q24.014-40.386 24.089-40.400L24.182-40.400Q24.264-40.376 24.264-40.304Q24.264-40.297 24.257-40.270Q24.144-39.873 23.773-39.634Q23.402-39.395 22.979-39.395Q22.541-39.395 22.141-39.603Q21.741-39.812 21.502-40.179Q21.263-40.546 21.263-40.998M21.933-41.268L23.748-41.268Q23.748-41.545 23.650-41.797Q23.553-42.050 23.355-42.206Q23.156-42.361 22.873-42.361Q22.596-42.361 22.382-42.203Q22.169-42.044 22.051-41.789Q21.933-41.534 21.933-41.268M24.852-40.974Q24.852-41.302 24.987-41.603Q25.122-41.903 25.357-42.124Q25.593-42.344 25.898-42.464Q26.202-42.584 26.526-42.584Q27.032-42.584 27.381-42.481Q27.730-42.379 27.730-42.003Q27.730-41.856 27.632-41.755Q27.535-41.654 27.388-41.654Q27.234-41.654 27.135-41.753Q27.036-41.852 27.036-42.003Q27.036-42.191 27.176-42.283Q26.974-42.334 26.533-42.334Q26.178-42.334 25.949-42.138Q25.720-41.941 25.619-41.632Q25.518-41.322 25.518-40.974Q25.518-40.625 25.645-40.319Q25.771-40.013 26.026-39.829Q26.280-39.644 26.636-39.644Q26.858-39.644 27.043-39.728Q27.227-39.812 27.362-39.967Q27.497-40.123 27.555-40.331Q27.569-40.386 27.624-40.386L27.736-40.386Q27.767-40.386 27.789-40.362Q27.812-40.338 27.812-40.304L27.812-40.283Q27.726-39.996 27.538-39.798Q27.350-39.600 27.085-39.497Q26.820-39.395 26.526-39.395Q26.096-39.395 25.708-39.601Q25.320-39.808 25.086-40.171Q24.852-40.533 24.852-40.974M28.974-40.297L28.974-41.801Q28.974-42.071 28.866-42.132Q28.758-42.194 28.447-42.194L28.447-42.474L29.555-42.549L29.555-40.317L29.555-40.297Q29.555-40.017 29.606-39.873Q29.657-39.730 29.799-39.673Q29.941-39.617 30.228-39.617Q30.481-39.617 30.686-39.757Q30.891-39.897 31.007-40.123Q31.124-40.348 31.124-40.598L31.124-41.801Q31.124-42.071 31.016-42.132Q30.908-42.194 30.597-42.194L30.597-42.474L31.705-42.549L31.705-40.136Q31.705-39.945 31.758-39.863Q31.811-39.781 31.911-39.762Q32.012-39.743 32.228-39.743L32.228-39.463L31.151-39.395L31.151-39.959Q31.042-39.777 30.896-39.654Q30.751-39.531 30.565-39.463Q30.378-39.395 30.177-39.395Q28.974-39.395 28.974-40.297M33.342-40.304L33.342-42.201L32.703-42.201L32.703-42.423Q33.021-42.423 33.238-42.633Q33.455-42.843 33.555-43.153Q33.656-43.462 33.656-43.770L33.923-43.770L33.923-42.481L35-42.481L35-42.201L33.923-42.201L33.923-40.317Q33.923-40.041 34.027-39.842Q34.131-39.644 34.391-39.644Q34.548-39.644 34.654-39.748Q34.760-39.853 34.810-40.006Q34.859-40.160 34.859-40.317L34.859-40.731L35.126-40.731L35.126-40.304Q35.126-40.078 35.027-39.868Q34.928-39.658 34.743-39.526Q34.559-39.395 34.330-39.395Q33.892-39.395 33.617-39.632Q33.342-39.870 33.342-40.304M35.895-40.998Q35.895-41.319 36.020-41.608Q36.145-41.897 36.370-42.120Q36.596-42.344 36.891-42.464Q37.187-42.584 37.505-42.584Q37.833-42.584 38.095-42.484Q38.356-42.385 38.532-42.203Q38.708-42.020 38.802-41.762Q38.896-41.504 38.896-41.172Q38.896-41.080 38.814-41.059L36.558-41.059L36.558-40.998Q36.558-40.410 36.842-40.027Q37.126-39.644 37.693-39.644Q38.014-39.644 38.283-39.837Q38.551-40.030 38.640-40.345Q38.647-40.386 38.722-40.400L38.814-40.400Q38.896-40.376 38.896-40.304Q38.896-40.297 38.889-40.270Q38.776-39.873 38.406-39.634Q38.035-39.395 37.611-39.395Q37.173-39.395 36.773-39.603Q36.374-39.812 36.134-40.179Q35.895-40.546 35.895-40.998M36.565-41.268L38.380-41.268Q38.380-41.545 38.283-41.797Q38.185-42.050 37.987-42.206Q37.789-42.361 37.505-42.361Q37.228-42.361 37.014-42.203Q36.801-42.044 36.683-41.789Q36.565-41.534 36.565-41.268\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(214.083 50.53)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.341-39.701L24.341-39.791Q24.380-39.998 24.591-40.022L24.899-40.022L24.899-43.791L24.591-43.791Q24.380-43.815 24.341-44.029L24.341-44.119Q24.380-44.326 24.591-44.350L27.798-44.350Q27.993-44.326 28.044-44.119L28.044-43.279Q27.993-43.065 27.798-43.037L27.653-43.037Q27.458-43.065 27.403-43.279L27.403-43.791L25.540-43.791L25.540-42.272L26.517-42.272L26.517-42.486Q26.567-42.693 26.767-42.721L26.911-42.721Q27.107-42.693 27.157-42.486L27.157-41.502Q27.107-41.287 26.911-41.264L26.767-41.264Q26.567-41.287 26.517-41.502L26.517-41.709L25.540-41.709L25.540-40.022L27.583-40.022L27.583-40.662Q27.634-40.869 27.829-40.897L27.974-40.897Q28.169-40.869 28.220-40.662L28.220-39.701Q28.169-39.483 27.974-39.463L24.591-39.463Q24.380-39.486 24.341-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 50.53)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 50.53)\">\u003Cpath d=\"M41.409-39.686L40.523-42.350L40.202-42.350Q40.003-42.373 39.952-42.592L39.952-42.678Q40.003-42.889 40.202-42.912L41.362-42.912Q41.558-42.893 41.608-42.678L41.608-42.592Q41.558-42.373 41.362-42.350L41.081-42.350L41.874-39.975L42.663-42.350L42.386-42.350Q42.187-42.373 42.136-42.592L42.136-42.678Q42.187-42.889 42.386-42.912L43.546-42.912Q43.741-42.889 43.792-42.678L43.792-42.592Q43.741-42.373 43.546-42.350L43.226-42.350L42.339-39.686Q42.296-39.572 42.194-39.498Q42.093-39.424 41.968-39.424L41.776-39.424Q41.659-39.424 41.556-39.496Q41.452-39.568 41.409-39.686M44.405-40.576Q44.405-41.022 44.819-41.279Q45.233-41.537 45.774-41.637Q46.316-41.736 46.823-41.744Q46.823-41.959 46.689-42.111Q46.554-42.264 46.347-42.340Q46.140-42.416 45.929-42.416Q45.585-42.416 45.425-42.393L45.425-42.334Q45.425-42.166 45.306-42.051Q45.187-41.936 45.023-41.936Q44.847-41.936 44.732-42.059Q44.616-42.182 44.616-42.350Q44.616-42.756 44.997-42.865Q45.378-42.975 45.937-42.975Q46.206-42.975 46.474-42.897Q46.741-42.818 46.966-42.668Q47.191-42.518 47.327-42.297Q47.464-42.076 47.464-41.799L47.464-40.080Q47.464-40.022 47.991-40.022Q48.187-40.002 48.237-39.791L48.237-39.701Q48.187-39.486 47.991-39.463L47.847-39.463Q47.503-39.463 47.274-39.510Q47.046-39.557 46.901-39.744Q46.441-39.424 45.733-39.424Q45.398-39.424 45.093-39.565Q44.788-39.705 44.597-39.967Q44.405-40.229 44.405-40.576M45.046-40.568Q45.046-40.295 45.288-40.139Q45.530-39.983 45.816-39.983Q46.034-39.983 46.267-40.041Q46.499-40.100 46.661-40.238Q46.823-40.377 46.823-40.600L46.823-41.190Q46.542-41.190 46.126-41.133Q45.710-41.076 45.378-40.938Q45.046-40.799 45.046-40.568M48.694-39.701L48.694-39.791Q48.745-39.998 48.941-40.022L50.046-40.022L50.046-43.791L48.941-43.791Q48.745-43.815 48.694-44.029L48.694-44.119Q48.745-44.326 48.941-44.350L50.437-44.350Q50.628-44.326 50.687-44.119L50.687-40.022L51.788-40.022Q51.987-39.998 52.038-39.791L52.038-39.701Q51.987-39.486 51.788-39.463L48.941-39.463Q48.745-39.486 48.694-39.701M52.659-39.701L52.659-39.791Q52.698-39.998 52.905-40.022L53.194-40.022L53.194-43.791L52.905-43.791Q52.698-43.815 52.659-44.029L52.659-44.119Q52.698-44.326 52.905-44.350L54.866-44.350Q55.136-44.350 55.376-44.254Q55.616-44.158 55.808-43.988Q55.999-43.818 56.108-43.590Q56.218-43.361 56.218-43.096Q56.218-42.729 55.978-42.440Q55.737-42.151 55.370-42.022Q55.651-41.959 55.884-41.785Q56.116-41.611 56.251-41.356Q56.386-41.100 56.386-40.815Q56.386-40.455 56.204-40.145Q56.023-39.834 55.708-39.649Q55.394-39.463 55.034-39.463L52.905-39.463Q52.698-39.486 52.659-39.701M53.835-41.729L53.835-40.022L54.866-40.022Q55.093-40.022 55.296-40.125Q55.499-40.229 55.624-40.408Q55.749-40.588 55.749-40.815Q55.749-41.045 55.648-41.254Q55.546-41.463 55.364-41.596Q55.183-41.729 54.956-41.729L53.835-41.729M53.835-43.791L53.835-42.287L54.698-42.287Q55.042-42.287 55.312-42.522Q55.581-42.756 55.581-43.096Q55.581-43.283 55.483-43.443Q55.386-43.604 55.220-43.697Q55.054-43.791 54.866-43.791\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 50.53)\">\u003Cpath d=\"M61.763-41.279L59.290-41.279Q59.212-41.291 59.163-41.340Q59.115-41.389 59.115-41.463Q59.115-41.537 59.163-41.586Q59.212-41.635 59.290-41.647L61.763-41.647L61.763-44.127Q61.790-44.295 61.947-44.295Q62.021-44.295 62.070-44.246Q62.119-44.197 62.130-44.127L62.130-41.647L64.603-41.647Q64.771-41.615 64.771-41.463Q64.771-41.311 64.603-41.279L62.130-41.279L62.130-38.799Q62.119-38.729 62.070-38.680Q62.021-38.631 61.947-38.631Q61.790-38.631 61.763-38.799\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 50.53)\">\u003Cpath d=\"M67.494-40.686Q67.494-41.182 67.820-41.547Q68.146-41.912 68.669-42.158L68.400-42.318Q68.103-42.502 67.919-42.797Q67.736-43.092 67.736-43.432Q67.736-43.826 67.954-44.137Q68.173-44.447 68.527-44.615Q68.880-44.783 69.263-44.783Q69.537-44.783 69.810-44.705Q70.083-44.627 70.300-44.479Q70.517-44.330 70.654-44.104Q70.790-43.877 70.790-43.584Q70.790-43.178 70.521-42.871Q70.251-42.565 69.829-42.350L70.279-42.080Q70.497-41.943 70.665-41.750Q70.833-41.557 70.931-41.318Q71.029-41.080 71.029-40.822Q71.029-40.483 70.878-40.195Q70.728-39.908 70.482-39.711Q70.236-39.514 69.912-39.404Q69.587-39.295 69.263-39.295Q68.833-39.295 68.427-39.457Q68.021-39.619 67.757-39.938Q67.494-40.256 67.494-40.686M67.982-40.686Q67.982-40.201 68.372-39.885Q68.763-39.568 69.263-39.568Q69.556-39.568 69.855-39.680Q70.154-39.791 70.347-40.010Q70.540-40.229 70.540-40.541Q70.540-40.772 70.400-40.983Q70.259-41.193 70.052-41.311L68.943-41.990Q68.525-41.787 68.253-41.451Q67.982-41.115 67.982-40.686M68.568-43.119L69.556-42.518Q69.904-42.701 70.130-42.971Q70.357-43.240 70.357-43.584Q70.357-43.803 70.265-43.979Q70.173-44.154 70.019-44.277Q69.865-44.401 69.663-44.471Q69.462-44.541 69.263-44.541Q68.857-44.541 68.511-44.330Q68.165-44.119 68.165-43.736Q68.165-43.553 68.277-43.391Q68.388-43.229 68.568-43.119\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588 20.857h233.313\"\u002F>\u003Cg transform=\"translate(169.85 74.266)\">\u003Cpath d=\"M13.576-39.463L11.839-39.463L11.839-39.743Q12.561-39.743 12.561-40.143L12.561-43.753Q12.561-43.964 11.839-43.964L11.839-44.245L13.196-44.245Q13.292-44.245 13.343-44.146L15.018-40.171L16.690-44.146Q16.737-44.245 16.836-44.245L18.187-44.245L18.187-43.964Q17.465-43.964 17.465-43.753L17.465-39.952Q17.465-39.743 18.187-39.743L18.187-39.463L16.129-39.463L16.129-39.743Q16.850-39.743 16.850-39.952L16.850-43.964L14.998-39.562Q14.950-39.463 14.840-39.463Q14.728-39.463 14.680-39.562L12.855-43.893L12.855-40.143Q12.855-39.743 13.576-39.743L13.576-39.463M18.880-40.998Q18.880-41.319 19.005-41.608Q19.130-41.897 19.356-42.120Q19.581-42.344 19.877-42.464Q20.172-42.584 20.490-42.584Q20.818-42.584 21.080-42.484Q21.341-42.385 21.517-42.203Q21.693-42.020 21.787-41.762Q21.881-41.504 21.881-41.172Q21.881-41.080 21.799-41.059L19.544-41.059L19.544-40.998Q19.544-40.410 19.827-40.027Q20.111-39.644 20.678-39.644Q21-39.644 21.268-39.837Q21.536-40.030 21.625-40.345Q21.632-40.386 21.707-40.400L21.799-40.400Q21.881-40.376 21.881-40.304Q21.881-40.297 21.875-40.270Q21.762-39.873 21.391-39.634Q21.020-39.395 20.596-39.395Q20.159-39.395 19.759-39.603Q19.359-39.812 19.120-40.179Q18.880-40.546 18.880-40.998M19.550-41.268L21.365-41.268Q21.365-41.545 21.268-41.797Q21.170-42.050 20.972-42.206Q20.774-42.361 20.490-42.361Q20.213-42.361 20-42.203Q19.786-42.044 19.668-41.789Q19.550-41.534 19.550-41.268M24.151-39.463L22.517-39.463L22.517-39.743Q22.746-39.743 22.895-39.777Q23.044-39.812 23.044-39.952L23.044-41.801Q23.044-42.071 22.936-42.132Q22.828-42.194 22.517-42.194L22.517-42.474L23.577-42.549L23.577-41.900Q23.748-42.208 24.052-42.379Q24.356-42.549 24.701-42.549Q25.101-42.549 25.378-42.409Q25.655-42.269 25.740-41.921Q25.908-42.214 26.207-42.382Q26.506-42.549 26.851-42.549Q27.357-42.549 27.641-42.326Q27.924-42.102 27.924-41.606L27.924-39.952Q27.924-39.815 28.073-39.779Q28.222-39.743 28.447-39.743L28.447-39.463L26.817-39.463L26.817-39.743Q27.043-39.743 27.193-39.779Q27.343-39.815 27.343-39.952L27.343-41.592Q27.343-41.927 27.224-42.127Q27.104-42.327 26.790-42.327Q26.520-42.327 26.285-42.191Q26.051-42.054 25.913-41.820Q25.774-41.586 25.774-41.312L25.774-39.952Q25.774-39.815 25.923-39.779Q26.072-39.743 26.297-39.743L26.297-39.463L24.667-39.463L24.667-39.743Q24.896-39.743 25.045-39.777Q25.193-39.812 25.193-39.952L25.193-41.592Q25.193-41.927 25.074-42.127Q24.954-42.327 24.640-42.327Q24.370-42.327 24.136-42.191Q23.901-42.054 23.763-41.820Q23.625-41.586 23.625-41.312L23.625-39.952Q23.625-39.815 23.775-39.779Q23.925-39.743 24.151-39.743L24.151-39.463M28.994-40.946Q28.994-41.288 29.129-41.587Q29.264-41.886 29.503-42.110Q29.743-42.334 30.061-42.459Q30.378-42.584 30.710-42.584Q31.154-42.584 31.554-42.368Q31.954-42.153 32.188-41.775Q32.422-41.398 32.422-40.946Q32.422-40.605 32.281-40.321Q32.139-40.037 31.894-39.830Q31.650-39.624 31.341-39.509Q31.031-39.395 30.710-39.395Q30.279-39.395 29.878-39.596Q29.476-39.798 29.235-40.150Q28.994-40.502 28.994-40.946M30.710-39.644Q31.312-39.644 31.535-40.022Q31.759-40.400 31.759-41.032Q31.759-41.644 31.525-42.003Q31.291-42.361 30.710-42.361Q29.657-42.361 29.657-41.032Q29.657-40.400 29.883-40.022Q30.108-39.644 30.710-39.644M34.767-39.463L33.031-39.463L33.031-39.743Q33.260-39.743 33.409-39.777Q33.557-39.812 33.557-39.952L33.557-41.801Q33.557-42.071 33.450-42.132Q33.342-42.194 33.031-42.194L33.031-42.474L34.060-42.549L34.060-41.842Q34.190-42.150 34.432-42.349Q34.675-42.549 34.993-42.549Q35.211-42.549 35.382-42.425Q35.553-42.300 35.553-42.088Q35.553-41.951 35.454-41.852Q35.355-41.753 35.222-41.753Q35.085-41.753 34.986-41.852Q34.887-41.951 34.887-42.088Q34.887-42.228 34.986-42.327Q34.695-42.327 34.495-42.131Q34.295-41.934 34.203-41.640Q34.111-41.346 34.111-41.066L34.111-39.952Q34.111-39.743 34.767-39.743L34.767-39.463M36.473-38.328Q36.603-38.260 36.739-38.260Q36.910-38.260 37.061-38.349Q37.211-38.438 37.322-38.583Q37.433-38.728 37.512-38.896L37.775-39.463L36.606-41.989Q36.531-42.136 36.401-42.168Q36.271-42.201 36.039-42.201L36.039-42.481L37.560-42.481L37.560-42.201Q37.211-42.201 37.211-42.054Q37.214-42.033 37.216-42.016Q37.218-41.999 37.218-41.989L38.076-40.130L38.848-41.801Q38.882-41.869 38.882-41.948Q38.882-42.061 38.799-42.131Q38.715-42.201 38.602-42.201L38.602-42.481L39.798-42.481L39.798-42.201Q39.580-42.201 39.407-42.097Q39.234-41.992 39.142-41.801L37.806-38.896Q37.635-38.526 37.365-38.280Q37.095-38.034 36.739-38.034Q36.469-38.034 36.251-38.200Q36.032-38.366 36.032-38.629Q36.032-38.766 36.124-38.855Q36.216-38.943 36.356-38.943Q36.493-38.943 36.582-38.855Q36.671-38.766 36.671-38.629Q36.671-38.526 36.618-38.448Q36.565-38.369 36.473-38.328\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\">\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M13.075-39.686L12.189-42.350L11.868-42.350Q11.669-42.373 11.618-42.592L11.618-42.678Q11.669-42.889 11.868-42.912L13.028-42.912Q13.224-42.893 13.274-42.678L13.274-42.592Q13.224-42.373 13.028-42.350L12.747-42.350L13.540-39.975L14.329-42.350L14.052-42.350Q13.853-42.373 13.802-42.592L13.802-42.678Q13.853-42.889 14.052-42.912L15.212-42.912Q15.407-42.889 15.458-42.678L15.458-42.592Q15.407-42.373 15.212-42.350L14.892-42.350L14.005-39.686Q13.962-39.572 13.860-39.498Q13.759-39.424 13.634-39.424L13.442-39.424Q13.325-39.424 13.222-39.496Q13.118-39.568 13.075-39.686M16.071-40.576Q16.071-41.022 16.485-41.279Q16.899-41.537 17.440-41.637Q17.982-41.736 18.489-41.744Q18.489-41.959 18.355-42.111Q18.220-42.264 18.013-42.340Q17.806-42.416 17.595-42.416Q17.251-42.416 17.091-42.393L17.091-42.334Q17.091-42.166 16.972-42.051Q16.853-41.936 16.689-41.936Q16.513-41.936 16.398-42.059Q16.282-42.182 16.282-42.350Q16.282-42.756 16.663-42.865Q17.044-42.975 17.603-42.975Q17.872-42.975 18.140-42.897Q18.407-42.818 18.632-42.668Q18.857-42.518 18.993-42.297Q19.130-42.076 19.130-41.799L19.130-40.080Q19.130-40.022 19.657-40.022Q19.853-40.002 19.903-39.791L19.903-39.701Q19.853-39.486 19.657-39.463L19.513-39.463Q19.169-39.463 18.940-39.510Q18.712-39.557 18.567-39.744Q18.107-39.424 17.399-39.424Q17.064-39.424 16.759-39.565Q16.454-39.705 16.263-39.967Q16.071-40.229 16.071-40.576M16.712-40.568Q16.712-40.295 16.954-40.139Q17.196-39.983 17.482-39.983Q17.700-39.983 17.933-40.041Q18.165-40.100 18.327-40.238Q18.489-40.377 18.489-40.600L18.489-41.190Q18.208-41.190 17.792-41.133Q17.376-41.076 17.044-40.938Q16.712-40.799 16.712-40.568M20.360-39.701L20.360-39.791Q20.411-39.998 20.607-40.022L21.712-40.022L21.712-43.791L20.607-43.791Q20.411-43.815 20.360-44.029L20.360-44.119Q20.411-44.326 20.607-44.350L22.103-44.350Q22.294-44.326 22.353-44.119L22.353-40.022L23.454-40.022Q23.653-39.998 23.704-39.791L23.704-39.701Q23.653-39.486 23.454-39.463L20.607-39.463Q20.411-39.486 20.360-39.701M24.271-39.701L24.271-39.791Q24.321-39.998 24.517-40.022L24.692-40.022L24.692-43.791L24.517-43.791Q24.321-43.815 24.271-44.029L24.271-44.119Q24.321-44.326 24.517-44.350L25.204-44.350Q25.333-44.350 25.433-44.274Q25.532-44.197 25.571-44.088Q25.603-43.983 25.825-43.293Q26.048-42.604 26.163-42.207Q26.278-41.811 26.278-41.736Q26.286-41.815 26.341-42.012Q26.396-42.209 26.509-42.580Q26.622-42.951 26.769-43.414Q26.915-43.877 26.982-44.088Q27.021-44.197 27.124-44.274Q27.228-44.350 27.349-44.350L28.036-44.350Q28.235-44.326 28.286-44.119L28.286-44.029Q28.235-43.815 28.036-43.791L27.860-43.791L27.860-40.022L28.036-40.022Q28.235-39.998 28.286-39.791L28.286-39.701Q28.235-39.486 28.036-39.463L27.157-39.463Q26.962-39.486 26.911-39.701L26.911-39.791Q26.962-39.998 27.157-40.022L27.333-40.022L27.333-43.709Q27.333-43.651 27.249-43.352Q27.165-43.053 27.062-42.721Q26.958-42.389 26.827-41.981Q26.696-41.572 26.630-41.358Q26.591-41.244 26.491-41.170Q26.392-41.096 26.278-41.096Q26.165-41.096 26.065-41.170Q25.966-41.244 25.927-41.358Q25.860-41.572 25.726-41.990Q25.591-42.408 25.454-42.852Q25.317-43.295 25.273-43.459Q25.228-43.623 25.220-43.709L25.220-40.022L25.396-40.022Q25.595-39.998 25.646-39.791L25.646-39.701Q25.595-39.486 25.396-39.463L24.517-39.463Q24.321-39.486 24.271-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M36.741-40.440L31.428-40.440Q31.350-40.447 31.301-40.496Q31.253-40.545 31.253-40.623Q31.253-40.693 31.300-40.744Q31.346-40.795 31.428-40.807L36.741-40.807Q36.815-40.795 36.862-40.744Q36.909-40.693 36.909-40.623Q36.909-40.545 36.860-40.496Q36.811-40.447 36.741-40.440M36.741-42.127L31.428-42.127Q31.350-42.135 31.301-42.184Q31.253-42.233 31.253-42.311Q31.253-42.381 31.300-42.432Q31.346-42.483 31.428-42.494L36.741-42.494Q36.815-42.483 36.862-42.432Q36.909-42.381 36.909-42.311Q36.909-42.233 36.860-42.184Q36.811-42.135 36.741-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M41.991-39.463L40.273-39.463Q40.233-39.463 40.206-39.504Q40.179-39.545 40.179-39.592L40.202-39.693Q40.210-39.744 40.296-39.760Q41.026-39.760 41.151-40.287L42.179-44.385Q42.202-44.455 42.202-44.518Q42.202-44.580 42.136-44.600Q41.991-44.631 41.569-44.631Q41.464-44.662 41.464-44.760L41.495-44.861Q41.507-44.908 41.585-44.928L42.983-44.928Q43.042-44.928 43.079-44.899Q43.116-44.869 43.120-44.815L43.831-40.240L46.831-44.815Q46.909-44.928 47.026-44.928L48.370-44.928Q48.417-44.916 48.444-44.885Q48.472-44.854 48.472-44.807L48.448-44.701Q48.429-44.647 48.355-44.631Q47.913-44.631 47.753-44.592Q47.605-44.557 47.546-44.326L46.464-40.006Q46.448-39.912 46.448-39.869Q46.448-39.811 46.515-39.791Q46.655-39.760 47.081-39.760Q47.179-39.733 47.179-39.639L47.151-39.533Q47.144-39.483 47.066-39.463L44.983-39.463Q44.944-39.463 44.917-39.504Q44.890-39.545 44.890-39.592L44.913-39.693Q44.921-39.744 45.011-39.760Q45.448-39.760 45.607-39.799Q45.765-39.838 45.808-40.065L46.944-44.608L43.648-39.576Q43.581-39.463 43.448-39.463Q43.316-39.463 43.304-39.576L42.530-44.541L41.448-40.233Q41.433-40.131 41.433-40.080Q41.433-39.881 41.597-39.820Q41.761-39.760 42.011-39.760Q42.105-39.733 42.105-39.639L42.081-39.533Q42.073-39.483 41.991-39.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M48.294-39.274Q48.294-39.661 48.555-39.932Q48.815-40.203 49.217-40.372L49.044-40.469Q48.795-40.616 48.641-40.834Q48.487-41.052 48.487-41.322Q48.487-41.632 48.673-41.865Q48.859-42.098 49.152-42.220Q49.445-42.341 49.747-42.341Q50.037-42.341 50.329-42.243Q50.620-42.145 50.813-41.940Q51.007-41.735 51.007-41.436Q51.007-41.117 50.797-40.897Q50.588-40.677 50.245-40.516L50.567-40.343Q50.849-40.179 51.023-39.933Q51.197-39.687 51.197-39.382Q51.197-39.019 50.982-38.757Q50.767-38.495 50.430-38.360Q50.093-38.225 49.747-38.225Q49.404-38.225 49.070-38.339Q48.736-38.454 48.515-38.689Q48.294-38.925 48.294-39.274M48.701-39.280Q48.701-38.905 49.031-38.685Q49.360-38.465 49.747-38.465Q49.981-38.465 50.222-38.540Q50.462-38.615 50.626-38.773Q50.790-38.931 50.790-39.174Q50.790-39.344 50.682-39.483Q50.573-39.622 50.412-39.713L49.475-40.229Q49.149-40.091 48.925-39.845Q48.701-39.599 48.701-39.280M49.123-41.134L49.999-40.654Q50.646-40.970 50.646-41.436Q50.646-41.650 50.510-41.807Q50.374-41.963 50.167-42.041Q49.961-42.119 49.747-42.119Q49.425-42.119 49.135-41.979Q48.845-41.840 48.845-41.550Q48.845-41.319 49.123-41.134\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.180\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M54.251-37.463L53.075-37.463L53.075-45.463L54.251-45.463L54.251-45.096L53.442-45.096L53.442-37.830L54.251-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M56.100-39.686L55.214-42.350L54.893-42.350Q54.694-42.373 54.643-42.592L54.643-42.678Q54.694-42.889 54.893-42.912L56.053-42.912Q56.249-42.893 56.299-42.678L56.299-42.592Q56.249-42.373 56.053-42.350L55.772-42.350L56.565-39.975L57.354-42.350L57.077-42.350Q56.878-42.373 56.827-42.592L56.827-42.678Q56.878-42.889 57.077-42.912L58.237-42.912Q58.432-42.889 58.483-42.678L58.483-42.592Q58.432-42.373 58.237-42.350L57.917-42.350L57.030-39.686Q56.987-39.572 56.885-39.498Q56.784-39.424 56.659-39.424L56.467-39.424Q56.350-39.424 56.247-39.496Q56.143-39.568 56.100-39.686M59.096-40.576Q59.096-41.022 59.510-41.279Q59.924-41.537 60.465-41.637Q61.007-41.736 61.514-41.744Q61.514-41.959 61.380-42.111Q61.245-42.264 61.038-42.340Q60.831-42.416 60.620-42.416Q60.276-42.416 60.116-42.393L60.116-42.334Q60.116-42.166 59.997-42.051Q59.878-41.936 59.714-41.936Q59.538-41.936 59.423-42.059Q59.307-42.182 59.307-42.350Q59.307-42.756 59.688-42.865Q60.069-42.975 60.628-42.975Q60.897-42.975 61.165-42.897Q61.432-42.818 61.657-42.668Q61.882-42.518 62.018-42.297Q62.155-42.076 62.155-41.799L62.155-40.080Q62.155-40.022 62.682-40.022Q62.878-40.002 62.928-39.791L62.928-39.701Q62.878-39.486 62.682-39.463L62.538-39.463Q62.194-39.463 61.965-39.510Q61.737-39.557 61.592-39.744Q61.132-39.424 60.424-39.424Q60.089-39.424 59.784-39.565Q59.479-39.705 59.288-39.967Q59.096-40.229 59.096-40.576M59.737-40.568Q59.737-40.295 59.979-40.139Q60.221-39.983 60.507-39.983Q60.725-39.983 60.958-40.041Q61.190-40.100 61.352-40.238Q61.514-40.377 61.514-40.600L61.514-41.190Q61.233-41.190 60.817-41.133Q60.401-41.076 60.069-40.938Q59.737-40.799 59.737-40.568M63.385-39.701L63.385-39.791Q63.436-39.998 63.632-40.022L64.737-40.022L64.737-43.791L63.632-43.791Q63.436-43.815 63.385-44.029L63.385-44.119Q63.436-44.326 63.632-44.350L65.128-44.350Q65.319-44.326 65.378-44.119L65.378-40.022L66.479-40.022Q66.678-39.998 66.729-39.791L66.729-39.701Q66.678-39.486 66.479-39.463L63.632-39.463Q63.436-39.486 63.385-39.701M67.413-39.701L67.413-39.791Q67.471-40.002 67.663-40.022L67.885-40.022L68.839-44.205Q68.862-44.322 68.958-44.397Q69.053-44.471 69.167-44.471L69.440-44.471Q69.553-44.471 69.649-44.395Q69.745-44.318 69.768-44.205L70.717-40.022L70.944-40.022Q71.151-39.998 71.190-39.791L71.190-39.701Q71.139-39.486 70.944-39.463L69.862-39.463Q69.667-39.486 69.616-39.701L69.616-39.791Q69.667-39.998 69.862-40.022L70.061-40.022Q69.932-40.588 69.909-40.670L68.694-40.670Q68.651-40.486 68.542-40.022L68.741-40.022Q68.940-39.998 68.991-39.791L68.991-39.701Q68.940-39.486 68.741-39.463L67.663-39.463Q67.456-39.486 67.413-39.701M68.815-41.233L69.792-41.233Q69.311-43.365 69.311-43.709L69.303-43.709Q69.303-43.526 69.163-42.842Q69.022-42.158 68.815-41.233\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 74.555)\">\u003Cpath d=\"M72.803-37.463L71.628-37.463L71.628-37.830L72.436-37.830L72.436-45.096L71.628-45.096L71.628-45.463L72.803-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588 45.042h233.313\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(160.363 99.17)\">\u003Cpath d=\"M13.812-39.422L12.260-43.753Q12.198-43.896 12.036-43.930Q11.874-43.964 11.621-43.964L11.621-44.245L13.548-44.245L13.548-43.964Q12.967-43.964 12.967-43.790Q12.967-43.770 12.974-43.753L14.198-40.317L15.305-43.404L15.179-43.753Q15.121-43.896 14.955-43.930Q14.789-43.964 14.540-43.964L14.540-44.245L16.467-44.245L16.467-43.964Q15.886-43.964 15.886-43.790L15.886-43.753L17.117-40.317L18.272-43.565Q18.286-43.606 18.286-43.630Q18.286-43.804 18.093-43.884Q17.899-43.964 17.691-43.964L17.691-44.245L19.267-44.245L19.267-43.964Q19.017-43.964 18.826-43.870Q18.634-43.776 18.559-43.565L17.076-39.422Q17.042-39.323 16.942-39.323L16.864-39.323Q16.765-39.323 16.724-39.422L15.445-43.011L14.164-39.422Q14.147-39.378 14.109-39.350Q14.071-39.323 14.023-39.323L13.945-39.323Q13.853-39.323 13.812-39.422\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(160.363 99.17)\">\u003Cpath d=\"M20.893-39.463L19.157-39.463L19.157-39.743Q19.386-39.743 19.535-39.777Q19.683-39.812 19.683-39.952L19.683-41.801Q19.683-42.071 19.576-42.132Q19.468-42.194 19.157-42.194L19.157-42.474L20.186-42.549L20.186-41.842Q20.316-42.150 20.558-42.349Q20.801-42.549 21.119-42.549Q21.338-42.549 21.509-42.425Q21.680-42.300 21.680-42.088Q21.680-41.951 21.580-41.852Q21.481-41.753 21.348-41.753Q21.211-41.753 21.112-41.852Q21.013-41.951 21.013-42.088Q21.013-42.228 21.112-42.327Q20.822-42.327 20.622-42.131Q20.422-41.934 20.329-41.640Q20.237-41.346 20.237-41.066L20.237-39.952Q20.237-39.743 20.893-39.743L20.893-39.463M23.881-39.463L22.329-39.463L22.329-39.743Q22.555-39.743 22.703-39.777Q22.852-39.812 22.852-39.952L22.852-41.801Q22.852-41.989 22.804-42.073Q22.756-42.156 22.659-42.175Q22.561-42.194 22.350-42.194L22.350-42.474L23.406-42.549L23.406-39.952Q23.406-39.812 23.537-39.777Q23.669-39.743 23.881-39.743L23.881-39.463M22.609-43.770Q22.609-43.941 22.732-44.060Q22.855-44.180 23.026-44.180Q23.194-44.180 23.317-44.060Q23.440-43.941 23.440-43.770Q23.440-43.595 23.317-43.472Q23.194-43.349 23.026-43.349Q22.855-43.349 22.732-43.472Q22.609-43.595 22.609-43.770M25.053-40.304L25.053-42.201L24.414-42.201L24.414-42.423Q24.732-42.423 24.949-42.633Q25.166-42.843 25.267-43.153Q25.368-43.462 25.368-43.770L25.634-43.770L25.634-42.481L26.711-42.481L26.711-42.201L25.634-42.201L25.634-40.317Q25.634-40.041 25.738-39.842Q25.843-39.644 26.102-39.644Q26.260-39.644 26.366-39.748Q26.472-39.853 26.521-40.006Q26.571-40.160 26.571-40.317L26.571-40.731L26.837-40.731L26.837-40.304Q26.837-40.078 26.738-39.868Q26.639-39.658 26.454-39.526Q26.270-39.395 26.041-39.395Q25.603-39.395 25.328-39.632Q25.053-39.870 25.053-40.304M27.606-40.998Q27.606-41.319 27.731-41.608Q27.856-41.897 28.081-42.120Q28.307-42.344 28.603-42.464Q28.898-42.584 29.216-42.584Q29.544-42.584 29.806-42.484Q30.067-42.385 30.243-42.203Q30.419-42.020 30.513-41.762Q30.607-41.504 30.607-41.172Q30.607-41.080 30.525-41.059L28.269-41.059L28.269-40.998Q28.269-40.410 28.553-40.027Q28.837-39.644 29.404-39.644Q29.725-39.644 29.994-39.837Q30.262-40.030 30.351-40.345Q30.358-40.386 30.433-40.400L30.525-40.400Q30.607-40.376 30.607-40.304Q30.607-40.297 30.600-40.270Q30.488-39.873 30.117-39.634Q29.746-39.395 29.322-39.395Q28.885-39.395 28.485-39.603Q28.085-39.812 27.846-40.179Q27.606-40.546 27.606-40.998M28.276-41.268L30.091-41.268Q30.091-41.545 29.994-41.797Q29.896-42.050 29.698-42.206Q29.500-42.361 29.216-42.361Q28.939-42.361 28.726-42.203Q28.512-42.044 28.394-41.789Q28.276-41.534 28.276-41.268M33.079-40.717L31.021-40.717L31.021-41.220L33.079-41.220L33.079-40.717M34.688-39.463L34.422-39.463L34.422-43.571Q34.422-43.841 34.314-43.903Q34.206-43.964 33.895-43.964L33.895-44.245L34.975-44.320L34.975-42.150Q35.184-42.341 35.469-42.445Q35.755-42.549 36.052-42.549Q36.370-42.549 36.667-42.428Q36.965-42.307 37.187-42.091Q37.409-41.876 37.536-41.591Q37.662-41.305 37.662-40.974Q37.662-40.529 37.423-40.165Q37.183-39.801 36.790-39.598Q36.397-39.395 35.953-39.395Q35.758-39.395 35.569-39.451Q35.379-39.507 35.218-39.612Q35.058-39.716 34.917-39.877L34.688-39.463M35.003-41.808L35.003-40.191Q35.140-39.931 35.381-39.774Q35.621-39.617 35.898-39.617Q36.192-39.617 36.404-39.724Q36.616-39.832 36.749-40.024Q36.883-40.215 36.941-40.454Q36.999-40.693 36.999-40.974Q36.999-41.333 36.905-41.637Q36.811-41.941 36.584-42.134Q36.356-42.327 35.991-42.327Q35.690-42.327 35.423-42.191Q35.157-42.054 35.003-41.808M38.356-40.191Q38.356-40.523 38.580-40.750Q38.804-40.977 39.147-41.105Q39.491-41.234 39.863-41.286Q40.236-41.339 40.540-41.339L40.540-41.592Q40.540-41.797 40.432-41.977Q40.325-42.156 40.143-42.259Q39.962-42.361 39.754-42.361Q39.347-42.361 39.111-42.269Q39.200-42.232 39.246-42.148Q39.292-42.064 39.292-41.962Q39.292-41.866 39.246-41.787Q39.200-41.709 39.120-41.664Q39.039-41.620 38.951-41.620Q38.800-41.620 38.699-41.717Q38.599-41.815 38.599-41.962Q38.599-42.584 39.754-42.584Q39.966-42.584 40.215-42.520Q40.465-42.457 40.666-42.338Q40.868-42.218 40.995-42.033Q41.121-41.849 41.121-41.606L41.121-40.030Q41.121-39.914 41.183-39.818Q41.244-39.723 41.357-39.723Q41.466-39.723 41.531-39.817Q41.596-39.911 41.596-40.030L41.596-40.478L41.863-40.478L41.863-40.030Q41.863-39.760 41.635-39.595Q41.408-39.429 41.128-39.429Q40.919-39.429 40.783-39.583Q40.646-39.736 40.622-39.952Q40.475-39.685 40.193-39.540Q39.911-39.395 39.586-39.395Q39.309-39.395 39.026-39.470Q38.742-39.545 38.549-39.724Q38.356-39.904 38.356-40.191M38.971-40.191Q38.971-40.017 39.072-39.887Q39.173-39.757 39.328-39.687Q39.484-39.617 39.648-39.617Q39.867-39.617 40.075-39.714Q40.284-39.812 40.412-39.993Q40.540-40.174 40.540-40.400L40.540-41.128Q40.215-41.128 39.850-41.037Q39.484-40.946 39.227-40.734Q38.971-40.523 38.971-40.191M42.280-40.974Q42.280-41.302 42.415-41.603Q42.550-41.903 42.786-42.124Q43.021-42.344 43.326-42.464Q43.630-42.584 43.954-42.584Q44.460-42.584 44.809-42.481Q45.158-42.379 45.158-42.003Q45.158-41.856 45.060-41.755Q44.963-41.654 44.816-41.654Q44.662-41.654 44.563-41.753Q44.464-41.852 44.464-42.003Q44.464-42.191 44.604-42.283Q44.402-42.334 43.961-42.334Q43.606-42.334 43.377-42.138Q43.148-41.941 43.047-41.632Q42.946-41.322 42.946-40.974Q42.946-40.625 43.073-40.319Q43.199-40.013 43.454-39.829Q43.708-39.644 44.064-39.644Q44.286-39.644 44.471-39.728Q44.655-39.812 44.790-39.967Q44.925-40.123 44.983-40.331Q44.997-40.386 45.052-40.386L45.164-40.386Q45.195-40.386 45.217-40.362Q45.240-40.338 45.240-40.304L45.240-40.283Q45.154-39.996 44.966-39.798Q44.778-39.600 44.513-39.497Q44.248-39.395 43.954-39.395Q43.524-39.395 43.136-39.601Q42.748-39.808 42.514-40.171Q42.280-40.533 42.280-40.974\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(160.363 99.17)\">\u003Cpath d=\"M47.247-39.463L45.664-39.463L45.664-39.743Q45.893-39.743 46.042-39.777Q46.190-39.812 46.190-39.952L46.190-43.571Q46.190-43.841 46.083-43.903Q45.975-43.964 45.664-43.964L45.664-44.245L46.744-44.320L46.744-41.032L47.729-41.801Q47.934-41.938 47.934-42.088Q47.934-42.132 47.893-42.167Q47.852-42.201 47.807-42.201L47.807-42.481L49.171-42.481L49.171-42.201Q48.682-42.201 48.163-41.801L47.606-41.367L48.583-40.143Q48.785-39.897 48.918-39.820Q49.051-39.743 49.338-39.743L49.338-39.463L47.906-39.463L47.906-39.743Q48.094-39.743 48.094-39.856Q48.094-39.952 47.940-40.143L47.206-41.052L46.724-40.673L46.724-39.952Q46.724-39.815 46.872-39.779Q47.021-39.743 47.247-39.743\" 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-size=\"8\">\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M14.044-39.463L11.907-39.463Q11.872-39.463 11.841-39.504Q11.810-39.545 11.810-39.592L11.833-39.693Q11.845-39.744 11.931-39.760Q12.372-39.760 12.530-39.799Q12.689-39.838 12.732-40.065L13.810-44.385Q13.833-44.455 13.833-44.518Q13.833-44.580 13.771-44.600Q13.626-44.631 13.204-44.631Q13.099-44.658 13.099-44.760L13.130-44.861Q13.138-44.908 13.220-44.928L15.732-44.928Q16.138-44.928 16.581-44.805Q17.024-44.682 17.329-44.406Q17.634-44.131 17.634-43.709Q17.634-43.322 17.364-43.006Q17.095-42.690 16.696-42.481Q16.298-42.272 15.923-42.182Q16.232-42.057 16.429-41.818Q16.626-41.580 16.626-41.264Q16.626-41.221 16.624-41.193Q16.622-41.166 16.618-41.135L16.540-40.440Q16.509-40.151 16.509-40.029Q16.509-39.815 16.577-39.684Q16.646-39.553 16.853-39.553Q17.107-39.553 17.302-39.777Q17.497-40.002 17.564-40.279Q17.571-40.326 17.657-40.342L17.739-40.342Q17.833-40.315 17.833-40.233Q17.833-40.225 17.825-40.190Q17.774-39.975 17.630-39.764Q17.485-39.553 17.278-39.424Q17.071-39.295 16.845-39.295Q16.540-39.295 16.271-39.381Q16.001-39.467 15.829-39.666Q15.657-39.865 15.657-40.174Q15.657-40.283 15.700-40.463L15.876-41.158Q15.899-41.279 15.899-41.373Q15.899-41.709 15.638-41.891Q15.376-42.072 15.013-42.072L13.962-42.072L13.442-40.006Q13.427-39.912 13.427-39.869Q13.427-39.830 13.440-39.817Q13.454-39.803 13.489-39.791Q13.634-39.760 14.060-39.760Q14.153-39.733 14.153-39.639L14.130-39.533Q14.122-39.483 14.044-39.463M14.524-44.326L14.028-42.326L14.970-42.326Q15.314-42.326 15.630-42.395Q15.946-42.463 16.220-42.631Q16.407-42.756 16.544-42.957Q16.681-43.158 16.749-43.391Q16.817-43.623 16.817-43.846Q16.817-44.303 16.450-44.467Q16.083-44.631 15.548-44.631L14.931-44.631Q14.759-44.631 14.696-44.617Q14.634-44.604 14.601-44.545Q14.567-44.486 14.524-44.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M20.038-37.463L18.862-37.463L18.862-45.463L20.038-45.463L20.038-45.096L19.229-45.096L19.229-37.830L20.038-37.830\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M21.416-39.197Q21.416-39.260 21.447-39.303L25.193-44.561Q24.736-44.326 24.169-44.326Q23.517-44.326 22.912-44.647Q23.056-44.299 23.056-43.854Q23.056-43.494 22.935-43.123Q22.814-42.752 22.564-42.496Q22.314-42.240 21.951-42.240Q21.564-42.240 21.281-42.484Q20.998-42.729 20.851-43.102Q20.705-43.475 20.705-43.854Q20.705-44.233 20.851-44.604Q20.998-44.975 21.281-45.219Q21.564-45.463 21.951-45.463Q22.267-45.463 22.537-45.225Q22.873-44.920 23.302-44.748Q23.732-44.576 24.169-44.576Q24.662-44.576 25.080-44.789Q25.498-45.002 25.798-45.401Q25.841-45.463 25.935-45.463Q26.009-45.463 26.064-45.408Q26.119-45.354 26.119-45.279Q26.119-45.217 26.087-45.174L21.744-39.080Q21.697-39.014 21.599-39.014Q21.517-39.014 21.466-39.065Q21.416-39.115 21.416-39.197M21.951-42.494Q22.224-42.494 22.412-42.719Q22.599-42.943 22.687-43.266Q22.775-43.588 22.775-43.854Q22.775-44.111 22.687-44.434Q22.599-44.756 22.412-44.981Q22.224-45.205 21.951-45.205Q21.564-45.205 21.421-44.777Q21.279-44.350 21.279-43.854Q21.279-43.346 21.419-42.920Q21.560-42.494 21.951-42.494M25.728-39.014Q25.341-39.014 25.058-39.260Q24.775-39.506 24.627-39.879Q24.478-40.252 24.478-40.631Q24.478-40.904 24.564-41.192Q24.650-41.479 24.804-41.713Q24.959-41.947 25.195-42.094Q25.431-42.240 25.728-42.240Q26.009-42.240 26.216-42.088Q26.423-41.936 26.562-41.693Q26.701-41.451 26.767-41.170Q26.834-40.889 26.834-40.631Q26.834-40.272 26.712-39.899Q26.591-39.526 26.341-39.270Q26.091-39.014 25.728-39.014M25.728-39.272Q26.002-39.272 26.189-39.496Q26.377-39.721 26.464-40.043Q26.552-40.365 26.552-40.631Q26.552-40.889 26.464-41.211Q26.377-41.533 26.189-41.758Q26.002-41.983 25.728-41.983Q25.337-41.983 25.197-41.553Q25.056-41.123 25.056-40.631Q25.056-40.123 25.193-39.697Q25.330-39.272 25.728-39.272\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M27.538-39.701L27.538-39.791Q27.596-39.998 27.788-40.022L28.499-40.022L28.499-42.350L27.788-42.350Q27.592-42.373 27.538-42.592L27.538-42.678Q27.596-42.889 27.788-42.912L28.889-42.912Q29.088-42.893 29.139-42.678L29.139-42.350Q29.401-42.635 29.756-42.793Q30.112-42.951 30.499-42.951Q30.792-42.951 31.026-42.817Q31.260-42.682 31.260-42.416Q31.260-42.248 31.151-42.131Q31.042-42.014 30.874-42.014Q30.721-42.014 30.606-42.125Q30.491-42.236 30.491-42.393Q30.116-42.393 29.801-42.192Q29.487-41.990 29.313-41.656Q29.139-41.322 29.139-40.943L29.139-40.022L30.085-40.022Q30.292-39.998 30.331-39.791L30.331-39.701Q30.292-39.486 30.085-39.463L27.788-39.463Q27.596-39.486 27.538-39.701M32.147-39.662L32.147-40.576Q32.174-40.783 32.385-40.807L32.553-40.807Q32.717-40.783 32.776-40.623Q32.979-39.983 33.706-39.983Q33.913-39.983 34.141-40.018Q34.370-40.053 34.538-40.168Q34.706-40.283 34.706-40.486Q34.706-40.697 34.483-40.811Q34.260-40.924 33.987-40.967L33.288-41.080Q32.147-41.291 32.147-42.014Q32.147-42.303 32.292-42.492Q32.436-42.682 32.676-42.789Q32.917-42.897 33.172-42.936Q33.428-42.975 33.706-42.975Q33.956-42.975 34.149-42.945Q34.342-42.916 34.506-42.838Q34.585-42.955 34.713-42.975L34.792-42.975Q34.889-42.963 34.952-42.901Q35.014-42.838 35.026-42.744L35.026-42.037Q35.014-41.943 34.952-41.877Q34.889-41.811 34.792-41.799L34.624-41.799Q34.530-41.811 34.463-41.877Q34.397-41.943 34.385-42.037Q34.385-42.416 33.690-42.416Q33.342-42.416 33.024-42.334Q32.706-42.252 32.706-42.006Q32.706-41.740 33.377-41.631L34.081-41.510Q34.565-41.428 34.915-41.180Q35.264-40.932 35.264-40.486Q35.264-40.096 35.028-39.854Q34.792-39.611 34.442-39.518Q34.092-39.424 33.706-39.424Q33.127-39.424 32.729-39.678Q32.659-39.553 32.610-39.496Q32.561-39.440 32.456-39.424L32.385-39.424Q32.170-39.447 32.147-39.662M35.877-37.920L35.877-38.006Q35.920-38.225 36.127-38.248L36.549-38.248L36.549-42.350L36.127-42.350Q35.920-42.373 35.877-42.592L35.877-42.678Q35.924-42.889 36.127-42.912L36.944-42.912Q37.139-42.893 37.190-42.678L37.190-42.608Q37.401-42.776 37.665-42.863Q37.928-42.951 38.198-42.951Q38.538-42.951 38.835-42.807Q39.131-42.662 39.346-42.410Q39.561-42.158 39.676-41.846Q39.792-41.533 39.792-41.190Q39.792-40.725 39.565-40.315Q39.338-39.904 38.952-39.664Q38.565-39.424 38.096-39.424Q37.577-39.424 37.190-39.791L37.190-38.248L37.616-38.248Q37.823-38.225 37.862-38.006L37.862-37.920Q37.823-37.709 37.616-37.686L36.127-37.686Q35.924-37.709 35.877-37.920M38.053-39.983Q38.362-39.983 38.612-40.152Q38.862-40.322 39.006-40.604Q39.151-40.885 39.151-41.190Q39.151-41.479 39.026-41.758Q38.901-42.037 38.669-42.215Q38.436-42.393 38.135-42.393Q37.815-42.393 37.553-42.207Q37.292-42.022 37.190-41.721L37.190-40.869Q37.280-40.502 37.501-40.242Q37.721-39.983 38.053-39.983\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M41.424-37.463L40.249-37.463L40.249-37.830L41.057-37.830L41.057-45.096L40.249-45.096L40.249-45.463L41.424-45.463\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M50.748-40.440L45.435-40.440Q45.357-40.447 45.308-40.496Q45.260-40.545 45.260-40.623Q45.260-40.693 45.307-40.744Q45.353-40.795 45.435-40.807L50.748-40.807Q50.822-40.795 50.869-40.744Q50.916-40.693 50.916-40.623Q50.916-40.545 50.867-40.496Q50.818-40.447 50.748-40.440M50.748-42.127L45.435-42.127Q45.357-42.135 45.308-42.184Q45.260-42.233 45.260-42.311Q45.260-42.381 45.307-42.432Q45.353-42.483 45.435-42.494L50.748-42.494Q50.822-42.483 50.869-42.432Q50.916-42.381 50.916-42.311Q50.916-42.233 50.867-42.184Q50.818-42.135 50.748-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 98.74)\">\u003Cpath d=\"M55.416-39.686L54.530-42.350L54.209-42.350Q54.010-42.373 53.959-42.592L53.959-42.678Q54.010-42.889 54.209-42.912L55.369-42.912Q55.565-42.893 55.615-42.678L55.615-42.592Q55.565-42.373 55.369-42.350L55.088-42.350L55.881-39.975L56.670-42.350L56.393-42.350Q56.194-42.373 56.143-42.592L56.143-42.678Q56.194-42.889 56.393-42.912L57.553-42.912Q57.748-42.889 57.799-42.678L57.799-42.592Q57.748-42.373 57.553-42.350L57.233-42.350L56.346-39.686Q56.303-39.572 56.201-39.498Q56.100-39.424 55.975-39.424L55.783-39.424Q55.666-39.424 55.563-39.496Q55.459-39.568 55.416-39.686M58.412-40.576Q58.412-41.022 58.826-41.279Q59.240-41.537 59.781-41.637Q60.322-41.736 60.830-41.744Q60.830-41.959 60.696-42.111Q60.561-42.264 60.354-42.340Q60.147-42.416 59.936-42.416Q59.592-42.416 59.432-42.393L59.432-42.334Q59.432-42.166 59.313-42.051Q59.194-41.936 59.030-41.936Q58.854-41.936 58.739-42.059Q58.623-42.182 58.623-42.350Q58.623-42.756 59.004-42.865Q59.385-42.975 59.944-42.975Q60.213-42.975 60.481-42.897Q60.748-42.818 60.973-42.668Q61.197-42.518 61.334-42.297Q61.471-42.076 61.471-41.799L61.471-40.080Q61.471-40.022 61.998-40.022Q62.194-40.002 62.244-39.791L62.244-39.701Q62.194-39.486 61.998-39.463L61.854-39.463Q61.510-39.463 61.281-39.510Q61.053-39.557 60.908-39.744Q60.447-39.424 59.740-39.424Q59.405-39.424 59.100-39.565Q58.795-39.705 58.604-39.967Q58.412-40.229 58.412-40.576M59.053-40.568Q59.053-40.295 59.295-40.139Q59.537-39.983 59.822-39.983Q60.041-39.983 60.274-40.041Q60.506-40.100 60.668-40.238Q60.830-40.377 60.830-40.600L60.830-41.190Q60.549-41.190 60.133-41.133Q59.717-41.076 59.385-40.938Q59.053-40.799 59.053-40.568M62.701-39.701L62.701-39.791Q62.752-39.998 62.947-40.022L64.053-40.022L64.053-43.791L62.947-43.791Q62.752-43.815 62.701-44.029L62.701-44.119Q62.752-44.326 62.947-44.350L64.444-44.350Q64.635-44.326 64.694-44.119L64.694-40.022L65.795-40.022Q65.994-39.998 66.045-39.791L66.045-39.701Q65.994-39.486 65.795-39.463L62.947-39.463Q62.752-39.486 62.701-39.701M66.682-39.701L66.682-39.791Q66.721-39.998 66.932-40.022L67.240-40.022L67.240-43.791L66.932-43.791Q66.721-43.815 66.682-44.029L66.682-44.119Q66.721-44.326 66.932-44.350L70.139-44.350Q70.334-44.326 70.385-44.119L70.385-43.279Q70.334-43.065 70.139-43.037L69.994-43.037Q69.799-43.065 69.744-43.279L69.744-43.791L67.881-43.791L67.881-42.272L68.858-42.272L68.858-42.486Q68.908-42.693 69.108-42.721L69.252-42.721Q69.447-42.693 69.498-42.486L69.498-41.502Q69.447-41.287 69.252-41.264L69.108-41.264Q68.908-41.287 68.858-41.502L68.858-41.709L67.881-41.709L67.881-40.022L69.924-40.022L69.924-40.662Q69.975-40.869 70.170-40.897L70.315-40.897Q70.510-40.869 70.561-40.662L70.561-39.701Q70.510-39.483 70.315-39.463L66.932-39.463Q66.721-39.486 66.682-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588 69.227h233.313\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(160.572 122.674)\">\u003Cpath d=\"M13.945-39.463L11.812-39.463L11.812-39.743Q12.533-39.743 12.533-39.952L12.533-43.753Q12.533-43.964 11.812-43.964L11.812-44.245L14.478-44.245Q14.888-44.245 15.309-44.091Q15.729-43.937 16.013-43.633Q16.296-43.329 16.296-42.915Q16.296-42.597 16.129-42.351Q15.961-42.105 15.685-41.939Q15.408-41.774 15.086-41.690Q14.765-41.606 14.478-41.606L13.224-41.606L13.224-39.952Q13.224-39.743 13.945-39.743L13.945-39.463M13.196-43.753L13.196-41.856L14.283-41.856Q14.892-41.856 15.206-42.093Q15.521-42.331 15.521-42.915Q15.521-43.308 15.375-43.542Q15.230-43.776 14.958-43.870Q14.687-43.964 14.283-43.964L13.562-43.964Q13.374-43.964 13.285-43.930Q13.196-43.896 13.196-43.753M17.277-41.856Q17.277-42.382 17.494-42.850Q17.711-43.318 18.094-43.664Q18.477-44.009 18.961-44.197Q19.444-44.385 19.974-44.385Q20.377-44.385 20.742-44.228Q21.106-44.070 21.389-43.776L21.813-44.358Q21.847-44.385 21.871-44.385L21.919-44.385Q21.950-44.385 21.974-44.361Q21.998-44.337 21.998-44.306L21.998-42.443Q21.998-42.420 21.972-42.394Q21.946-42.368 21.919-42.368L21.793-42.368Q21.731-42.368 21.717-42.443Q21.687-42.758 21.552-43.062Q21.417-43.366 21.201-43.600Q20.986-43.835 20.697-43.970Q20.408-44.105 20.080-44.105Q19.438-44.105 18.980-43.811Q18.522-43.517 18.289-43.004Q18.057-42.491 18.057-41.856Q18.057-41.384 18.187-40.975Q18.316-40.567 18.576-40.254Q18.836-39.942 19.215-39.772Q19.595-39.603 20.087-39.603Q20.415-39.603 20.709-39.719Q21.003-39.836 21.237-40.051Q21.471-40.266 21.601-40.555Q21.731-40.844 21.731-41.172Q21.731-41.199 21.758-41.223Q21.786-41.247 21.806-41.247L21.919-41.247Q21.957-41.247 21.977-41.222Q21.998-41.196 21.998-41.158Q21.998-40.762 21.832-40.425Q21.666-40.088 21.379-39.841Q21.092-39.593 20.723-39.458Q20.354-39.323 19.974-39.323Q19.455-39.323 18.962-39.513Q18.470-39.702 18.091-40.046Q17.711-40.389 17.494-40.858Q17.277-41.326 17.277-41.856\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(160.572 122.674)\">\u003Cpath d=\"M26.086-40.297L26.086-41.801Q26.086-42.071 25.978-42.132Q25.870-42.194 25.559-42.194L25.559-42.474L26.667-42.549L26.667-40.317L26.667-40.297Q26.667-40.017 26.718-39.873Q26.769-39.730 26.911-39.673Q27.053-39.617 27.340-39.617Q27.593-39.617 27.798-39.757Q28.003-39.897 28.119-40.123Q28.236-40.348 28.236-40.598L28.236-41.801Q28.236-42.071 28.128-42.132Q28.020-42.194 27.709-42.194L27.709-42.474L28.817-42.549L28.817-40.136Q28.817-39.945 28.870-39.863Q28.923-39.781 29.023-39.762Q29.124-39.743 29.340-39.743L29.340-39.463L28.263-39.395L28.263-39.959Q28.154-39.777 28.008-39.654Q27.863-39.531 27.677-39.463Q27.490-39.395 27.289-39.395Q26.086-39.395 26.086-40.297M31.572-38.106L29.941-38.106L29.941-38.386Q30.170-38.386 30.319-38.421Q30.468-38.455 30.468-38.595L30.468-41.941Q30.468-42.112 30.331-42.153Q30.194-42.194 29.941-42.194L29.941-42.474L31.021-42.549L31.021-42.143Q31.243-42.344 31.530-42.447Q31.818-42.549 32.125-42.549Q32.552-42.549 32.916-42.336Q33.280-42.122 33.494-41.758Q33.708-41.394 33.708-40.974Q33.708-40.529 33.468-40.165Q33.229-39.801 32.836-39.598Q32.443-39.395 31.999-39.395Q31.732-39.395 31.484-39.495Q31.237-39.596 31.049-39.777L31.049-38.595Q31.049-38.458 31.197-38.422Q31.346-38.386 31.572-38.386L31.572-38.106M31.049-41.794L31.049-40.184Q31.182-39.931 31.425-39.774Q31.667-39.617 31.944-39.617Q32.272-39.617 32.525-39.818Q32.778-40.020 32.911-40.338Q33.045-40.656 33.045-40.974Q33.045-41.203 32.980-41.432Q32.915-41.661 32.787-41.859Q32.658-42.057 32.464-42.177Q32.269-42.296 32.036-42.296Q31.742-42.296 31.474-42.167Q31.206-42.037 31.049-41.794\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(160.572 122.674)\">\u003Cpath d=\"M34.559-40.974Q34.559-41.312 34.700-41.603Q34.840-41.893 35.084-42.107Q35.328-42.320 35.633-42.435Q35.937-42.549 36.262-42.549Q36.532-42.549 36.795-42.450Q37.058-42.351 37.249-42.173L37.249-43.571Q37.249-43.841 37.142-43.903Q37.034-43.964 36.723-43.964L36.723-44.245L37.800-44.320L37.800-40.136Q37.800-39.948 37.854-39.865Q37.909-39.781 38.010-39.762Q38.111-39.743 38.326-39.743L38.326-39.463L37.219-39.395L37.219-39.812Q36.802-39.395 36.176-39.395Q35.745-39.395 35.373-39.607Q35-39.818 34.780-40.179Q34.559-40.540 34.559-40.974M36.234-39.617Q36.443-39.617 36.629-39.689Q36.815-39.760 36.969-39.897Q37.123-40.034 37.219-40.212L37.219-41.821Q37.133-41.968 36.988-42.088Q36.843-42.208 36.673-42.267Q36.504-42.327 36.323-42.327Q35.763-42.327 35.494-41.938Q35.226-41.548 35.226-40.967Q35.226-40.396 35.460-40.006Q35.694-39.617 36.234-39.617M39.034-40.191Q39.034-40.523 39.257-40.750Q39.481-40.977 39.825-41.105Q40.168-41.234 40.541-41.286Q40.913-41.339 41.218-41.339L41.218-41.592Q41.218-41.797 41.110-41.977Q41.002-42.156 40.821-42.259Q40.640-42.361 40.432-42.361Q40.025-42.361 39.789-42.269Q39.878-42.232 39.924-42.148Q39.970-42.064 39.970-41.962Q39.970-41.866 39.924-41.787Q39.878-41.709 39.797-41.664Q39.717-41.620 39.628-41.620Q39.478-41.620 39.377-41.717Q39.276-41.815 39.276-41.962Q39.276-42.584 40.432-42.584Q40.643-42.584 40.893-42.520Q41.142-42.457 41.344-42.338Q41.546-42.218 41.672-42.033Q41.799-41.849 41.799-41.606L41.799-40.030Q41.799-39.914 41.860-39.818Q41.922-39.723 42.035-39.723Q42.144-39.723 42.209-39.817Q42.274-39.911 42.274-40.030L42.274-40.478L42.540-40.478L42.540-40.030Q42.540-39.760 42.313-39.595Q42.086-39.429 41.806-39.429Q41.597-39.429 41.460-39.583Q41.324-39.736 41.300-39.952Q41.153-39.685 40.871-39.540Q40.589-39.395 40.264-39.395Q39.987-39.395 39.703-39.470Q39.420-39.545 39.227-39.724Q39.034-39.904 39.034-40.191M39.649-40.191Q39.649-40.017 39.750-39.887Q39.850-39.757 40.006-39.687Q40.162-39.617 40.326-39.617Q40.544-39.617 40.753-39.714Q40.961-39.812 41.089-39.993Q41.218-40.174 41.218-40.400L41.218-41.128Q40.893-41.128 40.527-41.037Q40.162-40.946 39.905-40.734Q39.649-40.523 39.649-40.191M43.484-40.304L43.484-42.201L42.845-42.201L42.845-42.423Q43.162-42.423 43.380-42.633Q43.597-42.843 43.697-43.153Q43.798-43.462 43.798-43.770L44.065-43.770L44.065-42.481L45.141-42.481L45.141-42.201L44.065-42.201L44.065-40.317Q44.065-40.041 44.169-39.842Q44.273-39.644 44.533-39.644Q44.690-39.644 44.796-39.748Q44.902-39.853 44.952-40.006Q45.001-40.160 45.001-40.317L45.001-40.731L45.268-40.731L45.268-40.304Q45.268-40.078 45.169-39.868Q45.070-39.658 44.885-39.526Q44.701-39.395 44.472-39.395Q44.034-39.395 43.759-39.632Q43.484-39.870 43.484-40.304M46.037-40.998Q46.037-41.319 46.162-41.608Q46.287-41.897 46.512-42.120Q46.738-42.344 47.033-42.464Q47.329-42.584 47.647-42.584Q47.975-42.584 48.236-42.484Q48.498-42.385 48.674-42.203Q48.850-42.020 48.944-41.762Q49.038-41.504 49.038-41.172Q49.038-41.080 48.956-41.059L46.700-41.059L46.700-40.998Q46.700-40.410 46.984-40.027Q47.267-39.644 47.835-39.644Q48.156-39.644 48.424-39.837Q48.693-40.030 48.782-40.345Q48.788-40.386 48.864-40.400L48.956-40.400Q49.038-40.376 49.038-40.304Q49.038-40.297 49.031-40.270Q48.918-39.873 48.547-39.634Q48.177-39.395 47.753-39.395Q47.315-39.395 46.915-39.603Q46.516-39.812 46.276-40.179Q46.037-40.546 46.037-40.998M46.707-41.268L48.522-41.268Q48.522-41.545 48.424-41.797Q48.327-42.050 48.129-42.206Q47.931-42.361 47.647-42.361Q47.370-42.361 47.156-42.203Q46.943-42.044 46.825-41.789Q46.707-41.534 46.707-41.268\" 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-size=\"8\">\u003Cg transform=\"translate(214.083 123.369)\">\u003Cpath d=\"M11.603-39.701L11.603-39.791Q11.642-39.998 11.853-40.022L12.161-40.022L12.161-43.791L11.853-43.791Q11.642-43.815 11.603-44.029L11.603-44.119Q11.642-44.326 11.853-44.350L13.802-44.350Q14.200-44.350 14.546-44.149Q14.892-43.947 15.099-43.602Q15.306-43.256 15.306-42.854Q15.306-42.447 15.101-42.104Q14.896-41.760 14.550-41.555Q14.204-41.350 13.802-41.350L12.802-41.350L12.802-40.022L13.114-40.022Q13.325-39.998 13.364-39.791L13.364-39.701Q13.325-39.486 13.114-39.463L11.853-39.463Q11.642-39.486 11.603-39.701M12.802-43.791L12.802-41.912L13.642-41.912Q13.903-41.912 14.140-42.035Q14.376-42.158 14.521-42.373Q14.665-42.588 14.665-42.854Q14.665-43.123 14.521-43.334Q14.376-43.545 14.140-43.668Q13.903-43.791 13.642-43.791L12.802-43.791M17.931-39.385Q17.482-39.385 17.116-39.609Q16.751-39.834 16.497-40.217Q16.243-40.600 16.118-41.043Q15.993-41.486 15.993-41.912Q15.993-42.338 16.118-42.777Q16.243-43.217 16.497-43.600Q16.751-43.983 17.110-44.207Q17.470-44.432 17.931-44.432Q18.208-44.432 18.466-44.340Q18.724-44.248 18.939-44.080L19.071-44.318Q19.099-44.369 19.153-44.401Q19.208-44.432 19.267-44.432L19.345-44.432Q19.439-44.420 19.501-44.361Q19.564-44.303 19.575-44.197L19.575-42.869Q19.564-42.768 19.501-42.705Q19.439-42.643 19.345-42.631L19.177-42.631Q19.075-42.643 19.013-42.709Q18.950-42.776 18.939-42.869Q18.899-43.135 18.776-43.359Q18.653-43.584 18.450-43.727Q18.247-43.869 17.985-43.869Q17.653-43.869 17.401-43.686Q17.149-43.502 16.978-43.201Q16.806-42.901 16.720-42.559Q16.634-42.217 16.634-41.912Q16.634-41.608 16.718-41.266Q16.802-40.924 16.974-40.621Q17.146-40.318 17.403-40.131Q17.661-39.943 17.993-39.943Q18.376-39.943 18.657-40.217Q18.939-40.490 18.939-40.877Q18.966-41.088 19.177-41.111L19.345-41.111Q19.575-41.072 19.575-40.846Q19.575-40.529 19.439-40.258Q19.302-39.986 19.067-39.789Q18.833-39.592 18.542-39.488Q18.251-39.385 17.931-39.385\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 123.369)\">\u003Cpath d=\"M28.241-40.440L22.928-40.440Q22.850-40.447 22.801-40.496Q22.753-40.545 22.753-40.623Q22.753-40.693 22.800-40.744Q22.846-40.795 22.928-40.807L28.241-40.807Q28.315-40.795 28.362-40.744Q28.409-40.693 28.409-40.623Q28.409-40.545 28.360-40.496Q28.311-40.447 28.241-40.440M28.241-42.127L22.928-42.127Q22.850-42.135 22.801-42.184Q22.753-42.233 22.753-42.311Q22.753-42.381 22.800-42.432Q22.846-42.483 22.928-42.494L28.241-42.494Q28.315-42.483 28.362-42.432Q28.409-42.381 28.409-42.311Q28.409-42.233 28.360-42.184Q28.311-42.135 28.241-42.127\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(214.083 123.369)\">\u003Cpath d=\"M32.909-39.686L32.023-42.350L31.702-42.350Q31.503-42.373 31.452-42.592L31.452-42.678Q31.503-42.889 31.702-42.912L32.862-42.912Q33.058-42.893 33.108-42.678L33.108-42.592Q33.058-42.373 32.862-42.350L32.581-42.350L33.374-39.975L34.163-42.350L33.886-42.350Q33.687-42.373 33.636-42.592L33.636-42.678Q33.687-42.889 33.886-42.912L35.046-42.912Q35.241-42.889 35.292-42.678L35.292-42.592Q35.241-42.373 35.046-42.350L34.726-42.350L33.839-39.686Q33.796-39.572 33.694-39.498Q33.593-39.424 33.468-39.424L33.276-39.424Q33.159-39.424 33.056-39.496Q32.952-39.568 32.909-39.686M35.905-40.576Q35.905-41.022 36.319-41.279Q36.733-41.537 37.274-41.637Q37.816-41.736 38.323-41.744Q38.323-41.959 38.189-42.111Q38.054-42.264 37.847-42.340Q37.640-42.416 37.429-42.416Q37.085-42.416 36.925-42.393L36.925-42.334Q36.925-42.166 36.806-42.051Q36.687-41.936 36.523-41.936Q36.347-41.936 36.232-42.059Q36.116-42.182 36.116-42.350Q36.116-42.756 36.497-42.865Q36.878-42.975 37.437-42.975Q37.706-42.975 37.974-42.897Q38.241-42.818 38.466-42.668Q38.691-42.518 38.827-42.297Q38.964-42.076 38.964-41.799L38.964-40.080Q38.964-40.022 39.491-40.022Q39.687-40.002 39.737-39.791L39.737-39.701Q39.687-39.486 39.491-39.463L39.347-39.463Q39.003-39.463 38.774-39.510Q38.546-39.557 38.401-39.744Q37.941-39.424 37.233-39.424Q36.898-39.424 36.593-39.565Q36.288-39.705 36.097-39.967Q35.905-40.229 35.905-40.576M36.546-40.568Q36.546-40.295 36.788-40.139Q37.030-39.983 37.316-39.983Q37.534-39.983 37.767-40.041Q37.999-40.100 38.161-40.238Q38.323-40.377 38.323-40.600L38.323-41.190Q38.042-41.190 37.626-41.133Q37.210-41.076 36.878-40.938Q36.546-40.799 36.546-40.568M40.194-39.701L40.194-39.791Q40.245-39.998 40.441-40.022L41.546-40.022L41.546-43.791L40.441-43.791Q40.245-43.815 40.194-44.029L40.194-44.119Q40.245-44.326 40.441-44.350L41.937-44.350Q42.128-44.326 42.187-44.119L42.187-40.022L43.288-40.022Q43.487-39.998 43.538-39.791L43.538-39.701Q43.487-39.486 43.288-39.463L40.441-39.463Q40.245-39.486 40.194-39.701M44.105-39.701L44.105-39.791Q44.155-39.998 44.351-40.022L44.526-40.022L44.526-43.791L44.351-43.791Q44.155-43.815 44.105-44.029L44.105-44.119Q44.155-44.326 44.351-44.350L45.038-44.350Q45.167-44.350 45.267-44.274Q45.366-44.197 45.405-44.088Q45.437-43.983 45.659-43.293Q45.882-42.604 45.997-42.207Q46.112-41.811 46.112-41.736Q46.120-41.815 46.175-42.012Q46.230-42.209 46.343-42.580Q46.456-42.951 46.603-43.414Q46.749-43.877 46.816-44.088Q46.855-44.197 46.958-44.274Q47.062-44.350 47.183-44.350L47.870-44.350Q48.069-44.326 48.120-44.119L48.120-44.029Q48.069-43.815 47.870-43.791L47.694-43.791L47.694-40.022L47.870-40.022Q48.069-39.998 48.120-39.791L48.120-39.701Q48.069-39.486 47.870-39.463L46.991-39.463Q46.796-39.486 46.745-39.701L46.745-39.791Q46.796-39.998 46.991-40.022L47.167-40.022L47.167-43.709Q47.167-43.651 47.083-43.352Q46.999-43.053 46.896-42.721Q46.792-42.389 46.661-41.981Q46.530-41.572 46.464-41.358Q46.425-41.244 46.325-41.170Q46.226-41.096 46.112-41.096Q45.999-41.096 45.899-41.170Q45.800-41.244 45.761-41.358Q45.694-41.572 45.560-41.990Q45.425-42.408 45.288-42.852Q45.151-43.295 45.107-43.459Q45.062-43.623 45.054-43.709L45.054-40.022L45.230-40.022Q45.429-39.998 45.480-39.791L45.480-39.701Q45.429-39.486 45.230-39.463L44.351-39.463Q44.155-39.486 44.105-39.701\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M210.588 93.412h233.313\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">call Dest (left) decrements %rsp, stores the return address valP at the new top, and sets newPC to the call target valC. ret (right) reads valM from the current top, increments %rsp, and sets newPC to that loaded address.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:303.189px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 227.392 248.248\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-43.617h96.739V-72.07h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M-14.112-57.844L-16.698-57.844L-16.698-58.141Q-16.378-58.141-16.134-58.188Q-15.889-58.235-15.889-58.403L-15.889-62.746Q-15.889-62.918-16.134-62.965Q-16.378-63.012-16.698-63.012L-16.698-63.309L-12.081-63.309L-11.850-61.461L-12.132-61.461Q-12.218-62.145-12.380-62.465Q-12.542-62.785-12.882-62.899Q-13.221-63.012-13.913-63.012L-14.721-63.012Q-14.940-63.012-15.032-62.969Q-15.124-62.926-15.124-62.746L-15.124-60.723L-14.514-60.723Q-14.089-60.723-13.891-60.789Q-13.694-60.856-13.612-61.049Q-13.530-61.242-13.530-61.660L-13.249-61.660L-13.249-59.492L-13.530-59.492Q-13.530-59.910-13.612-60.104Q-13.694-60.297-13.891-60.364Q-14.089-60.430-14.514-60.430L-15.124-60.430L-15.124-58.403Q-15.124-58.239-14.805-58.190Q-14.487-58.141-14.112-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M-11.959-59.598Q-11.959-60.078-11.726-60.494Q-11.494-60.910-11.084-61.160Q-10.674-61.410-10.197-61.410Q-9.467-61.410-9.068-60.969Q-8.670-60.528-8.670-59.797Q-8.670-59.692-8.763-59.668L-11.213-59.668L-11.213-59.598Q-11.213-59.188-11.092-58.832Q-10.970-58.477-10.699-58.260Q-10.427-58.043-9.998-58.043Q-9.634-58.043-9.338-58.272Q-9.041-58.500-8.939-58.852Q-8.931-58.899-8.845-58.914L-8.763-58.914Q-8.670-58.887-8.670-58.805Q-8.670-58.797-8.677-58.766Q-8.740-58.539-8.879-58.356Q-9.017-58.172-9.209-58.039Q-9.400-57.907-9.619-57.836Q-9.838-57.766-10.076-57.766Q-10.447-57.766-10.785-57.903Q-11.123-58.039-11.390-58.291Q-11.658-58.543-11.808-58.883Q-11.959-59.223-11.959-59.598M-11.205-59.907L-9.244-59.907Q-9.244-60.211-9.345-60.502Q-9.447-60.793-9.664-60.975Q-9.881-61.157-10.197-61.157Q-10.498-61.157-10.728-60.969Q-10.959-60.782-11.082-60.490Q-11.205-60.199-11.205-59.907M-7.556-58.805L-7.556-60.996L-8.259-60.996L-8.259-61.250Q-7.904-61.250-7.662-61.483Q-7.420-61.715-7.308-62.063Q-7.197-62.410-7.197-62.766L-6.916-62.766L-6.916-61.293L-5.740-61.293L-5.740-60.996L-6.916-60.996L-6.916-58.821Q-6.916-58.500-6.797-58.272Q-6.677-58.043-6.396-58.043Q-6.217-58.043-6.099-58.166Q-5.982-58.289-5.929-58.469Q-5.877-58.649-5.877-58.821L-5.877-59.293L-5.595-59.293L-5.595-58.805Q-5.595-58.551-5.701-58.311Q-5.806-58.071-6.004-57.918Q-6.201-57.766-6.459-57.766Q-6.775-57.766-7.027-57.889Q-7.279-58.012-7.418-58.246Q-7.556-58.481-7.556-58.805M-4.834-59.571Q-4.834-60.067-4.584-60.492Q-4.334-60.918-3.914-61.164Q-3.494-61.410-2.994-61.410Q-2.455-61.410-2.064-61.285Q-1.674-61.160-1.674-60.746Q-1.674-60.641-1.724-60.549Q-1.775-60.457-1.867-60.407Q-1.959-60.356-2.068-60.356Q-2.174-60.356-2.265-60.407Q-2.357-60.457-2.408-60.549Q-2.459-60.641-2.459-60.746Q-2.459-60.969-2.291-61.074Q-2.513-61.133-2.986-61.133Q-3.283-61.133-3.498-60.994Q-3.713-60.856-3.843-60.625Q-3.974-60.395-4.033-60.125Q-4.092-59.856-4.092-59.571Q-4.092-59.176-3.959-58.826Q-3.826-58.477-3.554-58.260Q-3.283-58.043-2.884-58.043Q-2.509-58.043-2.234-58.260Q-1.959-58.477-1.857-58.836Q-1.842-58.899-1.779-58.899L-1.674-58.899Q-1.638-58.899-1.613-58.871Q-1.588-58.844-1.588-58.805L-1.588-58.782Q-1.720-58.301-2.105-58.033Q-2.490-57.766-2.994-57.766Q-3.357-57.766-3.691-57.903Q-4.025-58.039-4.285-58.289Q-4.545-58.539-4.689-58.875Q-4.834-59.211-4.834-59.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-10.092 2.778)\">\u003Cpath d=\"M0.596-57.844L-1.260-57.844L-1.260-58.141Q-0.986-58.141-0.818-58.188Q-0.650-58.235-0.650-58.403L-0.650-62.563Q-0.650-62.778-0.713-62.873Q-0.775-62.969-0.894-62.990Q-1.013-63.012-1.260-63.012L-1.260-63.309L-0.037-63.395L-0.037-60.692Q0.088-60.903 0.276-61.053Q0.463-61.203 0.690-61.287Q0.916-61.371 1.162-61.371Q2.330-61.371 2.330-60.293L2.330-58.403Q2.330-58.235 2.500-58.188Q2.670-58.141 2.940-58.141L2.940-57.844L1.084-57.844L1.084-58.141Q1.358-58.141 1.526-58.188Q1.694-58.235 1.694-58.403L1.694-60.278Q1.694-60.660 1.573-60.889Q1.451-61.117 1.100-61.117Q0.787-61.117 0.533-60.955Q0.280-60.793 0.133-60.524Q-0.013-60.254-0.013-59.957L-0.013-58.403Q-0.013-58.235 0.157-58.188Q0.326-58.141 0.596-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-.938h96.739v-28.453h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-13.515 45.457)\">\u003Cpath d=\"M-13.620-57.844L-16.682-57.844L-16.682-58.141Q-16.358-58.141-16.116-58.188Q-15.874-58.235-15.874-58.403L-15.874-62.746Q-15.874-62.918-16.116-62.965Q-16.358-63.012-16.682-63.012L-16.682-63.309L-13.620-63.309Q-13.069-63.309-12.591-63.082Q-12.112-62.856-11.759-62.461Q-11.405-62.067-11.216-61.567Q-11.026-61.067-11.026-60.524Q-11.026-59.817-11.370-59.199Q-11.714-58.582-12.309-58.213Q-12.905-57.844-13.620-57.844M-15.132-62.746L-15.132-58.403Q-15.132-58.231-15.040-58.186Q-14.948-58.141-14.729-58.141L-13.835-58.141Q-13.389-58.141-12.997-58.311Q-12.604-58.481-12.333-58.805Q-12.061-59.129-11.964-59.549Q-11.866-59.969-11.866-60.524Q-11.866-60.879-11.903-61.192Q-11.940-61.504-12.046-61.799Q-12.151-62.094-12.331-62.317Q-12.514-62.551-12.753-62.701Q-12.991-62.852-13.272-62.932Q-13.554-63.012-13.835-63.012L-14.729-63.012Q-14.948-63.012-15.040-62.969Q-15.132-62.926-15.132-62.746M-10.307-59.598Q-10.307-60.078-10.075-60.494Q-9.843-60.910-9.432-61.160Q-9.022-61.410-8.546-61.410Q-7.815-61.410-7.417-60.969Q-7.018-60.528-7.018-59.797Q-7.018-59.692-7.112-59.668L-9.561-59.668L-9.561-59.598Q-9.561-59.188-9.440-58.832Q-9.319-58.477-9.048-58.260Q-8.776-58.043-8.346-58.043Q-7.983-58.043-7.686-58.272Q-7.389-58.500-7.288-58.852Q-7.280-58.899-7.194-58.914L-7.112-58.914Q-7.018-58.887-7.018-58.805Q-7.018-58.797-7.026-58.766Q-7.089-58.539-7.227-58.356Q-7.366-58.172-7.557-58.039Q-7.749-57.907-7.968-57.836Q-8.186-57.766-8.425-57.766Q-8.796-57.766-9.134-57.903Q-9.471-58.039-9.739-58.291Q-10.007-58.543-10.157-58.883Q-10.307-59.223-10.307-59.598M-9.554-59.907L-7.593-59.907Q-7.593-60.211-7.694-60.502Q-7.796-60.793-8.013-60.975Q-8.229-61.157-8.546-61.157Q-8.846-61.157-9.077-60.969Q-9.307-60.782-9.430-60.490Q-9.554-60.199-9.554-59.907M-6.487-59.571Q-6.487-60.067-6.237-60.492Q-5.987-60.918-5.567-61.164Q-5.147-61.410-4.647-61.410Q-4.108-61.410-3.718-61.285Q-3.327-61.160-3.327-60.746Q-3.327-60.641-3.378-60.549Q-3.429-60.457-3.520-60.407Q-3.612-60.356-3.721-60.356Q-3.827-60.356-3.919-60.407Q-4.011-60.457-4.061-60.549Q-4.112-60.641-4.112-60.746Q-4.112-60.969-3.944-61.074Q-4.167-61.133-4.639-61.133Q-4.936-61.133-5.151-60.994Q-5.366-60.856-5.497-60.625Q-5.628-60.395-5.686-60.125Q-5.745-59.856-5.745-59.571Q-5.745-59.176-5.612-58.826Q-5.479-58.477-5.208-58.260Q-4.936-58.043-4.538-58.043Q-4.163-58.043-3.888-58.260Q-3.612-58.477-3.511-58.836Q-3.495-58.899-3.432-58.899L-3.327-58.899Q-3.292-58.899-3.266-58.871Q-3.241-58.844-3.241-58.805L-3.241-58.782Q-3.374-58.301-3.759-58.033Q-4.143-57.766-4.647-57.766Q-5.011-57.766-5.345-57.903Q-5.679-58.039-5.938-58.289Q-6.198-58.539-6.343-58.875Q-6.487-59.211-6.487-59.571M-2.753-59.539Q-2.753-60.043-2.497-60.475Q-2.241-60.907-1.805-61.158Q-1.370-61.410-0.870-61.410Q-0.483-61.410-0.141-61.266Q0.200-61.121 0.462-60.860Q0.724-60.598 0.866-60.262Q1.009-59.926 1.009-59.539Q1.009-59.047 0.745-58.637Q0.482-58.227 0.052-57.996Q-0.378-57.766-0.870-57.766Q-1.362-57.766-1.796-57.998Q-2.229-58.231-2.491-58.639Q-2.753-59.047-2.753-59.539M-0.870-58.043Q-0.413-58.043-0.161-58.266Q0.091-58.489 0.179-58.840Q0.267-59.192 0.267-59.637Q0.267-60.067 0.173-60.405Q0.079-60.742-0.175-60.949Q-0.429-61.157-0.870-61.157Q-1.518-61.157-1.763-60.740Q-2.007-60.324-2.007-59.637Q-2.007-59.192-1.919-58.840Q-1.831-58.489-1.579-58.266Q-1.327-58.043-0.870-58.043\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.515 45.457)\">\u003Cpath d=\"M3.552-57.766Q3.071-57.766 2.663-58.010Q2.255-58.254 2.017-58.668Q1.778-59.082 1.778-59.571Q1.778-60.063 2.036-60.479Q2.294-60.895 2.726-61.133Q3.157-61.371 3.649-61.371Q4.270-61.371 4.720-60.934L4.720-62.563Q4.720-62.778 4.657-62.873Q4.595-62.969 4.477-62.990Q4.360-63.012 4.114-63.012L4.114-63.309L5.337-63.395L5.337-58.586Q5.337-58.375 5.399-58.280Q5.462-58.184 5.579-58.162Q5.696-58.141 5.946-58.141L5.946-57.844L4.696-57.766L4.696-58.250Q4.231-57.766 3.552-57.766M3.618-58.020Q3.958-58.020 4.251-58.211Q4.544-58.403 4.696-58.699L4.696-60.532Q4.548-60.805 4.286-60.961Q4.024-61.117 3.712-61.117Q3.087-61.117 2.804-60.670Q2.520-60.223 2.520-59.563Q2.520-58.918 2.772-58.469Q3.024-58.020 3.618-58.020M6.454-59.598Q6.454-60.078 6.686-60.494Q6.919-60.910 7.329-61.160Q7.739-61.410 8.216-61.410Q8.946-61.410 9.345-60.969Q9.743-60.528 9.743-59.797Q9.743-59.692 9.649-59.668L7.200-59.668L7.200-59.598Q7.200-59.188 7.321-58.832Q7.442-58.477 7.714-58.260Q7.985-58.043 8.415-58.043Q8.778-58.043 9.075-58.272Q9.372-58.500 9.474-58.852Q9.481-58.899 9.567-58.914L9.649-58.914Q9.743-58.887 9.743-58.805Q9.743-58.797 9.735-58.766Q9.673-58.539 9.534-58.356Q9.395-58.172 9.204-58.039Q9.013-57.907 8.794-57.836Q8.575-57.766 8.337-57.766Q7.966-57.766 7.628-57.903Q7.290-58.039 7.022-58.291Q6.755-58.543 6.604-58.883Q6.454-59.223 6.454-59.598M7.208-59.907L9.169-59.907Q9.169-60.211 9.067-60.502Q8.966-60.793 8.749-60.975Q8.532-61.157 8.216-61.157Q7.915-61.157 7.684-60.969Q7.454-60.782 7.331-60.490Q7.208-60.199 7.208-59.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 41.741h96.739V13.288h-96.74Z\"\u002F>\u003Cg transform=\"translate(-14.814 88.092)\">\u003Cpath d=\"M-11.850-57.844L-16.698-57.844L-16.698-58.141Q-16.378-58.141-16.134-58.188Q-15.889-58.235-15.889-58.403L-15.889-62.746Q-15.889-62.918-16.134-62.965Q-16.378-63.012-16.698-63.012L-16.698-63.309L-11.964-63.309L-11.729-61.461L-12.011-61.461Q-12.093-62.157-12.268-62.477Q-12.444-62.797-12.792-62.905Q-13.139-63.012-13.858-63.012L-14.721-63.012Q-14.940-63.012-15.032-62.969Q-15.124-62.926-15.124-62.746L-15.124-60.828L-14.491-60.828Q-14.065-60.828-13.858-60.891Q-13.651-60.953-13.563-61.149Q-13.475-61.344-13.475-61.766L-13.194-61.766L-13.194-59.598L-13.475-59.598Q-13.475-60.020-13.563-60.213Q-13.651-60.407-13.858-60.469Q-14.065-60.532-14.491-60.532L-15.124-60.532L-15.124-58.403Q-15.124-58.231-15.032-58.186Q-14.940-58.141-14.721-58.141L-13.796-58.141Q-13.214-58.141-12.860-58.223Q-12.507-58.305-12.302-58.502Q-12.096-58.699-11.983-59.037Q-11.870-59.375-11.776-59.957L-11.499-59.957L-11.850-57.844M-9.632-57.844L-11.128-57.844L-11.128-58.141Q-10.495-58.141-10.073-58.621L-9.304-59.532L-10.296-60.731Q-10.452-60.910-10.614-60.953Q-10.776-60.996-11.081-60.996L-11.081-61.293L-9.393-61.293L-9.393-60.996Q-9.487-60.996-9.563-60.953Q-9.639-60.910-9.639-60.821Q-9.639-60.778-9.608-60.731L-8.952-59.942L-8.471-60.516Q-8.354-60.653-8.354-60.789Q-8.354-60.879-8.405-60.938Q-8.456-60.996-8.538-60.996L-8.538-61.293L-7.050-61.293L-7.050-60.996Q-7.686-60.996-8.096-60.516L-8.776-59.715L-7.690-58.403Q-7.530-58.227-7.370-58.184Q-7.210-58.141-6.905-58.141L-6.905-57.844L-8.593-57.844L-8.593-58.141Q-8.503-58.141-8.425-58.184Q-8.346-58.227-8.346-58.317Q-8.346-58.340-8.378-58.403L-9.120-59.309L-9.706-58.621Q-9.823-58.485-9.823-58.348Q-9.823-58.262-9.772-58.201Q-9.721-58.141-9.632-58.141L-9.632-57.844M-6.538-59.598Q-6.538-60.078-6.305-60.494Q-6.073-60.910-5.663-61.160Q-5.253-61.410-4.776-61.410Q-4.046-61.410-3.647-60.969Q-3.249-60.528-3.249-59.797Q-3.249-59.692-3.343-59.668L-5.792-59.668L-5.792-59.598Q-5.792-59.188-5.671-58.832Q-5.550-58.477-5.278-58.260Q-5.007-58.043-4.577-58.043Q-4.214-58.043-3.917-58.272Q-3.620-58.500-3.518-58.852Q-3.511-58.899-3.425-58.914L-3.343-58.914Q-3.249-58.887-3.249-58.805Q-3.249-58.797-3.257-58.766Q-3.319-58.539-3.458-58.356Q-3.596-58.172-3.788-58.039Q-3.979-57.907-4.198-57.836Q-4.417-57.766-4.655-57.766Q-5.026-57.766-5.364-57.903Q-5.702-58.039-5.970-58.291Q-6.237-58.543-6.388-58.883Q-6.538-59.223-6.538-59.598M-5.784-59.907L-3.823-59.907Q-3.823-60.211-3.925-60.502Q-4.026-60.793-4.243-60.975Q-4.460-61.157-4.776-61.157Q-5.077-61.157-5.307-60.969Q-5.538-60.782-5.661-60.490Q-5.784-60.199-5.784-59.907M-2.718-59.571Q-2.718-60.067-2.468-60.492Q-2.218-60.918-1.798-61.164Q-1.378-61.410-0.878-61.410Q-0.339-61.410 0.052-61.285Q0.443-61.160 0.443-60.746Q0.443-60.641 0.392-60.549Q0.341-60.457 0.249-60.407Q0.157-60.356 0.048-60.356Q-0.057-60.356-0.149-60.407Q-0.241-60.457-0.292-60.549Q-0.343-60.641-0.343-60.746Q-0.343-60.969-0.175-61.074Q-0.397-61.133-0.870-61.133Q-1.167-61.133-1.382-60.994Q-1.596-60.856-1.727-60.625Q-1.858-60.395-1.917-60.125Q-1.975-59.856-1.975-59.571Q-1.975-59.176-1.843-58.826Q-1.710-58.477-1.438-58.260Q-1.167-58.043-0.768-58.043Q-0.393-58.043-0.118-58.260Q0.157-58.477 0.259-58.836Q0.275-58.899 0.337-58.899L0.443-58.899Q0.478-58.899 0.503-58.871Q0.529-58.844 0.529-58.805L0.529-58.782Q0.396-58.301 0.011-58.033Q-0.374-57.766-0.878-57.766Q-1.241-57.766-1.575-57.903Q-1.909-58.039-2.169-58.289Q-2.429-58.539-2.573-58.875Q-2.718-59.211-2.718-59.571M1.700-58.797L1.700-60.539Q1.700-60.754 1.638-60.850Q1.575-60.946 1.456-60.967Q1.337-60.989 1.091-60.989L1.091-61.285L2.337-61.371L2.337-58.821L2.337-58.797Q2.337-58.485 2.392-58.323Q2.446-58.160 2.597-58.090Q2.747-58.020 3.068-58.020Q3.497-58.020 3.771-58.358Q4.044-58.696 4.044-59.141L4.044-60.539Q4.044-60.754 3.982-60.850Q3.919-60.946 3.800-60.967Q3.681-60.989 3.435-60.989L3.435-61.285L4.681-61.371L4.681-58.586Q4.681-58.375 4.743-58.280Q4.806-58.184 4.925-58.162Q5.044-58.141 5.290-58.141L5.290-57.844L4.068-57.766L4.068-58.387Q3.900-58.098 3.618-57.932Q3.337-57.766 3.017-57.766Q1.700-57.766 1.700-58.797M6.361-58.805L6.361-60.996L5.657-60.996L5.657-61.250Q6.013-61.250 6.255-61.483Q6.497-61.715 6.609-62.063Q6.720-62.410 6.720-62.766L7.001-62.766L7.001-61.293L8.177-61.293L8.177-60.996L7.001-60.996L7.001-58.821Q7.001-58.500 7.120-58.272Q7.239-58.043 7.521-58.043Q7.700-58.043 7.818-58.166Q7.935-58.289 7.987-58.469Q8.040-58.649 8.040-58.821L8.040-59.293L8.321-59.293L8.321-58.805Q8.321-58.551 8.216-58.311Q8.111-58.071 7.913-57.918Q7.716-57.766 7.458-57.766Q7.142-57.766 6.890-57.889Q6.638-58.012 6.499-58.246Q6.361-58.481 6.361-58.805M9.040-59.598Q9.040-60.078 9.273-60.494Q9.505-60.910 9.915-61.160Q10.325-61.410 10.802-61.410Q11.532-61.410 11.931-60.969Q12.329-60.528 12.329-59.797Q12.329-59.692 12.236-59.668L9.786-59.668L9.786-59.598Q9.786-59.188 9.907-58.832Q10.029-58.477 10.300-58.260Q10.571-58.043 11.001-58.043Q11.364-58.043 11.661-58.272Q11.958-58.500 12.060-58.852Q12.068-58.899 12.154-58.914L12.236-58.914Q12.329-58.887 12.329-58.805Q12.329-58.797 12.321-58.766Q12.259-58.539 12.120-58.356Q11.982-58.172 11.790-58.039Q11.599-57.907 11.380-57.836Q11.161-57.766 10.923-57.766Q10.552-57.766 10.214-57.903Q9.876-58.039 9.609-58.291Q9.341-58.543 9.191-58.883Q9.040-59.223 9.040-59.598M9.794-59.907L11.755-59.907Q11.755-60.211 11.654-60.502Q11.552-60.793 11.335-60.975Q11.118-61.157 10.802-61.157Q10.501-61.157 10.271-60.969Q10.040-60.782 9.917-60.490Q9.794-60.199 9.794-59.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 84.42h96.739V55.967h-96.74Z\"\u002F>\u003Cg transform=\"translate(-15.347 129.993)\">\u003Cpath d=\"M-14.737-57.844L-16.659-57.844L-16.659-58.141Q-15.850-58.141-15.850-58.621L-15.850-62.746Q-15.850-62.918-16.093-62.965Q-16.335-63.012-16.659-63.012L-16.659-63.309L-15.163-63.309Q-15.054-63.309-14.995-63.196L-13.147-58.653L-11.307-63.196Q-11.245-63.309-11.139-63.309L-9.636-63.309L-9.636-63.012Q-9.956-63.012-10.198-62.965Q-10.440-62.918-10.440-62.746L-10.440-58.403Q-10.440-58.235-10.198-58.188Q-9.956-58.141-9.636-58.141L-9.636-57.844L-11.936-57.844L-11.936-58.141Q-11.132-58.141-11.132-58.403L-11.132-62.996L-13.179-57.957Q-13.214-57.844-13.346-57.844Q-13.487-57.844-13.522-57.957L-15.546-62.934L-15.546-58.621Q-15.546-58.141-14.737-58.141L-14.737-57.844M-9.018-59.598Q-9.018-60.078-8.786-60.494Q-8.554-60.910-8.143-61.160Q-7.733-61.410-7.257-61.410Q-6.526-61.410-6.128-60.969Q-5.729-60.528-5.729-59.797Q-5.729-59.692-5.823-59.668L-8.272-59.668L-8.272-59.598Q-8.272-59.188-8.151-58.832Q-8.030-58.477-7.759-58.260Q-7.487-58.043-7.057-58.043Q-6.694-58.043-6.397-58.272Q-6.100-58.500-5.999-58.852Q-5.991-58.899-5.905-58.914L-5.823-58.914Q-5.729-58.887-5.729-58.805Q-5.729-58.797-5.737-58.766Q-5.800-58.539-5.938-58.356Q-6.077-58.172-6.268-58.039Q-6.460-57.907-6.679-57.836Q-6.897-57.766-7.136-57.766Q-7.507-57.766-7.845-57.903Q-8.182-58.039-8.450-58.291Q-8.718-58.543-8.868-58.883Q-9.018-59.223-9.018-59.598M-8.264-59.907L-6.304-59.907Q-6.304-60.211-6.405-60.502Q-6.507-60.793-6.723-60.975Q-6.940-61.157-7.257-61.157Q-7.557-61.157-7.788-60.969Q-8.018-60.782-8.141-60.490Q-8.264-60.199-8.264-59.907M-3.311-57.844L-5.167-57.844L-5.167-58.141Q-4.893-58.141-4.725-58.188Q-4.557-58.235-4.557-58.403L-4.557-60.539Q-4.557-60.754-4.620-60.850Q-4.682-60.946-4.802-60.967Q-4.921-60.989-5.167-60.989L-5.167-61.285L-3.975-61.371L-3.975-60.637Q-3.862-60.852-3.669-61.020Q-3.475-61.188-3.237-61.280Q-2.999-61.371-2.745-61.371Q-1.784-61.371-1.608-60.660Q-1.425-60.989-1.096-61.180Q-0.768-61.371-0.389-61.371Q0.786-61.371 0.786-60.293L0.786-58.403Q0.786-58.235 0.954-58.188Q1.122-58.141 1.392-58.141L1.392-57.844L-0.464-57.844L-0.464-58.141Q-0.190-58.141-0.022-58.186Q0.146-58.231 0.146-58.403L0.146-60.278Q0.146-60.664 0.021-60.891Q-0.104-61.117-0.456-61.117Q-0.761-61.117-1.016-60.955Q-1.272-60.793-1.421-60.524Q-1.569-60.254-1.569-59.957L-1.569-58.403Q-1.569-58.235-1.399-58.188Q-1.229-58.141-0.960-58.141L-0.960-57.844L-2.815-57.844L-2.815-58.141Q-2.542-58.141-2.374-58.188Q-2.206-58.235-2.206-58.403L-2.206-60.278Q-2.206-60.664-2.331-60.891Q-2.456-61.117-2.807-61.117Q-3.112-61.117-3.368-60.955Q-3.624-60.793-3.772-60.524Q-3.921-60.254-3.921-59.957L-3.921-58.403Q-3.921-58.235-3.751-58.188Q-3.581-58.141-3.311-58.141L-3.311-57.844M1.837-59.539Q1.837-60.043 2.093-60.475Q2.349-60.907 2.784-61.158Q3.220-61.410 3.720-61.410Q4.107-61.410 4.448-61.266Q4.790-61.121 5.052-60.860Q5.314-60.598 5.456-60.262Q5.599-59.926 5.599-59.539Q5.599-59.047 5.335-58.637Q5.071-58.227 4.642-57.996Q4.212-57.766 3.720-57.766Q3.228-57.766 2.794-57.998Q2.361-58.231 2.099-58.639Q1.837-59.047 1.837-59.539M3.720-58.043Q4.177-58.043 4.429-58.266Q4.681-58.489 4.769-58.840Q4.857-59.192 4.857-59.637Q4.857-60.067 4.763-60.405Q4.669-60.742 4.415-60.949Q4.161-61.157 3.720-61.157Q3.071-61.157 2.827-60.740Q2.583-60.324 2.583-59.637Q2.583-59.192 2.671-58.840Q2.759-58.489 3.011-58.266Q3.263-58.043 3.720-58.043M8.091-57.844L6.111-57.844L6.111-58.141Q6.380-58.141 6.548-58.186Q6.716-58.231 6.716-58.403L6.716-60.539Q6.716-60.754 6.654-60.850Q6.591-60.946 6.474-60.967Q6.357-60.989 6.111-60.989L6.111-61.285L7.279-61.371L7.279-60.586Q7.357-60.797 7.509-60.983Q7.661-61.168 7.861-61.270Q8.060-61.371 8.286-61.371Q8.532-61.371 8.724-61.227Q8.915-61.082 8.915-60.852Q8.915-60.696 8.810-60.586Q8.704-60.477 8.548-60.477Q8.392-60.477 8.282-60.586Q8.173-60.696 8.173-60.852Q8.173-61.012 8.279-61.117Q7.954-61.117 7.739-60.889Q7.525-60.660 7.429-60.321Q7.333-59.981 7.333-59.676L7.333-58.403Q7.333-58.235 7.560-58.188Q7.786-58.141 8.091-58.141L8.091-57.844M9.814-56.547Q9.927-56.469 10.103-56.469Q10.392-56.469 10.612-56.682Q10.833-56.895 10.958-57.196L11.247-57.844L9.974-60.731Q9.892-60.907 9.747-60.951Q9.603-60.996 9.333-60.996L9.333-61.293L11.052-61.293L11.052-60.996Q10.630-60.996 10.630-60.813Q10.630-60.801 10.646-60.731L11.583-58.606L12.415-60.516Q12.454-60.606 12.454-60.684Q12.454-60.824 12.353-60.910Q12.251-60.996 12.111-60.996L12.111-61.293L13.462-61.293L13.462-60.996Q13.208-60.996 13.015-60.871Q12.821-60.746 12.716-60.516L11.271-57.196Q11.157-56.942 10.991-56.719Q10.825-56.496 10.597-56.354Q10.368-56.211 10.103-56.211Q9.806-56.211 9.566-56.403Q9.325-56.594 9.325-56.883Q9.325-57.039 9.431-57.141Q9.536-57.242 9.685-57.242Q9.790-57.242 9.870-57.196Q9.950-57.149 9.997-57.071Q10.044-56.992 10.044-56.883Q10.044-56.762 9.984-56.674Q9.923-56.586 9.814-56.547\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 127.1h96.739V98.645h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.305 173.494)\">\u003Cpath d=\"M-14.460-57.789L-16.163-62.746Q-16.229-62.922-16.405-62.967Q-16.581-63.012-16.874-63.012L-16.874-63.309L-14.729-63.309L-14.729-63.012Q-15.386-63.012-15.386-62.797Q-15.382-62.785-15.380-62.776Q-15.378-62.766-15.378-62.746L-14.026-58.813L-12.827-62.317L-12.971-62.746Q-13.042-62.922-13.216-62.967Q-13.389-63.012-13.682-63.012L-13.682-63.309L-11.546-63.309L-11.546-63.012Q-12.194-63.012-12.194-62.797Q-12.194-62.754-12.186-62.746L-10.835-58.813L-9.561-62.532Q-9.546-62.578-9.546-62.614Q-9.546-62.754-9.655-62.846Q-9.764-62.938-9.921-62.975Q-10.077-63.012-10.210-63.012L-10.210-63.309L-8.475-63.309L-8.475-63.012Q-9.093-63.012-9.264-62.532L-10.889-57.789Q-10.909-57.739-10.952-57.707Q-10.995-57.676-11.050-57.676L-11.104-57.676Q-11.225-57.676-11.264-57.789L-12.675-61.883L-14.081-57.789Q-14.100-57.739-14.143-57.707Q-14.186-57.676-14.241-57.676L-14.300-57.676Q-14.413-57.676-14.460-57.789\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 173.494)\">\u003Cpath d=\"M-6.768-57.844L-8.748-57.844L-8.748-58.141Q-8.479-58.141-8.311-58.186Q-8.143-58.231-8.143-58.403L-8.143-60.539Q-8.143-60.754-8.205-60.850Q-8.268-60.946-8.385-60.967Q-8.502-60.989-8.748-60.989L-8.748-61.285L-7.580-61.371L-7.580-60.586Q-7.502-60.797-7.350-60.983Q-7.198-61.168-6.998-61.270Q-6.799-61.371-6.573-61.371Q-6.326-61.371-6.135-61.227Q-5.944-61.082-5.944-60.852Q-5.944-60.696-6.049-60.586Q-6.155-60.477-6.311-60.477Q-6.467-60.477-6.576-60.586Q-6.686-60.696-6.686-60.852Q-6.686-61.012-6.580-61.117Q-6.905-61.117-7.119-60.889Q-7.334-60.660-7.430-60.321Q-7.526-59.981-7.526-59.676L-7.526-58.403Q-7.526-58.235-7.299-58.188Q-7.073-58.141-6.768-58.141L-6.768-57.844M-3.604-57.844L-5.381-57.844L-5.381-58.141Q-5.108-58.141-4.940-58.188Q-4.772-58.235-4.772-58.403L-4.772-60.539Q-4.772-60.754-4.828-60.850Q-4.885-60.946-4.998-60.967Q-5.112-60.989-5.358-60.989L-5.358-61.285L-4.159-61.371L-4.159-58.403Q-4.159-58.235-4.012-58.188Q-3.866-58.141-3.604-58.141L-3.604-57.844M-5.045-62.766Q-5.045-62.957-4.910-63.088Q-4.776-63.219-4.580-63.219Q-4.459-63.219-4.356-63.157Q-4.252-63.094-4.190-62.990Q-4.127-62.887-4.127-62.766Q-4.127-62.571-4.258-62.436Q-4.389-62.301-4.580-62.301Q-4.780-62.301-4.912-62.434Q-5.045-62.567-5.045-62.766M-2.479-58.805L-2.479-60.996L-3.182-60.996L-3.182-61.250Q-2.826-61.250-2.584-61.483Q-2.342-61.715-2.231-62.063Q-2.119-62.410-2.119-62.766L-1.838-62.766L-1.838-61.293L-0.662-61.293L-0.662-60.996L-1.838-60.996L-1.838-58.821Q-1.838-58.500-1.719-58.272Q-1.600-58.043-1.319-58.043Q-1.139-58.043-1.022-58.166Q-0.905-58.289-0.852-58.469Q-0.799-58.649-0.799-58.821L-0.799-59.293L-0.518-59.293L-0.518-58.805Q-0.518-58.551-0.623-58.311Q-0.729-58.071-0.926-57.918Q-1.123-57.766-1.381-57.766Q-1.698-57.766-1.950-57.889Q-2.201-58.012-2.340-58.246Q-2.479-58.481-2.479-58.805M0.201-59.598Q0.201-60.078 0.433-60.494Q0.666-60.910 1.076-61.160Q1.486-61.410 1.963-61.410Q2.693-61.410 3.091-60.969Q3.490-60.528 3.490-59.797Q3.490-59.692 3.396-59.668L0.947-59.668L0.947-59.598Q0.947-59.188 1.068-58.832Q1.189-58.477 1.461-58.260Q1.732-58.043 2.162-58.043Q2.525-58.043 2.822-58.272Q3.119-58.500 3.220-58.852Q3.228-58.899 3.314-58.914L3.396-58.914Q3.490-58.887 3.490-58.805Q3.490-58.797 3.482-58.766Q3.420-58.539 3.281-58.356Q3.142-58.172 2.951-58.039Q2.759-57.907 2.541-57.836Q2.322-57.766 2.084-57.766Q1.713-57.766 1.375-57.903Q1.037-58.039 0.769-58.291Q0.502-58.543 0.351-58.883Q0.201-59.223 0.201-59.598M0.955-59.907L2.916-59.907Q2.916-60.211 2.814-60.502Q2.713-60.793 2.496-60.975Q2.279-61.157 1.963-61.157Q1.662-61.157 1.431-60.969Q1.201-60.782 1.078-60.490Q0.955-60.199 0.955-59.907M6.091-59.293L3.838-59.293L3.838-59.844L6.091-59.844L6.091-59.293M7.724-57.844L7.443-57.844L7.443-62.563Q7.443-62.778 7.381-62.873Q7.318-62.969 7.201-62.990Q7.084-63.012 6.838-63.012L6.838-63.309L8.060-63.395L8.060-60.907Q8.537-61.371 9.236-61.371Q9.716-61.371 10.125-61.127Q10.533-60.883 10.769-60.469Q11.006-60.055 11.006-59.571Q11.006-59.196 10.857-58.867Q10.709-58.539 10.439-58.287Q10.170-58.035 9.826-57.901Q9.482-57.766 9.123-57.766Q8.802-57.766 8.504-57.914Q8.205-58.063 7.998-58.324L7.724-57.844M8.084-60.516L8.084-58.676Q8.236-58.379 8.496-58.199Q8.756-58.020 9.068-58.020Q9.494-58.020 9.761-58.239Q10.029-58.457 10.144-58.803Q10.259-59.149 10.259-59.571Q10.259-60.219 10.011-60.668Q9.763-61.117 9.166-61.117Q8.830-61.117 8.541-60.959Q8.252-60.801 8.084-60.516M11.627-58.676Q11.627-59.160 12.029-59.455Q12.431-59.750 12.982-59.869Q13.533-59.989 14.025-59.989L14.025-60.278Q14.025-60.504 13.910-60.711Q13.795-60.918 13.597-61.037Q13.400-61.157 13.170-61.157Q12.744-61.157 12.459-61.051Q12.529-61.024 12.576-60.969Q12.623-60.914 12.648-60.844Q12.674-60.774 12.674-60.699Q12.674-60.594 12.623-60.502Q12.572-60.410 12.480-60.360Q12.388-60.309 12.283-60.309Q12.177-60.309 12.086-60.360Q11.994-60.410 11.943-60.502Q11.892-60.594 11.892-60.699Q11.892-61.117 12.281-61.264Q12.670-61.410 13.170-61.410Q13.502-61.410 13.855-61.280Q14.209-61.149 14.437-60.895Q14.666-60.641 14.666-60.293L14.666-58.492Q14.666-58.360 14.738-58.250Q14.810-58.141 14.939-58.141Q15.064-58.141 15.132-58.246Q15.201-58.352 15.201-58.492L15.201-59.004L15.482-59.004L15.482-58.492Q15.482-58.289 15.365-58.131Q15.248-57.973 15.066-57.889Q14.884-57.805 14.681-57.805Q14.451-57.805 14.299-57.977Q14.146-58.149 14.115-58.379Q13.955-58.098 13.646-57.932Q13.338-57.766 12.986-57.766Q12.474-57.766 12.050-57.989Q11.627-58.211 11.627-58.676M12.314-58.676Q12.314-58.391 12.541-58.205Q12.767-58.020 13.060-58.020Q13.306-58.020 13.531-58.137Q13.756-58.254 13.890-58.457Q14.025-58.660 14.025-58.914L14.025-59.746Q13.759-59.746 13.474-59.692Q13.189-59.637 12.918-59.508Q12.646-59.379 12.480-59.172Q12.314-58.965 12.314-58.676M15.818-59.571Q15.818-60.067 16.068-60.492Q16.318-60.918 16.738-61.164Q17.158-61.410 17.658-61.410Q18.197-61.410 18.588-61.285Q18.978-61.160 18.978-60.746Q18.978-60.641 18.927-60.549Q18.877-60.457 18.785-60.407Q18.693-60.356 18.584-60.356Q18.478-60.356 18.386-60.407Q18.295-60.457 18.244-60.549Q18.193-60.641 18.193-60.746Q18.193-60.969 18.361-61.074Q18.138-61.133 17.666-61.133Q17.369-61.133 17.154-60.994Q16.939-60.856 16.808-60.625Q16.677-60.395 16.619-60.125Q16.560-59.856 16.560-59.571Q16.560-59.176 16.693-58.826Q16.826-58.477 17.097-58.260Q17.369-58.043 17.767-58.043Q18.142-58.043 18.418-58.260Q18.693-58.477 18.795-58.836Q18.810-58.899 18.873-58.899L18.978-58.899Q19.013-58.899 19.039-58.871Q19.064-58.844 19.064-58.805L19.064-58.782Q18.931-58.301 18.547-58.033Q18.162-57.766 17.658-57.766Q17.295-57.766 16.961-57.903Q16.627-58.039 16.367-58.289Q16.107-58.539 15.963-58.875Q15.818-59.211 15.818-59.571\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.305 173.494)\">\u003Cpath d=\"M21.152-57.844L19.356-57.844L19.356-58.141Q19.625-58.141 19.793-58.186Q19.961-58.231 19.961-58.403L19.961-62.563Q19.961-62.778 19.899-62.873Q19.836-62.969 19.719-62.990Q19.602-63.012 19.356-63.012L19.356-63.309L20.578-63.395L20.578-59.629L21.676-60.516Q21.883-60.696 21.883-60.844Q21.883-60.910 21.830-60.953Q21.777-60.996 21.707-60.996L21.707-61.293L23.242-61.293L23.242-60.996Q22.711-60.996 22.113-60.516L21.504-60.020L22.578-58.621Q22.715-58.446 22.822-58.338Q22.930-58.231 23.065-58.186Q23.199-58.141 23.426-58.141L23.426-57.844L21.801-57.844L21.801-58.141Q22.043-58.141 22.043-58.293Q22.043-58.371 22-58.442Q21.957-58.512 21.875-58.621L21.074-59.668L20.547-59.242L20.547-58.403Q20.547-58.235 20.715-58.188Q20.883-58.141 21.152-58.141\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 169.778h96.739v-28.452h-96.74Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-20.245 215.396)\">\u003Cpath d=\"M-14.300-57.844L-16.682-57.844L-16.682-58.141Q-16.358-58.141-16.116-58.188Q-15.874-58.235-15.874-58.403L-15.874-62.746Q-15.874-62.918-16.116-62.965Q-16.358-63.012-16.682-63.012L-16.682-63.309L-13.737-63.309Q-13.393-63.309-13.038-63.209Q-12.682-63.110-12.388-62.918Q-12.093-62.727-11.911-62.442Q-11.729-62.157-11.729-61.797Q-11.729-61.324-12.040-60.989Q-12.350-60.653-12.815-60.481Q-13.280-60.309-13.737-60.309L-15.104-60.309L-15.104-58.403Q-15.104-58.235-14.862-58.188Q-14.620-58.141-14.300-58.141L-14.300-57.844M-15.132-62.746L-15.132-60.578L-13.956-60.578Q-13.268-60.578-12.930-60.854Q-12.593-61.129-12.593-61.797Q-12.593-62.461-12.930-62.737Q-13.268-63.012-13.956-63.012L-14.729-63.012Q-14.948-63.012-15.040-62.969Q-15.132-62.926-15.132-62.746M-10.784-60.578Q-10.784-61.172-10.552-61.703Q-10.319-62.235-9.903-62.635Q-9.487-63.035-8.954-63.256Q-8.421-63.477-7.815-63.477Q-7.378-63.477-6.979-63.295Q-6.581-63.114-6.272-62.782L-5.800-63.446Q-5.768-63.477-5.737-63.477L-5.690-63.477Q-5.663-63.477-5.632-63.446Q-5.600-63.414-5.600-63.387L-5.600-61.250Q-5.600-61.227-5.632-61.196Q-5.663-61.164-5.690-61.164L-5.807-61.164Q-5.835-61.164-5.866-61.196Q-5.897-61.227-5.897-61.250Q-5.897-61.516-6.040-61.869Q-6.182-62.223-6.362-62.461Q-6.616-62.793-6.966-62.987Q-7.315-63.180-7.721-63.180Q-8.225-63.180-8.679-62.961Q-9.132-62.742-9.425-62.348Q-9.921-61.680-9.921-60.578Q-9.921-60.047-9.784-59.580Q-9.647-59.114-9.372-58.748Q-9.096-58.383-8.677-58.178Q-8.257-57.973-7.714-57.973Q-7.225-57.973-6.802-58.217Q-6.378-58.461-6.130-58.881Q-5.882-59.301-5.882-59.797Q-5.882-59.832-5.852-59.858Q-5.823-59.883-5.792-59.883L-5.690-59.883Q-5.647-59.883-5.624-59.854Q-5.600-59.824-5.600-59.782Q-5.600-59.344-5.776-58.955Q-5.952-58.567-6.263-58.283Q-6.573-58-6.983-57.838Q-7.393-57.676-7.815-57.676Q-8.405-57.676-8.946-57.897Q-9.487-58.117-9.903-58.522Q-10.319-58.926-10.552-59.455Q-10.784-59.985-10.784-60.578\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 215.396)\">\u003Cpath d=\"M-1.359-58.797L-1.359-60.539Q-1.359-60.754-1.422-60.850Q-1.484-60.946-1.603-60.967Q-1.722-60.989-1.969-60.989L-1.969-61.285L-0.722-61.371L-0.722-58.821L-0.722-58.797Q-0.722-58.485-0.668-58.323Q-0.613-58.160-0.463-58.090Q-0.312-58.020 0.008-58.020Q0.438-58.020 0.711-58.358Q0.985-58.696 0.985-59.141L0.985-60.539Q0.985-60.754 0.922-60.850Q0.860-60.946 0.740-60.967Q0.621-60.989 0.375-60.989L0.375-61.285L1.621-61.371L1.621-58.586Q1.621-58.375 1.684-58.280Q1.746-58.184 1.865-58.162Q1.985-58.141 2.231-58.141L2.231-57.844L1.008-57.766L1.008-58.387Q0.840-58.098 0.559-57.932Q0.278-57.766-0.043-57.766Q-1.359-57.766-1.359-58.797M4.559-56.293L2.703-56.293L2.703-56.586Q2.973-56.586 3.141-56.631Q3.309-56.676 3.309-56.852L3.309-60.676Q3.309-60.883 3.153-60.936Q2.996-60.989 2.703-60.989L2.703-61.285L3.926-61.371L3.926-60.907Q4.156-61.129 4.471-61.250Q4.785-61.371 5.125-61.371Q5.598-61.371 6.002-61.125Q6.406-60.879 6.639-60.463Q6.871-60.047 6.871-59.571Q6.871-59.196 6.723-58.867Q6.574-58.539 6.305-58.287Q6.035-58.035 5.692-57.901Q5.348-57.766 4.989-57.766Q4.699-57.766 4.428-57.887Q4.156-58.008 3.949-58.219L3.949-56.852Q3.949-56.676 4.117-56.631Q4.285-56.586 4.559-56.586L4.559-56.293M3.949-60.508L3.949-58.668Q4.102-58.379 4.364-58.199Q4.625-58.020 4.934-58.020Q5.219-58.020 5.442-58.158Q5.664-58.297 5.817-58.528Q5.969-58.758 6.047-59.030Q6.125-59.301 6.125-59.571Q6.125-59.903 6-60.260Q5.875-60.617 5.627-60.854Q5.379-61.090 5.031-61.090Q4.707-61.090 4.412-60.934Q4.117-60.778 3.949-60.508\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-20.245 215.396)\">\u003Cpath d=\"M9.455-57.766Q8.974-57.766 8.566-58.010Q8.158-58.254 7.920-58.668Q7.681-59.082 7.681-59.571Q7.681-60.063 7.939-60.479Q8.197-60.895 8.629-61.133Q9.060-61.371 9.552-61.371Q10.173-61.371 10.623-60.934L10.623-62.563Q10.623-62.778 10.560-62.873Q10.498-62.969 10.380-62.990Q10.263-63.012 10.017-63.012L10.017-63.309L11.240-63.395L11.240-58.586Q11.240-58.375 11.302-58.280Q11.365-58.184 11.482-58.162Q11.599-58.141 11.849-58.141L11.849-57.844L10.599-57.766L10.599-58.250Q10.134-57.766 9.455-57.766M9.521-58.020Q9.861-58.020 10.154-58.211Q10.447-58.403 10.599-58.699L10.599-60.532Q10.451-60.805 10.189-60.961Q9.927-61.117 9.615-61.117Q8.990-61.117 8.707-60.670Q8.423-60.223 8.423-59.563Q8.423-58.918 8.675-58.469Q8.927-58.020 9.521-58.020M12.455-58.676Q12.455-59.160 12.857-59.455Q13.259-59.750 13.810-59.869Q14.361-59.989 14.853-59.989L14.853-60.278Q14.853-60.504 14.738-60.711Q14.623-60.918 14.425-61.037Q14.228-61.157 13.998-61.157Q13.572-61.157 13.287-61.051Q13.357-61.024 13.404-60.969Q13.451-60.914 13.476-60.844Q13.502-60.774 13.502-60.699Q13.502-60.594 13.451-60.502Q13.400-60.410 13.308-60.360Q13.216-60.309 13.111-60.309Q13.005-60.309 12.914-60.360Q12.822-60.410 12.771-60.502Q12.720-60.594 12.720-60.699Q12.720-61.117 13.109-61.264Q13.498-61.410 13.998-61.410Q14.330-61.410 14.683-61.280Q15.037-61.149 15.265-60.895Q15.494-60.641 15.494-60.293L15.494-58.492Q15.494-58.360 15.566-58.250Q15.638-58.141 15.767-58.141Q15.892-58.141 15.961-58.246Q16.029-58.352 16.029-58.492L16.029-59.004L16.310-59.004L16.310-58.492Q16.310-58.289 16.193-58.131Q16.076-57.973 15.894-57.889Q15.713-57.805 15.509-57.805Q15.279-57.805 15.127-57.977Q14.974-58.149 14.943-58.379Q14.783-58.098 14.474-57.932Q14.166-57.766 13.814-57.766Q13.302-57.766 12.879-57.989Q12.455-58.211 12.455-58.676M13.142-58.676Q13.142-58.391 13.369-58.205Q13.595-58.020 13.888-58.020Q14.134-58.020 14.359-58.137Q14.584-58.254 14.718-58.457Q14.853-58.660 14.853-58.914L14.853-59.746Q14.588-59.746 14.302-59.692Q14.017-59.637 13.746-59.508Q13.474-59.379 13.308-59.172Q13.142-58.965 13.142-58.676M17.228-58.805L17.228-60.996L16.525-60.996L16.525-61.250Q16.880-61.250 17.123-61.483Q17.365-61.715 17.476-62.063Q17.587-62.410 17.587-62.766L17.869-62.766L17.869-61.293L19.045-61.293L19.045-60.996L17.869-60.996L17.869-58.821Q17.869-58.500 17.988-58.272Q18.107-58.043 18.388-58.043Q18.568-58.043 18.685-58.166Q18.802-58.289 18.855-58.469Q18.908-58.649 18.908-58.821L18.908-59.293L19.189-59.293L19.189-58.805Q19.189-58.551 19.084-58.311Q18.978-58.071 18.781-57.918Q18.584-57.766 18.326-57.766Q18.009-57.766 17.757-57.889Q17.505-58.012 17.367-58.246Q17.228-58.481 17.228-58.805M19.908-59.598Q19.908-60.078 20.140-60.494Q20.373-60.910 20.783-61.160Q21.193-61.410 21.670-61.410Q22.400-61.410 22.798-60.969Q23.197-60.528 23.197-59.797Q23.197-59.692 23.103-59.668L20.654-59.668L20.654-59.598Q20.654-59.188 20.775-58.832Q20.896-58.477 21.168-58.260Q21.439-58.043 21.869-58.043Q22.232-58.043 22.529-58.272Q22.826-58.500 22.927-58.852Q22.935-58.899 23.021-58.914L23.103-58.914Q23.197-58.887 23.197-58.805Q23.197-58.797 23.189-58.766Q23.127-58.539 22.988-58.356Q22.849-58.172 22.658-58.039Q22.466-57.907 22.248-57.836Q22.029-57.766 21.791-57.766Q21.420-57.766 21.082-57.903Q20.744-58.039 20.476-58.291Q20.209-58.543 20.058-58.883Q19.908-59.223 19.908-59.598M20.662-59.907L22.623-59.907Q22.623-60.211 22.521-60.502Q22.420-60.793 22.203-60.975Q21.986-61.157 21.670-61.157Q21.369-61.157 21.138-60.969Q20.908-60.782 20.785-60.490Q20.662-60.199 20.662-59.907\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-17.034-43.417v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m-17.034-29.59 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-17.034-.738v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m-17.034 13.088 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-17.034 41.94v11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m-17.034 55.767 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-17.034 84.62v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m-17.034 98.446 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-17.034 127.3v11.826\"\u002F>\u003Cpath stroke=\"none\" d=\"m-17.034 141.126 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M-15.103-57.844L-16.655-57.844L-16.655-58.124Q-16.429-58.124-16.280-58.158Q-16.132-58.193-16.132-58.333L-16.132-60.182Q-16.132-60.370-16.180-60.454Q-16.227-60.537-16.325-60.556Q-16.422-60.575-16.634-60.575L-16.634-60.855L-15.578-60.930L-15.578-58.333Q-15.578-58.193-15.446-58.158Q-15.315-58.124-15.103-58.124L-15.103-57.844M-16.374-62.151Q-16.374-62.322-16.251-62.441Q-16.128-62.561-15.957-62.561Q-15.790-62.561-15.667-62.441Q-15.544-62.322-15.544-62.151Q-15.544-61.976-15.667-61.853Q-15.790-61.730-15.957-61.730Q-16.128-61.730-16.251-61.853Q-16.374-61.976-16.374-62.151M-14.457-59.355Q-14.457-59.683-14.322-59.984Q-14.187-60.284-13.951-60.505Q-13.715-60.725-13.411-60.845Q-13.107-60.965-12.782-60.965Q-12.276-60.965-11.928-60.862Q-11.579-60.760-11.579-60.384Q-11.579-60.237-11.676-60.136Q-11.774-60.035-11.921-60.035Q-12.075-60.035-12.174-60.134Q-12.273-60.233-12.273-60.384Q-12.273-60.572-12.133-60.664Q-12.334-60.715-12.775-60.715Q-13.131-60.715-13.360-60.519Q-13.589-60.322-13.690-60.013Q-13.790-59.703-13.790-59.355Q-13.790-59.006-13.664-58.700Q-13.537-58.394-13.283-58.210Q-13.028-58.025-12.673-58.025Q-12.451-58.025-12.266-58.109Q-12.081-58.193-11.946-58.348Q-11.811-58.504-11.753-58.712Q-11.740-58.767-11.685-58.767L-11.572-58.767Q-11.541-58.767-11.519-58.743Q-11.497-58.719-11.497-58.685L-11.497-58.664Q-11.582-58.377-11.770-58.179Q-11.958-57.981-12.223-57.878Q-12.488-57.776-12.782-57.776Q-13.213-57.776-13.601-57.982Q-13.989-58.189-14.223-58.552Q-14.457-58.914-14.457-59.355M-10.950-59.327Q-10.950-59.669-10.815-59.968Q-10.680-60.267-10.441-60.491Q-10.201-60.715-9.884-60.840Q-9.566-60.965-9.234-60.965Q-8.790-60.965-8.390-60.749Q-7.990-60.534-7.756-60.156Q-7.522-59.779-7.522-59.327Q-7.522-58.986-7.664-58.702Q-7.805-58.418-8.050-58.211Q-8.294-58.005-8.604-57.890Q-8.913-57.776-9.234-57.776Q-9.665-57.776-10.066-57.977Q-10.468-58.179-10.709-58.531Q-10.950-58.883-10.950-59.327M-9.234-58.025Q-8.633-58.025-8.409-58.403Q-8.185-58.781-8.185-59.413Q-8.185-60.025-8.419-60.384Q-8.653-60.742-9.234-60.742Q-10.287-60.742-10.287-59.413Q-10.287-58.781-10.061-58.403Q-9.836-58.025-9.234-58.025\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M-6.699-59.355Q-6.699-59.693-6.558-59.984Q-6.418-60.274-6.174-60.488Q-5.930-60.701-5.625-60.816Q-5.321-60.930-4.996-60.930Q-4.726-60.930-4.463-60.831Q-4.200-60.732-4.009-60.554L-4.009-61.952Q-4.009-62.222-4.116-62.284Q-4.224-62.345-4.535-62.345L-4.535-62.626L-3.458-62.701L-3.458-58.517Q-3.458-58.329-3.404-58.246Q-3.349-58.162-3.248-58.143Q-3.147-58.124-2.932-58.124L-2.932-57.844L-4.039-57.776L-4.039-58.193Q-4.456-57.776-5.082-57.776Q-5.513-57.776-5.885-57.988Q-6.258-58.199-6.478-58.560Q-6.699-58.921-6.699-59.355M-5.024-57.998Q-4.815-57.998-4.629-58.070Q-4.443-58.141-4.289-58.278Q-4.135-58.415-4.039-58.593L-4.039-60.202Q-4.125-60.349-4.270-60.469Q-4.415-60.589-4.585-60.648Q-4.754-60.708-4.935-60.708Q-5.495-60.708-5.764-60.319Q-6.032-59.929-6.032-59.348Q-6.032-58.777-5.798-58.387Q-5.564-57.998-5.024-57.998M-2.324-59.379Q-2.324-59.700-2.199-59.989Q-2.074-60.278-1.848-60.501Q-1.623-60.725-1.327-60.845Q-1.032-60.965-0.714-60.965Q-0.386-60.965-0.124-60.865Q0.137-60.766 0.313-60.584Q0.489-60.401 0.583-60.143Q0.677-59.885 0.677-59.553Q0.677-59.461 0.595-59.440L-1.660-59.440L-1.660-59.379Q-1.660-58.791-1.377-58.408Q-1.093-58.025-0.526-58.025Q-0.204-58.025 0.064-58.218Q0.332-58.411 0.421-58.726Q0.428-58.767 0.503-58.781L0.595-58.781Q0.677-58.757 0.677-58.685Q0.677-58.678 0.671-58.651Q0.558-58.254 0.187-58.015Q-0.184-57.776-0.608-57.776Q-1.045-57.776-1.445-57.984Q-1.845-58.193-2.084-58.560Q-2.324-58.927-2.324-59.379M-1.654-59.649L0.161-59.649Q0.161-59.926 0.064-60.178Q-0.034-60.431-0.232-60.587Q-0.430-60.742-0.714-60.742Q-0.991-60.742-1.204-60.584Q-1.418-60.425-1.536-60.170Q-1.654-59.915-1.654-59.649M1.764-56.614Q1.764-56.648 1.792-56.675Q2.062-56.904 2.210-57.227Q2.359-57.550 2.359-57.906L2.359-57.943Q2.250-57.844 2.086-57.844Q1.904-57.844 1.785-57.964Q1.665-58.083 1.665-58.264Q1.665-58.439 1.785-58.558Q1.904-58.678 2.086-58.678Q2.342-58.678 2.462-58.439Q2.581-58.199 2.581-57.906Q2.581-57.506 2.412-57.135Q2.243-56.764 1.945-56.508Q1.915-56.487 1.887-56.487Q1.846-56.487 1.805-56.528Q1.764-56.569 1.764-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M7.849-57.844L6.297-57.844L6.297-58.124Q6.523-58.124 6.672-58.158Q6.820-58.193 6.820-58.333L6.820-60.182Q6.820-60.370 6.772-60.454Q6.725-60.537 6.627-60.556Q6.530-60.575 6.318-60.575L6.318-60.855L7.374-60.930L7.374-58.333Q7.374-58.193 7.506-58.158Q7.637-58.124 7.849-58.124L7.849-57.844M6.578-62.151Q6.578-62.322 6.701-62.441Q6.824-62.561 6.995-62.561Q7.162-62.561 7.285-62.441Q7.408-62.322 7.408-62.151Q7.408-61.976 7.285-61.853Q7.162-61.730 6.995-61.730Q6.824-61.730 6.701-61.853Q6.578-61.976 6.578-62.151M10.293-57.844L8.560-57.844L8.560-58.124Q8.786-58.124 8.934-58.158Q9.083-58.193 9.083-58.333L9.083-60.582L8.495-60.582L8.495-60.862L9.083-60.862L9.083-61.679Q9.083-61.997 9.261-62.245Q9.439-62.492 9.729-62.633Q10.020-62.773 10.331-62.773Q10.587-62.773 10.790-62.631Q10.994-62.489 10.994-62.246Q10.994-62.110 10.895-62.011Q10.795-61.911 10.659-61.911Q10.522-61.911 10.423-62.011Q10.324-62.110 10.324-62.246Q10.324-62.427 10.464-62.520Q10.385-62.547 10.286-62.547Q10.078-62.547 9.924-62.414Q9.770-62.281 9.690-62.077Q9.609-61.874 9.609-61.665L9.609-60.862L10.498-60.862L10.498-60.582L9.637-60.582L9.637-58.333Q9.637-58.124 10.293-58.124L10.293-57.844M11.547-58.678L11.547-60.182Q11.547-60.452 11.440-60.513Q11.332-60.575 11.021-60.575L11.021-60.855L12.128-60.930L12.128-58.698L12.128-58.678Q12.128-58.398 12.180-58.254Q12.231-58.111 12.373-58.054Q12.515-57.998 12.802-57.998Q13.055-57.998 13.260-58.138Q13.465-58.278 13.581-58.504Q13.697-58.729 13.697-58.979L13.697-60.182Q13.697-60.452 13.590-60.513Q13.482-60.575 13.171-60.575L13.171-60.855L14.278-60.930L14.278-58.517Q14.278-58.326 14.331-58.244Q14.384-58.162 14.485-58.143Q14.586-58.124 14.801-58.124L14.801-57.844L13.725-57.776L13.725-58.340Q13.615-58.158 13.470-58.035Q13.325-57.912 13.138-57.844Q12.952-57.776 12.751-57.776Q11.547-57.776 11.547-58.678M17.071-57.844L15.437-57.844L15.437-58.124Q15.666-58.124 15.815-58.158Q15.963-58.193 15.963-58.333L15.963-60.182Q15.963-60.452 15.856-60.513Q15.748-60.575 15.437-60.575L15.437-60.855L16.497-60.930L16.497-60.281Q16.668-60.589 16.972-60.760Q17.276-60.930 17.621-60.930Q18.127-60.930 18.411-60.707Q18.694-60.483 18.694-59.987L18.694-58.333Q18.694-58.196 18.843-58.160Q18.992-58.124 19.217-58.124L19.217-57.844L17.587-57.844L17.587-58.124Q17.816-58.124 17.965-58.158Q18.113-58.193 18.113-58.333L18.113-59.973Q18.113-60.308 17.994-60.508Q17.874-60.708 17.560-60.708Q17.290-60.708 17.055-60.572Q16.821-60.435 16.683-60.201Q16.544-59.967 16.544-59.693L16.544-58.333Q16.544-58.196 16.695-58.160Q16.845-58.124 17.071-58.124L17.071-57.844M20.304-56.614Q20.304-56.648 20.332-56.675Q20.602-56.904 20.750-57.227Q20.899-57.550 20.899-57.906L20.899-57.943Q20.790-57.844 20.626-57.844Q20.444-57.844 20.325-57.964Q20.205-58.083 20.205-58.264Q20.205-58.439 20.325-58.558Q20.444-58.678 20.626-58.678Q20.882-58.678 21.001-58.439Q21.121-58.199 21.121-57.906Q21.121-57.506 20.952-57.135Q20.783-56.764 20.485-56.508Q20.455-56.487 20.427-56.487Q20.386-56.487 20.345-56.528Q20.304-56.569 20.304-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M26.517-57.844L24.781-57.844L24.781-58.124Q25.010-58.124 25.159-58.158Q25.307-58.193 25.307-58.333L25.307-60.182Q25.307-60.452 25.200-60.513Q25.092-60.575 24.781-60.575L24.781-60.855L25.810-60.930L25.810-60.223Q25.940-60.531 26.182-60.730Q26.425-60.930 26.743-60.930Q26.962-60.930 27.133-60.806Q27.304-60.681 27.304-60.469Q27.304-60.332 27.204-60.233Q27.105-60.134 26.972-60.134Q26.835-60.134 26.736-60.233Q26.637-60.332 26.637-60.469Q26.637-60.609 26.736-60.708Q26.446-60.708 26.246-60.512Q26.046-60.315 25.953-60.021Q25.861-59.727 25.861-59.447L25.861-58.333Q25.861-58.124 26.517-58.124L26.517-57.844M29.477-57.844L27.888-57.844L27.888-58.124Q28.531-58.124 28.688-58.524L30.332-62.739Q30.366-62.834 30.479-62.834L30.561-62.834Q30.670-62.834 30.711-62.739L32.431-58.333Q32.499-58.193 32.689-58.158Q32.878-58.124 33.152-58.124L33.152-57.844L31.152-57.844L31.152-58.124Q31.716-58.124 31.716-58.299Q31.716-58.316 31.714-58.323Q31.713-58.329 31.709-58.333L31.289-59.399L29.330-59.399L28.989-58.524Q28.975-58.524 28.975-58.446Q28.975-58.285 29.137-58.205Q29.300-58.124 29.477-58.124L29.477-57.844M30.311-61.918L29.443-59.679L31.186-59.679L30.311-61.918M34.286-56.614Q34.286-56.648 34.314-56.675Q34.584-56.904 34.733-57.227Q34.881-57.550 34.881-57.906L34.881-57.943Q34.772-57.844 34.608-57.844Q34.427-57.844 34.307-57.964Q34.187-58.083 34.187-58.264Q34.187-58.439 34.307-58.558Q34.427-58.678 34.608-58.678Q34.864-58.678 34.984-58.439Q35.103-58.199 35.103-57.906Q35.103-57.506 34.934-57.135Q34.765-56.764 34.468-56.508Q34.437-56.487 34.410-56.487Q34.369-56.487 34.328-56.528Q34.286-56.569 34.286-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M40.503-57.844L38.767-57.844L38.767-58.124Q38.996-58.124 39.145-58.158Q39.293-58.193 39.293-58.333L39.293-60.182Q39.293-60.452 39.186-60.513Q39.078-60.575 38.767-60.575L38.767-60.855L39.796-60.930L39.796-60.223Q39.926-60.531 40.168-60.730Q40.411-60.930 40.729-60.930Q40.948-60.930 41.119-60.806Q41.290-60.681 41.290-60.469Q41.290-60.332 41.190-60.233Q41.091-60.134 40.958-60.134Q40.821-60.134 40.722-60.233Q40.623-60.332 40.623-60.469Q40.623-60.609 40.722-60.708Q40.432-60.708 40.232-60.512Q40.032-60.315 39.939-60.021Q39.847-59.727 39.847-59.447L39.847-58.333Q39.847-58.124 40.503-58.124L40.503-57.844M44.940-57.844L41.966-57.844L41.966-58.124Q42.688-58.124 42.688-58.333L42.688-62.134Q42.688-62.345 41.966-62.345L41.966-62.626L44.725-62.626Q44.991-62.626 45.297-62.551Q45.603-62.475 45.863-62.328Q46.123-62.181 46.285-61.952Q46.447-61.723 46.447-61.429Q46.447-60.999 46.061-60.717Q45.675-60.435 45.193-60.343Q45.501-60.343 45.849-60.178Q46.198-60.014 46.427-59.736Q46.656-59.457 46.656-59.139Q46.656-58.733 46.393-58.439Q46.129-58.145 45.731-57.994Q45.333-57.844 44.940-57.844M43.330-60.216L43.330-58.333Q43.330-58.193 43.419-58.158Q43.508-58.124 43.696-58.124L44.725-58.124Q45.012-58.124 45.289-58.251Q45.565-58.377 45.736-58.611Q45.907-58.845 45.907-59.139Q45.907-59.355 45.825-59.551Q45.743-59.748 45.593-59.898Q45.442-60.049 45.246-60.132Q45.049-60.216 44.834-60.216L43.330-60.216M43.330-62.134L43.330-60.442L44.513-60.442Q44.800-60.442 45.080-60.561Q45.360-60.681 45.540-60.908Q45.719-61.136 45.719-61.429Q45.719-61.679 45.581-61.893Q45.442-62.106 45.213-62.226Q44.984-62.345 44.725-62.345L43.696-62.345Q43.508-62.345 43.419-62.311Q43.330-62.277 43.330-62.134M47.958-56.614Q47.958-56.648 47.985-56.675Q48.255-56.904 48.404-57.227Q48.553-57.550 48.553-57.906L48.553-57.943Q48.443-57.844 48.279-57.844Q48.098-57.844 47.979-57.964Q47.859-58.083 47.859-58.264Q47.859-58.439 47.979-58.558Q48.098-58.678 48.279-58.678Q48.536-58.678 48.655-58.439Q48.775-58.199 48.775-57.906Q48.775-57.506 48.606-57.135Q48.437-56.764 48.139-56.508Q48.108-56.487 48.081-56.487Q48.040-56.487 47.999-56.528Q47.958-56.569 47.958-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M54.017-57.871L52.889-60.370Q52.817-60.517 52.687-60.549Q52.557-60.582 52.328-60.582L52.328-60.862L53.842-60.862L53.842-60.582Q53.490-60.582 53.490-60.435Q53.490-60.390 53.501-60.370L54.365-58.452L55.145-60.182Q55.179-60.250 55.179-60.329Q55.179-60.442 55.095-60.512Q55.011-60.582 54.892-60.582L54.892-60.862L56.088-60.862L56.088-60.582Q55.869-60.582 55.698-60.479Q55.528-60.377 55.439-60.182L54.403-57.871Q54.355-57.776 54.249-57.776L54.171-57.776Q54.065-57.776 54.017-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M56.256-58.572Q56.256-58.904 56.479-59.131Q56.703-59.358 57.047-59.486Q57.390-59.615 57.763-59.667Q58.135-59.720 58.440-59.720L58.440-59.973Q58.440-60.178 58.332-60.358Q58.224-60.537 58.043-60.640Q57.862-60.742 57.654-60.742Q57.247-60.742 57.011-60.650Q57.100-60.613 57.146-60.529Q57.192-60.445 57.192-60.343Q57.192-60.247 57.146-60.168Q57.100-60.090 57.019-60.045Q56.939-60.001 56.850-60.001Q56.700-60.001 56.599-60.098Q56.498-60.196 56.498-60.343Q56.498-60.965 57.654-60.965Q57.865-60.965 58.115-60.901Q58.364-60.838 58.566-60.719Q58.768-60.599 58.894-60.414Q59.021-60.230 59.021-59.987L59.021-58.411Q59.021-58.295 59.082-58.199Q59.144-58.104 59.257-58.104Q59.366-58.104 59.431-58.198Q59.496-58.292 59.496-58.411L59.496-58.859L59.762-58.859L59.762-58.411Q59.762-58.141 59.535-57.976Q59.308-57.810 59.028-57.810Q58.819-57.810 58.682-57.964Q58.546-58.117 58.522-58.333Q58.375-58.066 58.093-57.921Q57.811-57.776 57.486-57.776Q57.209-57.776 56.925-57.851Q56.642-57.926 56.449-58.105Q56.256-58.285 56.256-58.572M56.871-58.572Q56.871-58.398 56.972-58.268Q57.072-58.138 57.228-58.068Q57.383-57.998 57.548-57.998Q57.766-57.998 57.975-58.095Q58.183-58.193 58.311-58.374Q58.440-58.555 58.440-58.781L58.440-59.509Q58.115-59.509 57.749-59.418Q57.383-59.327 57.127-59.115Q56.871-58.904 56.871-58.572M61.847-57.844L60.244-57.844L60.244-58.124Q60.470-58.124 60.619-58.158Q60.767-58.193 60.767-58.333L60.767-61.952Q60.767-62.222 60.660-62.284Q60.552-62.345 60.244-62.345L60.244-62.626L61.321-62.701L61.321-58.333Q61.321-58.196 61.471-58.160Q61.622-58.124 61.847-58.124L61.847-57.844M62.616-60.237Q62.616-60.763 62.833-61.231Q63.050-61.699 63.433-62.045Q63.816-62.390 64.300-62.578Q64.783-62.766 65.313-62.766Q65.716-62.766 66.081-62.609Q66.445-62.451 66.728-62.157L67.152-62.739Q67.186-62.766 67.210-62.766L67.258-62.766Q67.289-62.766 67.313-62.742Q67.337-62.718 67.337-62.687L67.337-60.824Q67.337-60.801 67.311-60.775Q67.285-60.749 67.258-60.749L67.132-60.749Q67.070-60.749 67.056-60.824Q67.026-61.139 66.891-61.443Q66.756-61.747 66.540-61.981Q66.325-62.216 66.036-62.351Q65.747-62.486 65.419-62.486Q64.777-62.486 64.319-62.192Q63.861-61.898 63.628-61.385Q63.396-60.872 63.396-60.237Q63.396-59.765 63.526-59.356Q63.655-58.948 63.915-58.635Q64.175-58.323 64.554-58.153Q64.934-57.984 65.426-57.984Q65.754-57.984 66.048-58.100Q66.342-58.217 66.576-58.432Q66.810-58.647 66.940-58.936Q67.070-59.225 67.070-59.553Q67.070-59.580 67.097-59.604Q67.125-59.628 67.145-59.628L67.258-59.628Q67.296-59.628 67.316-59.603Q67.337-59.577 67.337-59.539Q67.337-59.143 67.171-58.806Q67.005-58.469 66.718-58.222Q66.431-57.974 66.062-57.839Q65.693-57.704 65.313-57.704Q64.794-57.704 64.301-57.894Q63.809-58.083 63.430-58.427Q63.050-58.770 62.833-59.239Q62.616-59.707 62.616-60.237M68.646-56.614Q68.646-56.648 68.673-56.675Q68.943-56.904 69.092-57.227Q69.240-57.550 69.240-57.906L69.240-57.943Q69.131-57.844 68.967-57.844Q68.786-57.844 68.666-57.964Q68.547-58.083 68.547-58.264Q68.547-58.439 68.666-58.558Q68.786-58.678 68.967-58.678Q69.223-58.678 69.343-58.439Q69.463-58.199 69.463-57.906Q69.463-57.506 69.293-57.135Q69.124-56.764 68.827-56.508Q68.796-56.487 68.769-56.487Q68.728-56.487 68.687-56.528Q68.646-56.569 68.646-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M74.704-57.871L73.576-60.370Q73.504-60.517 73.374-60.549Q73.244-60.582 73.015-60.582L73.015-60.862L74.529-60.862L74.529-60.582Q74.177-60.582 74.177-60.435Q74.177-60.390 74.188-60.370L75.052-58.452L75.832-60.182Q75.866-60.250 75.866-60.329Q75.866-60.442 75.782-60.512Q75.698-60.582 75.579-60.582L75.579-60.862L76.775-60.862L76.775-60.582Q76.556-60.582 76.385-60.479Q76.215-60.377 76.126-60.182L75.090-57.871Q75.042-57.776 74.936-57.776L74.858-57.776Q74.752-57.776 74.704-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 23.09)\">\u003Cpath d=\"M76.944-58.572Q76.944-58.904 77.167-59.131Q77.391-59.358 77.735-59.486Q78.078-59.615 78.451-59.667Q78.823-59.720 79.128-59.720L79.128-59.973Q79.128-60.178 79.020-60.358Q78.912-60.537 78.731-60.640Q78.550-60.742 78.342-60.742Q77.935-60.742 77.699-60.650Q77.788-60.613 77.834-60.529Q77.880-60.445 77.880-60.343Q77.880-60.247 77.834-60.168Q77.788-60.090 77.707-60.045Q77.627-60.001 77.538-60.001Q77.388-60.001 77.287-60.098Q77.186-60.196 77.186-60.343Q77.186-60.965 78.342-60.965Q78.553-60.965 78.803-60.901Q79.052-60.838 79.254-60.719Q79.456-60.599 79.582-60.414Q79.709-60.230 79.709-59.987L79.709-58.411Q79.709-58.295 79.770-58.199Q79.832-58.104 79.945-58.104Q80.054-58.104 80.119-58.198Q80.184-58.292 80.184-58.411L80.184-58.859L80.450-58.859L80.450-58.411Q80.450-58.141 80.223-57.976Q79.996-57.810 79.716-57.810Q79.507-57.810 79.370-57.964Q79.234-58.117 79.210-58.333Q79.063-58.066 78.781-57.921Q78.499-57.776 78.174-57.776Q77.897-57.776 77.613-57.851Q77.330-57.926 77.137-58.105Q76.944-58.285 76.944-58.572M77.559-58.572Q77.559-58.398 77.660-58.268Q77.760-58.138 77.916-58.068Q78.071-57.998 78.236-57.998Q78.454-57.998 78.663-58.095Q78.871-58.193 78.999-58.374Q79.128-58.555 79.128-58.781L79.128-59.509Q78.803-59.509 78.437-59.418Q78.071-59.327 77.815-59.115Q77.559-58.904 77.559-58.572M82.535-57.844L80.932-57.844L80.932-58.124Q81.158-58.124 81.307-58.158Q81.455-58.193 81.455-58.333L81.455-61.952Q81.455-62.222 81.348-62.284Q81.240-62.345 80.932-62.345L80.932-62.626L82.009-62.701L82.009-58.333Q82.009-58.196 82.159-58.160Q82.310-58.124 82.535-58.124L82.535-57.844M85.342-57.844L83.209-57.844L83.209-58.124Q83.930-58.124 83.930-58.333L83.930-62.134Q83.930-62.345 83.209-62.345L83.209-62.626L85.875-62.626Q86.285-62.626 86.705-62.472Q87.126-62.318 87.409-62.014Q87.693-61.710 87.693-61.296Q87.693-60.978 87.526-60.732Q87.358-60.486 87.081-60.320Q86.804-60.155 86.483-60.071Q86.162-59.987 85.875-59.987L84.620-59.987L84.620-58.333Q84.620-58.124 85.342-58.124L85.342-57.844M84.593-62.134L84.593-60.237L85.680-60.237Q86.288-60.237 86.603-60.474Q86.917-60.712 86.917-61.296Q86.917-61.689 86.772-61.923Q86.627-62.157 86.355-62.251Q86.083-62.345 85.680-62.345L84.959-62.345Q84.771-62.345 84.682-62.311Q84.593-62.277 84.593-62.134\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(57.593 65.769)\">\u003Cpath d=\"M-15.130-57.871L-16.258-60.370Q-16.330-60.517-16.460-60.549Q-16.590-60.582-16.819-60.582L-16.819-60.862L-15.305-60.862L-15.305-60.582Q-15.657-60.582-15.657-60.435Q-15.657-60.390-15.646-60.370L-14.782-58.452L-14.002-60.182Q-13.968-60.250-13.968-60.329Q-13.968-60.442-14.052-60.512Q-14.136-60.582-14.255-60.582L-14.255-60.862L-13.059-60.862L-13.059-60.582Q-13.278-60.582-13.449-60.479Q-13.619-60.377-13.708-60.182L-14.744-57.871Q-14.792-57.776-14.898-57.776L-14.976-57.776Q-15.082-57.776-15.130-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 65.769)\">\u003Cpath d=\"M-12.890-58.572Q-12.890-58.904-12.667-59.131Q-12.443-59.358-12.099-59.486Q-11.756-59.615-11.383-59.667Q-11.011-59.720-10.706-59.720L-10.706-59.973Q-10.706-60.178-10.814-60.358Q-10.922-60.537-11.103-60.640Q-11.284-60.742-11.492-60.742Q-11.899-60.742-12.135-60.650Q-12.046-60.613-12-60.529Q-11.954-60.445-11.954-60.343Q-11.954-60.247-12-60.168Q-12.046-60.090-12.127-60.045Q-12.207-60.001-12.296-60.001Q-12.446-60.001-12.547-60.098Q-12.648-60.196-12.648-60.343Q-12.648-60.965-11.492-60.965Q-11.281-60.965-11.031-60.901Q-10.782-60.838-10.580-60.719Q-10.378-60.599-10.252-60.414Q-10.125-60.230-10.125-59.987L-10.125-58.411Q-10.125-58.295-10.064-58.199Q-10.002-58.104-9.889-58.104Q-9.780-58.104-9.715-58.198Q-9.650-58.292-9.650-58.411L-9.650-58.859L-9.384-58.859L-9.384-58.411Q-9.384-58.141-9.611-57.976Q-9.838-57.810-10.118-57.810Q-10.327-57.810-10.464-57.964Q-10.600-58.117-10.624-58.333Q-10.771-58.066-11.053-57.921Q-11.335-57.776-11.660-57.776Q-11.937-57.776-12.221-57.851Q-12.504-57.926-12.697-58.105Q-12.890-58.285-12.890-58.572M-12.275-58.572Q-12.275-58.398-12.174-58.268Q-12.074-58.138-11.918-58.068Q-11.763-57.998-11.598-57.998Q-11.380-57.998-11.171-58.095Q-10.963-58.193-10.835-58.374Q-10.706-58.555-10.706-58.781L-10.706-59.509Q-11.031-59.509-11.397-59.418Q-11.763-59.327-12.019-59.115Q-12.275-58.904-12.275-58.572M-7.299-57.844L-8.902-57.844L-8.902-58.124Q-8.676-58.124-8.527-58.158Q-8.379-58.193-8.379-58.333L-8.379-61.952Q-8.379-62.222-8.486-62.284Q-8.594-62.345-8.902-62.345L-8.902-62.626L-7.825-62.701L-7.825-58.333Q-7.825-58.196-7.675-58.160Q-7.524-58.124-7.299-58.124L-7.299-57.844M-5.115-57.844L-6.704-57.844L-6.704-58.124Q-6.061-58.124-5.904-58.524L-4.260-62.739Q-4.226-62.834-4.113-62.834L-4.031-62.834Q-3.922-62.834-3.881-62.739L-2.161-58.333Q-2.093-58.193-1.903-58.158Q-1.714-58.124-1.440-58.124L-1.440-57.844L-3.440-57.844L-3.440-58.124Q-2.876-58.124-2.876-58.299Q-2.876-58.316-2.878-58.323Q-2.879-58.329-2.883-58.333L-3.303-59.399L-5.262-59.399L-5.603-58.524Q-5.617-58.524-5.617-58.446Q-5.617-58.285-5.455-58.205Q-5.292-58.124-5.115-58.124L-5.115-57.844M-4.281-61.918L-5.149-59.679L-3.406-59.679L-4.281-61.918M-0.305-56.614Q-0.305-56.648-0.278-56.675Q-0.008-56.904 0.141-57.227Q0.289-57.550 0.289-57.906L0.289-57.943Q0.180-57.844 0.016-57.844Q-0.165-57.844-0.285-57.964Q-0.405-58.083-0.405-58.264Q-0.405-58.439-0.285-58.558Q-0.165-58.678 0.016-58.678Q0.272-58.678 0.392-58.439Q0.511-58.199 0.511-57.906Q0.511-57.506 0.342-57.135Q0.173-56.764-0.124-56.508Q-0.155-56.487-0.182-56.487Q-0.223-56.487-0.264-56.528Q-0.305-56.569-0.305-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 65.769)\">\u003Cpath d=\"M5.752-57.871L4.624-60.370Q4.552-60.517 4.422-60.549Q4.292-60.582 4.063-60.582L4.063-60.862L5.577-60.862L5.577-60.582Q5.225-60.582 5.225-60.435Q5.225-60.390 5.236-60.370L6.100-58.452L6.880-60.182Q6.914-60.250 6.914-60.329Q6.914-60.442 6.830-60.512Q6.746-60.582 6.627-60.582L6.627-60.862L7.823-60.862L7.823-60.582Q7.604-60.582 7.433-60.479Q7.263-60.377 7.174-60.182L6.138-57.871Q6.090-57.776 5.984-57.776L5.906-57.776Q5.800-57.776 5.752-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 65.769)\">\u003Cpath d=\"M7.992-58.572Q7.992-58.904 8.215-59.131Q8.439-59.358 8.783-59.486Q9.126-59.615 9.499-59.667Q9.871-59.720 10.176-59.720L10.176-59.973Q10.176-60.178 10.068-60.358Q9.960-60.537 9.779-60.640Q9.598-60.742 9.390-60.742Q8.983-60.742 8.747-60.650Q8.836-60.613 8.882-60.529Q8.928-60.445 8.928-60.343Q8.928-60.247 8.882-60.168Q8.836-60.090 8.755-60.045Q8.675-60.001 8.586-60.001Q8.436-60.001 8.335-60.098Q8.234-60.196 8.234-60.343Q8.234-60.965 9.390-60.965Q9.601-60.965 9.851-60.901Q10.100-60.838 10.302-60.719Q10.504-60.599 10.630-60.414Q10.757-60.230 10.757-59.987L10.757-58.411Q10.757-58.295 10.818-58.199Q10.880-58.104 10.993-58.104Q11.102-58.104 11.167-58.198Q11.232-58.292 11.232-58.411L11.232-58.859L11.498-58.859L11.498-58.411Q11.498-58.141 11.271-57.976Q11.044-57.810 10.764-57.810Q10.555-57.810 10.418-57.964Q10.282-58.117 10.258-58.333Q10.111-58.066 9.829-57.921Q9.547-57.776 9.222-57.776Q8.945-57.776 8.661-57.851Q8.378-57.926 8.185-58.105Q7.992-58.285 7.992-58.572M8.607-58.572Q8.607-58.398 8.708-58.268Q8.808-58.138 8.964-58.068Q9.119-57.998 9.284-57.998Q9.502-57.998 9.711-58.095Q9.919-58.193 10.047-58.374Q10.176-58.555 10.176-58.781L10.176-59.509Q9.851-59.509 9.485-59.418Q9.119-59.327 8.863-59.115Q8.607-58.904 8.607-58.572M13.583-57.844L11.980-57.844L11.980-58.124Q12.206-58.124 12.355-58.158Q12.503-58.193 12.503-58.333L12.503-61.952Q12.503-62.222 12.396-62.284Q12.288-62.345 11.980-62.345L11.980-62.626L13.057-62.701L13.057-58.333Q13.057-58.196 13.207-58.160Q13.358-58.124 13.583-58.124L13.583-57.844M17.244-57.844L14.270-57.844L14.270-58.124Q14.992-58.124 14.992-58.333L14.992-62.134Q14.992-62.345 14.270-62.345L14.270-62.626L17.029-62.626Q17.295-62.626 17.601-62.551Q17.907-62.475 18.167-62.328Q18.427-62.181 18.589-61.952Q18.751-61.723 18.751-61.429Q18.751-60.999 18.365-60.717Q17.979-60.435 17.497-60.343Q17.805-60.343 18.153-60.178Q18.502-60.014 18.731-59.736Q18.960-59.457 18.960-59.139Q18.960-58.733 18.697-58.439Q18.433-58.145 18.035-57.994Q17.637-57.844 17.244-57.844M15.634-60.216L15.634-58.333Q15.634-58.193 15.723-58.158Q15.812-58.124 16-58.124L17.029-58.124Q17.316-58.124 17.593-58.251Q17.869-58.377 18.040-58.611Q18.211-58.845 18.211-59.139Q18.211-59.355 18.129-59.551Q18.047-59.748 17.897-59.898Q17.746-60.049 17.550-60.132Q17.353-60.216 17.138-60.216L15.634-60.216M15.634-62.134L15.634-60.442L16.817-60.442Q17.104-60.442 17.384-60.561Q17.664-60.681 17.844-60.908Q18.023-61.136 18.023-61.429Q18.023-61.679 17.885-61.893Q17.746-62.106 17.517-62.226Q17.288-62.345 17.029-62.345L16-62.345Q15.812-62.345 15.723-62.311Q15.634-62.277 15.634-62.134\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(57.593 108.448)\">\u003Cpath d=\"M-15.130-57.871L-16.258-60.370Q-16.330-60.517-16.460-60.549Q-16.590-60.582-16.819-60.582L-16.819-60.862L-15.305-60.862L-15.305-60.582Q-15.657-60.582-15.657-60.435Q-15.657-60.390-15.646-60.370L-14.782-58.452L-14.002-60.182Q-13.968-60.250-13.968-60.329Q-13.968-60.442-14.052-60.512Q-14.136-60.582-14.255-60.582L-14.255-60.862L-13.059-60.862L-13.059-60.582Q-13.278-60.582-13.449-60.479Q-13.619-60.377-13.708-60.182L-14.744-57.871Q-14.792-57.776-14.898-57.776L-14.976-57.776Q-15.082-57.776-15.130-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 108.448)\">\u003Cpath d=\"M-12.890-58.572Q-12.890-58.904-12.667-59.131Q-12.443-59.358-12.099-59.486Q-11.756-59.615-11.383-59.667Q-11.011-59.720-10.706-59.720L-10.706-59.973Q-10.706-60.178-10.814-60.358Q-10.922-60.537-11.103-60.640Q-11.284-60.742-11.492-60.742Q-11.899-60.742-12.135-60.650Q-12.046-60.613-12-60.529Q-11.954-60.445-11.954-60.343Q-11.954-60.247-12-60.168Q-12.046-60.090-12.127-60.045Q-12.207-60.001-12.296-60.001Q-12.446-60.001-12.547-60.098Q-12.648-60.196-12.648-60.343Q-12.648-60.965-11.492-60.965Q-11.281-60.965-11.031-60.901Q-10.782-60.838-10.580-60.719Q-10.378-60.599-10.252-60.414Q-10.125-60.230-10.125-59.987L-10.125-58.411Q-10.125-58.295-10.064-58.199Q-10.002-58.104-9.889-58.104Q-9.780-58.104-9.715-58.198Q-9.650-58.292-9.650-58.411L-9.650-58.859L-9.384-58.859L-9.384-58.411Q-9.384-58.141-9.611-57.976Q-9.838-57.810-10.118-57.810Q-10.327-57.810-10.464-57.964Q-10.600-58.117-10.624-58.333Q-10.771-58.066-11.053-57.921Q-11.335-57.776-11.660-57.776Q-11.937-57.776-12.221-57.851Q-12.504-57.926-12.697-58.105Q-12.890-58.285-12.890-58.572M-12.275-58.572Q-12.275-58.398-12.174-58.268Q-12.074-58.138-11.918-58.068Q-11.763-57.998-11.598-57.998Q-11.380-57.998-11.171-58.095Q-10.963-58.193-10.835-58.374Q-10.706-58.555-10.706-58.781L-10.706-59.509Q-11.031-59.509-11.397-59.418Q-11.763-59.327-12.019-59.115Q-12.275-58.904-12.275-58.572M-7.299-57.844L-8.902-57.844L-8.902-58.124Q-8.676-58.124-8.527-58.158Q-8.379-58.193-8.379-58.333L-8.379-61.952Q-8.379-62.222-8.486-62.284Q-8.594-62.345-8.902-62.345L-8.902-62.626L-7.825-62.701L-7.825-58.333Q-7.825-58.196-7.675-58.160Q-7.524-58.124-7.299-58.124L-7.299-57.844M-2.237-57.844L-6.639-57.844L-6.639-58.124Q-5.918-58.124-5.918-58.333L-5.918-62.134Q-5.918-62.345-6.639-62.345L-6.639-62.626L-2.349-62.626L-2.141-60.989L-2.404-60.989Q-2.462-61.460-2.565-61.725Q-2.667-61.990-2.852-62.123Q-3.036-62.257-3.308-62.301Q-3.580-62.345-4.079-62.345L-4.862-62.345Q-5.050-62.345-5.138-62.311Q-5.227-62.277-5.227-62.134L-5.227-60.469L-4.653-60.469Q-4.263-60.469-4.081-60.520Q-3.898-60.572-3.816-60.744Q-3.734-60.917-3.734-61.289L-3.471-61.289L-3.471-59.368L-3.734-59.368Q-3.734-59.741-3.816-59.914Q-3.898-60.086-4.081-60.137Q-4.263-60.189-4.653-60.189L-5.227-60.189L-5.227-58.333Q-5.227-58.193-5.138-58.158Q-5.050-58.124-4.862-58.124L-4.014-58.124Q-3.484-58.124-3.175-58.193Q-2.866-58.261-2.678-58.428Q-2.490-58.596-2.382-58.898Q-2.274-59.201-2.189-59.714L-1.922-59.714L-2.237-57.844M-0.835-56.614Q-0.835-56.648-0.808-56.675Q-0.538-56.904-0.389-57.227Q-0.241-57.550-0.241-57.906L-0.241-57.943Q-0.350-57.844-0.514-57.844Q-0.695-57.844-0.815-57.964Q-0.934-58.083-0.934-58.264Q-0.934-58.439-0.815-58.558Q-0.695-58.678-0.514-58.678Q-0.258-58.678-0.138-58.439Q-0.018-58.199-0.018-57.906Q-0.018-57.506-0.188-57.135Q-0.357-56.764-0.654-56.508Q-0.685-56.487-0.712-56.487Q-0.753-56.487-0.794-56.528Q-0.835-56.569-0.835-56.614\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 108.448)\">\u003Cpath d=\"M3.810-60.237Q3.810-60.763 4.027-61.231Q4.244-61.699 4.627-62.045Q5.009-62.390 5.493-62.578Q5.977-62.766 6.507-62.766Q6.910-62.766 7.274-62.609Q7.638-62.451 7.922-62.157L8.345-62.739Q8.380-62.766 8.404-62.766L8.451-62.766Q8.482-62.766 8.506-62.742Q8.530-62.718 8.530-62.687L8.530-60.824Q8.530-60.801 8.504-60.775Q8.479-60.749 8.451-60.749L8.325-60.749Q8.263-60.749 8.250-60.824Q8.219-61.139 8.084-61.443Q7.949-61.747 7.734-61.981Q7.518-62.216 7.229-62.351Q6.941-62.486 6.613-62.486Q5.970-62.486 5.512-62.192Q5.054-61.898 4.821-61.385Q4.589-60.872 4.589-60.237Q4.589-59.765 4.719-59.356Q4.849-58.948 5.109-58.635Q5.368-58.323 5.748-58.153Q6.127-57.984 6.619-57.984Q6.947-57.984 7.241-58.100Q7.535-58.217 7.769-58.432Q8.004-58.647 8.133-58.936Q8.263-59.225 8.263-59.553Q8.263-59.580 8.291-59.604Q8.318-59.628 8.339-59.628L8.451-59.628Q8.489-59.628 8.509-59.603Q8.530-59.577 8.530-59.539Q8.530-59.143 8.364-58.806Q8.198-58.469 7.911-58.222Q7.624-57.974 7.255-57.839Q6.886-57.704 6.507-57.704Q5.987-57.704 5.495-57.894Q5.003-58.083 4.623-58.427Q4.244-58.770 4.027-59.239Q3.810-59.707 3.810-60.237M11.022-57.844L9.388-57.844L9.388-58.124Q9.617-58.124 9.766-58.158Q9.914-58.193 9.914-58.333L9.914-60.182Q9.914-60.452 9.807-60.513Q9.699-60.575 9.388-60.575L9.388-60.855L10.447-60.930L10.447-60.281Q10.618-60.589 10.923-60.760Q11.227-60.930 11.572-60.930Q12.078-60.930 12.362-60.707Q12.645-60.483 12.645-59.987L12.645-58.333Q12.645-58.196 12.794-58.160Q12.943-58.124 13.168-58.124L13.168-57.844L11.538-57.844L11.538-58.124Q11.767-58.124 11.915-58.158Q12.064-58.193 12.064-58.333L12.064-59.973Q12.064-60.308 11.945-60.508Q11.825-60.708 11.510-60.708Q11.240-60.708 11.006-60.572Q10.772-60.435 10.634-60.201Q10.495-59.967 10.495-59.693L10.495-58.333Q10.495-58.196 10.646-58.160Q10.796-58.124 11.022-58.124L11.022-57.844M13.756-59.355Q13.756-59.693 13.896-59.984Q14.036-60.274 14.281-60.488Q14.525-60.701 14.829-60.816Q15.133-60.930 15.458-60.930Q15.728-60.930 15.991-60.831Q16.255-60.732 16.446-60.554L16.446-61.952Q16.446-62.222 16.338-62.284Q16.231-62.345 15.920-62.345L15.920-62.626L16.996-62.701L16.996-58.517Q16.996-58.329 17.051-58.246Q17.106-58.162 17.206-58.143Q17.307-58.124 17.523-58.124L17.523-57.844L16.415-57.776L16.415-58.193Q15.998-57.776 15.373-57.776Q14.942-57.776 14.570-57.988Q14.197-58.199 13.977-58.560Q13.756-58.921 13.756-59.355M15.431-57.998Q15.639-57.998 15.826-58.070Q16.012-58.141 16.166-58.278Q16.320-58.415 16.415-58.593L16.415-60.202Q16.330-60.349 16.185-60.469Q16.039-60.589 15.870-60.648Q15.701-60.708 15.520-60.708Q14.959-60.708 14.691-60.319Q14.423-59.929 14.423-59.348Q14.423-58.777 14.657-58.387Q14.891-57.998 15.431-57.998\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(57.593 151.807)\">\u003Cpath d=\"M-15.130-57.871L-16.258-60.370Q-16.330-60.517-16.460-60.549Q-16.590-60.582-16.819-60.582L-16.819-60.862L-15.305-60.862L-15.305-60.582Q-15.657-60.582-15.657-60.435Q-15.657-60.390-15.646-60.370L-14.782-58.452L-14.002-60.182Q-13.968-60.250-13.968-60.329Q-13.968-60.442-14.052-60.512Q-14.136-60.582-14.255-60.582L-14.255-60.862L-13.059-60.862L-13.059-60.582Q-13.278-60.582-13.449-60.479Q-13.619-60.377-13.708-60.182L-14.744-57.871Q-14.792-57.776-14.898-57.776L-14.976-57.776Q-15.082-57.776-15.130-57.871\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 151.807)\">\u003Cpath d=\"M-12.890-58.572Q-12.890-58.904-12.667-59.131Q-12.443-59.358-12.099-59.486Q-11.756-59.615-11.383-59.667Q-11.011-59.720-10.706-59.720L-10.706-59.973Q-10.706-60.178-10.814-60.358Q-10.922-60.537-11.103-60.640Q-11.284-60.742-11.492-60.742Q-11.899-60.742-12.135-60.650Q-12.046-60.613-12-60.529Q-11.954-60.445-11.954-60.343Q-11.954-60.247-12-60.168Q-12.046-60.090-12.127-60.045Q-12.207-60.001-12.296-60.001Q-12.446-60.001-12.547-60.098Q-12.648-60.196-12.648-60.343Q-12.648-60.965-11.492-60.965Q-11.281-60.965-11.031-60.901Q-10.782-60.838-10.580-60.719Q-10.378-60.599-10.252-60.414Q-10.125-60.230-10.125-59.987L-10.125-58.411Q-10.125-58.295-10.064-58.199Q-10.002-58.104-9.889-58.104Q-9.780-58.104-9.715-58.198Q-9.650-58.292-9.650-58.411L-9.650-58.859L-9.384-58.859L-9.384-58.411Q-9.384-58.141-9.611-57.976Q-9.838-57.810-10.118-57.810Q-10.327-57.810-10.464-57.964Q-10.600-58.117-10.624-58.333Q-10.771-58.066-11.053-57.921Q-11.335-57.776-11.660-57.776Q-11.937-57.776-12.221-57.851Q-12.504-57.926-12.697-58.105Q-12.890-58.285-12.890-58.572M-12.275-58.572Q-12.275-58.398-12.174-58.268Q-12.074-58.138-11.918-58.068Q-11.763-57.998-11.598-57.998Q-11.380-57.998-11.171-58.095Q-10.963-58.193-10.835-58.374Q-10.706-58.555-10.706-58.781L-10.706-59.509Q-11.031-59.509-11.397-59.418Q-11.763-59.327-12.019-59.115Q-12.275-58.904-12.275-58.572M-7.299-57.844L-8.902-57.844L-8.902-58.124Q-8.676-58.124-8.527-58.158Q-8.379-58.193-8.379-58.333L-8.379-61.952Q-8.379-62.222-8.486-62.284Q-8.594-62.345-8.902-62.345L-8.902-62.626L-7.825-62.701L-7.825-58.333Q-7.825-58.196-7.675-58.160Q-7.524-58.124-7.299-58.124L-7.299-57.844M-4.862-57.844L-6.598-57.844L-6.598-58.124Q-5.877-58.124-5.877-58.524L-5.877-62.134Q-5.877-62.345-6.598-62.345L-6.598-62.626L-5.241-62.626Q-5.145-62.626-5.094-62.527L-3.419-58.552L-1.748-62.527Q-1.700-62.626-1.601-62.626L-0.251-62.626L-0.251-62.345Q-0.972-62.345-0.972-62.134L-0.972-58.333Q-0.972-58.124-0.251-58.124L-0.251-57.844L-2.308-57.844L-2.308-58.124Q-1.587-58.124-1.587-58.333L-1.587-62.345L-3.440-57.943Q-3.488-57.844-3.597-57.844Q-3.710-57.844-3.758-57.943L-5.583-62.274L-5.583-58.524Q-5.583-58.124-4.862-58.124\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(57.593 193.806)\">\u003Cpath d=\"M-14.590-56.094Q-15.140-56.494-15.511-57.049Q-15.882-57.605-16.063-58.251Q-16.244-58.897-16.244-59.594Q-16.244-60.107-16.144-60.602Q-16.043-61.098-15.838-61.549Q-15.633-62-15.320-62.392Q-15.007-62.783-14.590-63.087Q-14.580-63.091-14.573-63.092Q-14.566-63.094-14.556-63.094L-14.488-63.094Q-14.453-63.094-14.431-63.070Q-14.409-63.046-14.409-63.009Q-14.409-62.964-14.436-62.947Q-14.785-62.646-15.038-62.262Q-15.291-61.877-15.443-61.436Q-15.595-60.995-15.667-60.539Q-15.739-60.083-15.739-59.594Q-15.739-58.593-15.429-57.706Q-15.120-56.819-14.436-56.234Q-14.409-56.217-14.409-56.173Q-14.409-56.135-14.431-56.111Q-14.453-56.087-14.488-56.087L-14.556-56.087Q-14.563-56.091-14.571-56.092Q-14.580-56.094-14.590-56.094M-11.849-57.844L-13.585-57.844L-13.585-58.124Q-13.356-58.124-13.208-58.158Q-13.059-58.193-13.059-58.333L-13.059-60.182Q-13.059-60.452-13.167-60.513Q-13.274-60.575-13.585-60.575L-13.585-60.855L-12.556-60.930L-12.556-60.223Q-12.427-60.531-12.184-60.730Q-11.941-60.930-11.623-60.930Q-11.405-60.930-11.234-60.806Q-11.063-60.681-11.063-60.469Q-11.063-60.332-11.162-60.233Q-11.261-60.134-11.394-60.134Q-11.531-60.134-11.630-60.233Q-11.729-60.332-11.729-60.469Q-11.729-60.609-11.630-60.708Q-11.921-60.708-12.121-60.512Q-12.321-60.315-12.413-60.021Q-12.505-59.727-12.505-59.447L-12.505-58.333Q-12.505-58.124-11.849-58.124L-11.849-57.844M-10.519-59.379Q-10.519-59.700-10.395-59.989Q-10.270-60.278-10.044-60.501Q-9.819-60.725-9.523-60.845Q-9.227-60.965-8.909-60.965Q-8.581-60.965-8.320-60.865Q-8.058-60.766-7.882-60.584Q-7.706-60.401-7.612-60.143Q-7.518-59.885-7.518-59.553Q-7.518-59.461-7.600-59.440L-9.856-59.440L-9.856-59.379Q-9.856-58.791-9.573-58.408Q-9.289-58.025-8.721-58.025Q-8.400-58.025-8.132-58.218Q-7.864-58.411-7.775-58.726Q-7.768-58.767-7.693-58.781L-7.600-58.781Q-7.518-58.757-7.518-58.685Q-7.518-58.678-7.525-58.651Q-7.638-58.254-8.009-58.015Q-8.380-57.776-8.804-57.776Q-9.241-57.776-9.641-57.984Q-10.041-58.193-10.280-58.560Q-10.519-58.927-10.519-59.379M-9.849-59.649L-8.034-59.649Q-8.034-59.926-8.132-60.178Q-8.229-60.431-8.428-60.587Q-8.626-60.742-8.909-60.742Q-9.186-60.742-9.400-60.584Q-9.614-60.425-9.732-60.170Q-9.849-59.915-9.849-59.649M-6.971-57.311Q-6.971-57.557-6.775-57.741Q-6.578-57.926-6.322-58.005Q-6.459-58.117-6.531-58.278Q-6.602-58.439-6.602-58.620Q-6.602-58.941-6.390-59.187Q-6.725-59.485-6.725-59.895Q-6.725-60.356-6.336-60.643Q-5.946-60.930-5.468-60.930Q-4.996-60.930-4.661-60.684Q-4.487-60.838-4.276-60.920Q-4.066-61.002-3.837-61.002Q-3.673-61.002-3.552-60.895Q-3.430-60.787-3.430-60.623Q-3.430-60.527-3.502-60.455Q-3.574-60.384-3.666-60.384Q-3.765-60.384-3.836-60.457Q-3.906-60.531-3.906-60.630Q-3.906-60.684-3.892-60.715L-3.885-60.729Q-3.878-60.749-3.870-60.760Q-3.861-60.770-3.858-60.777Q-4.213-60.777-4.500-60.554Q-4.213-60.261-4.213-59.895Q-4.213-59.580-4.398-59.348Q-4.582-59.115-4.871-58.987Q-5.160-58.859-5.468-58.859Q-5.669-58.859-5.861-58.909Q-6.052-58.958-6.230-59.068Q-6.322-58.941-6.322-58.798Q-6.322-58.616-6.194-58.481Q-6.066-58.346-5.881-58.346L-5.249-58.346Q-4.801-58.346-4.432-58.275Q-4.063-58.203-3.803-57.974Q-3.543-57.745-3.543-57.311Q-3.543-56.990-3.839-56.788Q-4.135-56.586-4.538-56.497Q-4.941-56.408-5.256-56.408Q-5.574-56.408-5.977-56.497Q-6.380-56.586-6.676-56.788Q-6.971-56.990-6.971-57.311M-6.517-57.311Q-6.517-57.082-6.298-56.933Q-6.079-56.784-5.787-56.716Q-5.495-56.648-5.256-56.648Q-5.092-56.648-4.883-56.684Q-4.675-56.719-4.468-56.800Q-4.261-56.880-4.129-57.008Q-3.998-57.136-3.998-57.311Q-3.998-57.663-4.379-57.757Q-4.760-57.851-5.263-57.851L-5.881-57.851Q-6.120-57.851-6.319-57.700Q-6.517-57.550-6.517-57.311M-5.468-59.098Q-4.801-59.098-4.801-59.895Q-4.801-60.695-5.468-60.695Q-6.138-60.695-6.138-59.895Q-6.138-59.098-5.468-59.098M-1.332-57.844L-2.884-57.844L-2.884-58.124Q-2.658-58.124-2.509-58.158Q-2.361-58.193-2.361-58.333L-2.361-60.182Q-2.361-60.370-2.409-60.454Q-2.456-60.537-2.554-60.556Q-2.651-60.575-2.863-60.575L-2.863-60.855L-1.807-60.930L-1.807-58.333Q-1.807-58.193-1.675-58.158Q-1.544-58.124-1.332-58.124L-1.332-57.844M-2.603-62.151Q-2.603-62.322-2.480-62.441Q-2.357-62.561-2.186-62.561Q-2.019-62.561-1.896-62.441Q-1.773-62.322-1.773-62.151Q-1.773-61.976-1.896-61.853Q-2.019-61.730-2.186-61.730Q-2.357-61.730-2.480-61.853Q-2.603-61.976-2.603-62.151M-0.686-57.851L-0.686-58.914Q-0.686-58.938-0.659-58.965Q-0.631-58.992-0.607-58.992L-0.498-58.992Q-0.433-58.992-0.419-58.934Q-0.324-58.500-0.077-58.249Q0.169-57.998 0.582-57.998Q0.924-57.998 1.177-58.131Q1.430-58.264 1.430-58.572Q1.430-58.729 1.336-58.844Q1.242-58.958 1.103-59.027Q0.965-59.095 0.798-59.133L0.216-59.232Q-0.139-59.300-0.412-59.521Q-0.686-59.741-0.686-60.083Q-0.686-60.332-0.575-60.507Q-0.464-60.681-0.277-60.780Q-0.091-60.879 0.124-60.922Q0.340-60.965 0.582-60.965Q0.996-60.965 1.276-60.783L1.491-60.958Q1.502-60.961 1.508-60.963Q1.515-60.965 1.526-60.965L1.577-60.965Q1.604-60.965 1.628-60.941Q1.652-60.917 1.652-60.889L1.652-60.042Q1.652-60.021 1.628-59.994Q1.604-59.967 1.577-59.967L1.464-59.967Q1.437-59.967 1.411-59.992Q1.385-60.018 1.385-60.042Q1.385-60.278 1.279-60.442Q1.174-60.606 0.991-60.688Q0.808-60.770 0.575-60.770Q0.247-60.770-0.009-60.667Q-0.265-60.565-0.265-60.288Q-0.265-60.093-0.083-59.984Q0.100-59.874 0.329-59.833L0.904-59.727Q1.150-59.679 1.363-59.551Q1.577-59.423 1.714-59.220Q1.850-59.016 1.850-58.767Q1.850-58.254 1.485-58.015Q1.119-57.776 0.582-57.776Q0.087-57.776-0.245-58.070L-0.512-57.796Q-0.532-57.776-0.559-57.776L-0.607-57.776Q-0.631-57.776-0.659-57.803Q-0.686-57.830-0.686-57.851M3.006-58.685L3.006-60.582L2.366-60.582L2.366-60.804Q2.684-60.804 2.901-61.014Q3.118-61.224 3.219-61.534Q3.320-61.843 3.320-62.151L3.587-62.151L3.587-60.862L4.663-60.862L4.663-60.582L3.587-60.582L3.587-58.698Q3.587-58.422 3.691-58.223Q3.795-58.025 4.055-58.025Q4.212-58.025 4.318-58.129Q4.424-58.234 4.474-58.387Q4.523-58.541 4.523-58.698L4.523-59.112L4.790-59.112L4.790-58.685Q4.790-58.459 4.691-58.249Q4.591-58.039 4.407-57.907Q4.222-57.776 3.993-57.776Q3.556-57.776 3.281-58.013Q3.006-58.251 3.006-58.685M5.559-59.379Q5.559-59.700 5.684-59.989Q5.808-60.278 6.034-60.501Q6.259-60.725 6.555-60.845Q6.851-60.965 7.169-60.965Q7.497-60.965 7.758-60.865Q8.020-60.766 8.196-60.584Q8.372-60.401 8.466-60.143Q8.560-59.885 8.560-59.553Q8.560-59.461 8.478-59.440L6.222-59.440L6.222-59.379Q6.222-58.791 6.506-58.408Q6.789-58.025 7.357-58.025Q7.678-58.025 7.946-58.218Q8.215-58.411 8.303-58.726Q8.310-58.767 8.385-58.781L8.478-58.781Q8.560-58.757 8.560-58.685Q8.560-58.678 8.553-58.651Q8.440-58.254 8.069-58.015Q7.698-57.776 7.275-57.776Q6.837-57.776 6.437-57.984Q6.037-58.193 5.798-58.560Q5.559-58.927 5.559-59.379M6.229-59.649L8.044-59.649Q8.044-59.926 7.946-60.178Q7.849-60.431 7.651-60.587Q7.452-60.742 7.169-60.742Q6.892-60.742 6.678-60.584Q6.465-60.425 6.347-60.170Q6.229-59.915 6.229-59.649M10.898-57.844L9.161-57.844L9.161-58.124Q9.390-58.124 9.539-58.158Q9.688-58.193 9.688-58.333L9.688-60.182Q9.688-60.452 9.580-60.513Q9.472-60.575 9.161-60.575L9.161-60.855L10.190-60.930L10.190-60.223Q10.320-60.531 10.563-60.730Q10.805-60.930 11.123-60.930Q11.342-60.930 11.513-60.806Q11.684-60.681 11.684-60.469Q11.684-60.332 11.585-60.233Q11.486-60.134 11.352-60.134Q11.216-60.134 11.116-60.233Q11.017-60.332 11.017-60.469Q11.017-60.609 11.116-60.708Q10.826-60.708 10.626-60.512Q10.426-60.315 10.334-60.021Q10.241-59.727 10.241-59.447L10.241-58.333Q10.241-58.124 10.898-58.124\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(57.593 193.806)\">\u003Cpath d=\"M15.004-57.851L15.004-58.914Q15.004-58.938 15.032-58.965Q15.059-58.992 15.083-58.992L15.192-58.992Q15.257-58.992 15.271-58.934Q15.367-58.500 15.613-58.249Q15.859-57.998 16.273-57.998Q16.614-57.998 16.867-58.131Q17.120-58.264 17.120-58.572Q17.120-58.729 17.026-58.844Q16.932-58.958 16.794-59.027Q16.655-59.095 16.488-59.133L15.907-59.232Q15.551-59.300 15.278-59.521Q15.004-59.741 15.004-60.083Q15.004-60.332 15.116-60.507Q15.227-60.681 15.413-60.780Q15.599-60.879 15.815-60.922Q16.030-60.965 16.273-60.965Q16.686-60.965 16.966-60.783L17.182-60.958Q17.192-60.961 17.199-60.963Q17.206-60.965 17.216-60.965L17.267-60.965Q17.294-60.965 17.318-60.941Q17.342-60.917 17.342-60.889L17.342-60.042Q17.342-60.021 17.318-59.994Q17.294-59.967 17.267-59.967L17.154-59.967Q17.127-59.967 17.101-59.992Q17.076-60.018 17.076-60.042Q17.076-60.278 16.970-60.442Q16.864-60.606 16.681-60.688Q16.498-60.770 16.266-60.770Q15.938-60.770 15.681-60.667Q15.425-60.565 15.425-60.288Q15.425-60.093 15.608-59.984Q15.791-59.874 16.020-59.833L16.594-59.727Q16.840-59.679 17.054-59.551Q17.267-59.423 17.404-59.220Q17.541-59.016 17.541-58.767Q17.541-58.254 17.175-58.015Q16.809-57.776 16.273-57.776Q15.777-57.776 15.445-58.070L15.179-57.796Q15.158-57.776 15.131-57.776L15.083-57.776Q15.059-57.776 15.032-57.803Q15.004-57.830 15.004-57.851M18.696-58.685L18.696-60.582L18.057-60.582L18.057-60.804Q18.375-60.804 18.592-61.014Q18.809-61.224 18.909-61.534Q19.010-61.843 19.010-62.151L19.277-62.151L19.277-60.862L20.354-60.862L20.354-60.582L19.277-60.582L19.277-58.698Q19.277-58.422 19.381-58.223Q19.485-58.025 19.745-58.025Q19.902-58.025 20.008-58.129Q20.114-58.234 20.164-58.387Q20.213-58.541 20.213-58.698L20.213-59.112L20.480-59.112L20.480-58.685Q20.480-58.459 20.381-58.249Q20.282-58.039 20.097-57.907Q19.913-57.776 19.684-57.776Q19.246-57.776 18.971-58.013Q18.696-58.251 18.696-58.685M21.348-58.572Q21.348-58.904 21.572-59.131Q21.796-59.358 22.139-59.486Q22.483-59.615 22.856-59.667Q23.228-59.720 23.532-59.720L23.532-59.973Q23.532-60.178 23.425-60.358Q23.317-60.537 23.136-60.640Q22.955-60.742 22.746-60.742Q22.339-60.742 22.104-60.650Q22.192-60.613 22.239-60.529Q22.285-60.445 22.285-60.343Q22.285-60.247 22.239-60.168Q22.192-60.090 22.112-60.045Q22.032-60.001 21.943-60.001Q21.793-60.001 21.692-60.098Q21.591-60.196 21.591-60.343Q21.591-60.965 22.746-60.965Q22.958-60.965 23.208-60.901Q23.457-60.838 23.659-60.719Q23.860-60.599 23.987-60.414Q24.113-60.230 24.113-59.987L24.113-58.411Q24.113-58.295 24.175-58.199Q24.236-58.104 24.349-58.104Q24.459-58.104 24.523-58.198Q24.588-58.292 24.588-58.411L24.588-58.859L24.855-58.859L24.855-58.411Q24.855-58.141 24.628-57.976Q24.400-57.810 24.120-57.810Q23.912-57.810 23.775-57.964Q23.638-58.117 23.614-58.333Q23.467-58.066 23.185-57.921Q22.903-57.776 22.579-57.776Q22.302-57.776 22.018-57.851Q21.734-57.926 21.541-58.105Q21.348-58.285 21.348-58.572M21.963-58.572Q21.963-58.398 22.064-58.268Q22.165-58.138 22.321-58.068Q22.476-57.998 22.640-57.998Q22.859-57.998 23.067-58.095Q23.276-58.193 23.404-58.374Q23.532-58.555 23.532-58.781L23.532-59.509Q23.208-59.509 22.842-59.418Q22.476-59.327 22.220-59.115Q21.963-58.904 21.963-58.572M25.798-58.685L25.798-60.582L25.159-60.582L25.159-60.804Q25.477-60.804 25.694-61.014Q25.911-61.224 26.012-61.534Q26.113-61.843 26.113-62.151L26.379-62.151L26.379-60.862L27.456-60.862L27.456-60.582L26.379-60.582L26.379-58.698Q26.379-58.422 26.484-58.223Q26.588-58.025 26.848-58.025Q27.005-58.025 27.111-58.129Q27.217-58.234 27.266-58.387Q27.316-58.541 27.316-58.698L27.316-59.112L27.583-59.112L27.583-58.685Q27.583-58.459 27.483-58.249Q27.384-58.039 27.200-57.907Q27.015-57.776 26.786-57.776Q26.349-57.776 26.074-58.013Q25.798-58.251 25.798-58.685M28.352-59.379Q28.352-59.700 28.476-59.989Q28.601-60.278 28.827-60.501Q29.052-60.725 29.348-60.845Q29.644-60.965 29.961-60.965Q30.290-60.965 30.551-60.865Q30.813-60.766 30.989-60.584Q31.165-60.401 31.259-60.143Q31.353-59.885 31.353-59.553Q31.353-59.461 31.271-59.440L29.015-59.440L29.015-59.379Q29.015-58.791 29.298-58.408Q29.582-58.025 30.149-58.025Q30.471-58.025 30.739-58.218Q31.007-58.411 31.096-58.726Q31.103-58.767 31.178-58.781L31.271-58.781Q31.353-58.757 31.353-58.685Q31.353-58.678 31.346-58.651Q31.233-58.254 30.862-58.015Q30.491-57.776 30.067-57.776Q29.630-57.776 29.230-57.984Q28.830-58.193 28.591-58.560Q28.352-58.927 28.352-59.379M29.022-59.649L30.836-59.649Q30.836-59.926 30.739-60.178Q30.642-60.431 30.443-60.587Q30.245-60.742 29.961-60.742Q29.685-60.742 29.471-60.584Q29.257-60.425 29.139-60.170Q29.022-59.915 29.022-59.649M32.262-56.087L32.193-56.087Q32.159-56.087 32.137-56.113Q32.115-56.138 32.115-56.173Q32.115-56.217 32.146-56.234Q32.501-56.538 32.751-56.928Q33-57.318 33.152-57.750Q33.304-58.182 33.374-58.651Q33.444-59.119 33.444-59.594Q33.444-60.073 33.374-60.539Q33.304-61.006 33.150-61.441Q32.997-61.877 32.745-62.265Q32.494-62.653 32.146-62.947Q32.115-62.964 32.115-63.009Q32.115-63.043 32.137-63.068Q32.159-63.094 32.193-63.094L32.262-63.094Q32.272-63.094 32.281-63.092Q32.289-63.091 32.299-63.087Q32.843-62.687 33.215-62.134Q33.588-61.580 33.769-60.934Q33.950-60.288 33.950-59.594Q33.950-58.893 33.769-58.246Q33.588-57.598 33.214-57.044Q32.839-56.490 32.299-56.094Q32.289-56.094 32.281-56.092Q32.272-56.091 32.262-56.087\" 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 six SEQ stages as a single vertical column, the common skeleton of every Y86-64 instruction. The contents differ per instruction (the tables above); the order and the signal hand-off between stages never do.\u003C\u002Ffigcaption>",1785117687410]