[{"data":1,"prerenderedAt":7208},["ShallowReactive",2],{"nav:computer-architecture":3,"lesson:\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":304,"course-wordcounts":1755,"ref-card-index":2666,"tikz:c6ba46bf361347b76a0a03ecca26fb16fafd5f1b84be0b9fe2753a9d7d75ea8a":7199,"tikz:e811bc9b8f867d90fe84aa8ddb79f32635e2f243c21dfeab80615a4214d37736":7200,"tikz:00a55df39a2e4f2a1b4d684a53ce2f66994310006575cabf7628292615d876aa":7201,"tikz:da68e0a705bbcab87cab905854636137b6a1aaaa089814a2d2fb6d1dc65adbac":7202,"tikz:18d091d81b3acfe5bd2272aecc6b0d52abb6001aa01c75b7a351e090593b8c80":7203,"tikz:d391dbd88ac8f0c12c6228f4050f540253b70c66fc4c11c2787fc70597dcaa6d":7204,"tikz:7be9b69d9ac03b721a9ae872a9e97467e94ac975d2b141f14894f982a3d0a845":7205,"tikz:ce756db4a5055c01549f455a88857c9d15fd6710cb1a286833a570aeb3473655":7206,"tikz:4319e3b0beb46debe8e771e0884c16e08307d713ec4703e29e478ee0de377b3a":7207},[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":300,"blurb":306,"body":307,"brief":1729,"category":1730,"description":1731,"draft":1732,"extension":1733,"meta":1734,"module":290,"navigation":746,"path":301,"practice":1736,"rawbody":1737,"readingTime":1738,"seo":1743,"sources":1744,"status":1751,"stem":1752,"summary":303,"topics":1753,"__hash__":1754},"course\u002F03.computer-architecture\u002F10.capstone\u002F02.assembling-a-complete-cpu.md","",{"type":308,"value":309,"toc":1720},"minimark",[310,362,367,448,452,486,497,500,503,524,528,560,563,593,614,617,620,624,677,933,977,1079,1082,1091,1094,1100,1104,1125,1128,1131,1179,1204,1224,1227,1230,1341,1388,1436,1440,1447,1478,1494,1542,1561,1564,1571,1575,1578,1617,1621,1632,1679,1682,1697,1700,1716],[311,312,313,314,318,319,322,323,327,328,331,332,335,336,339,340,343,344,347,348,352,353,356,357,361],"p",{},"This is the lesson the whole course was building toward. We have every part: the\n",[315,316,317],"a",{"href":124},"ALU"," that\nadds and subtracts and sets flags, the\n",[315,320,321],{"href":134},"register file","\nwith its two read ports and two clocked write ports (",[324,325,326],"code",{},"dstE",", ",[324,329,330],{},"dstM","), the addressed\n",[315,333,334],{"href":134},"memory",",\nthe ",[315,337,338],{"href":100},"Y86-64 ISA","\nthat fixes the bytes, and the\n",[315,341,342],{"href":158},"control logic"," that drives\nthe muxes. We even traced\n",[315,345,346],{"href":163},"a program through SEQ",".\nWhat is left is the assembly itself, done the way an engineer would actually do it:\ndraw the complete machine with ",[349,350,351],"strong",{},"every named part in its place",", say which lesson\nbuilt each, wire the parts in a deliberate order, define the reset state and watch\nthe first fetch happen, then run a real compiled program (a procedure call, a\nloop, an array in memory) from power-on to ",[324,354,355],{},"halt",". When the answer lands, we ask\nthe two questions any real project ends with: how do you ",[358,359,360],"em",{},"know"," it works, and what\nwould it take to build two?",[363,364,366],"h2",{"id":365},"the-complete-cpu-part-by-part","The complete CPU, part by part",[311,368,369,370,373,374,377,378,381,382,385,386,389,390,393,394,397,398,400,401,404,405,407,408,411,412,415,416,419,420,423,424,427,428,431,432,435,436,439,440,443,444,447],{},"A CPU is seven kinds of part, and the course built each one. ",[349,371,372],{},"Fetch"," needs a\nplace to keep the address of the next instruction and a place to read instruction\nbytes from: the ",[349,375,376],{},"program counter (PC)"," and the ",[349,379,380],{},"instruction memory",", whose\ncurrent output — the ",[349,383,384],{},"fetched instruction word"," — the Split and Align logic of\n",[315,387,388],{"href":143},"module 4's fetch stage","\nbreaks into fields combinationally (no register latches it; the machine's clocked\nstate elements remain the four SEQ counted: PC, CC, register file, data memory).\n",[349,391,392],{},"Decode"," and ",[349,395,396],{},"write-back"," need the ",[349,399,321],{},". ",[349,402,403],{},"Execute"," needs the\n",[349,406,317],{}," and, beside it, the ",[349,409,410],{},"condition-code register (CC)"," that latches ",[324,413,414],{},"ZF",",\n",[324,417,418],{},"SF",", and ",[324,421,422],{},"OF"," whenever an ",[324,425,426],{},"OPq"," instruction runs. ",[349,429,430],{},"Memory"," needs the ",[349,433,434],{},"data\nmemory",". And tying them together, deciding from the decoded opcode which mux\nselects what and which register gets written, is the ",[349,437,438],{},"control unit",": the\n",[349,441,442],{},"hardwired control logic"," of a Y86-64 machine (in a microprogrammed design the\nsame job is done by a ",[349,445,446],{},"microsequencer"," stepping through microinstructions, but\nthe role is identical).",[449,450],"tikz-figure",{"hash":451},"c6ba46bf361347b76a0a03ecca26fb16fafd5f1b84be0b9fe2753a9d7d75ea8a",[311,453,454,455,458,459,462,463,466,467,470,471,474,475,478,479,481,482,485],{},"The discipline is the one\n",[315,456,457],{"href":158},"SEQ"," taught: functional\nunits stacked along a central spine, data handed straight up, and the two feedback\nwires — write-back to the register file, and ",[324,460,461],{},"newPC"," to the PC — routed in separate\nright-hand margins where they cross nothing. The control unit stands to one side,\nreads ",[324,464,465],{},"icode:ifun"," out of the fetched instruction word, and sends a signal to every unit. One wire is\ndrawn small but matters enormously: the ",[324,468,469],{},"CC"," register's three flags flow back into\nthe control unit (through the ",[324,472,473],{},"Cnd"," condition logic), because a ",[324,476,477],{},"jne"," cannot decide\n",[324,480,461],{}," without them. That single feedback is the machine's only means of\n",[358,483,484],{},"decision","; everything else is data routing.",[311,487,488,489,492,493,496],{},"This machine uses ideal one-cycle memories, as SEQ always did. On the full die,\nthe ",[315,490,491],{"href":296},"previous lesson's block diagram","\nwraps these two memory boxes in TLBs, caches, and DRAM; nothing in this lesson\nchanges when it does, which is the point of the\n",[315,494,495],{"href":211},"memory-hierarchy abstraction",".",[311,498,499],{},"Here is the provenance, part by part: which lesson built each.",[449,501],{"hash":502},"e811bc9b8f867d90fe84aa8ddb79f32635e2f243c21dfeab80615a4214d37736",[504,505,507],"callout",{"type":506},"definition",[311,508,509,512,513,516,517,520,521,523],{},[349,510,511],{},"Definition (Control unit)."," The block that turns the decoded opcode into every\ncontrol signal the datapath needs — each mux select and each write-enable — for the\ncurrent cycle. In a hardwired implementation it is combinational logic (HCL) over\n",[324,514,515],{},"icode","\u002F",[324,518,519],{},"ifun","; in a microprogrammed implementation a ",[349,522,446],{}," fetches\nthe signals from a control store, one microinstruction per step. Either way it is\nwhat makes the fixed datapath behave differently for each instruction.",[363,525,527],{"id":526},"wiring-order-and-bring-up","Wiring order and bring-up",[311,529,530,531,534,535,538,539,541,542,545,546,548,549,552,553,555,556,559],{},"Assembly has an order, and the order is not arbitrary. First the ",[349,532,533],{},"data spine",",\nbottom to top: PC into instruction memory, the fetched fields into the register file's read\naddresses, read ports into the ALU, ALU output into the data memory's address\nport. This much is purely feed-forward: signals flow one way, and each connection\ncan be checked in isolation by driving the input and probing the output. Second,\nthe ",[349,536,537],{},"two feedback paths",": write-back to the register file and ",[324,540,461],{}," to the PC.\nThese close loops, so they come after the spine works; a loop wired around a\nbroken spine oscillates or latches garbage, and you cannot tell which part failed.\nThird, the ",[349,543,544],{},"CC register"," beside the ALU and its ",[324,547,473],{}," wire to control. Last, the\n",[349,550,551],{},"control fan",": the decoder in the control unit that reads ",[324,554,465],{}," and\ndrives every mux select and write-enable, one stub per unit. Control comes last\nbecause it is meaningless until the things it controls exist: every one of its\noutput wires names a mux or a port that has to be there already. This is the same\ninside-out order the\n",[315,557,558],{"href":158},"SEQ assembly lesson","\nfollowed; the capstone only makes it explicit as a checklist.",[311,561,562],{},"With the machine wired, it has to start. A CPU has no operator; the only thing\nthat distinguishes cycle 1 from cycle 1,000,000 is the state the machine wakes up\nin, so that state must be defined by hardware, not by luck.",[504,564,565],{"type":506},[311,566,567,570,571,574,575,578,579,582,583,586,587,589,590,592],{},[349,568,569],{},"Definition (Reset state)."," The architectural state forced while the ",[324,572,573],{},"reset","\nsignal is asserted: ",[324,576,577],{},"PC = 0x000",", all registers zero, condition codes\n",[324,580,581],{},"ZF = 1, SF = 0, OF = 0",", and status ",[324,584,585],{},"Stat = AOK",". While ",[324,588,573],{}," is high, every\nstate element loads this value on each clock edge; the machine begins executing\nat the first rising edge after ",[324,591,573],{}," is released.",[311,594,595,596,598,599,602,603,606,607,609,610,613],{},"Every choice here is a convention, and each has a reason. ",[324,597,577],{}," means the\nmachine's first act is to fetch ",[324,600,601],{},"M[0x000]",", so whoever loads memory knows exactly\nwhere to put the entry point. Registers start at zero so no computation depends on\npower-on noise. ",[324,604,605],{},"ZF = 1"," matches what the flags would show after computing zero,\nwhich is the honest description of a machine that has computed nothing. And\n",[324,608,585],{}," arms the machine to run. That is the entire boot process for this\nCPU: reset forces a known state, memory holds bytes at address ",[324,611,612],{},"0x000",", and the\nclock does the rest. Real x86-64 machines are no different in kind (the PC resets\nto a fixed address that points into firmware ROM instead of a loaded program), and\neverything a modern boot does is layered on this one mechanism.",[449,615],{"hash":616},"00a55df39a2e4f2a1b4d684a53ce2f66994310006575cabf7628292615d876aa",[311,618,619],{},"The first fetch is not special. Cycle 1 runs the same\nfetch–decode–execute sequence as every later cycle; the machine cannot tell boot\nfrom steady state. Everything rests on the two facts the hardware\nguarantees: a defined PC and defined bytes at that address.",[363,621,623],{"id":622},"the-test-program-an-array-sum-with-call-and-ret","The test program: an array sum with call and ret",[311,625,626,627,630,631,634,635,638,639,642,643,327,646,327,649,652,653,655,656,516,659,662,663,665,666,669,670,673,674,496],{},"The countdown loops we traced in\n",[315,628,629],{"href":163},"module 4"," exercised\narithmetic and a branch, but a real program does more: it keeps data in memory,\nwalks a pointer across it, and calls procedures. So the capstone's test program is\nchosen to touch ",[349,632,633],{},"every instruction class the ISA defines",": immediate moves\n(",[324,636,637],{},"irmovq","), a memory read (",[324,640,641],{},"mrmovq","), register arithmetic that sets flags\n(",[324,644,645],{},"addq",[324,647,648],{},"subq",[324,650,651],{},"xorq","), a conditional branch (",[324,654,477],{},"), the stack pair\n(",[324,657,658],{},"call",[324,660,661],{},"ret","), and ",[324,664,355],{},". It sums a four-element array through a procedure, the\nsame shape as CS:APP's ",[324,667,668],{},"asum",": ",[324,671,672],{},"main"," sets up the stack and the arguments, then\ncalls ",[324,675,676],{},"sum(array, 4)",[678,679,684],"pre",{"className":680,"code":681,"filename":682,"language":683,"meta":306,"style":306},"language-asm shiki shiki-themes Vesper Light - Orange Boost (Quick Open Adjusted) vesper","# main: set up the stack, then sum(array, 4)\nirmovq stack, %rsp    # rsp = 0x200      (stack pointer)\nirmovq array, %rdi    # arg 1: base of array\nirmovq $4, %rsi       # arg 2: element count\ncall sum              # push return addr, jump to sum\nhalt\n\n# long sum(long *start, long count)\nsum:\nirmovq $8, %r8        # r8 = 8   (element stride)\nirmovq $1, %r9        # r9 = 1   (decrement constant)\nxorq %rax, %rax       # sum = 0  (and sets ZF = 1)\nloop:\nmrmovq (%rdi), %r10   # r10 = *start\naddq %r10, %rax       # sum += *start\naddq %r8, %rdi        # start++\nsubq %r9, %rsi        # count--\njne loop              # repeat while count != 0\nret                   # pop return addr into PC\n\n.align 8\narray:\n.quad 0x000d000d000d\n.quad 0x00c000c000c0\n.quad 0x0b000b000b00\n.quad 0xa000a000a000\n\n.pos 0x200\nstack:                # stack grows down from 0x200\n","asum.ys","asm",[324,685,686,694,703,711,726,737,742,748,753,758,771,784,793,802,811,820,829,838,849,857,862,871,877,886,894,902,910,915,924],{"__ignoreMap":306},[687,688,690],"span",{"class":689,"line":6},"line",[687,691,693],{"class":692},"sEX4i","# main: set up the stack, then sum(array, 4)\n",[687,695,696,700],{"class":689,"line":17},[687,697,699],{"class":698},"s3i95","irmovq stack, %rsp   ",[687,701,702],{"class":692}," # rsp = 0x200      (stack pointer)\n",[687,704,705,708],{"class":689,"line":23},[687,706,707],{"class":698},"irmovq array, %rdi   ",[687,709,710],{"class":692}," # arg 1: base of array\n",[687,712,713,716,720,723],{"class":689,"line":29},[687,714,715],{"class":698},"irmovq ",[687,717,719],{"class":718},"sat3U","$4",[687,721,722],{"class":698},", %rsi      ",[687,724,725],{"class":692}," # arg 2: element count\n",[687,727,728,731,734],{"class":689,"line":35},[687,729,658],{"class":730},"sdxpw",[687,732,733],{"class":698}," sum             ",[687,735,736],{"class":692}," # push return addr, jump to sum\n",[687,738,739],{"class":689,"line":70},[687,740,741],{"class":698},"halt\n",[687,743,744],{"class":689,"line":76},[687,745,747],{"emptyLinePlaceholder":746},true,"\n",[687,749,750],{"class":689,"line":226},[687,751,752],{"class":692},"# long sum(long *start, long count)\n",[687,754,755],{"class":689,"line":246},[687,756,757],{"class":718},"sum:\n",[687,759,760,762,765,768],{"class":689,"line":261},[687,761,715],{"class":698},[687,763,764],{"class":718},"$8",[687,766,767],{"class":698},", %r8       ",[687,769,770],{"class":692}," # r8 = 8   (element stride)\n",[687,772,773,775,778,781],{"class":689,"line":291},[687,774,715],{"class":698},[687,776,777],{"class":718},"$1",[687,779,780],{"class":698},", %r9       ",[687,782,783],{"class":692}," # r9 = 1   (decrement constant)\n",[687,785,787,790],{"class":689,"line":786},12,[687,788,789],{"class":698},"xorq %rax, %rax      ",[687,791,792],{"class":692}," # sum = 0  (and sets ZF = 1)\n",[687,794,796,799],{"class":689,"line":795},13,[687,797,798],{"class":730},"loop",[687,800,801],{"class":698},":\n",[687,803,805,808],{"class":689,"line":804},14,[687,806,807],{"class":698},"mrmovq (%rdi), %r10  ",[687,809,810],{"class":692}," # r10 = *start\n",[687,812,814,817],{"class":689,"line":813},15,[687,815,816],{"class":698},"addq %r10, %rax      ",[687,818,819],{"class":692}," # sum += *start\n",[687,821,823,826],{"class":689,"line":822},16,[687,824,825],{"class":698},"addq %r8, %rdi       ",[687,827,828],{"class":692}," # start++\n",[687,830,832,835],{"class":689,"line":831},17,[687,833,834],{"class":698},"subq %r9, %rsi       ",[687,836,837],{"class":692}," # count--\n",[687,839,841,843,846],{"class":689,"line":840},18,[687,842,477],{"class":730},[687,844,845],{"class":730}," loop",[687,847,848],{"class":692},"              # repeat while count != 0\n",[687,850,852,854],{"class":689,"line":851},19,[687,853,661],{"class":730},[687,855,856],{"class":692},"                   # pop return addr into PC\n",[687,858,860],{"class":689,"line":859},20,[687,861,747],{"emptyLinePlaceholder":746},[687,863,865,868],{"class":689,"line":864},21,[687,866,867],{"class":698},".align ",[687,869,870],{"class":718},"8\n",[687,872,874],{"class":689,"line":873},22,[687,875,876],{"class":718},"array:\n",[687,878,880,883],{"class":689,"line":879},23,[687,881,882],{"class":698},".quad ",[687,884,885],{"class":718},"0x000d000d000d\n",[687,887,889,891],{"class":689,"line":888},24,[687,890,882],{"class":698},[687,892,893],{"class":718},"0x00c000c000c0\n",[687,895,897,899],{"class":689,"line":896},25,[687,898,882],{"class":698},[687,900,901],{"class":718},"0x0b000b000b00\n",[687,903,905,907],{"class":689,"line":904},26,[687,906,882],{"class":698},[687,908,909],{"class":718},"0xa000a000a000\n",[687,911,913],{"class":689,"line":912},27,[687,914,747],{"emptyLinePlaceholder":746},[687,916,918,921],{"class":689,"line":917},28,[687,919,920],{"class":698},".pos ",[687,922,923],{"class":718},"0x200\n",[687,925,927,930],{"class":689,"line":926},29,[687,928,929],{"class":718},"stack:",[687,931,932],{"class":692},"                # stack grows down from 0x200\n",[311,934,935,936,327,938,327,941,327,944,947,948,976],{},"The array values are chosen so the answer proves itself. Each quad fills a\ndifferent nibble of every 16-bit group, so the running sum assembles the digits\n",[324,937,315],{},[324,939,940],{},"b",[324,942,943],{},"c",[324,945,946],{},"d"," in place, and the correct total is unmistakable:\n",[687,949,952],{"className":950},[951],"katex",[687,953,957],{"className":954,"ariaHidden":956},[955],"katex-html","true",[687,958,961,966],{"className":959},[960],"base",[687,962],{"className":963,"style":965},[964],"strut","height:0.6111em;",[687,967,971],{"className":968},[969,970],"mord","text",[687,972,975],{"className":973},[969,974],"texttt","0xabcdabcdabcd",". A single transposed byte anywhere in the machine and\nthe pattern breaks visibly.",[311,978,979,980,982,983,985,986,988,989,393,991,993,994,393,996,998,999,1002,1003,327,1006,1008,1009,327,1012,1015,1016,1019,1020,1023,1024,1027,1028,1031,1032,1035,1036,1039,1040,327,1043,1039,1046,327,1049,1039,1052,327,1055,1039,1058,327,1061,1039,1064,415,1067,1039,1070,327,1073,1039,1076,1078],{},"The assembler lays the code out from address ",[324,981,612],{},". Each ",[324,984,637],{}," is 10 bytes,\neach ",[324,987,426],{}," is 2, ",[324,990,658],{},[324,992,477],{}," are 9 (opcode byte plus 8-byte destination),\n",[324,995,661],{},[324,997,355],{}," are 1. That fixes every address, and fixing the addresses\nresolves every label: ",[324,1000,1001],{},"sum"," lands at ",[324,1004,1005],{},"0x028",[324,1007,798],{}," at ",[324,1010,1011],{},"0x03e",[324,1013,1014],{},"array"," at\n",[324,1017,1018],{},"0x058"," (already 8-aligned), and ",[324,1021,1022],{},"stack"," is pinned to ",[324,1025,1026],{},"0x200"," by the ",[324,1029,1030],{},".pos","\ndirective. The bytes follow the\n",[315,1033,1034],{"href":100},"ISA encodings",":\nregister nibbles ",[324,1037,1038],{},"%rax","=",[324,1041,1042],{},"0",[324,1044,1045],{},"%rsp",[324,1047,1048],{},"4",[324,1050,1051],{},"%rsi",[324,1053,1054],{},"6",[324,1056,1057],{},"%rdi",[324,1059,1060],{},"7",[324,1062,1063],{},"%r8",[324,1065,1066],{},"8",[324,1068,1069],{},"%r9",[324,1071,1072],{},"9",[324,1074,1075],{},"%r10",[324,1077,315],{},", and every constant little-endian.",[449,1080],{"hash":1081},"da68e0a705bbcab87cab905854636137b6a1aaaa089814a2d2fb6d1dc65adbac",[311,1083,1084,1085,1087,1088,1090],{},"The program is only part of the memory image. The array sits right after the code,\nand the stack, empty at reset, hangs below ",[324,1086,1026],{},", growing toward lower\naddresses when ",[324,1089,658],{}," pushes.",[449,1092],{"hash":1093},"18d091d81b3acfe5bd2272aecc6b0d52abb6001aa01c75b7a351e090593b8c80",[311,1095,1096,1097,1099],{},"These bytes are the whole input. The machine starts with ",[324,1098,577],{},", the image\nabove sitting in memory, and from there it runs itself.",[363,1101,1103],{"id":1102},"tracing-it-cycle-by-cycle","Tracing it, cycle by cycle",[311,1105,1106,1107,1110,1111,1113,1114,1116,1117,1119,1120,419,1122,1124],{},"The assembled CPU executes ",[349,1108,1109],{},"one instruction per cycle",": in a single tick it\nfetches at the PC, decodes the fields, reads registers, runs the ALU, touches\nmemory if needed, writes back, and computes ",[324,1112,461],{},"; the new register,\ncondition-code, memory, and PC values clock in at the rising edge. The whole run\nis 29 cycles: three setup moves, the ",[324,1115,658],{},", three cycles of ",[324,1118,1001],{}," prologue, four\nloop iterations of five cycles each, ",[324,1121,661],{},[324,1123,355],{},". Here are the cycles where\nsomething new happens.",[449,1126],{"hash":1127},"d391dbd88ac8f0c12c6228f4050f540253b70c66fc4c11c2787fc70597dcaa6d",[311,1129,1130],{},"Three cycles deserve a closer look, because each one runs a mechanism the\ncountdown trace never touched.",[311,1132,1133,1138,1139,1141,1142,1145,1146,1149,1150,1152,1153,1155,1156,1159,1160,1163,1164,1166,1167,1170,1171,1174,1175,1178],{},[349,1134,1135,1136,496],{},"Cycle 4, the ",[324,1137,658],{}," This is the only instruction in the program that both\nwrites memory and takes a non-sequential ",[324,1140,461],{},". The ALU computes\n",[324,1143,1144],{},"valE = R[%rsp] - 8 = 0x1f8","; the Memory stage writes ",[324,1147,1148],{},"valP = 0x027"," (the address\nof the instruction after the ",[324,1151,658],{},", the ",[324,1154,355],{},") into ",[324,1157,1158],{},"M[0x1f8]","; write-back puts\n",[324,1161,1162],{},"valE"," into ",[324,1165,1045],{},"; and ",[324,1168,1169],{},"newPC = valC = 0x028",". One cycle, three effects — and the\nreturn address is now ",[358,1172,1173],{},"data",", sitting in memory like any other quad, exactly as\nthe ",[315,1176,1177],{"href":64},"procedures lesson","\npromised.",[311,1180,1181,1186,1187,1190,1191,1193,1194,1197,1198,1200,1201,1203],{},[349,1182,1183,1184,496],{},"Cycle 7, the ",[324,1185,651],{}," Zeroing a register by xoring it with itself is the\nidiom from ",[315,1188,1189],{"href":54},"the machine-level module",",\nand it has a side effect the trace makes visible: the result is zero, so ",[324,1192,414],{},"\nbecomes 1. If the loop guard were checked ",[358,1195,1196],{},"here",", it would fall through. The\nprogram is correct only because ",[324,1199,648],{}," reruns the flags every iteration before\n",[324,1202,477],{}," reads them; flag liveness is part of the program's logic.",[311,1205,1206,1211,1212,1215,1216,1219,1220,1223],{},[349,1207,1208,1209,496],{},"Cycle 8, the ",[324,1210,641],{}," The first true memory read: ",[324,1213,1214],{},"valE = R[%rdi] + 0 = 0x058",", and the Memory stage returns ",[324,1217,1218],{},"valM = M[0x058] = 0x000d000d000d",", the\nlittle-endian bytes ",[324,1221,1222],{},"0d 00 0d 00 0d 00 00 00"," reassembled into a quad. On the full\nmachine this is the access that would traverse the d-TLB and cache; here the ideal\nmemory answers in-cycle.",[311,1225,1226],{},"From there the loop turns four times, and the sum builds its answer nibble by\nnibble. Each element contributes a different hex digit to every 16-bit group, so\nyou can watch correctness accumulate:",[449,1228],{"hash":1229},"7be9b69d9ac03b721a9ae872a9e97467e94ac975d2b141f14894f982a3d0a845",[311,1231,1232,1233,1235,1236,393,1239,1241,1242,1245,1246,1248,1249,1251,1252,1254,1255,400,1258,1263,1264,1266,1267,1270,1271,1274,1275,1277,1278,1281,1282,1284,1285,1008,1287,327,1290,1293,1294,1297,1298,496],{},"Meanwhile ",[324,1234,1057],{}," walks ",[324,1237,1238],{},"0x058, 0x060, 0x068, 0x070",[324,1240,1051],{}," counts\n",[324,1243,1244],{},"4, 3, 2, 1, 0",". The iteration-4 ",[324,1247,648],{}," (cycle 26) produces zero and sets\n",[324,1250,605],{},", so the cycle-27 ",[324,1253,477],{}," falls through to ",[324,1256,1257],{},"0x057",[349,1259,1260,1261],{},"Cycle 28, the ",[324,1262,661],{},",\nundoes the ",[324,1265,658],{}," symmetrically: Memory reads ",[324,1268,1269],{},"valM = M[0x1f8] = 0x027",", the ALU\ncomputes ",[324,1272,1273],{},"valE = R[%rsp] + 8 = 0x200"," for write-back into ",[324,1276,1045],{},", and\n",[324,1279,1280],{},"newPC = valM"," — control returns to ",[324,1283,672],{}," not because the machine remembers the\ncall, but because the address was parked in memory and fetched back. Cycle 29\nfetches ",[324,1286,355],{},[324,1288,1289],{},"0x027",[324,1291,1292],{},"Stat"," becomes ",[324,1295,1296],{},"HLT",", and the machine stops with\n",[687,1299,1301],{"className":1300},[951],[687,1302,1304,1329],{"className":1303,"ariaHidden":956},[955],[687,1305,1307,1311,1317,1322,1326],{"className":1306},[960],[687,1308],{"className":1309,"style":1310},[964],"height:0.7778em;vertical-align:-0.0833em;",[687,1312,1314],{"className":1313},[969,970],[687,1315,1038],{"className":1316},[969,974],[687,1318],{"className":1319,"style":1321},[1320],"mspace","margin-right:0.2778em;",[687,1323,1039],{"className":1324},[1325],"mrel",[687,1327],{"className":1328,"style":1321},[1320],[687,1330,1332,1335],{"className":1331},[960],[687,1333],{"className":1334,"style":965},[964],[687,1336,1338],{"className":1337},[969,970],[687,1339,975],{"className":1340},[969,974],[311,1342,1343,1344,1347,1348,1351,1352,1355,1356,1358,1359,1361,1362,393,1365,1368,1369,1372,1373,1376,1377,1380,1381,1383,1384,1387],{},"Trace any one of those cycles into the block diagram and every value is ",[358,1345,1346],{},"derived,\nnot asserted",". In cycle 9 the PC holds ",[324,1349,1350],{},"0x048","; the control unit, reading\n",[324,1353,1354],{},"icode:ifun = 6:0"," out of the fetched instruction word, drives the register file to read ",[324,1357,1075],{}," and\n",[324,1360,1038],{}," as ",[324,1363,1364],{},"valA",[324,1366,1367],{},"valB",", steers both into the ALU with ",[324,1370,1371],{},"alufun = add",", asserts\n",[324,1374,1375],{},"set_cc",", routes the ALU output past the idle data memory to the register-file\nwrite port with ",[324,1378,1379],{},"dstE = %rax",", and — seeing ",[324,1382,515],{}," is neither call, jump, nor\nret — selects ",[324,1385,1386],{},"newPC = valP = 0x04a",". Not one wire was set by hand. The opcode\nconfigured the fixed datapath, and the datapath did the rest.",[504,1389,1391],{"type":1390},"note",[311,1392,1393,1396,1397,1399,1400,1402,1403,1405,1406,1408,1409,1411,1412,516,1414,1416,1417,1420,1421,516,1423,1425,1426,1428,1429,1431,1432,1435],{},[349,1394,1395],{},"Takeaway."," The assembled CPU runs a real program end to end: reset forces\n",[324,1398,577],{},", three ",[324,1401,637],{}," cycles build the environment, ",[324,1404,658],{}," pushes ",[324,1407,1289],{},"\nand enters ",[324,1410,1001],{},", four ",[324,1413,641],{},[324,1415,645],{}," iterations accumulate\n",[324,1418,1419],{},"0 -> 0x000d000d000d -> 0x00cd00cd00cd -> 0x0bcd0bcd0bcd -> 0xabcdabcdabcd","\nwhile ",[324,1422,648],{},[324,1424,477],{}," count the loop down, ",[324,1427,661],{}," pops the parked return address\ninto the PC, and ",[324,1430,355],{}," stops the machine 29 cycles after it woke. Every value\nin the trace follows from the wiring — which means the assembled parts ",[358,1433,1434],{},"are"," a\nworking processor.",[363,1437,1439],{"id":1438},"validating-the-machine","Validating the machine",[311,1441,1442,1443,1446],{},"A trace that ends in the right answer is evidence, not proof. Real hardware teams\nspend more effort on ",[349,1444,1445],{},"verification"," than on design, and the structure of that\neffort follows the structure of the machine: test the parts, then the contracts\nbetween them, then the whole.",[311,1448,1449,1452,1453,327,1456,1459,1460,1463,1464,1467,1468,1471,1472,1008,1475,1477],{},[349,1450,1451],{},"Unit tests, one part at a time."," Each functional unit has a small, closed\nspecification, so test it against that spec in isolation. The ALU is combinational:\ndrive operand pairs and check outputs: exhaustively at narrow widths (every 8-bit\npair is only 65,536 cases per function), then structured 64-bit cases targeting\nthe carry chain: ",[324,1454,1455],{},"0 + 0",[324,1457,1458],{},"1 + (-1)",", alternating patterns, and the overflow\nboundaries from\n",[315,1461,1462],{"href":22},"integer arithmetic",". The\nregister file is stateful, so its test is temporal: write a distinctive value to\neach register, read it back on both ports, and check the corner the\n",[315,1465,1466],{"href":129},"clocking lesson","\nworried about: a read of the register being written this cycle must return the\n",[358,1469,1470],{},"old"," value, because the write lands at the edge. Memories get address-in-data\npatterns (write ",[324,1473,1474],{},"0x58",[324,1476,1474],{},") so any addressing error shows as a mismatch.",[311,1479,1480,1483,1484,1486,1487,1489,1490,1493],{},[349,1481,1482],{},"The control table."," The control unit is a pure function from ",[324,1485,465],{}," (and\n",[324,1488,473],{},") to a bundle of mux selects and write-enables, and the\n",[315,1491,1492],{"href":153},"control-logic lesson","\nwrote that function down as a table. So the test is table-against-table: for each\nof the ISA's opcodes, apply the opcode, read every control output, and compare\nwith the specified row. This catches the classic assembly bug (a mux wired to the\nright control signal but with its inputs swapped) before any program runs.",[311,1495,1496,1499,1500,1503,1504,1507,1508,1510,1511,1513,1514,1516,1517,1519,1520,1523,1524,1526,1527,415,1530,1532,1533,1535,1536,1538,1539,1541],{},[349,1497,1498],{},"Per-instruction programs against the ISA model."," The\n",[315,1501,1502],{"href":85},"ISA"," is the\nmachine's specification, and it is executable: an ISA-level simulator (CS:APP's\n",[324,1505,1506],{},"yis",") applies each instruction's defined effect to an architectural state with no\nhardware in sight. So write one tiny program per instruction (a ",[324,1509,641],{}," and a\n",[324,1512,355],{},", a ",[324,1515,658],{}," and a ",[324,1518,355],{},"), run each on the hardware and on the model, and\ncompare the ",[349,1521,1522],{},"complete architectural state"," (registers, ",[324,1525,469],{},", memory, ",[324,1528,1529],{},"PC",[324,1531,1292],{},") after every instruction. Any divergence identifies the faulty instruction\ndirectly. Then add the behavioral pairs: ",[324,1534,477],{}," taken and not taken, ",[324,1537,658],{},"\nfollowed by ",[324,1540,661],{},", flags set then read.",[311,1543,1544,1547,1548,1550,1551,1553,1554,1557,1558,1560],{},[349,1545,1546],{},"Integration."," Only now run ",[324,1549,682],{},", and the cycle table above is\nwhat the comparison looks like: the hardware's state trace laid against the\nmodel's, cycle by cycle, with ",[324,1552,975],{}," as the visible checksum at the end.\nA pipelined build adds one more layer, the hazard suite from\n",[315,1555,1556],{"href":182},"module 5",":\nload-use pairs, ",[324,1559,661],{}," followed immediately by work, a mispredicted branch with\nin-flight wrong-path instructions, each written to force one forwarding or\nstall path and checked the same way, against the ISA model that never pipelines\nanything.",[449,1562],{"hash":1563},"ce756db4a5055c01549f455a88857c9d15fd6710cb1a286833a570aeb3473655",[504,1565,1566],{"type":1390},[311,1567,1568,1570],{},[349,1569,1395],{}," Validation mirrors assembly: test each part against the lesson\nthat built it, test the control fan against the control table, test each\ninstruction against the ISA model, and only then trust a whole-program trace.\nThe ISA is the spec at every level — the hardware is correct exactly when no\nprogram can tell it apart from the model.",[363,1572,1574],{"id":1573},"scaling-up-the-same-machine-faster","Scaling up: the same machine, faster",[311,1576,1577],{},"What we built is the simplest correct CPU: one instruction per cycle, every stage\nfinishing before the next instruction begins. The rest of computer architecture is\nthis exact machine made faster, with the datapath unchanged in spirit.",[1579,1580,1581,1607],"ul",{},[1582,1583,1584,1587,1588,1591,1592,1594,1595,516,1597,1599,1600,1602,1603,1606],"li",{},[349,1585,1586],{},"Pipelined (PIPE)."," Insert registers between the stages and let several\ninstructions occupy the datapath at once, as the\n",[315,1589,1590],{"href":192},"complete PIPE","\ndoes. The functional units are the very same PC, register file, ALU, and data\nmemory; the additions are pipeline registers, forwarding paths, and a control\nunit that stalls or bubbles each register to handle hazards. On ",[324,1593,682],{}," the\neffect is concrete: the ",[324,1596,641],{},[324,1598,645],{}," pair in the loop body is a load-use\nhazard costing one bubble per iteration, and each ",[324,1601,661],{}," injects three — the\n",[315,1604,1605],{"href":296},"previous lesson's swimlane","\nis this program's inner loop.",[1582,1608,1609,1612,1613,1616],{},[349,1610,1611],{},"Real x86-64 silicon."," A modern core is the same idea scaled hard: a deep\npipeline, several ALUs, out-of-order issue, aggressive branch prediction, and a\nmulti-level cache feeding it: the mechanisms the\n",[315,1614,1615],{"href":296},"previous lesson's honesty section","\nflagged as beyond scope. The instruction set is larger and the encodings\nmessier, but underneath, an opcode still configures a fixed datapath of adders,\nregister files, and memories, cycle by cycle.",[363,1618,1620],{"id":1619},"two-of-them-on-one-die","Two of them on one die",[311,1622,1623,1624,1627,1628,1631],{},"There is a second axis of scaling, and after\n",[315,1625,1626],{"href":266},"module 9","\nwe can be precise about it. Duplicating the core is the easy part: the block\ndiagram above, stamped twice. What the duplication ",[358,1629,1630],{},"demands"," is three new\nmechanisms, none of which exists anywhere in the single-core machine:",[1633,1634,1635,1648,1658],"ol",{},[1582,1636,1637,1640,1641,1644,1645,1647],{},[349,1638,1639],{},"Coherence for the caches."," Each core needs private caches to run at speed,\nand the moment two caches can hold the same line, the machine needs a\n",[315,1642,1643],{"href":276},"coherence protocol",":\nevery line carries a MESI state, and a write in one core invalidates the copy\nin the other before it may proceed. Without this, our ",[324,1646,668],{}," array could be\nsummed from stale bytes.",[1582,1649,1650,1653,1654,1657],{},[349,1651,1652],{},"An interconnect."," The single wire from CPU to memory becomes a shared\nfabric: a snooping bus at two cores, a\n",[315,1655,1656],{"href":286},"ring or mesh","\nbeyond that, carrying both memory traffic and the coherence messages, with the\nshared last-level cache hanging off it.",[1582,1659,1660,1663,1664,1667,1668,327,1671,1674,1675,1678],{},[349,1661,1662],{},"Atomic instructions."," Software on two cores must be able to build locks,\nand ordinary load–modify–store sequences interleave. The ISA grows an atomic\nread-modify-write family (",[324,1665,1666],{},"lock","-prefixed ops, ",[324,1669,1670],{},"xchg",[324,1672,1673],{},"cmpxchg",") and fences,\nthe machinery of\n",[315,1676,1677],{"href":281},"memory consistency and synchronization",".\nThe coherence protocol is what makes them enforceable, by letting a core\nhold a line exclusive for the duration of one read-modify-write.",[449,1680],{"hash":1681},"4319e3b0beb46debe8e771e0884c16e08307d713ec4703e29e478ee0de377b3a",[311,1683,1684,1685,1688,1689,1692,1693,1696],{},"And once the hardware exists, something must feed it two instruction streams:\n",[315,1686,1687],{"href":266},"threads",",\nscheduled by the kernel our\n",[315,1690,1691],{"href":256},"interrupt machinery","\nalready lets in every millisecond, or even\n",[315,1694,1695],{"href":271},"two thread contexts inside one core",",\nsharing the pipeline we just assembled. The capstone machine is the unit cell;\nmodule 9 is the crystal.",[311,1698,1699],{},"So the machine in the block diagram is the real thing in its clearest form.\nEverything faster is this datapath plus\nmechanisms to overlap and feed it; everything bigger is this datapath duplicated\nplus mechanisms to keep the copies consistent; everything below is the gates we built\nit from. That is the whole course in one picture: a switch became a gate, gates\nbecame an ALU and a register file, an ISA fixed the bytes, control wired the\nparts, and the assembled machine ran a program to the right answer, with nothing\ndirecting it but its own PC and the bytes it pointed at.",[504,1701,1702],{"type":1390},[311,1703,1704,1706,1707,1709,1710,1712,1713,1715],{},[349,1705,1395],{}," The capstone adds no new part. It wires the course's parts (PC,\ninstruction memory and its fetch logic, register file, ALU, CC, data memory,\ncontrol unit)\nalong a spine, defines a reset state, and lets the clock run: 29 cycles later\n",[324,1708,682],{}," has called a procedure, summed an array, returned, and halted with\n",[324,1711,975],{}," in ",[324,1714,1038],{},". Validation checks the same structure in the same\norder (parts, contracts, whole machine, always against the ISA model). And the\npath onward is two-dimensional: pipeline the datapath for speed, or duplicate it\nand add coherence, an interconnect, and atomics for cores. From a transistor to\na multicore, the machine is now something you can read off the page.",[1717,1718,1719],"style",{},"html pre.shiki code .sEX4i, html code.shiki .sEX4i{--shiki-default:#8B8B8B;--shiki-dark-mode:#8B8B8B94}html pre.shiki code .s3i95, html code.shiki .s3i95{--shiki-default:#000000;--shiki-dark-mode:#FFF}html pre.shiki code .sat3U, html code.shiki .sat3U{--shiki-default:#FF8C00;--shiki-dark-mode:#FFC799}html pre.shiki code .sdxpw, html code.shiki .sdxpw{--shiki-default:#505050;--shiki-dark-mode:#A0A0A0}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}html.dark-mode .shiki span {color: var(--shiki-dark-mode);background: var(--shiki-dark-mode-bg);font-style: var(--shiki-dark-mode-font-style);font-weight: var(--shiki-dark-mode-font-weight);text-decoration: var(--shiki-dark-mode-text-decoration);}",{"title":306,"searchDepth":17,"depth":17,"links":1721},[1722,1723,1724,1725,1726,1727,1728],{"id":365,"depth":17,"text":366},{"id":526,"depth":17,"text":527},{"id":622,"depth":17,"text":623},{"id":1102,"depth":17,"text":1103},{"id":1438,"depth":17,"text":1439},{"id":1573,"depth":17,"text":1574},{"id":1619,"depth":17,"text":1620},[],"computer-science","This is the lesson the whole course was building toward. We have every part: the\nALU that\nadds and subtracts and sets flags, the\nregister file\nwith its two read ports and two clocked write ports (dstE, dstM), the addressed\nmemory,\nthe Y86-64 ISA\nthat fixes the bytes, and the\ncontrol logic that drives\nthe muxes. We even traced\na program through SEQ.\nWhat is left is the assembly itself, done the way an engineer would actually do it:\ndraw the complete machine with every named part in its place, say which lesson\nbuilt each, wire the parts in a deliberate order, define the reset state and watch\nthe first fetch happen, then run a real compiled program (a procedure call, a\nloop, an array in memory) from power-on to halt. When the answer lands, we ask\nthe two questions any real project ends with: how do you know it works, and what\nwould it take to build two?",false,"md",{"moduleNumber":261,"lessonNumber":17,"order":1735},1002,[],"---\ntitle: Assembling a Complete CPU\nmodule: Capstone\nmoduleNumber: 10\nlessonNumber: 2\norder: 1002\nsummary: >\n  We bolt the parts the course built — PC, instruction memory and its\n  fetch logic, register file, ALU, condition codes, data memory, and the control\n  unit — into one\n  complete CPU, name the lesson that built each, wire them in a deliberate order,\n  and power the machine on from reset. Then we assemble a real test program (sum a\n  four-element array through a call\u002Fret procedure), give its exact bytes and memory\n  layout, and trace it cycle by cycle to the answer 0xabcdabcdabcd. We close with\n  how to validate such a machine, and what it takes to put two of them on one die.\ntopics: [Capstone]\nsources:\n  - book: Bryant & O'Hallaron\n    ref: \"CS:APP — §4 Processor Architecture (synthesis); §4.3 Sequential Y86-64 Implementations\"\n  - book: Bistriceanu\n    ref: \"Computer Architecture Notes — §2 Basic Organization \u002F §5 CPU Implementation\"\n---\n\nThis is the lesson the whole course was building toward. We have every part: the\n[ALU](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu) that\nadds and subtracts and sets flags, the\n[register file](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory)\nwith its two read ports and two clocked write ports (`dstE`, `dstM`), the addressed\n[memory](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory),\nthe [Y86-64 ISA](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set)\nthat fixes the bytes, and the\n[control logic](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq) that drives\nthe muxes. We even traced\n[a program through SEQ](\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program).\nWhat is left is the assembly itself, done the way an engineer would actually do it:\ndraw the complete machine with **every named part in its place**, say which lesson\nbuilt each, wire the parts in a deliberate order, define the reset state and watch\nthe first fetch happen, then run a real compiled program (a procedure call, a\nloop, an array in memory) from power-on to `halt`. When the answer lands, we ask\nthe two questions any real project ends with: how do you _know_ it works, and what\nwould it take to build two?\n\n## The complete CPU, part by part\n\nA CPU is seven kinds of part, and the course built each one. **Fetch** needs a\nplace to keep the address of the next instruction and a place to read instruction\nbytes from: the **program counter (PC)** and the **instruction memory**, whose\ncurrent output — the **fetched instruction word** — the Split and Align logic of\n[module 4's fetch stage](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle)\nbreaks into fields combinationally (no register latches it; the machine's clocked\nstate elements remain the four SEQ counted: PC, CC, register file, data memory).\n**Decode** and **write-back** need the **register file**. **Execute** needs the\n**ALU** and, beside it, the **condition-code register (CC)** that latches `ZF`,\n`SF`, and `OF` whenever an `OPq` instruction runs. **Memory** needs the **data\nmemory**. And tying them together, deciding from the decoded opcode which mux\nselects what and which register gets written, is the **control unit**: the\n**hardwired control logic** of a Y86-64 machine (in a microprogrammed design the\nsame job is done by a **microsequencer** stepping through microinstructions, but\nthe role is identical).\n\n$$\n% caption: The complete Y86-64 CPU with every named part placed and wired. The PC\n% caption: addresses instruction memory; the fetched instruction word splits\n% caption: combinationally into fields; the register file feeds the ALU, which sets the CC register;\n% caption: the ALU result addresses data memory; results write back down the inner\n% caption: right margin, and newPC loops down the outer one. The control unit (left)\n% caption: reads icode:ifun and drives a signal to every unit.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=3pt},\n  wlab\u002F.style={text=acc, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % ===== central data spine, bottom (fetch) to top (write-back \u002F next PC) =====\n  \\node[u, minimum width=20mm, minimum height=8mm]  (pc)  at (0,0)    {\\texttt{PC}};\n  \\node[u, minimum width=30mm, minimum height=10mm] (im)  at (0,1.8)  {instruction memory\\\\+ \\texttt{fetch word} (comb.)};\n  \\node[u, minimum width=30mm, minimum height=10mm] (rf)  at (0,3.9)  {register \\texttt{file}};\n  \\node[u, minimum width=22mm, minimum height=10mm] (alu) at (0,6.0)  {\\texttt{ALU}};\n  \\node[u, minimum width=30mm, minimum height=10mm] (dm)  at (0,8.1)  {data memory};\n  \\node[u, minimum width=22mm, minimum height=8mm]  (npc) at (0,10.1) {new \\texttt{PC}};\n  % condition codes beside the ALU\n  \\node[u, minimum width=12mm, minimum height=8mm] (cc) at (2.4,6.0) {\\texttt{CC}};\n  \\draw[->] (alu.east) -- (cc.west);\n  \\node[wlab] at (2.4,5.45) {ZF SF OF};\n  % ----- central data hand-offs (short, vertical, crossing nothing) -----\n  \\draw[->] (pc.north) -- (im.south)  node[wlab,midway,right]{addr};\n  \\draw[->] (im.north) -- (rf.south)  node[wlab,midway,right]{icode, rA, rB, valC, valP};\n  \\draw[->] (rf.north) -- (alu.south) node[wlab,midway,right]{valA, valB};\n  \\draw[->] (alu.north) -- (dm.south) node[wlab,midway,right]{valE};\n  \\draw[->] (dm.north) -- (npc.south) node[wlab,midway,right]{valM};\n  % ----- write-back returns down the INNER right margin -----\n  \\draw[->, acc] (dm.east) -- (3.4,8.1) -- (3.4,3.9) -- (rf.east);\n  \\node[wlab, rotate=-90, anchor=center] at (3.7,6.0) {write-back valE \u002F valM};\n  % ----- newPC returns down the OUTER right margin -----\n  \\draw[->, acc] (npc.east) -- (4.6,10.1) -- (4.6,0) -- (pc.east);\n  \\node[wlab, rotate=-90, anchor=center] at (4.9,5.0) {newPC};\n  % ===== control unit on the far left, spanning the height =====\n  \\node[u, minimum width=12mm, minimum height=106mm] (ctl) at (-5.6,5.05) {};\n  \\node[font=\\footnotesize\\ttfamily, rotate=90] at (-5.6,5.05) {control unit};\n  \\node[wlab, rotate=90, anchor=center] at (-6.55,5.05) {mux selects + write enables};\n  % control fan: one horizontal stub per unit, crossing nothing\n  \\draw[->, acc] (-5.0,0)    -- (pc.west);\n  \\draw[->, acc] (-5.0,3.9)  -- (rf.west);\n  \\draw[->, acc] (-5.0,6.0)  -- (alu.west);\n  \\draw[->, acc] (-5.0,8.1)  -- (dm.west);\n  \\draw[->, acc] (-5.0,10.1) -- (npc.west);\n  \\draw[->, acc] (-5.0,1.5)  -- ([yshift=-3mm]im.west);\n  % the opcode comes back to the control unit from the fetch split\n  \\draw[->, acc!70] ([yshift=3mm]im.west) -- (-5.0,2.1);\n  \\node[wlab, anchor=south] at (-3.3,2.15) {icode : ifun};\n\\end{tikzpicture}\n$$\n\nThe discipline is the one\n[SEQ](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq) taught: functional\nunits stacked along a central spine, data handed straight up, and the two feedback\nwires — write-back to the register file, and `newPC` to the PC — routed in separate\nright-hand margins where they cross nothing. The control unit stands to one side,\nreads `icode:ifun` out of the fetched instruction word, and sends a signal to every unit. One wire is\ndrawn small but matters enormously: the `CC` register's three flags flow back into\nthe control unit (through the `Cnd` condition logic), because a `jne` cannot decide\n`newPC` without them. That single feedback is the machine's only means of\n_decision_; everything else is data routing.\n\nThis machine uses ideal one-cycle memories, as SEQ always did. On the full die,\nthe [previous lesson's block diagram](\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine)\nwraps these two memory boxes in TLBs, caches, and DRAM; nothing in this lesson\nchanges when it does, which is the point of the\n[memory-hierarchy abstraction](\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped).\n\nHere is the provenance, part by part: which lesson built each.\n\n$$\n% caption: Which lesson built which part. Every functional unit of the complete CPU\n% caption: was constructed earlier in the course; this legend names the source. The\n% caption: capstone adds nothing new — it only wires the existing parts together.\n\\begin{tikzpicture}[font=\\footnotesize,\n  p\u002F.style={draw, fill=acc!8, minimum width=38mm, minimum height=8mm, align=center,\n            inner sep=2pt},\n  src\u002F.style={anchor=west, text=acc!85, font=\\footnotesize\\ttfamily}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\foreach \\y\u002F\\part\u002F\\where in {\n    0\u002F{\\texttt{PC + new-PC mux}}\u002F{module 4: assembling SEQ},\n    -1.05\u002F{instruction memory + \\texttt{fetch word}}\u002F{module 3: memories; module 4: fetch},\n    -2.10\u002F{register \\texttt{file}}\u002F{module 3: register files + RAM},\n    -3.15\u002F{\\texttt{ALU}}\u002F{module 3: muxes, decoders, ALU},\n    -4.20\u002F{\\texttt{CC register}}\u002F{module 3: latches + clocking},\n    -5.25\u002F{data memory}\u002F{module 3: sram and dram},\n    -6.30\u002F{control unit}\u002F{module 4: control logic} } {\n    \\node[p] at (0,\\y) {\\part};\n    \\node[src] at (2.7,\\y) {\\where};\n  }\n\\end{tikzpicture}\n$$\n\n> **Definition (Control unit).** The block that turns the decoded opcode into every\n> control signal the datapath needs — each mux select and each write-enable — for the\n> current cycle. In a hardwired implementation it is combinational logic (HCL) over\n> `icode`\u002F`ifun`; in a microprogrammed implementation a **microsequencer** fetches\n> the signals from a control store, one microinstruction per step. Either way it is\n> what makes the fixed datapath behave differently for each instruction.\n\n## Wiring order and bring-up\n\nAssembly has an order, and the order is not arbitrary. First the **data spine**,\nbottom to top: PC into instruction memory, the fetched fields into the register file's read\naddresses, read ports into the ALU, ALU output into the data memory's address\nport. This much is purely feed-forward: signals flow one way, and each connection\ncan be checked in isolation by driving the input and probing the output. Second,\nthe **two feedback paths**: write-back to the register file and `newPC` to the PC.\nThese close loops, so they come after the spine works; a loop wired around a\nbroken spine oscillates or latches garbage, and you cannot tell which part failed.\nThird, the **CC register** beside the ALU and its `Cnd` wire to control. Last, the\n**control fan**: the decoder in the control unit that reads `icode:ifun` and\ndrives every mux select and write-enable, one stub per unit. Control comes last\nbecause it is meaningless until the things it controls exist: every one of its\noutput wires names a mux or a port that has to be there already. This is the same\ninside-out order the\n[SEQ assembly lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq)\nfollowed; the capstone only makes it explicit as a checklist.\n\nWith the machine wired, it has to start. A CPU has no operator; the only thing\nthat distinguishes cycle 1 from cycle 1,000,000 is the state the machine wakes up\nin, so that state must be defined by hardware, not by luck.\n\n> **Definition (Reset state).** The architectural state forced while the `reset`\n> signal is asserted: `PC = 0x000`, all registers zero, condition codes\n> `ZF = 1, SF = 0, OF = 0`, and status `Stat = AOK`. While `reset` is high, every\n> state element loads this value on each clock edge; the machine begins executing\n> at the first rising edge after `reset` is released.\n\nEvery choice here is a convention, and each has a reason. `PC = 0x000` means the\nmachine's first act is to fetch `M[0x000]`, so whoever loads memory knows exactly\nwhere to put the entry point. Registers start at zero so no computation depends on\npower-on noise. `ZF = 1` matches what the flags would show after computing zero,\nwhich is the honest description of a machine that has computed nothing. And\n`Stat = AOK` arms the machine to run. That is the entire boot process for this\nCPU: reset forces a known state, memory holds bytes at address `0x000`, and the\nclock does the rest. Real x86-64 machines are no different in kind (the PC resets\nto a fixed address that points into firmware ROM instead of a loaded program), and\neverything a modern boot does is layered on this one mechanism.\n\n$$\n% caption: Bring-up. While reset is held, every clock edge reloads the defined\n% caption: reset state: PC = 0x000, registers zero, ZF = 1. After release, cycle 1\n% caption: fetches M[0x000] (the bytes 30 f4 ..), computes valE = 0x200, and the\n% caption: next rising edge clocks the first real state change: rsp = 0x200 and\n% caption: PC = 0x00a. From here the machine is simply running.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  an\u002F.style={font=\\footnotesize\\ttfamily, anchor=west},\n  sig\u002F.style={font=\\footnotesize\\ttfamily, anchor=east}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % reset signal: high, then released at x=2.0\n  \\node[sig] at (-1.1,2.25) {reset};\n  \\draw[acc, thick] (-0.9,2.5) -- (2.0,2.5) -- (2.0,2.0) -- (11.2,2.0);\n  % clock: rising edges at 0.25, 2.55, 4.85, 7.15, 9.45\n  \\node[sig] at (-1.1,0.95) {clk};\n  \\draw[black]\n    (-0.9,0.7) -- (0.25,0.7) -- (0.25,1.2) -- (1.4,1.2) -- (1.4,0.7) --\n    (2.55,0.7) -- (2.55,1.2) -- (3.7,1.2) -- (3.7,0.7) --\n    (4.85,0.7) -- (4.85,1.2) -- (6.0,1.2) -- (6.0,0.7) --\n    (7.15,0.7) -- (7.15,1.2) -- (8.3,1.2) -- (8.3,0.7) --\n    (9.45,0.7) -- (9.45,1.2) -- (10.6,1.2) -- (10.6,0.7) -- (11.2,0.7);\n  % cycle labels under the wave\n  \\node[font=\\footnotesize\\ttfamily, text=black] at (3.7,0.25)  {cycle 1};\n  \\node[font=\\footnotesize\\ttfamily, text=black] at (6.0,0.25)  {cycle 2};\n  \\node[font=\\footnotesize\\ttfamily, text=black] at (8.3,0.25)  {cycle 3};\n  % event guides\n  \\draw[acc, dashed] (2.55,1.3) -- (2.55,3.2);\n  \\draw[acc, dashed] (4.85,1.3) -- (4.85,2.6);\n  % staggered annotations\n  \\node[an, text=black] at (-0.9,3.9) {reset held: PC = 0x000, regs = 0, ZF = 1, Stat = AOK};\n  \\node[an, text=acc] at (2.65,3.3) {release: cycle 1 fetches M[0x000] = 30 f4 ..};\n  \\node[an, text=acc] at (4.95,2.7) {edge: rsp = 0x200, PC = 0x00a};\n\\end{tikzpicture}\n$$\n\nThe first fetch is not special. Cycle 1 runs the same\nfetch–decode–execute sequence as every later cycle; the machine cannot tell boot\nfrom steady state. Everything rests on the two facts the hardware\nguarantees: a defined PC and defined bytes at that address.\n\n## The test program: an array sum with call and ret\n\nThe countdown loops we traced in\n[module 4](\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program) exercised\narithmetic and a branch, but a real program does more: it keeps data in memory,\nwalks a pointer across it, and calls procedures. So the capstone's test program is\nchosen to touch **every instruction class the ISA defines**: immediate moves\n(`irmovq`), a memory read (`mrmovq`), register arithmetic that sets flags\n(`addq`, `subq`, `xorq`), a conditional branch (`jne`), the stack pair\n(`call`\u002F`ret`), and `halt`. It sums a four-element array through a procedure, the\nsame shape as CS:APP's `asum`: `main` sets up the stack and the arguments, then\ncalls `sum(array, 4)`.\n\n```asm [asum.ys]\n# main: set up the stack, then sum(array, 4)\nirmovq stack, %rsp    # rsp = 0x200      (stack pointer)\nirmovq array, %rdi    # arg 1: base of array\nirmovq $4, %rsi       # arg 2: element count\ncall sum              # push return addr, jump to sum\nhalt\n\n# long sum(long *start, long count)\nsum:\nirmovq $8, %r8        # r8 = 8   (element stride)\nirmovq $1, %r9        # r9 = 1   (decrement constant)\nxorq %rax, %rax       # sum = 0  (and sets ZF = 1)\nloop:\nmrmovq (%rdi), %r10   # r10 = *start\naddq %r10, %rax       # sum += *start\naddq %r8, %rdi        # start++\nsubq %r9, %rsi        # count--\njne loop              # repeat while count != 0\nret                   # pop return addr into PC\n\n.align 8\narray:\n.quad 0x000d000d000d\n.quad 0x00c000c000c0\n.quad 0x0b000b000b00\n.quad 0xa000a000a000\n\n.pos 0x200\nstack:                # stack grows down from 0x200\n```\n\nThe array values are chosen so the answer proves itself. Each quad fills a\ndifferent nibble of every 16-bit group, so the running sum assembles the digits\n`a`, `b`, `c`, `d` in place, and the correct total is unmistakable:\n$\\texttt{0xabcdabcdabcd}$. A single transposed byte anywhere in the machine and\nthe pattern breaks visibly.\n\nThe assembler lays the code out from address `0x000`. Each `irmovq` is 10 bytes,\neach `OPq` is 2, `call` and `jne` are 9 (opcode byte plus 8-byte destination),\n`ret` and `halt` are 1. That fixes every address, and fixing the addresses\nresolves every label: `sum` lands at `0x028`, `loop` at `0x03e`, `array` at\n`0x058` (already 8-aligned), and `stack` is pinned to `0x200` by the `.pos`\ndirective. The bytes follow the\n[ISA encodings](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set):\nregister nibbles `%rax`=`0`, `%rsp`=`4`, `%rsi`=`6`, `%rdi`=`7`, `%r8`=`8`,\n`%r9`=`9`, `%r10`=`a`, and every constant little-endian.\n\n$$\n% caption: The assembled bytes of asum.ys from address 0x000. Each irmovq is 30,\n% caption: then f:rB, then the 8-byte little-endian value; call is 80 plus the\n% caption: destination 0x028; the OPq instructions are two bytes; jne is 74 plus\n% caption: the destination 0x03e; ret is 90 and halt is 00. The label addresses\n% caption: (sum = 0x028, loop = 0x03e) appear literally inside the call and jne.\n\\begin{tikzpicture}[font=\\footnotesize,\n  ad\u002F.style={anchor=east, text=acc, font=\\ttfamily\\footnotesize},\n  by\u002F.style={anchor=west, font=\\ttfamily\\footnotesize},\n  ins\u002F.style={anchor=west, font=\\ttfamily\\footnotesize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\foreach \\y\u002F\\a\u002F\\bytes\u002F\\ins in {\n    0\u002F{0x000}\u002F{30 f4 00 02 00 00 00 00 00 00}\u002F{irmovq {\\char36}0x200,\\%rsp},\n    -0.6\u002F{0x00a}\u002F{30 f7 58 00 00 00 00 00 00 00}\u002F{irmovq {\\char36}array,\\%rdi},\n    -1.2\u002F{0x014}\u002F{30 f6 04 00 00 00 00 00 00 00}\u002F{irmovq {\\char36}4,\\%rsi},\n    -1.8\u002F{0x01e}\u002F{80 28 00 00 00 00 00 00 00}\u002F{call sum},\n    -2.4\u002F{0x027}\u002F{00}\u002F{halt},\n    -3.2\u002F{0x028}\u002F{30 f8 08 00 00 00 00 00 00 00}\u002F{sum: irmovq {\\char36}8,\\%r8},\n    -3.8\u002F{0x032}\u002F{30 f9 01 00 00 00 00 00 00 00}\u002F{irmovq {\\char36}1,\\%r9},\n    -4.4\u002F{0x03c}\u002F{63 00}\u002F{xorq \\%rax,\\%rax},\n    -5.2\u002F{0x03e}\u002F{50 a7 00 00 00 00 00 00 00 00}\u002F{loop: mrmovq (\\%rdi),\\%r10},\n    -5.8\u002F{0x048}\u002F{60 a0}\u002F{addq \\%r10,\\%rax},\n    -6.4\u002F{0x04a}\u002F{60 87}\u002F{addq \\%r8,\\%rdi},\n    -7.0\u002F{0x04c}\u002F{61 96}\u002F{subq \\%r9,\\%rsi},\n    -7.6\u002F{0x04e}\u002F{74 3e 00 00 00 00 00 00 00}\u002F{jne loop},\n    -8.2\u002F{0x057}\u002F{90}\u002F{ret}} {\n    \\node[ad] at (0,\\y) {\\a};\n    \\node[by] at (0.3,\\y) {\\bytes};\n    \\node[ins] at (7.7,\\y) {\\ins};\n  }\n  \\draw[acc!50] (-1.05,0.35) -- (-1.05,-8.55);\n  % section separators: main \u002F sum \u002F loop body\n  \\draw[acc!35, dashed] (-1.05,-2.8) -- (11.6,-2.8);\n  \\draw[acc!35, dashed] (-1.05,-4.8) -- (11.6,-4.8);\n\\end{tikzpicture}\n$$\n\nThe program is only part of the memory image. The array sits right after the code,\nand the stack, empty at reset, hangs below `0x200`, growing toward lower\naddresses when `call` pushes.\n\n$$\n% caption: The memory image at reset. Code occupies 0x000-0x057, the four array\n% caption: quads follow at 0x058-0x077, and the stack region is empty with rsp\n% caption: initialized to 0x200. The one cell the program will write is 0x1f8: call\n% caption: pushes the return address 0x027 there, and ret pops it back.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  ad\u002F.style={anchor=east, text=acc, font=\\ttfamily\\footnotesize},\n  vv\u002F.style={anchor=west, font=\\ttfamily\\footnotesize, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  % region boxes, low addresses at the top\n  \\draw[fill=acc!8]  (-1.5,0)    rectangle (1.5,-1.6);\n  \\node[align=center] at (0,-0.8) {code:\\\\\\texttt{main} + \\texttt{sum}};\n  \\draw[fill=acc!8]  (-1.5,-1.6) rectangle (1.5,-3.0);\n  \\node[align=center] at (0,-2.3) {array\\\\(4 quads)};\n  \\draw[dashed, black] (-1.5,-3.0) rectangle (1.5,-4.4);\n  \\node[text=black, font=\\footnotesize\\ttfamily] at (0,-3.7) {(unused)};\n  \\draw[fill=acc!20] (-1.5,-4.4) rectangle (1.5,-5.0);\n  \\node[font=\\scriptsize] at (0,-4.7) {stack cell};\n  % boundary addresses on the left\n  \\node[ad] at (-1.7,0)    {0x000};\n  \\node[ad] at (-1.7,-1.6) {0x058};\n  \\node[ad] at (-1.7,-3.0) {0x078};\n  \\node[ad] at (-1.7,-4.4) {0x1f8};\n  \\node[ad] at (-1.7,-5.0) {0x200};\n  % array values on the right\n  \\node[vv] at (1.8,-1.85) {0x058: 000d 000d 000d};\n  \\node[vv] at (1.8,-2.15) {0x060: 00c0 00c0 00c0};\n  \\node[vv] at (1.8,-2.45) {0x068: 0b00 0b00 0b00};\n  \\node[vv] at (1.8,-2.75) {0x070: a000 a000 a000};\n  % stack annotations\n  \\node[vv, text=acc] at (1.8,-4.7) {call writes 0x027 here};\n  \\node[vv, text=acc] at (1.8,-5.0) {$\\gets$ rsp = 0x200 at reset};\n  % stack growth arrow\n  \\draw[->, acc] (-2.6,-5.0) -- (-2.6,-4.2);\n  \\node[font=\\footnotesize\\ttfamily, text=acc, rotate=90, anchor=south] at (-2.85,-4.9) {stack grows};\n\\end{tikzpicture}\n$$\n\nThese bytes are the whole input. The machine starts with `PC = 0x000`, the image\nabove sitting in memory, and from there it runs itself.\n\n## Tracing it, cycle by cycle\n\nThe assembled CPU executes **one instruction per cycle**: in a single tick it\nfetches at the PC, decodes the fields, reads registers, runs the ALU, touches\nmemory if needed, writes back, and computes `newPC`; the new register,\ncondition-code, memory, and PC values clock in at the rising edge. The whole run\nis 29 cycles: three setup moves, the `call`, three cycles of `sum` prologue, four\nloop iterations of five cycles each, `ret`, and `halt`. Here are the cycles where\nsomething new happens.\n\n$$\n% caption: Key cycles of the 29-cycle run. Cycles 1-4 set up the stack and\n% caption: arguments and execute the call, whose memory write is the pushed return\n% caption: address; cycles 5-7 are the sum prologue (xorq zeroing rax sets ZF = 1);\n% caption: cycles 8-12 are the first loop iteration in full, including the mrmovq\n% caption: that reads the first array element; cycles 27-29 exit the loop, pop the\n% caption: return address, and halt with the answer in rax.\n\\begin{tikzpicture}[font=\\footnotesize,\n  h\u002F.style={anchor=west, text=acc, font=\\footnotesize\\ttfamily},\n  c\u002F.style={anchor=west, font=\\ttfamily\\footnotesize}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\draw[acc!40] (-0.3,0.45) -- (14.9,0.45);\n  \\node[h] at (-0.2,0.85) {cyc}; \\node[h] at (0.75,0.85) {PC};\n  \\node[h] at (2.05,0.85) {instruction}; \\node[h] at (5.45,0.85) {what happens};\n  \\node[h] at (10.35,0.85) {state clocked in};\n  \\foreach \\y\u002F\\cy\u002F\\pc\u002F\\ins\u002F\\ef\u002F\\st in {\n    0\u002F1\u002F{0x000}\u002F{irmovq {\\char36}0x200,\\%rsp}\u002F{valE = 0 + 0x200}\u002F{\\%rsp = 0x200},\n    -0.65\u002F2\u002F{0x00a}\u002F{irmovq {\\char36}array,\\%rdi}\u002F{valE = 0x058}\u002F{\\%rdi = 0x058},\n    -1.3\u002F3\u002F{0x014}\u002F{irmovq {\\char36}4,\\%rsi}\u002F{valE = 4}\u002F{\\%rsi = 4},\n    -1.95\u002F4\u002F{0x01e}\u002F{call sum}\u002F{M[0x1f8] = 0x027 (valP)}\u002F{\\%rsp = 0x1f8, PC = 0x028},\n    -2.85\u002F5-7\u002F{0x028..}\u002F{sum prologue}\u002F{r8 = 8, r9 = 1, xorq}\u002F{\\%rax = 0, ZF = 1},\n    -3.75\u002F8\u002F{0x03e}\u002F{mrmovq (\\%rdi),\\%r10}\u002F{valM = M[0x058]}\u002F{\\%r10 = 0x000d000d000d},\n    -4.4\u002F9\u002F{0x048}\u002F{addq \\%r10,\\%rax}\u002F{0 + 0x000d000d000d}\u002F{\\%rax = 0x000d000d000d},\n    -5.05\u002F10\u002F{0x04a}\u002F{addq \\%r8,\\%rdi}\u002F{0x058 + 8}\u002F{\\%rdi = 0x060},\n    -5.7\u002F11\u002F{0x04c}\u002F{subq \\%r9,\\%rsi}\u002F{4 - 1, f\\\u002Flags set}\u002F{\\%rsi = 3, ZF = 0},\n    -6.35\u002F12\u002F{0x04e}\u002F{jne loop}\u002F{ZF = 0: branch}\u002F{PC = 0x03e},\n    -7.25\u002F{..}\u002F{}\u002F{cycles 13-26: iterations 2-4 (see the walk below)}\u002F{}\u002F{},\n    -8.15\u002F27\u002F{0x04e}\u002F{jne loop}\u002F{ZF = 1: fall through}\u002F{PC = 0x057},\n    -8.8\u002F28\u002F{0x057}\u002F{ret}\u002F{valM = M[0x1f8] = 0x027}\u002F{\\%rsp = 0x200, PC = 0x027},\n    -9.45\u002F29\u002F{0x027}\u002F{halt}\u002F{Stat = HLT}\u002F{\\%rax = 0xabcdabcdabcd}} {\n    \\node[c] at (-0.2,\\y) {\\cy}; \\node[c, text=acc] at (0.75,\\y) {\\pc};\n    \\node[c] at (2.05,\\y) {\\ins};\n    \\node[c] at (5.45,\\y) {\\ef}; \\node[c] at (10.35,\\y) {\\st};\n    \\draw[acc!25] (-0.3,\\y-0.33) -- (14.9,\\y-0.33);\n  }\n  % band separators around the condensed rows\n  \\draw[acc!50] (-0.3,-2.5) -- (14.9,-2.5);\n  \\draw[acc!50] (-0.3,-3.4) -- (14.9,-3.4);\n  \\draw[acc!50] (-0.3,-6.85) -- (14.9,-6.85);\n  \\draw[acc!50] (-0.3,-7.75) -- (14.9,-7.75);\n\\end{tikzpicture}\n$$\n\nThree cycles deserve a closer look, because each one runs a mechanism the\ncountdown trace never touched.\n\n**Cycle 4, the `call`.** This is the only instruction in the program that both\nwrites memory and takes a non-sequential `newPC`. The ALU computes\n`valE = R[%rsp] - 8 = 0x1f8`; the Memory stage writes `valP = 0x027` (the address\nof the instruction after the `call`, the `halt`) into `M[0x1f8]`; write-back puts\n`valE` into `%rsp`; and `newPC = valC = 0x028`. One cycle, three effects — and the\nreturn address is now _data_, sitting in memory like any other quad, exactly as\nthe [procedures lesson](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures)\npromised.\n\n**Cycle 7, the `xorq`.** Zeroing a register by xoring it with itself is the\nidiom from [the machine-level module](\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic),\nand it has a side effect the trace makes visible: the result is zero, so `ZF`\nbecomes 1. If the loop guard were checked _here_, it would fall through. The\nprogram is correct only because `subq` reruns the flags every iteration before\n`jne` reads them; flag liveness is part of the program's logic.\n\n**Cycle 8, the `mrmovq`.** The first true memory read: `valE = R[%rdi] + 0 =\n0x058`, and the Memory stage returns `valM = M[0x058] = 0x000d000d000d`, the\nlittle-endian bytes `0d 00 0d 00 0d 00 00 00` reassembled into a quad. On the full\nmachine this is the access that would traverse the d-TLB and cache; here the ideal\nmemory answers in-cycle.\n\nFrom there the loop turns four times, and the sum builds its answer nibble by\nnibble. Each element contributes a different hex digit to every 16-bit group, so\nyou can watch correctness accumulate:\n\n$$\n% caption: The running sum in rax after xorq and after each of the four loop\n% caption: iterations. Each array element fills a different nibble of every 16-bit\n% caption: group, so the digits a, b, c, d assemble in place and the final value\n% caption: 0xabcdabcdabcd is visibly correct - any wrong byte anywhere breaks the\n% caption: pattern.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  vb\u002F.style={draw, fill=acc!8, minimum width=34mm, minimum height=7mm,\n             font=\\footnotesize\\ttfamily},\n  nn\u002F.style={anchor=west, font=\\footnotesize\\ttfamily, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[vb] (v0) at (0,0)    {0x000000000000};\n  \\node[vb] (v1) at (0,-0.95) {0x000d000d000d};\n  \\node[vb] (v2) at (0,-1.9)  {0x00cd00cd00cd};\n  \\node[vb] (v3) at (0,-2.85) {0x0bcd0bcd0bcd};\n  \\node[vb, fill=acc!25] (v4) at (0,-3.8) {0xabcdabcdabcd};\n  \\draw[->] (v0.south) -- (v1.north);\n  \\draw[->] (v1.south) -- (v2.north);\n  \\draw[->] (v2.south) -- (v3.north);\n  \\draw[->] (v3.south) -- (v4.north);\n  \\node[nn] at (2.1,0)     {after xorq (cycle 7)};\n  \\node[nn] at (2.1,-0.95) {iter 1: + M[0x058] = 000d000d000d};\n  \\node[nn] at (2.1,-1.9)  {iter 2: + M[0x060] = 00c000c000c0};\n  \\node[nn] at (2.1,-2.85) {iter 3: + M[0x068] = 0b000b000b00};\n  \\node[nn, text=acc] at (2.1,-3.8) {iter 4: + M[0x070] = a000a000a000};\n\\end{tikzpicture}\n$$\n\nMeanwhile `%rdi` walks `0x058, 0x060, 0x068, 0x070` and `%rsi` counts\n`4, 3, 2, 1, 0`. The iteration-4 `subq` (cycle 26) produces zero and sets\n`ZF = 1`, so the cycle-27 `jne` falls through to `0x057`. **Cycle 28, the `ret`**,\nundoes the `call` symmetrically: Memory reads `valM = M[0x1f8] = 0x027`, the ALU\ncomputes `valE = R[%rsp] + 8 = 0x200` for write-back into `%rsp`, and\n`newPC = valM` — control returns to `main` not because the machine remembers the\ncall, but because the address was parked in memory and fetched back. Cycle 29\nfetches `halt` at `0x027`, `Stat` becomes `HLT`, and the machine stops with\n$\\texttt{\\%rax} = \\texttt{0xabcdabcdabcd}$.\n\nTrace any one of those cycles into the block diagram and every value is _derived,\nnot asserted_. In cycle 9 the PC holds `0x048`; the control unit, reading\n`icode:ifun = 6:0` out of the fetched instruction word, drives the register file to read `%r10` and\n`%rax` as `valA` and `valB`, steers both into the ALU with `alufun = add`, asserts\n`set_cc`, routes the ALU output past the idle data memory to the register-file\nwrite port with `dstE = %rax`, and — seeing `icode` is neither call, jump, nor\nret — selects `newPC = valP = 0x04a`. Not one wire was set by hand. The opcode\nconfigured the fixed datapath, and the datapath did the rest.\n\n> **Takeaway.** The assembled CPU runs a real program end to end: reset forces\n> `PC = 0x000`, three `irmovq` cycles build the environment, `call` pushes `0x027`\n> and enters `sum`, four `mrmovq`\u002F`addq` iterations accumulate\n> `0 -> 0x000d000d000d -> 0x00cd00cd00cd -> 0x0bcd0bcd0bcd -> 0xabcdabcdabcd`\n> while `subq`\u002F`jne` count the loop down, `ret` pops the parked return address\n> into the PC, and `halt` stops the machine 29 cycles after it woke. Every value\n> in the trace follows from the wiring — which means the assembled parts _are_ a\n> working processor.\n\n## Validating the machine\n\nA trace that ends in the right answer is evidence, not proof. Real hardware teams\nspend more effort on **verification** than on design, and the structure of that\neffort follows the structure of the machine: test the parts, then the contracts\nbetween them, then the whole.\n\n**Unit tests, one part at a time.** Each functional unit has a small, closed\nspecification, so test it against that spec in isolation. The ALU is combinational:\ndrive operand pairs and check outputs: exhaustively at narrow widths (every 8-bit\npair is only 65,536 cases per function), then structured 64-bit cases targeting\nthe carry chain: `0 + 0`, `1 + (-1)`, alternating patterns, and the overflow\nboundaries from\n[integer arithmetic](\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic). The\nregister file is stateful, so its test is temporal: write a distinctive value to\neach register, read it back on both ports, and check the corner the\n[clocking lesson](\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking)\nworried about: a read of the register being written this cycle must return the\n_old_ value, because the write lands at the edge. Memories get address-in-data\npatterns (write `0x58` at `0x58`) so any addressing error shows as a mismatch.\n\n**The control table.** The control unit is a pure function from `icode:ifun` (and\n`Cnd`) to a bundle of mux selects and write-enables, and the\n[control-logic lesson](\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing)\nwrote that function down as a table. So the test is table-against-table: for each\nof the ISA's opcodes, apply the opcode, read every control output, and compare\nwith the specified row. This catches the classic assembly bug (a mux wired to the\nright control signal but with its inputs swapped) before any program runs.\n\n**Per-instruction programs against the ISA model.** The\n[ISA](\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is) is the\nmachine's specification, and it is executable: an ISA-level simulator (CS:APP's\n`yis`) applies each instruction's defined effect to an architectural state with no\nhardware in sight. So write one tiny program per instruction (a `mrmovq` and a\n`halt`, a `call` and a `halt`), run each on the hardware and on the model, and\ncompare the **complete architectural state** (registers, `CC`, memory, `PC`,\n`Stat`) after every instruction. Any divergence identifies the faulty instruction\ndirectly. Then add the behavioral pairs: `jne` taken and not taken, `call`\nfollowed by `ret`, flags set then read.\n\n**Integration.** Only now run `asum.ys`, and the cycle table above is\nwhat the comparison looks like: the hardware's state trace laid against the\nmodel's, cycle by cycle, with `0xabcdabcdabcd` as the visible checksum at the end.\nA pipelined build adds one more layer, the hazard suite from\n[module 5](\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding):\nload-use pairs, `ret` followed immediately by work, a mispredicted branch with\nin-flight wrong-path instructions, each written to force one forwarding or\nstall path and checked the same way, against the ISA model that never pipelines\nanything.\n\n$$\n% caption: The validation ladder. Unit tests check each part against its own spec;\n% caption: the control table and per-instruction programs check the contracts, with\n% caption: the ISA-level simulator as the golden model; integration runs whole\n% caption: programs and compares complete state traces.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  vb\u002F.style={draw, fill=acc!8, minimum width=78mm, minimum height=9mm, align=center},\n  st\u002F.style={anchor=west, font=\\footnotesize\\ttfamily, text=acc!80}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[vb] (l1) at (0,0)   {unit tests: ALU vectors, register ports, memory patterns};\n  \\node[vb] (l2) at (0,1.4) {contracts: control table + one program per instruction};\n  \\node[vb] (l3) at (0,2.8) {integration: \\texttt{asum.ys} state trace vs the ISA model};\n  \\draw[->, acc] (l1.north) -- (l2.south);\n  \\draw[->, acc] (l2.north) -- (l3.south);\n  \\node[st] at (4.1,0)   {parts};\n  \\node[st] at (4.1,1.4) {contracts};\n  \\node[st] at (4.1,2.8) {whole machine};\n\\end{tikzpicture}\n$$\n\n> **Takeaway.** Validation mirrors assembly: test each part against the lesson\n> that built it, test the control fan against the control table, test each\n> instruction against the ISA model, and only then trust a whole-program trace.\n> The ISA is the spec at every level — the hardware is correct exactly when no\n> program can tell it apart from the model.\n\n## Scaling up: the same machine, faster\n\nWhat we built is the simplest correct CPU: one instruction per cycle, every stage\nfinishing before the next instruction begins. The rest of computer architecture is\nthis exact machine made faster, with the datapath unchanged in spirit.\n\n- **Pipelined (PIPE).** Insert registers between the stages and let several\n  instructions occupy the datapath at once, as the\n  [complete PIPE](\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor)\n  does. The functional units are the very same PC, register file, ALU, and data\n  memory; the additions are pipeline registers, forwarding paths, and a control\n  unit that stalls or bubbles each register to handle hazards. On `asum.ys` the\n  effect is concrete: the `mrmovq`\u002F`addq` pair in the loop body is a load-use\n  hazard costing one bubble per iteration, and each `ret` injects three — the\n  [previous lesson's swimlane](\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine)\n  is this program's inner loop.\n- **Real x86-64 silicon.** A modern core is the same idea scaled hard: a deep\n  pipeline, several ALUs, out-of-order issue, aggressive branch prediction, and a\n  multi-level cache feeding it: the mechanisms the\n  [previous lesson's honesty section](\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine)\n  flagged as beyond scope. The instruction set is larger and the encodings\n  messier, but underneath, an opcode still configures a fixed datapath of adders,\n  register files, and memories, cycle by cycle.\n\n## Two of them on one die\n\nThere is a second axis of scaling, and after\n[module 9](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism)\nwe can be precise about it. Duplicating the core is the easy part: the block\ndiagram above, stamped twice. What the duplication _demands_ is three new\nmechanisms, none of which exists anywhere in the single-core machine:\n\n1. **Coherence for the caches.** Each core needs private caches to run at speed,\n   and the moment two caches can hold the same line, the machine needs a\n   [coherence protocol](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence):\n   every line carries a MESI state, and a write in one core invalidates the copy\n   in the other before it may proceed. Without this, our `asum` array could be\n   summed from stale bytes.\n2. **An interconnect.** The single wire from CPU to memory becomes a shared\n   fabric: a snooping bus at two cores, a\n   [ring or mesh](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization)\n   beyond that, carrying both memory traffic and the coherence messages, with the\n   shared last-level cache hanging off it.\n3. **Atomic instructions.** Software on two cores must be able to build locks,\n   and ordinary load–modify–store sequences interleave. The ISA grows an atomic\n   read-modify-write family (`lock`-prefixed ops, `xchg`, `cmpxchg`) and fences,\n   the machinery of\n   [memory consistency and synchronization](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization).\n   The coherence protocol is what makes them enforceable, by letting a core\n   hold a line exclusive for the duration of one read-modify-write.\n\n$$\n% caption: The dual-core extension of the assembled CPU. The core is duplicated\n% caption: verbatim; what is new is everything between the cores: MESI coherence\n% caption: across the private caches, a shared LLC on an interconnect, and atomic\n% caption: read-modify-write support so software can build locks.\n\\begin{tikzpicture}[font=\\footnotesize,>=stealth,\n  u\u002F.style={draw, fill=acc!8, align=center, inner sep=3pt},\n  wl\u002F.style={font=\\footnotesize\\ttfamily, text=black}]\n  \\definecolor{acc}{HTML}{2348F2}\n  \\node[u, minimum width=30mm, minimum height=9mm] (c0) at (1.5,3.5) {Core 0\\\\+ atomic RMW};\n  \\node[u, minimum width=30mm, minimum height=9mm] (c1) at (7.1,3.5) {Core 1\\\\+ atomic RMW};\n  \\node[u, minimum width=30mm, minimum height=8mm] (p0) at (1.5,2.0) {\\texttt{private L1\u002FL2}};\n  \\node[u, minimum width=30mm, minimum height=8mm] (p1) at (7.1,2.0) {\\texttt{private L1\u002FL2}};\n  \\draw[->] (c0.south) -- (p0.north);\n  \\draw[->] (c1.south) -- (p1.north);\n  \\draw[\u003C->, acc, dashed] (p0.east) -- (p1.west);\n  \\node[font=\\footnotesize\\ttfamily, text=acc, anchor=south] at (4.3,2.1) {MESI coherence};\n  \\node[u, minimum width=104mm, minimum height=8mm, fill=acc!4] (llc) at (4.3,0.6)\n        {\\texttt{shared LLC + interconnect}};\n  \\draw[->] (p0.south) -- (1.5,1.0);\n  \\draw[->] (p1.south) -- (7.1,1.0);\n  \\node[u, minimum width=40mm, minimum height=8mm] (dr) at (4.3,-0.9) {memory controller + DRAM};\n  \\draw[->] (4.3,0.2) -- (dr.north);\n\\end{tikzpicture}\n$$\n\nAnd once the hardware exists, something must feed it two instruction streams:\n[threads](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism),\nscheduled by the kernel our\n[interrupt machinery](\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel)\nalready lets in every millisecond, or even\n[two thread contexts inside one core](\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading),\nsharing the pipeline we just assembled. The capstone machine is the unit cell;\nmodule 9 is the crystal.\n\nSo the machine in the block diagram is the real thing in its clearest form.\nEverything faster is this datapath plus\nmechanisms to overlap and feed it; everything bigger is this datapath duplicated\nplus mechanisms to keep the copies consistent; everything below is the gates we built\nit from. That is the whole course in one picture: a switch became a gate, gates\nbecame an ALU and a register file, an ISA fixed the bytes, control wired the\nparts, and the assembled machine ran a program to the right answer, with nothing\ndirecting it but its own PC and the bytes it pointed at.\n\n> **Takeaway.** The capstone adds no new part. It wires the course's parts (PC,\n> instruction memory and its fetch logic, register file, ALU, CC, data memory,\n> control unit)\n> along a spine, defines a reset state, and lets the clock run: 29 cycles later\n> `asum.ys` has called a procedure, summed an array, returned, and halted with\n> `0xabcdabcdabcd` in `%rax`. Validation checks the same structure in the same\n> order (parts, contracts, whole machine, always against the ISA model). And the\n> path onward is two-dimensional: pipeline the datapath for speed, or duplicate it\n> and add coherence, an interconnect, and atomics for cores. From a transistor to\n> a multicore, the machine is now something you can read off the page.\n",{"text":1739,"minutes":1740,"time":1741,"words":1742},"16 min read",15.76,945600,3152,{"title":300,"description":1731},[1745,1748],{"book":1746,"ref":1747},"Bryant & O'Hallaron","CS:APP — §4 Processor Architecture (synthesis); §4.3 Sequential Y86-64 Implementations",{"book":1749,"ref":1750},"Bistriceanu","Computer Architecture Notes — §2 Basic Organization \u002F §5 CPU Implementation","available","03.computer-architecture\u002F10.capstone\u002F02.assembling-a-complete-cpu",[290],"HrqaEsFLaZGZGlwrcEx_vMO_46lD5jFjGkRlQuS9nn8",{"\u002Falgorithms\u002Ffoundations\u002Fwhat-is-an-algorithm":1756,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":1757,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":1758,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":1759,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":1760,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":1761,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":1762,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":1763,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":1764,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":1765,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":1766,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":1767,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":1768,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":1769,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":1770,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":1771,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":1772,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":1773,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":1774,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":1775,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":1776,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":1777,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":1778,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":1779,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":1780,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":1781,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":1782,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":1783,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":1784,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":1785,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":1786,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":1787,"\u002Falgorithms\u002Fsequences\u002Ftries":1788,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":1789,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":1790,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":1791,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":1792,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":1793,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":1794,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":1795,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":1796,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":1797,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":1798,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":1799,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":1800,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":1801,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":1802,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":1803,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":1804,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":1805,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":1806,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":1807,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":1808,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":1809,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":1810,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":1811,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":1812,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":1813,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":1814,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":1815,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":1816,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":1817,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":1818,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":1819,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":1820,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":1821,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":1822,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":1823,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":1824,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":1825,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":1826,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":1827,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":1828,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":1829,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":1830,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":1831,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":1832,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":1833,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":1834,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":1835,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":1836,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":1837,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":1838,"\u002Falgorithms":1839,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":1840,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":1841,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":1842,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":1843,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":1844,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":1845,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":1846,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":1847,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":1848,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":1849,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":1850,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":1851,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":1852,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":1853,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":1854,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":1855,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":1856,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":1857,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":1858,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":1859,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":1860,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":1861,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":1862,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":1863,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":1864,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":1865,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":1866,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":1867,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":1868,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":1869,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":1870,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":1871,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":1872,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":1873,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":1854,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":1874,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":1875,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":1876,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":1844,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":1877,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":1878,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":1879,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":1880,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":1881,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":1882,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":1883,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":1884,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":1885,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":1886,"\u002Fcalculus":1887,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":1888,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":1889,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":1890,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":1891,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":1892,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":1893,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":1894,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":1895,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":1896,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":1897,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":1898,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":1899,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":1900,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":1901,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":1902,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":1903,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":1904,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":1905,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":1906,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":1907,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":1908,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":1909,"\u002Fmechanics\u002Frotation\u002Frolling-motion":1910,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":1911,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":1912,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":1913,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":1914,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":1915,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":1916,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":1917,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":1918,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":1919,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":1920,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":1921,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":1922,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":1923,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":1924,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":1925,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":1926,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":1927,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":1928,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":1929,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":1930,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":1931,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":1932,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":1933,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":1934,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":1935,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":1936,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":1937,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":1938,"\u002Fmechanics":1939,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":1940,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":1941,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":1942,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":1943,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":1944,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":1945,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":1946,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":1947,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":1948,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":1949,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":1950,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":1951,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":1928,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":1952,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":1953,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":1954,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":1924,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":1789,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":1955,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":1915,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":1956,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":1957,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":1958,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":1959,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":1960,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":1961,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":1962,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":1963,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":1964,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":1889,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":1965,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":1966,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":1967,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":1968,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":1969,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":1970,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":1971,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":1972,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":1907,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":1906,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":1973,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":1974,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":1975,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":1976,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":1977,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":1978,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":1979,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":1980,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":1981,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":1933,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":1931,"\u002Felectricity-and-magnetism":1982,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":1983,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":1984,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":1985,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":1986,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":1987,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":1988,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":1989,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":1990,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":1991,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":1841,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":1992,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":1993,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":1845,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":1994,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":1995,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":1996,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":1997,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":1998,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":1999,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":2000,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":2001,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":2002,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":2003,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":2004,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":2005,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":2006,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":2007,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":2008,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":2009,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":2010,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":2011,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":2012,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":2013,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":1880,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":2014,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":2015,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":2016,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":2017,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":2018,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":2019,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":2020,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":2021,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":2022,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":2023,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":2024,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":2025,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":2026,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":2027,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":2028,"\u002Flinear-algebra":2029,"\u002Ftheory-of-computation":2030,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":2031,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":2032,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":2033,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":2034,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":2035,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":2036,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":2037,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":2038,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":2039,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":2040,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":2041,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":2042,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":2043,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":2044,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":2045,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":2046,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":2047,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":2048,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":2049,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":2050,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":2051,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":2052,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":2053,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":2054,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":2055,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":2056,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":2057,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":2058,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":2059,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":2060,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":2061,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":2062,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":2063,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":2064,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":2065,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":2066,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":2067,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":2068,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":2069,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":2070,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":2071,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":2072,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":2073,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":2074,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":2075,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":2076,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":2077,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":2078,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":1742,"\u002Fcomputer-architecture":2030,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":2079,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":2080,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":2081,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":1845,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":2082,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":1844,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":1851,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":2083,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":2084,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":1885,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":2085,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":2086,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":2087,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":2088,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":2089,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":2090,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":2091,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":2092,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":2093,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":2094,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":2095,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":2096,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":2091,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":2097,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":2098,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":2099,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":2100,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":2101,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":2102,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":2103,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":2104,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":2105,"\u002Fdifferential-equations":2106,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":2107,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":2108,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":2109,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":2110,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":1990,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":2111,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":2112,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":2113,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":2114,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":2115,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":2116,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":1860,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":2117,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":2118,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":2119,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":2120,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":2121,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":2122,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":2123,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":2124,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":2125,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":2126,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":2081,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":2127,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":2128,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":2129,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":2130,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":1735,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":2011,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":2131,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":2132,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":2021,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":2133,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":2134,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":2135,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":2136,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":2137,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":2138,"\u002Frelativity":2139,"\u002Fphysical-computing":2030,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":2140,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":2120,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":2141,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":2142,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":2143,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":2144,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":2145,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":2146,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":2147,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":2096,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":2021,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":2148,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":2149,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":2150,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":2151,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":2147,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":2152,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":2128,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":1882,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":2153,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":2154,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":1862,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":2155,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":2156,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":2157,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":2158,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":2159,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":2160,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":2161,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":2162,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":2163,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":2120,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":2164,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":2165,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":2166,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":2153,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":1843,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":2167,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":2168,"\u002Fquantum-mechanics":2169,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":2104,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":2170,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":2171,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":1994,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":2172,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":1880,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":2173,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":2174,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":2017,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":2126,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":2175,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":2176,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":2177,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":2178,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":2179,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":2152,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":2180,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":1987,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":2181,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":2182,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":1841,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":2183,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":2184,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":2141,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":1870,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":2021,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":2185,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":2186,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":2006,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":2130,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":2187,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":2188,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":2189,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":2026,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":2190,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":2191,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":2192,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":2192,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":2193,"\u002Freal-analysis":2194,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":2195,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":2196,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":2197,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":2198,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":2199,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":2200,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":2201,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":2202,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":2203,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":2204,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":2168,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":2205,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":2197,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":2115,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":2206,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":2207,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":2208,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":2209,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":2210,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":2211,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":2212,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":2213,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":2207,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":2214,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":2183,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":2215,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":2216,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":2217,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":2218,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":2219,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":2220,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":2221,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":2222,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":2223,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":2224,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":1859,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":2225,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":2226,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":2100,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":2227,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":2228,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":2156,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":2228,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":2229,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":2230,"\u002Fabstract-algebra":2231,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":2232,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":2233,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":2234,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":2235,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":2236,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":2148,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":2237,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":2238,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":2239,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":2240,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":2241,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":2242,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":2243,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":1984,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":2112,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":1859,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":2244,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":1843,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":2245,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":2246,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":1881,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":2173,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":2247,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":2248,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":2249,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":2250,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":2251,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":2252,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":2253,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":2254,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":2255,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":2256,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":2257,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":2258,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":2259,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":2260,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":2204,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":2261,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":2262,"\u002Fatomic-physics":2263,"\u002Fdatabases":2030,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":2264,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":2265,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":2266,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":2195,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":2267,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":2268,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":2269,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":2270,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":2271,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":2272,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":2273,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":2274,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":2275,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":2276,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":2277,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":2278,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":2279,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":2280,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":2281,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":2282,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":2283,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":2284,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":2285,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":2286,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":2277,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":2287,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":2288,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":2289,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":2290,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":2291,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":2236,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":2292,"\u002Fcategory-theory":2293,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":2294,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":2295,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":2296,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":2297,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":2298,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":2299,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":2258,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":2300,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":2301,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":2302,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":2303,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":2304,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":2305,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":2306,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":2307,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":2308,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":2309,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":2310,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":2311,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":2312,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":2313,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":2314,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":2315,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":2316,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":2317,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":2318,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":2319,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":2320,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":2321,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":2322,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":2323,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":2324,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":2325,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":2326,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":2270,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":2327,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":2328,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":2329,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":2330,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":2331,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":2332,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":2333,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":1824,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":2334,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":2335,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":2060,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":2336,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":2337,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":2338,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":2339,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":2340,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":2341,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":2342,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":2343,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":2344,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":2345,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":2346,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":2347,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":2033,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":2348,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":2349,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":2350,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":2351,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":2070,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":2352,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":2353,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":2354,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":2355,"\u002Fdeep-learning":2030,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":2356,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":2153,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":2357,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":2358,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":2359,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":2360,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":2361,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":2362,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":2363,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":2364,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":2200,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":2365,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":2366,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":2367,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":2088,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":1882,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":2368,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":2369,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":2370,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":2016,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":2371,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":2372,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":2093,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":2021,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":2373,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":1990,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":1860,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":1876,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":2374,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":2375,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":2376,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":2008,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":2377,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":1870,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":2378,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":2379,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2380,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":2381,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":2202,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":2382,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":2383,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":2384,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":2385,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":2148,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":2386,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":2127,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":2387,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":1989,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":2388,"\u002Fstatistical-mechanics":2389,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":2390,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":1855,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":2114,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":2391,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":2392,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":2393,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":2394,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":2395,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":2396,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":1988,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":2397,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":2398,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":2399,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":2400,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":2130,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":2401,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":2402,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":2403,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":2404,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":2405,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":2184,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":2129,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":2406,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":2407,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":2408,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":2409,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":2120,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":2410,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":2411,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":2356,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":2256,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":1985,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":2412,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":1851,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":2413,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":2414,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":1996,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":2415,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":2249,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":2416,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":1843,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":2417,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":1854,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":2418,"\u002Fcondensed-matter":2169,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":2419,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":2420,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":2421,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":2422,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":1868,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":2423,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":2424,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":1868,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":2425,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":2279,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":2426,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":2427,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":2428,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":2426,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":2429,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":2430,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":2431,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":2432,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":2433,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":2434,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":2435,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":2436,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":2357,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":2437,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":2430,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":2438,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":2439,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":2074,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":2440,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":2257,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":2441,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":2442,"\u002Flogic":2443,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":2444,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":2445,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":2060,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":2446,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":2447,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":2448,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":2449,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":2439,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":2450,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":2451,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":2452,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":2350,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":2453,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":2454,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":2455,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":2456,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":2457,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":2077,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":2458,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":2459,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":2460,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":2461,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":2266,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":2462,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":2438,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":2463,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":2464,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":2465,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":2087,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":2466,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":2216,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":2467,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":2468,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":2050,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":2469,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":2470,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":2471,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":2472,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":2473,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":2326,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":2474,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":2475,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":2476,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":2361,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":2477,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":2478,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":2479,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":2077,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":2142,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":2480,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":2481,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":2482,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":2483,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":2484,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":2485,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":2486,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":2487,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":2488,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":2489,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":2490,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":2491,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":2492,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":2493,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":2494,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":2495,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":2496,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":2497,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":2498,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":2499,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":2500,"\u002Freinforcement-learning":2030,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":2501,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":2502,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":2503,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":2504,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":2505,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":2506,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":2507,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":2508,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":2509,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":2510,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":2511,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":2512,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":2513,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":2355,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":2210,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":2514,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":2515,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":2516,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":2517,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":2518,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":2519,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":2337,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":2520,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":2521,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":2522,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":2523,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":2524,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":2525,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":2526,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":2527,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":2528,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":2529,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":2530,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":2531,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":2269,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":2521,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":2532,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":1811,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":2533,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":2534,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":2535,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":2536,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":2537,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":2318,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":2538,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":2539,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":2540,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":2541,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":2542,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":2543,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":2544,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":2545,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":2546,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":2547,"\u002Fartificial-intelligence":2030,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":2285,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":2548,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":1847,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":1845,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":2379,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":2549,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":1873,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":2181,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":2550,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":2551,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":2552,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":2241,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":2553,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":2554,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":2555,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":2440,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":2556,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":2557,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":1857,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":2085,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":2558,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":2185,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":2559,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":2560,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":2081,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":2168,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":2561,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":2562,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":2563,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":1852,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":2225,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":2088,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":2564,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":2135,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":2199,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":2565,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":2566,"\u002Fnuclear-physics":2567,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":2568,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":2569,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":2206,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":2570,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":2571,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":2572,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":2056,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":2573,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":2574,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":2351,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":2575,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":2520,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":2576,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":2577,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":2578,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":2579,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":2580,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":2581,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":2582,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":2034,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":2583,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":2584,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":2526,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":2585,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":2586,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":2587,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":2588,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":2589,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":2590,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":2591,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":2592,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":2450,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":2593,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":2594,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":2595,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":2596,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":2597,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":2598,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":2599,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":2600,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":2601,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":2602,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":2603,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":2604,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":2304,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":2471,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":2062,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":2605,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":2606,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":2607,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":2608,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":2318,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":2609,"\u002Fnatural-language-processing":2030,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":2610,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":2226,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":2611,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":2371,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":2612,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":2613,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":2561,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":2614,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":2615,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":2176,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":1880,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":2616,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":1735,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":2617,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":2163,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":2618,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":2417,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":2619,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":2620,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":2386,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":2621,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":1851,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":2622,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":2623,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":2624,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":2167,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":2383,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":2625,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":2626,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":2242,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":2627,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":2287,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":2628,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":2629,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":2176,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":2209,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":2630,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":2631,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":2632,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":2265,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":2633,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":2008,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":2634,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":2110,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":2635,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":2636,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":2433,"\u002Fparticle-physics":2637,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":2227,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":2381,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":2638,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":2166,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":2639,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":2226,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":2138,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":2640,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":2641,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":2642,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":2643,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":2644,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":2432,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":2363,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":2645,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":2646,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":2647,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":2648,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":2560,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":2649,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":2123,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":2185,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":2167,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":2650,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":2251,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":1869,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":2651,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":2652,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":2382,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":2653,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":2654,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":2655,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":2656,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":1850,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":2657,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":2658,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":2110,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":2659,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":2660,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":2375,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":2032,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":2661,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":2662,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":2287,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":2273,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":2285,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":2382,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":2663,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":1849,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":2041,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":2664,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":2127,"\u002Fastrophysics-cosmology":2231,"\u002Fcolophon":2665,"\u002F":2030},4250,4808,3626,2682,4109,4786,3878,3875,3751,3415,4067,3153,3000,4042,5461,5808,3961,3749,4327,5067,4246,4655,4154,5436,2640,4003,3601,2158,4331,4189,2273,3252,4633,4964,4172,3131,5524,3160,4031,2309,4207,3226,2648,4842,5340,3307,5701,4977,4039,2615,3472,4460,3848,4075,4400,3382,3010,3602,3737,3740,3707,3922,5191,4043,3804,4542,4214,5062,2850,4361,3443,3627,4044,3766,4140,3860,4006,5199,4334,5234,3651,5509,5680,153,1375,1073,1093,1125,1146,1014,1132,876,1541,1189,1173,984,1402,1301,950,1268,1063,1107,1408,1161,925,1012,866,964,1090,1142,1085,1020,1207,973,980,728,764,1225,1329,796,929,801,878,774,1044,1488,1175,1130,890,814,870,154,4073,5140,4961,5127,4870,5382,5195,4955,5369,4501,5576,3824,4132,4289,4307,4570,3403,5084,5105,5201,5116,5341,5175,5368,5188,5211,5499,5155,4981,5125,5415,5255,5304,5130,5167,5552,5164,5094,5239,5036,5190,5004,5099,5035,5159,5088,5026,4937,5023,5264,5244,133,5114,5078,5043,5312,5170,5342,5139,5151,5049,5212,5013,5068,5079,5102,5121,5081,5029,5379,5854,5110,2139,3798,5055,5364,4984,4935,4895,4972,5289,5112,5156,4987,5031,5025,5149,5302,5042,5002,4979,4922,4960,5279,126,1877,1180,1129,907,958,1112,1300,1053,1250,1181,1241,1234,966,1050,734,1190,484,1082,926,733,761,571,607,798,804,952,977,731,784,645,771,1017,742,1004,1000,1562,1254,1288,1101,1011,1486,1061,856,992,1169,988,137,0,2037,1782,2384,2254,2123,2332,1643,1714,2089,1751,1367,1660,2511,1998,1892,1854,1791,2438,2487,1917,2375,2525,2266,1845,2275,1810,1631,2310,2166,2233,2113,2505,2347,2672,2112,2473,2592,2380,3013,2513,3256,3218,2194,2173,2205,2326,2081,3342,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,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":2667,"\u002Falgorithms\u002Ffoundations\u002Fproof-techniques":2671,"\u002Falgorithms\u002Ffoundations\u002Fasymptotic-analysis":2675,"\u002Falgorithms\u002Ffoundations\u002Fgrowth-rates-and-loop-analysis":2679,"\u002Falgorithms\u002Ffoundations\u002Frecurrences":2683,"\u002Falgorithms\u002Ffoundations\u002Famortized-analysis":2687,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fmergesort":2691,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fquicksort":2696,"\u002Falgorithms\u002Fdivide-and-conquer\u002Fselection":2700,"\u002Falgorithms\u002Fdivide-and-conquer\u002Ffast-multiplication":2704,"\u002Falgorithms\u002Fsorting\u002Fheaps-and-heapsort":2708,"\u002Falgorithms\u002Fsorting\u002Fsorting-lower-bounds":2713,"\u002Falgorithms\u002Fsorting\u002Flinear-time-sorting":2717,"\u002Falgorithms\u002Fsorting\u002Fexternal-sorting":2721,"\u002Falgorithms\u002Fdata-structures\u002Felementary-structures":2725,"\u002Falgorithms\u002Fdata-structures\u002Fhash-tables":2730,"\u002Falgorithms\u002Fdata-structures\u002Fbinary-search-trees":2734,"\u002Falgorithms\u002Fdata-structures\u002Favl-trees":2738,"\u002Falgorithms\u002Fdata-structures\u002Fbalanced-trees":2742,"\u002Falgorithms\u002Fdata-structures\u002Funion-find":2746,"\u002Falgorithms\u002Fdata-structures\u002Ffenwick-and-segment-trees":2750,"\u002Falgorithms\u002Fdata-structures\u002Fspatial-data-structures":2754,"\u002Falgorithms\u002Fdata-structures\u002Fskip-lists-and-probabilistic-structures":2758,"\u002Falgorithms\u002Fdata-structures\u002Fb-trees":2762,"\u002Falgorithms\u002Fdata-structures\u002Fdata-stream-algorithms":2766,"\u002Falgorithms\u002Fdata-structures\u002Fstreaming-sketches":2770,"\u002Falgorithms\u002Fsequences\u002Ftwo-pointers-and-windows":2774,"\u002Falgorithms\u002Fsequences\u002Fprefix-sums":2779,"\u002Falgorithms\u002Fsequences\u002Fmonotonic-stacks":2783,"\u002Falgorithms\u002Fsequences\u002Fbinary-search-on-the-answer":2787,"\u002Falgorithms\u002Fsequences\u002Fstring-matching":2791,"\u002Falgorithms\u002Fsequences\u002Fkmp-and-z-function":2795,"\u002Falgorithms\u002Fsequences\u002Ftries":2799,"\u002Falgorithms\u002Fsequences\u002Fsuffix-arrays-and-aho-corasick":2803,"\u002Falgorithms\u002Fgraphs\u002Frepresentations-and-traversal":2807,"\u002Falgorithms\u002Fgraphs\u002Fdepth-first-search":2812,"\u002Falgorithms\u002Fgraphs\u002Ftopological-sort-and-scc":2816,"\u002Falgorithms\u002Fgraphs\u002Fminimum-spanning-trees":2820,"\u002Falgorithms\u002Fgraphs\u002Fkruskal-and-prim":2824,"\u002Falgorithms\u002Fgraphs\u002Fshortest-paths":2828,"\u002Falgorithms\u002Fgraphs\u002Fall-pairs-and-negative-weights":2832,"\u002Falgorithms\u002Fgraphs\u002Fnetwork-flow":2836,"\u002Falgorithms\u002Fgraphs\u002Fmax-flow-min-cut":2840,"\u002Falgorithms\u002Fgraphs\u002Fbridges-and-articulation-points":2844,"\u002Falgorithms\u002Fgraphs\u002Flowest-common-ancestor":2848,"\u002Falgorithms\u002Fgraphs\u002Ftwo-sat":2852,"\u002Falgorithms\u002Fgraphs\u002Feulerian-tours":2856,"\u002Falgorithms\u002Fgraphs\u002Fbipartite-matching":2860,"\u002Falgorithms\u002Fgreedy\u002Fthe-greedy-method":2864,"\u002Falgorithms\u002Fgreedy\u002Fscheduling-and-intervals":2869,"\u002Falgorithms\u002Fgreedy\u002Fhuffman-codes":2873,"\u002Falgorithms\u002Fgreedy\u002Fmatroids":2877,"\u002Falgorithms\u002Fgreedy\u002Fstable-matching":2881,"\u002Falgorithms\u002Fdynamic-programming\u002Fprinciples":2885,"\u002Falgorithms\u002Fdynamic-programming\u002Fsequence-dp":2890,"\u002Falgorithms\u002Fdynamic-programming\u002Flongest-increasing-subsequence":2894,"\u002Falgorithms\u002Fdynamic-programming\u002Fknapsack":2898,"\u002Falgorithms\u002Fdynamic-programming\u002Fcoin-change-and-unbounded":2902,"\u002Falgorithms\u002Fdynamic-programming\u002Finterval-dp":2906,"\u002Falgorithms\u002Fdynamic-programming\u002Ftree-dp":2910,"\u002Falgorithms\u002Fdynamic-programming\u002Fbitmask-dp":2914,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-optimizations":2918,"\u002Falgorithms\u002Fdynamic-programming\u002Fdp-on-graphs":2922,"\u002Falgorithms\u002Fdynamic-programming\u002Fdigit-and-probability-dp":2926,"\u002Falgorithms\u002Fbacktracking\u002Fbacktracking-fundamentals":2930,"\u002Falgorithms\u002Fbacktracking\u002Fconstraint-search":2935,"\u002Falgorithms\u002Fbacktracking\u002Fbranch-and-bound":2939,"\u002Falgorithms\u002Fbacktracking\u002Fgraph-backtracking":2943,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fnumber-theory-basics":2947,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmodular-exponentiation-and-primality":2952,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fsieve-and-factorization":2956,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fcombinatorics":2960,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fmatrix-exponentiation":2964,"\u002Falgorithms\u002Fmathematical-algorithms\u002Ffast-fourier-transform":2968,"\u002Falgorithms\u002Fmathematical-algorithms\u002Fgradient-descent":2972,"\u002Falgorithms\u002Fcomputational-geometry\u002Fgeometric-primitives":2976,"\u002Falgorithms\u002Fcomputational-geometry\u002Fconvex-hull":2981,"\u002Falgorithms\u002Fcomputational-geometry\u002Fsweep-line":2985,"\u002Falgorithms\u002Fcomputational-geometry\u002Fpolygons-and-proximity":2989,"\u002Falgorithms\u002Fintractability\u002Fp-np-reductions":2993,"\u002Falgorithms\u002Fintractability\u002Fnp-completeness":2998,"\u002Falgorithms\u002Fintractability\u002Fcoping-with-hardness":3002,"\u002Falgorithms\u002Fintractability\u002Fapproximation-algorithms":3006,"\u002Falgorithms":3010,"\u002Fcalculus\u002Flimits-and-continuity\u002Ffunctions-and-models":3013,"\u002Fcalculus\u002Flimits-and-continuity\u002Fthe-limit-of-a-function":3018,"\u002Fcalculus\u002Flimits-and-continuity\u002Flimit-laws-and-the-precise-definition":3022,"\u002Fcalculus\u002Flimits-and-continuity\u002Fcontinuity":3026,"\u002Fcalculus\u002Fderivatives\u002Fthe-derivative-and-rates-of-change":3030,"\u002Fcalculus\u002Fderivatives\u002Fdifferentiation-rules-and-the-chain-rule":3035,"\u002Fcalculus\u002Fderivatives\u002Fimplicit-differentiation-and-related-rates":3039,"\u002Fcalculus\u002Fderivatives\u002Flinear-approximations-and-differentials":3043,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fextrema-and-the-mean-value-theorem":3047,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fhow-derivatives-shape-a-graph":3052,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fcurve-sketching-and-optimization":3056,"\u002Fcalculus\u002Fapplications-of-derivatives\u002Fnewtons-method-and-antiderivatives":3060,"\u002Fcalculus\u002Fintegrals\u002Farea-and-the-definite-integral":3064,"\u002Fcalculus\u002Fintegrals\u002Fthe-fundamental-theorem-of-calculus":3069,"\u002Fcalculus\u002Fintegrals\u002Fthe-substitution-rule":3073,"\u002Fcalculus\u002Fapplications-of-integration\u002Fareas-and-volumes":3077,"\u002Fcalculus\u002Fapplications-of-integration\u002Fwork-average-value-and-arc-length":3082,"\u002Fcalculus\u002Fapplications-of-integration\u002Fphysics-economics-and-probability":3086,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Finverse-functions-logarithms-and-exponentials":3090,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Fgrowth-decay-inverse-trig-and-hyperbolic-functions":3095,"\u002Fcalculus\u002Fexponential-logarithmic-and-inverse-functions\u002Flhospitals-rule":3099,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fintegration-by-parts":3103,"\u002Fcalculus\u002Ftechniques-of-integration\u002Ftrigonometric-integrals-and-substitution":3108,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fpartial-fractions-and-integration-strategy":3112,"\u002Fcalculus\u002Ftechniques-of-integration\u002Fapproximate-and-improper-integrals":3116,"\u002Fcalculus\u002Fparametric-and-polar\u002Fparametric-curves-and-their-calculus":3120,"\u002Fcalculus\u002Fparametric-and-polar\u002Fpolar-coordinates":3125,"\u002Fcalculus\u002Fparametric-and-polar\u002Fconic-sections":3129,"\u002Fcalculus\u002Fsequences-and-series\u002Fsequences":3133,"\u002Fcalculus\u002Fsequences-and-series\u002Fseries-and-the-integral-test":3138,"\u002Fcalculus\u002Fsequences-and-series\u002Fthe-convergence-tests":3142,"\u002Fcalculus\u002Fsequences-and-series\u002Fpower-series":3146,"\u002Fcalculus\u002Fsequences-and-series\u002Ftaylor-and-maclaurin-series":3150,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvectors-and-the-dot-product":3154,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fthe-cross-product-lines-and-planes":3159,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fcylinders-and-quadric-surfaces":3163,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Fvector-functions-and-space-curves":3167,"\u002Fcalculus\u002Fvectors-and-space-curves\u002Farc-length-curvature-and-motion":3171,"\u002Fcalculus\u002Fpartial-derivatives\u002Ffunctions-of-several-variables":3175,"\u002Fcalculus\u002Fpartial-derivatives\u002Fpartial-derivatives":3180,"\u002Fcalculus\u002Fpartial-derivatives\u002Ftangent-planes-and-the-chain-rule":3183,"\u002Fcalculus\u002Fpartial-derivatives\u002Fdirectional-derivatives-and-the-gradient":3187,"\u002Fcalculus\u002Fpartial-derivatives\u002Foptimization-and-lagrange-multipliers":3191,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fdouble-integrals":3195,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Ftriple-integrals-and-coordinate-systems":3200,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fvector-fields-and-line-integrals":3204,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fgreens-theorem-curl-and-divergence":3208,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fsurface-integrals":3212,"\u002Fcalculus\u002Fmultiple-integrals-and-vector-calculus\u002Fstokes-and-the-divergence-theorem":3216,"\u002Fcalculus":3220,"\u002Fmechanics\u002Ffoundations\u002Fmeasurement-and-dimensions":3223,"\u002Fmechanics\u002Ffoundations\u002Fvector-algebra":3227,"\u002Fmechanics\u002Fkinematics\u002Fone-dimensional-motion":3231,"\u002Fmechanics\u002Fkinematics\u002Fmotion-graphs":3236,"\u002Fmechanics\u002Fkinematics\u002Fprojectile-motion":3240,"\u002Fmechanics\u002Fkinematics\u002Frelative-motion":3244,"\u002Fmechanics\u002Fkinematics\u002Fcircular-motion":3248,"\u002Fmechanics\u002Fdynamics\u002Fnewtons-laws":3252,"\u002Fmechanics\u002Fdynamics\u002Ffree-body-diagrams":3257,"\u002Fmechanics\u002Fdynamics\u002Ffriction-and-curved-motion":3261,"\u002Fmechanics\u002Fdynamics\u002Fnumerical-dynamics":3265,"\u002Fmechanics\u002Fdynamics\u002Fcenter-of-mass-systems":3269,"\u002Fmechanics\u002Fenergy\u002Fwork-and-kinetic-energy":3273,"\u002Fmechanics\u002Fenergy\u002Fpotential-energy":3278,"\u002Fmechanics\u002Fenergy\u002Fmultiparticle-work":3282,"\u002Fmechanics\u002Fenergy\u002Fmass-energy-and-binding":3286,"\u002Fmechanics\u002Fenergy\u002Fphotons-and-quantization":3290,"\u002Fmechanics\u002Fmomentum\u002Fmomentum-and-collisions":3294,"\u002Fmechanics\u002Fmomentum\u002Fcenter-of-mass-collisions":3299,"\u002Fmechanics\u002Fmomentum\u002Frocket-propulsion":3303,"\u002Fmechanics\u002Frotation\u002Frotational-inertia":3307,"\u002Fmechanics\u002Frotation\u002Frotational-dynamics":3312,"\u002Fmechanics\u002Frotation\u002Frolling-motion":3316,"\u002Fmechanics\u002Frotation\u002Fangular-momentum":3320,"\u002Fmechanics\u002Frotation\u002Frolling-resistance":3324,"\u002Fmechanics\u002Frotation\u002Fgyroscopic-precession":3328,"\u002Fmechanics\u002Fgravity-and-matter\u002Fkeplerian-orbits":3332,"\u002Fmechanics\u002Fgravity-and-matter\u002Fgravitational-fields":3337,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstatic-equilibrium":3341,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-statics":3345,"\u002Fmechanics\u002Fgravity-and-matter\u002Ffluid-flow":3349,"\u002Fmechanics\u002Fgravity-and-matter\u002Forbital-motion":3353,"\u002Fmechanics\u002Fgravity-and-matter\u002Fstress-and-elasticity":3357,"\u002Fmechanics\u002Foscillations-waves\u002Fdamped-oscillators":3361,"\u002Fmechanics\u002Foscillations-waves\u002Ftravelling-waves":3366,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-superposition":3370,"\u002Fmechanics\u002Foscillations-waves\u002Fstanding-waves":3374,"\u002Fmechanics\u002Foscillations-waves\u002Fsound-waves":3378,"\u002Fmechanics\u002Foscillations-waves\u002Fdoppler-effect":3382,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-packets":3386,"\u002Fmechanics\u002Foscillations-waves\u002Fbeats-and-coupling":3390,"\u002Fmechanics\u002Foscillations-waves\u002Fsimple-harmonic-motion":3394,"\u002Fmechanics\u002Foscillations-waves\u002Fpendulum-motion":3398,"\u002Fmechanics\u002Foscillations-waves\u002Fdriven-oscillators":3402,"\u002Fmechanics\u002Foscillations-waves\u002Fwave-boundaries":3406,"\u002Fmechanics\u002Fthermodynamics\u002Fkinetic-theory-of-ideal-gases":3410,"\u002Fmechanics\u002Fthermodynamics\u002Ffirst-law-of-thermodynamics":3415,"\u002Fmechanics\u002Fthermodynamics\u002Fentropy-and-the-second-law":3419,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-processes":3423,"\u002Fmechanics\u002Fthermodynamics\u002Fphase-changes":3427,"\u002Fmechanics\u002Fthermodynamics\u002Fthermal-machines":3431,"\u002Fmechanics":3435,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcharge-and-conductors":3438,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Fcoulombs-law":3443,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-and-force":3447,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-field-maps":3451,"\u002Felectricity-and-magnetism\u002Felectric-fields\u002Felectric-dipoles":3455,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fcontinuous-charge-fields":3459,"\u002Felectricity-and-magnetism\u002Fcontinuous-charge-distributions\u002Fgauss-law-and-conductors":3464,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpoint-charge-potential":3468,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fpotential-gradients-and-equipotentials":3473,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Felectrostatic-energy-and-pressure":3477,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Flaplace-boundary-problems":3481,"\u002Felectricity-and-magnetism\u002Felectric-potential\u002Fcontinuous-charge-potentials":3485,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitance-fundamentals":3489,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-networks":3494,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fcapacitor-energy-and-force":3498,"\u002Felectricity-and-magnetism\u002Fcapacitance\u002Fdielectric-polarization-and-breakdown":3502,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fcurrent-and-resistance":3506,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Fkirchhoff-network-analysis":3511,"\u002Felectricity-and-magnetism\u002Fdirect-current-circuits\u002Frc-transients":3515,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-trajectories":3519,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fhall-effect":3524,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-force-on-conductors":3528,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmagnetic-dipoles":3532,"\u002Felectricity-and-magnetism\u002Fmagnetic-field\u002Fmass-spectrometry":3536,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmoving-charge-fields":3540,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fbiot-savart-law":3545,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fcircular-current-loops":3549,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Famperes-law":3553,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fgauss-law-for-magnetism":3557,"\u002Felectricity-and-magnetism\u002Fmagnetic-sources\u002Fmagnetic-materials":3561,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-flux":3565,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Ffaradays-law":3570,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Flenzs-law":3574,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmotional-emf":3578,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Feddy-currents":3582,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fself-inductance":3586,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Fmagnetic-energy":3590,"\u002Felectricity-and-magnetism\u002Felectromagnetic-induction\u002Frl-circuits":3594,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-fundamentals":3598,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Freactance":3603,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Frlc-resonance":3607,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Fac-power":3611,"\u002Felectricity-and-magnetism\u002Falternating-current\u002Ftransformers":3615,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdisplacement-current":3619,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-waves":3624,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Felectromagnetic-momentum":3628,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fdipole-radiation":3632,"\u002Felectricity-and-magnetism\u002Fmaxwell-electromagnetic-waves\u002Fpolarization":3636,"\u002Felectricity-and-magnetism\u002Foptics\u002Freflection-and-refraction":3640,"\u002Felectricity-and-magnetism\u002Foptics\u002Fthin-lenses":3645,"\u002Felectricity-and-magnetism\u002Foptics\u002Fspherical-mirrors":3649,"\u002Felectricity-and-magnetism":3653,"\u002Flinear-algebra\u002Flinear-systems\u002Fsystems-and-echelon-forms":3656,"\u002Flinear-algebra\u002Flinear-systems\u002Fvector-and-matrix-equations":3661,"\u002Flinear-algebra\u002Flinear-systems\u002Fsolution-sets-and-applications":3665,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-independence":3669,"\u002Flinear-algebra\u002Flinear-systems\u002Flinear-transformations":3673,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-operations":3677,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fmatrix-inverse-and-invertibility":3682,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fpartitioned-matrices-and-lu":3686,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fsubspaces-dimension-rank":3690,"\u002Flinear-algebra\u002Fmatrix-algebra\u002Fapplications-leontief-and-graphics":3694,"\u002Flinear-algebra\u002Fdeterminants\u002Fdeterminants-and-cofactors":3698,"\u002Flinear-algebra\u002Fdeterminants\u002Fproperties-of-determinants":3703,"\u002Flinear-algebra\u002Fdeterminants\u002Fcramer-volume-and-area":3707,"\u002Flinear-algebra\u002Fvector-spaces\u002Fvector-spaces-and-subspaces":3711,"\u002Flinear-algebra\u002Fvector-spaces\u002Fnull-and-column-spaces":3716,"\u002Flinear-algebra\u002Fvector-spaces\u002Fbases-and-independent-sets":3720,"\u002Flinear-algebra\u002Fvector-spaces\u002Fcoordinate-systems":3724,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdimension-and-rank":3728,"\u002Flinear-algebra\u002Fvector-spaces\u002Fchange-of-basis":3732,"\u002Flinear-algebra\u002Fvector-spaces\u002Fdifference-equations-and-markov":3736,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-eigenvalues":3740,"\u002Flinear-algebra\u002Feigenvalues\u002Fthe-characteristic-equation":3745,"\u002Flinear-algebra\u002Feigenvalues\u002Fdiagonalization":3749,"\u002Flinear-algebra\u002Feigenvalues\u002Feigenvectors-and-linear-transformations":3753,"\u002Flinear-algebra\u002Feigenvalues\u002Fcomplex-eigenvalues":3757,"\u002Flinear-algebra\u002Feigenvalues\u002Fdynamical-systems":3761,"\u002Flinear-algebra\u002Feigenvalues\u002Fpower-method":3765,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-length-orthogonality":3769,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Forthogonal-sets-and-projections":3774,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fgram-schmidt-and-qr":3778,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-problems":3782,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Fleast-squares-applications":3786,"\u002Flinear-algebra\u002Forthogonality-least-squares\u002Finner-product-spaces":3790,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fdiagonalizing-symmetric-matrices":3794,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fquadratic-forms":3799,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fconstrained-optimization":3803,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsingular-value-decomposition":3807,"\u002Flinear-algebra\u002Fsymmetric-quadratic-svd\u002Fsvd-applications-pca-imaging":3811,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-thinking-and-matrix-computation":3815,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Flu-and-cholesky":3820,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fconditioning-and-floating-point":3824,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fstability-and-error-analysis":3828,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fqr-and-numerical-least-squares":3832,"\u002Flinear-algebra\u002Fnumerical-linear-algebra\u002Fnumerical-eigenvalues-and-svd":3836,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-combinations":3840,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Faffine-independence-and-barycentric-coordinates":3845,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fconvex-combinations-and-convex-sets":3849,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fhyperplanes-and-polytopes":3853,"\u002Flinear-algebra\u002Fgeometry-of-vector-spaces\u002Fcurves-and-surfaces":3857,"\u002Flinear-algebra":3861,"\u002Ftheory-of-computation":3864,"\u002Fcomputer-architecture\u002Ffoundations\u002Fbits-bytes-and-words":3867,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-representation":3868,"\u002Fcomputer-architecture\u002Ffoundations\u002Finteger-arithmetic":3869,"\u002Fcomputer-architecture\u002Ffoundations\u002Ffloating-point":3870,"\u002Fcomputer-architecture\u002Ffoundations\u002Fboolean-algebra-and-bit-manipulation":3871,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fthe-machines-view":3872,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fdata-movement":3873,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farithmetic-and-logic":3874,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fcontrol-flow":3875,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fprocedures":3876,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Farrays-structs-and-alignment":3877,"\u002Fcomputer-architecture\u002Fmachine-level-x86-64\u002Fmemory-layout-and-buffer-overflows":3878,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fwhat-an-isa-is":3879,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Finstruction-formats-and-operands":3880,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Faddressing-modes":3881,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fthe-y86-64-instruction-set":3882,"\u002Fcomputer-architecture\u002Finstruction-set-architecture\u002Fy86-64-programming":3883,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Ftransistors-gates-and-boolean-functions":3884,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fcombinational-logic-and-hcl":3885,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmultiplexers-decoders-and-the-alu":3886,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fmemory-elements-latches-flip-flops-and-clocking":3887,"\u002Fcomputer-architecture\u002Fdigital-logic\u002Fregister-files-and-random-access-memory":3888,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-fetch-decode-execute-cycle":3889,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fthe-seq-stages":3890,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fcontrol-logic-and-sequencing":3891,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Fassembling-seq":3892,"\u002Fcomputer-architecture\u002Fprocessor-design\u002Ftracing-a-program":3893,"\u002Fcomputer-architecture\u002Fpipelining\u002Fpipelining-principles":3894,"\u002Fcomputer-architecture\u002Fpipelining\u002Ffrom-seq-to-pipe":3895,"\u002Fcomputer-architecture\u002Fpipelining\u002Fdata-hazards-stalling-and-forwarding":3896,"\u002Fcomputer-architecture\u002Fpipelining\u002Fcontrol-hazards-and-branch-prediction":3897,"\u002Fcomputer-architecture\u002Fpipelining\u002Fthe-complete-pipe-processor":3898,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fstorage-technologies-and-the-latency-gap":3899,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Flocality":3900,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-memories-direct-mapped":3901,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fset-associative-and-write-policies":3902,"\u002Fcomputer-architecture\u002Fmemory-hierarchy\u002Fcache-performance-and-cache-friendly-code":3903,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Faddress-spaces-and-translation":3904,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fpage-tables-and-page-faults":3905,"\u002Fcomputer-architecture\u002Fvirtual-memory\u002Fthe-tlb-and-multi-level-page-tables":3906,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Fexceptional-control-flow":3907,"\u002Fcomputer-architecture\u002Fexceptions-and-io\u002Finterrupts-and-the-kernel":3908,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fprocesses-threads-and-parallelism":3909,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fhardware-multithreading":3910,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fcache-coherence":3911,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmemory-consistency-and-synchronization":3912,"\u002Fcomputer-architecture\u002Fmultithreading-and-multicore\u002Fmulticore-organization":3913,"\u002Fcomputer-architecture\u002Fcapstone\u002Fthe-whole-machine":3914,"\u002Fcomputer-architecture\u002Fcapstone\u002Fassembling-a-complete-cpu":3915,"\u002Fcomputer-architecture":3916,"\u002Fdifferential-equations\u002Ffoundations\u002Fmodels-and-direction-fields":3919,"\u002Fdifferential-equations\u002Ffoundations\u002Fclassification-and-terminology":3923,"\u002Fdifferential-equations\u002Ffirst-order\u002Flinear-first-order-integrating-factors":3927,"\u002Fdifferential-equations\u002Ffirst-order\u002Fseparable-and-exact":3932,"\u002Fdifferential-equations\u002Ffirst-order\u002Fmodeling-first-order":3936,"\u002Fdifferential-equations\u002Ffirst-order\u002Fautonomous-and-population-dynamics":3940,"\u002Fdifferential-equations\u002Ffirst-order\u002Fexistence-uniqueness-euler":3944,"\u002Fdifferential-equations\u002Ffirst-order\u002Ffirst-order-difference-equations":3948,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhomogeneous-constant-coefficients":3952,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fcomplex-and-repeated-roots":3957,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fnonhomogeneous-undetermined-coefficients":3961,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fvariation-of-parameters":3965,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fmechanical-electrical-vibrations":3969,"\u002Fdifferential-equations\u002Fsecond-order-linear\u002Fhigher-order-linear":3973,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fpower-series-ordinary-points":3977,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fregular-singular-frobenius":3982,"\u002Fdifferential-equations\u002Fseries-solutions\u002Fbessel-and-special-functions":3986,"\u002Fdifferential-equations\u002Flaplace\u002Flaplace-definition-ivps":3990,"\u002Fdifferential-equations\u002Flaplace\u002Fstep-impulse-convolution":3995,"\u002Fdifferential-equations\u002Fsystems\u002Fmatrices-eigenvalues-review":3999,"\u002Fdifferential-equations\u002Fsystems\u002Fconstant-coefficient-systems-phase-portraits":4004,"\u002Fdifferential-equations\u002Fsystems\u002Frepeated-eigenvalues-fundamental-matrices":4008,"\u002Fdifferential-equations\u002Fnumerical\u002Feuler-and-runge-kutta":4012,"\u002Fdifferential-equations\u002Fnumerical\u002Fmultistep-systems-stability":4017,"\u002Fdifferential-equations\u002Fnonlinear\u002Fphase-plane-autonomous-stability":4021,"\u002Fdifferential-equations\u002Fnonlinear\u002Flocally-linear-and-liapunov":4026,"\u002Fdifferential-equations\u002Fnonlinear\u002Fcompeting-species-predator-prey-limit-cycles":4030,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Ffourier-series":4034,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fheat-wave-laplace-equations":4039,"\u002Fdifferential-equations\u002Fpdes-fourier-bvp\u002Fsturm-liouville":4043,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fcalculus-of-variations":4047,"\u002Fdifferential-equations\u002Fhistory-variations\u002Fhistorical-notes":4052,"\u002Fdifferential-equations":4056,"\u002Frelativity\u002Ffoundations\u002Fspecial-relativity-postulates":4059,"\u002Frelativity\u002Ffoundations\u002Florentz-transformation-spacetime":4064,"\u002Frelativity\u002Ffoundations\u002Ftime-dilation-length-contraction":4068,"\u002Frelativity\u002Ffoundations\u002Frelativistic-momentum-energy":4072,"\u002Frelativity\u002Ffoundations\u002Fgeneral-relativity":4076,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fminkowski-spacetime-and-the-interval":4080,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Ffour-vectors-and-index-notation":4085,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fthe-lorentz-group-and-rapidity":4089,"\u002Frelativity\u002Fspacetime-and-the-lorentz-group\u002Fdoppler-aberration-and-appearance":4093,"\u002Frelativity\u002Frelativistic-dynamics\u002Ffour-momentum-force-and-accelerated-motion":4097,"\u002Frelativity\u002Frelativistic-dynamics\u002Fparticle-decays-and-two-body-kinematics":4102,"\u002Frelativity\u002Frelativistic-dynamics\u002Fcollisions-thresholds-and-the-cm-frame":4106,"\u002Frelativity\u002Frelativistic-dynamics\u002Fmandelstam-variables-and-invariants":4110,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ffour-current-and-the-four-potential":4114,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fthe-electromagnetic-field-tensor":4119,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Ftransformation-of-electric-and-magnetic-fields":4123,"\u002Frelativity\u002Fcovariant-electrodynamics\u002Fcovariant-maxwell-and-the-stress-energy-tensor":4127,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-equivalence-principle-formalized":4131,"\u002Frelativity\u002Fcurved-spacetime\u002Fmanifolds-vectors-and-the-metric":4136,"\u002Frelativity\u002Fcurved-spacetime\u002Fcovariant-derivative-and-christoffel-symbols":4140,"\u002Frelativity\u002Fcurved-spacetime\u002Fgeodesics-and-the-geodesic-equation":4144,"\u002Frelativity\u002Fcurved-spacetime\u002Fcurvature-riemann-and-geodesic-deviation":4148,"\u002Frelativity\u002Fcurved-spacetime\u002Fthe-einstein-field-equations":4152,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fthe-schwarzschild-metric":4156,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Fgeodesics-and-orbits-in-schwarzschild":4161,"\u002Frelativity\u002Fthe-schwarzschild-solution\u002Flight-bending-and-null-geodesics":4165,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fperihelion-precession-of-mercury":4169,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fdeflection-of-light-and-gravitational-lensing":4174,"\u002Frelativity\u002Ftests-of-general-relativity\u002Fgravitational-redshift-and-shapiro-delay":4178,"\u002Frelativity\u002Ftests-of-general-relativity\u002Frelativity-in-technology-gps":4182,"\u002Frelativity\u002Fblack-holes\u002Fhorizons-and-coordinate-singularities":4186,"\u002Frelativity\u002Fblack-holes\u002Frotating-and-charged-black-holes":4191,"\u002Frelativity\u002Fblack-holes\u002Fblack-hole-thermodynamics":4195,"\u002Frelativity\u002Fgravitational-waves\u002Flinearized-gravity-and-wave-solutions":4199,"\u002Frelativity\u002Fgravitational-waves\u002Fgeneration-and-the-quadrupole-formula":4204,"\u002Frelativity\u002Fgravitational-waves\u002Fdetection-ligo-and-the-first-events":4208,"\u002Frelativity\u002Fcosmological-bridge\u002Fthe-cosmological-principle-and-flrw-metric":4212,"\u002Frelativity\u002Fcosmological-bridge\u002Ffriedmann-equations-and-cosmic-dynamics":4217,"\u002Frelativity":4221,"\u002Fphysical-computing":4224,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fblackbody-radiation-and-the-planck-quantum":4227,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-photoelectric-effect-and-the-photon":4232,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fx-rays-and-the-compton-effect":4236,"\u002Fquantum-mechanics\u002Fold-quantum-theory\u002Fthe-old-quantum-theory-bohr-and-sommerfeld":4240,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fde-broglie-waves-and-electron-diffraction":4244,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fwave-packets-and-the-probability-interpretation":4249,"\u002Fquantum-mechanics\u002Fmatter-waves\u002Fthe-uncertainty-principle":4253,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-schrodinger-equation-in-one-dimension":4257,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-free-particle-and-wave-packet-dynamics":4262,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fparticle-in-infinite-and-finite-square-wells":4266,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Foperators-expectation-values-and-the-harmonic-oscillator":4270,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fthe-dirac-delta-potential":4274,"\u002Fquantum-mechanics\u002Fwave-mechanics-1d\u002Fbarrier-penetration-and-quantum-tunneling":4278,"\u002Fquantum-mechanics\u002Fformalism\u002Fhilbert-space-and-dirac-notation":4282,"\u002Fquantum-mechanics\u002Fformalism\u002Fobservables-hermitian-operators-and-eigenvalues":4287,"\u002Fquantum-mechanics\u002Fformalism\u002Fthe-postulates-and-quantum-measurement":4291,"\u002Fquantum-mechanics\u002Fformalism\u002Fposition-momentum-and-continuous-spectra":4295,"\u002Fquantum-mechanics\u002Fformalism\u002Fcommutators-and-the-generalized-uncertainty-principle":4299,"\u002Fquantum-mechanics\u002Fformalism\u002Ftime-evolution-schrodinger-and-heisenberg-pictures":4303,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fladder-operators-and-the-number-states":4307,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fcoherent-and-squeezed-states":4312,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fsymmetries-generators-and-conservation-laws":4316,"\u002Fquantum-mechanics\u002Foscillator-and-symmetry\u002Fparity-time-reversal-and-discrete-symmetries":4320,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Forbital-angular-momentum-and-spherical-harmonics":4324,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Fthe-angular-momentum-algebra":4328,"\u002Fquantum-mechanics\u002Fangular-momentum\u002Faddition-of-angular-momenta-and-clebsch-gordan":4332,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-schrodinger-equation-in-three-dimensions":4336,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-hydrogen-atom":4341,"\u002Fquantum-mechanics\u002Fcentral-potentials\u002Fthe-isotropic-oscillator-and-hidden-symmetry":4345,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-half-pauli-matrices-and-stern-gerlach":4349,"\u002Fquantum-mechanics\u002Fspin\u002Fspin-in-a-magnetic-field-precession-and-resonance":4354,"\u002Fquantum-mechanics\u002Fspin\u002Ftwo-level-systems-and-the-bloch-sphere":4358,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fidentical-particles-and-exchange-symmetry":4362,"\u002Fquantum-mechanics\u002Fidentical-particles\u002Fthe-pauli-principle-atoms-and-the-periodic-table":4367,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ftime-independent-perturbation-theory":4371,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Ffine-structure-and-the-real-hydrogen-atom":4376,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-zeeman-and-stark-effects":4380,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-variational-method":4384,"\u002Fquantum-mechanics\u002Fapproximation-methods\u002Fthe-wkb-approximation":4388,"\u002Fquantum-mechanics":4392,"\u002Freal-analysis\u002Ffoundations\u002Fsets-logic-functions":4395,"\u002Freal-analysis\u002Ffoundations\u002Fordered-fields-completeness":4400,"\u002Freal-analysis\u002Ffoundations\u002Fabsolute-value-bounds":4404,"\u002Freal-analysis\u002Ffoundations\u002Fintervals-uncountability":4408,"\u002Freal-analysis\u002Fsequences-series\u002Fsequences-limits":4412,"\u002Freal-analysis\u002Fsequences-series\u002Flimit-laws-monotone":4417,"\u002Freal-analysis\u002Fsequences-series\u002Flimsup-bolzano-weierstrass":4421,"\u002Freal-analysis\u002Fsequences-series\u002Fcauchy-completeness":4425,"\u002Freal-analysis\u002Fsequences-series\u002Fseries-convergence":4429,"\u002Freal-analysis\u002Fsequences-series\u002Fabsolute-conditional-rearrangement":4433,"\u002Freal-analysis\u002Fmetric-spaces\u002Fmetric-spaces-norms":4437,"\u002Freal-analysis\u002Fmetric-spaces\u002Fopen-closed-sets":4442,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconvergence-completeness":4446,"\u002Freal-analysis\u002Fmetric-spaces\u002Fcompactness":4450,"\u002Freal-analysis\u002Fmetric-spaces\u002Fconnectedness":4454,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-of-functions":4458,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuous-functions":4462,"\u002Freal-analysis\u002Fcontinuity\u002Fevt-ivt":4466,"\u002Freal-analysis\u002Fcontinuity\u002Funiform-continuity":4470,"\u002Freal-analysis\u002Fcontinuity\u002Fcontinuity-metric-spaces":4474,"\u002Freal-analysis\u002Fcontinuity\u002Flimits-infinity-monotone":4478,"\u002Freal-analysis\u002Fdifferentiation\u002Fthe-derivative":4482,"\u002Freal-analysis\u002Fdifferentiation\u002Fmean-value-theorem":4487,"\u002Freal-analysis\u002Fdifferentiation\u002Ftaylors-theorem":4491,"\u002Freal-analysis\u002Fdifferentiation\u002Finverse-function-1d":4495,"\u002Freal-analysis\u002Friemann-integration\u002Fdarboux-integral":4499,"\u002Freal-analysis\u002Friemann-integration\u002Fintegrability-classes":4504,"\u002Freal-analysis\u002Friemann-integration\u002Fproperties-of-the-integral":4508,"\u002Freal-analysis\u002Friemann-integration\u002Ffundamental-theorem":4512,"\u002Freal-analysis\u002Friemann-integration\u002Flog-exp-improper":4515,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpointwise-uniform-convergence":4519,"\u002Freal-analysis\u002Ffunction-sequences\u002Finterchange-of-limits":4524,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpower-series-weierstrass":4528,"\u002Freal-analysis\u002Ffunction-sequences\u002Fpicard-ode":4532,"\u002Freal-analysis\u002Fseveral-variables\u002Fdifferentiability-rn":4536,"\u002Freal-analysis\u002Fseveral-variables\u002Fgradient-chain-rule":4541,"\u002Freal-analysis\u002Fseveral-variables\u002Fhigher-derivatives-taylor-extrema":4545,"\u002Freal-analysis\u002Fseveral-variables\u002Finverse-implicit-theorems":4549,"\u002Freal-analysis\u002Fseveral-variables\u002Fmultiple-integrals":4553,"\u002Freal-analysis":4557,"\u002Fabstract-algebra\u002Ffoundations\u002Fsets-functions-relations":4560,"\u002Fabstract-algebra\u002Ffoundations\u002Fintegers-and-modular-arithmetic":4564,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fgroup-axioms-and-first-examples":4568,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fdihedral-and-symmetric-groups":4573,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fmatrix-and-quaternion-groups":4577,"\u002Fabstract-algebra\u002Fgroups-and-symmetry\u002Fhomomorphisms-and-group-actions":4581,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fsubgroups-and-substructures":4585,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcyclic-groups":4590,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fgeneration-and-subgroup-lattices":4594,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcosets-lagrange-and-normal-subgroups":4598,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fisomorphism-theorems":4602,"\u002Fabstract-algebra\u002Fsubgroups-and-quotients\u002Fcomposition-series-and-the-alternating-group":4606,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Factions-and-cayleys-theorem":4610,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fconjugation-and-the-class-equation":4615,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fsylow-theorems":4619,"\u002Fabstract-algebra\u002Fgroup-actions-and-sylow\u002Fautomorphisms-and-simple-groups":4623,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fdirect-products-and-finite-abelian-groups":4627,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fsemidirect-products":4632,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fnilpotent-and-solvable-groups":4636,"\u002Fabstract-algebra\u002Fproducts-and-group-structure\u002Fclassifying-small-groups":4640,"\u002Fabstract-algebra\u002Fring-theory\u002Frings-definitions-and-examples":4644,"\u002Fabstract-algebra\u002Fring-theory\u002Fideals-quotients-and-homomorphisms":4649,"\u002Fabstract-algebra\u002Fring-theory\u002Ffractions-and-the-chinese-remainder-theorem":4653,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Feuclidean-domains-pids-ufds":4657,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fpolynomial-rings-over-fields":4662,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Fgauss-lemma-and-unique-factorization":4666,"\u002Fabstract-algebra\u002Ffactorization-and-polynomials\u002Firreducibility-criteria-and-groebner":4670,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fintroduction-to-modules":4674,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ffree-modules-and-direct-sums":4679,"\u002Fabstract-algebra\u002Fmodule-theory\u002Ftensor-products-and-exact-sequences":4683,"\u002Fabstract-algebra\u002Fmodule-theory\u002Fvector-spaces-and-linear-maps":4687,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fstructure-theorem-over-pids":4691,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Frational-canonical-form":4696,"\u002Fabstract-algebra\u002Fmodules-over-pids\u002Fjordan-canonical-form":4700,"\u002Fabstract-algebra\u002Ffield-theory\u002Ffield-extensions-and-algebraic-elements":4704,"\u002Fabstract-algebra\u002Ffield-theory\u002Fstraightedge-and-compass-constructions":4709,"\u002Fabstract-algebra\u002Ffield-theory\u002Fsplitting-fields-and-algebraic-closure":4713,"\u002Fabstract-algebra\u002Ffield-theory\u002Fseparable-and-cyclotomic-extensions":4717,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fthe-galois-correspondence":4721,"\u002Fabstract-algebra\u002Fgalois-theory\u002Ffinite-fields":4726,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fcyclotomic-and-abelian-extensions":4730,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fgalois-groups-of-polynomials":4734,"\u002Fabstract-algebra\u002Fgalois-theory\u002Fsolvability-by-radicals-and-the-quintic":4738,"\u002Fabstract-algebra\u002Fcapstone\u002Fcommutative-algebra-and-algebraic-geometry":4742,"\u002Fabstract-algebra\u002Fcapstone\u002Frepresentation-and-character-theory":4747,"\u002Fabstract-algebra":4751,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fatomic-spectra-rutherford":4754,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-model-hydrogen":4759,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fx-ray-spectra-franck-hertz":4763,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fbohr-sommerfeld-old-quantum-theory":4767,"\u002Fatomic-physics\u002Fearly-models-and-old-quantum-theory\u002Fold-quantum-theory-limits-wkb":4771,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fschrodinger-3d-hydrogen":4775,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fhydrogen-wave-functions":4780,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fradial-equation-in-full":4784,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fsymmetry-degeneracy-runge-lenz":4788,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fexpectation-values-virial":4792,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Fquantum-defects-alkali-spectra":4796,"\u002Fatomic-physics\u002Fquantum-hydrogen-atom\u002Frydberg-atoms":4800,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Frelativistic-kinetic-correction":4804,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fspin-orbit-thomas-precession":4809,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdarwin-term-fine-structure-formula":4813,"\u002Fatomic-physics\u002Ffine-structure-and-the-dirac-atom\u002Fdirac-equation-hydrogen":4817,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Flamb-shift-qed":4821,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fhyperfine-structure-21cm":4826,"\u002Fatomic-physics\u002Fqed-corrections-and-hyperfine-structure\u002Fnuclear-effects-isotope-shift":4830,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fperiodic-table-atomic-spectra":4834,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fcentral-field-self-consistent":4839,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fidentical-particles-hartree-fock":4843,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhelium-two-electron-atom":4847,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fls-jj-coupling-term-symbols":4851,"\u002Fatomic-physics\u002Fmany-electron-atoms\u002Fhund-rules-ground-terms":4855,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fzeeman-effect":4859,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fpaschen-back-intermediate":4864,"\u002Fatomic-physics\u002Fatoms-in-external-fields\u002Fstark-effect-polarizability":4868,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Ftime-dependent-perturbation-golden-rule":4872,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fdipole-approximation-einstein-coefficients":4877,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Fselection-rules-forbidden-transitions":4881,"\u002Fatomic-physics\u002Fradiative-transitions-and-line-shapes\u002Flifetimes-and-line-shapes":4885,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Flaser-principles":4889,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fspectroscopy-techniques":4894,"\u002Fatomic-physics\u002Flasers-and-spectroscopy\u002Fline-catalog-nist-asd":4898,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Flaser-cooling-doppler":4902,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fsub-doppler-trapping":4907,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Fbose-einstein-condensation":4911,"\u002Fatomic-physics\u002Fmodern-atomic-physics\u002Foptical-clocks-precision":4915,"\u002Fatomic-physics":4919,"\u002Fdatabases":4922,"\u002Fcategory-theory\u002Ffoundations\u002Fwhat-is-a-category":4925,"\u002Fcategory-theory\u002Ffoundations\u002Fexamples-of-categories":4929,"\u002Fcategory-theory\u002Ffoundations\u002Fspecial-morphisms":4933,"\u002Fcategory-theory\u002Ffoundations\u002Ffunctors":4937,"\u002Fcategory-theory\u002Ffoundations\u002Fnatural-transformations":4941,"\u002Fcategory-theory\u002Ffoundations\u002Fsize-and-set-theory":4945,"\u002Fcategory-theory\u002Funiversal-properties\u002Funiversal-properties":4949,"\u002Fcategory-theory\u002Funiversal-properties\u002Fproducts-and-coproducts":4954,"\u002Fcategory-theory\u002Funiversal-properties\u002Fconstructions-on-categories":4958,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Frepresentable-functors":4962,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-lemma":4967,"\u002Fcategory-theory\u002Frepresentables-yoneda\u002Fyoneda-consequences":4971,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits":4975,"\u002Fcategory-theory\u002Flimits-colimits\u002Fproducts-equalizers-pullbacks":4980,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcolimits":4984,"\u002Fcategory-theory\u002Flimits-colimits\u002Fcomputing-limits":4988,"\u002Fcategory-theory\u002Flimits-colimits\u002Flimits-and-functors":4992,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions":4996,"\u002Fcategory-theory\u002Fadjunctions\u002Funits-and-counits":5001,"\u002Fcategory-theory\u002Fadjunctions\u002Fadjunctions-via-universal-arrows":5005,"\u002Fcategory-theory\u002Fadjunctions\u002Ffree-forgetful-adjunctions":5009,"\u002Fcategory-theory\u002Fadjoints-limits\u002Flimits-via-adjoints":5013,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fpresheaf-limits-colimits":5018,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoints-preserve-limits":5022,"\u002Fcategory-theory\u002Fadjoints-limits\u002Fadjoint-functor-theorem":5026,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fmonads":5030,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-eilenberg-moore":5035,"\u002Fcategory-theory\u002Fmonads-algebras\u002Fkleisli-and-programming":5039,"\u002Fcategory-theory\u002Fmonads-algebras\u002Falgebras-for-endofunctors":5043,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Fcartesian-closed-categories":5047,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Flambda-calculus-correspondence":5052,"\u002Fcategory-theory\u002Fcartesian-closed-lambda\u002Ffixed-points-and-recursion":5056,"\u002Fcategory-theory":5060,"\u002Fdeep-learning\u002Fmathematical-background\u002Flinear-algebra-for-deep-learning":5063,"\u002Fdeep-learning\u002Fmathematical-background\u002Fprobability-and-information-theory":5067,"\u002Fdeep-learning\u002Fmathematical-background\u002Fnumerical-computation":5071,"\u002Fdeep-learning\u002Fmathematical-background\u002Fcalculus":5075,"\u002Fdeep-learning\u002Ffoundations\u002Fwhat-is-deep-learning":5078,"\u002Fdeep-learning\u002Ffoundations\u002Fmachine-learning-refresher":5082,"\u002Fdeep-learning\u002Ffoundations\u002Flinear-models-and-the-perceptron":5086,"\u002Fdeep-learning\u002Fneural-networks\u002Fthe-multilayer-perceptron":5090,"\u002Fdeep-learning\u002Fneural-networks\u002Factivation-functions":5095,"\u002Fdeep-learning\u002Fneural-networks\u002Funiversal-approximation":5099,"\u002Fdeep-learning\u002Fneural-networks\u002Fbackpropagation":5103,"\u002Fdeep-learning\u002Fneural-networks\u002Floss-functions-and-output-units":5107,"\u002Fdeep-learning\u002Foptimization\u002Fgradient-descent-and-sgd":5111,"\u002Fdeep-learning\u002Foptimization\u002Fmomentum-and-adaptive-methods":5116,"\u002Fdeep-learning\u002Foptimization\u002Finitialization":5120,"\u002Fdeep-learning\u002Foptimization\u002Fthe-optimization-landscape":5124,"\u002Fdeep-learning\u002Foptimization\u002Fsecond-order-and-approximate-methods":5128,"\u002Fdeep-learning\u002Fregularization\u002Fregularization-overview":5132,"\u002Fdeep-learning\u002Fregularization\u002Fdropout-and-data-augmentation":5137,"\u002Fdeep-learning\u002Fregularization\u002Fearly-stopping-and-parameter-sharing":5141,"\u002Fdeep-learning\u002Fregularization\u002Fnormalization":5145,"\u002Fdeep-learning\u002Farchitectures\u002Fconvolutional-networks":5149,"\u002Fdeep-learning\u002Farchitectures\u002Fcnn-architectures":5154,"\u002Fdeep-learning\u002Farchitectures\u002Frecurrent-networks":5158,"\u002Fdeep-learning\u002Farchitectures\u002Flstm-and-gru":5162,"\u002Fdeep-learning\u002Farchitectures\u002Fattention-and-transformers":5166,"\u002Fdeep-learning\u002Farchitectures\u002Fthe-transformer-architecture":5170,"\u002Fdeep-learning\u002Farchitectures\u002Ftransformers-in-practice":5174,"\u002Fdeep-learning\u002Farchitectures\u002Fgraph-neural-networks":5178,"\u002Fdeep-learning\u002Farchitectures\u002Fstate-space-models":5182,"\u002Fdeep-learning\u002Ftheory\u002Fgeneralization-theory":5186,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-robustness":5191,"\u002Fdeep-learning\u002Ftheory\u002Fadversarial-defenses":5195,"\u002Fdeep-learning\u002Ftheory\u002Fbayesian-and-ensemble-methods":5199,"\u002Fdeep-learning\u002Ftheory\u002Fdeep-equilibrium-models":5203,"\u002Fdeep-learning\u002Fgenerative-models\u002Flinear-factor-models":5207,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoencoders":5212,"\u002Fdeep-learning\u002Fgenerative-models\u002Fvariational-autoencoders":5216,"\u002Fdeep-learning\u002Fgenerative-models\u002Fgenerative-adversarial-networks":5220,"\u002Fdeep-learning\u002Fgenerative-models\u002Fautoregressive-and-normalizing-flows":5224,"\u002Fdeep-learning\u002Fgenerative-models\u002Fenergy-based-and-boltzmann-machines":5228,"\u002Fdeep-learning\u002Fgenerative-models\u002Fdiffusion-and-score-based-models":5232,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fstructured-probabilistic-models":5236,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fmonte-carlo-and-mcmc":5241,"\u002Fdeep-learning\u002Fprobabilistic-methods\u002Fapproximate-inference":5245,"\u002Fdeep-learning\u002Fpractical\u002Fpractical-methodology":5249,"\u002Fdeep-learning\u002Fpractical\u002Fhyperparameters-and-debugging":5254,"\u002Fdeep-learning\u002Fpractical\u002Frepresentation-learning":5258,"\u002Fdeep-learning\u002Fpractical\u002Ftransfer-learning":5262,"\u002Fdeep-learning\u002Fpractical\u002Fapplications":5266,"\u002Fdeep-learning\u002Fpractical\u002Fmodel-compression-and-distillation":5270,"\u002Fdeep-learning\u002Fpractical\u002Fmeta-learning-and-few-shot":5274,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Flarge-language-models":5278,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fscaling-inference-and-alignment":5283,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fseq2seq-pretraining-and-bart":5287,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ftext-to-text-transfer-and-conditional-generation":5291,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fspeech-and-audio-models":5295,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fself-supervised-speech-and-synthesis":5299,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fai-agents":5303,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fagent-memory-retrieval-and-orchestration":5307,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmixture-of-experts":5311,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Fmultimodal-models":5315,"\u002Fdeep-learning\u002Flarge-models-and-agents\u002Ffusion-and-vision-language-models":5319,"\u002Fdeep-learning\u002Freinforcement-learning\u002Ffoundations-of-reinforcement-learning":5323,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fmodel-free-prediction-and-control":5328,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fdeep-q-networks":5332,"\u002Fdeep-learning\u002Freinforcement-learning\u002Fpolicy-gradients-and-actor-critic":5336,"\u002Fdeep-learning\u002Freinforcement-learning\u002Frl-from-human-feedback":5340,"\u002Fdeep-learning":5344,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fequilibrium-state-variables-zeroth-law":5347,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Ffirst-law-heat-and-work":5351,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fsecond-law-entropy-and-the-carnot-bound":5355,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fthermodynamic-potentials-and-maxwell-relations":5359,"\u002Fstatistical-mechanics\u002Fthermodynamics\u002Fstability-response-functions-and-the-third-law":5363,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fclassical-statistics-and-equipartition":5367,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fphase-space-and-liouvilles-theorem":5372,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fensembles-and-the-equal-probability-postulate":5376,"\u002Fstatistical-mechanics\u002Ffoundations\u002Fstatistical-entropy-boltzmann-and-gibbs":5380,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fmicrocanonical-ensemble-and-entropy":5384,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fequilibrium-conditions-temperature-pressure-chemical-potential":5389,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Fideal-gas-phase-space-and-the-sackur-tetrode-entropy":5393,"\u002Fstatistical-mechanics\u002Fmicrocanonical\u002Ftwo-state-systems-paramagnets-and-negative-temperature":5397,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fcanonical-ensemble-and-the-boltzmann-distribution":5401,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fpartition-function-and-the-helmholtz-free-energy":5406,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fenergy-fluctuations-and-ensemble-equivalence":5410,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fthe-einstein-solid-and-harmonic-systems":5414,"\u002Fstatistical-mechanics\u002Fcanonical\u002Fparamagnetism-and-the-schottky-anomaly":5418,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fideal-gas-partition-function-and-the-gibbs-paradox":5422,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fequipartition-and-the-virial-theorem":5427,"\u002Fstatistical-mechanics\u002Fclassical-gas\u002Fmolecular-gases-rotation-and-vibration":5431,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fgrand-canonical-ensemble-and-the-grand-partition-function":5435,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fchemical-potential-fugacity-and-number-fluctuations":5440,"\u002Fstatistical-mechanics\u002Fgrand-canonical\u002Fensemble-summary-and-the-thermodynamic-web":5444,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fquantum-statistics-bose-einstein-and-fermi-dirac":5448,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fderiving-the-quantum-distributions":5453,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fthe-classical-limit-and-quantum-concentration":5457,"\u002Fstatistical-mechanics\u002Fquantum-statistics\u002Fideal-quantum-gases-general-framework":5461,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-and-the-fermion-gas":5465,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthe-photon-gas-and-plancks-radiation-law":5470,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fblackbody-thermodynamics-and-radiation-pressure":5474,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fphonons-and-the-debye-model":5478,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fbose-einstein-condensation-derived":5482,"\u002Fstatistical-mechanics\u002Fbose-systems\u002Fthermodynamics-of-the-bose-gas-and-superfluidity":5486,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fthe-ideal-fermi-gas-at-zero-temperature":5490,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fsommerfeld-expansion-and-electrons-in-metals":5495,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":5499,"\u002Fstatistical-mechanics\u002Ffermi-gas\u002Fneutron-stars-and-nuclear-matter":5503,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-cluster-expansion-and-virial-coefficients":5507,"\u002Fstatistical-mechanics\u002Finteractions\u002Fthe-van-der-waals-gas-and-liquid-gas-coexistence":5512,"\u002Fstatistical-mechanics\u002Finteractions\u002Fquantum-gases-with-interactions-and-exchange":5516,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fphases-coexistence-and-classification":5520,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-ising-model-and-exact-solutions":5525,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fmean-field-theory-and-the-weiss-model":5529,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fcritical-exponents-and-landau-theory":5533,"\u002Fstatistical-mechanics\u002Fphase-transitions\u002Fthe-renormalization-group-idea":5537,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fthermodynamic-fluctuations-and-response":5541,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Fbrownian-motion-and-the-langevin-equation":5546,"\u002Fstatistical-mechanics\u002Ffluctuations\u002Flinear-response-and-the-fluctuation-dissipation-theorem":5550,"\u002Fstatistical-mechanics":5554,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fbonding-mechanisms":5557,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fmolecular-orbitals-and-h2-plus":5562,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fhydrogen-molecule-and-exchange":5566,"\u002Fcondensed-matter\u002Fmolecules-and-bonding\u002Fvan-der-waals-forces":5570,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Frotational-vibrational-spectra":5574,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Fanharmonicity-and-rovibrational-structure":5579,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Framan-and-electronic-bands":5583,"\u002Fcondensed-matter\u002Fmolecular-spectra\u002Flasers-and-masers":5587,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fstructure-of-solids":5591,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fbravais-lattices-and-crystal-systems":5596,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Freciprocal-lattice-and-brillouin-zones":5600,"\u002Fcondensed-matter\u002Fcrystal-structure\u002Fdiffraction-and-structure-factors":5604,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonon-dispersion":5608,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fphonons-quantization-and-dos":5613,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fdebye-einstein-heat-capacity":5617,"\u002Fcondensed-matter\u002Flattice-dynamics\u002Fanharmonicity-and-thermal-transport":5621,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ffree-electron-gas-and-conduction":5625,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fsommerfeld-model-and-heat-capacity":5630,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Ftransport-and-the-hall-effect":5634,"\u002Fcondensed-matter\u002Ffree-electron-fermi-gas\u002Fscreening-and-plasmons":5638,"\u002Fcondensed-matter\u002Fband-theory\u002Fblochs-theorem-and-energy-bands":5642,"\u002Fcondensed-matter\u002Fband-theory\u002Fnearly-free-electron-model":5647,"\u002Fcondensed-matter\u002Fband-theory\u002Ftight-binding-method":5651,"\u002Fcondensed-matter\u002Fband-theory\u002Ffermi-surfaces-and-semiclassical-dynamics":5655,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fsemiconductor-bands-and-junctions":5659,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fintrinsic-and-extrinsic-semiconductors":5664,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fcarrier-transport-and-recombination":5668,"\u002Fcondensed-matter\u002Fsemiconductors\u002Fthe-pn-junction":5672,"\u002Fcondensed-matter\u002Fsemiconductors\u002Ftransistors-and-optoelectronics":5676,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fdielectrics-and-polarization":5680,"\u002Fcondensed-matter\u002Fdielectrics-and-ferroelectrics\u002Fferroelectrics-and-piezoelectrics":5685,"\u002Fcondensed-matter\u002Fmagnetism\u002Fdiamagnetism-and-paramagnetism":5689,"\u002Fcondensed-matter\u002Fmagnetism\u002Fexchange-and-ferromagnetism":5694,"\u002Fcondensed-matter\u002Fmagnetism\u002Fantiferromagnetism-and-domains":5698,"\u002Fcondensed-matter\u002Fmagnetism\u002Fspin-waves-and-magnons":5702,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fsuperconductivity-phenomenology":5706,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Flondon-theory-and-the-meissner-effect":5711,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fginzburg-landau-theory":5715,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fbcs-theory":5719,"\u002Fcondensed-matter\u002Fsuperconductivity\u002Fjosephson-and-high-tc":5723,"\u002Fcondensed-matter\u002Fnanostructures\u002Fquantum-wells-wires-and-dots":5727,"\u002Fcondensed-matter\u002Fnanostructures\u002Finteger-quantum-hall-effect":5732,"\u002Fcondensed-matter\u002Fnanostructures\u002Ffractional-quantum-hall-and-topology":5736,"\u002Fcondensed-matter\u002Fnanostructures\u002Fgraphene-and-dirac-materials":5740,"\u002Fcondensed-matter":5744,"\u002Flogic\u002Ffoundations\u002Flogic-as-a-mathematical-model":5747,"\u002Flogic\u002Fsentential-logic\u002Fformal-languages-and-well-formed-formulas":5751,"\u002Flogic\u002Fsentential-logic\u002Ftruth-assignments-and-tautologies":5756,"\u002Flogic\u002Fsentential-logic\u002Funique-readability-and-parsing":5760,"\u002Flogic\u002Fsentential-logic\u002Finduction-and-recursion":5764,"\u002Flogic\u002Fsentential-logic\u002Fexpressive-completeness-and-normal-forms":5768,"\u002Flogic\u002Fsentential-logic\u002Fboolean-circuits":5772,"\u002Flogic\u002Fsentential-logic\u002Fcompactness-and-effectiveness":5776,"\u002Flogic\u002Ffirst-order-languages\u002Ffirst-order-languages":5780,"\u002Flogic\u002Ffirst-order-languages\u002Fstructures-truth-and-satisfaction":5785,"\u002Flogic\u002Ffirst-order-languages\u002Fdefinability-and-elementary-equivalence":5789,"\u002Flogic\u002Ffirst-order-languages\u002Fterms-substitution-and-parsing":5793,"\u002Flogic\u002Fdeductive-calculus\u002Fa-deductive-calculus":5797,"\u002Flogic\u002Fdeductive-calculus\u002Fdeduction-theorem-and-derived-rules":5802,"\u002Flogic\u002Fdeductive-calculus\u002Fsoundness":5806,"\u002Flogic\u002Fdeductive-calculus\u002Fcompleteness-and-consistency":5810,"\u002Flogic\u002Fmodels-and-theories\u002Fcompactness-and-lowenheim-skolem":5814,"\u002Flogic\u002Fmodels-and-theories\u002Ftheories-elementary-classes-and-categoricity":5819,"\u002Flogic\u002Fmodels-and-theories\u002Finterpretations-between-theories":5823,"\u002Flogic\u002Fmodels-and-theories\u002Fnonstandard-analysis":5827,"\u002Flogic\u002Farithmetic-and-definability\u002Fdefinability-in-arithmetic":5831,"\u002Flogic\u002Farithmetic-and-definability\u002Fnatural-numbers-with-successor":5836,"\u002Flogic\u002Farithmetic-and-definability\u002Fpresburger-and-reducts":5840,"\u002Flogic\u002Farithmetic-and-definability\u002Fa-subtheory-and-representability":5844,"\u002Flogic\u002Fincompleteness\u002Farithmetization-of-syntax":5848,"\u002Flogic\u002Fincompleteness\u002Fincompleteness-and-undecidability":5853,"\u002Flogic\u002Fincompleteness\u002Fsecond-incompleteness-theorem":5857,"\u002Flogic\u002Fcomputability-and-representability\u002Frecursive-functions":5861,"\u002Flogic\u002Fcomputability-and-representability\u002Frepresenting-exponentiation":5866,"\u002Flogic\u002Fsecond-order-logic\u002Fsecond-order-languages":5870,"\u002Flogic\u002Fsecond-order-logic\u002Fskolem-functions-and-many-sorted-logic":5875,"\u002Flogic\u002Fsecond-order-logic\u002Fgeneral-structures":5879,"\u002Flogic":5883,"\u002Freinforcement-learning\u002Ffoundations\u002Fwhat-is-reinforcement-learning":5886,"\u002Freinforcement-learning\u002Ffoundations\u002Fa-brief-history-of-rl":5890,"\u002Freinforcement-learning\u002Ffoundations\u002Fmulti-armed-bandits":5894,"\u002Freinforcement-learning\u002Ffoundations\u002Fbandit-exploration-algorithms":5898,"\u002Freinforcement-learning\u002Ffoundations\u002Fmarkov-decision-processes":5902,"\u002Freinforcement-learning\u002Ffoundations\u002Fvalue-functions-and-optimality":5906,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdynamic-programming":5910,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdp-async-and-gpi":5914,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-methods":5918,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-off-policy":5922,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftemporal-difference-learning":5926,"\u002Freinforcement-learning\u002Ftabular-methods\u002Ftd-control-sarsa-and-q-learning":5930,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-bootstrapping":5934,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fn-step-off-policy-methods":5938,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-and-learning":5942,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fplanning-focusing-and-decision-time":5946,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fdecision-time-planning":5950,"\u002Freinforcement-learning\u002Ftabular-methods\u002Fmonte-carlo-tree-search":5954,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-prediction":5958,"\u002Freinforcement-learning\u002Fapproximation\u002Ffeature-construction-and-nonlinear":5963,"\u002Freinforcement-learning\u002Fapproximation\u002Fon-policy-control":5967,"\u002Freinforcement-learning\u002Fapproximation\u002Faverage-reward-control":5971,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-and-the-deadly-triad":5975,"\u002Freinforcement-learning\u002Fapproximation\u002Fbellman-error-and-gradient-td":5979,"\u002Freinforcement-learning\u002Fapproximation\u002Feligibility-traces":5983,"\u002Freinforcement-learning\u002Fapproximation\u002Ftrue-online-and-sarsa-lambda":5987,"\u002Freinforcement-learning\u002Fapproximation\u002Fpolicy-gradient-methods":5991,"\u002Freinforcement-learning\u002Fapproximation\u002Factor-critic-and-continuous-actions":5995,"\u002Freinforcement-learning\u002Fapproximation\u002Fleast-squares-and-memory-based-methods":5999,"\u002Freinforcement-learning\u002Fapproximation\u002Fmemory-and-kernel-methods":6003,"\u002Freinforcement-learning\u002Fapproximation\u002Foff-policy-eligibility-traces":6007,"\u002Freinforcement-learning\u002Fapproximation\u002Fstable-off-policy-traces":6011,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdeep-q-networks":6015,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fdqn-improvements":6019,"\u002Freinforcement-learning\u002Fdeep-rl\u002Factor-critic-and-ppo":6023,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fppo-and-continuous-control":6027,"\u002Freinforcement-learning\u002Fdeep-rl\u002Fcase-studies":6031,"\u002Freinforcement-learning\u002Fdeep-rl\u002Frl-beyond-games":6035,"\u002Freinforcement-learning\u002Fdeep-rl\u002Ffrontiers":6039,"\u002Freinforcement-learning\u002Fdeep-rl\u002Freward-design-and-open-problems":6043,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow":6047,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fdistributional-and-rainbow-part-2":6052,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control":6056,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fcontinuous-control-part-2":6060,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl":6064,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmodel-based-rl-part-2":6068,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration":6072,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fexploration-part-2":6076,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl":6080,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Foffline-rl-part-2":6084,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl":6088,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fimitation-and-inverse-rl-part-2":6092,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl":6096,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmulti-agent-rl-part-2":6100,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl":6104,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fhierarchical-rl-part-2":6108,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Frlhf-and-language-models":6112,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps":6116,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fpartial-observability-pomdps-part-2":6120,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl":6124,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fsafe-and-constrained-rl-part-2":6128,"\u002Freinforcement-learning\u002Fmodern-deep-rl\u002Fmeta-rl-and-generalization":6132,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fpsychology-of-reinforcement":6136,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Finstrumental-conditioning-and-control":6141,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-and-td-error":6145,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fdopamine-in-the-brain":6149,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fanimal-learning-and-cognition":6153,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fcognitive-maps-and-planning":6157,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fneuroscience-of-reinforcement":6161,"\u002Freinforcement-learning\u002Fminds-and-brains\u002Fseveral-learning-systems":6165,"\u002Freinforcement-learning":6169,"\u002Fartificial-intelligence\u002Ffoundations\u002Fwhat-is-ai":6171,"\u002Fartificial-intelligence\u002Ffoundations\u002Ffoundations-of-ai":6175,"\u002Fartificial-intelligence\u002Ffoundations\u002Fintelligent-agents":6179,"\u002Fartificial-intelligence\u002Ffoundations\u002Fagent-architectures":6183,"\u002Fartificial-intelligence\u002Fsearch\u002Funinformed-search":6187,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-strategies-compared":6192,"\u002Fartificial-intelligence\u002Fsearch\u002Finformed-search":6196,"\u002Fartificial-intelligence\u002Fsearch\u002Fheuristic-functions":6200,"\u002Fartificial-intelligence\u002Fsearch\u002Flocal-search":6204,"\u002Fartificial-intelligence\u002Fsearch\u002Fpopulation-and-continuous-search":6208,"\u002Fartificial-intelligence\u002Fsearch\u002Fadversarial-search":6212,"\u002Fartificial-intelligence\u002Fsearch\u002Fgames-of-chance-and-imperfect-information":6216,"\u002Fartificial-intelligence\u002Fsearch\u002Fconstraint-satisfaction":6220,"\u002Fartificial-intelligence\u002Fsearch\u002Fcsp-search-and-structure":6224,"\u002Fartificial-intelligence\u002Fsearch\u002Fsearch-under-uncertainty":6228,"\u002Fartificial-intelligence\u002Fsearch\u002Fbelief-state-and-online-search":6232,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-logic":6236,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fpropositional-inference":6241,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic":6245,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-logic-in-use":6249,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Finference-and-resolution":6253,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Ffirst-order-resolution":6257,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fclassical-planning":6261,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-graphs-and-graphplan":6265,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-in-the-real-world":6269,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fplanning-under-uncertainty":6273,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Fknowledge-representation":6277,"\u002Fartificial-intelligence\u002Flogic-and-planning\u002Freasoning-systems-and-defaults":6281,"\u002Fartificial-intelligence\u002Funcertainty\u002Fprobability-and-bayes":6285,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayes-rule-and-naive-bayes":6290,"\u002Fartificial-intelligence\u002Funcertainty\u002Fbayesian-networks":6294,"\u002Fartificial-intelligence\u002Funcertainty\u002Finference-in-bayesian-networks":6298,"\u002Fartificial-intelligence\u002Funcertainty\u002Freasoning-over-time":6302,"\u002Fartificial-intelligence\u002Funcertainty\u002Ftracking-and-data-association":6306,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmaking-decisions":6310,"\u002Fartificial-intelligence\u002Funcertainty\u002Fmarkov-decision-processes":6314,"\u002Fartificial-intelligence\u002Funcertainty\u002Fdecision-networks-and-game-theory":6317,"\u002Fartificial-intelligence\u002Funcertainty\u002Fgame-theory-and-mechanism-design":6321,"\u002Fartificial-intelligence\u002Flearning\u002Flearning-from-examples":6325,"\u002Fartificial-intelligence\u002Flearning\u002Ftheory-and-model-families":6330,"\u002Fartificial-intelligence\u002Flearning\u002Fprobabilistic-learning":6334,"\u002Fartificial-intelligence\u002Flearning\u002Fexpectation-maximization":6338,"\u002Fartificial-intelligence\u002Flearning\u002Freinforcement-learning":6342,"\u002Fartificial-intelligence\u002Flearning\u002Fgeneralization-and-policy-search":6345,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-in-learning":6349,"\u002Fartificial-intelligence\u002Flearning\u002Fknowledge-based-learning-methods":6353,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fvision-and-perception":6357,"\u002Fartificial-intelligence\u002Ffrontiers\u002Freconstructing-the-3d-world":6362,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobotics":6366,"\u002Fartificial-intelligence\u002Ffrontiers\u002Frobot-planning-and-control":6370,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnatural-language-in-ai":6374,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fnlp-grammar-translation-and-speech":6378,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fphilosophy-and-future":6382,"\u002Fartificial-intelligence\u002Ffrontiers\u002Fai-ethics-and-future":6386,"\u002Fartificial-intelligence":6390,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-constituents-nuclide-chart":6393,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-size-charge-distributions":6398,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-masses-binding-energy":6402,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fsemi-empirical-mass-formula":6406,"\u002Fnuclear-physics\u002Fnuclear-properties\u002Fnuclear-moments-multipoles":6410,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnuclear-force-shell-overview":6414,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fthe-deuteron":6419,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fnucleon-nucleon-scattering":6423,"\u002Fnuclear-physics\u002Fnuclear-force-deuteron\u002Fmeson-theory-isospin":6427,"\u002Fnuclear-physics\u002Fnuclear-models\u002Ffermi-gas-model":6431,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fliquid-drop-collective-coordinates":6436,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fshell-model-single-particle":6440,"\u002Fnuclear-physics\u002Fnuclear-models\u002Fcollective-model-rotations-vibrations":6444,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-law-modes":6448,"\u002Fnuclear-physics\u002Fradioactive-decay\u002Fdecay-kinetics-equilibrium":6453,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-decay-gamow-theory":6457,"\u002Fnuclear-physics\u002Falpha-decay\u002Falpha-fine-structure-hindrance":6462,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fbeta-decay-energetics-neutrino":6466,"\u002Fnuclear-physics\u002Fbeta-decay\u002Ffermi-theory-beta-decay":6471,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fweak-interaction-parity-violation":6475,"\u002Fnuclear-physics\u002Fbeta-decay\u002Fdouble-beta-decay-neutrino-mass":6479,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fgamma-multipole-radiation":6483,"\u002Fnuclear-physics\u002Fgamma-decay\u002Finternal-conversion-isomers":6488,"\u002Fnuclear-physics\u002Fgamma-decay\u002Fangular-correlations-mossbauer":6492,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Freaction-kinematics-cross-sections":6496,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fcompound-nucleus-resonances":6501,"\u002Fnuclear-physics\u002Fnuclear-reactions\u002Fdirect-reactions-optical-model":6505,"\u002Fnuclear-physics\u002Ffission\u002Ffission-barrier-dynamics":6509,"\u002Fnuclear-physics\u002Ffission\u002Fchain-reactions-reactor-physics":6514,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Ffusion-reactions-confinement":6518,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fstellar-nucleosynthesis":6523,"\u002Fnuclear-physics\u002Ffusion-nucleosynthesis\u002Fbig-bang-nucleosynthesis":6527,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fcharged-particle-stopping-power":6531,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fphoton-neutron-interactions":6536,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fradiation-detectors":6540,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fdosimetry-radiation-biology":6544,"\u002Fnuclear-physics\u002Fradiation-matter-applications\u002Fnuclear-applications-dating-medicine":6548,"\u002Fnuclear-physics":6552,"\u002Fnatural-language-processing\u002Ffoundations\u002Fwhat-is-nlp":6555,"\u002Fnatural-language-processing\u002Ffoundations\u002Fregex-and-text-normalization":6559,"\u002Fnatural-language-processing\u002Ffoundations\u002Fminimum-edit-distance":6563,"\u002Fnatural-language-processing\u002Ffoundations\u002Fn-gram-language-models":6567,"\u002Fnatural-language-processing\u002Ffoundations\u002Fsmoothing-and-backoff":6571,"\u002Fnatural-language-processing\u002Fclassification\u002Fnaive-bayes-and-sentiment":6575,"\u002Fnatural-language-processing\u002Fclassification\u002Fevaluating-classifiers":6580,"\u002Fnatural-language-processing\u002Fclassification\u002Flogistic-regression":6584,"\u002Fnatural-language-processing\u002Fclassification\u002Fsentiment-and-affect-lexicons":6588,"\u002Fnatural-language-processing\u002Fsemantics\u002Fvector-semantics-and-embeddings":6592,"\u002Fnatural-language-processing\u002Fsemantics\u002Fstatic-word-embeddings":6597,"\u002Fnatural-language-processing\u002Fsemantics\u002Fneural-language-models":6601,"\u002Fnatural-language-processing\u002Fsequences\u002Fsequence-labeling":6605,"\u002Fnatural-language-processing\u002Fsequences\u002Fcrfs-and-neural-taggers":6609,"\u002Fnatural-language-processing\u002Fsequences\u002Frnns-and-lstms":6613,"\u002Fnatural-language-processing\u002Ftransformers\u002Ftransformers-and-attention":6617,"\u002Fnatural-language-processing\u002Ftransformers\u002Fthe-transformer-architecture":6621,"\u002Fnatural-language-processing\u002Ftransformers\u002Flarge-language-models":6624,"\u002Fnatural-language-processing\u002Ftransformers\u002Fllm-pretraining-and-scaling":6627,"\u002Fnatural-language-processing\u002Ftransformers\u002Ffine-tuning-and-prompting":6631,"\u002Fnatural-language-processing\u002Ftransformers\u002Fprompting-and-alignment":6635,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-parsing":6639,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcky-scoring-and-evaluation":6644,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdependency-parsing":6648,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fgraph-based-and-neural-dependency-parsing":6652,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fword-senses-and-wsd":6656,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fwsd-in-practice-and-induction":6660,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-roles-and-information-extraction":6664,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Frelations-events-and-templates":6668,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoreference-and-discourse":6672,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcoherence-and-discourse-structure":6676,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Flogical-semantics":6680,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fcompositional-semantics-and-description-logics":6684,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fsemantic-parsing":6688,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fneural-semantic-parsing":6692,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Finformation-extraction":6696,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftimes-events-and-templates":6700,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fdiscourse-coherence":6704,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fentity-based-and-global-coherence":6708,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Fconstituency-grammars":6712,"\u002Fnatural-language-processing\u002Flinguistic-structure\u002Ftreebanks-and-lexicalized-grammars":6716,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation":6720,"\u002Fnatural-language-processing\u002Fapplications\u002Fmachine-translation-decoding-and-evaluation":6724,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering":6728,"\u002Fnatural-language-processing\u002Fapplications\u002Fquestion-answering-knowledge-and-llms":6732,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-and-chatbots":6736,"\u002Fnatural-language-processing\u002Fapplications\u002Fdialogue-systems-and-assistants":6740,"\u002Fnatural-language-processing\u002Fapplications\u002Ftext-summarization":6744,"\u002Fnatural-language-processing\u002Fapplications\u002Fabstractive-summarization-and-evaluation":6748,"\u002Fnatural-language-processing\u002Fspeech\u002Fphonetics":6752,"\u002Fnatural-language-processing\u002Fspeech\u002Facoustic-phonetics":6757,"\u002Fnatural-language-processing\u002Fspeech\u002Fautomatic-speech-recognition":6761,"\u002Fnatural-language-processing\u002Fspeech\u002Fasr-evaluation-and-applications":6765,"\u002Fnatural-language-processing":6769,"\u002Fparticle-physics\u002Ffoundations\u002Fhistorical-overview-particle-zoo":6772,"\u002Fparticle-physics\u002Ffoundations\u002Fparticle-physics-basic-concepts":6776,"\u002Fparticle-physics\u002Ffoundations\u002Ffundamental-interactions-force-carriers":6780,"\u002Fparticle-physics\u002Funits-kinematics\u002Fnatural-units-and-scales":6784,"\u002Fparticle-physics\u002Funits-kinematics\u002Ffour-vectors-invariant-mass":6789,"\u002Fparticle-physics\u002Funits-kinematics\u002Fdecay-scattering-kinematics-mandelstam":6793,"\u002Fparticle-physics\u002Funits-kinematics\u002Fcross-sections-golden-rule":6797,"\u002Fparticle-physics\u002Fsymmetries\u002Fconservation-laws-symmetries":6801,"\u002Fparticle-physics\u002Fsymmetries\u002Fdiscrete-symmetries-cpt":6806,"\u002Fparticle-physics\u002Fsymmetries\u002Fparity-violation-weak":6810,"\u002Fparticle-physics\u002Fsymmetries\u002Fsu2-su3-flavor-symmetry":6814,"\u002Fparticle-physics\u002Fquark-model\u002Feightfold-way-su3":6818,"\u002Fparticle-physics\u002Fquark-model\u002Fmeson-spectroscopy":6823,"\u002Fparticle-physics\u002Fquark-model\u002Fbaryon-spectroscopy":6827,"\u002Fparticle-physics\u002Fquark-model\u002Fcolor-confinement-exotics":6831,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fklein-gordon-equation":6835,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fdirac-equation-spinors":6840,"\u002Fparticle-physics\u002Frelativistic-wave-equations\u002Fantiparticles-hole-theory":6844,"\u002Fparticle-physics\u002Fqed\u002Ffeynman-rules-qed":6848,"\u002Fparticle-physics\u002Fqed\u002Fqed-tree-processes":6853,"\u002Fparticle-physics\u002Fqed\u002Frenormalization-running-coupling":6857,"\u002Fparticle-physics\u002Fqed\u002Felectron-g-2":6861,"\u002Fparticle-physics\u002Fweak-interaction\u002Fva-structure-weak":6865,"\u002Fparticle-physics\u002Fweak-interaction\u002Fw-z-bosons-decays":6870,"\u002Fparticle-physics\u002Fweak-interaction\u002Fckm-matrix":6874,"\u002Fparticle-physics\u002Fweak-interaction\u002Fcp-violation-kaons-b-mesons":6878,"\u002Fparticle-physics\u002Fqcd\u002Fcolor-su3-gluons":6882,"\u002Fparticle-physics\u002Fqcd\u002Fasymptotic-freedom-confinement":6887,"\u002Fparticle-physics\u002Fqcd\u002Fdeep-inelastic-scattering-partons":6891,"\u002Fparticle-physics\u002Fqcd\u002Fjets-hadronization":6895,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Felectroweak-su2-u1":6899,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fspontaneous-symmetry-breaking":6904,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-mechanism":6908,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fhiggs-boson-discovery":6912,"\u002Fparticle-physics\u002Felectroweak-higgs\u002Fstandard-model":6916,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-oscillations":6920,"\u002Fparticle-physics\u002Fneutrinos\u002Fneutrino-mass-pmns":6925,"\u002Fparticle-physics\u002Fneutrinos\u002Fdirac-majorana-experiments":6929,"\u002Fparticle-physics\u002Fexperiment\u002Faccelerators-luminosity":6933,"\u002Fparticle-physics\u002Fexperiment\u002Fdetectors-subsystems":6938,"\u002Fparticle-physics\u002Fexperiment\u002Fhow-discoveries-are-made":6942,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fbeyond-standard-model":6946,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fgrand-unified-theories":6950,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fsupersymmetry":6954,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fhierarchy-problem-naturalness":6958,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fdark-matter-candidates":6962,"\u002Fparticle-physics\u002Fbeyond-standard-model\u002Fmatter-antimatter-open-questions":6966,"\u002Fparticle-physics":6970,"\u002Fastrophysics-cosmology\u002Forientation\u002Fthe-sun-and-stars":6973,"\u002Fastrophysics-cosmology\u002Forientation\u002Fstellar-death-final-states":6978,"\u002Fastrophysics-cosmology\u002Forientation\u002Fgalaxies-and-cosmology":6982,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fmagnitudes-fluxes-and-the-distance-modulus":6986,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fstellar-spectra-and-spectral-classification":6991,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Ftelescopes-and-detectors-across-the-spectrum":6995,"\u002Fastrophysics-cosmology\u002Fobservational-foundations\u002Fthe-cosmic-distance-ladder":6999,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fblackbody-radiation-and-specific-intensity":7003,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fradiative-transfer-and-the-transfer-equation":7008,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fspectral-line-formation-and-broadening":7012,"\u002Fastrophysics-cosmology\u002Fradiation-and-matter\u002Fopacity-and-the-rosseland-mean":7016,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fhydrostatic-equilibrium-and-the-virial-theorem":7020,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equations-of-stellar-structure":7025,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-equation-of-state-and-polytropes":7029,"\u002Fastrophysics-cosmology\u002Fstellar-structure\u002Fthe-standard-solar-model":7033,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fthermonuclear-reaction-rates-and-the-gamow-peak":7037,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhydrogen-burning-pp-chains-and-cno":7042,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fhelium-burning-and-the-triple-alpha-process":7046,"\u002Fastrophysics-cosmology\u002Fnuclear-astrophysics\u002Fadvanced-burning-and-neutron-capture-nucleosynthesis":7050,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fphases-of-the-interstellar-medium":7054,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fmolecular-clouds-and-gravitational-collapse":7059,"\u002Fastrophysics-cosmology\u002Fism-and-star-formation\u002Fprotostars-and-the-pre-main-sequence":7063,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-main-sequence-and-its-structure":7067,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fpost-main-sequence-low-mass-evolution":7072,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fthe-evolution-of-massive-stars":7076,"\u002Fastrophysics-cosmology\u002Fstellar-evolution\u002Fstellar-pulsation-and-the-instability-strip":7080,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fwhite-dwarfs-and-the-chandrasekhar-limit":7084,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fcore-collapse-supernovae":7088,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fthermonuclear-supernovae-type-ia":7092,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fneutron-stars-and-pulsars":7096,"\u002Fastrophysics-cosmology\u002Fstellar-death-and-compact-remnants\u002Fblack-holes-schwarzschild-and-kerr":7100,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fbinary-systems-and-mass-transfer":7104,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Faccreting-compact-objects":7109,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fgravitational-waves-from-inspiraling-binaries":7113,"\u002Fastrophysics-cosmology\u002Fbinaries-and-gravitational-waves\u002Fmultimessenger-astronomy-and-gamma-ray-bursts":7117,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fthe-milky-way":7121,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-morphology-and-classification":7126,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-rotation-curves-and-dark-matter":7130,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Factive-galactic-nuclei-and-supermassive-black-holes":7134,"\u002Fastrophysics-cosmology\u002Fgalaxies\u002Fgalaxy-clusters-and-large-scale-structure":7138,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-expanding-universe-and-hubbles-law":7142,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-frw-metric-and-cosmological-redshift":7147,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fthe-friedmann-equations-and-cosmic-dynamics":7151,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fcosmological-models-and-distances":7154,"\u002Fastrophysics-cosmology\u002Fcosmology-expansion-and-dynamics\u002Fdark-energy-and-the-accelerating-universe":7158,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fthe-thermal-history-of-the-universe":7162,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fbig-bang-nucleosynthesis":7167,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Frecombination-and-the-cosmic-microwave-background":7171,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcmb-anisotropies-and-cosmological-parameters":7175,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fcosmic-inflation":7179,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fstructure-formation-and-the-growth-of-perturbations":7183,"\u002Fastrophysics-cosmology\u002Fthe-hot-big-bang\u002Fdark-matter-dark-energy-and-open-questions":7187,"\u002Fastrophysics-cosmology":7191,"\u002Fcolophon":7194,"\u002F":7197},{"path":2668,"title":2669,"module":5,"summary":2670},"\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":2672,"title":2673,"module":5,"summary":2674},"\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":2676,"title":2677,"module":5,"summary":2678},"\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":2680,"title":2681,"module":5,"summary":2682},"\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":2684,"title":2685,"module":5,"summary":2686},"\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":2688,"title":2689,"module":5,"summary":2690},"\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":2692,"title":2693,"module":2694,"summary":2695},"\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":2697,"title":2698,"module":2694,"summary":2699},"\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":2701,"title":2702,"module":2694,"summary":2703},"\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":2705,"title":2706,"module":2694,"summary":2707},"\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":2709,"title":2710,"module":2711,"summary":2712},"\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":2714,"title":2715,"module":2711,"summary":2716},"\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":2718,"title":2719,"module":2711,"summary":2720},"\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":2722,"title":2723,"module":2711,"summary":2724},"\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":2726,"title":2727,"module":2728,"summary":2729},"\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":2731,"title":2732,"module":2728,"summary":2733},"\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":2735,"title":2736,"module":2728,"summary":2737},"\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":2739,"title":2740,"module":2728,"summary":2741},"\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":2743,"title":2744,"module":2728,"summary":2745},"\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":2747,"title":2748,"module":2728,"summary":2749},"\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":2751,"title":2752,"module":2728,"summary":2753},"\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":2755,"title":2756,"module":2728,"summary":2757},"\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":2759,"title":2760,"module":2728,"summary":2761},"\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":2763,"title":2764,"module":2728,"summary":2765},"\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":2767,"title":2768,"module":2728,"summary":2769},"\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":2771,"title":2772,"module":2728,"summary":2773},"\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":2775,"title":2776,"module":2777,"summary":2778},"\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":2780,"title":2781,"module":2777,"summary":2782},"\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":2784,"title":2785,"module":2777,"summary":2786},"\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":2788,"title":2789,"module":2777,"summary":2790},"\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":2792,"title":2793,"module":2777,"summary":2794},"\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":2796,"title":2797,"module":2777,"summary":2798},"\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":2800,"title":2801,"module":2777,"summary":2802},"\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":2804,"title":2805,"module":2777,"summary":2806},"\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":2808,"title":2809,"module":2810,"summary":2811},"\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":2813,"title":2814,"module":2810,"summary":2815},"\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":2817,"title":2818,"module":2810,"summary":2819},"\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":2821,"title":2822,"module":2810,"summary":2823},"\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":2825,"title":2826,"module":2810,"summary":2827},"\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":2829,"title":2830,"module":2810,"summary":2831},"\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":2833,"title":2834,"module":2810,"summary":2835},"\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":2837,"title":2838,"module":2810,"summary":2839},"\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":2841,"title":2842,"module":2810,"summary":2843},"\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":2845,"title":2846,"module":2810,"summary":2847},"\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":2849,"title":2850,"module":2810,"summary":2851},"\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":2853,"title":2854,"module":2810,"summary":2855},"\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":2857,"title":2858,"module":2810,"summary":2859},"\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":2861,"title":2862,"module":2810,"summary":2863},"\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":2865,"title":2866,"module":2867,"summary":2868},"\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":2870,"title":2871,"module":2867,"summary":2872},"\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":2874,"title":2875,"module":2867,"summary":2876},"\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":2878,"title":2879,"module":2867,"summary":2880},"\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":2882,"title":2883,"module":2867,"summary":2884},"\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":2886,"title":2887,"module":2888,"summary":2889},"\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":2891,"title":2892,"module":2888,"summary":2893},"\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":2895,"title":2896,"module":2888,"summary":2897},"\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":2899,"title":2900,"module":2888,"summary":2901},"\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":2903,"title":2904,"module":2888,"summary":2905},"\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":2907,"title":2908,"module":2888,"summary":2909},"\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":2911,"title":2912,"module":2888,"summary":2913},"\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":2915,"title":2916,"module":2888,"summary":2917},"\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":2919,"title":2920,"module":2888,"summary":2921},"\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":2923,"title":2924,"module":2888,"summary":2925},"\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":2927,"title":2928,"module":2888,"summary":2929},"\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":2931,"title":2932,"module":2933,"summary":2934},"\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":2936,"title":2937,"module":2933,"summary":2938},"\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":2940,"title":2941,"module":2933,"summary":2942},"\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":2944,"title":2945,"module":2933,"summary":2946},"\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":2948,"title":2949,"module":2950,"summary":2951},"\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":2953,"title":2954,"module":2950,"summary":2955},"\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":2957,"title":2958,"module":2950,"summary":2959},"\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":2961,"title":2962,"module":2950,"summary":2963},"\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":2965,"title":2966,"module":2950,"summary":2967},"\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":2969,"title":2970,"module":2950,"summary":2971},"\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":2973,"title":2974,"module":2950,"summary":2975},"\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":2977,"title":2978,"module":2979,"summary":2980},"\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":2982,"title":2983,"module":2979,"summary":2984},"\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":2986,"title":2987,"module":2979,"summary":2988},"\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":2990,"title":2991,"module":2979,"summary":2992},"\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":2994,"title":2995,"module":2996,"summary":2997},"\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":2999,"title":3000,"module":2996,"summary":3001},"\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":3003,"title":3004,"module":2996,"summary":3005},"\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":3007,"title":3008,"module":2996,"summary":3009},"\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":3011,"title":3012,"module":306,"summary":306},"\u002Falgorithms","Algorithms",{"path":3014,"title":3015,"module":3016,"summary":3017},"\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":3019,"title":3020,"module":3016,"summary":3021},"\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":3023,"title":3024,"module":3016,"summary":3025},"\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":3027,"title":3028,"module":3016,"summary":3029},"\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":3031,"title":3032,"module":3033,"summary":3034},"\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":3036,"title":3037,"module":3033,"summary":3038},"\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":3040,"title":3041,"module":3033,"summary":3042},"\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":3044,"title":3045,"module":3033,"summary":3046},"\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":3048,"title":3049,"module":3050,"summary":3051},"\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":3053,"title":3054,"module":3050,"summary":3055},"\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":3057,"title":3058,"module":3050,"summary":3059},"\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":3061,"title":3062,"module":3050,"summary":3063},"\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":3065,"title":3066,"module":3067,"summary":3068},"\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":3070,"title":3071,"module":3067,"summary":3072},"\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":3074,"title":3075,"module":3067,"summary":3076},"\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":3078,"title":3079,"module":3080,"summary":3081},"\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":3083,"title":3084,"module":3080,"summary":3085},"\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":3087,"title":3088,"module":3080,"summary":3089},"\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":3091,"title":3092,"module":3093,"summary":3094},"\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":3096,"title":3097,"module":3093,"summary":3098},"\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":3100,"title":3101,"module":3093,"summary":3102},"\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":3104,"title":3105,"module":3106,"summary":3107},"\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":3109,"title":3110,"module":3106,"summary":3111},"\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":3113,"title":3114,"module":3106,"summary":3115},"\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":3117,"title":3118,"module":3106,"summary":3119},"\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":3121,"title":3122,"module":3123,"summary":3124},"\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":3126,"title":3127,"module":3123,"summary":3128},"\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":3130,"title":3131,"module":3123,"summary":3132},"\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":3134,"title":3135,"module":3136,"summary":3137},"\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":3139,"title":3140,"module":3136,"summary":3141},"\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":3143,"title":3144,"module":3136,"summary":3145},"\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":3147,"title":3148,"module":3136,"summary":3149},"\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":3151,"title":3152,"module":3136,"summary":3153},"\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":3155,"title":3156,"module":3157,"summary":3158},"\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":3160,"title":3161,"module":3157,"summary":3162},"\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":3164,"title":3165,"module":3157,"summary":3166},"\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":3168,"title":3169,"module":3157,"summary":3170},"\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":3172,"title":3173,"module":3157,"summary":3174},"\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":3176,"title":3177,"module":3178,"summary":3179},"\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":3181,"title":3178,"module":3178,"summary":3182},"\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":3184,"title":3185,"module":3178,"summary":3186},"\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":3188,"title":3189,"module":3178,"summary":3190},"\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":3192,"title":3193,"module":3178,"summary":3194},"\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":3196,"title":3197,"module":3198,"summary":3199},"\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":3201,"title":3202,"module":3198,"summary":3203},"\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":3205,"title":3206,"module":3198,"summary":3207},"\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":3209,"title":3210,"module":3198,"summary":3211},"\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":3213,"title":3214,"module":3198,"summary":3215},"\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":3217,"title":3218,"module":3198,"summary":3219},"\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":3221,"title":3222,"module":306,"summary":306},"\u002Fcalculus","Calculus",{"path":3224,"title":3225,"module":5,"summary":3226},"\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":3228,"title":3229,"module":5,"summary":3230},"\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":3232,"title":3233,"module":3234,"summary":3235},"\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":3237,"title":3238,"module":3234,"summary":3239},"\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":3241,"title":3242,"module":3234,"summary":3243},"\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":3245,"title":3246,"module":3234,"summary":3247},"\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":3249,"title":3250,"module":3234,"summary":3251},"\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":3253,"title":3254,"module":3255,"summary":3256},"\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":3258,"title":3259,"module":3255,"summary":3260},"\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":3262,"title":3263,"module":3255,"summary":3264},"\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":3266,"title":3267,"module":3255,"summary":3268},"\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":3270,"title":3271,"module":3255,"summary":3272},"\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":3274,"title":3275,"module":3276,"summary":3277},"\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":3279,"title":3280,"module":3276,"summary":3281},"\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":3283,"title":3284,"module":3276,"summary":3285},"\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":3287,"title":3288,"module":3276,"summary":3289},"\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":3291,"title":3292,"module":3276,"summary":3293},"\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":3295,"title":3296,"module":3297,"summary":3298},"\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":3300,"title":3301,"module":3297,"summary":3302},"\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":3304,"title":3305,"module":3297,"summary":3306},"\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":3308,"title":3309,"module":3310,"summary":3311},"\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":3313,"title":3314,"module":3310,"summary":3315},"\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":3317,"title":3318,"module":3310,"summary":3319},"\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":3321,"title":3322,"module":3310,"summary":3323},"\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":3325,"title":3326,"module":3310,"summary":3327},"\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":3329,"title":3330,"module":3310,"summary":3331},"\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":3333,"title":3334,"module":3335,"summary":3336},"\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":3338,"title":3339,"module":3335,"summary":3340},"\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":3342,"title":3343,"module":3335,"summary":3344},"\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":3346,"title":3347,"module":3335,"summary":3348},"\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":3350,"title":3351,"module":3335,"summary":3352},"\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":3354,"title":3355,"module":3335,"summary":3356},"\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":3358,"title":3359,"module":3335,"summary":3360},"\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":3362,"title":3363,"module":3364,"summary":3365},"\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":3367,"title":3368,"module":3364,"summary":3369},"\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":3371,"title":3372,"module":3364,"summary":3373},"\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":3375,"title":3376,"module":3364,"summary":3377},"\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":3379,"title":3380,"module":3364,"summary":3381},"\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":3383,"title":3384,"module":3364,"summary":3385},"\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":3387,"title":3388,"module":3364,"summary":3389},"\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":3391,"title":3392,"module":3364,"summary":3393},"\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":3395,"title":3396,"module":3364,"summary":3397},"\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":3399,"title":3400,"module":3364,"summary":3401},"\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":3403,"title":3404,"module":3364,"summary":3405},"\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":3407,"title":3408,"module":3364,"summary":3409},"\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":3411,"title":3412,"module":3413,"summary":3414},"\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":3416,"title":3417,"module":3413,"summary":3418},"\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":3420,"title":3421,"module":3413,"summary":3422},"\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":3424,"title":3425,"module":3413,"summary":3426},"\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":3428,"title":3429,"module":3413,"summary":3430},"\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":3432,"title":3433,"module":3413,"summary":3434},"\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":3436,"title":3437,"module":306,"summary":306},"\u002Fmechanics","Mechanics & Dynamics",{"path":3439,"title":3440,"module":3441,"summary":3442},"\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":3444,"title":3445,"module":3441,"summary":3446},"\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":3448,"title":3449,"module":3441,"summary":3450},"\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":3452,"title":3453,"module":3441,"summary":3454},"\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":3456,"title":3457,"module":3441,"summary":3458},"\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":3460,"title":3461,"module":3462,"summary":3463},"\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":3465,"title":3466,"module":3462,"summary":3467},"\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":3469,"title":3470,"module":3471,"summary":3472},"\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":3474,"title":3475,"module":3471,"summary":3476},"\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":3478,"title":3479,"module":3471,"summary":3480},"\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":3482,"title":3483,"module":3471,"summary":3484},"\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":3486,"title":3487,"module":3471,"summary":3488},"\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":3490,"title":3491,"module":3492,"summary":3493},"\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":3495,"title":3496,"module":3492,"summary":3497},"\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":3499,"title":3500,"module":3492,"summary":3501},"\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":3503,"title":3504,"module":3492,"summary":3505},"\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":3507,"title":3508,"module":3509,"summary":3510},"\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":3512,"title":3513,"module":3509,"summary":3514},"\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":3516,"title":3517,"module":3509,"summary":3518},"\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":3520,"title":3521,"module":3522,"summary":3523},"\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":3525,"title":3526,"module":3522,"summary":3527},"\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":3529,"title":3530,"module":3522,"summary":3531},"\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":3533,"title":3534,"module":3522,"summary":3535},"\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":3537,"title":3538,"module":3522,"summary":3539},"\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":3541,"title":3542,"module":3543,"summary":3544},"\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":3546,"title":3547,"module":3543,"summary":3548},"\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":3550,"title":3551,"module":3543,"summary":3552},"\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":3554,"title":3555,"module":3543,"summary":3556},"\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":3558,"title":3559,"module":3543,"summary":3560},"\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":3562,"title":3563,"module":3543,"summary":3564},"\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":3566,"title":3567,"module":3568,"summary":3569},"\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":3571,"title":3572,"module":3568,"summary":3573},"\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":3575,"title":3576,"module":3568,"summary":3577},"\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":3579,"title":3580,"module":3568,"summary":3581},"\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":3583,"title":3584,"module":3568,"summary":3585},"\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":3587,"title":3588,"module":3568,"summary":3589},"\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":3591,"title":3592,"module":3568,"summary":3593},"\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":3595,"title":3596,"module":3568,"summary":3597},"\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":3599,"title":3600,"module":3601,"summary":3602},"\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":3604,"title":3605,"module":3601,"summary":3606},"\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":3608,"title":3609,"module":3601,"summary":3610},"\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":3612,"title":3613,"module":3601,"summary":3614},"\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":3616,"title":3617,"module":3601,"summary":3618},"\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":3620,"title":3621,"module":3622,"summary":3623},"\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":3625,"title":3626,"module":3622,"summary":3627},"\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":3629,"title":3630,"module":3622,"summary":3631},"\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":3633,"title":3634,"module":3622,"summary":3635},"\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":3637,"title":3638,"module":3622,"summary":3639},"\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":3641,"title":3642,"module":3643,"summary":3644},"\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":3646,"title":3647,"module":3643,"summary":3648},"\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":3650,"title":3651,"module":3643,"summary":3652},"\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":3654,"title":3655,"module":306,"summary":306},"\u002Felectricity-and-magnetism","Electricity & Magnetism",{"path":3657,"title":3658,"module":3659,"summary":3660},"\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":3662,"title":3663,"module":3659,"summary":3664},"\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":3666,"title":3667,"module":3659,"summary":3668},"\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":3670,"title":3671,"module":3659,"summary":3672},"\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":3674,"title":3675,"module":3659,"summary":3676},"\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":3678,"title":3679,"module":3680,"summary":3681},"\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":3683,"title":3684,"module":3680,"summary":3685},"\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":3687,"title":3688,"module":3680,"summary":3689},"\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":3691,"title":3692,"module":3680,"summary":3693},"\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":3695,"title":3696,"module":3680,"summary":3697},"\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":3699,"title":3700,"module":3701,"summary":3702},"\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":3704,"title":3705,"module":3701,"summary":3706},"\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":3708,"title":3709,"module":3701,"summary":3710},"\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":3712,"title":3713,"module":3714,"summary":3715},"\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":3717,"title":3718,"module":3714,"summary":3719},"\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":3721,"title":3722,"module":3714,"summary":3723},"\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":3725,"title":3726,"module":3714,"summary":3727},"\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":3729,"title":3730,"module":3714,"summary":3731},"\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":3733,"title":3734,"module":3714,"summary":3735},"\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":3737,"title":3738,"module":3714,"summary":3739},"\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":3741,"title":3742,"module":3743,"summary":3744},"\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":3746,"title":3747,"module":3743,"summary":3748},"\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":3750,"title":3751,"module":3743,"summary":3752},"\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":3754,"title":3755,"module":3743,"summary":3756},"\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":3758,"title":3759,"module":3743,"summary":3760},"\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":3762,"title":3763,"module":3743,"summary":3764},"\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":3766,"title":3767,"module":3743,"summary":3768},"\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":3770,"title":3771,"module":3772,"summary":3773},"\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":3775,"title":3776,"module":3772,"summary":3777},"\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":3779,"title":3780,"module":3772,"summary":3781},"\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":3783,"title":3784,"module":3772,"summary":3785},"\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":3787,"title":3788,"module":3772,"summary":3789},"\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":3791,"title":3792,"module":3772,"summary":3793},"\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":3795,"title":3796,"module":3797,"summary":3798},"\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":3800,"title":3801,"module":3797,"summary":3802},"\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":3804,"title":3805,"module":3797,"summary":3806},"\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":3808,"title":3809,"module":3797,"summary":3810},"\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":3812,"title":3813,"module":3797,"summary":3814},"\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":3816,"title":3817,"module":3818,"summary":3819},"\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":3821,"title":3822,"module":3818,"summary":3823},"\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":3825,"title":3826,"module":3818,"summary":3827},"\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":3829,"title":3830,"module":3818,"summary":3831},"\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":3833,"title":3834,"module":3818,"summary":3835},"\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":3837,"title":3838,"module":3818,"summary":3839},"\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":3841,"title":3842,"module":3843,"summary":3844},"\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":3846,"title":3847,"module":3843,"summary":3848},"\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":3850,"title":3851,"module":3843,"summary":3852},"\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":3854,"title":3855,"module":3843,"summary":3856},"\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":3858,"title":3859,"module":3843,"summary":3860},"\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":3862,"title":3863,"module":306,"summary":306},"\u002Flinear-algebra","Linear Algebra",{"path":3865,"title":3866,"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":3917,"title":3918,"module":306,"summary":306},"\u002Fcomputer-architecture","Computer Architecture",{"path":3920,"title":3921,"module":5,"summary":3922},"\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":3924,"title":3925,"module":5,"summary":3926},"\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":3928,"title":3929,"module":3930,"summary":3931},"\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":3933,"title":3934,"module":3930,"summary":3935},"\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":3937,"title":3938,"module":3930,"summary":3939},"\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":3941,"title":3942,"module":3930,"summary":3943},"\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":3945,"title":3946,"module":3930,"summary":3947},"\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":3949,"title":3950,"module":3930,"summary":3951},"\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":3953,"title":3954,"module":3955,"summary":3956},"\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":3958,"title":3959,"module":3955,"summary":3960},"\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":3962,"title":3963,"module":3955,"summary":3964},"\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":3966,"title":3967,"module":3955,"summary":3968},"\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":3970,"title":3971,"module":3955,"summary":3972},"\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":3974,"title":3975,"module":3955,"summary":3976},"\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":3978,"title":3979,"module":3980,"summary":3981},"\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":3983,"title":3984,"module":3980,"summary":3985},"\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":3987,"title":3988,"module":3980,"summary":3989},"\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":3991,"title":3992,"module":3993,"summary":3994},"\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":3996,"title":3997,"module":3993,"summary":3998},"\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":4000,"title":4001,"module":4002,"summary":4003},"\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":4005,"title":4006,"module":4002,"summary":4007},"\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":4009,"title":4010,"module":4002,"summary":4011},"\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":4013,"title":4014,"module":4015,"summary":4016},"\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":4018,"title":4019,"module":4015,"summary":4020},"\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":4022,"title":4023,"module":4024,"summary":4025},"\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":4027,"title":4028,"module":4024,"summary":4029},"\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":4031,"title":4032,"module":4024,"summary":4033},"\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":4035,"title":4036,"module":4037,"summary":4038},"\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":4040,"title":4041,"module":4037,"summary":4042},"\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":4044,"title":4045,"module":4037,"summary":4046},"\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":4048,"title":4049,"module":4050,"summary":4051},"\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":4053,"title":4054,"module":4050,"summary":4055},"\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":4057,"title":4058,"module":306,"summary":306},"\u002Fdifferential-equations","Differential Equations",{"path":4060,"title":4061,"module":4062,"summary":4063},"\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":4065,"title":4066,"module":4062,"summary":4067},"\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":4069,"title":4070,"module":4062,"summary":4071},"\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":4073,"title":4074,"module":4062,"summary":4075},"\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":4077,"title":4078,"module":4062,"summary":4079},"\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":4081,"title":4082,"module":4083,"summary":4084},"\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":4086,"title":4087,"module":4083,"summary":4088},"\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":4090,"title":4091,"module":4083,"summary":4092},"\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":4094,"title":4095,"module":4083,"summary":4096},"\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":4098,"title":4099,"module":4100,"summary":4101},"\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":4103,"title":4104,"module":4100,"summary":4105},"\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":4107,"title":4108,"module":4100,"summary":4109},"\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":4111,"title":4112,"module":4100,"summary":4113},"\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":4115,"title":4116,"module":4117,"summary":4118},"\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":4120,"title":4121,"module":4117,"summary":4122},"\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":4124,"title":4125,"module":4117,"summary":4126},"\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":4128,"title":4129,"module":4117,"summary":4130},"\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":4132,"title":4133,"module":4134,"summary":4135},"\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":4137,"title":4138,"module":4134,"summary":4139},"\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":4141,"title":4142,"module":4134,"summary":4143},"\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":4145,"title":4146,"module":4134,"summary":4147},"\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":4149,"title":4150,"module":4134,"summary":4151},"\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":4153,"title":4154,"module":4134,"summary":4155},"\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":4157,"title":4158,"module":4159,"summary":4160},"\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":4162,"title":4163,"module":4159,"summary":4164},"\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":4166,"title":4167,"module":4159,"summary":4168},"\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":4170,"title":4171,"module":4172,"summary":4173},"\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":4175,"title":4176,"module":4172,"summary":4177},"\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":4179,"title":4180,"module":4172,"summary":4181},"\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":4183,"title":4184,"module":4172,"summary":4185},"\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":4187,"title":4188,"module":4189,"summary":4190},"\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":4192,"title":4193,"module":4189,"summary":4194},"\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":4196,"title":4197,"module":4189,"summary":4198},"\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":4200,"title":4201,"module":4202,"summary":4203},"\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":4205,"title":4206,"module":4202,"summary":4207},"\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":4209,"title":4210,"module":4202,"summary":4211},"\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":4213,"title":4214,"module":4215,"summary":4216},"\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":4218,"title":4219,"module":4215,"summary":4220},"\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":4222,"title":4223,"module":306,"summary":306},"\u002Frelativity","Relativity",{"path":4225,"title":4226,"module":306,"summary":306},"\u002Fphysical-computing","Physical Computing",{"path":4228,"title":4229,"module":4230,"summary":4231},"\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":4233,"title":4234,"module":4230,"summary":4235},"\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":4237,"title":4238,"module":4230,"summary":4239},"\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":4241,"title":4242,"module":4230,"summary":4243},"\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":4245,"title":4246,"module":4247,"summary":4248},"\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":4250,"title":4251,"module":4247,"summary":4252},"\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":4254,"title":4255,"module":4247,"summary":4256},"\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":4258,"title":4259,"module":4260,"summary":4261},"\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":4263,"title":4264,"module":4260,"summary":4265},"\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":4267,"title":4268,"module":4260,"summary":4269},"\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":4271,"title":4272,"module":4260,"summary":4273},"\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":4275,"title":4276,"module":4260,"summary":4277},"\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":4279,"title":4280,"module":4260,"summary":4281},"\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":4283,"title":4284,"module":4285,"summary":4286},"\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":4288,"title":4289,"module":4285,"summary":4290},"\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":4292,"title":4293,"module":4285,"summary":4294},"\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":4296,"title":4297,"module":4285,"summary":4298},"\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":4300,"title":4301,"module":4285,"summary":4302},"\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":4304,"title":4305,"module":4285,"summary":4306},"\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":4308,"title":4309,"module":4310,"summary":4311},"\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":4313,"title":4314,"module":4310,"summary":4315},"\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":4317,"title":4318,"module":4310,"summary":4319},"\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":4321,"title":4322,"module":4310,"summary":4323},"\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":4325,"title":4326,"module":3322,"summary":4327},"\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":4329,"title":4330,"module":3322,"summary":4331},"\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":4333,"title":4334,"module":3322,"summary":4335},"\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":4337,"title":4338,"module":4339,"summary":4340},"\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":4342,"title":4343,"module":4339,"summary":4344},"\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":4346,"title":4347,"module":4339,"summary":4348},"\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":4350,"title":4351,"module":4352,"summary":4353},"\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":4355,"title":4356,"module":4352,"summary":4357},"\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":4359,"title":4360,"module":4352,"summary":4361},"\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":4363,"title":4364,"module":4365,"summary":4366},"\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":4368,"title":4369,"module":4365,"summary":4370},"\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":4372,"title":4373,"module":4374,"summary":4375},"\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":4377,"title":4378,"module":4374,"summary":4379},"\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":4381,"title":4382,"module":4374,"summary":4383},"\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":4385,"title":4386,"module":4374,"summary":4387},"\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":4389,"title":4390,"module":4374,"summary":4391},"\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":4393,"title":4394,"module":306,"summary":306},"\u002Fquantum-mechanics","Quantum Mechanics",{"path":4396,"title":4397,"module":4398,"summary":4399},"\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":4401,"title":4402,"module":4398,"summary":4403},"\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":4405,"title":4406,"module":4398,"summary":4407},"\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":4409,"title":4410,"module":4398,"summary":4411},"\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":4413,"title":4414,"module":4415,"summary":4416},"\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":4418,"title":4419,"module":4415,"summary":4420},"\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":4422,"title":4423,"module":4415,"summary":4424},"\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":4426,"title":4427,"module":4415,"summary":4428},"\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":4430,"title":4431,"module":4415,"summary":4432},"\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":4434,"title":4435,"module":4415,"summary":4436},"\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":4438,"title":4439,"module":4440,"summary":4441},"\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":4443,"title":4444,"module":4440,"summary":4445},"\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":4447,"title":4448,"module":4440,"summary":4449},"\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":4451,"title":4452,"module":4440,"summary":4453},"\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":4455,"title":4456,"module":4440,"summary":4457},"\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":4459,"title":4460,"module":3016,"summary":4461},"\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":4463,"title":4464,"module":3016,"summary":4465},"\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":4467,"title":4468,"module":3016,"summary":4469},"\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":4471,"title":4472,"module":3016,"summary":4473},"\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":4475,"title":4476,"module":3016,"summary":4477},"\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":4479,"title":4480,"module":3016,"summary":4481},"\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":4483,"title":4484,"module":4485,"summary":4486},"\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":4488,"title":4489,"module":4485,"summary":4490},"\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":4492,"title":4493,"module":4485,"summary":4494},"\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":4496,"title":4497,"module":4485,"summary":4498},"\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":4500,"title":4501,"module":4502,"summary":4503},"\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":4505,"title":4506,"module":4502,"summary":4507},"\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":4509,"title":4510,"module":4502,"summary":4511},"\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":4513,"title":3071,"module":4502,"summary":4514},"\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":4516,"title":4517,"module":4502,"summary":4518},"\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":4520,"title":4521,"module":4522,"summary":4523},"\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":4525,"title":4526,"module":4522,"summary":4527},"\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":4529,"title":4530,"module":4522,"summary":4531},"\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":4533,"title":4534,"module":4522,"summary":4535},"\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":4537,"title":4538,"module":4539,"summary":4540},"\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":4542,"title":4543,"module":4539,"summary":4544},"\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":4546,"title":4547,"module":4539,"summary":4548},"\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":4550,"title":4551,"module":4539,"summary":4552},"\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":4554,"title":4555,"module":4539,"summary":4556},"\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":4558,"title":4559,"module":306,"summary":306},"\u002Freal-analysis","Real Analysis",{"path":4561,"title":4562,"module":5,"summary":4563},"\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":4565,"title":4566,"module":5,"summary":4567},"\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":4569,"title":4570,"module":4571,"summary":4572},"\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":4574,"title":4575,"module":4571,"summary":4576},"\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":4578,"title":4579,"module":4571,"summary":4580},"\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":4582,"title":4583,"module":4571,"summary":4584},"\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":4586,"title":4587,"module":4588,"summary":4589},"\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":4591,"title":4592,"module":4588,"summary":4593},"\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":4595,"title":4596,"module":4588,"summary":4597},"\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":4599,"title":4600,"module":4588,"summary":4601},"\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":4603,"title":4604,"module":4588,"summary":4605},"\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":4607,"title":4608,"module":4588,"summary":4609},"\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":4611,"title":4612,"module":4613,"summary":4614},"\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":4616,"title":4617,"module":4613,"summary":4618},"\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":4620,"title":4621,"module":4613,"summary":4622},"\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":4624,"title":4625,"module":4613,"summary":4626},"\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":4628,"title":4629,"module":4630,"summary":4631},"\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":4633,"title":4634,"module":4630,"summary":4635},"\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":4637,"title":4638,"module":4630,"summary":4639},"\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":4641,"title":4642,"module":4630,"summary":4643},"\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":4645,"title":4646,"module":4647,"summary":4648},"\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":4650,"title":4651,"module":4647,"summary":4652},"\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":4654,"title":4655,"module":4647,"summary":4656},"\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":4658,"title":4659,"module":4660,"summary":4661},"\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":4663,"title":4664,"module":4660,"summary":4665},"\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":4667,"title":4668,"module":4660,"summary":4669},"\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":4671,"title":4672,"module":4660,"summary":4673},"\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":4675,"title":4676,"module":4677,"summary":4678},"\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":4680,"title":4681,"module":4677,"summary":4682},"\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":4684,"title":4685,"module":4677,"summary":4686},"\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":4688,"title":4689,"module":4677,"summary":4690},"\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":4692,"title":4693,"module":4694,"summary":4695},"\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":4697,"title":4698,"module":4694,"summary":4699},"\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":4701,"title":4702,"module":4694,"summary":4703},"\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":4705,"title":4706,"module":4707,"summary":4708},"\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":4710,"title":4711,"module":4707,"summary":4712},"\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":4714,"title":4715,"module":4707,"summary":4716},"\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":4718,"title":4719,"module":4707,"summary":4720},"\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":4722,"title":4723,"module":4724,"summary":4725},"\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":4727,"title":4728,"module":4724,"summary":4729},"\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":4731,"title":4732,"module":4724,"summary":4733},"\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":4735,"title":4736,"module":4724,"summary":4737},"\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":4739,"title":4740,"module":4724,"summary":4741},"\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":4743,"title":4744,"module":4745,"summary":4746},"\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":4748,"title":4749,"module":4745,"summary":4750},"\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":4752,"title":4753,"module":306,"summary":306},"\u002Fabstract-algebra","Abstract Algebra",{"path":4755,"title":4756,"module":4757,"summary":4758},"\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":4760,"title":4761,"module":4757,"summary":4762},"\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":4764,"title":4765,"module":4757,"summary":4766},"\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":4768,"title":4769,"module":4757,"summary":4770},"\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":4772,"title":4773,"module":4757,"summary":4774},"\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":4776,"title":4777,"module":4778,"summary":4779},"\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":4781,"title":4782,"module":4778,"summary":4783},"\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":4785,"title":4786,"module":4778,"summary":4787},"\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":4789,"title":4790,"module":4778,"summary":4791},"\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":4793,"title":4794,"module":4778,"summary":4795},"\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":4797,"title":4798,"module":4778,"summary":4799},"\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":4801,"title":4802,"module":4778,"summary":4803},"\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":4805,"title":4806,"module":4807,"summary":4808},"\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":4810,"title":4811,"module":4807,"summary":4812},"\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":4814,"title":4815,"module":4807,"summary":4816},"\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":4818,"title":4819,"module":4807,"summary":4820},"\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":4822,"title":4823,"module":4824,"summary":4825},"\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":4827,"title":4828,"module":4824,"summary":4829},"\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":4831,"title":4832,"module":4824,"summary":4833},"\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":4835,"title":4836,"module":4837,"summary":4838},"\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":4840,"title":4841,"module":4837,"summary":4842},"\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":4844,"title":4845,"module":4837,"summary":4846},"\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":4848,"title":4849,"module":4837,"summary":4850},"\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":4852,"title":4853,"module":4837,"summary":4854},"\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":4856,"title":4857,"module":4837,"summary":4858},"\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":4860,"title":4861,"module":4862,"summary":4863},"\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":4865,"title":4866,"module":4862,"summary":4867},"\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":4869,"title":4870,"module":4862,"summary":4871},"\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":4873,"title":4874,"module":4875,"summary":4876},"\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":4878,"title":4879,"module":4875,"summary":4880},"\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":4882,"title":4883,"module":4875,"summary":4884},"\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":4886,"title":4887,"module":4875,"summary":4888},"\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":4890,"title":4891,"module":4892,"summary":4893},"\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":4895,"title":4896,"module":4892,"summary":4897},"\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":4899,"title":4900,"module":4892,"summary":4901},"\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":4903,"title":4904,"module":4905,"summary":4906},"\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":4908,"title":4909,"module":4905,"summary":4910},"\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":4912,"title":4913,"module":4905,"summary":4914},"\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":4916,"title":4917,"module":4905,"summary":4918},"\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":4920,"title":4921,"module":306,"summary":306},"\u002Fatomic-physics","Atomic Physics",{"path":4923,"title":4924,"module":306,"summary":306},"\u002Fdatabases","Databases",{"path":4926,"title":4927,"module":5,"summary":4928},"\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":4930,"title":4931,"module":5,"summary":4932},"\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":4934,"title":4935,"module":5,"summary":4936},"\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":4938,"title":4939,"module":5,"summary":4940},"\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":4942,"title":4943,"module":5,"summary":4944},"\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":4946,"title":4947,"module":5,"summary":4948},"\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":4950,"title":4951,"module":4952,"summary":4953},"\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":4955,"title":4956,"module":4952,"summary":4957},"\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":4959,"title":4960,"module":4952,"summary":4961},"\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":4963,"title":4964,"module":4965,"summary":4966},"\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":4968,"title":4969,"module":4965,"summary":4970},"\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":4972,"title":4973,"module":4965,"summary":4974},"\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":4976,"title":4977,"module":4978,"summary":4979},"\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":4981,"title":4982,"module":4978,"summary":4983},"\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":4985,"title":4986,"module":4978,"summary":4987},"\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":4989,"title":4990,"module":4978,"summary":4991},"\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":4993,"title":4994,"module":4978,"summary":4995},"\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":4997,"title":4998,"module":4999,"summary":5000},"\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":5002,"title":5003,"module":4999,"summary":5004},"\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":5006,"title":5007,"module":4999,"summary":5008},"\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":5010,"title":5011,"module":4999,"summary":5012},"\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":5014,"title":5015,"module":5016,"summary":5017},"\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":5019,"title":5020,"module":5016,"summary":5021},"\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":5023,"title":5024,"module":5016,"summary":5025},"\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":5027,"title":5028,"module":5016,"summary":5029},"\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":5031,"title":5032,"module":5033,"summary":5034},"\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":5036,"title":5037,"module":5033,"summary":5038},"\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":5040,"title":5041,"module":5033,"summary":5042},"\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":5044,"title":5045,"module":5033,"summary":5046},"\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":5048,"title":5049,"module":5050,"summary":5051},"\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":5053,"title":5054,"module":5050,"summary":5055},"\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":5057,"title":5058,"module":5050,"summary":5059},"\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":5061,"title":5062,"module":306,"summary":306},"\u002Fcategory-theory","Category Theory",{"path":5064,"title":3863,"module":5065,"summary":5066},"\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":5068,"title":5069,"module":5065,"summary":5070},"\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":5072,"title":5073,"module":5065,"summary":5074},"\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":5076,"title":3222,"module":5065,"summary":5077},"\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":5079,"title":5080,"module":5,"summary":5081},"\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":5083,"title":5084,"module":5,"summary":5085},"\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":5087,"title":5088,"module":5,"summary":5089},"\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":5091,"title":5092,"module":5093,"summary":5094},"\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":5096,"title":5097,"module":5093,"summary":5098},"\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":5100,"title":5101,"module":5093,"summary":5102},"\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":5104,"title":5105,"module":5093,"summary":5106},"\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":5108,"title":5109,"module":5093,"summary":5110},"\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":5112,"title":5113,"module":5114,"summary":5115},"\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":5117,"title":5118,"module":5114,"summary":5119},"\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":5121,"title":5122,"module":5114,"summary":5123},"\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":5125,"title":5126,"module":5114,"summary":5127},"\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":5129,"title":5130,"module":5114,"summary":5131},"\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":5133,"title":5134,"module":5135,"summary":5136},"\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":5138,"title":5139,"module":5135,"summary":5140},"\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":5142,"title":5143,"module":5135,"summary":5144},"\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":5146,"title":5147,"module":5135,"summary":5148},"\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":5150,"title":5151,"module":5152,"summary":5153},"\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":5155,"title":5156,"module":5152,"summary":5157},"\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":5159,"title":5160,"module":5152,"summary":5161},"\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":5163,"title":5164,"module":5152,"summary":5165},"\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":5167,"title":5168,"module":5152,"summary":5169},"\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":5171,"title":5172,"module":5152,"summary":5173},"\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":5175,"title":5176,"module":5152,"summary":5177},"\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":5179,"title":5180,"module":5152,"summary":5181},"\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":5183,"title":5184,"module":5152,"summary":5185},"\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":5187,"title":5188,"module":5189,"summary":5190},"\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":5192,"title":5193,"module":5189,"summary":5194},"\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":5196,"title":5197,"module":5189,"summary":5198},"\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":5200,"title":5201,"module":5189,"summary":5202},"\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":5204,"title":5205,"module":5189,"summary":5206},"\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":5208,"title":5209,"module":5210,"summary":5211},"\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":5213,"title":5214,"module":5210,"summary":5215},"\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":5217,"title":5218,"module":5210,"summary":5219},"\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":5221,"title":5222,"module":5210,"summary":5223},"\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":5225,"title":5226,"module":5210,"summary":5227},"\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":5229,"title":5230,"module":5210,"summary":5231},"\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":5233,"title":5234,"module":5210,"summary":5235},"\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":5237,"title":5238,"module":5239,"summary":5240},"\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":5242,"title":5243,"module":5239,"summary":5244},"\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":5246,"title":5247,"module":5239,"summary":5248},"\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":5250,"title":5251,"module":5252,"summary":5253},"\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":5255,"title":5256,"module":5252,"summary":5257},"\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":5259,"title":5260,"module":5252,"summary":5261},"\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":5263,"title":5264,"module":5252,"summary":5265},"\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":5267,"title":5268,"module":5252,"summary":5269},"\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":5271,"title":5272,"module":5252,"summary":5273},"\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":5275,"title":5276,"module":5252,"summary":5277},"\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":5279,"title":5280,"module":5281,"summary":5282},"\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":5284,"title":5285,"module":5281,"summary":5286},"\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":5288,"title":5289,"module":5281,"summary":5290},"\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":5292,"title":5293,"module":5281,"summary":5294},"\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":5296,"title":5297,"module":5281,"summary":5298},"\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":5300,"title":5301,"module":5281,"summary":5302},"\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":5304,"title":5305,"module":5281,"summary":5306},"\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":5308,"title":5309,"module":5281,"summary":5310},"\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":5312,"title":5313,"module":5281,"summary":5314},"\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":5316,"title":5317,"module":5281,"summary":5318},"\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":5320,"title":5321,"module":5281,"summary":5322},"\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":5324,"title":5325,"module":5326,"summary":5327},"\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":5329,"title":5330,"module":5326,"summary":5331},"\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":5333,"title":5334,"module":5326,"summary":5335},"\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":5337,"title":5338,"module":5326,"summary":5339},"\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":5341,"title":5342,"module":5326,"summary":5343},"\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":5345,"title":5346,"module":306,"summary":306},"\u002Fdeep-learning","Deep Learning",{"path":5348,"title":5349,"module":3413,"summary":5350},"\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":5352,"title":5353,"module":3413,"summary":5354},"\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":5356,"title":5357,"module":3413,"summary":5358},"\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":5360,"title":5361,"module":3413,"summary":5362},"\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":5364,"title":5365,"module":3413,"summary":5366},"\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":5368,"title":5369,"module":5370,"summary":5371},"\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":5373,"title":5374,"module":5370,"summary":5375},"\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":5377,"title":5378,"module":5370,"summary":5379},"\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":5381,"title":5382,"module":5370,"summary":5383},"\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":5385,"title":5386,"module":5387,"summary":5388},"\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":5390,"title":5391,"module":5387,"summary":5392},"\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":5394,"title":5395,"module":5387,"summary":5396},"\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":5398,"title":5399,"module":5387,"summary":5400},"\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":5402,"title":5403,"module":5404,"summary":5405},"\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":5407,"title":5408,"module":5404,"summary":5409},"\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":5411,"title":5412,"module":5404,"summary":5413},"\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":5415,"title":5416,"module":5404,"summary":5417},"\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":5419,"title":5420,"module":5404,"summary":5421},"\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":5423,"title":5424,"module":5425,"summary":5426},"\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":5428,"title":5429,"module":5425,"summary":5430},"\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":5432,"title":5433,"module":5425,"summary":5434},"\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":5436,"title":5437,"module":5438,"summary":5439},"\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":5441,"title":5442,"module":5438,"summary":5443},"\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":5445,"title":5446,"module":5438,"summary":5447},"\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":5449,"title":5450,"module":5451,"summary":5452},"\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":5454,"title":5455,"module":5451,"summary":5456},"\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":5458,"title":5459,"module":5451,"summary":5460},"\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":5462,"title":5463,"module":5451,"summary":5464},"\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":5466,"title":5467,"module":5468,"summary":5469},"\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":5471,"title":5472,"module":5468,"summary":5473},"\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":5475,"title":5476,"module":5468,"summary":5477},"\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":5479,"title":5480,"module":5468,"summary":5481},"\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":5483,"title":5484,"module":5468,"summary":5485},"\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":5487,"title":5488,"module":5468,"summary":5489},"\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":5491,"title":5492,"module":5493,"summary":5494},"\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":5496,"title":5497,"module":5493,"summary":5498},"\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":5500,"title":5501,"module":5493,"summary":5502},"\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":5504,"title":5505,"module":5493,"summary":5506},"\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":5508,"title":5509,"module":5510,"summary":5511},"\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":5513,"title":5514,"module":5510,"summary":5515},"\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":5517,"title":5518,"module":5510,"summary":5519},"\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":5521,"title":5522,"module":5523,"summary":5524},"\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":5526,"title":5527,"module":5523,"summary":5528},"\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":5530,"title":5531,"module":5523,"summary":5532},"\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":5534,"title":5535,"module":5523,"summary":5536},"\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":5538,"title":5539,"module":5523,"summary":5540},"\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":5542,"title":5543,"module":5544,"summary":5545},"\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":5547,"title":5548,"module":5544,"summary":5549},"\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":5551,"title":5552,"module":5544,"summary":5553},"\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":5555,"title":5556,"module":306,"summary":306},"\u002Fstatistical-mechanics","Statistical Mechanics",{"path":5558,"title":5559,"module":5560,"summary":5561},"\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":5563,"title":5564,"module":5560,"summary":5565},"\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":5567,"title":5568,"module":5560,"summary":5569},"\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":5571,"title":5572,"module":5560,"summary":5573},"\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":5575,"title":5576,"module":5577,"summary":5578},"\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":5580,"title":5581,"module":5577,"summary":5582},"\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":5584,"title":5585,"module":5577,"summary":5586},"\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":5588,"title":5589,"module":5577,"summary":5590},"\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":5592,"title":5593,"module":5594,"summary":5595},"\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":5597,"title":5598,"module":5594,"summary":5599},"\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":5601,"title":5602,"module":5594,"summary":5603},"\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":5605,"title":5606,"module":5594,"summary":5607},"\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":5609,"title":5610,"module":5611,"summary":5612},"\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":5614,"title":5615,"module":5611,"summary":5616},"\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":5618,"title":5619,"module":5611,"summary":5620},"\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":5622,"title":5623,"module":5611,"summary":5624},"\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":5626,"title":5627,"module":5628,"summary":5629},"\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":5631,"title":5632,"module":5628,"summary":5633},"\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":5635,"title":5636,"module":5628,"summary":5637},"\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":5639,"title":5640,"module":5628,"summary":5641},"\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":5643,"title":5644,"module":5645,"summary":5646},"\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":5648,"title":5649,"module":5645,"summary":5650},"\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":5652,"title":5653,"module":5645,"summary":5654},"\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":5656,"title":5657,"module":5645,"summary":5658},"\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":5660,"title":5661,"module":5662,"summary":5663},"\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":5665,"title":5666,"module":5662,"summary":5667},"\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":5669,"title":5670,"module":5662,"summary":5671},"\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":5673,"title":5674,"module":5662,"summary":5675},"\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":5677,"title":5678,"module":5662,"summary":5679},"\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":5681,"title":5682,"module":5683,"summary":5684},"\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":5686,"title":5687,"module":5683,"summary":5688},"\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":5690,"title":5691,"module":5692,"summary":5693},"\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":5695,"title":5696,"module":5692,"summary":5697},"\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":5699,"title":5700,"module":5692,"summary":5701},"\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":5703,"title":5704,"module":5692,"summary":5705},"\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":5707,"title":5708,"module":5709,"summary":5710},"\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":5712,"title":5713,"module":5709,"summary":5714},"\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":5716,"title":5717,"module":5709,"summary":5718},"\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":5720,"title":5721,"module":5709,"summary":5722},"\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":5724,"title":5725,"module":5709,"summary":5726},"\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":5728,"title":5729,"module":5730,"summary":5731},"\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":5733,"title":5734,"module":5730,"summary":5735},"\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":5737,"title":5738,"module":5730,"summary":5739},"\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":5741,"title":5742,"module":5730,"summary":5743},"\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":5745,"title":5746,"module":306,"summary":306},"\u002Fcondensed-matter","Condensed Matter Physics",{"path":5748,"title":5749,"module":5,"summary":5750},"\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":5752,"title":5753,"module":5754,"summary":5755},"\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":5757,"title":5758,"module":5754,"summary":5759},"\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":5761,"title":5762,"module":5754,"summary":5763},"\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":5765,"title":5766,"module":5754,"summary":5767},"\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":5769,"title":5770,"module":5754,"summary":5771},"\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":5773,"title":5774,"module":5754,"summary":5775},"\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":5777,"title":5778,"module":5754,"summary":5779},"\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":5781,"title":5782,"module":5783,"summary":5784},"\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":5786,"title":5787,"module":5783,"summary":5788},"\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":5790,"title":5791,"module":5783,"summary":5792},"\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":5794,"title":5795,"module":5783,"summary":5796},"\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":5798,"title":5799,"module":5800,"summary":5801},"\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":5803,"title":5804,"module":5800,"summary":5805},"\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":5807,"title":5808,"module":5800,"summary":5809},"\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":5811,"title":5812,"module":5800,"summary":5813},"\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":5815,"title":5816,"module":5817,"summary":5818},"\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":5820,"title":5821,"module":5817,"summary":5822},"\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":5824,"title":5825,"module":5817,"summary":5826},"\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":5828,"title":5829,"module":5817,"summary":5830},"\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":5832,"title":5833,"module":5834,"summary":5835},"\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":5837,"title":5838,"module":5834,"summary":5839},"\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":5841,"title":5842,"module":5834,"summary":5843},"\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":5845,"title":5846,"module":5834,"summary":5847},"\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":5849,"title":5850,"module":5851,"summary":5852},"\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":5854,"title":5855,"module":5851,"summary":5856},"\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":5858,"title":5859,"module":5851,"summary":5860},"\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":5862,"title":5863,"module":5864,"summary":5865},"\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":5867,"title":5868,"module":5864,"summary":5869},"\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":5871,"title":5872,"module":5873,"summary":5874},"\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":5876,"title":5877,"module":5873,"summary":5878},"\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":5880,"title":5881,"module":5873,"summary":5882},"\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":5884,"title":5885,"module":306,"summary":306},"\u002Flogic","Logic",{"path":5887,"title":5888,"module":5,"summary":5889},"\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":5891,"title":5892,"module":5,"summary":5893},"\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":5895,"title":5896,"module":5,"summary":5897},"\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":5899,"title":5900,"module":5,"summary":5901},"\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":5903,"title":5904,"module":5,"summary":5905},"\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":5907,"title":5908,"module":5,"summary":5909},"\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":5911,"title":2888,"module":5912,"summary":5913},"\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":5915,"title":5916,"module":5912,"summary":5917},"\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":5919,"title":5920,"module":5912,"summary":5921},"\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":5923,"title":5924,"module":5912,"summary":5925},"\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":5927,"title":5928,"module":5912,"summary":5929},"\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":5931,"title":5932,"module":5912,"summary":5933},"\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":5935,"title":5936,"module":5912,"summary":5937},"\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":5939,"title":5940,"module":5912,"summary":5941},"\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":5943,"title":5944,"module":5912,"summary":5945},"\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":5947,"title":5948,"module":5912,"summary":5949},"\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":5951,"title":5952,"module":5912,"summary":5953},"\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":5955,"title":5956,"module":5912,"summary":5957},"\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":5959,"title":5960,"module":5961,"summary":5962},"\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":5964,"title":5965,"module":5961,"summary":5966},"\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":5968,"title":5969,"module":5961,"summary":5970},"\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":5972,"title":5973,"module":5961,"summary":5974},"\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":5976,"title":5977,"module":5961,"summary":5978},"\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":5980,"title":5981,"module":5961,"summary":5982},"\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":5984,"title":5985,"module":5961,"summary":5986},"\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":5988,"title":5989,"module":5961,"summary":5990},"\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":5992,"title":5993,"module":5961,"summary":5994},"\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":5996,"title":5997,"module":5961,"summary":5998},"\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":6000,"title":6001,"module":5961,"summary":6002},"\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":6004,"title":6005,"module":5961,"summary":6006},"\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":6008,"title":6009,"module":5961,"summary":6010},"\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":6012,"title":6013,"module":5961,"summary":6014},"\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":6016,"title":5334,"module":6017,"summary":6018},"\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":6020,"title":6021,"module":6017,"summary":6022},"\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":6024,"title":6025,"module":6017,"summary":6026},"\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":6028,"title":6029,"module":6017,"summary":6030},"\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":6032,"title":6033,"module":6017,"summary":6034},"\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":6036,"title":6037,"module":6017,"summary":6038},"\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":6040,"title":6041,"module":6017,"summary":6042},"\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":6044,"title":6045,"module":6017,"summary":6046},"\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":6048,"title":6049,"module":6050,"summary":6051},"\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":6053,"title":6054,"module":6050,"summary":6055},"\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":6057,"title":6058,"module":6050,"summary":6059},"\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":6061,"title":6062,"module":6050,"summary":6063},"\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":6065,"title":6066,"module":6050,"summary":6067},"\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":6069,"title":6070,"module":6050,"summary":6071},"\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":6073,"title":6074,"module":6050,"summary":6075},"\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":6077,"title":6078,"module":6050,"summary":6079},"\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":6081,"title":6082,"module":6050,"summary":6083},"\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":6085,"title":6086,"module":6050,"summary":6087},"\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":6089,"title":6090,"module":6050,"summary":6091},"\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":6093,"title":6094,"module":6050,"summary":6095},"\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":6097,"title":6098,"module":6050,"summary":6099},"\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":6101,"title":6102,"module":6050,"summary":6103},"\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":6105,"title":6106,"module":6050,"summary":6107},"\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":6109,"title":6110,"module":6050,"summary":6111},"\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":6113,"title":6114,"module":6050,"summary":6115},"\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":6117,"title":6118,"module":6050,"summary":6119},"\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":6121,"title":6122,"module":6050,"summary":6123},"\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":6125,"title":6126,"module":6050,"summary":6127},"\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":6129,"title":6130,"module":6050,"summary":6131},"\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":6133,"title":6134,"module":6050,"summary":6135},"\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":6137,"title":6138,"module":6139,"summary":6140},"\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":6142,"title":6143,"module":6139,"summary":6144},"\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":6146,"title":6147,"module":6139,"summary":6148},"\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":6150,"title":6151,"module":6139,"summary":6152},"\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":6154,"title":6155,"module":6139,"summary":6156},"\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":6158,"title":6159,"module":6139,"summary":6160},"\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":6162,"title":6163,"module":6139,"summary":6164},"\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":6166,"title":6167,"module":6139,"summary":6168},"\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":6170,"title":5326,"module":306,"summary":306},"\u002Freinforcement-learning",{"path":6172,"title":6173,"module":5,"summary":6174},"\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":6176,"title":6177,"module":5,"summary":6178},"\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":6180,"title":6181,"module":5,"summary":6182},"\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":6184,"title":6185,"module":5,"summary":6186},"\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":6188,"title":6189,"module":6190,"summary":6191},"\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":6193,"title":6194,"module":6190,"summary":6195},"\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":6197,"title":6198,"module":6190,"summary":6199},"\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":6201,"title":6202,"module":6190,"summary":6203},"\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":6205,"title":6206,"module":6190,"summary":6207},"\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":6209,"title":6210,"module":6190,"summary":6211},"\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":6213,"title":6214,"module":6190,"summary":6215},"\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":6217,"title":6218,"module":6190,"summary":6219},"\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":6221,"title":6222,"module":6190,"summary":6223},"\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":6225,"title":6226,"module":6190,"summary":6227},"\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":6229,"title":6230,"module":6190,"summary":6231},"\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":6233,"title":6234,"module":6190,"summary":6235},"\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":6237,"title":6238,"module":6239,"summary":6240},"\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":6242,"title":6243,"module":6239,"summary":6244},"\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":6246,"title":6247,"module":6239,"summary":6248},"\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":6250,"title":6251,"module":6239,"summary":6252},"\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":6254,"title":6255,"module":6239,"summary":6256},"\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":6258,"title":6259,"module":6239,"summary":6260},"\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":6262,"title":6263,"module":6239,"summary":6264},"\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":6266,"title":6267,"module":6239,"summary":6268},"\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":6270,"title":6271,"module":6239,"summary":6272},"\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":6274,"title":6275,"module":6239,"summary":6276},"\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":6278,"title":6279,"module":6239,"summary":6280},"\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":6282,"title":6283,"module":6239,"summary":6284},"\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":6286,"title":6287,"module":6288,"summary":6289},"\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":6291,"title":6292,"module":6288,"summary":6293},"\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":6295,"title":6296,"module":6288,"summary":6297},"\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":6299,"title":6300,"module":6288,"summary":6301},"\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":6303,"title":6304,"module":6288,"summary":6305},"\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":6307,"title":6308,"module":6288,"summary":6309},"\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":6311,"title":6312,"module":6288,"summary":6313},"\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":6315,"title":5904,"module":6288,"summary":6316},"\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":6318,"title":6319,"module":6288,"summary":6320},"\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":6322,"title":6323,"module":6288,"summary":6324},"\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":6326,"title":6327,"module":6328,"summary":6329},"\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":6331,"title":6332,"module":6328,"summary":6333},"\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":6335,"title":6336,"module":6328,"summary":6337},"\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":6339,"title":6340,"module":6328,"summary":6341},"\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":6343,"title":5326,"module":6328,"summary":6344},"\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":6346,"title":6347,"module":6328,"summary":6348},"\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":6350,"title":6351,"module":6328,"summary":6352},"\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":6354,"title":6355,"module":6328,"summary":6356},"\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":6358,"title":6359,"module":6360,"summary":6361},"\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":6363,"title":6364,"module":6360,"summary":6365},"\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":6367,"title":6368,"module":6360,"summary":6369},"\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":6371,"title":6372,"module":6360,"summary":6373},"\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":6375,"title":6376,"module":6360,"summary":6377},"\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":6379,"title":6380,"module":6360,"summary":6381},"\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":6383,"title":6384,"module":6360,"summary":6385},"\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":6387,"title":6388,"module":6360,"summary":6389},"\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":6391,"title":6392,"module":306,"summary":306},"\u002Fartificial-intelligence","Artificial Intelligence",{"path":6394,"title":6395,"module":6396,"summary":6397},"\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":6399,"title":6400,"module":6396,"summary":6401},"\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":6403,"title":6404,"module":6396,"summary":6405},"\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":6407,"title":6408,"module":6396,"summary":6409},"\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":6411,"title":6412,"module":6396,"summary":6413},"\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":6415,"title":6416,"module":6417,"summary":6418},"\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":6420,"title":6421,"module":6417,"summary":6422},"\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":6424,"title":6425,"module":6417,"summary":6426},"\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":6428,"title":6429,"module":6417,"summary":6430},"\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":6432,"title":6433,"module":6434,"summary":6435},"\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":6437,"title":6438,"module":6434,"summary":6439},"\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":6441,"title":6442,"module":6434,"summary":6443},"\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":6445,"title":6446,"module":6434,"summary":6447},"\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":6449,"title":6450,"module":6451,"summary":6452},"\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":6454,"title":6455,"module":6451,"summary":6456},"\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":6458,"title":6459,"module":6460,"summary":6461},"\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":6463,"title":6464,"module":6460,"summary":6465},"\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":6467,"title":6468,"module":6469,"summary":6470},"\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":6472,"title":6473,"module":6469,"summary":6474},"\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":6476,"title":6477,"module":6469,"summary":6478},"\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":6480,"title":6481,"module":6469,"summary":6482},"\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":6484,"title":6485,"module":6486,"summary":6487},"\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":6489,"title":6490,"module":6486,"summary":6491},"\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":6493,"title":6494,"module":6486,"summary":6495},"\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":6497,"title":6498,"module":6499,"summary":6500},"\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":6502,"title":6503,"module":6499,"summary":6504},"\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":6506,"title":6507,"module":6499,"summary":6508},"\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":6510,"title":6511,"module":6512,"summary":6513},"\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":6515,"title":6516,"module":6512,"summary":6517},"\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":6519,"title":6520,"module":6521,"summary":6522},"\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":6524,"title":6525,"module":6521,"summary":6526},"\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":6528,"title":6529,"module":6521,"summary":6530},"\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":6532,"title":6533,"module":6534,"summary":6535},"\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":6537,"title":6538,"module":6534,"summary":6539},"\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":6541,"title":6542,"module":6534,"summary":6543},"\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":6545,"title":6546,"module":6534,"summary":6547},"\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":6549,"title":6550,"module":6534,"summary":6551},"\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":6553,"title":6554,"module":306,"summary":306},"\u002Fnuclear-physics","Nuclear Physics",{"path":6556,"title":6557,"module":5,"summary":6558},"\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":6560,"title":6561,"module":5,"summary":6562},"\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":6564,"title":6565,"module":5,"summary":6566},"\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":6568,"title":6569,"module":5,"summary":6570},"\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":6572,"title":6573,"module":5,"summary":6574},"\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":6576,"title":6577,"module":6578,"summary":6579},"\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":6581,"title":6582,"module":6578,"summary":6583},"\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":6585,"title":6586,"module":6578,"summary":6587},"\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":6589,"title":6590,"module":6578,"summary":6591},"\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":6593,"title":6594,"module":6595,"summary":6596},"\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":6598,"title":6599,"module":6595,"summary":6600},"\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":6602,"title":6603,"module":6595,"summary":6604},"\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":6606,"title":6607,"module":3135,"summary":6608},"\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":6610,"title":6611,"module":3135,"summary":6612},"\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":6614,"title":6615,"module":3135,"summary":6616},"\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":6618,"title":6619,"module":3617,"summary":6620},"\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":6622,"title":5172,"module":3617,"summary":6623},"\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":6625,"title":5280,"module":3617,"summary":6626},"\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":6628,"title":6629,"module":3617,"summary":6630},"\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":6632,"title":6633,"module":3617,"summary":6634},"\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":6636,"title":6637,"module":3617,"summary":6638},"\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":6640,"title":6641,"module":6642,"summary":6643},"\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":6645,"title":6646,"module":6642,"summary":6647},"\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":6649,"title":6650,"module":6642,"summary":6651},"\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":6653,"title":6654,"module":6642,"summary":6655},"\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":6657,"title":6658,"module":6642,"summary":6659},"\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":6661,"title":6662,"module":6642,"summary":6663},"\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":6665,"title":6666,"module":6642,"summary":6667},"\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":6669,"title":6670,"module":6642,"summary":6671},"\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":6673,"title":6674,"module":6642,"summary":6675},"\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":6677,"title":6678,"module":6642,"summary":6679},"\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":6681,"title":6682,"module":6642,"summary":6683},"\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":6685,"title":6686,"module":6642,"summary":6687},"\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":6689,"title":6690,"module":6642,"summary":6691},"\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":6693,"title":6694,"module":6642,"summary":6695},"\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":6697,"title":6698,"module":6642,"summary":6699},"\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":6701,"title":6702,"module":6642,"summary":6703},"\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":6705,"title":6706,"module":6642,"summary":6707},"\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":6709,"title":6710,"module":6642,"summary":6711},"\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":6713,"title":6714,"module":6642,"summary":6715},"\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":6717,"title":6718,"module":6642,"summary":6719},"\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":6721,"title":6722,"module":5268,"summary":6723},"\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":6725,"title":6726,"module":5268,"summary":6727},"\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":6729,"title":6730,"module":5268,"summary":6731},"\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":6733,"title":6734,"module":5268,"summary":6735},"\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":6737,"title":6738,"module":5268,"summary":6739},"\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":6741,"title":6742,"module":5268,"summary":6743},"\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":6745,"title":6746,"module":5268,"summary":6747},"\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":6749,"title":6750,"module":5268,"summary":6751},"\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":6753,"title":6754,"module":6755,"summary":6756},"\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":6758,"title":6759,"module":6755,"summary":6760},"\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":6762,"title":6763,"module":6755,"summary":6764},"\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":6766,"title":6767,"module":6755,"summary":6768},"\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":6770,"title":6771,"module":306,"summary":306},"\u002Fnatural-language-processing","Natural Language Processing",{"path":6773,"title":6774,"module":5,"summary":6775},"\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":6777,"title":6778,"module":5,"summary":6779},"\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":6781,"title":6782,"module":5,"summary":6783},"\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":6785,"title":6786,"module":6787,"summary":6788},"\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":6790,"title":6791,"module":6787,"summary":6792},"\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":6794,"title":6795,"module":6787,"summary":6796},"\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":6798,"title":6799,"module":6787,"summary":6800},"\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":6802,"title":6803,"module":6804,"summary":6805},"\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":6807,"title":6808,"module":6804,"summary":6809},"\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":6811,"title":6812,"module":6804,"summary":6813},"\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":6815,"title":6816,"module":6804,"summary":6817},"\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":6819,"title":6820,"module":6821,"summary":6822},"\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":6824,"title":6825,"module":6821,"summary":6826},"\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":6828,"title":6829,"module":6821,"summary":6830},"\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":6832,"title":6833,"module":6821,"summary":6834},"\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":6836,"title":6837,"module":6838,"summary":6839},"\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":6841,"title":6842,"module":6838,"summary":6843},"\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":6845,"title":6846,"module":6838,"summary":6847},"\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":6849,"title":6850,"module":6851,"summary":6852},"\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":6854,"title":6855,"module":6851,"summary":6856},"\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":6858,"title":6859,"module":6851,"summary":6860},"\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":6862,"title":6863,"module":6851,"summary":6864},"\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":6866,"title":6867,"module":6868,"summary":6869},"\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":6871,"title":6872,"module":6868,"summary":6873},"\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":6875,"title":6876,"module":6868,"summary":6877},"\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":6879,"title":6880,"module":6868,"summary":6881},"\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":6883,"title":6884,"module":6885,"summary":6886},"\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":6888,"title":6889,"module":6885,"summary":6890},"\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":6892,"title":6893,"module":6885,"summary":6894},"\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":6896,"title":6897,"module":6885,"summary":6898},"\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":6900,"title":6901,"module":6902,"summary":6903},"\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":6905,"title":6906,"module":6902,"summary":6907},"\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":6909,"title":6910,"module":6902,"summary":6911},"\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":6913,"title":6914,"module":6902,"summary":6915},"\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":6917,"title":6918,"module":6902,"summary":6919},"\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":6921,"title":6922,"module":6923,"summary":6924},"\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":6926,"title":6927,"module":6923,"summary":6928},"\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":6930,"title":6931,"module":6923,"summary":6932},"\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":6934,"title":6935,"module":6936,"summary":6937},"\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":6939,"title":6940,"module":6936,"summary":6941},"\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":6943,"title":6944,"module":6936,"summary":6945},"\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":6947,"title":6948,"module":6948,"summary":6949},"\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":6951,"title":6952,"module":6948,"summary":6953},"\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":6955,"title":6956,"module":6948,"summary":6957},"\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":6959,"title":6960,"module":6948,"summary":6961},"\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":6963,"title":6964,"module":6948,"summary":6965},"\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":6967,"title":6968,"module":6948,"summary":6969},"\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":6971,"title":6972,"module":306,"summary":306},"\u002Fparticle-physics","Particle Physics",{"path":6974,"title":6975,"module":6976,"summary":6977},"\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":6979,"title":6980,"module":6976,"summary":6981},"\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":6983,"title":6984,"module":6976,"summary":6985},"\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":6987,"title":6988,"module":6989,"summary":6990},"\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":6992,"title":6993,"module":6989,"summary":6994},"\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":6996,"title":6997,"module":6989,"summary":6998},"\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":7000,"title":7001,"module":6989,"summary":7002},"\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":7004,"title":7005,"module":7006,"summary":7007},"\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":7009,"title":7010,"module":7006,"summary":7011},"\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":7013,"title":7014,"module":7006,"summary":7015},"\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":7017,"title":7018,"module":7006,"summary":7019},"\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":7021,"title":7022,"module":7023,"summary":7024},"\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":7026,"title":7027,"module":7023,"summary":7028},"\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":7030,"title":7031,"module":7023,"summary":7032},"\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":7034,"title":7035,"module":7023,"summary":7036},"\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":7038,"title":7039,"module":7040,"summary":7041},"\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":7043,"title":7044,"module":7040,"summary":7045},"\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":7047,"title":7048,"module":7040,"summary":7049},"\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":7051,"title":7052,"module":7040,"summary":7053},"\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":7055,"title":7056,"module":7057,"summary":7058},"\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":7060,"title":7061,"module":7057,"summary":7062},"\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":7064,"title":7065,"module":7057,"summary":7066},"\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":7068,"title":7069,"module":7070,"summary":7071},"\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":7073,"title":7074,"module":7070,"summary":7075},"\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":7077,"title":7078,"module":7070,"summary":7079},"\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":7081,"title":7082,"module":7070,"summary":7083},"\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":7085,"title":5501,"module":7086,"summary":7087},"\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":7089,"title":7090,"module":7086,"summary":7091},"\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":7093,"title":7094,"module":7086,"summary":7095},"\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":7097,"title":7098,"module":7086,"summary":7099},"\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":7101,"title":7102,"module":7086,"summary":7103},"\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":7105,"title":7106,"module":7107,"summary":7108},"\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":7110,"title":7111,"module":7107,"summary":7112},"\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":7114,"title":7115,"module":7107,"summary":7116},"\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":7118,"title":7119,"module":7107,"summary":7120},"\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":7122,"title":7123,"module":7124,"summary":7125},"\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":7127,"title":7128,"module":7124,"summary":7129},"\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":7131,"title":7132,"module":7124,"summary":7133},"\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":7135,"title":7136,"module":7124,"summary":7137},"\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":7139,"title":7140,"module":7124,"summary":7141},"\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":7143,"title":7144,"module":7145,"summary":7146},"\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":7148,"title":7149,"module":7145,"summary":7150},"\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":7152,"title":4219,"module":7145,"summary":7153},"\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":7155,"title":7156,"module":7145,"summary":7157},"\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":7159,"title":7160,"module":7145,"summary":7161},"\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":7163,"title":7164,"module":7165,"summary":7166},"\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":7168,"title":7169,"module":7165,"summary":7170},"\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":7172,"title":7173,"module":7165,"summary":7174},"\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":7176,"title":7177,"module":7165,"summary":7178},"\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":7180,"title":7181,"module":7165,"summary":7182},"\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":7184,"title":7185,"module":7165,"summary":7186},"\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":7188,"title":7189,"module":7165,"summary":7190},"\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":7192,"title":7193,"module":306,"summary":306},"\u002Fastrophysics-cosmology","Astrophysics & Cosmology",{"path":7195,"title":7196,"module":306,"summary":306},"\u002Fcolophon","Colophon",{"path":516,"title":7198,"module":306,"summary":306},"Study Notes","\u003Csvg style=\"width:100%;max-width:466.674px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 350.005 316.535\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M98.087 238.065h56.905v-22.762H98.087Z\"\u002F>\u003Cg transform=\"translate(-4.25 2.444)\">\u003Cpath d=\"M126.724 226.446L126.724 226.356Q126.763 226.149 126.974 226.125L127.282 226.125L127.282 222.356L126.974 222.356Q126.763 222.332 126.724 222.118L126.724 222.028Q126.763 221.821 126.974 221.797L128.923 221.797Q129.321 221.797 129.667 221.998Q130.013 222.200 130.220 222.545Q130.427 222.891 130.427 223.293Q130.427 223.700 130.222 224.043Q130.017 224.387 129.671 224.592Q129.325 224.797 128.923 224.797L127.923 224.797L127.923 226.125L128.235 226.125Q128.446 226.149 128.485 226.356L128.485 226.446Q128.446 226.661 128.235 226.684L126.974 226.684Q126.763 226.661 126.724 226.446M127.923 222.356L127.923 224.235L128.763 224.235Q129.024 224.235 129.261 224.112Q129.497 223.989 129.642 223.774Q129.786 223.559 129.786 223.293Q129.786 223.024 129.642 222.813Q129.497 222.602 129.261 222.479Q129.024 222.356 128.763 222.356L127.923 222.356M133.052 226.762Q132.603 226.762 132.237 226.538Q131.872 226.313 131.618 225.930Q131.364 225.547 131.239 225.104Q131.114 224.661 131.114 224.235Q131.114 223.809 131.239 223.370Q131.364 222.930 131.618 222.547Q131.872 222.164 132.231 221.940Q132.591 221.715 133.052 221.715Q133.329 221.715 133.587 221.807Q133.845 221.899 134.060 222.067L134.192 221.829Q134.220 221.778 134.274 221.746Q134.329 221.715 134.388 221.715L134.466 221.715Q134.560 221.727 134.622 221.786Q134.685 221.844 134.696 221.950L134.696 223.278Q134.685 223.379 134.622 223.442Q134.560 223.504 134.466 223.516L134.298 223.516Q134.196 223.504 134.134 223.438Q134.071 223.371 134.060 223.278Q134.020 223.012 133.897 222.788Q133.774 222.563 133.571 222.420Q133.368 222.278 133.106 222.278Q132.774 222.278 132.522 222.461Q132.270 222.645 132.099 222.946Q131.927 223.246 131.841 223.588Q131.755 223.930 131.755 224.235Q131.755 224.539 131.839 224.881Q131.923 225.223 132.095 225.526Q132.267 225.829 132.524 226.016Q132.782 226.204 133.114 226.204Q133.497 226.204 133.778 225.930Q134.060 225.657 134.060 225.270Q134.087 225.059 134.298 225.036L134.466 225.036Q134.696 225.075 134.696 225.301Q134.696 225.618 134.560 225.889Q134.423 226.161 134.188 226.358Q133.954 226.555 133.663 226.659Q133.372 226.762 133.052 226.762\" 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=\"M81.865 189.695h89.349v-28.452H81.865Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M133.802 217.184L132.024 217.184L132.024 216.887Q132.298 216.887 132.466 216.840Q132.634 216.793 132.634 216.625L132.634 214.489Q132.634 214.274 132.577 214.178Q132.520 214.082 132.407 214.061Q132.294 214.039 132.048 214.039L132.048 213.743L133.247 213.657L133.247 216.625Q133.247 216.793 133.393 216.840Q133.540 216.887 133.802 216.887L133.802 217.184M132.360 212.262Q132.360 212.071 132.495 211.940Q132.630 211.809 132.825 211.809Q132.946 211.809 133.050 211.871Q133.153 211.934 133.216 212.038Q133.278 212.141 133.278 212.262Q133.278 212.457 133.147 212.592Q133.017 212.727 132.825 212.727Q132.626 212.727 132.493 212.594Q132.360 212.461 132.360 212.262M136.231 217.184L134.376 217.184L134.376 216.887Q134.649 216.887 134.817 216.840Q134.985 216.793 134.985 216.625L134.985 214.489Q134.985 214.274 134.923 214.178Q134.860 214.082 134.741 214.061Q134.622 214.039 134.376 214.039L134.376 213.743L135.567 213.657L135.567 214.391Q135.681 214.176 135.874 214.008Q136.067 213.840 136.306 213.748Q136.544 213.657 136.798 213.657Q137.966 213.657 137.966 214.735L137.966 216.625Q137.966 216.793 138.136 216.840Q138.306 216.887 138.575 216.887L138.575 217.184L136.720 217.184L136.720 216.887Q136.993 216.887 137.161 216.840Q137.329 216.793 137.329 216.625L137.329 214.750Q137.329 214.368 137.208 214.139Q137.087 213.911 136.735 213.911Q136.423 213.911 136.169 214.073Q135.915 214.235 135.768 214.504Q135.622 214.774 135.622 215.071L135.622 216.625Q135.622 216.793 135.792 216.840Q135.962 216.887 136.231 216.887L136.231 217.184M139.063 217.176L139.063 215.954Q139.063 215.926 139.095 215.895Q139.126 215.864 139.149 215.864L139.255 215.864Q139.325 215.864 139.341 215.926Q139.403 216.246 139.542 216.487Q139.681 216.727 139.913 216.868Q140.145 217.008 140.454 217.008Q140.692 217.008 140.901 216.948Q141.110 216.887 141.247 216.739Q141.384 216.590 141.384 216.344Q141.384 216.090 141.173 215.924Q140.962 215.758 140.692 215.704L140.071 215.590Q139.665 215.512 139.364 215.256Q139.063 215 139.063 214.625Q139.063 214.258 139.265 214.036Q139.466 213.813 139.790 213.715Q140.114 213.618 140.454 213.618Q140.919 213.618 141.216 213.825L141.438 213.641Q141.462 213.618 141.493 213.618L141.544 213.618Q141.575 213.618 141.602 213.645Q141.630 213.672 141.630 213.704L141.630 214.688Q141.630 214.719 141.604 214.748Q141.579 214.778 141.544 214.778L141.438 214.778Q141.403 214.778 141.376 214.750Q141.349 214.723 141.349 214.688Q141.349 214.289 141.097 214.069Q140.845 213.848 140.446 213.848Q140.091 213.848 139.808 213.971Q139.524 214.094 139.524 214.399Q139.524 214.618 139.725 214.750Q139.927 214.883 140.173 214.926L140.798 215.039Q141.227 215.129 141.536 215.426Q141.845 215.723 141.845 216.137Q141.845 216.707 141.446 216.985Q141.048 217.262 140.454 217.262Q139.903 217.262 139.552 216.926L139.255 217.239Q139.231 217.262 139.196 217.262L139.149 217.262Q139.126 217.262 139.095 217.231Q139.063 217.200 139.063 217.176M142.997 216.223L142.997 214.032L142.294 214.032L142.294 213.778Q142.649 213.778 142.892 213.545Q143.134 213.313 143.245 212.965Q143.356 212.618 143.356 212.262L143.638 212.262L143.638 213.735L144.813 213.735L144.813 214.032L143.638 214.032L143.638 216.207Q143.638 216.528 143.757 216.756Q143.876 216.985 144.157 216.985Q144.337 216.985 144.454 216.862Q144.571 216.739 144.624 216.559Q144.677 216.379 144.677 216.207L144.677 215.735L144.958 215.735L144.958 216.223Q144.958 216.477 144.852 216.717Q144.747 216.957 144.550 217.110Q144.352 217.262 144.095 217.262Q143.778 217.262 143.526 217.139Q143.274 217.016 143.136 216.782Q142.997 216.547 142.997 216.223M147.684 217.184L145.704 217.184L145.704 216.887Q145.974 216.887 146.142 216.842Q146.309 216.797 146.309 216.625L146.309 214.489Q146.309 214.274 146.247 214.178Q146.184 214.082 146.067 214.061Q145.950 214.039 145.704 214.039L145.704 213.743L146.872 213.657L146.872 214.442Q146.950 214.231 147.102 214.045Q147.255 213.860 147.454 213.758Q147.653 213.657 147.880 213.657Q148.126 213.657 148.317 213.801Q148.509 213.946 148.509 214.176Q148.509 214.332 148.403 214.442Q148.298 214.551 148.142 214.551Q147.985 214.551 147.876 214.442Q147.767 214.332 147.767 214.176Q147.767 214.016 147.872 213.911Q147.548 213.911 147.333 214.139Q147.118 214.368 147.022 214.707Q146.927 215.047 146.927 215.352L146.927 216.625Q146.927 216.793 147.153 216.840Q147.380 216.887 147.684 216.887L147.684 217.184M149.673 216.231L149.673 214.489Q149.673 214.274 149.610 214.178Q149.548 214.082 149.429 214.061Q149.309 214.039 149.063 214.039L149.063 213.743L150.309 213.657L150.309 216.207L150.309 216.231Q150.309 216.543 150.364 216.705Q150.419 216.868 150.569 216.938Q150.720 217.008 151.040 217.008Q151.470 217.008 151.743 216.670Q152.017 216.332 152.017 215.887L152.017 214.489Q152.017 214.274 151.954 214.178Q151.892 214.082 151.772 214.061Q151.653 214.039 151.407 214.039L151.407 213.743L152.653 213.657L152.653 216.442Q152.653 216.653 152.716 216.748Q152.778 216.844 152.897 216.866Q153.017 216.887 153.263 216.887L153.263 217.184L152.040 217.262L152.040 216.641Q151.872 216.930 151.591 217.096Q151.309 217.262 150.989 217.262Q149.673 217.262 149.673 216.231M153.751 215.457Q153.751 214.961 154.001 214.536Q154.251 214.110 154.671 213.864Q155.091 213.618 155.591 213.618Q156.130 213.618 156.520 213.743Q156.911 213.868 156.911 214.282Q156.911 214.387 156.860 214.479Q156.809 214.571 156.718 214.621Q156.626 214.672 156.517 214.672Q156.411 214.672 156.319 214.621Q156.227 214.571 156.177 214.479Q156.126 214.387 156.126 214.282Q156.126 214.059 156.294 213.954Q156.071 213.895 155.599 213.895Q155.302 213.895 155.087 214.034Q154.872 214.172 154.741 214.403Q154.610 214.633 154.552 214.903Q154.493 215.172 154.493 215.457Q154.493 215.852 154.626 216.202Q154.759 216.551 155.030 216.768Q155.302 216.985 155.700 216.985Q156.075 216.985 156.350 216.768Q156.626 216.551 156.727 216.192Q156.743 216.129 156.806 216.129L156.911 216.129Q156.946 216.129 156.972 216.157Q156.997 216.184 156.997 216.223L156.997 216.246Q156.864 216.727 156.479 216.995Q156.095 217.262 155.591 217.262Q155.227 217.262 154.893 217.125Q154.559 216.989 154.300 216.739Q154.040 216.489 153.895 216.153Q153.751 215.817 153.751 215.457M158.110 216.223L158.110 214.032L157.407 214.032L157.407 213.778Q157.763 213.778 158.005 213.545Q158.247 213.313 158.358 212.965Q158.470 212.618 158.470 212.262L158.751 212.262L158.751 213.735L159.927 213.735L159.927 214.032L158.751 214.032L158.751 216.207Q158.751 216.528 158.870 216.756Q158.989 216.985 159.270 216.985Q159.450 216.985 159.567 216.862Q159.684 216.739 159.737 216.559Q159.790 216.379 159.790 216.207L159.790 215.735L160.071 215.735L160.071 216.223Q160.071 216.477 159.966 216.717Q159.860 216.957 159.663 217.110Q159.466 217.262 159.208 217.262Q158.892 217.262 158.640 217.139Q158.388 217.016 158.249 216.782Q158.110 216.547 158.110 216.223M162.649 217.184L160.872 217.184L160.872 216.887Q161.145 216.887 161.313 216.840Q161.481 216.793 161.481 216.625L161.481 214.489Q161.481 214.274 161.425 214.178Q161.368 214.082 161.255 214.061Q161.142 214.039 160.895 214.039L160.895 213.743L162.095 213.657L162.095 216.625Q162.095 216.793 162.241 216.840Q162.388 216.887 162.649 216.887L162.649 217.184M161.208 212.262Q161.208 212.071 161.343 211.940Q161.477 211.809 161.673 211.809Q161.794 211.809 161.897 211.871Q162.001 211.934 162.063 212.038Q162.126 212.141 162.126 212.262Q162.126 212.457 161.995 212.592Q161.864 212.727 161.673 212.727Q161.474 212.727 161.341 212.594Q161.208 212.461 161.208 212.262M163.149 215.489Q163.149 214.985 163.405 214.553Q163.661 214.121 164.097 213.870Q164.532 213.618 165.032 213.618Q165.419 213.618 165.761 213.762Q166.102 213.907 166.364 214.168Q166.626 214.430 166.768 214.766Q166.911 215.102 166.911 215.489Q166.911 215.981 166.647 216.391Q166.384 216.801 165.954 217.032Q165.524 217.262 165.032 217.262Q164.540 217.262 164.106 217.030Q163.673 216.797 163.411 216.389Q163.149 215.981 163.149 215.489M165.032 216.985Q165.489 216.985 165.741 216.762Q165.993 216.539 166.081 216.188Q166.169 215.836 166.169 215.391Q166.169 214.961 166.075 214.623Q165.981 214.286 165.727 214.079Q165.474 213.871 165.032 213.871Q164.384 213.871 164.140 214.288Q163.895 214.704 163.895 215.391Q163.895 215.836 163.983 216.188Q164.071 216.539 164.323 216.762Q164.575 216.985 165.032 216.985M169.325 217.184L167.470 217.184L167.470 216.887Q167.743 216.887 167.911 216.840Q168.079 216.793 168.079 216.625L168.079 214.489Q168.079 214.274 168.017 214.178Q167.954 214.082 167.835 214.061Q167.716 214.039 167.470 214.039L167.470 213.743L168.661 213.657L168.661 214.391Q168.774 214.176 168.968 214.008Q169.161 213.840 169.399 213.748Q169.638 213.657 169.892 213.657Q171.059 213.657 171.059 214.735L171.059 216.625Q171.059 216.793 171.229 216.840Q171.399 216.887 171.669 216.887L171.669 217.184L169.813 217.184L169.813 216.887Q170.087 216.887 170.255 216.840Q170.423 216.793 170.423 216.625L170.423 214.750Q170.423 214.368 170.302 214.139Q170.181 213.911 169.829 213.911Q169.517 213.911 169.263 214.073Q169.009 214.235 168.862 214.504Q168.716 214.774 168.716 215.071L168.716 216.625Q168.716 216.793 168.886 216.840Q169.056 216.887 169.325 216.887\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M176.899 217.184L175.043 217.184L175.043 216.887Q175.317 216.887 175.485 216.840Q175.653 216.793 175.653 216.625L175.653 214.489Q175.653 214.274 175.590 214.178Q175.528 214.082 175.409 214.061Q175.290 214.039 175.043 214.039L175.043 213.743L176.235 213.657L176.235 214.391Q176.348 214.176 176.542 214.008Q176.735 213.840 176.973 213.748Q177.211 213.657 177.465 213.657Q178.426 213.657 178.602 214.368Q178.786 214.039 179.114 213.848Q179.442 213.657 179.821 213.657Q180.997 213.657 180.997 214.735L180.997 216.625Q180.997 216.793 181.165 216.840Q181.333 216.887 181.602 216.887L181.602 217.184L179.747 217.184L179.747 216.887Q180.020 216.887 180.188 216.842Q180.356 216.797 180.356 216.625L180.356 214.750Q180.356 214.364 180.231 214.137Q180.106 213.911 179.754 213.911Q179.450 213.911 179.194 214.073Q178.938 214.235 178.790 214.504Q178.641 214.774 178.641 215.071L178.641 216.625Q178.641 216.793 178.811 216.840Q178.981 216.887 179.251 216.887L179.251 217.184L177.395 217.184L177.395 216.887Q177.668 216.887 177.836 216.840Q178.004 216.793 178.004 216.625L178.004 214.750Q178.004 214.364 177.879 214.137Q177.754 213.911 177.403 213.911Q177.098 213.911 176.842 214.073Q176.586 214.235 176.438 214.504Q176.290 214.774 176.290 215.071L176.290 216.625Q176.290 216.793 176.460 216.840Q176.629 216.887 176.899 216.887L176.899 217.184M182.047 215.430Q182.047 214.950 182.280 214.534Q182.512 214.118 182.922 213.868Q183.333 213.618 183.809 213.618Q184.540 213.618 184.938 214.059Q185.336 214.500 185.336 215.231Q185.336 215.336 185.243 215.360L182.793 215.360L182.793 215.430Q182.793 215.840 182.915 216.196Q183.036 216.551 183.307 216.768Q183.579 216.985 184.008 216.985Q184.372 216.985 184.668 216.756Q184.965 216.528 185.067 216.176Q185.075 216.129 185.161 216.114L185.243 216.114Q185.336 216.141 185.336 216.223Q185.336 216.231 185.329 216.262Q185.266 216.489 185.127 216.672Q184.989 216.856 184.797 216.989Q184.606 217.121 184.387 217.192Q184.168 217.262 183.930 217.262Q183.559 217.262 183.221 217.125Q182.883 216.989 182.616 216.737Q182.348 216.485 182.198 216.145Q182.047 215.805 182.047 215.430M182.801 215.121L184.762 215.121Q184.762 214.817 184.661 214.526Q184.559 214.235 184.342 214.053Q184.126 213.871 183.809 213.871Q183.508 213.871 183.278 214.059Q183.047 214.246 182.924 214.538Q182.801 214.829 182.801 215.121M187.754 217.184L185.899 217.184L185.899 216.887Q186.172 216.887 186.340 216.840Q186.508 216.793 186.508 216.625L186.508 214.489Q186.508 214.274 186.446 214.178Q186.383 214.082 186.264 214.061Q186.145 214.039 185.899 214.039L185.899 213.743L187.090 213.657L187.090 214.391Q187.204 214.176 187.397 214.008Q187.590 213.840 187.829 213.748Q188.067 213.657 188.321 213.657Q189.282 213.657 189.458 214.368Q189.641 214.039 189.969 213.848Q190.297 213.657 190.676 213.657Q191.852 213.657 191.852 214.735L191.852 216.625Q191.852 216.793 192.020 216.840Q192.188 216.887 192.458 216.887L192.458 217.184L190.602 217.184L190.602 216.887Q190.876 216.887 191.043 216.842Q191.211 216.797 191.211 216.625L191.211 214.750Q191.211 214.364 191.086 214.137Q190.961 213.911 190.610 213.911Q190.305 213.911 190.049 214.073Q189.793 214.235 189.645 214.504Q189.497 214.774 189.497 215.071L189.497 216.625Q189.497 216.793 189.667 216.840Q189.836 216.887 190.106 216.887L190.106 217.184L188.251 217.184L188.251 216.887Q188.524 216.887 188.692 216.840Q188.860 216.793 188.860 216.625L188.860 214.750Q188.860 214.364 188.735 214.137Q188.610 213.911 188.258 213.911Q187.954 213.911 187.698 214.073Q187.442 214.235 187.293 214.504Q187.145 214.774 187.145 215.071L187.145 216.625Q187.145 216.793 187.315 216.840Q187.485 216.887 187.754 216.887L187.754 217.184M192.903 215.489Q192.903 214.985 193.159 214.553Q193.415 214.121 193.850 213.870Q194.286 213.618 194.786 213.618Q195.172 213.618 195.514 213.762Q195.856 213.907 196.118 214.168Q196.379 214.430 196.522 214.766Q196.665 215.102 196.665 215.489Q196.665 215.981 196.401 216.391Q196.137 216.801 195.708 217.032Q195.278 217.262 194.786 217.262Q194.293 217.262 193.860 217.030Q193.426 216.797 193.165 216.389Q192.903 215.981 192.903 215.489M194.786 216.985Q195.243 216.985 195.495 216.762Q195.747 216.539 195.835 216.188Q195.922 215.836 195.922 215.391Q195.922 214.961 195.829 214.623Q195.735 214.286 195.481 214.079Q195.227 213.871 194.786 213.871Q194.137 213.871 193.893 214.288Q193.649 214.704 193.649 215.391Q193.649 215.836 193.737 216.188Q193.825 216.539 194.077 216.762Q194.329 216.985 194.786 216.985M199.157 217.184L197.176 217.184L197.176 216.887Q197.446 216.887 197.614 216.842Q197.782 216.797 197.782 216.625L197.782 214.489Q197.782 214.274 197.719 214.178Q197.657 214.082 197.540 214.061Q197.422 214.039 197.176 214.039L197.176 213.743L198.344 213.657L198.344 214.442Q198.422 214.231 198.575 214.045Q198.727 213.860 198.926 213.758Q199.126 213.657 199.352 213.657Q199.598 213.657 199.790 213.801Q199.981 213.946 199.981 214.176Q199.981 214.332 199.876 214.442Q199.770 214.551 199.614 214.551Q199.458 214.551 199.348 214.442Q199.239 214.332 199.239 214.176Q199.239 214.016 199.344 213.911Q199.020 213.911 198.805 214.139Q198.590 214.368 198.495 214.707Q198.399 215.047 198.399 215.352L198.399 216.625Q198.399 216.793 198.626 216.840Q198.852 216.887 199.157 216.887L199.157 217.184M200.879 218.481Q200.993 218.559 201.168 218.559Q201.458 218.559 201.678 218.346Q201.899 218.133 202.024 217.832L202.313 217.184L201.040 214.297Q200.958 214.121 200.813 214.077Q200.668 214.032 200.399 214.032L200.399 213.735L202.118 213.735L202.118 214.032Q201.696 214.032 201.696 214.215Q201.696 214.227 201.711 214.297L202.649 216.422L203.481 214.512Q203.520 214.422 203.520 214.344Q203.520 214.204 203.418 214.118Q203.317 214.032 203.176 214.032L203.176 213.735L204.528 213.735L204.528 214.032Q204.274 214.032 204.081 214.157Q203.887 214.282 203.782 214.512L202.336 217.832Q202.223 218.086 202.057 218.309Q201.891 218.532 201.663 218.674Q201.434 218.817 201.168 218.817Q200.872 218.817 200.631 218.625Q200.391 218.434 200.391 218.145Q200.391 217.989 200.497 217.887Q200.602 217.786 200.751 217.786Q200.856 217.786 200.936 217.832Q201.016 217.879 201.063 217.957Q201.110 218.036 201.110 218.145Q201.110 218.266 201.049 218.354Q200.989 218.442 200.879 218.481\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M129.661 224.868L127.188 224.868Q127.110 224.856 127.061 224.807Q127.013 224.758 127.013 224.684Q127.013 224.610 127.061 224.561Q127.110 224.512 127.188 224.500L129.661 224.500L129.661 222.020Q129.688 221.852 129.845 221.852Q129.919 221.852 129.968 221.901Q130.017 221.950 130.028 222.020L130.028 224.500L132.501 224.500Q132.669 224.532 132.669 224.684Q132.669 224.836 132.501 224.868L130.028 224.868L130.028 227.348Q130.017 227.418 129.968 227.467Q129.919 227.516 129.845 227.516Q129.688 227.516 129.661 227.348\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M136.304 226.446L136.304 226.356Q136.355 226.149 136.550 226.125L137.433 226.125L137.433 223.797L136.578 223.797Q136.379 223.774 136.328 223.555L136.328 223.469Q136.379 223.258 136.578 223.235L137.433 223.235L137.433 222.782Q137.433 222.317 137.839 222.036Q138.246 221.754 138.726 221.754Q139.039 221.754 139.283 221.875Q139.527 221.996 139.527 222.278Q139.527 222.442 139.418 222.559Q139.308 222.676 139.144 222.676Q138.996 222.676 138.875 222.571Q138.754 222.465 138.754 222.317L138.672 222.317Q138.519 222.317 138.382 222.377Q138.246 222.438 138.160 222.553Q138.074 222.668 138.074 222.813L138.074 223.235L139.105 223.235Q139.300 223.254 139.351 223.469L139.351 223.555Q139.300 223.774 139.105 223.797L138.074 223.797L138.074 226.125L138.953 226.125Q139.148 226.149 139.199 226.356L139.199 226.446Q139.148 226.661 138.953 226.684L136.550 226.684Q136.355 226.661 136.304 226.446M143.742 225.196L141.300 225.196Q141.355 225.473 141.552 225.696Q141.750 225.918 142.027 226.041Q142.304 226.164 142.589 226.164Q143.062 226.164 143.285 225.875Q143.293 225.864 143.349 225.758Q143.406 225.653 143.455 225.610Q143.504 225.567 143.597 225.555L143.742 225.555Q143.933 225.575 143.992 225.789L143.992 225.844Q143.925 226.145 143.695 226.342Q143.464 226.539 143.152 226.631Q142.839 226.723 142.535 226.723Q142.050 226.723 141.611 226.495Q141.172 226.266 140.904 225.866Q140.636 225.465 140.636 224.973L140.636 224.914Q140.636 224.446 140.882 224.043Q141.129 223.641 141.537 223.407Q141.945 223.172 142.414 223.172Q142.918 223.172 143.271 223.395Q143.625 223.618 143.808 224.006Q143.992 224.395 143.992 224.899L143.992 224.957Q143.933 225.172 143.742 225.196M141.308 224.645L143.336 224.645Q143.289 224.235 143.050 223.983Q142.812 223.731 142.414 223.731Q142.019 223.731 141.713 223.993Q141.406 224.254 141.308 224.645M145.675 225.579L145.675 223.797L144.925 223.797Q144.726 223.774 144.675 223.555L144.675 223.469Q144.726 223.258 144.925 223.235L145.675 223.235L145.675 222.485Q145.726 222.278 145.925 222.250L146.070 222.250Q146.265 222.278 146.316 222.485L146.316 223.235L147.675 223.235Q147.867 223.254 147.925 223.469L147.925 223.555Q147.871 223.774 147.675 223.797L146.316 223.797L146.316 225.547Q146.316 226.164 146.890 226.164Q147.140 226.164 147.304 225.979Q147.468 225.793 147.468 225.547Q147.468 225.454 147.541 225.383Q147.613 225.313 147.714 225.301L147.859 225.301Q148.058 225.325 148.109 225.532L148.109 225.579Q148.109 225.903 147.925 226.166Q147.742 226.430 147.449 226.577Q147.156 226.723 146.836 226.723Q146.324 226.723 146 226.413Q145.675 226.102 145.675 225.579M149.281 224.957Q149.281 224.477 149.525 224.063Q149.769 223.649 150.185 223.411Q150.601 223.172 151.082 223.172Q151.636 223.172 152.015 223.282Q152.394 223.391 152.394 223.797Q152.394 223.965 152.281 224.088Q152.168 224.211 151.996 224.211Q151.824 224.211 151.705 224.096Q151.586 223.981 151.586 223.813L151.586 223.754Q151.425 223.731 151.089 223.731Q150.761 223.731 150.494 223.901Q150.226 224.071 150.074 224.354Q149.922 224.637 149.922 224.957Q149.922 225.278 150.093 225.559Q150.265 225.840 150.550 226.002Q150.836 226.164 151.164 226.164Q151.476 226.164 151.603 226.061Q151.730 225.957 151.847 225.768Q151.964 225.579 152.082 225.563L152.250 225.563Q152.355 225.575 152.420 225.643Q152.484 225.711 152.484 225.813Q152.484 225.860 152.464 225.899Q152.355 226.192 152.152 226.371Q151.949 226.551 151.673 226.637Q151.398 226.723 151.082 226.723Q150.597 226.723 150.181 226.485Q149.765 226.246 149.523 225.844Q149.281 225.442 149.281 224.957M153.039 226.446L153.039 226.356Q153.082 226.149 153.289 226.125L153.711 226.125L153.711 222.356L153.289 222.356Q153.082 222.332 153.039 222.118L153.039 222.028Q153.082 221.821 153.289 221.797L154.105 221.797Q154.300 221.821 154.351 222.028L154.351 223.579Q154.812 223.196 155.410 223.196Q155.757 223.196 155.996 223.336Q156.234 223.477 156.349 223.735Q156.464 223.993 156.464 224.348L156.464 226.125L156.890 226.125Q157.097 226.149 157.136 226.356L157.136 226.446Q157.097 226.661 156.890 226.684L155.496 226.684Q155.300 226.661 155.250 226.446L155.250 226.356Q155.300 226.145 155.496 226.125L155.824 226.125L155.824 224.379Q155.824 224.071 155.734 223.913Q155.644 223.754 155.351 223.754Q155.082 223.754 154.853 223.885Q154.625 224.016 154.488 224.245Q154.351 224.473 154.351 224.739L154.351 226.125L154.777 226.125Q154.984 226.149 155.023 226.356L155.023 226.446Q154.984 226.661 154.777 226.684L153.289 226.684Q153.082 226.661 153.039 226.446\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M162.493 226.461L162.028 223.797L161.868 223.797Q161.661 223.774 161.622 223.555L161.622 223.469Q161.661 223.258 161.868 223.235L163.036 223.235Q163.247 223.258 163.286 223.469L163.286 223.555Q163.247 223.774 163.036 223.797L162.563 223.797Q162.676 224.442 162.755 224.887Q162.833 225.332 162.883 225.651Q162.934 225.969 162.934 226.043Q162.942 225.871 163.227 224.875Q163.266 224.762 163.364 224.688Q163.462 224.614 163.583 224.614L163.661 224.614Q163.782 224.614 163.880 224.688Q163.977 224.762 164.012 224.875Q164.122 225.258 164.204 225.582Q164.286 225.907 164.286 226.043Q164.298 225.754 164.645 223.797L164.173 223.797Q163.965 223.774 163.926 223.555L163.926 223.469Q163.965 223.258 164.173 223.235L165.348 223.235Q165.540 223.258 165.598 223.469L165.598 223.555Q165.544 223.774 165.348 223.797L165.180 223.797L164.715 226.461Q164.692 226.579 164.604 226.651Q164.516 226.723 164.395 226.723L164.255 226.723Q164.133 226.723 164.038 226.651Q163.942 226.579 163.899 226.461Q163.852 226.282 163.780 226.026Q163.708 225.770 163.665 225.561Q163.622 225.352 163.622 225.250Q163.614 225.532 163.333 226.461Q163.305 226.571 163.208 226.647Q163.110 226.723 162.989 226.723L162.813 226.723Q162.692 226.723 162.604 226.651Q162.516 226.579 162.493 226.461M167.852 226.723Q167.380 226.723 166.995 226.479Q166.610 226.235 166.387 225.825Q166.165 225.414 166.165 224.957Q166.165 224.614 166.290 224.291Q166.415 223.969 166.645 223.715Q166.876 223.461 167.182 223.317Q167.489 223.172 167.852 223.172Q168.215 223.172 168.528 223.319Q168.840 223.465 169.063 223.711Q169.286 223.957 169.413 224.278Q169.540 224.598 169.540 224.957Q169.540 225.414 169.315 225.827Q169.090 226.239 168.706 226.481Q168.321 226.723 167.852 226.723M167.852 226.164Q168.317 226.164 168.608 225.770Q168.899 225.375 168.899 224.891Q168.899 224.598 168.764 224.330Q168.630 224.063 168.389 223.897Q168.149 223.731 167.852 223.731Q167.548 223.731 167.309 223.897Q167.071 224.063 166.936 224.330Q166.801 224.598 166.801 224.891Q166.801 225.371 167.094 225.768Q167.387 226.164 167.852 226.164M170.200 226.446L170.200 226.356Q170.258 226.149 170.450 226.125L171.161 226.125L171.161 223.797L170.450 223.797Q170.255 223.774 170.200 223.555L170.200 223.469Q170.258 223.258 170.450 223.235L171.551 223.235Q171.751 223.254 171.801 223.469L171.801 223.797Q172.063 223.512 172.419 223.354Q172.774 223.196 173.161 223.196Q173.454 223.196 173.688 223.330Q173.923 223.465 173.923 223.731Q173.923 223.899 173.813 224.016Q173.704 224.133 173.536 224.133Q173.383 224.133 173.268 224.022Q173.153 223.911 173.153 223.754Q172.778 223.754 172.464 223.955Q172.149 224.157 171.975 224.491Q171.801 224.825 171.801 225.204L171.801 226.125L172.747 226.125Q172.954 226.149 172.993 226.356L172.993 226.446Q172.954 226.661 172.747 226.684L170.450 226.684Q170.258 226.661 170.200 226.446M176.087 226.723Q175.622 226.723 175.256 226.473Q174.891 226.223 174.686 225.819Q174.481 225.414 174.481 224.957Q174.481 224.614 174.606 224.293Q174.731 223.973 174.964 223.723Q175.196 223.473 175.501 223.334Q175.805 223.196 176.161 223.196Q176.673 223.196 177.079 223.516L177.079 222.356L176.657 222.356Q176.446 222.332 176.407 222.118L176.407 222.028Q176.446 221.821 176.657 221.797L177.469 221.797Q177.669 221.821 177.719 222.028L177.719 226.125L178.145 226.125Q178.352 226.149 178.391 226.356L178.391 226.446Q178.352 226.661 178.145 226.684L177.329 226.684Q177.130 226.661 177.079 226.446L177.079 226.317Q176.883 226.508 176.622 226.616Q176.360 226.723 176.087 226.723M176.126 226.164Q176.485 226.164 176.737 225.895Q176.989 225.625 177.079 225.250L177.079 224.418Q177.020 224.231 176.893 224.080Q176.766 223.930 176.589 223.842Q176.411 223.754 176.215 223.754Q175.907 223.754 175.657 223.924Q175.407 224.094 175.262 224.379Q175.118 224.664 175.118 224.965Q175.118 225.414 175.403 225.789Q175.688 226.164 176.126 226.164\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M183.935 228.676Q183.322 228.219 182.920 227.584Q182.517 226.950 182.322 226.204Q182.127 225.457 182.127 224.684Q182.127 223.911 182.322 223.164Q182.517 222.418 182.920 221.784Q183.322 221.149 183.935 220.692Q183.947 220.688 183.955 220.686Q183.963 220.684 183.974 220.684L184.052 220.684Q184.091 220.684 184.117 220.711Q184.142 220.739 184.142 220.782Q184.142 220.832 184.111 220.852Q183.603 221.305 183.281 221.928Q182.959 222.551 182.818 223.246Q182.677 223.942 182.677 224.684Q182.677 225.418 182.816 226.118Q182.955 226.817 183.279 227.442Q183.603 228.067 184.111 228.516Q184.142 228.536 184.142 228.586Q184.142 228.629 184.117 228.657Q184.091 228.684 184.052 228.684L183.974 228.684Q183.966 228.680 183.957 228.678Q183.947 228.676 183.935 228.676M184.904 224.957Q184.904 224.461 185.154 224.036Q185.404 223.610 185.824 223.364Q186.244 223.118 186.744 223.118Q187.283 223.118 187.673 223.243Q188.064 223.368 188.064 223.782Q188.064 223.887 188.013 223.979Q187.963 224.071 187.871 224.121Q187.779 224.172 187.670 224.172Q187.564 224.172 187.472 224.121Q187.381 224.071 187.330 223.979Q187.279 223.887 187.279 223.782Q187.279 223.559 187.447 223.454Q187.224 223.395 186.752 223.395Q186.455 223.395 186.240 223.534Q186.025 223.672 185.894 223.903Q185.763 224.133 185.705 224.403Q185.646 224.672 185.646 224.957Q185.646 225.352 185.779 225.702Q185.912 226.051 186.183 226.268Q186.455 226.485 186.853 226.485Q187.228 226.485 187.504 226.268Q187.779 226.051 187.881 225.692Q187.896 225.629 187.959 225.629L188.064 225.629Q188.099 225.629 188.125 225.657Q188.150 225.684 188.150 225.723L188.150 225.746Q188.017 226.227 187.632 226.495Q187.248 226.762 186.744 226.762Q186.381 226.762 186.047 226.625Q185.713 226.489 185.453 226.239Q185.193 225.989 185.048 225.653Q184.904 225.317 184.904 224.957M188.638 224.989Q188.638 224.485 188.894 224.053Q189.150 223.621 189.586 223.370Q190.021 223.118 190.521 223.118Q190.908 223.118 191.250 223.262Q191.591 223.407 191.853 223.668Q192.115 223.930 192.257 224.266Q192.400 224.602 192.400 224.989Q192.400 225.481 192.136 225.891Q191.873 226.301 191.443 226.532Q191.013 226.762 190.521 226.762Q190.029 226.762 189.595 226.530Q189.162 226.297 188.900 225.889Q188.638 225.481 188.638 224.989M190.521 226.485Q190.978 226.485 191.230 226.262Q191.482 226.039 191.570 225.688Q191.658 225.336 191.658 224.891Q191.658 224.461 191.564 224.123Q191.470 223.786 191.216 223.579Q190.963 223.371 190.521 223.371Q189.873 223.371 189.629 223.788Q189.384 224.204 189.384 224.891Q189.384 225.336 189.472 225.688Q189.560 226.039 189.812 226.262Q190.064 226.485 190.521 226.485M194.814 226.684L192.959 226.684L192.959 226.387Q193.232 226.387 193.400 226.340Q193.568 226.293 193.568 226.125L193.568 223.989Q193.568 223.774 193.506 223.678Q193.443 223.582 193.324 223.561Q193.205 223.539 192.959 223.539L192.959 223.243L194.150 223.157L194.150 223.891Q194.263 223.676 194.457 223.508Q194.650 223.340 194.888 223.248Q195.127 223.157 195.381 223.157Q196.341 223.157 196.517 223.868Q196.701 223.539 197.029 223.348Q197.357 223.157 197.736 223.157Q198.912 223.157 198.912 224.235L198.912 226.125Q198.912 226.293 199.080 226.340Q199.248 226.387 199.517 226.387L199.517 226.684L197.662 226.684L197.662 226.387Q197.935 226.387 198.103 226.342Q198.271 226.297 198.271 226.125L198.271 224.250Q198.271 223.864 198.146 223.637Q198.021 223.411 197.670 223.411Q197.365 223.411 197.109 223.573Q196.853 223.735 196.705 224.004Q196.556 224.274 196.556 224.571L196.556 226.125Q196.556 226.293 196.726 226.340Q196.896 226.387 197.166 226.387L197.166 226.684L195.310 226.684L195.310 226.387Q195.584 226.387 195.752 226.340Q195.920 226.293 195.920 226.125L195.920 224.250Q195.920 223.864 195.795 223.637Q195.670 223.411 195.318 223.411Q195.013 223.411 194.757 223.573Q194.502 223.735 194.353 224.004Q194.205 224.274 194.205 224.571L194.205 226.125Q194.205 226.293 194.375 226.340Q194.545 226.387 194.814 226.387\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-41.674 -44.782)\">\u003Cpath d=\"M200.651 226.684L200.370 226.684L200.370 221.965Q200.370 221.750 200.308 221.655Q200.245 221.559 200.128 221.538Q200.011 221.516 199.765 221.516L199.765 221.219L200.987 221.133L200.987 223.621Q201.464 223.157 202.163 223.157Q202.644 223.157 203.052 223.401Q203.460 223.645 203.696 224.059Q203.933 224.473 203.933 224.957Q203.933 225.332 203.784 225.661Q203.636 225.989 203.366 226.241Q203.097 226.493 202.753 226.627Q202.409 226.762 202.050 226.762Q201.729 226.762 201.431 226.614Q201.132 226.465 200.925 226.204L200.651 226.684M201.011 224.012L201.011 225.852Q201.163 226.149 201.423 226.329Q201.683 226.508 201.995 226.508Q202.421 226.508 202.688 226.289Q202.956 226.071 203.071 225.725Q203.186 225.379 203.186 224.957Q203.186 224.309 202.938 223.860Q202.690 223.411 202.093 223.411Q201.757 223.411 201.468 223.569Q201.179 223.727 201.011 224.012M204.936 226.219Q204.936 226.036 205.073 225.899Q205.210 225.762 205.401 225.762Q205.593 225.762 205.726 225.895Q205.858 226.028 205.858 226.219Q205.858 226.418 205.726 226.551Q205.593 226.684 205.401 226.684Q205.210 226.684 205.073 226.547Q204.936 226.411 204.936 226.219M207.218 228.684L207.136 228.684Q207.101 228.684 207.075 228.655Q207.050 228.625 207.050 228.586Q207.050 228.536 207.081 228.516Q207.468 228.180 207.751 227.731Q208.034 227.282 208.200 226.782Q208.366 226.282 208.440 225.764Q208.515 225.246 208.515 224.684Q208.515 224.114 208.440 223.598Q208.366 223.082 208.200 222.586Q208.034 222.090 207.755 221.643Q207.476 221.196 207.081 220.852Q207.050 220.832 207.050 220.782Q207.050 220.743 207.075 220.713Q207.101 220.684 207.136 220.684L207.218 220.684Q207.229 220.684 207.239 220.686Q207.249 220.688 207.257 220.692Q207.870 221.149 208.272 221.784Q208.675 222.418 208.870 223.164Q209.065 223.911 209.065 224.684Q209.065 225.457 208.870 226.204Q208.675 226.950 208.272 227.584Q207.870 228.219 207.257 228.676Q207.245 228.676 207.237 228.678Q207.229 228.680 207.218 228.684\" 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=\"M83.86 129.945h85.359v-28.453H83.86Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-23.642 -109.06)\">\u003Cpath d=\"M128.786 226.684L126.806 226.684L126.806 226.387Q127.075 226.387 127.243 226.342Q127.411 226.297 127.411 226.125L127.411 223.989Q127.411 223.774 127.349 223.678Q127.286 223.582 127.169 223.561Q127.052 223.539 126.806 223.539L126.806 223.243L127.974 223.157L127.974 223.942Q128.052 223.731 128.204 223.545Q128.356 223.360 128.556 223.258Q128.755 223.157 128.981 223.157Q129.228 223.157 129.419 223.301Q129.610 223.446 129.610 223.676Q129.610 223.832 129.505 223.942Q129.399 224.051 129.243 224.051Q129.087 224.051 128.978 223.942Q128.868 223.832 128.868 223.676Q128.868 223.516 128.974 223.411Q128.649 223.411 128.435 223.639Q128.220 223.868 128.124 224.207Q128.028 224.547 128.028 224.852L128.028 226.125Q128.028 226.293 128.255 226.340Q128.481 226.387 128.786 226.387L128.786 226.684M130.091 224.930Q130.091 224.450 130.323 224.034Q130.556 223.618 130.966 223.368Q131.376 223.118 131.853 223.118Q132.583 223.118 132.981 223.559Q133.380 224 133.380 224.731Q133.380 224.836 133.286 224.860L130.837 224.860L130.837 224.930Q130.837 225.340 130.958 225.696Q131.079 226.051 131.351 226.268Q131.622 226.485 132.052 226.485Q132.415 226.485 132.712 226.256Q133.009 226.028 133.110 225.676Q133.118 225.629 133.204 225.614L133.286 225.614Q133.380 225.641 133.380 225.723Q133.380 225.731 133.372 225.762Q133.310 225.989 133.171 226.172Q133.032 226.356 132.841 226.489Q132.649 226.621 132.431 226.692Q132.212 226.762 131.974 226.762Q131.603 226.762 131.265 226.625Q130.927 226.489 130.659 226.237Q130.392 225.985 130.241 225.645Q130.091 225.305 130.091 224.930M130.845 224.621L132.806 224.621Q132.806 224.317 132.704 224.026Q132.603 223.735 132.386 223.553Q132.169 223.371 131.853 223.371Q131.552 223.371 131.321 223.559Q131.091 223.746 130.968 224.038Q130.845 224.329 130.845 224.621M133.868 227.293Q133.868 227.012 134.079 226.801Q134.290 226.590 134.575 226.500Q134.419 226.375 134.341 226.186Q134.263 225.996 134.263 225.797Q134.263 225.442 134.493 225.149Q134.126 224.809 134.126 224.340Q134.126 223.989 134.329 223.719Q134.532 223.450 134.853 223.303Q135.173 223.157 135.517 223.157Q136.036 223.157 136.407 223.438Q136.770 223.067 137.317 223.067Q137.497 223.067 137.624 223.194Q137.751 223.321 137.751 223.500Q137.751 223.606 137.673 223.684Q137.595 223.762 137.485 223.762Q137.376 223.762 137.300 223.686Q137.224 223.610 137.224 223.500Q137.224 223.399 137.263 223.348Q137.270 223.340 137.274 223.334Q137.278 223.329 137.278 223.325Q136.903 223.325 136.583 223.579Q136.903 223.918 136.903 224.340Q136.903 224.610 136.786 224.827Q136.669 225.043 136.464 225.202Q136.259 225.360 136.017 225.442Q135.774 225.524 135.517 225.524Q135.298 225.524 135.085 225.465Q134.872 225.407 134.677 225.286Q134.583 225.426 134.583 225.606Q134.583 225.813 134.720 225.965Q134.856 226.118 135.063 226.118L135.759 226.118Q136.247 226.118 136.659 226.202Q137.071 226.286 137.351 226.543Q137.630 226.801 137.630 227.293Q137.630 227.657 137.310 227.889Q136.989 228.121 136.548 228.223Q136.106 228.325 135.751 228.325Q135.395 228.325 134.952 228.223Q134.509 228.121 134.188 227.889Q133.868 227.657 133.868 227.293M134.372 227.293Q134.372 227.489 134.517 227.637Q134.661 227.786 134.874 227.875Q135.087 227.965 135.327 228.012Q135.567 228.059 135.751 228.059Q135.993 228.059 136.323 227.981Q136.653 227.903 136.890 227.729Q137.126 227.555 137.126 227.293Q137.126 226.887 136.716 226.778Q136.306 226.668 135.743 226.668L135.063 226.668Q134.794 226.668 134.583 226.846Q134.372 227.024 134.372 227.293M135.517 225.258Q136.239 225.258 136.239 224.340Q136.239 223.418 135.517 223.418Q134.790 223.418 134.790 224.340Q134.790 225.258 135.517 225.258M139.974 226.684L138.196 226.684L138.196 226.387Q138.470 226.387 138.638 226.340Q138.806 226.293 138.806 226.125L138.806 223.989Q138.806 223.774 138.749 223.678Q138.692 223.582 138.579 223.561Q138.466 223.539 138.220 223.539L138.220 223.243L139.419 223.157L139.419 226.125Q139.419 226.293 139.565 226.340Q139.712 226.387 139.974 226.387L139.974 226.684M138.532 221.762Q138.532 221.571 138.667 221.440Q138.802 221.309 138.997 221.309Q139.118 221.309 139.222 221.371Q139.325 221.434 139.388 221.538Q139.450 221.641 139.450 221.762Q139.450 221.957 139.319 222.092Q139.188 222.227 138.997 222.227Q138.798 222.227 138.665 222.094Q138.532 221.961 138.532 221.762M140.517 226.676L140.517 225.454Q140.517 225.426 140.548 225.395Q140.579 225.364 140.603 225.364L140.708 225.364Q140.778 225.364 140.794 225.426Q140.856 225.746 140.995 225.987Q141.134 226.227 141.366 226.368Q141.599 226.508 141.907 226.508Q142.145 226.508 142.354 226.448Q142.563 226.387 142.700 226.239Q142.837 226.090 142.837 225.844Q142.837 225.590 142.626 225.424Q142.415 225.258 142.145 225.204L141.524 225.090Q141.118 225.012 140.817 224.756Q140.517 224.500 140.517 224.125Q140.517 223.758 140.718 223.536Q140.919 223.313 141.243 223.215Q141.567 223.118 141.907 223.118Q142.372 223.118 142.669 223.325L142.892 223.141Q142.915 223.118 142.946 223.118L142.997 223.118Q143.028 223.118 143.056 223.145Q143.083 223.172 143.083 223.204L143.083 224.188Q143.083 224.219 143.058 224.248Q143.032 224.278 142.997 224.278L142.892 224.278Q142.856 224.278 142.829 224.250Q142.802 224.223 142.802 224.188Q142.802 223.789 142.550 223.569Q142.298 223.348 141.899 223.348Q141.544 223.348 141.261 223.471Q140.978 223.594 140.978 223.899Q140.978 224.118 141.179 224.250Q141.380 224.383 141.626 224.426L142.251 224.539Q142.681 224.629 142.989 224.926Q143.298 225.223 143.298 225.637Q143.298 226.207 142.899 226.485Q142.501 226.762 141.907 226.762Q141.356 226.762 141.005 226.426L140.708 226.739Q140.685 226.762 140.649 226.762L140.603 226.762Q140.579 226.762 140.548 226.731Q140.517 226.700 140.517 226.676M144.450 225.723L144.450 223.532L143.747 223.532L143.747 223.278Q144.103 223.278 144.345 223.045Q144.587 222.813 144.698 222.465Q144.810 222.118 144.810 221.762L145.091 221.762L145.091 223.235L146.267 223.235L146.267 223.532L145.091 223.532L145.091 225.707Q145.091 226.028 145.210 226.256Q145.329 226.485 145.610 226.485Q145.790 226.485 145.907 226.362Q146.024 226.239 146.077 226.059Q146.130 225.879 146.130 225.707L146.130 225.235L146.411 225.235L146.411 225.723Q146.411 225.977 146.306 226.217Q146.200 226.457 146.003 226.610Q145.806 226.762 145.548 226.762Q145.231 226.762 144.979 226.639Q144.728 226.516 144.589 226.282Q144.450 226.047 144.450 225.723M147.130 224.930Q147.130 224.450 147.362 224.034Q147.595 223.618 148.005 223.368Q148.415 223.118 148.892 223.118Q149.622 223.118 150.020 223.559Q150.419 224 150.419 224.731Q150.419 224.836 150.325 224.860L147.876 224.860L147.876 224.930Q147.876 225.340 147.997 225.696Q148.118 226.051 148.390 226.268Q148.661 226.485 149.091 226.485Q149.454 226.485 149.751 226.256Q150.048 226.028 150.149 225.676Q150.157 225.629 150.243 225.614L150.325 225.614Q150.419 225.641 150.419 225.723Q150.419 225.731 150.411 225.762Q150.349 225.989 150.210 226.172Q150.071 226.356 149.880 226.489Q149.688 226.621 149.470 226.692Q149.251 226.762 149.013 226.762Q148.642 226.762 148.304 226.625Q147.966 226.489 147.698 226.237Q147.431 225.985 147.280 225.645Q147.130 225.305 147.130 224.930M147.884 224.621L149.845 224.621Q149.845 224.317 149.743 224.026Q149.642 223.735 149.425 223.553Q149.208 223.371 148.892 223.371Q148.591 223.371 148.360 223.559Q148.130 223.746 148.007 224.038Q147.884 224.329 147.884 224.621M152.915 226.684L150.935 226.684L150.935 226.387Q151.204 226.387 151.372 226.342Q151.540 226.297 151.540 226.125L151.540 223.989Q151.540 223.774 151.478 223.678Q151.415 223.582 151.298 223.561Q151.181 223.539 150.935 223.539L150.935 223.243L152.103 223.157L152.103 223.942Q152.181 223.731 152.333 223.545Q152.485 223.360 152.685 223.258Q152.884 223.157 153.110 223.157Q153.356 223.157 153.548 223.301Q153.739 223.446 153.739 223.676Q153.739 223.832 153.634 223.942Q153.528 224.051 153.372 224.051Q153.216 224.051 153.106 223.942Q152.997 223.832 152.997 223.676Q152.997 223.516 153.103 223.411Q152.778 223.411 152.563 223.639Q152.349 223.868 152.253 224.207Q152.157 224.547 152.157 224.852L152.157 226.125Q152.157 226.293 152.384 226.340Q152.610 226.387 152.915 226.387\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.642 -109.06)\">\u003Cpath d=\"M157.143 226.446L157.143 226.356Q157.194 226.149 157.389 226.125L158.272 226.125L158.272 223.797L157.417 223.797Q157.218 223.774 157.167 223.555L157.167 223.469Q157.218 223.258 157.417 223.235L158.272 223.235L158.272 222.782Q158.272 222.317 158.678 222.036Q159.085 221.754 159.565 221.754Q159.878 221.754 160.122 221.875Q160.366 221.996 160.366 222.278Q160.366 222.442 160.257 222.559Q160.147 222.676 159.983 222.676Q159.835 222.676 159.714 222.571Q159.593 222.465 159.593 222.317L159.511 222.317Q159.358 222.317 159.221 222.377Q159.085 222.438 158.999 222.553Q158.913 222.668 158.913 222.813L158.913 223.235L159.944 223.235Q160.139 223.254 160.190 223.469L160.190 223.555Q160.139 223.774 159.944 223.797L158.913 223.797L158.913 226.125L159.792 226.125Q159.987 226.149 160.038 226.356L160.038 226.446Q159.987 226.661 159.792 226.684L157.389 226.684Q157.194 226.661 157.143 226.446M161.686 226.446L161.686 226.356Q161.737 226.149 161.932 226.125L162.971 226.125L162.971 223.797L161.999 223.797Q161.800 223.774 161.749 223.555L161.749 223.469Q161.800 223.258 161.999 223.235L163.366 223.235Q163.561 223.254 163.612 223.469L163.612 226.125L164.526 226.125Q164.721 226.149 164.772 226.356L164.772 226.446Q164.721 226.661 164.526 226.684L161.932 226.684Q161.737 226.661 161.686 226.446M162.718 222.258L162.718 222.204Q162.718 222.032 162.854 221.911Q162.991 221.789 163.167 221.789Q163.339 221.789 163.475 221.911Q163.612 222.032 163.612 222.204L163.612 222.258Q163.612 222.434 163.475 222.555Q163.339 222.676 163.167 222.676Q162.991 222.676 162.854 222.555Q162.718 222.434 162.718 222.258M165.764 226.446L165.764 226.356Q165.815 226.149 166.011 226.125L167.116 226.125L167.116 222.356L166.011 222.356Q165.815 222.332 165.764 222.118L165.764 222.028Q165.815 221.821 166.011 221.797L167.507 221.797Q167.698 221.821 167.757 222.028L167.757 226.125L168.858 226.125Q169.057 226.149 169.108 226.356L169.108 226.446Q169.057 226.661 168.858 226.684L166.011 226.684Q165.815 226.661 165.764 226.446M173.073 225.196L170.632 225.196Q170.686 225.473 170.884 225.696Q171.081 225.918 171.358 226.041Q171.636 226.164 171.921 226.164Q172.393 226.164 172.616 225.875Q172.624 225.864 172.680 225.758Q172.737 225.653 172.786 225.610Q172.835 225.567 172.928 225.555L173.073 225.555Q173.264 225.575 173.323 225.789L173.323 225.844Q173.257 226.145 173.026 226.342Q172.796 226.539 172.483 226.631Q172.171 226.723 171.866 226.723Q171.382 226.723 170.942 226.495Q170.503 226.266 170.235 225.866Q169.968 225.465 169.968 224.973L169.968 224.914Q169.968 224.446 170.214 224.043Q170.460 223.641 170.868 223.407Q171.276 223.172 171.745 223.172Q172.249 223.172 172.602 223.395Q172.956 223.618 173.139 224.006Q173.323 224.395 173.323 224.899L173.323 224.957Q173.264 225.172 173.073 225.196M170.639 224.645L172.667 224.645Q172.620 224.235 172.382 223.983Q172.143 223.731 171.745 223.731Q171.350 223.731 171.044 223.993Q170.737 224.254 170.639 224.645\" 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=\"M95.242 70.194h62.596V41.74H95.242Z\"\u002F>\u003Cg transform=\"translate(-6.375 -168.272)\">\u003Cpath d=\"M126.770 226.446L126.770 226.356Q126.829 226.145 127.020 226.125L127.243 226.125L128.196 221.942Q128.220 221.825 128.315 221.750Q128.411 221.676 128.524 221.676L128.798 221.676Q128.911 221.676 129.007 221.752Q129.103 221.829 129.126 221.942L130.075 226.125L130.302 226.125Q130.509 226.149 130.548 226.356L130.548 226.446Q130.497 226.661 130.302 226.684L129.220 226.684Q129.024 226.661 128.974 226.446L128.974 226.356Q129.024 226.149 129.220 226.125L129.419 226.125Q129.290 225.559 129.267 225.477L128.052 225.477Q128.009 225.661 127.899 226.125L128.099 226.125Q128.298 226.149 128.349 226.356L128.349 226.446Q128.298 226.661 128.099 226.684L127.020 226.684Q126.813 226.661 126.770 226.446M128.173 224.914L129.149 224.914Q128.669 222.782 128.669 222.438L128.661 222.438Q128.661 222.621 128.520 223.305Q128.380 223.989 128.173 224.914M131.009 226.446L131.009 226.356Q131.067 226.149 131.259 226.125L131.626 226.125L131.626 222.356L131.259 222.356Q131.067 222.332 131.009 222.118L131.009 222.028Q131.067 221.821 131.259 221.797L132.786 221.797Q132.981 221.821 133.032 222.028L133.032 222.118Q132.981 222.332 132.786 222.356L132.267 222.356L132.267 226.125L134.099 226.125L134.099 225.485Q134.149 225.278 134.345 225.250L134.489 225.250Q134.688 225.278 134.739 225.485L134.739 226.446Q134.688 226.661 134.489 226.684L131.259 226.684Q131.067 226.661 131.009 226.446M135.599 225.082L135.599 222.356L135.290 222.356Q135.079 222.332 135.040 222.118L135.040 222.028Q135.079 221.821 135.290 221.797L136.552 221.797Q136.759 221.821 136.802 222.028L136.802 222.118Q136.759 222.332 136.552 222.356L136.239 222.356L136.239 225.028Q136.239 225.293 136.345 225.569Q136.450 225.844 136.663 226.024Q136.876 226.204 137.153 226.204Q137.435 226.204 137.644 226.024Q137.853 225.844 137.958 225.569Q138.063 225.293 138.063 225.028L138.063 222.356L137.751 222.356Q137.544 222.332 137.505 222.118L137.505 222.028Q137.544 221.821 137.751 221.797L139.017 221.797Q139.224 221.821 139.263 222.028L139.263 222.118Q139.224 222.332 139.017 222.356L138.704 222.356L138.704 225.082Q138.704 225.504 138.501 225.893Q138.298 226.282 137.940 226.522Q137.583 226.762 137.153 226.762Q136.501 226.762 136.050 226.250Q135.599 225.739 135.599 225.082\" 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=\"M83.86 10.443h85.359V-18.01H83.86Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-24.677 -228.467)\">\u003Cpath d=\"M128.595 226.762Q128.114 226.762 127.706 226.518Q127.298 226.274 127.060 225.860Q126.821 225.446 126.821 224.957Q126.821 224.465 127.079 224.049Q127.337 223.633 127.769 223.395Q128.200 223.157 128.692 223.157Q129.313 223.157 129.763 223.594L129.763 221.965Q129.763 221.750 129.700 221.655Q129.638 221.559 129.520 221.538Q129.403 221.516 129.157 221.516L129.157 221.219L130.380 221.133L130.380 225.942Q130.380 226.153 130.442 226.248Q130.505 226.344 130.622 226.366Q130.739 226.387 130.989 226.387L130.989 226.684L129.739 226.762L129.739 226.278Q129.274 226.762 128.595 226.762M128.661 226.508Q129.001 226.508 129.294 226.317Q129.587 226.125 129.739 225.829L129.739 223.996Q129.591 223.723 129.329 223.567Q129.067 223.411 128.755 223.411Q128.130 223.411 127.847 223.858Q127.563 224.305 127.563 224.965Q127.563 225.610 127.815 226.059Q128.067 226.508 128.661 226.508M131.595 225.852Q131.595 225.368 131.997 225.073Q132.399 224.778 132.950 224.659Q133.501 224.539 133.993 224.539L133.993 224.250Q133.993 224.024 133.878 223.817Q133.763 223.610 133.565 223.491Q133.368 223.371 133.138 223.371Q132.712 223.371 132.427 223.477Q132.497 223.504 132.544 223.559Q132.591 223.614 132.616 223.684Q132.642 223.754 132.642 223.829Q132.642 223.934 132.591 224.026Q132.540 224.118 132.448 224.168Q132.356 224.219 132.251 224.219Q132.145 224.219 132.054 224.168Q131.962 224.118 131.911 224.026Q131.860 223.934 131.860 223.829Q131.860 223.411 132.249 223.264Q132.638 223.118 133.138 223.118Q133.470 223.118 133.823 223.248Q134.177 223.379 134.405 223.633Q134.634 223.887 134.634 224.235L134.634 226.036Q134.634 226.168 134.706 226.278Q134.778 226.387 134.907 226.387Q135.032 226.387 135.101 226.282Q135.169 226.176 135.169 226.036L135.169 225.524L135.450 225.524L135.450 226.036Q135.450 226.239 135.333 226.397Q135.216 226.555 135.034 226.639Q134.853 226.723 134.649 226.723Q134.419 226.723 134.267 226.551Q134.114 226.379 134.083 226.149Q133.923 226.430 133.614 226.596Q133.306 226.762 132.954 226.762Q132.442 226.762 132.019 226.539Q131.595 226.317 131.595 225.852M132.282 225.852Q132.282 226.137 132.509 226.323Q132.735 226.508 133.028 226.508Q133.274 226.508 133.499 226.391Q133.724 226.274 133.858 226.071Q133.993 225.868 133.993 225.614L133.993 224.782Q133.728 224.782 133.442 224.836Q133.157 224.891 132.886 225.020Q132.614 225.149 132.448 225.356Q132.282 225.563 132.282 225.852M136.368 225.723L136.368 223.532L135.665 223.532L135.665 223.278Q136.020 223.278 136.263 223.045Q136.505 222.813 136.616 222.465Q136.728 222.118 136.728 221.762L137.009 221.762L137.009 223.235L138.185 223.235L138.185 223.532L137.009 223.532L137.009 225.707Q137.009 226.028 137.128 226.256Q137.247 226.485 137.528 226.485Q137.708 226.485 137.825 226.362Q137.942 226.239 137.995 226.059Q138.048 225.879 138.048 225.707L138.048 225.235L138.329 225.235L138.329 225.723Q138.329 225.977 138.224 226.217Q138.118 226.457 137.921 226.610Q137.724 226.762 137.466 226.762Q137.149 226.762 136.897 226.639Q136.645 226.516 136.507 226.282Q136.368 226.047 136.368 225.723M139.145 225.852Q139.145 225.368 139.548 225.073Q139.950 224.778 140.501 224.659Q141.052 224.539 141.544 224.539L141.544 224.250Q141.544 224.024 141.429 223.817Q141.313 223.610 141.116 223.491Q140.919 223.371 140.688 223.371Q140.263 223.371 139.978 223.477Q140.048 223.504 140.095 223.559Q140.142 223.614 140.167 223.684Q140.192 223.754 140.192 223.829Q140.192 223.934 140.142 224.026Q140.091 224.118 139.999 224.168Q139.907 224.219 139.802 224.219Q139.696 224.219 139.604 224.168Q139.513 224.118 139.462 224.026Q139.411 223.934 139.411 223.829Q139.411 223.411 139.800 223.264Q140.188 223.118 140.688 223.118Q141.020 223.118 141.374 223.248Q141.728 223.379 141.956 223.633Q142.185 223.887 142.185 224.235L142.185 226.036Q142.185 226.168 142.257 226.278Q142.329 226.387 142.458 226.387Q142.583 226.387 142.651 226.282Q142.720 226.176 142.720 226.036L142.720 225.524L143.001 225.524L143.001 226.036Q143.001 226.239 142.884 226.397Q142.767 226.555 142.585 226.639Q142.403 226.723 142.200 226.723Q141.970 226.723 141.817 226.551Q141.665 226.379 141.634 226.149Q141.474 226.430 141.165 226.596Q140.856 226.762 140.505 226.762Q139.993 226.762 139.569 226.539Q139.145 226.317 139.145 225.852M139.833 225.852Q139.833 226.137 140.060 226.323Q140.286 226.508 140.579 226.508Q140.825 226.508 141.050 226.391Q141.274 226.274 141.409 226.071Q141.544 225.868 141.544 225.614L141.544 224.782Q141.278 224.782 140.993 224.836Q140.708 224.891 140.436 225.020Q140.165 225.149 139.999 225.356Q139.833 225.563 139.833 225.852\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-24.677 -228.467)\">\u003Cpath d=\"M148.069 226.684L146.214 226.684L146.214 226.387Q146.487 226.387 146.655 226.340Q146.823 226.293 146.823 226.125L146.823 223.989Q146.823 223.774 146.760 223.678Q146.698 223.582 146.579 223.561Q146.460 223.539 146.214 223.539L146.214 223.243L147.405 223.157L147.405 223.891Q147.518 223.676 147.712 223.508Q147.905 223.340 148.143 223.248Q148.381 223.157 148.635 223.157Q149.596 223.157 149.772 223.868Q149.956 223.539 150.284 223.348Q150.612 223.157 150.991 223.157Q152.167 223.157 152.167 224.235L152.167 226.125Q152.167 226.293 152.335 226.340Q152.503 226.387 152.772 226.387L152.772 226.684L150.917 226.684L150.917 226.387Q151.190 226.387 151.358 226.342Q151.526 226.297 151.526 226.125L151.526 224.250Q151.526 223.864 151.401 223.637Q151.276 223.411 150.924 223.411Q150.620 223.411 150.364 223.573Q150.108 223.735 149.960 224.004Q149.811 224.274 149.811 224.571L149.811 226.125Q149.811 226.293 149.981 226.340Q150.151 226.387 150.421 226.387L150.421 226.684L148.565 226.684L148.565 226.387Q148.839 226.387 149.006 226.340Q149.174 226.293 149.174 226.125L149.174 224.250Q149.174 223.864 149.049 223.637Q148.924 223.411 148.573 223.411Q148.268 223.411 148.012 223.573Q147.756 223.735 147.608 224.004Q147.460 224.274 147.460 224.571L147.460 226.125Q147.460 226.293 147.630 226.340Q147.799 226.387 148.069 226.387L148.069 226.684M153.217 224.930Q153.217 224.450 153.450 224.034Q153.682 223.618 154.092 223.368Q154.503 223.118 154.979 223.118Q155.710 223.118 156.108 223.559Q156.506 224 156.506 224.731Q156.506 224.836 156.413 224.860L153.964 224.860L153.964 224.930Q153.964 225.340 154.085 225.696Q154.206 226.051 154.477 226.268Q154.749 226.485 155.178 226.485Q155.542 226.485 155.839 226.256Q156.135 226.028 156.237 225.676Q156.245 225.629 156.331 225.614L156.413 225.614Q156.506 225.641 156.506 225.723Q156.506 225.731 156.499 225.762Q156.436 225.989 156.297 226.172Q156.159 226.356 155.967 226.489Q155.776 226.621 155.557 226.692Q155.339 226.762 155.100 226.762Q154.729 226.762 154.391 226.625Q154.053 226.489 153.786 226.237Q153.518 225.985 153.368 225.645Q153.217 225.305 153.217 224.930M153.971 224.621L155.932 224.621Q155.932 224.317 155.831 224.026Q155.729 223.735 155.512 223.553Q155.296 223.371 154.979 223.371Q154.678 223.371 154.448 223.559Q154.217 223.746 154.094 224.038Q153.971 224.329 153.971 224.621M158.924 226.684L157.069 226.684L157.069 226.387Q157.342 226.387 157.510 226.340Q157.678 226.293 157.678 226.125L157.678 223.989Q157.678 223.774 157.616 223.678Q157.553 223.582 157.434 223.561Q157.315 223.539 157.069 223.539L157.069 223.243L158.260 223.157L158.260 223.891Q158.374 223.676 158.567 223.508Q158.760 223.340 158.999 223.248Q159.237 223.157 159.491 223.157Q160.452 223.157 160.628 223.868Q160.811 223.539 161.139 223.348Q161.467 223.157 161.846 223.157Q163.022 223.157 163.022 224.235L163.022 226.125Q163.022 226.293 163.190 226.340Q163.358 226.387 163.628 226.387L163.628 226.684L161.772 226.684L161.772 226.387Q162.046 226.387 162.214 226.342Q162.381 226.297 162.381 226.125L162.381 224.250Q162.381 223.864 162.256 223.637Q162.131 223.411 161.780 223.411Q161.475 223.411 161.219 223.573Q160.964 223.735 160.815 224.004Q160.667 224.274 160.667 224.571L160.667 226.125Q160.667 226.293 160.837 226.340Q161.006 226.387 161.276 226.387L161.276 226.684L159.421 226.684L159.421 226.387Q159.694 226.387 159.862 226.340Q160.030 226.293 160.030 226.125L160.030 224.250Q160.030 223.864 159.905 223.637Q159.780 223.411 159.428 223.411Q159.124 223.411 158.868 223.573Q158.612 223.735 158.464 224.004Q158.315 224.274 158.315 224.571L158.315 226.125Q158.315 226.293 158.485 226.340Q158.655 226.387 158.924 226.387L158.924 226.684M164.073 224.989Q164.073 224.485 164.329 224.053Q164.585 223.621 165.020 223.370Q165.456 223.118 165.956 223.118Q166.342 223.118 166.684 223.262Q167.026 223.407 167.288 223.668Q167.549 223.930 167.692 224.266Q167.835 224.602 167.835 224.989Q167.835 225.481 167.571 225.891Q167.307 226.301 166.878 226.532Q166.448 226.762 165.956 226.762Q165.464 226.762 165.030 226.530Q164.596 226.297 164.335 225.889Q164.073 225.481 164.073 224.989M165.956 226.485Q166.413 226.485 166.665 226.262Q166.917 226.039 167.005 225.688Q167.092 225.336 167.092 224.891Q167.092 224.461 166.999 224.123Q166.905 223.786 166.651 223.579Q166.397 223.371 165.956 223.371Q165.307 223.371 165.063 223.788Q164.819 224.204 164.819 224.891Q164.819 225.336 164.907 225.688Q164.995 226.039 165.247 226.262Q165.499 226.485 165.956 226.485M170.327 226.684L168.346 226.684L168.346 226.387Q168.616 226.387 168.784 226.342Q168.952 226.297 168.952 226.125L168.952 223.989Q168.952 223.774 168.889 223.678Q168.827 223.582 168.710 223.561Q168.592 223.539 168.346 223.539L168.346 223.243L169.514 223.157L169.514 223.942Q169.592 223.731 169.745 223.545Q169.897 223.360 170.096 223.258Q170.296 223.157 170.522 223.157Q170.768 223.157 170.960 223.301Q171.151 223.446 171.151 223.676Q171.151 223.832 171.046 223.942Q170.940 224.051 170.784 224.051Q170.628 224.051 170.518 223.942Q170.409 223.832 170.409 223.676Q170.409 223.516 170.514 223.411Q170.190 223.411 169.975 223.639Q169.760 223.868 169.665 224.207Q169.569 224.547 169.569 224.852L169.569 226.125Q169.569 226.293 169.796 226.340Q170.022 226.387 170.327 226.387L170.327 226.684M172.049 227.981Q172.163 228.059 172.339 228.059Q172.628 228.059 172.848 227.846Q173.069 227.633 173.194 227.332L173.483 226.684L172.210 223.797Q172.128 223.621 171.983 223.577Q171.839 223.532 171.569 223.532L171.569 223.235L173.288 223.235L173.288 223.532Q172.866 223.532 172.866 223.715Q172.866 223.727 172.881 223.797L173.819 225.922L174.651 224.012Q174.690 223.922 174.690 223.844Q174.690 223.704 174.589 223.618Q174.487 223.532 174.346 223.532L174.346 223.235L175.698 223.235L175.698 223.532Q175.444 223.532 175.251 223.657Q175.057 223.782 174.952 224.012L173.506 227.332Q173.393 227.586 173.227 227.809Q173.061 228.032 172.833 228.174Q172.604 228.317 172.339 228.317Q172.042 228.317 171.801 228.125Q171.561 227.934 171.561 227.645Q171.561 227.489 171.667 227.387Q171.772 227.286 171.921 227.286Q172.026 227.286 172.106 227.332Q172.186 227.379 172.233 227.457Q172.280 227.536 172.280 227.645Q172.280 227.766 172.219 227.854Q172.159 227.942 172.049 227.981\" 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=\"M95.242-49.308h62.596V-72.07H95.242Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-13.045 -284.928)\">\u003Cpath d=\"M128.708 226.684L126.853 226.684L126.853 226.387Q127.126 226.387 127.294 226.340Q127.462 226.293 127.462 226.125L127.462 223.989Q127.462 223.774 127.399 223.678Q127.337 223.582 127.218 223.561Q127.099 223.539 126.853 223.539L126.853 223.243L128.044 223.157L128.044 223.891Q128.157 223.676 128.351 223.508Q128.544 223.340 128.782 223.248Q129.020 223.157 129.274 223.157Q130.442 223.157 130.442 224.235L130.442 226.125Q130.442 226.293 130.612 226.340Q130.782 226.387 131.052 226.387L131.052 226.684L129.196 226.684L129.196 226.387Q129.470 226.387 129.638 226.340Q129.806 226.293 129.806 226.125L129.806 224.250Q129.806 223.868 129.685 223.639Q129.563 223.411 129.212 223.411Q128.899 223.411 128.645 223.573Q128.392 223.735 128.245 224.004Q128.099 224.274 128.099 224.571L128.099 226.125Q128.099 226.293 128.269 226.340Q128.438 226.387 128.708 226.387L128.708 226.684M131.497 224.930Q131.497 224.450 131.729 224.034Q131.962 223.618 132.372 223.368Q132.782 223.118 133.259 223.118Q133.989 223.118 134.388 223.559Q134.786 224 134.786 224.731Q134.786 224.836 134.692 224.860L132.243 224.860L132.243 224.930Q132.243 225.340 132.364 225.696Q132.485 226.051 132.757 226.268Q133.028 226.485 133.458 226.485Q133.821 226.485 134.118 226.256Q134.415 226.028 134.517 225.676Q134.524 225.629 134.610 225.614L134.692 225.614Q134.786 225.641 134.786 225.723Q134.786 225.731 134.778 225.762Q134.716 225.989 134.577 226.172Q134.438 226.356 134.247 226.489Q134.056 226.621 133.837 226.692Q133.618 226.762 133.380 226.762Q133.009 226.762 132.671 226.625Q132.333 226.489 132.065 226.237Q131.798 225.985 131.647 225.645Q131.497 225.305 131.497 224.930M132.251 224.621L134.212 224.621Q134.212 224.317 134.110 224.026Q134.009 223.735 133.792 223.553Q133.575 223.371 133.259 223.371Q132.958 223.371 132.728 223.559Q132.497 223.746 132.374 224.038Q132.251 224.329 132.251 224.621M136.860 226.653L135.790 223.797Q135.724 223.618 135.593 223.575Q135.462 223.532 135.204 223.532L135.204 223.235L136.884 223.235L136.884 223.532Q136.435 223.532 136.435 223.731Q136.438 223.746 136.440 223.764Q136.442 223.782 136.442 223.797L137.235 225.891L137.946 223.981Q137.911 223.887 137.911 223.842Q137.911 223.797 137.876 223.797Q137.810 223.618 137.679 223.575Q137.548 223.532 137.294 223.532L137.294 223.235L138.884 223.235L138.884 223.532Q138.435 223.532 138.435 223.731Q138.438 223.750 138.440 223.768Q138.442 223.786 138.442 223.797L139.274 226.012L140.028 224.012Q140.052 223.954 140.052 223.883Q140.052 223.723 139.915 223.627Q139.778 223.532 139.610 223.532L139.610 223.235L140.997 223.235L140.997 223.532Q140.763 223.532 140.585 223.659Q140.407 223.786 140.325 224.012L139.341 226.653Q139.286 226.762 139.173 226.762L139.114 226.762Q139.001 226.762 138.958 226.653L138.099 224.379L137.243 226.653Q137.204 226.762 137.083 226.762L137.028 226.762Q136.915 226.762 136.860 226.653\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-13.045 -284.928)\">\u003Cpath d=\"M144.314 226.446L144.314 226.356Q144.353 226.149 144.564 226.125L144.872 226.125L144.872 222.356L144.564 222.356Q144.353 222.332 144.314 222.118L144.314 222.028Q144.353 221.821 144.564 221.797L146.513 221.797Q146.911 221.797 147.257 221.998Q147.603 222.200 147.810 222.545Q148.017 222.891 148.017 223.293Q148.017 223.700 147.812 224.043Q147.607 224.387 147.261 224.592Q146.915 224.797 146.513 224.797L145.513 224.797L145.513 226.125L145.825 226.125Q146.036 226.149 146.075 226.356L146.075 226.446Q146.036 226.661 145.825 226.684L144.564 226.684Q144.353 226.661 144.314 226.446M145.513 222.356L145.513 224.235L146.353 224.235Q146.614 224.235 146.851 224.112Q147.087 223.989 147.232 223.774Q147.376 223.559 147.376 223.293Q147.376 223.024 147.232 222.813Q147.087 222.602 146.851 222.479Q146.614 222.356 146.353 222.356L145.513 222.356M150.642 226.762Q150.192 226.762 149.827 226.538Q149.462 226.313 149.208 225.930Q148.954 225.547 148.829 225.104Q148.704 224.661 148.704 224.235Q148.704 223.809 148.829 223.370Q148.954 222.930 149.208 222.547Q149.462 222.164 149.821 221.940Q150.181 221.715 150.642 221.715Q150.919 221.715 151.177 221.807Q151.435 221.899 151.650 222.067L151.782 221.829Q151.810 221.778 151.864 221.746Q151.919 221.715 151.978 221.715L152.056 221.715Q152.150 221.727 152.212 221.786Q152.275 221.844 152.286 221.950L152.286 223.278Q152.275 223.379 152.212 223.442Q152.150 223.504 152.056 223.516L151.888 223.516Q151.786 223.504 151.724 223.438Q151.661 223.371 151.650 223.278Q151.610 223.012 151.487 222.788Q151.364 222.563 151.161 222.420Q150.958 222.278 150.696 222.278Q150.364 222.278 150.112 222.461Q149.860 222.645 149.689 222.946Q149.517 223.246 149.431 223.588Q149.345 223.930 149.345 224.235Q149.345 224.539 149.429 224.881Q149.513 225.223 149.685 225.526Q149.857 225.829 150.114 226.016Q150.372 226.204 150.704 226.204Q151.087 226.204 151.368 225.930Q151.650 225.657 151.650 225.270Q151.677 225.059 151.888 225.036L152.056 225.036Q152.286 225.075 152.286 225.301Q152.286 225.618 152.150 225.889Q152.013 226.161 151.778 226.358Q151.544 226.555 151.253 226.659Q150.962 226.762 150.642 226.762\" 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=\"M177.754 67.349h34.144V44.586h-34.144Z\"\u002F>\u003Cg transform=\"translate(64.036 -168.272)\">\u003Cpath d=\"M128.806 226.762Q128.356 226.762 127.991 226.538Q127.626 226.313 127.372 225.930Q127.118 225.547 126.993 225.104Q126.868 224.661 126.868 224.235Q126.868 223.809 126.993 223.370Q127.118 222.930 127.372 222.547Q127.626 222.164 127.985 221.940Q128.345 221.715 128.806 221.715Q129.083 221.715 129.341 221.807Q129.599 221.899 129.813 222.067L129.946 221.829Q129.974 221.778 130.028 221.746Q130.083 221.715 130.142 221.715L130.220 221.715Q130.313 221.727 130.376 221.786Q130.438 221.844 130.450 221.950L130.450 223.278Q130.438 223.379 130.376 223.442Q130.313 223.504 130.220 223.516L130.052 223.516Q129.950 223.504 129.888 223.438Q129.825 223.371 129.813 223.278Q129.774 223.012 129.651 222.788Q129.528 222.563 129.325 222.420Q129.122 222.278 128.860 222.278Q128.528 222.278 128.276 222.461Q128.024 222.645 127.853 222.946Q127.681 223.246 127.595 223.588Q127.509 223.930 127.509 224.235Q127.509 224.539 127.593 224.881Q127.677 225.223 127.849 225.526Q128.020 225.829 128.278 226.016Q128.536 226.204 128.868 226.204Q129.251 226.204 129.532 225.930Q129.813 225.657 129.813 225.270Q129.841 225.059 130.052 225.036L130.220 225.036Q130.450 225.075 130.450 225.301Q130.450 225.618 130.313 225.889Q130.177 226.161 129.942 226.358Q129.708 226.555 129.417 226.659Q129.126 226.762 128.806 226.762M133.052 226.762Q132.603 226.762 132.237 226.538Q131.872 226.313 131.618 225.930Q131.364 225.547 131.239 225.104Q131.114 224.661 131.114 224.235Q131.114 223.809 131.239 223.370Q131.364 222.930 131.618 222.547Q131.872 222.164 132.231 221.940Q132.591 221.715 133.052 221.715Q133.329 221.715 133.587 221.807Q133.845 221.899 134.060 222.067L134.192 221.829Q134.220 221.778 134.274 221.746Q134.329 221.715 134.388 221.715L134.466 221.715Q134.560 221.727 134.622 221.786Q134.685 221.844 134.696 221.950L134.696 223.278Q134.685 223.379 134.622 223.442Q134.560 223.504 134.466 223.516L134.298 223.516Q134.196 223.504 134.134 223.438Q134.071 223.371 134.060 223.278Q134.020 223.012 133.897 222.788Q133.774 222.563 133.571 222.420Q133.368 222.278 133.106 222.278Q132.774 222.278 132.522 222.461Q132.270 222.645 132.099 222.946Q131.927 223.246 131.841 223.588Q131.755 223.930 131.755 224.235Q131.755 224.539 131.839 224.881Q131.923 225.223 132.095 225.526Q132.267 225.829 132.524 226.016Q132.782 226.204 133.114 226.204Q133.497 226.204 133.778 225.930Q134.060 225.657 134.060 225.270Q134.087 225.059 134.298 225.036L134.466 225.036Q134.696 225.075 134.696 225.301Q134.696 225.618 134.560 225.889Q134.423 226.161 134.188 226.358Q133.954 226.555 133.663 226.659Q133.372 226.762 133.052 226.762\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M158.038 55.967h17.516\"\u002F>\u003Cpath stroke=\"none\" d=\"m177.554 55.967-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(51.286 -152.623)\">\u003Cpath d=\"M130.188 226.684L127.188 226.684Q127.087 226.684 127.005 226.602Q126.923 226.520 126.923 226.418L126.923 226.309Q126.923 226.223 126.974 226.157L129.571 222.356L127.661 222.356L127.661 222.868Q127.614 223.082 127.411 223.110L127.267 223.110Q127.071 223.082 127.020 222.868L127.020 222.028Q127.071 221.821 127.267 221.797L130.134 221.797Q130.247 221.797 130.321 221.875Q130.395 221.954 130.395 222.059L130.395 222.172Q130.395 222.254 130.349 222.325L127.747 226.125L129.798 226.125L129.798 225.454Q129.849 225.243 130.044 225.219L130.188 225.219Q130.384 225.239 130.435 225.454L130.435 226.446Q130.384 226.661 130.188 226.684M130.993 226.446L130.993 226.356Q131.032 226.149 131.243 226.125L131.579 226.125L131.579 222.356L131.243 222.356Q131.032 222.332 130.993 222.118L130.993 222.028Q131.032 221.821 131.243 221.797L134.497 221.797Q134.696 221.821 134.747 222.028L134.747 222.868Q134.700 223.082 134.497 223.110L134.353 223.110Q134.157 223.082 134.106 222.868L134.106 222.356L132.220 222.356L132.220 223.957L133.228 223.957L133.228 223.739Q133.278 223.532 133.474 223.508L133.618 223.508Q133.813 223.528 133.864 223.739L133.864 224.723Q133.813 224.942 133.618 224.965L133.474 224.965Q133.278 224.946 133.228 224.723L133.228 224.516L132.220 224.516L132.220 226.125L132.708 226.125Q132.903 226.149 132.954 226.356L132.954 226.446Q132.903 226.661 132.708 226.684L131.243 226.684Q131.032 226.661 130.993 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.286 -152.623)\">\u003Cpath d=\"M139.716 226.524L139.716 225.293Q139.743 225.082 139.954 225.059L140.122 225.059Q140.216 225.071 140.278 225.129Q140.341 225.188 140.352 225.293Q140.352 225.786 140.718 225.995Q141.083 226.204 141.618 226.204Q141.852 226.204 142.056 226.096Q142.259 225.989 142.382 225.795Q142.505 225.602 142.505 225.371Q142.505 225.075 142.310 224.852Q142.114 224.629 141.825 224.563L140.817 224.332Q140.517 224.262 140.265 224.077Q140.013 223.891 139.864 223.623Q139.716 223.356 139.716 223.043Q139.716 222.664 139.925 222.360Q140.134 222.055 140.476 221.885Q140.817 221.715 141.192 221.715Q141.868 221.715 142.298 222.043L142.368 221.860Q142.442 221.739 142.579 221.715L142.657 221.715Q142.755 221.727 142.817 221.789Q142.880 221.852 142.892 221.950L142.892 223.180Q142.868 223.391 142.657 223.418L142.489 223.418Q142.294 223.395 142.259 223.211Q142.196 222.758 141.929 222.518Q141.661 222.278 141.200 222.278Q140.993 222.278 140.786 222.366Q140.579 222.454 140.446 222.621Q140.313 222.789 140.313 223.004Q140.313 223.258 140.507 223.455Q140.700 223.653 140.970 223.715L141.977 223.942Q142.306 224.020 142.560 224.223Q142.813 224.426 142.960 224.721Q143.106 225.016 143.106 225.332Q143.106 225.731 142.903 226.057Q142.700 226.383 142.356 226.573Q142.013 226.762 141.626 226.762Q140.825 226.762 140.306 226.446L140.235 226.621Q140.165 226.739 140.024 226.762L139.954 226.762Q139.739 226.739 139.716 226.524M143.743 226.446L143.743 226.356Q143.782 226.149 143.993 226.125L144.329 226.125L144.329 222.356L143.993 222.356Q143.782 222.332 143.743 222.118L143.743 222.028Q143.782 221.821 143.993 221.797L147.247 221.797Q147.446 221.821 147.497 222.028L147.497 222.868Q147.450 223.082 147.247 223.110L147.102 223.110Q146.907 223.082 146.856 222.868L146.856 222.356L144.970 222.356L144.970 223.957L145.977 223.957L145.977 223.739Q146.028 223.532 146.224 223.508L146.368 223.508Q146.563 223.528 146.614 223.739L146.614 224.723Q146.563 224.942 146.368 224.965L146.224 224.965Q146.028 224.946 145.977 224.723L145.977 224.516L144.970 224.516L144.970 226.125L145.458 226.125Q145.653 226.149 145.704 226.356L145.704 226.446Q145.653 226.661 145.458 226.684L143.993 226.684Q143.782 226.661 143.743 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(51.286 -152.623)\">\u003Cpath d=\"M152.759 226.364Q152.665 226.211 152.614 225.991Q152.563 225.770 152.536 225.469Q152.509 225.168 152.503 224.893Q152.497 224.618 152.497 224.235Q152.497 223.723 152.509 223.362Q152.520 223 152.579 222.653Q152.638 222.305 152.759 222.118Q152.938 221.856 153.298 221.786Q153.657 221.715 154.161 221.715Q154.665 221.715 155.022 221.786Q155.380 221.856 155.560 222.118Q155.685 222.301 155.743 222.651Q155.802 223 155.813 223.362Q155.825 223.723 155.825 224.235Q155.825 224.754 155.813 225.116Q155.802 225.477 155.743 225.829Q155.685 226.180 155.560 226.364Q155.376 226.621 155.020 226.692Q154.665 226.762 154.161 226.762Q153.657 226.762 153.300 226.692Q152.942 226.621 152.759 226.364M153.298 225.875Q153.399 226.082 153.624 226.143Q153.849 226.204 154.161 226.204Q154.474 226.204 154.696 226.143Q154.919 226.082 155.024 225.875Q155.130 225.661 155.157 225.223Q155.185 224.786 155.185 224.141Q155.185 222.868 155.024 222.571Q154.919 222.383 154.700 222.330Q154.481 222.278 154.161 222.278Q153.841 222.278 153.624 222.329Q153.407 222.379 153.298 222.571Q153.138 222.868 153.138 224.141Q153.138 224.450 153.140 224.618Q153.142 224.786 153.159 225.071Q153.177 225.356 153.210 225.557Q153.243 225.758 153.298 225.875M156.493 226.446L156.493 226.356Q156.532 226.149 156.743 226.125L157.079 226.125L157.079 222.356L156.743 222.356Q156.532 222.332 156.493 222.118L156.493 222.028Q156.532 221.821 156.743 221.797L159.997 221.797Q160.196 221.821 160.247 222.028L160.247 222.868Q160.200 223.082 159.997 223.110L159.852 223.110Q159.657 223.082 159.606 222.868L159.606 222.356L157.720 222.356L157.720 223.957L158.727 223.957L158.727 223.739Q158.778 223.532 158.974 223.508L159.118 223.508Q159.313 223.528 159.364 223.739L159.364 224.723Q159.313 224.942 159.118 224.965L158.974 224.965Q158.778 224.946 158.727 224.723L158.727 224.516L157.720 224.516L157.720 226.125L158.208 226.125Q158.403 226.149 158.454 226.356L158.454 226.446Q158.403 226.661 158.208 226.684L156.743 226.684Q156.532 226.661 156.493 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.54 215.103v-23.208\"\u002F>\u003Cpath stroke=\"none\" d=\"m126.54 189.895-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(3.533 -21.74)\">\u003Cpath d=\"M126.946 225.571Q126.946 225.125 127.360 224.868Q127.774 224.610 128.315 224.510Q128.856 224.411 129.364 224.403Q129.364 224.188 129.229 224.036Q129.095 223.883 128.888 223.807Q128.681 223.731 128.470 223.731Q128.126 223.731 127.966 223.754L127.966 223.813Q127.966 223.981 127.847 224.096Q127.728 224.211 127.563 224.211Q127.388 224.211 127.272 224.088Q127.157 223.965 127.157 223.797Q127.157 223.391 127.538 223.282Q127.919 223.172 128.478 223.172Q128.747 223.172 129.015 223.250Q129.282 223.329 129.507 223.479Q129.731 223.629 129.868 223.850Q130.005 224.071 130.005 224.348L130.005 226.067Q130.005 226.125 130.532 226.125Q130.728 226.145 130.778 226.356L130.778 226.446Q130.728 226.661 130.532 226.684L130.388 226.684Q130.044 226.684 129.815 226.637Q129.587 226.590 129.442 226.403Q128.981 226.723 128.274 226.723Q127.938 226.723 127.634 226.582Q127.329 226.442 127.138 226.180Q126.946 225.918 126.946 225.571M127.587 225.579Q127.587 225.852 127.829 226.008Q128.071 226.164 128.356 226.164Q128.575 226.164 128.808 226.106Q129.040 226.047 129.202 225.909Q129.364 225.770 129.364 225.547L129.364 224.957Q129.083 224.957 128.667 225.014Q128.251 225.071 127.919 225.209Q127.587 225.348 127.587 225.579M132.649 226.723Q132.185 226.723 131.819 226.473Q131.454 226.223 131.249 225.819Q131.044 225.414 131.044 224.957Q131.044 224.614 131.169 224.293Q131.294 223.973 131.526 223.723Q131.759 223.473 132.063 223.334Q132.368 223.196 132.724 223.196Q133.235 223.196 133.642 223.516L133.642 222.356L133.220 222.356Q133.009 222.332 132.970 222.118L132.970 222.028Q133.009 221.821 133.220 221.797L134.032 221.797Q134.231 221.821 134.282 222.028L134.282 226.125L134.708 226.125Q134.915 226.149 134.954 226.356L134.954 226.446Q134.915 226.661 134.708 226.684L133.892 226.684Q133.692 226.661 133.642 226.446L133.642 226.317Q133.446 226.508 133.185 226.616Q132.923 226.723 132.649 226.723M132.688 226.164Q133.048 226.164 133.300 225.895Q133.552 225.625 133.642 225.250L133.642 224.418Q133.583 224.231 133.456 224.080Q133.329 223.930 133.151 223.842Q132.974 223.754 132.778 223.754Q132.470 223.754 132.220 223.924Q131.970 224.094 131.825 224.379Q131.681 224.664 131.681 224.965Q131.681 225.414 131.966 225.789Q132.251 226.164 132.688 226.164M136.895 226.723Q136.431 226.723 136.065 226.473Q135.700 226.223 135.495 225.819Q135.290 225.414 135.290 224.957Q135.290 224.614 135.415 224.293Q135.540 223.973 135.772 223.723Q136.005 223.473 136.310 223.334Q136.614 223.196 136.970 223.196Q137.481 223.196 137.888 223.516L137.888 222.356L137.466 222.356Q137.255 222.332 137.216 222.118L137.216 222.028Q137.255 221.821 137.466 221.797L138.278 221.797Q138.478 221.821 138.528 222.028L138.528 226.125L138.954 226.125Q139.161 226.149 139.200 226.356L139.200 226.446Q139.161 226.661 138.954 226.684L138.138 226.684Q137.938 226.661 137.888 226.446L137.888 226.317Q137.692 226.508 137.431 226.616Q137.169 226.723 136.895 226.723M136.935 226.164Q137.294 226.164 137.546 225.895Q137.798 225.625 137.888 225.250L137.888 224.418Q137.829 224.231 137.702 224.080Q137.575 223.930 137.397 223.842Q137.220 223.754 137.024 223.754Q136.716 223.754 136.466 223.924Q136.216 224.094 136.071 224.379Q135.927 224.664 135.927 224.965Q135.927 225.414 136.212 225.789Q136.497 226.164 136.935 226.164M139.501 226.446L139.501 226.356Q139.560 226.149 139.751 226.125L140.462 226.125L140.462 223.797L139.751 223.797Q139.556 223.774 139.501 223.555L139.501 223.469Q139.560 223.258 139.751 223.235L140.853 223.235Q141.052 223.254 141.103 223.469L141.103 223.797Q141.364 223.512 141.720 223.354Q142.075 223.196 142.462 223.196Q142.755 223.196 142.989 223.330Q143.224 223.465 143.224 223.731Q143.224 223.899 143.114 224.016Q143.005 224.133 142.837 224.133Q142.685 224.133 142.569 224.022Q142.454 223.911 142.454 223.754Q142.079 223.754 141.765 223.955Q141.450 224.157 141.276 224.491Q141.103 224.825 141.103 225.204L141.103 226.125L142.048 226.125Q142.255 226.149 142.294 226.356L142.294 226.446Q142.255 226.661 142.048 226.684L139.751 226.684Q139.560 226.661 139.501 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.54 161.043v-28.898\"\u002F>\u003Cpath stroke=\"none\" d=\"m126.54 130.145-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(3.533 -79.201)\">\u003Cpath d=\"M127.157 226.446L127.157 226.356Q127.208 226.149 127.403 226.125L128.442 226.125L128.442 223.797L127.470 223.797Q127.270 223.774 127.220 223.555L127.220 223.469Q127.270 223.258 127.470 223.235L128.837 223.235Q129.032 223.254 129.083 223.469L129.083 226.125L129.997 226.125Q130.192 226.149 130.243 226.356L130.243 226.446Q130.192 226.661 129.997 226.684L127.403 226.684Q127.208 226.661 127.157 226.446M128.188 222.258L128.188 222.204Q128.188 222.032 128.325 221.911Q128.462 221.789 128.638 221.789Q128.810 221.789 128.946 221.911Q129.083 222.032 129.083 222.204L129.083 222.258Q129.083 222.434 128.946 222.555Q128.810 222.676 128.638 222.676Q128.462 222.676 128.325 222.555Q128.188 222.434 128.188 222.258M131.345 224.957Q131.345 224.477 131.589 224.063Q131.833 223.649 132.249 223.411Q132.665 223.172 133.145 223.172Q133.700 223.172 134.079 223.282Q134.458 223.391 134.458 223.797Q134.458 223.965 134.345 224.088Q134.231 224.211 134.060 224.211Q133.888 224.211 133.769 224.096Q133.649 223.981 133.649 223.813L133.649 223.754Q133.489 223.731 133.153 223.731Q132.825 223.731 132.558 223.901Q132.290 224.071 132.138 224.354Q131.985 224.637 131.985 224.957Q131.985 225.278 132.157 225.559Q132.329 225.840 132.614 226.002Q132.899 226.164 133.228 226.164Q133.540 226.164 133.667 226.061Q133.794 225.957 133.911 225.768Q134.028 225.579 134.145 225.563L134.313 225.563Q134.419 225.575 134.483 225.643Q134.548 225.711 134.548 225.813Q134.548 225.860 134.528 225.899Q134.419 226.192 134.216 226.371Q134.013 226.551 133.737 226.637Q133.462 226.723 133.145 226.723Q132.661 226.723 132.245 226.485Q131.829 226.246 131.587 225.844Q131.345 225.442 131.345 224.957M137.153 226.723Q136.681 226.723 136.296 226.479Q135.911 226.235 135.688 225.825Q135.466 225.414 135.466 224.957Q135.466 224.614 135.591 224.291Q135.716 223.969 135.946 223.715Q136.177 223.461 136.483 223.317Q136.790 223.172 137.153 223.172Q137.517 223.172 137.829 223.319Q138.142 223.465 138.364 223.711Q138.587 223.957 138.714 224.278Q138.841 224.598 138.841 224.957Q138.841 225.414 138.616 225.827Q138.392 226.239 138.007 226.481Q137.622 226.723 137.153 226.723M137.153 226.164Q137.618 226.164 137.909 225.770Q138.200 225.375 138.200 224.891Q138.200 224.598 138.065 224.330Q137.931 224.063 137.690 223.897Q137.450 223.731 137.153 223.731Q136.849 223.731 136.610 223.897Q136.372 224.063 136.237 224.330Q136.103 224.598 136.103 224.891Q136.103 225.371 136.395 225.768Q136.688 226.164 137.153 226.164M141.142 226.723Q140.677 226.723 140.311 226.473Q139.946 226.223 139.741 225.819Q139.536 225.414 139.536 224.957Q139.536 224.614 139.661 224.293Q139.786 223.973 140.019 223.723Q140.251 223.473 140.556 223.334Q140.860 223.196 141.216 223.196Q141.728 223.196 142.134 223.516L142.134 222.356L141.712 222.356Q141.501 222.332 141.462 222.118L141.462 222.028Q141.501 221.821 141.712 221.797L142.524 221.797Q142.724 221.821 142.774 222.028L142.774 226.125L143.200 226.125Q143.407 226.149 143.446 226.356L143.446 226.446Q143.407 226.661 143.200 226.684L142.384 226.684Q142.185 226.661 142.134 226.446L142.134 226.317Q141.938 226.508 141.677 226.616Q141.415 226.723 141.142 226.723M141.181 226.164Q141.540 226.164 141.792 225.895Q142.044 225.625 142.134 225.250L142.134 224.418Q142.075 224.231 141.948 224.080Q141.821 223.930 141.644 223.842Q141.466 223.754 141.270 223.754Q140.962 223.754 140.712 223.924Q140.462 224.094 140.317 224.379Q140.173 224.664 140.173 224.965Q140.173 225.414 140.458 225.789Q140.743 226.164 141.181 226.164M147.036 225.196L144.595 225.196Q144.649 225.473 144.847 225.696Q145.044 225.918 145.321 226.041Q145.599 226.164 145.884 226.164Q146.356 226.164 146.579 225.875Q146.587 225.864 146.644 225.758Q146.700 225.653 146.749 225.610Q146.798 225.567 146.892 225.555L147.036 225.555Q147.228 225.575 147.286 225.789L147.286 225.844Q147.220 226.145 146.989 226.342Q146.759 226.539 146.446 226.631Q146.134 226.723 145.829 226.723Q145.345 226.723 144.905 226.495Q144.466 226.266 144.198 225.866Q143.931 225.465 143.931 224.973L143.931 224.914Q143.931 224.446 144.177 224.043Q144.423 223.641 144.831 223.407Q145.239 223.172 145.708 223.172Q146.212 223.172 146.565 223.395Q146.919 223.618 147.103 224.006Q147.286 224.395 147.286 224.899L147.286 224.957Q147.228 225.172 147.036 225.196M144.603 224.645L146.630 224.645Q146.583 224.235 146.345 223.983Q146.106 223.731 145.708 223.731Q145.313 223.731 145.007 223.993Q144.700 224.254 144.603 224.645M149.489 227.797Q149.376 227.797 149.286 227.707Q149.196 227.618 149.196 227.508Q149.196 227.332 149.388 227.258Q149.606 227.207 149.778 227.049Q149.950 226.891 150.017 226.668Q149.993 226.668 149.962 226.684L149.899 226.684Q149.669 226.684 149.503 226.522Q149.337 226.360 149.337 226.125Q149.337 225.891 149.501 225.731Q149.665 225.571 149.899 225.571Q150.110 225.571 150.274 225.692Q150.438 225.813 150.528 226.006Q150.618 226.200 150.618 226.411Q150.618 226.887 150.319 227.276Q150.020 227.664 149.556 227.789Q149.532 227.797 149.489 227.797\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -79.201)\">\u003Cpath d=\"M156.513 226.446L156.513 226.356Q156.571 226.149 156.763 226.125L157.474 226.125L157.474 223.797L156.763 223.797Q156.567 223.774 156.513 223.555L156.513 223.469Q156.571 223.258 156.763 223.235L157.864 223.235Q158.063 223.254 158.114 223.469L158.114 223.797Q158.376 223.512 158.731 223.354Q159.087 223.196 159.474 223.196Q159.767 223.196 160.001 223.330Q160.235 223.465 160.235 223.731Q160.235 223.899 160.126 224.016Q160.017 224.133 159.849 224.133Q159.696 224.133 159.581 224.022Q159.466 223.911 159.466 223.754Q159.091 223.754 158.776 223.955Q158.462 224.157 158.288 224.491Q158.114 224.825 158.114 225.204L158.114 226.125L159.060 226.125Q159.267 226.149 159.306 226.356L159.306 226.446Q159.267 226.661 159.060 226.684L156.763 226.684Q156.571 226.661 156.513 226.446M160.767 226.446L160.767 226.356Q160.825 226.145 161.017 226.125L161.239 226.125L162.192 221.942Q162.216 221.825 162.311 221.750Q162.407 221.676 162.520 221.676L162.794 221.676Q162.907 221.676 163.003 221.752Q163.099 221.829 163.122 221.942L164.071 226.125L164.298 226.125Q164.505 226.149 164.544 226.356L164.544 226.446Q164.493 226.661 164.298 226.684L163.216 226.684Q163.020 226.661 162.970 226.446L162.970 226.356Q163.020 226.149 163.216 226.125L163.415 226.125Q163.286 225.559 163.263 225.477L162.048 225.477Q162.005 225.661 161.895 226.125L162.095 226.125Q162.294 226.149 162.345 226.356L162.345 226.446Q162.294 226.661 162.095 226.684L161.017 226.684Q160.810 226.661 160.767 226.446M162.169 224.914L163.145 224.914Q162.665 222.782 162.665 222.438L162.657 222.438Q162.657 222.621 162.517 223.305Q162.376 223.989 162.169 224.914M166.501 227.797Q166.388 227.797 166.298 227.707Q166.208 227.618 166.208 227.508Q166.208 227.332 166.399 227.258Q166.618 227.207 166.790 227.049Q166.962 226.891 167.028 226.668Q167.005 226.668 166.974 226.684L166.911 226.684Q166.681 226.684 166.515 226.522Q166.349 226.360 166.349 226.125Q166.349 225.891 166.513 225.731Q166.677 225.571 166.911 225.571Q167.122 225.571 167.286 225.692Q167.450 225.813 167.540 226.006Q167.630 226.200 167.630 226.411Q167.630 226.887 167.331 227.276Q167.032 227.664 166.567 227.789Q166.544 227.797 166.501 227.797\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -79.201)\">\u003Cpath d=\"M173.513 226.446L173.513 226.356Q173.571 226.149 173.763 226.125L174.474 226.125L174.474 223.797L173.763 223.797Q173.567 223.774 173.513 223.555L173.513 223.469Q173.571 223.258 173.763 223.235L174.864 223.235Q175.063 223.254 175.114 223.469L175.114 223.797Q175.376 223.512 175.731 223.354Q176.087 223.196 176.474 223.196Q176.767 223.196 177.001 223.330Q177.235 223.465 177.235 223.731Q177.235 223.899 177.126 224.016Q177.017 224.133 176.849 224.133Q176.696 224.133 176.581 224.022Q176.466 223.911 176.466 223.754Q176.091 223.754 175.776 223.955Q175.462 224.157 175.288 224.491Q175.114 224.825 175.114 225.204L175.114 226.125L176.060 226.125Q176.267 226.149 176.306 226.356L176.306 226.446Q176.267 226.661 176.060 226.684L173.763 226.684Q173.571 226.661 173.513 226.446M177.704 226.446L177.704 226.356Q177.743 226.149 177.950 226.125L178.239 226.125L178.239 222.356L177.950 222.356Q177.743 222.332 177.704 222.118L177.704 222.028Q177.743 221.821 177.950 221.797L179.911 221.797Q180.181 221.797 180.421 221.893Q180.661 221.989 180.852 222.159Q181.044 222.329 181.153 222.557Q181.263 222.786 181.263 223.051Q181.263 223.418 181.022 223.707Q180.782 223.996 180.415 224.125Q180.696 224.188 180.929 224.362Q181.161 224.536 181.296 224.791Q181.431 225.047 181.431 225.332Q181.431 225.692 181.249 226.002Q181.067 226.313 180.753 226.498Q180.438 226.684 180.079 226.684L177.950 226.684Q177.743 226.661 177.704 226.446M178.880 224.418L178.880 226.125L179.911 226.125Q180.138 226.125 180.341 226.022Q180.544 225.918 180.669 225.739Q180.794 225.559 180.794 225.332Q180.794 225.102 180.692 224.893Q180.591 224.684 180.409 224.551Q180.227 224.418 180.001 224.418L178.880 224.418M178.880 222.356L178.880 223.860L179.743 223.860Q180.087 223.860 180.356 223.625Q180.626 223.391 180.626 223.051Q180.626 222.864 180.528 222.704Q180.431 222.543 180.265 222.450Q180.099 222.356 179.911 222.356L178.880 222.356M183.501 227.797Q183.388 227.797 183.298 227.707Q183.208 227.618 183.208 227.508Q183.208 227.332 183.399 227.258Q183.618 227.207 183.790 227.049Q183.962 226.891 184.028 226.668Q184.005 226.668 183.974 226.684L183.911 226.684Q183.681 226.684 183.515 226.522Q183.349 226.360 183.349 226.125Q183.349 225.891 183.513 225.731Q183.677 225.571 183.911 225.571Q184.122 225.571 184.286 225.692Q184.450 225.813 184.540 226.006Q184.630 226.200 184.630 226.411Q184.630 226.887 184.331 227.276Q184.032 227.664 183.567 227.789Q183.544 227.797 183.501 227.797\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -79.201)\">\u003Cpath d=\"M191.947 226.461L191.061 223.797L190.740 223.797Q190.541 223.774 190.490 223.555L190.490 223.469Q190.541 223.258 190.740 223.235L191.900 223.235Q192.096 223.254 192.146 223.469L192.146 223.555Q192.096 223.774 191.900 223.797L191.619 223.797L192.412 226.172L193.201 223.797L192.924 223.797Q192.725 223.774 192.674 223.555L192.674 223.469Q192.725 223.258 192.924 223.235L194.084 223.235Q194.279 223.258 194.330 223.469L194.330 223.555Q194.279 223.774 194.084 223.797L193.764 223.797L192.877 226.461Q192.834 226.575 192.732 226.649Q192.631 226.723 192.506 226.723L192.314 226.723Q192.197 226.723 192.094 226.651Q191.990 226.579 191.947 226.461M194.943 225.571Q194.943 225.125 195.357 224.868Q195.771 224.610 196.312 224.510Q196.853 224.411 197.361 224.403Q197.361 224.188 197.227 224.036Q197.092 223.883 196.885 223.807Q196.678 223.731 196.467 223.731Q196.123 223.731 195.963 223.754L195.963 223.813Q195.963 223.981 195.844 224.096Q195.725 224.211 195.561 224.211Q195.385 224.211 195.270 224.088Q195.154 223.965 195.154 223.797Q195.154 223.391 195.535 223.282Q195.916 223.172 196.475 223.172Q196.744 223.172 197.012 223.250Q197.279 223.329 197.504 223.479Q197.728 223.629 197.865 223.850Q198.002 224.071 198.002 224.348L198.002 226.067Q198.002 226.125 198.529 226.125Q198.725 226.145 198.775 226.356L198.775 226.446Q198.725 226.661 198.529 226.684L198.385 226.684Q198.041 226.684 197.812 226.637Q197.584 226.590 197.439 226.403Q196.978 226.723 196.271 226.723Q195.936 226.723 195.631 226.582Q195.326 226.442 195.135 226.180Q194.943 225.918 194.943 225.571M195.584 225.579Q195.584 225.852 195.826 226.008Q196.068 226.164 196.353 226.164Q196.572 226.164 196.805 226.106Q197.037 226.047 197.199 225.909Q197.361 225.770 197.361 225.547L197.361 224.957Q197.080 224.957 196.664 225.014Q196.248 225.071 195.916 225.209Q195.584 225.348 195.584 225.579M199.232 226.446L199.232 226.356Q199.283 226.149 199.478 226.125L200.584 226.125L200.584 222.356L199.478 222.356Q199.283 222.332 199.232 222.118L199.232 222.028Q199.283 221.821 199.478 221.797L200.975 221.797Q201.166 221.821 201.225 222.028L201.225 226.125L202.326 226.125Q202.525 226.149 202.576 226.356L202.576 226.446Q202.525 226.661 202.326 226.684L199.478 226.684Q199.283 226.661 199.232 226.446M205.295 226.762Q204.846 226.762 204.480 226.538Q204.115 226.313 203.861 225.930Q203.607 225.547 203.482 225.104Q203.357 224.661 203.357 224.235Q203.357 223.809 203.482 223.370Q203.607 222.930 203.861 222.547Q204.115 222.164 204.475 221.940Q204.834 221.715 205.295 221.715Q205.572 221.715 205.830 221.807Q206.088 221.899 206.303 222.067L206.436 221.829Q206.463 221.778 206.518 221.746Q206.572 221.715 206.631 221.715L206.709 221.715Q206.803 221.727 206.865 221.786Q206.928 221.844 206.939 221.950L206.939 223.278Q206.928 223.379 206.865 223.442Q206.803 223.504 206.709 223.516L206.541 223.516Q206.439 223.504 206.377 223.438Q206.314 223.371 206.303 223.278Q206.264 223.012 206.141 222.788Q206.018 222.563 205.814 222.420Q205.611 222.278 205.350 222.278Q205.018 222.278 204.766 222.461Q204.514 222.645 204.342 222.946Q204.170 223.246 204.084 223.588Q203.998 223.930 203.998 224.235Q203.998 224.539 204.082 224.881Q204.166 225.223 204.338 225.526Q204.510 225.829 204.768 226.016Q205.025 226.204 205.357 226.204Q205.740 226.204 206.021 225.930Q206.303 225.657 206.303 225.270Q206.330 225.059 206.541 225.036L206.709 225.036Q206.939 225.075 206.939 225.301Q206.939 225.618 206.803 225.889Q206.666 226.161 206.432 226.358Q206.197 226.555 205.906 226.659Q205.615 226.762 205.295 226.762M208.994 227.797Q208.881 227.797 208.791 227.707Q208.701 227.618 208.701 227.508Q208.701 227.332 208.893 227.258Q209.111 227.207 209.283 227.049Q209.455 226.891 209.521 226.668Q209.498 226.668 209.467 226.684L209.404 226.684Q209.174 226.684 209.008 226.522Q208.842 226.360 208.842 226.125Q208.842 225.891 209.006 225.731Q209.170 225.571 209.404 225.571Q209.615 225.571 209.779 225.692Q209.943 225.813 210.033 226.006Q210.123 226.200 210.123 226.411Q210.123 226.887 209.824 227.276Q209.525 227.664 209.061 227.789Q209.037 227.797 208.994 227.797\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -79.201)\">\u003Cpath d=\"M217.447 226.461L216.561 223.797L216.240 223.797Q216.041 223.774 215.990 223.555L215.990 223.469Q216.041 223.258 216.240 223.235L217.400 223.235Q217.596 223.254 217.646 223.469L217.646 223.555Q217.596 223.774 217.400 223.797L217.119 223.797L217.912 226.172L218.701 223.797L218.424 223.797Q218.225 223.774 218.174 223.555L218.174 223.469Q218.225 223.258 218.424 223.235L219.584 223.235Q219.779 223.258 219.830 223.469L219.830 223.555Q219.779 223.774 219.584 223.797L219.264 223.797L218.377 226.461Q218.334 226.575 218.232 226.649Q218.131 226.723 218.006 226.723L217.814 226.723Q217.697 226.723 217.594 226.651Q217.490 226.579 217.447 226.461M220.443 225.571Q220.443 225.125 220.857 224.868Q221.271 224.610 221.812 224.510Q222.353 224.411 222.861 224.403Q222.861 224.188 222.727 224.036Q222.592 223.883 222.385 223.807Q222.178 223.731 221.967 223.731Q221.623 223.731 221.463 223.754L221.463 223.813Q221.463 223.981 221.344 224.096Q221.225 224.211 221.061 224.211Q220.885 224.211 220.770 224.088Q220.654 223.965 220.654 223.797Q220.654 223.391 221.035 223.282Q221.416 223.172 221.975 223.172Q222.244 223.172 222.512 223.250Q222.779 223.329 223.004 223.479Q223.228 223.629 223.365 223.850Q223.502 224.071 223.502 224.348L223.502 226.067Q223.502 226.125 224.029 226.125Q224.225 226.145 224.275 226.356L224.275 226.446Q224.225 226.661 224.029 226.684L223.885 226.684Q223.541 226.684 223.312 226.637Q223.084 226.590 222.939 226.403Q222.478 226.723 221.771 226.723Q221.436 226.723 221.131 226.582Q220.826 226.442 220.635 226.180Q220.443 225.918 220.443 225.571M221.084 225.579Q221.084 225.852 221.326 226.008Q221.568 226.164 221.853 226.164Q222.072 226.164 222.305 226.106Q222.537 226.047 222.699 225.909Q222.861 225.770 222.861 225.547L222.861 224.957Q222.580 224.957 222.164 225.014Q221.748 225.071 221.416 225.209Q221.084 225.348 221.084 225.579M224.732 226.446L224.732 226.356Q224.783 226.149 224.978 226.125L226.084 226.125L226.084 222.356L224.978 222.356Q224.783 222.332 224.732 222.118L224.732 222.028Q224.783 221.821 224.978 221.797L226.475 221.797Q226.666 221.821 226.725 222.028L226.725 226.125L227.826 226.125Q228.025 226.149 228.076 226.356L228.076 226.446Q228.025 226.661 227.826 226.684L224.978 226.684Q224.783 226.661 224.732 226.446M228.713 226.446L228.713 226.356Q228.752 226.149 228.963 226.125L229.271 226.125L229.271 222.356L228.963 222.356Q228.752 222.332 228.713 222.118L228.713 222.028Q228.752 221.821 228.963 221.797L230.912 221.797Q231.311 221.797 231.656 221.998Q232.002 222.200 232.209 222.545Q232.416 222.891 232.416 223.293Q232.416 223.700 232.211 224.043Q232.006 224.387 231.660 224.592Q231.314 224.797 230.912 224.797L229.912 224.797L229.912 226.125L230.225 226.125Q230.436 226.149 230.475 226.356L230.475 226.446Q230.436 226.661 230.225 226.684L228.963 226.684Q228.752 226.661 228.713 226.446M229.912 222.356L229.912 224.235L230.752 224.235Q231.014 224.235 231.250 224.112Q231.486 223.989 231.631 223.774Q231.775 223.559 231.775 223.293Q231.775 223.024 231.631 222.813Q231.486 222.602 231.250 222.479Q231.014 222.356 230.752 222.356\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.54 101.292V72.394\"\u002F>\u003Cpath stroke=\"none\" d=\"m126.54 70.394-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(3.533 -138.952)\">\u003Cpath d=\"M128.196 226.461L127.310 223.797L126.989 223.797Q126.790 223.774 126.739 223.555L126.739 223.469Q126.790 223.258 126.989 223.235L128.149 223.235Q128.345 223.254 128.395 223.469L128.395 223.555Q128.345 223.774 128.149 223.797L127.868 223.797L128.661 226.172L129.450 223.797L129.173 223.797Q128.974 223.774 128.923 223.555L128.923 223.469Q128.974 223.258 129.173 223.235L130.333 223.235Q130.528 223.258 130.579 223.469L130.579 223.555Q130.528 223.774 130.333 223.797L130.013 223.797L129.126 226.461Q129.083 226.575 128.981 226.649Q128.880 226.723 128.755 226.723L128.563 226.723Q128.446 226.723 128.343 226.651Q128.239 226.579 128.196 226.461M131.192 225.571Q131.192 225.125 131.606 224.868Q132.020 224.610 132.561 224.510Q133.103 224.411 133.610 224.403Q133.610 224.188 133.476 224.036Q133.341 223.883 133.134 223.807Q132.927 223.731 132.716 223.731Q132.372 223.731 132.212 223.754L132.212 223.813Q132.212 223.981 132.093 224.096Q131.974 224.211 131.810 224.211Q131.634 224.211 131.519 224.088Q131.403 223.965 131.403 223.797Q131.403 223.391 131.784 223.282Q132.165 223.172 132.724 223.172Q132.993 223.172 133.261 223.250Q133.528 223.329 133.753 223.479Q133.978 223.629 134.114 223.850Q134.251 224.071 134.251 224.348L134.251 226.067Q134.251 226.125 134.778 226.125Q134.974 226.145 135.024 226.356L135.024 226.446Q134.974 226.661 134.778 226.684L134.634 226.684Q134.290 226.684 134.061 226.637Q133.833 226.590 133.688 226.403Q133.228 226.723 132.520 226.723Q132.185 226.723 131.880 226.582Q131.575 226.442 131.384 226.180Q131.192 225.918 131.192 225.571M131.833 225.579Q131.833 225.852 132.075 226.008Q132.317 226.164 132.603 226.164Q132.821 226.164 133.054 226.106Q133.286 226.047 133.448 225.909Q133.610 225.770 133.610 225.547L133.610 224.957Q133.329 224.957 132.913 225.014Q132.497 225.071 132.165 225.209Q131.833 225.348 131.833 225.579M135.481 226.446L135.481 226.356Q135.532 226.149 135.728 226.125L136.833 226.125L136.833 222.356L135.728 222.356Q135.532 222.332 135.481 222.118L135.481 222.028Q135.532 221.821 135.728 221.797L137.224 221.797Q137.415 221.821 137.474 222.028L137.474 226.125L138.575 226.125Q138.774 226.149 138.825 226.356L138.825 226.446Q138.774 226.661 138.575 226.684L135.728 226.684Q135.532 226.661 135.481 226.446M139.509 226.446L139.509 226.356Q139.567 226.145 139.759 226.125L139.981 226.125L140.935 221.942Q140.958 221.825 141.054 221.750Q141.149 221.676 141.263 221.676L141.536 221.676Q141.649 221.676 141.745 221.752Q141.841 221.829 141.864 221.942L142.813 226.125L143.040 226.125Q143.247 226.149 143.286 226.356L143.286 226.446Q143.235 226.661 143.040 226.684L141.958 226.684Q141.763 226.661 141.712 226.446L141.712 226.356Q141.763 226.149 141.958 226.125L142.157 226.125Q142.028 225.559 142.005 225.477L140.790 225.477Q140.747 225.661 140.638 226.125L140.837 226.125Q141.036 226.149 141.087 226.356L141.087 226.446Q141.036 226.661 140.837 226.684L139.759 226.684Q139.552 226.661 139.509 226.446M140.911 224.914L141.888 224.914Q141.407 222.782 141.407 222.438L141.399 222.438Q141.399 222.621 141.259 223.305Q141.118 223.989 140.911 224.914M145.243 227.797Q145.130 227.797 145.040 227.707Q144.950 227.618 144.950 227.508Q144.950 227.332 145.142 227.258Q145.360 227.207 145.532 227.049Q145.704 226.891 145.770 226.668Q145.747 226.668 145.716 226.684L145.653 226.684Q145.423 226.684 145.257 226.522Q145.091 226.360 145.091 226.125Q145.091 225.891 145.255 225.731Q145.419 225.571 145.653 225.571Q145.864 225.571 146.028 225.692Q146.192 225.813 146.282 226.006Q146.372 226.200 146.372 226.411Q146.372 226.887 146.073 227.276Q145.774 227.664 145.310 227.789Q145.286 227.797 145.243 227.797\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(3.533 -138.952)\">\u003Cpath d=\"M153.696 226.461L152.810 223.797L152.489 223.797Q152.290 223.774 152.239 223.555L152.239 223.469Q152.290 223.258 152.489 223.235L153.649 223.235Q153.845 223.254 153.895 223.469L153.895 223.555Q153.845 223.774 153.649 223.797L153.368 223.797L154.161 226.172L154.950 223.797L154.673 223.797Q154.474 223.774 154.423 223.555L154.423 223.469Q154.474 223.258 154.673 223.235L155.833 223.235Q156.028 223.258 156.079 223.469L156.079 223.555Q156.028 223.774 155.833 223.797L155.513 223.797L154.626 226.461Q154.583 226.575 154.481 226.649Q154.380 226.723 154.255 226.723L154.063 226.723Q153.946 226.723 153.843 226.651Q153.739 226.579 153.696 226.461M156.692 225.571Q156.692 225.125 157.106 224.868Q157.520 224.610 158.061 224.510Q158.602 224.411 159.110 224.403Q159.110 224.188 158.976 224.036Q158.841 223.883 158.634 223.807Q158.427 223.731 158.216 223.731Q157.872 223.731 157.712 223.754L157.712 223.813Q157.712 223.981 157.593 224.096Q157.474 224.211 157.310 224.211Q157.134 224.211 157.019 224.088Q156.903 223.965 156.903 223.797Q156.903 223.391 157.284 223.282Q157.665 223.172 158.224 223.172Q158.493 223.172 158.761 223.250Q159.028 223.329 159.253 223.479Q159.477 223.629 159.614 223.850Q159.751 224.071 159.751 224.348L159.751 226.067Q159.751 226.125 160.278 226.125Q160.474 226.145 160.524 226.356L160.524 226.446Q160.474 226.661 160.278 226.684L160.134 226.684Q159.790 226.684 159.561 226.637Q159.333 226.590 159.188 226.403Q158.727 226.723 158.020 226.723Q157.685 226.723 157.380 226.582Q157.075 226.442 156.884 226.180Q156.692 225.918 156.692 225.571M157.333 225.579Q157.333 225.852 157.575 226.008Q157.817 226.164 158.102 226.164Q158.321 226.164 158.554 226.106Q158.786 226.047 158.948 225.909Q159.110 225.770 159.110 225.547L159.110 224.957Q158.829 224.957 158.413 225.014Q157.997 225.071 157.665 225.209Q157.333 225.348 157.333 225.579M160.981 226.446L160.981 226.356Q161.032 226.149 161.227 226.125L162.333 226.125L162.333 222.356L161.227 222.356Q161.032 222.332 160.981 222.118L160.981 222.028Q161.032 221.821 161.227 221.797L162.724 221.797Q162.915 221.821 162.974 222.028L162.974 226.125L164.075 226.125Q164.274 226.149 164.325 226.356L164.325 226.446Q164.274 226.661 164.075 226.684L161.227 226.684Q161.032 226.661 160.981 226.446M164.946 226.446L164.946 226.356Q164.985 226.149 165.192 226.125L165.481 226.125L165.481 222.356L165.192 222.356Q164.985 222.332 164.946 222.118L164.946 222.028Q164.985 221.821 165.192 221.797L167.153 221.797Q167.423 221.797 167.663 221.893Q167.903 221.989 168.095 222.159Q168.286 222.329 168.395 222.557Q168.505 222.786 168.505 223.051Q168.505 223.418 168.265 223.707Q168.024 223.996 167.657 224.125Q167.938 224.188 168.171 224.362Q168.403 224.536 168.538 224.791Q168.673 225.047 168.673 225.332Q168.673 225.692 168.491 226.002Q168.310 226.313 167.995 226.498Q167.681 226.684 167.321 226.684L165.192 226.684Q164.985 226.661 164.946 226.446M166.122 224.418L166.122 226.125L167.153 226.125Q167.380 226.125 167.583 226.022Q167.786 225.918 167.911 225.739Q168.036 225.559 168.036 225.332Q168.036 225.102 167.935 224.893Q167.833 224.684 167.651 224.551Q167.470 224.418 167.243 224.418L166.122 224.418M166.122 222.356L166.122 223.860L166.985 223.860Q167.329 223.860 167.599 223.625Q167.868 223.391 167.868 223.051Q167.868 222.864 167.770 222.704Q167.673 222.543 167.507 222.450Q167.341 222.356 167.153 222.356\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.54 41.541V12.643\"\u002F>\u003Cpath stroke=\"none\" d=\"m126.54 10.643-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(3.533 -198.147)\">\u003Cpath d=\"M128.196 226.461L127.310 223.797L126.989 223.797Q126.790 223.774 126.739 223.555L126.739 223.469Q126.790 223.258 126.989 223.235L128.149 223.235Q128.345 223.254 128.395 223.469L128.395 223.555Q128.345 223.774 128.149 223.797L127.868 223.797L128.661 226.172L129.450 223.797L129.173 223.797Q128.974 223.774 128.923 223.555L128.923 223.469Q128.974 223.258 129.173 223.235L130.333 223.235Q130.528 223.258 130.579 223.469L130.579 223.555Q130.528 223.774 130.333 223.797L130.013 223.797L129.126 226.461Q129.083 226.575 128.981 226.649Q128.880 226.723 128.755 226.723L128.563 226.723Q128.446 226.723 128.343 226.651Q128.239 226.579 128.196 226.461M131.192 225.571Q131.192 225.125 131.606 224.868Q132.020 224.610 132.561 224.510Q133.103 224.411 133.610 224.403Q133.610 224.188 133.476 224.036Q133.341 223.883 133.134 223.807Q132.927 223.731 132.716 223.731Q132.372 223.731 132.212 223.754L132.212 223.813Q132.212 223.981 132.093 224.096Q131.974 224.211 131.810 224.211Q131.634 224.211 131.519 224.088Q131.403 223.965 131.403 223.797Q131.403 223.391 131.784 223.282Q132.165 223.172 132.724 223.172Q132.993 223.172 133.261 223.250Q133.528 223.329 133.753 223.479Q133.978 223.629 134.114 223.850Q134.251 224.071 134.251 224.348L134.251 226.067Q134.251 226.125 134.778 226.125Q134.974 226.145 135.024 226.356L135.024 226.446Q134.974 226.661 134.778 226.684L134.634 226.684Q134.290 226.684 134.061 226.637Q133.833 226.590 133.688 226.403Q133.228 226.723 132.520 226.723Q132.185 226.723 131.880 226.582Q131.575 226.442 131.384 226.180Q131.192 225.918 131.192 225.571M131.833 225.579Q131.833 225.852 132.075 226.008Q132.317 226.164 132.603 226.164Q132.821 226.164 133.054 226.106Q133.286 226.047 133.448 225.909Q133.610 225.770 133.610 225.547L133.610 224.957Q133.329 224.957 132.913 225.014Q132.497 225.071 132.165 225.209Q131.833 225.348 131.833 225.579M135.481 226.446L135.481 226.356Q135.532 226.149 135.728 226.125L136.833 226.125L136.833 222.356L135.728 222.356Q135.532 222.332 135.481 222.118L135.481 222.028Q135.532 221.821 135.728 221.797L137.224 221.797Q137.415 221.821 137.474 222.028L137.474 226.125L138.575 226.125Q138.774 226.149 138.825 226.356L138.825 226.446Q138.774 226.661 138.575 226.684L135.728 226.684Q135.532 226.661 135.481 226.446M139.462 226.446L139.462 226.356Q139.501 226.149 139.712 226.125L140.020 226.125L140.020 222.356L139.712 222.356Q139.501 222.332 139.462 222.118L139.462 222.028Q139.501 221.821 139.712 221.797L142.919 221.797Q143.114 221.821 143.165 222.028L143.165 222.868Q143.114 223.082 142.919 223.110L142.774 223.110Q142.579 223.082 142.524 222.868L142.524 222.356L140.661 222.356L140.661 223.875L141.638 223.875L141.638 223.661Q141.688 223.454 141.888 223.426L142.032 223.426Q142.228 223.454 142.278 223.661L142.278 224.645Q142.228 224.860 142.032 224.883L141.888 224.883Q141.688 224.860 141.638 224.645L141.638 224.438L140.661 224.438L140.661 226.125L142.704 226.125L142.704 225.485Q142.755 225.278 142.950 225.250L143.095 225.250Q143.290 225.278 143.341 225.485L143.341 226.446Q143.290 226.664 143.095 226.684L139.712 226.684Q139.501 226.661 139.462 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M126.54-18.21v-28.898\"\u002F>\u003Cpath stroke=\"none\" d=\"m126.54-49.108-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003Cg transform=\"translate(3.533 -257.898)\">\u003Cpath d=\"M128.196 226.461L127.310 223.797L126.989 223.797Q126.790 223.774 126.739 223.555L126.739 223.469Q126.790 223.258 126.989 223.235L128.149 223.235Q128.345 223.254 128.395 223.469L128.395 223.555Q128.345 223.774 128.149 223.797L127.868 223.797L128.661 226.172L129.450 223.797L129.173 223.797Q128.974 223.774 128.923 223.555L128.923 223.469Q128.974 223.258 129.173 223.235L130.333 223.235Q130.528 223.258 130.579 223.469L130.579 223.555Q130.528 223.774 130.333 223.797L130.013 223.797L129.126 226.461Q129.083 226.575 128.981 226.649Q128.880 226.723 128.755 226.723L128.563 226.723Q128.446 226.723 128.343 226.651Q128.239 226.579 128.196 226.461M131.192 225.571Q131.192 225.125 131.606 224.868Q132.020 224.610 132.561 224.510Q133.103 224.411 133.610 224.403Q133.610 224.188 133.476 224.036Q133.341 223.883 133.134 223.807Q132.927 223.731 132.716 223.731Q132.372 223.731 132.212 223.754L132.212 223.813Q132.212 223.981 132.093 224.096Q131.974 224.211 131.810 224.211Q131.634 224.211 131.519 224.088Q131.403 223.965 131.403 223.797Q131.403 223.391 131.784 223.282Q132.165 223.172 132.724 223.172Q132.993 223.172 133.261 223.250Q133.528 223.329 133.753 223.479Q133.978 223.629 134.114 223.850Q134.251 224.071 134.251 224.348L134.251 226.067Q134.251 226.125 134.778 226.125Q134.974 226.145 135.024 226.356L135.024 226.446Q134.974 226.661 134.778 226.684L134.634 226.684Q134.290 226.684 134.061 226.637Q133.833 226.590 133.688 226.403Q133.228 226.723 132.520 226.723Q132.185 226.723 131.880 226.582Q131.575 226.442 131.384 226.180Q131.192 225.918 131.192 225.571M131.833 225.579Q131.833 225.852 132.075 226.008Q132.317 226.164 132.603 226.164Q132.821 226.164 133.054 226.106Q133.286 226.047 133.448 225.909Q133.610 225.770 133.610 225.547L133.610 224.957Q133.329 224.957 132.913 225.014Q132.497 225.071 132.165 225.209Q131.833 225.348 131.833 225.579M135.481 226.446L135.481 226.356Q135.532 226.149 135.728 226.125L136.833 226.125L136.833 222.356L135.728 222.356Q135.532 222.332 135.481 222.118L135.481 222.028Q135.532 221.821 135.728 221.797L137.224 221.797Q137.415 221.821 137.474 222.028L137.474 226.125L138.575 226.125Q138.774 226.149 138.825 226.356L138.825 226.446Q138.774 226.661 138.575 226.684L135.728 226.684Q135.532 226.661 135.481 226.446M139.392 226.446L139.392 226.356Q139.442 226.149 139.638 226.125L139.813 226.125L139.813 222.356L139.638 222.356Q139.442 222.332 139.392 222.118L139.392 222.028Q139.442 221.821 139.638 221.797L140.325 221.797Q140.454 221.797 140.554 221.873Q140.653 221.950 140.692 222.059Q140.724 222.164 140.946 222.854Q141.169 223.543 141.284 223.940Q141.399 224.336 141.399 224.411Q141.407 224.332 141.462 224.135Q141.517 223.938 141.630 223.567Q141.743 223.196 141.890 222.733Q142.036 222.270 142.103 222.059Q142.142 221.950 142.245 221.873Q142.349 221.797 142.470 221.797L143.157 221.797Q143.356 221.821 143.407 222.028L143.407 222.118Q143.356 222.332 143.157 222.356L142.981 222.356L142.981 226.125L143.157 226.125Q143.356 226.149 143.407 226.356L143.407 226.446Q143.356 226.661 143.157 226.684L142.278 226.684Q142.083 226.661 142.032 226.446L142.032 226.356Q142.083 226.149 142.278 226.125L142.454 226.125L142.454 222.438Q142.454 222.496 142.370 222.795Q142.286 223.094 142.183 223.426Q142.079 223.758 141.948 224.166Q141.817 224.575 141.751 224.789Q141.712 224.903 141.612 224.977Q141.513 225.051 141.399 225.051Q141.286 225.051 141.186 224.977Q141.087 224.903 141.048 224.789Q140.981 224.575 140.847 224.157Q140.712 223.739 140.575 223.295Q140.438 222.852 140.394 222.688Q140.349 222.524 140.341 222.438L140.341 226.125L140.517 226.125Q140.716 226.149 140.767 226.356L140.767 226.446Q140.716 226.661 140.517 226.684L139.638 226.684Q139.442 226.661 139.392 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M169.419-3.783h53.86v119.501h-51.86\"\u002F>\u003Cpath stroke=\"none\" d=\"m169.419 115.718 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"rotate(90 286.688 169.366)\">\u003Cpath d=\"M127.548 226.461L127.083 223.797L126.923 223.797Q126.716 223.774 126.677 223.555L126.677 223.469Q126.716 223.258 126.923 223.235L128.091 223.235Q128.302 223.258 128.341 223.469L128.341 223.555Q128.302 223.774 128.091 223.797L127.618 223.797Q127.731 224.442 127.810 224.887Q127.888 225.332 127.938 225.651Q127.989 225.969 127.989 226.043Q127.997 225.871 128.282 224.875Q128.321 224.762 128.419 224.688Q128.517 224.614 128.638 224.614L128.716 224.614Q128.837 224.614 128.935 224.688Q129.032 224.762 129.067 224.875Q129.177 225.258 129.259 225.582Q129.341 225.907 129.341 226.043Q129.353 225.754 129.700 223.797L129.228 223.797Q129.020 223.774 128.981 223.555L128.981 223.469Q129.020 223.258 129.228 223.235L130.403 223.235Q130.595 223.258 130.653 223.469L130.653 223.555Q130.599 223.774 130.403 223.797L130.235 223.797L129.770 226.461Q129.747 226.579 129.659 226.651Q129.571 226.723 129.450 226.723L129.310 226.723Q129.188 226.723 129.093 226.651Q128.997 226.579 128.954 226.461Q128.907 226.282 128.835 226.026Q128.763 225.770 128.720 225.561Q128.677 225.352 128.677 225.250Q128.669 225.532 128.388 226.461Q128.360 226.571 128.263 226.647Q128.165 226.723 128.044 226.723L127.868 226.723Q127.747 226.723 127.659 226.651Q127.571 226.579 127.548 226.461M131.009 226.446L131.009 226.356Q131.067 226.149 131.259 226.125L131.970 226.125L131.970 223.797L131.259 223.797Q131.063 223.774 131.009 223.555L131.009 223.469Q131.067 223.258 131.259 223.235L132.360 223.235Q132.560 223.254 132.610 223.469L132.610 223.797Q132.872 223.512 133.228 223.354Q133.583 223.196 133.970 223.196Q134.263 223.196 134.497 223.330Q134.731 223.465 134.731 223.731Q134.731 223.899 134.622 224.016Q134.513 224.133 134.345 224.133Q134.192 224.133 134.077 224.022Q133.962 223.911 133.962 223.754Q133.587 223.754 133.272 223.955Q132.958 224.157 132.784 224.491Q132.610 224.825 132.610 225.204L132.610 226.125L133.556 226.125Q133.763 226.149 133.802 226.356L133.802 226.446Q133.763 226.661 133.556 226.684L131.259 226.684Q131.067 226.661 131.009 226.446M135.649 226.446L135.649 226.356Q135.700 226.149 135.895 226.125L136.935 226.125L136.935 223.797L135.962 223.797Q135.763 223.774 135.712 223.555L135.712 223.469Q135.763 223.258 135.962 223.235L137.329 223.235Q137.524 223.254 137.575 223.469L137.575 226.125L138.489 226.125Q138.685 226.149 138.735 226.356L138.735 226.446Q138.685 226.661 138.489 226.684L135.895 226.684Q135.700 226.661 135.649 226.446M136.681 222.258L136.681 222.204Q136.681 222.032 136.817 221.911Q136.954 221.789 137.130 221.789Q137.302 221.789 137.438 221.911Q137.575 222.032 137.575 222.204L137.575 222.258Q137.575 222.434 137.438 222.555Q137.302 222.676 137.130 222.676Q136.954 222.676 136.817 222.555Q136.681 222.434 136.681 222.258M140.478 225.579L140.478 223.797L139.728 223.797Q139.528 223.774 139.478 223.555L139.478 223.469Q139.528 223.258 139.728 223.235L140.478 223.235L140.478 222.485Q140.528 222.278 140.728 222.250L140.872 222.250Q141.067 222.278 141.118 222.485L141.118 223.235L142.478 223.235Q142.669 223.254 142.728 223.469L142.728 223.555Q142.673 223.774 142.478 223.797L141.118 223.797L141.118 225.547Q141.118 226.164 141.692 226.164Q141.942 226.164 142.106 225.979Q142.270 225.793 142.270 225.547Q142.270 225.454 142.343 225.383Q142.415 225.313 142.517 225.301L142.661 225.301Q142.860 225.325 142.911 225.532L142.911 225.579Q142.911 225.903 142.728 226.166Q142.544 226.430 142.251 226.577Q141.958 226.723 141.638 226.723Q141.126 226.723 140.802 226.413Q140.478 226.102 140.478 225.579M147.036 225.196L144.595 225.196Q144.649 225.473 144.847 225.696Q145.044 225.918 145.321 226.041Q145.599 226.164 145.884 226.164Q146.356 226.164 146.579 225.875Q146.587 225.864 146.644 225.758Q146.700 225.653 146.749 225.610Q146.798 225.567 146.892 225.555L147.036 225.555Q147.228 225.575 147.286 225.789L147.286 225.844Q147.220 226.145 146.989 226.342Q146.759 226.539 146.446 226.631Q146.134 226.723 145.829 226.723Q145.345 226.723 144.905 226.495Q144.466 226.266 144.198 225.866Q143.931 225.465 143.931 224.973L143.931 224.914Q143.931 224.446 144.177 224.043Q144.423 223.641 144.831 223.407Q145.239 223.172 145.708 223.172Q146.212 223.172 146.565 223.395Q146.919 223.618 147.103 224.006Q147.286 224.395 147.286 224.899L147.286 224.957Q147.228 225.172 147.036 225.196M144.603 224.645L146.630 224.645Q146.583 224.235 146.345 223.983Q146.106 223.731 145.708 223.731Q145.313 223.731 145.007 223.993Q144.700 224.254 144.603 224.645M151.267 224.547L148.524 224.547Q148.399 224.536 148.313 224.450Q148.228 224.364 148.228 224.235Q148.228 224.106 148.313 224.024Q148.399 223.942 148.524 223.930L151.267 223.930Q151.392 223.942 151.474 224.024Q151.556 224.106 151.556 224.235Q151.556 224.364 151.474 224.450Q151.392 224.536 151.267 224.547M152.759 226.446L152.759 222.356L152.337 222.356Q152.130 222.332 152.087 222.118L152.087 222.028Q152.130 221.821 152.337 221.797L153.153 221.797Q153.349 221.821 153.399 222.028L153.399 223.539Q153.610 223.371 153.874 223.284Q154.138 223.196 154.407 223.196Q154.747 223.196 155.044 223.340Q155.341 223.485 155.556 223.737Q155.770 223.989 155.886 224.301Q156.001 224.614 156.001 224.957Q156.001 225.422 155.774 225.832Q155.548 226.243 155.161 226.483Q154.774 226.723 154.306 226.723Q153.786 226.723 153.399 226.356L153.399 226.446Q153.349 226.664 153.153 226.684L153.009 226.684Q152.817 226.661 152.759 226.446M154.263 226.164Q154.571 226.164 154.821 225.995Q155.071 225.825 155.216 225.543Q155.360 225.262 155.360 224.957Q155.360 224.668 155.235 224.389Q155.110 224.110 154.878 223.932Q154.645 223.754 154.345 223.754Q154.024 223.754 153.763 223.940Q153.501 224.125 153.399 224.426L153.399 225.278Q153.489 225.645 153.710 225.905Q153.931 226.164 154.263 226.164M156.669 225.571Q156.669 225.125 157.083 224.868Q157.497 224.610 158.038 224.510Q158.579 224.411 159.087 224.403Q159.087 224.188 158.952 224.036Q158.817 223.883 158.610 223.807Q158.403 223.731 158.192 223.731Q157.849 223.731 157.688 223.754L157.688 223.813Q157.688 223.981 157.569 224.096Q157.450 224.211 157.286 224.211Q157.110 224.211 156.995 224.088Q156.880 223.965 156.880 223.797Q156.880 223.391 157.261 223.282Q157.642 223.172 158.200 223.172Q158.470 223.172 158.737 223.250Q159.005 223.329 159.229 223.479Q159.454 223.629 159.591 223.850Q159.728 224.071 159.728 224.348L159.728 226.067Q159.728 226.125 160.255 226.125Q160.450 226.145 160.501 226.356L160.501 226.446Q160.450 226.661 160.255 226.684L160.110 226.684Q159.767 226.684 159.538 226.637Q159.310 226.590 159.165 226.403Q158.704 226.723 157.997 226.723Q157.661 226.723 157.356 226.582Q157.052 226.442 156.860 226.180Q156.669 225.918 156.669 225.571M157.310 225.579Q157.310 225.852 157.552 226.008Q157.794 226.164 158.079 226.164Q158.298 226.164 158.530 226.106Q158.763 226.047 158.925 225.909Q159.087 225.770 159.087 225.547L159.087 224.957Q158.806 224.957 158.390 225.014Q157.974 225.071 157.642 225.209Q157.310 225.348 157.310 225.579M161.067 224.957Q161.067 224.477 161.311 224.063Q161.556 223.649 161.972 223.411Q162.388 223.172 162.868 223.172Q163.423 223.172 163.802 223.282Q164.181 223.391 164.181 223.797Q164.181 223.965 164.067 224.088Q163.954 224.211 163.782 224.211Q163.610 224.211 163.491 224.096Q163.372 223.981 163.372 223.813L163.372 223.754Q163.212 223.731 162.876 223.731Q162.548 223.731 162.280 223.901Q162.013 224.071 161.860 224.354Q161.708 224.637 161.708 224.957Q161.708 225.278 161.880 225.559Q162.052 225.840 162.337 226.002Q162.622 226.164 162.950 226.164Q163.263 226.164 163.390 226.061Q163.517 225.957 163.634 225.768Q163.751 225.579 163.868 225.563L164.036 225.563Q164.142 225.575 164.206 225.643Q164.270 225.711 164.270 225.813Q164.270 225.860 164.251 225.899Q164.142 226.192 163.938 226.371Q163.735 226.551 163.460 226.637Q163.185 226.723 162.868 226.723Q162.384 226.723 161.968 226.485Q161.552 226.246 161.310 225.844Q161.067 225.442 161.067 224.957M164.899 226.446L164.899 226.356Q164.950 226.149 165.145 226.125L165.610 226.125L165.610 222.356L165.145 222.356Q164.950 222.332 164.899 222.118L164.899 222.028Q164.950 221.821 165.145 221.797L165.892 221.797Q166.087 221.817 166.138 222.028L166.138 224.852L167.282 223.797L166.985 223.797Q166.778 223.774 166.739 223.555L166.739 223.469Q166.778 223.258 166.985 223.235L168.435 223.235Q168.638 223.258 168.685 223.469L168.685 223.555Q168.642 223.774 168.435 223.797L168.067 223.797L167.122 224.661L168.274 226.125L168.610 226.125Q168.817 226.149 168.860 226.356L168.860 226.446Q168.817 226.661 168.610 226.684L167.442 226.684Q167.247 226.661 167.196 226.446L167.196 226.356Q167.247 226.149 167.442 226.125L167.603 226.125L166.739 225.020L166.138 225.571L166.138 226.125L166.603 226.125Q166.794 226.149 166.853 226.356L166.853 226.446Q166.794 226.661 166.603 226.684L165.145 226.684Q164.950 226.661 164.899 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 286.688 169.366)\">\u003Cpath d=\"M174.946 226.461L174.060 223.797L173.739 223.797Q173.540 223.774 173.489 223.555L173.489 223.469Q173.540 223.258 173.739 223.235L174.899 223.235Q175.095 223.254 175.145 223.469L175.145 223.555Q175.095 223.774 174.899 223.797L174.618 223.797L175.411 226.172L176.200 223.797L175.923 223.797Q175.724 223.774 175.673 223.555L175.673 223.469Q175.724 223.258 175.923 223.235L177.083 223.235Q177.278 223.258 177.329 223.469L177.329 223.555Q177.278 223.774 177.083 223.797L176.763 223.797L175.876 226.461Q175.833 226.575 175.731 226.649Q175.630 226.723 175.505 226.723L175.313 226.723Q175.196 226.723 175.093 226.651Q174.989 226.579 174.946 226.461M177.942 225.571Q177.942 225.125 178.356 224.868Q178.770 224.610 179.311 224.510Q179.852 224.411 180.360 224.403Q180.360 224.188 180.226 224.036Q180.091 223.883 179.884 223.807Q179.677 223.731 179.466 223.731Q179.122 223.731 178.962 223.754L178.962 223.813Q178.962 223.981 178.843 224.096Q178.724 224.211 178.560 224.211Q178.384 224.211 178.269 224.088Q178.153 223.965 178.153 223.797Q178.153 223.391 178.534 223.282Q178.915 223.172 179.474 223.172Q179.743 223.172 180.011 223.250Q180.278 223.329 180.503 223.479Q180.727 223.629 180.864 223.850Q181.001 224.071 181.001 224.348L181.001 226.067Q181.001 226.125 181.528 226.125Q181.724 226.145 181.774 226.356L181.774 226.446Q181.724 226.661 181.528 226.684L181.384 226.684Q181.040 226.684 180.811 226.637Q180.583 226.590 180.438 226.403Q179.977 226.723 179.270 226.723Q178.935 226.723 178.630 226.582Q178.325 226.442 178.134 226.180Q177.942 225.918 177.942 225.571M178.583 225.579Q178.583 225.852 178.825 226.008Q179.067 226.164 179.352 226.164Q179.571 226.164 179.804 226.106Q180.036 226.047 180.198 225.909Q180.360 225.770 180.360 225.547L180.360 224.957Q180.079 224.957 179.663 225.014Q179.247 225.071 178.915 225.209Q178.583 225.348 178.583 225.579M182.231 226.446L182.231 226.356Q182.282 226.149 182.477 226.125L183.583 226.125L183.583 222.356L182.477 222.356Q182.282 222.332 182.231 222.118L182.231 222.028Q182.282 221.821 182.477 221.797L183.974 221.797Q184.165 221.821 184.224 222.028L184.224 226.125L185.325 226.125Q185.524 226.149 185.575 226.356L185.575 226.446Q185.524 226.661 185.325 226.684L182.477 226.684Q182.282 226.661 182.231 226.446M186.212 226.446L186.212 226.356Q186.251 226.149 186.462 226.125L186.770 226.125L186.770 222.356L186.462 222.356Q186.251 222.332 186.212 222.118L186.212 222.028Q186.251 221.821 186.462 221.797L189.669 221.797Q189.864 221.821 189.915 222.028L189.915 222.868Q189.864 223.082 189.669 223.110L189.524 223.110Q189.329 223.082 189.274 222.868L189.274 222.356L187.411 222.356L187.411 223.875L188.388 223.875L188.388 223.661Q188.438 223.454 188.638 223.426L188.782 223.426Q188.977 223.454 189.028 223.661L189.028 224.645Q188.977 224.860 188.782 224.883L188.638 224.883Q188.438 224.860 188.388 224.645L188.388 224.438L187.411 224.438L187.411 226.125L189.454 226.125L189.454 225.485Q189.505 225.278 189.700 225.250L189.845 225.250Q190.040 225.278 190.091 225.485L190.091 226.446Q190.040 226.664 189.845 226.684L186.462 226.684Q186.251 226.661 186.212 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 286.688 169.366)\">\u003Cpath d=\"M195.014 227.043Q195.014 226.989 195.037 226.922L197.717 221.317Q197.811 221.133 198.006 221.133Q198.131 221.133 198.221 221.223Q198.311 221.313 198.311 221.438Q198.311 221.500 198.283 221.555L195.603 227.164Q195.510 227.348 195.326 227.348Q195.201 227.348 195.107 227.258Q195.014 227.168 195.014 227.043\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 286.688 169.366)\">\u003Cpath d=\"M204.697 226.461L203.811 223.797L203.490 223.797Q203.291 223.774 203.240 223.555L203.240 223.469Q203.291 223.258 203.490 223.235L204.650 223.235Q204.846 223.254 204.896 223.469L204.896 223.555Q204.846 223.774 204.650 223.797L204.369 223.797L205.162 226.172L205.951 223.797L205.674 223.797Q205.475 223.774 205.424 223.555L205.424 223.469Q205.475 223.258 205.674 223.235L206.834 223.235Q207.029 223.258 207.080 223.469L207.080 223.555Q207.029 223.774 206.834 223.797L206.514 223.797L205.627 226.461Q205.584 226.575 205.482 226.649Q205.381 226.723 205.256 226.723L205.064 226.723Q204.947 226.723 204.844 226.651Q204.740 226.579 204.697 226.461M207.693 225.571Q207.693 225.125 208.107 224.868Q208.521 224.610 209.062 224.510Q209.603 224.411 210.111 224.403Q210.111 224.188 209.977 224.036Q209.842 223.883 209.635 223.807Q209.428 223.731 209.217 223.731Q208.873 223.731 208.713 223.754L208.713 223.813Q208.713 223.981 208.594 224.096Q208.475 224.211 208.311 224.211Q208.135 224.211 208.020 224.088Q207.904 223.965 207.904 223.797Q207.904 223.391 208.285 223.282Q208.666 223.172 209.225 223.172Q209.494 223.172 209.762 223.250Q210.029 223.329 210.254 223.479Q210.478 223.629 210.615 223.850Q210.752 224.071 210.752 224.348L210.752 226.067Q210.752 226.125 211.279 226.125Q211.475 226.145 211.525 226.356L211.525 226.446Q211.475 226.661 211.279 226.684L211.135 226.684Q210.791 226.684 210.562 226.637Q210.334 226.590 210.189 226.403Q209.728 226.723 209.021 226.723Q208.686 226.723 208.381 226.582Q208.076 226.442 207.885 226.180Q207.693 225.918 207.693 225.571M208.334 225.579Q208.334 225.852 208.576 226.008Q208.818 226.164 209.103 226.164Q209.322 226.164 209.555 226.106Q209.787 226.047 209.949 225.909Q210.111 225.770 210.111 225.547L210.111 224.957Q209.830 224.957 209.414 225.014Q208.998 225.071 208.666 225.209Q208.334 225.348 208.334 225.579M211.982 226.446L211.982 226.356Q212.033 226.149 212.228 226.125L213.334 226.125L213.334 222.356L212.228 222.356Q212.033 222.332 211.982 222.118L211.982 222.028Q212.033 221.821 212.228 221.797L213.725 221.797Q213.916 221.821 213.975 222.028L213.975 226.125L215.076 226.125Q215.275 226.149 215.326 226.356L215.326 226.446Q215.275 226.661 215.076 226.684L212.228 226.684Q212.033 226.661 211.982 226.446M215.893 226.446L215.893 226.356Q215.943 226.149 216.139 226.125L216.314 226.125L216.314 222.356L216.139 222.356Q215.943 222.332 215.893 222.118L215.893 222.028Q215.943 221.821 216.139 221.797L216.826 221.797Q216.955 221.797 217.055 221.873Q217.154 221.950 217.193 222.059Q217.225 222.164 217.447 222.854Q217.670 223.543 217.785 223.940Q217.900 224.336 217.900 224.411Q217.908 224.332 217.963 224.135Q218.018 223.938 218.131 223.567Q218.244 223.196 218.391 222.733Q218.537 222.270 218.603 222.059Q218.643 221.950 218.746 221.873Q218.850 221.797 218.971 221.797L219.658 221.797Q219.857 221.821 219.908 222.028L219.908 222.118Q219.857 222.332 219.658 222.356L219.482 222.356L219.482 226.125L219.658 226.125Q219.857 226.149 219.908 226.356L219.908 226.446Q219.857 226.661 219.658 226.684L218.779 226.684Q218.584 226.661 218.533 226.446L218.533 226.356Q218.584 226.149 218.779 226.125L218.955 226.125L218.955 222.438Q218.955 222.496 218.871 222.795Q218.787 223.094 218.684 223.426Q218.580 223.758 218.449 224.166Q218.318 224.575 218.252 224.789Q218.213 224.903 218.113 224.977Q218.014 225.051 217.900 225.051Q217.787 225.051 217.687 224.977Q217.588 224.903 217.549 224.789Q217.482 224.575 217.348 224.157Q217.213 223.739 217.076 223.295Q216.939 222.852 216.895 222.688Q216.850 222.524 216.842 222.438L216.842 226.125L217.018 226.125Q217.217 226.149 217.268 226.356L217.268 226.446Q217.217 226.661 217.018 226.684L216.139 226.684Q215.943 226.661 215.893 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M158.038-60.689h99.384v287.373h-100.23\"\u002F>\u003Cpath stroke=\"none\" d=\"m155.192 226.684 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(90 271.471 218.726)\">\u003Cpath d=\"M126.610 226.446L126.610 226.356Q126.653 226.149 126.860 226.125L127.282 226.125L127.282 223.797L126.860 223.797Q126.653 223.774 126.610 223.555L126.610 223.469Q126.657 223.258 126.860 223.235L127.677 223.235Q127.872 223.258 127.923 223.469L127.923 223.555L127.915 223.579Q128.142 223.399 128.415 223.297Q128.688 223.196 128.981 223.196Q129.329 223.196 129.567 223.336Q129.806 223.477 129.921 223.735Q130.036 223.993 130.036 224.348L130.036 226.125L130.462 226.125Q130.669 226.149 130.708 226.356L130.708 226.446Q130.669 226.661 130.462 226.684L129.067 226.684Q128.872 226.661 128.821 226.446L128.821 226.356Q128.872 226.145 129.067 226.125L129.395 226.125L129.395 224.379Q129.395 224.071 129.306 223.913Q129.216 223.754 128.923 223.754Q128.653 223.754 128.425 223.885Q128.196 224.016 128.060 224.245Q127.923 224.473 127.923 224.739L127.923 226.125L128.349 226.125Q128.556 226.149 128.595 226.356L128.595 226.446Q128.556 226.661 128.349 226.684L126.860 226.684Q126.653 226.661 126.610 226.446M134.298 225.196L131.856 225.196Q131.911 225.473 132.108 225.696Q132.306 225.918 132.583 226.041Q132.860 226.164 133.145 226.164Q133.618 226.164 133.841 225.875Q133.849 225.864 133.905 225.758Q133.962 225.653 134.011 225.610Q134.060 225.567 134.153 225.555L134.298 225.555Q134.489 225.575 134.548 225.789L134.548 225.844Q134.481 226.145 134.251 226.342Q134.020 226.539 133.708 226.631Q133.395 226.723 133.091 226.723Q132.606 226.723 132.167 226.495Q131.728 226.266 131.460 225.866Q131.192 225.465 131.192 224.973L131.192 224.914Q131.192 224.446 131.438 224.043Q131.685 223.641 132.093 223.407Q132.501 223.172 132.970 223.172Q133.474 223.172 133.827 223.395Q134.181 223.618 134.364 224.006Q134.548 224.395 134.548 224.899L134.548 224.957Q134.489 225.172 134.298 225.196M131.864 224.645L133.892 224.645Q133.845 224.235 133.606 223.983Q133.368 223.731 132.970 223.731Q132.575 223.731 132.269 223.993Q131.962 224.254 131.864 224.645M136.040 226.461L135.575 223.797L135.415 223.797Q135.208 223.774 135.169 223.555L135.169 223.469Q135.208 223.258 135.415 223.235L136.583 223.235Q136.794 223.258 136.833 223.469L136.833 223.555Q136.794 223.774 136.583 223.797L136.110 223.797Q136.224 224.442 136.302 224.887Q136.380 225.332 136.431 225.651Q136.481 225.969 136.481 226.043Q136.489 225.871 136.774 224.875Q136.813 224.762 136.911 224.688Q137.009 224.614 137.130 224.614L137.208 224.614Q137.329 224.614 137.427 224.688Q137.524 224.762 137.560 224.875Q137.669 225.258 137.751 225.582Q137.833 225.907 137.833 226.043Q137.845 225.754 138.192 223.797L137.720 223.797Q137.513 223.774 137.474 223.555L137.474 223.469Q137.513 223.258 137.720 223.235L138.895 223.235Q139.087 223.258 139.145 223.469L139.145 223.555Q139.091 223.774 138.895 223.797L138.728 223.797L138.263 226.461Q138.239 226.579 138.151 226.651Q138.063 226.723 137.942 226.723L137.802 226.723Q137.681 226.723 137.585 226.651Q137.489 226.579 137.446 226.461Q137.399 226.282 137.327 226.026Q137.255 225.770 137.212 225.561Q137.169 225.352 137.169 225.250Q137.161 225.532 136.880 226.461Q136.853 226.571 136.755 226.647Q136.657 226.723 136.536 226.723L136.360 226.723Q136.239 226.723 136.151 226.651Q136.063 226.579 136.040 226.461M139.462 226.446L139.462 226.356Q139.501 226.149 139.712 226.125L140.020 226.125L140.020 222.356L139.712 222.356Q139.501 222.332 139.462 222.118L139.462 222.028Q139.501 221.821 139.712 221.797L141.661 221.797Q142.060 221.797 142.405 221.998Q142.751 222.200 142.958 222.545Q143.165 222.891 143.165 223.293Q143.165 223.700 142.960 224.043Q142.755 224.387 142.409 224.592Q142.063 224.797 141.661 224.797L140.661 224.797L140.661 226.125L140.974 226.125Q141.185 226.149 141.224 226.356L141.224 226.446Q141.185 226.661 140.974 226.684L139.712 226.684Q139.501 226.661 139.462 226.446M140.661 222.356L140.661 224.235L141.501 224.235Q141.763 224.235 141.999 224.112Q142.235 223.989 142.380 223.774Q142.524 223.559 142.524 223.293Q142.524 223.024 142.380 222.813Q142.235 222.602 141.999 222.479Q141.763 222.356 141.501 222.356L140.661 222.356M145.790 226.762Q145.341 226.762 144.976 226.538Q144.610 226.313 144.356 225.930Q144.103 225.547 143.978 225.104Q143.853 224.661 143.853 224.235Q143.853 223.809 143.978 223.370Q144.103 222.930 144.356 222.547Q144.610 222.164 144.970 221.940Q145.329 221.715 145.790 221.715Q146.067 221.715 146.325 221.807Q146.583 221.899 146.798 222.067L146.931 221.829Q146.958 221.778 147.013 221.746Q147.067 221.715 147.126 221.715L147.204 221.715Q147.298 221.727 147.360 221.786Q147.423 221.844 147.435 221.950L147.435 223.278Q147.423 223.379 147.360 223.442Q147.298 223.504 147.204 223.516L147.036 223.516Q146.935 223.504 146.872 223.438Q146.810 223.371 146.798 223.278Q146.759 223.012 146.636 222.788Q146.513 222.563 146.310 222.420Q146.106 222.278 145.845 222.278Q145.513 222.278 145.261 222.461Q145.009 222.645 144.837 222.946Q144.665 223.246 144.579 223.588Q144.493 223.930 144.493 224.235Q144.493 224.539 144.577 224.881Q144.661 225.223 144.833 225.526Q145.005 225.829 145.263 226.016Q145.520 226.204 145.853 226.204Q146.235 226.204 146.517 225.930Q146.798 225.657 146.798 225.270Q146.825 225.059 147.036 225.036L147.204 225.036Q147.435 225.075 147.435 225.301Q147.435 225.618 147.298 225.889Q147.161 226.161 146.927 226.358Q146.692 226.555 146.401 226.659Q146.110 226.762 145.790 226.762\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-49.868 233.797h34.144v-301.6h-34.144Z\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 -10.999 246.036)\">\u003Cpath d=\"M127.099 224.957Q127.099 224.477 127.343 224.063Q127.587 223.649 128.003 223.411Q128.419 223.172 128.899 223.172Q129.454 223.172 129.833 223.282Q130.212 223.391 130.212 223.797Q130.212 223.965 130.099 224.088Q129.985 224.211 129.813 224.211Q129.642 224.211 129.522 224.096Q129.403 223.981 129.403 223.813L129.403 223.754Q129.243 223.731 128.907 223.731Q128.579 223.731 128.311 223.901Q128.044 224.071 127.892 224.354Q127.739 224.637 127.739 224.957Q127.739 225.278 127.911 225.559Q128.083 225.840 128.368 226.002Q128.653 226.164 128.981 226.164Q129.294 226.164 129.421 226.061Q129.548 225.957 129.665 225.768Q129.782 225.579 129.899 225.563L130.067 225.563Q130.173 225.575 130.237 225.643Q130.302 225.711 130.302 225.813Q130.302 225.860 130.282 225.899Q130.173 226.192 129.970 226.371Q129.767 226.551 129.491 226.637Q129.216 226.723 128.899 226.723Q128.415 226.723 127.999 226.485Q127.583 226.246 127.341 225.844Q127.099 225.442 127.099 224.957M132.907 226.723Q132.435 226.723 132.050 226.479Q131.665 226.235 131.442 225.825Q131.220 225.414 131.220 224.957Q131.220 224.614 131.345 224.291Q131.470 223.969 131.700 223.715Q131.931 223.461 132.237 223.317Q132.544 223.172 132.907 223.172Q133.270 223.172 133.583 223.319Q133.895 223.465 134.118 223.711Q134.341 223.957 134.468 224.278Q134.595 224.598 134.595 224.957Q134.595 225.414 134.370 225.827Q134.145 226.239 133.761 226.481Q133.376 226.723 132.907 226.723M132.907 226.164Q133.372 226.164 133.663 225.770Q133.954 225.375 133.954 224.891Q133.954 224.598 133.819 224.330Q133.685 224.063 133.444 223.897Q133.204 223.731 132.907 223.731Q132.603 223.731 132.364 223.897Q132.126 224.063 131.991 224.330Q131.856 224.598 131.856 224.891Q131.856 225.371 132.149 225.768Q132.442 226.164 132.907 226.164M135.103 226.446L135.103 226.356Q135.145 226.149 135.353 226.125L135.774 226.125L135.774 223.797L135.353 223.797Q135.145 223.774 135.103 223.555L135.103 223.469Q135.149 223.258 135.353 223.235L136.169 223.235Q136.364 223.258 136.415 223.469L136.415 223.555L136.407 223.579Q136.634 223.399 136.907 223.297Q137.181 223.196 137.474 223.196Q137.821 223.196 138.060 223.336Q138.298 223.477 138.413 223.735Q138.528 223.993 138.528 224.348L138.528 226.125L138.954 226.125Q139.161 226.149 139.200 226.356L139.200 226.446Q139.161 226.661 138.954 226.684L137.560 226.684Q137.364 226.661 137.313 226.446L137.313 226.356Q137.364 226.145 137.560 226.125L137.888 226.125L137.888 224.379Q137.888 224.071 137.798 223.913Q137.708 223.754 137.415 223.754Q137.145 223.754 136.917 223.885Q136.688 224.016 136.552 224.245Q136.415 224.473 136.415 224.739L136.415 226.125L136.841 226.125Q137.048 226.149 137.087 226.356L137.087 226.446Q137.048 226.661 136.841 226.684L135.353 226.684Q135.145 226.661 135.103 226.446M140.478 225.579L140.478 223.797L139.728 223.797Q139.528 223.774 139.478 223.555L139.478 223.469Q139.528 223.258 139.728 223.235L140.478 223.235L140.478 222.485Q140.528 222.278 140.728 222.250L140.872 222.250Q141.067 222.278 141.118 222.485L141.118 223.235L142.478 223.235Q142.669 223.254 142.728 223.469L142.728 223.555Q142.673 223.774 142.478 223.797L141.118 223.797L141.118 225.547Q141.118 226.164 141.692 226.164Q141.942 226.164 142.106 225.979Q142.270 225.793 142.270 225.547Q142.270 225.454 142.343 225.383Q142.415 225.313 142.517 225.301L142.661 225.301Q142.860 225.325 142.911 225.532L142.911 225.579Q142.911 225.903 142.728 226.166Q142.544 226.430 142.251 226.577Q141.958 226.723 141.638 226.723Q141.126 226.723 140.802 226.413Q140.478 226.102 140.478 225.579M143.747 226.446L143.747 226.356Q143.806 226.149 143.997 226.125L144.708 226.125L144.708 223.797L143.997 223.797Q143.802 223.774 143.747 223.555L143.747 223.469Q143.806 223.258 143.997 223.235L145.099 223.235Q145.298 223.254 145.349 223.469L145.349 223.797Q145.610 223.512 145.966 223.354Q146.321 223.196 146.708 223.196Q147.001 223.196 147.235 223.330Q147.470 223.465 147.470 223.731Q147.470 223.899 147.360 224.016Q147.251 224.133 147.083 224.133Q146.931 224.133 146.815 224.022Q146.700 223.911 146.700 223.754Q146.325 223.754 146.011 223.955Q145.696 224.157 145.522 224.491Q145.349 224.825 145.349 225.204L145.349 226.125L146.294 226.125Q146.501 226.149 146.540 226.356L146.540 226.446Q146.501 226.661 146.294 226.684L143.997 226.684Q143.806 226.661 143.747 226.446M149.892 226.723Q149.419 226.723 149.034 226.479Q148.649 226.235 148.427 225.825Q148.204 225.414 148.204 224.957Q148.204 224.614 148.329 224.291Q148.454 223.969 148.685 223.715Q148.915 223.461 149.222 223.317Q149.528 223.172 149.892 223.172Q150.255 223.172 150.567 223.319Q150.880 223.465 151.103 223.711Q151.325 223.957 151.452 224.278Q151.579 224.598 151.579 224.957Q151.579 225.414 151.354 225.827Q151.130 226.239 150.745 226.481Q150.360 226.723 149.892 226.723M149.892 226.164Q150.356 226.164 150.647 225.770Q150.938 225.375 150.938 224.891Q150.938 224.598 150.804 224.330Q150.669 224.063 150.429 223.897Q150.188 223.731 149.892 223.731Q149.587 223.731 149.349 223.897Q149.110 224.063 148.976 224.330Q148.841 224.598 148.841 224.891Q148.841 225.371 149.134 225.768Q149.427 226.164 149.892 226.164M152.466 226.446L152.466 226.356Q152.517 226.149 152.712 226.125L153.817 226.125L153.817 222.356L152.712 222.356Q152.517 222.332 152.466 222.118L152.466 222.028Q152.517 221.821 152.712 221.797L154.208 221.797Q154.399 221.821 154.458 222.028L154.458 226.125L155.560 226.125Q155.759 226.149 155.810 226.356L155.810 226.446Q155.759 226.661 155.560 226.684L152.712 226.684Q152.517 226.661 152.466 226.446\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -10.999 246.036)\">\u003Cpath d=\"M161.282 225.829L161.282 223.797L160.860 223.797Q160.653 223.774 160.610 223.555L160.610 223.469Q160.657 223.258 160.860 223.235L161.677 223.235Q161.872 223.258 161.923 223.469L161.923 225.797Q161.923 226.032 162.093 226.098Q162.263 226.164 162.548 226.164Q162.755 226.164 162.950 226.088Q163.145 226.012 163.270 225.862Q163.395 225.711 163.395 225.500L163.395 223.797L162.974 223.797Q162.763 223.774 162.724 223.555L162.724 223.469Q162.763 223.258 162.974 223.235L163.786 223.235Q163.985 223.258 164.036 223.469L164.036 226.125L164.462 226.125Q164.669 226.149 164.708 226.356L164.708 226.446Q164.669 226.661 164.462 226.684L163.645 226.684Q163.446 226.661 163.395 226.461Q162.993 226.723 162.485 226.723Q162.251 226.723 162.036 226.682Q161.821 226.641 161.655 226.539Q161.489 226.438 161.386 226.260Q161.282 226.082 161.282 225.829M164.856 226.446L164.856 226.356Q164.899 226.149 165.106 226.125L165.528 226.125L165.528 223.797L165.106 223.797Q164.899 223.774 164.856 223.555L164.856 223.469Q164.903 223.258 165.106 223.235L165.923 223.235Q166.118 223.258 166.169 223.469L166.169 223.555L166.161 223.579Q166.388 223.399 166.661 223.297Q166.935 223.196 167.227 223.196Q167.575 223.196 167.813 223.336Q168.052 223.477 168.167 223.735Q168.282 223.993 168.282 224.348L168.282 226.125L168.708 226.125Q168.915 226.149 168.954 226.356L168.954 226.446Q168.915 226.661 168.708 226.684L167.313 226.684Q167.118 226.661 167.067 226.446L167.067 226.356Q167.118 226.145 167.313 226.125L167.642 226.125L167.642 224.379Q167.642 224.071 167.552 223.913Q167.462 223.754 167.169 223.754Q166.899 223.754 166.671 223.885Q166.442 224.016 166.306 224.245Q166.169 224.473 166.169 224.739L166.169 226.125L166.595 226.125Q166.802 226.149 166.841 226.356L166.841 226.446Q166.802 226.661 166.595 226.684L165.106 226.684Q164.899 226.661 164.856 226.446M169.649 226.446L169.649 226.356Q169.700 226.149 169.895 226.125L170.935 226.125L170.935 223.797L169.962 223.797Q169.763 223.774 169.712 223.555L169.712 223.469Q169.763 223.258 169.962 223.235L171.329 223.235Q171.524 223.254 171.575 223.469L171.575 226.125L172.489 226.125Q172.685 226.149 172.735 226.356L172.735 226.446Q172.685 226.661 172.489 226.684L169.895 226.684Q169.700 226.661 169.649 226.446M170.681 222.258L170.681 222.204Q170.681 222.032 170.817 221.911Q170.954 221.789 171.130 221.789Q171.302 221.789 171.438 221.911Q171.575 222.032 171.575 222.204L171.575 222.258Q171.575 222.434 171.438 222.555Q171.302 222.676 171.130 222.676Q170.954 222.676 170.817 222.555Q170.681 222.434 170.681 222.258M174.477 225.579L174.477 223.797L173.727 223.797Q173.528 223.774 173.477 223.555L173.477 223.469Q173.528 223.258 173.727 223.235L174.477 223.235L174.477 222.485Q174.528 222.278 174.727 222.250L174.872 222.250Q175.067 222.278 175.118 222.485L175.118 223.235L176.477 223.235Q176.669 223.254 176.727 223.469L176.727 223.555Q176.673 223.774 176.477 223.797L175.118 223.797L175.118 225.547Q175.118 226.164 175.692 226.164Q175.942 226.164 176.106 225.979Q176.270 225.793 176.270 225.547Q176.270 225.454 176.343 225.383Q176.415 225.313 176.517 225.301L176.661 225.301Q176.860 225.325 176.911 225.532L176.911 225.579Q176.911 225.903 176.727 226.166Q176.544 226.430 176.251 226.577Q175.958 226.723 175.638 226.723Q175.126 226.723 174.802 226.413Q174.477 226.102 174.477 225.579\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 -8.576 275.49)\">\u003Cpath d=\"M126.485 226.446L126.485 226.356Q126.536 226.145 126.731 226.125L126.931 226.125L126.931 223.797L126.731 223.797Q126.524 223.774 126.485 223.555L126.485 223.469Q126.536 223.254 126.731 223.235L127.212 223.235Q127.403 223.258 127.462 223.469Q127.782 223.196 128.196 223.196Q128.388 223.196 128.556 223.305Q128.724 223.414 128.798 223.586Q128.974 223.395 129.196 223.295Q129.419 223.196 129.661 223.196Q130.079 223.196 130.233 223.538Q130.388 223.879 130.388 224.348L130.388 226.125L130.587 226.125Q130.798 226.149 130.837 226.356L130.837 226.446Q130.786 226.661 130.587 226.684L129.770 226.684Q129.575 226.661 129.524 226.446L129.524 226.356Q129.575 226.149 129.770 226.125L129.860 226.125L129.860 224.379Q129.860 223.754 129.610 223.754Q129.278 223.754 129.101 224.065Q128.923 224.375 128.923 224.739L128.923 226.125L129.126 226.125Q129.333 226.149 129.372 226.356L129.372 226.446Q129.321 226.661 129.126 226.684L128.310 226.684Q128.110 226.661 128.060 226.446L128.060 226.356Q128.110 226.149 128.310 226.125L128.395 226.125L128.395 224.379Q128.395 223.754 128.149 223.754Q127.817 223.754 127.640 224.067Q127.462 224.379 127.462 224.739L127.462 226.125L127.661 226.125Q127.868 226.149 127.907 226.356L127.907 226.446Q127.856 226.664 127.661 226.684L126.731 226.684Q126.524 226.661 126.485 226.446M131.528 225.829L131.528 223.797L131.106 223.797Q130.899 223.774 130.856 223.555L130.856 223.469Q130.903 223.258 131.106 223.235L131.923 223.235Q132.118 223.258 132.169 223.469L132.169 225.797Q132.169 226.032 132.339 226.098Q132.509 226.164 132.794 226.164Q133.001 226.164 133.196 226.088Q133.392 226.012 133.517 225.862Q133.642 225.711 133.642 225.500L133.642 223.797L133.220 223.797Q133.009 223.774 132.970 223.555L132.970 223.469Q133.009 223.258 133.220 223.235L134.032 223.235Q134.231 223.258 134.282 223.469L134.282 226.125L134.708 226.125Q134.915 226.149 134.954 226.356L134.954 226.446Q134.915 226.661 134.708 226.684L133.892 226.684Q133.692 226.661 133.642 226.461Q133.239 226.723 132.731 226.723Q132.497 226.723 132.282 226.682Q132.067 226.641 131.901 226.539Q131.735 226.438 131.632 226.260Q131.528 226.082 131.528 225.829M135.290 226.446L135.290 226.356Q135.329 226.149 135.536 226.125L135.942 226.125L136.872 224.907L136.001 223.797L135.583 223.797Q135.388 223.778 135.337 223.555L135.337 223.469Q135.388 223.258 135.583 223.235L136.743 223.235Q136.942 223.258 136.993 223.469L136.993 223.555Q136.942 223.774 136.743 223.797L136.634 223.797L137.130 224.454L137.606 223.797L137.489 223.797Q137.290 223.774 137.239 223.555L137.239 223.469Q137.290 223.258 137.489 223.235L138.649 223.235Q138.845 223.254 138.895 223.469L138.895 223.555Q138.845 223.774 138.649 223.797L138.239 223.797L137.392 224.907L138.353 226.125L138.759 226.125Q138.958 226.149 139.009 226.356L139.009 226.446Q138.970 226.661 138.759 226.684L137.606 226.684Q137.399 226.661 137.360 226.446L137.360 226.356Q137.399 226.149 137.606 226.125L137.735 226.125L137.130 225.270L136.544 226.125L136.688 226.125Q136.895 226.149 136.935 226.356L136.935 226.446Q136.895 226.661 136.688 226.684L135.536 226.684Q135.341 226.664 135.290 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -8.576 275.49)\">\u003Cpath d=\"M144.126 226.485L144.126 225.571Q144.153 225.364 144.364 225.340L144.532 225.340Q144.696 225.364 144.755 225.524Q144.958 226.164 145.685 226.164Q145.892 226.164 146.120 226.129Q146.349 226.094 146.517 225.979Q146.685 225.864 146.685 225.661Q146.685 225.450 146.462 225.336Q146.239 225.223 145.966 225.180L145.267 225.067Q144.126 224.856 144.126 224.133Q144.126 223.844 144.270 223.655Q144.415 223.465 144.655 223.358Q144.895 223.250 145.151 223.211Q145.407 223.172 145.685 223.172Q145.935 223.172 146.128 223.202Q146.321 223.231 146.485 223.309Q146.563 223.192 146.692 223.172L146.770 223.172Q146.868 223.184 146.931 223.246Q146.993 223.309 147.005 223.403L147.005 224.110Q146.993 224.204 146.931 224.270Q146.868 224.336 146.770 224.348L146.602 224.348Q146.509 224.336 146.442 224.270Q146.376 224.204 146.364 224.110Q146.364 223.731 145.669 223.731Q145.321 223.731 145.003 223.813Q144.685 223.895 144.685 224.141Q144.685 224.407 145.356 224.516L146.060 224.637Q146.544 224.719 146.894 224.967Q147.243 225.215 147.243 225.661Q147.243 226.051 147.007 226.293Q146.770 226.536 146.421 226.629Q146.071 226.723 145.685 226.723Q145.106 226.723 144.708 226.469Q144.638 226.594 144.589 226.651Q144.540 226.707 144.435 226.723L144.364 226.723Q144.149 226.700 144.126 226.485M151.298 225.196L148.856 225.196Q148.911 225.473 149.108 225.696Q149.306 225.918 149.583 226.041Q149.860 226.164 150.145 226.164Q150.618 226.164 150.841 225.875Q150.849 225.864 150.905 225.758Q150.962 225.653 151.011 225.610Q151.060 225.567 151.153 225.555L151.298 225.555Q151.489 225.575 151.548 225.789L151.548 225.844Q151.481 226.145 151.251 226.342Q151.020 226.539 150.708 226.631Q150.395 226.723 150.091 226.723Q149.606 226.723 149.167 226.495Q148.727 226.266 148.460 225.866Q148.192 225.465 148.192 224.973L148.192 224.914Q148.192 224.446 148.438 224.043Q148.685 223.641 149.093 223.407Q149.501 223.172 149.970 223.172Q150.474 223.172 150.827 223.395Q151.181 223.618 151.364 224.006Q151.548 224.395 151.548 224.899L151.548 224.957Q151.489 225.172 151.298 225.196M148.864 224.645L150.892 224.645Q150.845 224.235 150.606 223.983Q150.368 223.731 149.970 223.731Q149.575 223.731 149.269 223.993Q148.962 224.254 148.864 224.645M152.481 226.446L152.481 226.356Q152.532 226.149 152.727 226.125L153.833 226.125L153.833 222.356L152.727 222.356Q152.532 222.332 152.481 222.118L152.481 222.028Q152.532 221.821 152.727 221.797L154.224 221.797Q154.415 221.821 154.474 222.028L154.474 226.125L155.575 226.125Q155.774 226.149 155.825 226.356L155.825 226.446Q155.774 226.661 155.575 226.684L152.727 226.684Q152.532 226.661 152.481 226.446M159.790 225.196L157.349 225.196Q157.403 225.473 157.601 225.696Q157.798 225.918 158.075 226.041Q158.352 226.164 158.638 226.164Q159.110 226.164 159.333 225.875Q159.341 225.864 159.397 225.758Q159.454 225.653 159.503 225.610Q159.552 225.567 159.645 225.555L159.790 225.555Q159.981 225.575 160.040 225.789L160.040 225.844Q159.974 226.145 159.743 226.342Q159.513 226.539 159.200 226.631Q158.888 226.723 158.583 226.723Q158.099 226.723 157.659 226.495Q157.220 226.266 156.952 225.866Q156.685 225.465 156.685 224.973L156.685 224.914Q156.685 224.446 156.931 224.043Q157.177 223.641 157.585 223.407Q157.993 223.172 158.462 223.172Q158.966 223.172 159.319 223.395Q159.673 223.618 159.856 224.006Q160.040 224.395 160.040 224.899L160.040 224.957Q159.981 225.172 159.790 225.196M157.356 224.645L159.384 224.645Q159.337 224.235 159.099 223.983Q158.860 223.731 158.462 223.731Q158.067 223.731 157.761 223.993Q157.454 224.254 157.356 224.645M161.083 224.957Q161.083 224.477 161.327 224.063Q161.571 223.649 161.987 223.411Q162.403 223.172 162.884 223.172Q163.438 223.172 163.817 223.282Q164.196 223.391 164.196 223.797Q164.196 223.965 164.083 224.088Q163.970 224.211 163.798 224.211Q163.626 224.211 163.507 224.096Q163.388 223.981 163.388 223.813L163.388 223.754Q163.227 223.731 162.892 223.731Q162.563 223.731 162.296 223.901Q162.028 224.071 161.876 224.354Q161.724 224.637 161.724 224.957Q161.724 225.278 161.895 225.559Q162.067 225.840 162.352 226.002Q162.638 226.164 162.966 226.164Q163.278 226.164 163.405 226.061Q163.532 225.957 163.649 225.768Q163.767 225.579 163.884 225.563L164.052 225.563Q164.157 225.575 164.222 225.643Q164.286 225.711 164.286 225.813Q164.286 225.860 164.267 225.899Q164.157 226.192 163.954 226.371Q163.751 226.551 163.476 226.637Q163.200 226.723 162.884 226.723Q162.399 226.723 161.983 226.485Q161.567 226.246 161.325 225.844Q161.083 225.442 161.083 224.957M165.970 225.579L165.970 223.797L165.220 223.797Q165.020 223.774 164.970 223.555L164.970 223.469Q165.020 223.258 165.220 223.235L165.970 223.235L165.970 222.485Q166.020 222.278 166.220 222.250L166.364 222.250Q166.560 222.278 166.610 222.485L166.610 223.235L167.970 223.235Q168.161 223.254 168.220 223.469L168.220 223.555Q168.165 223.774 167.970 223.797L166.610 223.797L166.610 225.547Q166.610 226.164 167.185 226.164Q167.435 226.164 167.599 225.979Q167.763 225.793 167.763 225.547Q167.763 225.454 167.835 225.383Q167.907 225.313 168.009 225.301L168.153 225.301Q168.352 225.325 168.403 225.532L168.403 225.579Q168.403 225.903 168.220 226.166Q168.036 226.430 167.743 226.577Q167.450 226.723 167.130 226.723Q166.618 226.723 166.294 226.413Q165.970 226.102 165.970 225.579M169.602 226.485L169.602 225.571Q169.630 225.364 169.841 225.340L170.009 225.340Q170.173 225.364 170.231 225.524Q170.435 226.164 171.161 226.164Q171.368 226.164 171.597 226.129Q171.825 226.094 171.993 225.979Q172.161 225.864 172.161 225.661Q172.161 225.450 171.938 225.336Q171.716 225.223 171.442 225.180L170.743 225.067Q169.602 224.856 169.602 224.133Q169.602 223.844 169.747 223.655Q169.892 223.465 170.132 223.358Q170.372 223.250 170.628 223.211Q170.884 223.172 171.161 223.172Q171.411 223.172 171.604 223.202Q171.798 223.231 171.962 223.309Q172.040 223.192 172.169 223.172L172.247 223.172Q172.345 223.184 172.407 223.246Q172.470 223.309 172.481 223.403L172.481 224.110Q172.470 224.204 172.407 224.270Q172.345 224.336 172.247 224.348L172.079 224.348Q171.985 224.336 171.919 224.270Q171.852 224.204 171.841 224.110Q171.841 223.731 171.145 223.731Q170.798 223.731 170.479 223.813Q170.161 223.895 170.161 224.141Q170.161 224.407 170.833 224.516L171.536 224.637Q172.020 224.719 172.370 224.967Q172.720 225.215 172.720 225.661Q172.720 226.051 172.483 226.293Q172.247 226.536 171.897 226.629Q171.548 226.723 171.161 226.723Q170.583 226.723 170.185 226.469Q170.114 226.594 170.065 226.651Q170.017 226.707 169.911 226.723L169.841 226.723Q169.626 226.700 169.602 226.485\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -8.576 275.49)\">\u003Cpath d=\"M179.356 225.762L179.356 224.547L178.142 224.547Q178.017 224.536 177.931 224.450Q177.845 224.364 177.845 224.235Q177.845 224.106 177.931 224.024Q178.017 223.942 178.142 223.930L179.356 223.930L179.356 222.707Q179.368 222.582 179.454 222.500Q179.540 222.418 179.669 222.418Q179.798 222.418 179.880 222.500Q179.962 222.582 179.974 222.707L179.974 223.930L181.188 223.930Q181.313 223.942 181.395 224.024Q181.477 224.106 181.477 224.235Q181.477 224.364 181.395 224.450Q181.313 224.536 181.188 224.547L179.974 224.547L179.974 225.762Q179.962 225.887 179.880 225.973Q179.798 226.059 179.669 226.059Q179.540 226.059 179.454 225.973Q179.368 225.887 179.356 225.762\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -8.576 275.49)\">\u003Cpath d=\"M187.048 226.461L186.583 223.797L186.423 223.797Q186.216 223.774 186.177 223.555L186.177 223.469Q186.216 223.258 186.423 223.235L187.591 223.235Q187.802 223.258 187.841 223.469L187.841 223.555Q187.802 223.774 187.591 223.797L187.118 223.797Q187.231 224.442 187.310 224.887Q187.388 225.332 187.438 225.651Q187.489 225.969 187.489 226.043Q187.497 225.871 187.782 224.875Q187.821 224.762 187.919 224.688Q188.017 224.614 188.138 224.614L188.216 224.614Q188.337 224.614 188.435 224.688Q188.532 224.762 188.567 224.875Q188.677 225.258 188.759 225.582Q188.841 225.907 188.841 226.043Q188.852 225.754 189.200 223.797L188.727 223.797Q188.520 223.774 188.481 223.555L188.481 223.469Q188.520 223.258 188.727 223.235L189.903 223.235Q190.095 223.258 190.153 223.469L190.153 223.555Q190.099 223.774 189.903 223.797L189.735 223.797L189.270 226.461Q189.247 226.579 189.159 226.651Q189.071 226.723 188.950 226.723L188.810 226.723Q188.688 226.723 188.593 226.651Q188.497 226.579 188.454 226.461Q188.407 226.282 188.335 226.026Q188.263 225.770 188.220 225.561Q188.177 225.352 188.177 225.250Q188.169 225.532 187.888 226.461Q187.860 226.571 187.763 226.647Q187.665 226.723 187.544 226.723L187.368 226.723Q187.247 226.723 187.159 226.651Q187.071 226.579 187.048 226.461M190.509 226.446L190.509 226.356Q190.567 226.149 190.759 226.125L191.470 226.125L191.470 223.797L190.759 223.797Q190.563 223.774 190.509 223.555L190.509 223.469Q190.567 223.258 190.759 223.235L191.860 223.235Q192.060 223.254 192.110 223.469L192.110 223.797Q192.372 223.512 192.727 223.354Q193.083 223.196 193.470 223.196Q193.763 223.196 193.997 223.330Q194.231 223.465 194.231 223.731Q194.231 223.899 194.122 224.016Q194.013 224.133 193.845 224.133Q193.692 224.133 193.577 224.022Q193.462 223.911 193.462 223.754Q193.087 223.754 192.772 223.955Q192.458 224.157 192.284 224.491Q192.110 224.825 192.110 225.204L192.110 226.125L193.056 226.125Q193.263 226.149 193.302 226.356L193.302 226.446Q193.263 226.661 193.056 226.684L190.759 226.684Q190.567 226.661 190.509 226.446M195.149 226.446L195.149 226.356Q195.200 226.149 195.395 226.125L196.435 226.125L196.435 223.797L195.462 223.797Q195.263 223.774 195.212 223.555L195.212 223.469Q195.263 223.258 195.462 223.235L196.829 223.235Q197.024 223.254 197.075 223.469L197.075 226.125L197.989 226.125Q198.185 226.149 198.235 226.356L198.235 226.446Q198.185 226.661 197.989 226.684L195.395 226.684Q195.200 226.661 195.149 226.446M196.181 222.258L196.181 222.204Q196.181 222.032 196.317 221.911Q196.454 221.789 196.630 221.789Q196.802 221.789 196.938 221.911Q197.075 222.032 197.075 222.204L197.075 222.258Q197.075 222.434 196.938 222.555Q196.802 222.676 196.630 222.676Q196.454 222.676 196.317 222.555Q196.181 222.434 196.181 222.258M199.977 225.579L199.977 223.797L199.227 223.797Q199.028 223.774 198.977 223.555L198.977 223.469Q199.028 223.258 199.227 223.235L199.977 223.235L199.977 222.485Q200.028 222.278 200.227 222.250L200.372 222.250Q200.567 222.278 200.618 222.485L200.618 223.235L201.977 223.235Q202.169 223.254 202.227 223.469L202.227 223.555Q202.173 223.774 201.977 223.797L200.618 223.797L200.618 225.547Q200.618 226.164 201.192 226.164Q201.442 226.164 201.606 225.979Q201.770 225.793 201.770 225.547Q201.770 225.454 201.843 225.383Q201.915 225.313 202.017 225.301L202.161 225.301Q202.360 225.325 202.411 225.532L202.411 225.579Q202.411 225.903 202.227 226.166Q202.044 226.430 201.751 226.577Q201.458 226.723 201.138 226.723Q200.626 226.723 200.302 226.413Q199.977 226.102 199.977 225.579M206.536 225.196L204.095 225.196Q204.149 225.473 204.347 225.696Q204.544 225.918 204.821 226.041Q205.099 226.164 205.384 226.164Q205.856 226.164 206.079 225.875Q206.087 225.864 206.144 225.758Q206.200 225.653 206.249 225.610Q206.298 225.567 206.392 225.555L206.536 225.555Q206.727 225.575 206.786 225.789L206.786 225.844Q206.720 226.145 206.489 226.342Q206.259 226.539 205.946 226.631Q205.634 226.723 205.329 226.723Q204.845 226.723 204.405 226.495Q203.966 226.266 203.698 225.866Q203.431 225.465 203.431 224.973L203.431 224.914Q203.431 224.446 203.677 224.043Q203.923 223.641 204.331 223.407Q204.739 223.172 205.208 223.172Q205.712 223.172 206.065 223.395Q206.419 223.618 206.602 224.006Q206.786 224.395 206.786 224.899L206.786 224.957Q206.727 225.172 206.536 225.196M204.102 224.645L206.130 224.645Q206.083 224.235 205.845 223.983Q205.606 223.731 205.208 223.731Q204.813 223.731 204.507 223.993Q204.200 224.254 204.102 224.645\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 -8.576 275.49)\">\u003Cpath d=\"M215.053 225.196L212.611 225.196Q212.666 225.473 212.863 225.696Q213.061 225.918 213.338 226.041Q213.615 226.164 213.900 226.164Q214.373 226.164 214.596 225.875Q214.603 225.864 214.660 225.758Q214.717 225.653 214.766 225.610Q214.814 225.567 214.908 225.555L215.053 225.555Q215.244 225.575 215.303 225.789L215.303 225.844Q215.236 226.145 215.006 226.342Q214.775 226.539 214.463 226.631Q214.150 226.723 213.846 226.723Q213.361 226.723 212.922 226.495Q212.482 226.266 212.215 225.866Q211.947 225.465 211.947 224.973L211.947 224.914Q211.947 224.446 212.193 224.043Q212.439 223.641 212.848 223.407Q213.256 223.172 213.725 223.172Q214.228 223.172 214.582 223.395Q214.936 223.618 215.119 224.006Q215.303 224.395 215.303 224.899L215.303 224.957Q215.244 225.172 215.053 225.196M212.619 224.645L214.646 224.645Q214.600 224.235 214.361 223.983Q214.123 223.731 213.725 223.731Q213.330 223.731 213.023 223.993Q212.717 224.254 212.619 224.645M215.857 226.446L215.857 226.356Q215.900 226.149 216.107 226.125L216.529 226.125L216.529 223.797L216.107 223.797Q215.900 223.774 215.857 223.555L215.857 223.469Q215.904 223.258 216.107 223.235L216.924 223.235Q217.119 223.258 217.170 223.469L217.170 223.555L217.162 223.579Q217.389 223.399 217.662 223.297Q217.936 223.196 218.228 223.196Q218.576 223.196 218.814 223.336Q219.053 223.477 219.168 223.735Q219.283 223.993 219.283 224.348L219.283 226.125L219.709 226.125Q219.916 226.149 219.955 226.356L219.955 226.446Q219.916 226.661 219.709 226.684L218.314 226.684Q218.119 226.661 218.068 226.446L218.068 226.356Q218.119 226.145 218.314 226.125L218.643 226.125L218.643 224.379Q218.643 224.071 218.553 223.913Q218.463 223.754 218.170 223.754Q217.900 223.754 217.672 223.885Q217.443 224.016 217.307 224.245Q217.170 224.473 217.170 224.739L217.170 226.125L217.596 226.125Q217.803 226.149 217.842 226.356L217.842 226.446Q217.803 226.661 217.596 226.684L216.107 226.684Q215.900 226.661 215.857 226.446M220.439 225.571Q220.439 225.125 220.853 224.868Q221.268 224.610 221.809 224.510Q222.350 224.411 222.857 224.403Q222.857 224.188 222.723 224.036Q222.588 223.883 222.381 223.807Q222.174 223.731 221.963 223.731Q221.619 223.731 221.459 223.754L221.459 223.813Q221.459 223.981 221.340 224.096Q221.221 224.211 221.057 224.211Q220.881 224.211 220.766 224.088Q220.650 223.965 220.650 223.797Q220.650 223.391 221.031 223.282Q221.412 223.172 221.971 223.172Q222.240 223.172 222.508 223.250Q222.775 223.329 223 223.479Q223.225 223.629 223.361 223.850Q223.498 224.071 223.498 224.348L223.498 226.067Q223.498 226.125 224.025 226.125Q224.221 226.145 224.271 226.356L224.271 226.446Q224.221 226.661 224.025 226.684L223.881 226.684Q223.537 226.684 223.309 226.637Q223.080 226.590 222.936 226.403Q222.475 226.723 221.768 226.723Q221.432 226.723 221.127 226.582Q220.822 226.442 220.631 226.180Q220.439 225.918 220.439 225.571M221.080 225.579Q221.080 225.852 221.322 226.008Q221.564 226.164 221.850 226.164Q222.068 226.164 222.301 226.106Q222.533 226.047 222.695 225.909Q222.857 225.770 222.857 225.547L222.857 224.957Q222.576 224.957 222.160 225.014Q221.744 225.071 221.412 225.209Q221.080 225.348 221.080 225.579M225.021 226.446L225.021 222.356L224.600 222.356Q224.393 222.332 224.350 222.118L224.350 222.028Q224.393 221.821 224.600 221.797L225.416 221.797Q225.611 221.821 225.662 222.028L225.662 223.539Q225.873 223.371 226.137 223.284Q226.400 223.196 226.670 223.196Q227.010 223.196 227.307 223.340Q227.603 223.485 227.818 223.737Q228.033 223.989 228.148 224.301Q228.264 224.614 228.264 224.957Q228.264 225.422 228.037 225.832Q227.811 226.243 227.424 226.483Q227.037 226.723 226.568 226.723Q226.049 226.723 225.662 226.356L225.662 226.446Q225.611 226.664 225.416 226.684L225.271 226.684Q225.080 226.661 225.021 226.446M226.525 226.164Q226.834 226.164 227.084 225.995Q227.334 225.825 227.478 225.543Q227.623 225.262 227.623 224.957Q227.623 224.668 227.498 224.389Q227.373 224.110 227.141 223.932Q226.908 223.754 226.607 223.754Q226.287 223.754 226.025 223.940Q225.764 224.125 225.662 224.426L225.662 225.278Q225.752 225.645 225.973 225.905Q226.193 226.164 226.525 226.164M228.975 226.446L228.975 226.356Q229.025 226.149 229.221 226.125L230.326 226.125L230.326 222.356L229.221 222.356Q229.025 222.332 228.975 222.118L228.975 222.028Q229.025 221.821 229.221 221.797L230.717 221.797Q230.908 221.821 230.967 222.028L230.967 226.125L232.068 226.125Q232.268 226.149 232.318 226.356L232.318 226.446Q232.268 226.661 232.068 226.684L229.221 226.684Q229.025 226.661 228.975 226.446M236.283 225.196L233.842 225.196Q233.896 225.473 234.094 225.696Q234.291 225.918 234.568 226.041Q234.846 226.164 235.131 226.164Q235.603 226.164 235.826 225.875Q235.834 225.864 235.891 225.758Q235.947 225.653 235.996 225.610Q236.045 225.567 236.139 225.555L236.283 225.555Q236.475 225.575 236.533 225.789L236.533 225.844Q236.467 226.145 236.236 226.342Q236.006 226.539 235.693 226.631Q235.381 226.723 235.076 226.723Q234.592 226.723 234.152 226.495Q233.713 226.266 233.445 225.866Q233.178 225.465 233.178 224.973L233.178 224.914Q233.178 224.446 233.424 224.043Q233.670 223.641 234.078 223.407Q234.486 223.172 234.955 223.172Q235.459 223.172 235.812 223.395Q236.166 223.618 236.350 224.006Q236.533 224.395 236.533 224.899L236.533 224.957Q236.475 225.172 236.283 225.196M233.850 224.645L235.877 224.645Q235.830 224.235 235.592 223.983Q235.353 223.731 234.955 223.731Q234.561 223.731 234.254 223.993Q233.947 224.254 233.850 224.645M237.603 226.485L237.603 225.571Q237.631 225.364 237.842 225.340L238.010 225.340Q238.174 225.364 238.232 225.524Q238.436 226.164 239.162 226.164Q239.369 226.164 239.598 226.129Q239.826 226.094 239.994 225.979Q240.162 225.864 240.162 225.661Q240.162 225.450 239.939 225.336Q239.717 225.223 239.443 225.180L238.744 225.067Q237.603 224.856 237.603 224.133Q237.603 223.844 237.748 223.655Q237.893 223.465 238.133 223.358Q238.373 223.250 238.629 223.211Q238.885 223.172 239.162 223.172Q239.412 223.172 239.605 223.202Q239.799 223.231 239.963 223.309Q240.041 223.192 240.170 223.172L240.248 223.172Q240.346 223.184 240.408 223.246Q240.471 223.309 240.482 223.403L240.482 224.110Q240.471 224.204 240.408 224.270Q240.346 224.336 240.248 224.348L240.080 224.348Q239.986 224.336 239.920 224.270Q239.853 224.204 239.842 224.110Q239.842 223.731 239.146 223.731Q238.799 223.731 238.480 223.813Q238.162 223.895 238.162 224.141Q238.162 224.407 238.834 224.516L239.537 224.637Q240.021 224.719 240.371 224.967Q240.721 225.215 240.721 225.661Q240.721 226.051 240.484 226.293Q240.248 226.536 239.898 226.629Q239.549 226.723 239.162 226.723Q238.584 226.723 238.186 226.469Q238.115 226.594 238.066 226.651Q238.018 226.707 237.912 226.723L237.842 226.723Q237.627 226.700 237.603 226.485\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724 226.684h111.61\"\u002F>\u003Cpath stroke=\"none\" d=\"m97.887 226.684-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724 115.718H81.66\"\u002F>\u003Cpath stroke=\"none\" d=\"m83.66 115.718-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724 55.967H93.042\"\u002F>\u003Cpath stroke=\"none\" d=\"m95.042 55.967-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724-3.783H81.66\"\u002F>\u003Cpath stroke=\"none\" d=\"m83.66-3.783-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724-60.689H93.042\"\u002F>\u003Cpath stroke=\"none\" d=\"m95.042-60.689-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-15.724 184.005h95.39\"\u002F>\u003Cpath stroke=\"none\" d=\"m81.665 184.005-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M81.665 166.933h-95.39\"\u002F>\u003Cpath stroke=\"none\" d=\"m-15.724 166.933 3.2 1.6-1.2-1.6 1.2-1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-121.52 -64.706)\">\u003Cpath d=\"M127.157 226.446L127.157 226.356Q127.208 226.149 127.403 226.125L128.442 226.125L128.442 223.797L127.470 223.797Q127.270 223.774 127.220 223.555L127.220 223.469Q127.270 223.258 127.470 223.235L128.837 223.235Q129.032 223.254 129.083 223.469L129.083 226.125L129.997 226.125Q130.192 226.149 130.243 226.356L130.243 226.446Q130.192 226.661 129.997 226.684L127.403 226.684Q127.208 226.661 127.157 226.446M128.188 222.258L128.188 222.204Q128.188 222.032 128.325 221.911Q128.462 221.789 128.638 221.789Q128.810 221.789 128.946 221.911Q129.083 222.032 129.083 222.204L129.083 222.258Q129.083 222.434 128.946 222.555Q128.810 222.676 128.638 222.676Q128.462 222.676 128.325 222.555Q128.188 222.434 128.188 222.258M131.345 224.957Q131.345 224.477 131.589 224.063Q131.833 223.649 132.249 223.411Q132.665 223.172 133.145 223.172Q133.700 223.172 134.079 223.282Q134.458 223.391 134.458 223.797Q134.458 223.965 134.345 224.088Q134.231 224.211 134.060 224.211Q133.888 224.211 133.769 224.096Q133.649 223.981 133.649 223.813L133.649 223.754Q133.489 223.731 133.153 223.731Q132.825 223.731 132.558 223.901Q132.290 224.071 132.138 224.354Q131.985 224.637 131.985 224.957Q131.985 225.278 132.157 225.559Q132.329 225.840 132.614 226.002Q132.899 226.164 133.228 226.164Q133.540 226.164 133.667 226.061Q133.794 225.957 133.911 225.768Q134.028 225.579 134.145 225.563L134.313 225.563Q134.419 225.575 134.483 225.643Q134.548 225.711 134.548 225.813Q134.548 225.860 134.528 225.899Q134.419 226.192 134.216 226.371Q134.013 226.551 133.737 226.637Q133.462 226.723 133.145 226.723Q132.661 226.723 132.245 226.485Q131.829 226.246 131.587 225.844Q131.345 225.442 131.345 224.957M137.153 226.723Q136.681 226.723 136.296 226.479Q135.911 226.235 135.688 225.825Q135.466 225.414 135.466 224.957Q135.466 224.614 135.591 224.291Q135.716 223.969 135.946 223.715Q136.177 223.461 136.483 223.317Q136.790 223.172 137.153 223.172Q137.517 223.172 137.829 223.319Q138.142 223.465 138.364 223.711Q138.587 223.957 138.714 224.278Q138.841 224.598 138.841 224.957Q138.841 225.414 138.616 225.827Q138.392 226.239 138.007 226.481Q137.622 226.723 137.153 226.723M137.153 226.164Q137.618 226.164 137.909 225.770Q138.200 225.375 138.200 224.891Q138.200 224.598 138.065 224.330Q137.931 224.063 137.690 223.897Q137.450 223.731 137.153 223.731Q136.849 223.731 136.610 223.897Q136.372 224.063 136.237 224.330Q136.103 224.598 136.103 224.891Q136.103 225.371 136.395 225.768Q136.688 226.164 137.153 226.164M141.142 226.723Q140.677 226.723 140.311 226.473Q139.946 226.223 139.741 225.819Q139.536 225.414 139.536 224.957Q139.536 224.614 139.661 224.293Q139.786 223.973 140.019 223.723Q140.251 223.473 140.556 223.334Q140.860 223.196 141.216 223.196Q141.728 223.196 142.134 223.516L142.134 222.356L141.712 222.356Q141.501 222.332 141.462 222.118L141.462 222.028Q141.501 221.821 141.712 221.797L142.524 221.797Q142.724 221.821 142.774 222.028L142.774 226.125L143.200 226.125Q143.407 226.149 143.446 226.356L143.446 226.446Q143.407 226.661 143.200 226.684L142.384 226.684Q142.185 226.661 142.134 226.446L142.134 226.317Q141.938 226.508 141.677 226.616Q141.415 226.723 141.142 226.723M141.181 226.164Q141.540 226.164 141.792 225.895Q142.044 225.625 142.134 225.250L142.134 224.418Q142.075 224.231 141.948 224.080Q141.821 223.930 141.644 223.842Q141.466 223.754 141.270 223.754Q140.962 223.754 140.712 223.924Q140.462 224.094 140.317 224.379Q140.173 224.664 140.173 224.965Q140.173 225.414 140.458 225.789Q140.743 226.164 141.181 226.164M147.036 225.196L144.595 225.196Q144.649 225.473 144.847 225.696Q145.044 225.918 145.321 226.041Q145.599 226.164 145.884 226.164Q146.356 226.164 146.579 225.875Q146.587 225.864 146.644 225.758Q146.700 225.653 146.749 225.610Q146.798 225.567 146.892 225.555L147.036 225.555Q147.228 225.575 147.286 225.789L147.286 225.844Q147.220 226.145 146.989 226.342Q146.759 226.539 146.446 226.631Q146.134 226.723 145.829 226.723Q145.345 226.723 144.905 226.495Q144.466 226.266 144.198 225.866Q143.931 225.465 143.931 224.973L143.931 224.914Q143.931 224.446 144.177 224.043Q144.423 223.641 144.831 223.407Q145.239 223.172 145.708 223.172Q146.212 223.172 146.565 223.395Q146.919 223.618 147.103 224.006Q147.286 224.395 147.286 224.899L147.286 224.957Q147.228 225.172 147.036 225.196M144.603 224.645L146.630 224.645Q146.583 224.235 146.345 223.983Q146.106 223.731 145.708 223.731Q145.313 223.731 145.007 223.993Q144.700 224.254 144.603 224.645\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-121.52 -64.706)\">\u003Cpath d=\"M153.606 226.125Q153.606 225.903 153.772 225.737Q153.938 225.571 154.169 225.571Q154.317 225.571 154.444 225.649Q154.571 225.727 154.645 225.852Q154.720 225.977 154.720 226.125Q154.720 226.352 154.554 226.518Q154.388 226.684 154.169 226.684Q153.942 226.684 153.774 226.516Q153.606 226.348 153.606 226.125M153.606 223.789Q153.606 223.567 153.772 223.401Q153.938 223.235 154.169 223.235Q154.317 223.235 154.444 223.313Q154.571 223.391 154.645 223.516Q154.720 223.641 154.720 223.789Q154.720 224.016 154.554 224.182Q154.388 224.348 154.169 224.348Q153.942 224.348 153.774 224.180Q153.606 224.012 153.606 223.789\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-121.52 -64.706)\">\u003Cpath d=\"M165.407 226.446L165.407 226.356Q165.458 226.149 165.653 226.125L166.692 226.125L166.692 223.797L165.720 223.797Q165.520 223.774 165.470 223.555L165.470 223.469Q165.520 223.258 165.720 223.235L167.087 223.235Q167.282 223.254 167.333 223.469L167.333 226.125L168.247 226.125Q168.442 226.149 168.493 226.356L168.493 226.446Q168.442 226.661 168.247 226.684L165.653 226.684Q165.458 226.661 165.407 226.446M166.438 222.258L166.438 222.204Q166.438 222.032 166.575 221.911Q166.712 221.789 166.888 221.789Q167.060 221.789 167.196 221.911Q167.333 222.032 167.333 222.204L167.333 222.258Q167.333 222.434 167.196 222.555Q167.060 222.676 166.888 222.676Q166.712 222.676 166.575 222.555Q166.438 222.434 166.438 222.258M169.356 226.446L169.356 226.356Q169.407 226.149 169.602 226.125L170.485 226.125L170.485 223.797L169.630 223.797Q169.431 223.774 169.380 223.555L169.380 223.469Q169.431 223.258 169.630 223.235L170.485 223.235L170.485 222.782Q170.485 222.317 170.892 222.036Q171.298 221.754 171.778 221.754Q172.091 221.754 172.335 221.875Q172.579 221.996 172.579 222.278Q172.579 222.442 172.470 222.559Q172.360 222.676 172.196 222.676Q172.048 222.676 171.927 222.571Q171.806 222.465 171.806 222.317L171.724 222.317Q171.571 222.317 171.435 222.377Q171.298 222.438 171.212 222.553Q171.126 222.668 171.126 222.813L171.126 223.235L172.157 223.235Q172.352 223.254 172.403 223.469L172.403 223.555Q172.352 223.774 172.157 223.797L171.126 223.797L171.126 226.125L172.005 226.125Q172.200 226.149 172.251 226.356L172.251 226.446Q172.200 226.661 172.005 226.684L169.602 226.684Q169.407 226.661 169.356 226.446M174.024 225.829L174.024 223.797L173.602 223.797Q173.395 223.774 173.352 223.555L173.352 223.469Q173.399 223.258 173.602 223.235L174.419 223.235Q174.614 223.258 174.665 223.469L174.665 225.797Q174.665 226.032 174.835 226.098Q175.005 226.164 175.290 226.164Q175.497 226.164 175.692 226.088Q175.888 226.012 176.013 225.862Q176.138 225.711 176.138 225.500L176.138 223.797L175.716 223.797Q175.505 223.774 175.466 223.555L175.466 223.469Q175.505 223.258 175.716 223.235L176.528 223.235Q176.727 223.258 176.778 223.469L176.778 226.125L177.204 226.125Q177.411 226.149 177.450 226.356L177.450 226.446Q177.411 226.661 177.204 226.684L176.388 226.684Q176.188 226.661 176.138 226.461Q175.735 226.723 175.227 226.723Q174.993 226.723 174.778 226.682Q174.563 226.641 174.397 226.539Q174.231 226.438 174.128 226.260Q174.024 226.082 174.024 225.829M177.599 226.446L177.599 226.356Q177.642 226.149 177.849 226.125L178.270 226.125L178.270 223.797L177.849 223.797Q177.642 223.774 177.599 223.555L177.599 223.469Q177.645 223.258 177.849 223.235L178.665 223.235Q178.860 223.258 178.911 223.469L178.911 223.555L178.903 223.579Q179.130 223.399 179.403 223.297Q179.677 223.196 179.970 223.196Q180.317 223.196 180.556 223.336Q180.794 223.477 180.909 223.735Q181.024 223.993 181.024 224.348L181.024 226.125L181.450 226.125Q181.657 226.149 181.696 226.356L181.696 226.446Q181.657 226.661 181.450 226.684L180.056 226.684Q179.860 226.661 179.810 226.446L179.810 226.356Q179.860 226.145 180.056 226.125L180.384 226.125L180.384 224.379Q180.384 224.071 180.294 223.913Q180.204 223.754 179.911 223.754Q179.642 223.754 179.413 223.885Q179.185 224.016 179.048 224.245Q178.911 224.473 178.911 224.739L178.911 226.125L179.337 226.125Q179.544 226.149 179.583 226.356L179.583 226.446Q179.544 226.661 179.337 226.684L177.849 226.684Q177.642 226.661 177.599 226.446\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The complete Y86-64 CPU with every named part placed and wired. The PC addresses instruction memory; the fetched instruction word splits combinationally into fields; the register file feeds the ALU, which sets the CC register; the ALU result addresses data memory; results write back down the inner right margin, and newPC loops down the outer one. The control unit (left) reads icode:ifun and drives a signal to every unit.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:426.276px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 319.707 208.415\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564-49.308h108.12V-72.07h-108.12Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-31.875 2.444)\">\u003Cpath d=\"M0.680-60.927L0.680-61.017Q0.719-61.224 0.930-61.248L1.238-61.248L1.238-65.017L0.930-65.017Q0.719-65.041 0.680-65.255L0.680-65.345Q0.719-65.552 0.930-65.576L2.879-65.576Q3.277-65.576 3.623-65.375Q3.969-65.173 4.176-64.828Q4.383-64.482 4.383-64.080Q4.383-63.673 4.178-63.330Q3.973-62.986 3.627-62.781Q3.281-62.576 2.879-62.576L1.879-62.576L1.879-61.248L2.191-61.248Q2.402-61.224 2.441-61.017L2.441-60.927Q2.402-60.712 2.191-60.689L0.930-60.689Q0.719-60.712 0.680-60.927M1.879-65.017L1.879-63.138L2.719-63.138Q2.980-63.138 3.217-63.261Q3.453-63.384 3.598-63.599Q3.742-63.814 3.742-64.080Q3.742-64.349 3.598-64.560Q3.453-64.771 3.217-64.894Q2.980-65.017 2.719-65.017L1.879-65.017M7.008-60.611Q6.559-60.611 6.193-60.835Q5.828-61.060 5.574-61.443Q5.320-61.826 5.195-62.269Q5.070-62.712 5.070-63.138Q5.070-63.564 5.195-64.003Q5.320-64.443 5.574-64.826Q5.828-65.209 6.187-65.433Q6.547-65.658 7.008-65.658Q7.285-65.658 7.543-65.566Q7.801-65.474 8.016-65.306L8.148-65.544Q8.176-65.595 8.230-65.626Q8.285-65.658 8.344-65.658L8.422-65.658Q8.516-65.646 8.578-65.587Q8.641-65.529 8.652-65.423L8.652-64.095Q8.641-63.994 8.578-63.931Q8.516-63.869 8.422-63.857L8.254-63.857Q8.152-63.869 8.090-63.935Q8.027-64.001 8.016-64.095Q7.976-64.361 7.853-64.585Q7.730-64.810 7.527-64.953Q7.324-65.095 7.062-65.095Q6.730-65.095 6.478-64.912Q6.226-64.728 6.055-64.427Q5.883-64.126 5.797-63.785Q5.711-63.443 5.711-63.138Q5.711-62.834 5.795-62.492Q5.879-62.150 6.051-61.847Q6.223-61.544 6.480-61.357Q6.738-61.169 7.070-61.169Q7.453-61.169 7.734-61.443Q8.016-61.716 8.016-62.103Q8.043-62.314 8.254-62.337L8.422-62.337Q8.652-62.298 8.652-62.072Q8.652-61.755 8.516-61.484Q8.379-61.212 8.144-61.015Q7.910-60.818 7.619-60.714Q7.328-60.611 7.008-60.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.875 2.444)\">\u003Cpath d=\"M15.062-61.611L15.062-62.826L13.848-62.826Q13.723-62.837 13.637-62.923Q13.551-63.009 13.551-63.138Q13.551-63.267 13.637-63.349Q13.723-63.431 13.848-63.443L15.062-63.443L15.062-64.666Q15.074-64.791 15.160-64.873Q15.246-64.955 15.375-64.955Q15.504-64.955 15.586-64.873Q15.668-64.791 15.680-64.666L15.680-63.443L16.894-63.443Q17.019-63.431 17.101-63.349Q17.184-63.267 17.184-63.138Q17.184-63.009 17.101-62.923Q17.019-62.837 16.894-62.826L15.680-62.826L15.680-61.611Q15.668-61.486 15.586-61.400Q15.504-61.314 15.375-61.314Q15.246-61.314 15.160-61.400Q15.074-61.486 15.062-61.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.875 2.444)\">\u003Cpath d=\"M21.816-60.927L21.816-61.017Q21.859-61.224 22.066-61.248L22.488-61.248L22.488-63.576L22.066-63.576Q21.859-63.599 21.816-63.818L21.816-63.904Q21.863-64.115 22.066-64.138L22.883-64.138Q23.078-64.115 23.129-63.904L23.129-63.818L23.121-63.794Q23.348-63.974 23.621-64.076Q23.894-64.177 24.187-64.177Q24.535-64.177 24.773-64.037Q25.012-63.896 25.127-63.638Q25.242-63.380 25.242-63.025L25.242-61.248L25.668-61.248Q25.875-61.224 25.914-61.017L25.914-60.927Q25.875-60.712 25.668-60.689L24.273-60.689Q24.078-60.712 24.027-60.927L24.027-61.017Q24.078-61.228 24.273-61.248L24.601-61.248L24.601-62.994Q24.601-63.302 24.512-63.460Q24.422-63.619 24.129-63.619Q23.859-63.619 23.631-63.488Q23.402-63.357 23.266-63.128Q23.129-62.900 23.129-62.634L23.129-61.248L23.555-61.248Q23.762-61.224 23.801-61.017L23.801-60.927Q23.762-60.712 23.555-60.689L22.066-60.689Q21.859-60.712 21.816-60.927M29.504-62.177L27.062-62.177Q27.117-61.900 27.314-61.677Q27.512-61.455 27.789-61.332Q28.066-61.209 28.351-61.209Q28.824-61.209 29.047-61.498Q29.055-61.509 29.111-61.615Q29.168-61.720 29.217-61.763Q29.266-61.806 29.359-61.818L29.504-61.818Q29.695-61.798 29.754-61.584L29.754-61.529Q29.687-61.228 29.457-61.031Q29.226-60.834 28.914-60.742Q28.601-60.650 28.297-60.650Q27.812-60.650 27.373-60.878Q26.933-61.107 26.666-61.507Q26.398-61.908 26.398-62.400L26.398-62.459Q26.398-62.927 26.644-63.330Q26.891-63.732 27.299-63.966Q27.707-64.201 28.176-64.201Q28.680-64.201 29.033-63.978Q29.387-63.755 29.570-63.367Q29.754-62.978 29.754-62.474L29.754-62.416Q29.695-62.201 29.504-62.177M27.070-62.728L29.098-62.728Q29.051-63.138 28.812-63.390Q28.574-63.642 28.176-63.642Q27.781-63.642 27.475-63.380Q27.168-63.119 27.070-62.728M31.246-60.912L30.781-63.576L30.621-63.576Q30.414-63.599 30.375-63.818L30.375-63.904Q30.414-64.115 30.621-64.138L31.789-64.138Q32-64.115 32.039-63.904L32.039-63.818Q32-63.599 31.789-63.576L31.316-63.576Q31.430-62.931 31.508-62.486Q31.586-62.041 31.637-61.722Q31.687-61.404 31.687-61.330Q31.695-61.502 31.980-62.498Q32.019-62.611 32.117-62.685Q32.215-62.759 32.336-62.759L32.414-62.759Q32.535-62.759 32.633-62.685Q32.730-62.611 32.766-62.498Q32.875-62.115 32.957-61.791Q33.039-61.466 33.039-61.330Q33.051-61.619 33.398-63.576L32.926-63.576Q32.719-63.599 32.680-63.818L32.680-63.904Q32.719-64.115 32.926-64.138L34.101-64.138Q34.293-64.115 34.351-63.904L34.351-63.818Q34.297-63.599 34.101-63.576L33.933-63.576L33.469-60.912Q33.445-60.794 33.357-60.722Q33.269-60.650 33.148-60.650L33.008-60.650Q32.887-60.650 32.791-60.722Q32.695-60.794 32.652-60.912Q32.605-61.091 32.533-61.347Q32.461-61.603 32.418-61.812Q32.375-62.021 32.375-62.123Q32.367-61.841 32.086-60.912Q32.058-60.802 31.961-60.726Q31.863-60.650 31.742-60.650L31.566-60.650Q31.445-60.650 31.357-60.722Q31.269-60.794 31.246-60.912M37.980-62.826L35.238-62.826Q35.113-62.837 35.027-62.923Q34.941-63.009 34.941-63.138Q34.941-63.267 35.027-63.349Q35.113-63.431 35.238-63.443L37.980-63.443Q38.105-63.431 38.187-63.349Q38.269-63.267 38.269-63.138Q38.269-63.009 38.187-62.923Q38.105-62.837 37.980-62.826M38.914-60.927L38.914-61.017Q38.953-61.224 39.164-61.248L39.473-61.248L39.473-65.017L39.164-65.017Q38.953-65.041 38.914-65.255L38.914-65.345Q38.953-65.552 39.164-65.576L41.113-65.576Q41.512-65.576 41.857-65.375Q42.203-65.173 42.410-64.828Q42.617-64.482 42.617-64.080Q42.617-63.673 42.412-63.330Q42.207-62.986 41.861-62.781Q41.516-62.576 41.113-62.576L40.113-62.576L40.113-61.248L40.426-61.248Q40.637-61.224 40.676-61.017L40.676-60.927Q40.637-60.712 40.426-60.689L39.164-60.689Q38.953-60.712 38.914-60.927M40.113-65.017L40.113-63.138L40.953-63.138Q41.215-63.138 41.451-63.261Q41.687-63.384 41.832-63.599Q41.976-63.814 41.976-64.080Q41.976-64.349 41.832-64.560Q41.687-64.771 41.451-64.894Q41.215-65.017 40.953-65.017L40.113-65.017M45.242-60.611Q44.793-60.611 44.428-60.835Q44.062-61.060 43.808-61.443Q43.555-61.826 43.430-62.269Q43.305-62.712 43.305-63.138Q43.305-63.564 43.430-64.003Q43.555-64.443 43.808-64.826Q44.062-65.209 44.422-65.433Q44.781-65.658 45.242-65.658Q45.519-65.658 45.777-65.566Q46.035-65.474 46.250-65.306L46.383-65.544Q46.410-65.595 46.465-65.626Q46.519-65.658 46.578-65.658L46.656-65.658Q46.750-65.646 46.812-65.587Q46.875-65.529 46.887-65.423L46.887-64.095Q46.875-63.994 46.812-63.931Q46.750-63.869 46.656-63.857L46.488-63.857Q46.387-63.869 46.324-63.935Q46.262-64.001 46.250-64.095Q46.211-64.361 46.088-64.585Q45.965-64.810 45.762-64.953Q45.558-65.095 45.297-65.095Q44.965-65.095 44.713-64.912Q44.461-64.728 44.289-64.427Q44.117-64.126 44.031-63.785Q43.945-63.443 43.945-63.138Q43.945-62.834 44.029-62.492Q44.113-62.150 44.285-61.847Q44.457-61.544 44.715-61.357Q44.973-61.169 45.305-61.169Q45.687-61.169 45.969-61.443Q46.250-61.716 46.250-62.103Q46.277-62.314 46.488-62.337L46.656-62.337Q46.887-62.298 46.887-62.072Q46.887-61.755 46.750-61.484Q46.613-61.212 46.379-61.015Q46.144-60.818 45.853-60.714Q45.562-60.611 45.242-60.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-31.875 2.444)\">\u003Cpath d=\"M51.442-60.927L51.442-61.017Q51.493-61.228 51.688-61.248L51.888-61.248L51.888-63.576L51.688-63.576Q51.481-63.599 51.442-63.818L51.442-63.904Q51.493-64.119 51.688-64.138L52.169-64.138Q52.360-64.115 52.419-63.904Q52.739-64.177 53.153-64.177Q53.345-64.177 53.513-64.068Q53.681-63.959 53.755-63.787Q53.931-63.978 54.153-64.078Q54.376-64.177 54.618-64.177Q55.036-64.177 55.190-63.835Q55.345-63.494 55.345-63.025L55.345-61.248L55.544-61.248Q55.755-61.224 55.794-61.017L55.794-60.927Q55.743-60.712 55.544-60.689L54.727-60.689Q54.532-60.712 54.481-60.927L54.481-61.017Q54.532-61.224 54.727-61.248L54.817-61.248L54.817-62.994Q54.817-63.619 54.567-63.619Q54.235-63.619 54.058-63.308Q53.880-62.998 53.880-62.634L53.880-61.248L54.083-61.248Q54.290-61.224 54.329-61.017L54.329-60.927Q54.278-60.712 54.083-60.689L53.267-60.689Q53.067-60.712 53.017-60.927L53.017-61.017Q53.067-61.224 53.267-61.248L53.352-61.248L53.352-62.994Q53.352-63.619 53.106-63.619Q52.774-63.619 52.597-63.306Q52.419-62.994 52.419-62.634L52.419-61.248L52.618-61.248Q52.825-61.224 52.864-61.017L52.864-60.927Q52.813-60.709 52.618-60.689L51.688-60.689Q51.481-60.712 51.442-60.927M56.485-61.544L56.485-63.576L56.063-63.576Q55.856-63.599 55.813-63.818L55.813-63.904Q55.860-64.115 56.063-64.138L56.880-64.138Q57.075-64.115 57.126-63.904L57.126-61.576Q57.126-61.341 57.296-61.275Q57.466-61.209 57.751-61.209Q57.958-61.209 58.153-61.285Q58.349-61.361 58.474-61.511Q58.599-61.662 58.599-61.873L58.599-63.576L58.177-63.576Q57.966-63.599 57.927-63.818L57.927-63.904Q57.966-64.115 58.177-64.138L58.989-64.138Q59.188-64.115 59.239-63.904L59.239-61.248L59.665-61.248Q59.872-61.224 59.911-61.017L59.911-60.927Q59.872-60.712 59.665-60.689L58.849-60.689Q58.649-60.712 58.599-60.912Q58.196-60.650 57.688-60.650Q57.454-60.650 57.239-60.691Q57.024-60.732 56.858-60.834Q56.692-60.935 56.589-61.113Q56.485-61.291 56.485-61.544M60.247-60.927L60.247-61.017Q60.286-61.224 60.493-61.248L60.899-61.248L61.829-62.466L60.958-63.576L60.540-63.576Q60.345-63.595 60.294-63.818L60.294-63.904Q60.345-64.115 60.540-64.138L61.700-64.138Q61.899-64.115 61.950-63.904L61.950-63.818Q61.899-63.599 61.700-63.576L61.591-63.576L62.087-62.919L62.563-63.576L62.446-63.576Q62.247-63.599 62.196-63.818L62.196-63.904Q62.247-64.115 62.446-64.138L63.606-64.138Q63.802-64.119 63.852-63.904L63.852-63.818Q63.802-63.599 63.606-63.576L63.196-63.576L62.349-62.466L63.309-61.248L63.716-61.248Q63.915-61.224 63.966-61.017L63.966-60.927Q63.927-60.712 63.716-60.689L62.563-60.689Q62.356-60.712 62.317-60.927L62.317-61.017Q62.356-61.224 62.563-61.248L62.692-61.248L62.087-62.103L61.501-61.248L61.645-61.248Q61.852-61.224 61.892-61.017L61.892-60.927Q61.852-60.712 61.645-60.689L60.493-60.689Q60.298-60.709 60.247-60.927\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 1.556)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 1.556)\">\u003Cpath d=\"M32.806-62.033L30.735-62.033Q30.540-62.056 30.485-62.275L30.485-62.513Q30.485-62.587 30.528-62.658L32.376-65.529Q32.462-65.658 32.614-65.658L33.071-65.658Q33.181-65.658 33.259-65.580Q33.337-65.501 33.337-65.392L33.337-62.591L34.001-62.591Q34.196-62.568 34.247-62.361L34.247-62.275Q34.196-62.056 34.001-62.033L33.337-62.033L33.337-61.248L33.911-61.248Q34.118-61.224 34.157-61.017L34.157-60.927Q34.118-60.712 33.911-60.689L32.231-60.689Q32.024-60.712 31.981-60.927L31.981-61.017Q32.024-61.224 32.231-61.248L32.806-61.248L32.806-62.033M32.806-65.185L31.134-62.591L32.806-62.591L32.806-65.185M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 1.556)\">\u003Cpath d=\"M47.653-61.802Q47.653-62.248 48.067-62.505Q48.481-62.763 49.022-62.863Q49.563-62.962 50.071-62.970Q50.071-63.185 49.936-63.337Q49.802-63.490 49.595-63.566Q49.388-63.642 49.177-63.642Q48.833-63.642 48.673-63.619L48.673-63.560Q48.673-63.392 48.554-63.277Q48.434-63.162 48.270-63.162Q48.095-63.162 47.979-63.285Q47.864-63.408 47.864-63.576Q47.864-63.982 48.245-64.091Q48.626-64.201 49.184-64.201Q49.454-64.201 49.722-64.123Q49.989-64.044 50.214-63.894Q50.438-63.744 50.575-63.523Q50.712-63.302 50.712-63.025L50.712-61.306Q50.712-61.248 51.239-61.248Q51.434-61.228 51.485-61.017L51.485-60.927Q51.434-60.712 51.239-60.689L51.095-60.689Q50.751-60.689 50.522-60.736Q50.294-60.783 50.149-60.970Q49.688-60.650 48.981-60.650Q48.645-60.650 48.341-60.791Q48.036-60.931 47.845-61.193Q47.653-61.455 47.653-61.802M48.294-61.794Q48.294-61.521 48.536-61.365Q48.778-61.209 49.063-61.209Q49.282-61.209 49.515-61.267Q49.747-61.326 49.909-61.464Q50.071-61.603 50.071-61.826L50.071-62.416Q49.790-62.416 49.374-62.359Q48.958-62.302 48.626-62.164Q48.294-62.025 48.294-61.794M52.079-60.888L52.079-61.802Q52.106-62.009 52.317-62.033L52.485-62.033Q52.649-62.009 52.708-61.849Q52.911-61.209 53.638-61.209Q53.845-61.209 54.073-61.244Q54.302-61.279 54.470-61.394Q54.638-61.509 54.638-61.712Q54.638-61.923 54.415-62.037Q54.192-62.150 53.919-62.193L53.220-62.306Q52.079-62.517 52.079-63.240Q52.079-63.529 52.224-63.718Q52.368-63.908 52.608-64.015Q52.849-64.123 53.104-64.162Q53.360-64.201 53.638-64.201Q53.888-64.201 54.081-64.171Q54.274-64.142 54.438-64.064Q54.517-64.181 54.645-64.201L54.724-64.201Q54.821-64.189 54.884-64.126Q54.946-64.064 54.958-63.970L54.958-63.263Q54.946-63.169 54.884-63.103Q54.821-63.037 54.724-63.025L54.556-63.025Q54.462-63.037 54.395-63.103Q54.329-63.169 54.317-63.263Q54.317-63.642 53.622-63.642Q53.274-63.642 52.956-63.560Q52.638-63.478 52.638-63.232Q52.638-62.966 53.309-62.857L54.013-62.736Q54.497-62.654 54.847-62.406Q55.196-62.158 55.196-61.712Q55.196-61.322 54.960-61.080Q54.724-60.837 54.374-60.744Q54.024-60.650 53.638-60.650Q53.059-60.650 52.661-60.904Q52.591-60.779 52.542-60.722Q52.493-60.666 52.388-60.650L52.317-60.650Q52.102-60.673 52.079-60.888M56.325-60.888L56.325-61.802Q56.352-62.009 56.563-62.033L56.731-62.033Q56.895-62.009 56.954-61.849Q57.157-61.209 57.884-61.209Q58.091-61.209 58.319-61.244Q58.548-61.279 58.716-61.394Q58.884-61.509 58.884-61.712Q58.884-61.923 58.661-62.037Q58.438-62.150 58.165-62.193L57.466-62.306Q56.325-62.517 56.325-63.240Q56.325-63.529 56.470-63.718Q56.614-63.908 56.854-64.015Q57.095-64.123 57.351-64.162Q57.606-64.201 57.884-64.201Q58.134-64.201 58.327-64.171Q58.520-64.142 58.684-64.064Q58.763-64.181 58.892-64.201L58.970-64.201Q59.067-64.189 59.130-64.126Q59.192-64.064 59.204-63.970L59.204-63.263Q59.192-63.169 59.130-63.103Q59.067-63.037 58.970-63.025L58.802-63.025Q58.708-63.037 58.642-63.103Q58.575-63.169 58.563-63.263Q58.563-63.642 57.868-63.642Q57.520-63.642 57.202-63.560Q56.884-63.478 56.884-63.232Q56.884-62.966 57.556-62.857L58.259-62.736Q58.743-62.654 59.093-62.406Q59.442-62.158 59.442-61.712Q59.442-61.322 59.206-61.080Q58.970-60.837 58.620-60.744Q58.270-60.650 57.884-60.650Q57.306-60.650 56.907-60.904Q56.837-60.779 56.788-60.722Q56.739-60.666 56.634-60.650L56.563-60.650Q56.349-60.673 56.325-60.888M63.497-62.177L61.056-62.177Q61.110-61.900 61.308-61.677Q61.505-61.455 61.782-61.332Q62.059-61.209 62.345-61.209Q62.817-61.209 63.040-61.498Q63.048-61.509 63.104-61.615Q63.161-61.720 63.210-61.763Q63.259-61.806 63.352-61.818L63.497-61.818Q63.688-61.798 63.747-61.584L63.747-61.529Q63.681-61.228 63.450-61.031Q63.220-60.834 62.907-60.742Q62.595-60.650 62.290-60.650Q61.806-60.650 61.366-60.878Q60.927-61.107 60.659-61.507Q60.392-61.908 60.392-62.400L60.392-62.459Q60.392-62.927 60.638-63.330Q60.884-63.732 61.292-63.966Q61.700-64.201 62.169-64.201Q62.673-64.201 63.026-63.978Q63.380-63.755 63.563-63.367Q63.747-62.978 63.747-62.474L63.747-62.416Q63.688-62.201 63.497-62.177M61.063-62.728L63.091-62.728Q63.044-63.138 62.806-63.390Q62.567-63.642 62.169-63.642Q61.774-63.642 61.468-63.380Q61.161-63.119 61.063-62.728M64.177-60.927L64.177-61.017Q64.227-61.228 64.423-61.248L64.622-61.248L64.622-63.576L64.423-63.576Q64.216-63.599 64.177-63.818L64.177-63.904Q64.227-64.119 64.423-64.138L64.903-64.138Q65.095-64.115 65.153-63.904Q65.474-64.177 65.888-64.177Q66.079-64.177 66.247-64.068Q66.415-63.959 66.489-63.787Q66.665-63.978 66.888-64.078Q67.110-64.177 67.352-64.177Q67.770-64.177 67.925-63.835Q68.079-63.494 68.079-63.025L68.079-61.248L68.278-61.248Q68.489-61.224 68.528-61.017L68.528-60.927Q68.477-60.712 68.278-60.689L67.462-60.689Q67.267-60.712 67.216-60.927L67.216-61.017Q67.267-61.224 67.462-61.248L67.552-61.248L67.552-62.994Q67.552-63.619 67.302-63.619Q66.970-63.619 66.792-63.308Q66.614-62.998 66.614-62.634L66.614-61.248L66.817-61.248Q67.024-61.224 67.063-61.017L67.063-60.927Q67.013-60.712 66.817-60.689L66.001-60.689Q65.802-60.712 65.751-60.927L65.751-61.017Q65.802-61.224 66.001-61.248L66.087-61.248L66.087-62.994Q66.087-63.619 65.841-63.619Q65.509-63.619 65.331-63.306Q65.153-62.994 65.153-62.634L65.153-61.248L65.352-61.248Q65.559-61.224 65.599-61.017L65.599-60.927Q65.548-60.709 65.352-60.689L64.423-60.689Q64.216-60.712 64.177-60.927M69.220-60.927L69.220-65.017L68.798-65.017Q68.591-65.041 68.548-65.255L68.548-65.345Q68.591-65.552 68.798-65.576L69.614-65.576Q69.809-65.552 69.860-65.345L69.860-63.834Q70.071-64.001 70.335-64.089Q70.599-64.177 70.868-64.177Q71.208-64.177 71.505-64.033Q71.802-63.888 72.017-63.636Q72.231-63.384 72.347-63.072Q72.462-62.759 72.462-62.416Q72.462-61.951 72.235-61.541Q72.009-61.130 71.622-60.890Q71.235-60.650 70.767-60.650Q70.247-60.650 69.860-61.017L69.860-60.927Q69.809-60.709 69.614-60.689L69.470-60.689Q69.278-60.712 69.220-60.927M70.724-61.209Q71.032-61.209 71.282-61.378Q71.532-61.548 71.677-61.830Q71.821-62.111 71.821-62.416Q71.821-62.705 71.696-62.984Q71.571-63.263 71.339-63.441Q71.106-63.619 70.806-63.619Q70.485-63.619 70.224-63.433Q69.962-63.248 69.860-62.947L69.860-62.095Q69.950-61.728 70.171-61.468Q70.392-61.209 70.724-61.209M73.173-60.927L73.173-61.017Q73.224-61.224 73.419-61.248L74.524-61.248L74.524-65.017L73.419-65.017Q73.224-65.041 73.173-65.255L73.173-65.345Q73.224-65.552 73.419-65.576L74.915-65.576Q75.106-65.552 75.165-65.345L75.165-61.248L76.267-61.248Q76.466-61.224 76.517-61.017L76.517-60.927Q76.466-60.712 76.267-60.689L73.419-60.689Q73.224-60.712 73.173-60.927M77.587-60.927L77.587-61.017Q77.638-61.224 77.833-61.248L78.872-61.248L78.872-63.576L77.899-63.576Q77.700-63.599 77.649-63.818L77.649-63.904Q77.700-64.115 77.899-64.138L79.267-64.138Q79.462-64.119 79.513-63.904L79.513-61.248L80.427-61.248Q80.622-61.224 80.673-61.017L80.673-60.927Q80.622-60.712 80.427-60.689L77.833-60.689Q77.638-60.712 77.587-60.927M78.618-65.115L78.618-65.169Q78.618-65.341 78.755-65.462Q78.892-65.584 79.067-65.584Q79.239-65.584 79.376-65.462Q79.513-65.341 79.513-65.169L79.513-65.115Q79.513-64.939 79.376-64.818Q79.239-64.697 79.067-64.697Q78.892-64.697 78.755-64.818Q78.618-64.939 78.618-65.115M81.286-60.927L81.286-61.017Q81.329-61.224 81.536-61.248L81.958-61.248L81.958-63.576L81.536-63.576Q81.329-63.599 81.286-63.818L81.286-63.904Q81.333-64.115 81.536-64.138L82.352-64.138Q82.548-64.115 82.599-63.904L82.599-63.818L82.591-63.794Q82.817-63.974 83.091-64.076Q83.364-64.177 83.657-64.177Q84.005-64.177 84.243-64.037Q84.481-63.896 84.597-63.638Q84.712-63.380 84.712-63.025L84.712-61.248L85.138-61.248Q85.345-61.224 85.384-61.017L85.384-60.927Q85.345-60.712 85.138-60.689L83.743-60.689Q83.548-60.712 83.497-60.927L83.497-61.017Q83.548-61.228 83.743-61.248L84.071-61.248L84.071-62.994Q84.071-63.302 83.981-63.460Q83.892-63.619 83.599-63.619Q83.329-63.619 83.101-63.488Q82.872-63.357 82.735-63.128Q82.599-62.900 82.599-62.634L82.599-61.248L83.024-61.248Q83.231-61.224 83.270-61.017L83.270-60.927Q83.231-60.712 83.024-60.689L81.536-60.689Q81.329-60.712 81.286-60.927M85.700-60.041Q85.700-60.341 85.849-60.603Q85.997-60.865 86.247-61.025Q86.063-61.279 86.063-61.599Q86.063-61.884 86.216-62.146Q85.966-62.470 85.966-62.888Q85.966-63.248 86.157-63.544Q86.349-63.841 86.667-64.009Q86.985-64.177 87.349-64.177Q87.556-64.177 87.759-64.117Q87.962-64.056 88.126-63.955Q88.509-64.216 88.981-64.216Q89.220-64.216 89.401-64.085Q89.583-63.955 89.583-63.728Q89.583-63.580 89.481-63.474Q89.380-63.369 89.224-63.369Q89.091-63.369 88.995-63.447Q88.899-63.525 88.868-63.650Q88.724-63.642 88.524-63.552Q88.727-63.240 88.727-62.888Q88.727-62.607 88.616-62.375Q88.505-62.142 88.309-61.964Q88.114-61.787 87.862-61.689Q87.610-61.591 87.349-61.591Q86.962-61.591 86.630-61.779Q86.618-61.779 86.608-61.707Q86.599-61.634 86.599-61.599Q86.599-61.478 86.665-61.371Q86.731-61.263 86.852-61.224Q86.868-61.228 86.882-61.230Q86.895-61.232 86.919-61.232Q86.934-61.232 86.966-61.224Q86.997-61.216 87.005-61.216L87.599-61.216Q88.380-61.216 88.921-60.974Q89.462-60.732 89.462-60.041Q89.462-59.740 89.282-59.513Q89.102-59.287 88.806-59.142Q88.509-58.998 88.188-58.931Q87.868-58.865 87.583-58.865Q87.192-58.865 86.751-58.988Q86.309-59.111 86.005-59.378Q85.700-59.646 85.700-60.041M86.239-60.048Q86.239-59.830 86.479-59.689Q86.720-59.548 87.044-59.482Q87.368-59.416 87.583-59.416Q87.798-59.416 88.122-59.482Q88.446-59.548 88.686-59.689Q88.927-59.830 88.927-60.048Q88.927-60.337 88.702-60.476Q88.477-60.615 88.196-60.648Q87.915-60.681 87.567-60.681L86.950-60.681Q86.767-60.681 86.604-60.601Q86.442-60.521 86.341-60.375Q86.239-60.228 86.239-60.048M87.349-62.146Q87.649-62.146 87.868-62.365Q88.087-62.584 88.087-62.888Q88.087-63.044 88.032-63.175Q87.977-63.306 87.872-63.412Q87.767-63.517 87.636-63.572Q87.505-63.627 87.349-63.627Q87.044-63.627 86.825-63.408Q86.606-63.189 86.606-62.888Q86.606-62.591 86.829-62.369Q87.052-62.146 87.349-62.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 1.556)\">\u003Cpath d=\"M94.424-60.849L94.424-62.080Q94.451-62.291 94.662-62.314L94.830-62.314Q94.924-62.302 94.986-62.244Q95.049-62.185 95.061-62.080Q95.061-61.587 95.426-61.378Q95.791-61.169 96.326-61.169Q96.561-61.169 96.764-61.277Q96.967-61.384 97.090-61.578Q97.213-61.771 97.213-62.002Q97.213-62.298 97.018-62.521Q96.822-62.744 96.533-62.810L95.525-63.041Q95.225-63.111 94.973-63.296Q94.721-63.482 94.572-63.750Q94.424-64.017 94.424-64.330Q94.424-64.709 94.633-65.013Q94.842-65.318 95.184-65.488Q95.525-65.658 95.900-65.658Q96.576-65.658 97.006-65.330L97.076-65.513Q97.150-65.634 97.287-65.658L97.365-65.658Q97.463-65.646 97.525-65.584Q97.588-65.521 97.600-65.423L97.600-64.193Q97.576-63.982 97.365-63.955L97.197-63.955Q97.002-63.978 96.967-64.162Q96.904-64.615 96.637-64.855Q96.369-65.095 95.908-65.095Q95.701-65.095 95.494-65.007Q95.287-64.919 95.154-64.751Q95.021-64.584 95.021-64.369Q95.021-64.115 95.215-63.918Q95.408-63.720 95.678-63.658L96.686-63.431Q97.014-63.353 97.268-63.150Q97.521-62.947 97.668-62.652Q97.814-62.357 97.814-62.041Q97.814-61.642 97.611-61.316Q97.408-60.990 97.064-60.800Q96.721-60.611 96.334-60.611Q95.533-60.611 95.014-60.927L94.943-60.752Q94.873-60.634 94.732-60.611L94.662-60.611Q94.447-60.634 94.424-60.849M98.428-60.927L98.428-61.017Q98.467-61.224 98.678-61.248L98.986-61.248L98.986-65.017L98.678-65.017Q98.467-65.041 98.428-65.255L98.428-65.345Q98.467-65.552 98.678-65.576L101.885-65.576Q102.080-65.552 102.131-65.345L102.131-64.505Q102.080-64.291 101.885-64.263L101.740-64.263Q101.545-64.291 101.490-64.505L101.490-65.017L99.627-65.017L99.627-63.498L100.603-63.498L100.603-63.712Q100.654-63.919 100.853-63.947L100.998-63.947Q101.193-63.919 101.244-63.712L101.244-62.728Q101.193-62.513 100.998-62.490L100.853-62.490Q100.654-62.513 100.603-62.728L100.603-62.935L99.627-62.935L99.627-61.248L101.670-61.248L101.670-61.888Q101.721-62.095 101.916-62.123L102.061-62.123Q102.256-62.095 102.307-61.888L102.307-60.927Q102.256-60.709 102.061-60.689L98.678-60.689Q98.467-60.712 98.428-60.927M103.209-61.009Q103.115-61.162 103.064-61.382Q103.014-61.603 102.986-61.904Q102.959-62.205 102.953-62.480Q102.947-62.755 102.947-63.138Q102.947-63.650 102.959-64.011Q102.971-64.373 103.029-64.720Q103.088-65.068 103.209-65.255Q103.389-65.517 103.748-65.587Q104.107-65.658 104.611-65.658Q105.115-65.658 105.473-65.587Q105.830-65.517 106.010-65.255Q106.135-65.072 106.193-64.722Q106.252-64.373 106.264-64.011Q106.275-63.650 106.275-63.138Q106.275-62.619 106.264-62.257Q106.252-61.896 106.193-61.544Q106.135-61.193 106.010-61.009Q105.908-60.837 105.666-60.736L106.139-59.841Q106.154-59.794 106.154-59.759Q106.154-59.681 106.105-59.628Q106.057-59.576 105.978-59.576L105.658-59.576Q105.510-59.576 105.443-59.705L104.978-60.619Q104.857-60.611 104.611-60.611Q104.107-60.611 103.750-60.681Q103.393-60.752 103.209-61.009M103.748-61.482Q103.853-61.279 104.078-61.224Q104.303-61.169 104.611-61.169L104.697-61.169L104.385-61.794Q104.361-61.830 104.361-61.873Q104.361-61.943 104.418-62Q104.475-62.056 104.545-62.056L104.896-62.056Q104.978-62.056 105.002-61.994L105.353-61.337Q105.533-61.513 105.584-62.031Q105.635-62.548 105.635-63.138Q105.635-64.474 105.475-64.787Q105.373-64.982 105.154-65.039Q104.936-65.095 104.611-65.095Q104.400-65.095 104.250-65.078Q104.100-65.060 103.957-64.992Q103.814-64.923 103.748-64.787Q103.588-64.474 103.588-63.138Q103.588-62.517 103.615-62.107Q103.643-61.697 103.748-61.482\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403-19.432H66.396v-22.763h-131.8Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-63.9 31.78)\">\u003Cpath d=\"M2.594-60.689L0.816-60.689L0.816-60.986Q1.090-60.986 1.258-61.033Q1.426-61.080 1.426-61.248L1.426-63.384Q1.426-63.599 1.369-63.695Q1.312-63.791 1.199-63.812Q1.086-63.834 0.840-63.834L0.840-64.130L2.039-64.216L2.039-61.248Q2.039-61.080 2.185-61.033Q2.332-60.986 2.594-60.986L2.594-60.689M1.152-65.611Q1.152-65.802 1.287-65.933Q1.422-66.064 1.617-66.064Q1.738-66.064 1.842-66.001Q1.945-65.939 2.008-65.835Q2.070-65.732 2.070-65.611Q2.070-65.416 1.939-65.281Q1.809-65.146 1.617-65.146Q1.418-65.146 1.285-65.279Q1.152-65.412 1.152-65.611M5.023-60.689L3.168-60.689L3.168-60.986Q3.441-60.986 3.609-61.033Q3.777-61.080 3.777-61.248L3.777-63.384Q3.777-63.599 3.715-63.695Q3.652-63.791 3.533-63.812Q3.414-63.834 3.168-63.834L3.168-64.130L4.359-64.216L4.359-63.482Q4.473-63.697 4.666-63.865Q4.859-64.033 5.098-64.125Q5.336-64.216 5.590-64.216Q6.758-64.216 6.758-63.138L6.758-61.248Q6.758-61.080 6.928-61.033Q7.098-60.986 7.367-60.986L7.367-60.689L5.512-60.689L5.512-60.986Q5.785-60.986 5.953-61.033Q6.121-61.080 6.121-61.248L6.121-63.123Q6.121-63.505 6-63.734Q5.879-63.962 5.527-63.962Q5.215-63.962 4.961-63.800Q4.707-63.638 4.560-63.369Q4.414-63.099 4.414-62.802L4.414-61.248Q4.414-61.080 4.584-61.033Q4.754-60.986 5.023-60.986L5.023-60.689M7.855-60.697L7.855-61.919Q7.855-61.947 7.887-61.978Q7.918-62.009 7.941-62.009L8.047-62.009Q8.117-62.009 8.133-61.947Q8.195-61.627 8.334-61.386Q8.473-61.146 8.705-61.005Q8.937-60.865 9.246-60.865Q9.484-60.865 9.693-60.925Q9.902-60.986 10.039-61.134Q10.176-61.283 10.176-61.529Q10.176-61.783 9.965-61.949Q9.754-62.115 9.484-62.169L8.863-62.283Q8.457-62.361 8.156-62.617Q7.855-62.873 7.855-63.248Q7.855-63.615 8.057-63.837Q8.258-64.060 8.582-64.158Q8.906-64.255 9.246-64.255Q9.711-64.255 10.008-64.048L10.230-64.232Q10.254-64.255 10.285-64.255L10.336-64.255Q10.367-64.255 10.394-64.228Q10.422-64.201 10.422-64.169L10.422-63.185Q10.422-63.154 10.396-63.125Q10.371-63.095 10.336-63.095L10.230-63.095Q10.195-63.095 10.168-63.123Q10.141-63.150 10.141-63.185Q10.141-63.584 9.889-63.804Q9.637-64.025 9.238-64.025Q8.883-64.025 8.600-63.902Q8.316-63.779 8.316-63.474Q8.316-63.255 8.517-63.123Q8.719-62.990 8.965-62.947L9.590-62.834Q10.019-62.744 10.328-62.447Q10.637-62.150 10.637-61.736Q10.637-61.166 10.238-60.888Q9.840-60.611 9.246-60.611Q8.695-60.611 8.344-60.947L8.047-60.634Q8.023-60.611 7.988-60.611L7.941-60.611Q7.918-60.611 7.887-60.642Q7.855-60.673 7.855-60.697M11.789-61.650L11.789-63.841L11.086-63.841L11.086-64.095Q11.441-64.095 11.684-64.328Q11.926-64.560 12.037-64.908Q12.148-65.255 12.148-65.611L12.430-65.611L12.430-64.138L13.605-64.138L13.605-63.841L12.430-63.841L12.430-61.666Q12.430-61.345 12.549-61.117Q12.668-60.888 12.949-60.888Q13.129-60.888 13.246-61.011Q13.363-61.134 13.416-61.314Q13.469-61.494 13.469-61.666L13.469-62.138L13.750-62.138L13.750-61.650Q13.750-61.396 13.644-61.156Q13.539-60.916 13.342-60.763Q13.144-60.611 12.887-60.611Q12.570-60.611 12.318-60.734Q12.066-60.857 11.928-61.091Q11.789-61.326 11.789-61.650M16.476-60.689L14.496-60.689L14.496-60.986Q14.766-60.986 14.934-61.031Q15.101-61.076 15.101-61.248L15.101-63.384Q15.101-63.599 15.039-63.695Q14.976-63.791 14.859-63.812Q14.742-63.834 14.496-63.834L14.496-64.130L15.664-64.216L15.664-63.431Q15.742-63.642 15.894-63.828Q16.047-64.013 16.246-64.115Q16.445-64.216 16.672-64.216Q16.918-64.216 17.109-64.072Q17.301-63.927 17.301-63.697Q17.301-63.541 17.195-63.431Q17.090-63.322 16.934-63.322Q16.777-63.322 16.668-63.431Q16.559-63.541 16.559-63.697Q16.559-63.857 16.664-63.962Q16.340-63.962 16.125-63.734Q15.910-63.505 15.814-63.166Q15.719-62.826 15.719-62.521L15.719-61.248Q15.719-61.080 15.945-61.033Q16.172-60.986 16.476-60.986L16.476-60.689M18.465-61.642L18.465-63.384Q18.465-63.599 18.402-63.695Q18.340-63.791 18.221-63.812Q18.101-63.834 17.855-63.834L17.855-64.130L19.101-64.216L19.101-61.666L19.101-61.642Q19.101-61.330 19.156-61.168Q19.211-61.005 19.361-60.935Q19.512-60.865 19.832-60.865Q20.262-60.865 20.535-61.203Q20.809-61.541 20.809-61.986L20.809-63.384Q20.809-63.599 20.746-63.695Q20.684-63.791 20.564-63.812Q20.445-63.834 20.199-63.834L20.199-64.130L21.445-64.216L21.445-61.431Q21.445-61.220 21.508-61.125Q21.570-61.029 21.689-61.007Q21.809-60.986 22.055-60.986L22.055-60.689L20.832-60.611L20.832-61.232Q20.664-60.943 20.383-60.777Q20.101-60.611 19.781-60.611Q18.465-60.611 18.465-61.642M22.543-62.416Q22.543-62.912 22.793-63.337Q23.043-63.763 23.463-64.009Q23.883-64.255 24.383-64.255Q24.922-64.255 25.312-64.130Q25.703-64.005 25.703-63.591Q25.703-63.486 25.652-63.394Q25.601-63.302 25.510-63.252Q25.418-63.201 25.309-63.201Q25.203-63.201 25.111-63.252Q25.019-63.302 24.969-63.394Q24.918-63.486 24.918-63.591Q24.918-63.814 25.086-63.919Q24.863-63.978 24.391-63.978Q24.094-63.978 23.879-63.839Q23.664-63.701 23.533-63.470Q23.402-63.240 23.344-62.970Q23.285-62.701 23.285-62.416Q23.285-62.021 23.418-61.671Q23.551-61.322 23.822-61.105Q24.094-60.888 24.492-60.888Q24.867-60.888 25.142-61.105Q25.418-61.322 25.519-61.681Q25.535-61.744 25.598-61.744L25.703-61.744Q25.738-61.744 25.764-61.716Q25.789-61.689 25.789-61.650L25.789-61.627Q25.656-61.146 25.271-60.878Q24.887-60.611 24.383-60.611Q24.019-60.611 23.685-60.748Q23.351-60.884 23.092-61.134Q22.832-61.384 22.687-61.720Q22.543-62.056 22.543-62.416M26.902-61.650L26.902-63.841L26.199-63.841L26.199-64.095Q26.555-64.095 26.797-64.328Q27.039-64.560 27.150-64.908Q27.262-65.255 27.262-65.611L27.543-65.611L27.543-64.138L28.719-64.138L28.719-63.841L27.543-63.841L27.543-61.666Q27.543-61.345 27.662-61.117Q27.781-60.888 28.062-60.888Q28.242-60.888 28.359-61.011Q28.476-61.134 28.529-61.314Q28.582-61.494 28.582-61.666L28.582-62.138L28.863-62.138L28.863-61.650Q28.863-61.396 28.758-61.156Q28.652-60.916 28.455-60.763Q28.258-60.611 28-60.611Q27.684-60.611 27.432-60.734Q27.180-60.857 27.041-61.091Q26.902-61.326 26.902-61.650M31.441-60.689L29.664-60.689L29.664-60.986Q29.937-60.986 30.105-61.033Q30.273-61.080 30.273-61.248L30.273-63.384Q30.273-63.599 30.217-63.695Q30.160-63.791 30.047-63.812Q29.934-63.834 29.687-63.834L29.687-64.130L30.887-64.216L30.887-61.248Q30.887-61.080 31.033-61.033Q31.180-60.986 31.441-60.986L31.441-60.689M30-65.611Q30-65.802 30.135-65.933Q30.269-66.064 30.465-66.064Q30.586-66.064 30.689-66.001Q30.793-65.939 30.855-65.835Q30.918-65.732 30.918-65.611Q30.918-65.416 30.787-65.281Q30.656-65.146 30.465-65.146Q30.266-65.146 30.133-65.279Q30-65.412 30-65.611M31.941-62.384Q31.941-62.888 32.197-63.320Q32.453-63.752 32.889-64.003Q33.324-64.255 33.824-64.255Q34.211-64.255 34.553-64.111Q34.894-63.966 35.156-63.705Q35.418-63.443 35.560-63.107Q35.703-62.771 35.703-62.384Q35.703-61.892 35.439-61.482Q35.176-61.072 34.746-60.841Q34.316-60.611 33.824-60.611Q33.332-60.611 32.898-60.843Q32.465-61.076 32.203-61.484Q31.941-61.892 31.941-62.384M33.824-60.888Q34.281-60.888 34.533-61.111Q34.785-61.334 34.873-61.685Q34.961-62.037 34.961-62.482Q34.961-62.912 34.867-63.250Q34.773-63.587 34.519-63.794Q34.266-64.001 33.824-64.001Q33.176-64.001 32.932-63.585Q32.687-63.169 32.687-62.482Q32.687-62.037 32.775-61.685Q32.863-61.334 33.115-61.111Q33.367-60.888 33.824-60.888M38.117-60.689L36.262-60.689L36.262-60.986Q36.535-60.986 36.703-61.033Q36.871-61.080 36.871-61.248L36.871-63.384Q36.871-63.599 36.809-63.695Q36.746-63.791 36.627-63.812Q36.508-63.834 36.262-63.834L36.262-64.130L37.453-64.216L37.453-63.482Q37.566-63.697 37.760-63.865Q37.953-64.033 38.191-64.125Q38.430-64.216 38.684-64.216Q39.851-64.216 39.851-63.138L39.851-61.248Q39.851-61.080 40.021-61.033Q40.191-60.986 40.461-60.986L40.461-60.689L38.605-60.689L38.605-60.986Q38.879-60.986 39.047-61.033Q39.215-61.080 39.215-61.248L39.215-63.123Q39.215-63.505 39.094-63.734Q38.973-63.962 38.621-63.962Q38.309-63.962 38.055-63.800Q37.801-63.638 37.654-63.369Q37.508-63.099 37.508-62.802L37.508-61.248Q37.508-61.080 37.678-61.033Q37.848-60.986 38.117-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.9 31.78)\">\u003Cpath d=\"M45.691-60.689L43.836-60.689L43.836-60.986Q44.109-60.986 44.277-61.033Q44.445-61.080 44.445-61.248L44.445-63.384Q44.445-63.599 44.382-63.695Q44.320-63.791 44.201-63.812Q44.082-63.834 43.836-63.834L43.836-64.130L45.027-64.216L45.027-63.482Q45.140-63.697 45.334-63.865Q45.527-64.033 45.765-64.125Q46.003-64.216 46.257-64.216Q47.218-64.216 47.394-63.505Q47.578-63.834 47.906-64.025Q48.234-64.216 48.613-64.216Q49.789-64.216 49.789-63.138L49.789-61.248Q49.789-61.080 49.957-61.033Q50.125-60.986 50.394-60.986L50.394-60.689L48.539-60.689L48.539-60.986Q48.812-60.986 48.980-61.031Q49.148-61.076 49.148-61.248L49.148-63.123Q49.148-63.509 49.023-63.736Q48.898-63.962 48.546-63.962Q48.242-63.962 47.986-63.800Q47.730-63.638 47.582-63.369Q47.433-63.099 47.433-62.802L47.433-61.248Q47.433-61.080 47.603-61.033Q47.773-60.986 48.043-60.986L48.043-60.689L46.187-60.689L46.187-60.986Q46.461-60.986 46.628-61.033Q46.796-61.080 46.796-61.248L46.796-63.123Q46.796-63.509 46.671-63.736Q46.546-63.962 46.195-63.962Q45.890-63.962 45.634-63.800Q45.378-63.638 45.230-63.369Q45.082-63.099 45.082-62.802L45.082-61.248Q45.082-61.080 45.252-61.033Q45.421-60.986 45.691-60.986L45.691-60.689M50.839-62.443Q50.839-62.923 51.072-63.339Q51.304-63.755 51.714-64.005Q52.125-64.255 52.601-64.255Q53.332-64.255 53.730-63.814Q54.128-63.373 54.128-62.642Q54.128-62.537 54.035-62.513L51.586-62.513L51.586-62.443Q51.586-62.033 51.707-61.677Q51.828-61.322 52.099-61.105Q52.371-60.888 52.800-60.888Q53.164-60.888 53.461-61.117Q53.757-61.345 53.859-61.697Q53.867-61.744 53.953-61.759L54.035-61.759Q54.128-61.732 54.128-61.650Q54.128-61.642 54.121-61.611Q54.058-61.384 53.919-61.201Q53.781-61.017 53.589-60.884Q53.398-60.752 53.179-60.681Q52.961-60.611 52.722-60.611Q52.351-60.611 52.013-60.748Q51.675-60.884 51.408-61.136Q51.140-61.388 50.990-61.728Q50.839-62.068 50.839-62.443M51.593-62.752L53.554-62.752Q53.554-63.056 53.453-63.347Q53.351-63.638 53.134-63.820Q52.918-64.001 52.601-64.001Q52.300-64.001 52.070-63.814Q51.839-63.627 51.716-63.335Q51.593-63.044 51.593-62.752M56.546-60.689L54.691-60.689L54.691-60.986Q54.964-60.986 55.132-61.033Q55.300-61.080 55.300-61.248L55.300-63.384Q55.300-63.599 55.238-63.695Q55.175-63.791 55.056-63.812Q54.937-63.834 54.691-63.834L54.691-64.130L55.882-64.216L55.882-63.482Q55.996-63.697 56.189-63.865Q56.382-64.033 56.621-64.125Q56.859-64.216 57.113-64.216Q58.074-64.216 58.250-63.505Q58.433-63.834 58.761-64.025Q59.089-64.216 59.468-64.216Q60.644-64.216 60.644-63.138L60.644-61.248Q60.644-61.080 60.812-61.033Q60.980-60.986 61.250-60.986L61.250-60.689L59.394-60.689L59.394-60.986Q59.668-60.986 59.836-61.031Q60.003-61.076 60.003-61.248L60.003-63.123Q60.003-63.509 59.878-63.736Q59.753-63.962 59.402-63.962Q59.097-63.962 58.841-63.800Q58.586-63.638 58.437-63.369Q58.289-63.099 58.289-62.802L58.289-61.248Q58.289-61.080 58.459-61.033Q58.628-60.986 58.898-60.986L58.898-60.689L57.043-60.689L57.043-60.986Q57.316-60.986 57.484-61.033Q57.652-61.080 57.652-61.248L57.652-63.123Q57.652-63.509 57.527-63.736Q57.402-63.962 57.050-63.962Q56.746-63.962 56.490-63.800Q56.234-63.638 56.086-63.369Q55.937-63.099 55.937-62.802L55.937-61.248Q55.937-61.080 56.107-61.033Q56.277-60.986 56.546-60.986L56.546-60.689M61.695-62.384Q61.695-62.888 61.951-63.320Q62.207-63.752 62.642-64.003Q63.078-64.255 63.578-64.255Q63.964-64.255 64.306-64.111Q64.648-63.966 64.910-63.705Q65.171-63.443 65.314-63.107Q65.457-62.771 65.457-62.384Q65.457-61.892 65.193-61.482Q64.929-61.072 64.500-60.841Q64.070-60.611 63.578-60.611Q63.086-60.611 62.652-60.843Q62.218-61.076 61.957-61.484Q61.695-61.892 61.695-62.384M63.578-60.888Q64.035-60.888 64.287-61.111Q64.539-61.334 64.627-61.685Q64.714-62.037 64.714-62.482Q64.714-62.912 64.621-63.250Q64.527-63.587 64.273-63.794Q64.019-64.001 63.578-64.001Q62.929-64.001 62.685-63.585Q62.441-63.169 62.441-62.482Q62.441-62.037 62.529-61.685Q62.617-61.334 62.869-61.111Q63.121-60.888 63.578-60.888M67.949-60.689L65.968-60.689L65.968-60.986Q66.238-60.986 66.406-61.031Q66.574-61.076 66.574-61.248L66.574-63.384Q66.574-63.599 66.511-63.695Q66.449-63.791 66.332-63.812Q66.214-63.834 65.968-63.834L65.968-64.130L67.136-64.216L67.136-63.431Q67.214-63.642 67.367-63.828Q67.519-64.013 67.718-64.115Q67.918-64.216 68.144-64.216Q68.390-64.216 68.582-64.072Q68.773-63.927 68.773-63.697Q68.773-63.541 68.668-63.431Q68.562-63.322 68.406-63.322Q68.250-63.322 68.140-63.431Q68.031-63.541 68.031-63.697Q68.031-63.857 68.136-63.962Q67.812-63.962 67.597-63.734Q67.382-63.505 67.287-63.166Q67.191-62.826 67.191-62.521L67.191-61.248Q67.191-61.080 67.418-61.033Q67.644-60.986 67.949-60.986L67.949-60.689M69.671-59.392Q69.785-59.314 69.960-59.314Q70.250-59.314 70.470-59.527Q70.691-59.740 70.816-60.041L71.105-60.689L69.832-63.576Q69.750-63.752 69.605-63.796Q69.460-63.841 69.191-63.841L69.191-64.138L70.910-64.138L70.910-63.841Q70.488-63.841 70.488-63.658Q70.488-63.646 70.503-63.576L71.441-61.451L72.273-63.361Q72.312-63.451 72.312-63.529Q72.312-63.669 72.210-63.755Q72.109-63.841 71.968-63.841L71.968-64.138L73.320-64.138L73.320-63.841Q73.066-63.841 72.873-63.716Q72.679-63.591 72.574-63.361L71.128-60.041Q71.015-59.787 70.849-59.564Q70.683-59.341 70.455-59.199Q70.226-59.056 69.960-59.056Q69.664-59.056 69.423-59.248Q69.183-59.439 69.183-59.728Q69.183-59.884 69.289-59.986Q69.394-60.087 69.543-60.087Q69.648-60.087 69.728-60.041Q69.808-59.994 69.855-59.916Q69.902-59.837 69.902-59.728Q69.902-59.607 69.841-59.519Q69.781-59.431 69.671-59.392\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.9 31.78)\">\u003Cpath d=\"M79.471-62.505L76.998-62.505Q76.920-62.517 76.871-62.566Q76.823-62.615 76.823-62.689Q76.823-62.763 76.871-62.812Q76.920-62.861 76.998-62.873L79.471-62.873L79.471-65.353Q79.498-65.521 79.655-65.521Q79.729-65.521 79.778-65.472Q79.827-65.423 79.838-65.353L79.838-62.873L82.311-62.873Q82.479-62.841 82.479-62.689Q82.479-62.537 82.311-62.505L79.838-62.505L79.838-60.025Q79.827-59.955 79.778-59.906Q79.729-59.857 79.655-59.857Q79.498-59.857 79.471-60.025\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.9 31.78)\">\u003Cpath d=\"M86.115-60.927L86.115-61.017Q86.166-61.224 86.361-61.248L87.244-61.248L87.244-63.576L86.389-63.576Q86.190-63.599 86.139-63.818L86.139-63.904Q86.190-64.115 86.389-64.138L87.244-64.138L87.244-64.591Q87.244-65.056 87.650-65.337Q88.057-65.619 88.537-65.619Q88.850-65.619 89.094-65.498Q89.338-65.376 89.338-65.095Q89.338-64.931 89.229-64.814Q89.119-64.697 88.955-64.697Q88.807-64.697 88.686-64.802Q88.565-64.908 88.565-65.056L88.483-65.056Q88.330-65.056 88.193-64.996Q88.057-64.935 87.971-64.820Q87.885-64.705 87.885-64.560L87.885-64.138L88.916-64.138Q89.111-64.119 89.162-63.904L89.162-63.818Q89.111-63.599 88.916-63.576L87.885-63.576L87.885-61.248L88.764-61.248Q88.959-61.224 89.010-61.017L89.010-60.927Q88.959-60.712 88.764-60.689L86.361-60.689Q86.166-60.712 86.115-60.927M93.553-62.177L91.111-62.177Q91.166-61.900 91.363-61.677Q91.561-61.455 91.838-61.332Q92.115-61.209 92.400-61.209Q92.873-61.209 93.096-61.498Q93.104-61.509 93.160-61.615Q93.217-61.720 93.266-61.763Q93.315-61.806 93.408-61.818L93.553-61.818Q93.744-61.798 93.803-61.584L93.803-61.529Q93.736-61.228 93.506-61.031Q93.275-60.834 92.963-60.742Q92.650-60.650 92.346-60.650Q91.861-60.650 91.422-60.878Q90.983-61.107 90.715-61.507Q90.447-61.908 90.447-62.400L90.447-62.459Q90.447-62.927 90.693-63.330Q90.940-63.732 91.348-63.966Q91.756-64.201 92.225-64.201Q92.729-64.201 93.082-63.978Q93.436-63.755 93.619-63.367Q93.803-62.978 93.803-62.474L93.803-62.416Q93.744-62.201 93.553-62.177M91.119-62.728L93.147-62.728Q93.100-63.138 92.861-63.390Q92.623-63.642 92.225-63.642Q91.830-63.642 91.524-63.380Q91.217-63.119 91.119-62.728M95.486-61.794L95.486-63.576L94.736-63.576Q94.537-63.599 94.486-63.818L94.486-63.904Q94.537-64.115 94.736-64.138L95.486-64.138L95.486-64.888Q95.537-65.095 95.736-65.123L95.881-65.123Q96.076-65.095 96.127-64.888L96.127-64.138L97.486-64.138Q97.678-64.119 97.736-63.904L97.736-63.818Q97.682-63.599 97.486-63.576L96.127-63.576L96.127-61.826Q96.127-61.209 96.701-61.209Q96.951-61.209 97.115-61.394Q97.279-61.580 97.279-61.826Q97.279-61.919 97.352-61.990Q97.424-62.060 97.525-62.072L97.670-62.072Q97.869-62.048 97.920-61.841L97.920-61.794Q97.920-61.470 97.736-61.207Q97.553-60.943 97.260-60.796Q96.967-60.650 96.647-60.650Q96.135-60.650 95.811-60.960Q95.486-61.271 95.486-61.794M99.092-62.416Q99.092-62.896 99.336-63.310Q99.580-63.724 99.996-63.962Q100.412-64.201 100.893-64.201Q101.447-64.201 101.826-64.091Q102.205-63.982 102.205-63.576Q102.205-63.408 102.092-63.285Q101.979-63.162 101.807-63.162Q101.635-63.162 101.516-63.277Q101.397-63.392 101.397-63.560L101.397-63.619Q101.236-63.642 100.900-63.642Q100.572-63.642 100.305-63.472Q100.037-63.302 99.885-63.019Q99.733-62.736 99.733-62.416Q99.733-62.095 99.904-61.814Q100.076-61.533 100.361-61.371Q100.647-61.209 100.975-61.209Q101.287-61.209 101.414-61.312Q101.541-61.416 101.658-61.605Q101.775-61.794 101.893-61.810L102.061-61.810Q102.166-61.798 102.231-61.730Q102.295-61.662 102.295-61.560Q102.295-61.513 102.275-61.474Q102.166-61.181 101.963-61.002Q101.760-60.822 101.484-60.736Q101.209-60.650 100.893-60.650Q100.408-60.650 99.992-60.888Q99.576-61.127 99.334-61.529Q99.092-61.931 99.092-62.416M102.850-60.927L102.850-61.017Q102.893-61.224 103.100-61.248L103.522-61.248L103.522-65.017L103.100-65.017Q102.893-65.041 102.850-65.255L102.850-65.345Q102.893-65.552 103.100-65.576L103.916-65.576Q104.111-65.552 104.162-65.345L104.162-63.794Q104.623-64.177 105.221-64.177Q105.568-64.177 105.807-64.037Q106.045-63.896 106.160-63.638Q106.275-63.380 106.275-63.025L106.275-61.248L106.701-61.248Q106.908-61.224 106.947-61.017L106.947-60.927Q106.908-60.712 106.701-60.689L105.307-60.689Q105.111-60.712 105.061-60.927L105.061-61.017Q105.111-61.228 105.307-61.248L105.635-61.248L105.635-62.994Q105.635-63.302 105.545-63.460Q105.455-63.619 105.162-63.619Q104.893-63.619 104.664-63.488Q104.436-63.357 104.299-63.128Q104.162-62.900 104.162-62.634L104.162-61.248L104.588-61.248Q104.795-61.224 104.834-61.017L104.834-60.927Q104.795-60.712 104.588-60.689L103.100-60.689Q102.893-60.712 102.850-60.927\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-63.9 31.78)\">\u003Cpath d=\"M112.303-60.912L111.838-63.576L111.678-63.576Q111.471-63.599 111.432-63.818L111.432-63.904Q111.471-64.115 111.678-64.138L112.846-64.138Q113.057-64.115 113.096-63.904L113.096-63.818Q113.057-63.599 112.846-63.576L112.373-63.576Q112.486-62.931 112.565-62.486Q112.643-62.041 112.693-61.722Q112.744-61.404 112.744-61.330Q112.752-61.502 113.037-62.498Q113.076-62.611 113.174-62.685Q113.272-62.759 113.393-62.759L113.471-62.759Q113.592-62.759 113.690-62.685Q113.787-62.611 113.822-62.498Q113.932-62.115 114.014-61.791Q114.096-61.466 114.096-61.330Q114.108-61.619 114.455-63.576L113.983-63.576Q113.775-63.599 113.736-63.818L113.736-63.904Q113.775-64.115 113.983-64.138L115.158-64.138Q115.350-64.115 115.408-63.904L115.408-63.818Q115.354-63.599 115.158-63.576L114.990-63.576L114.525-60.912Q114.502-60.794 114.414-60.722Q114.326-60.650 114.205-60.650L114.065-60.650Q113.943-60.650 113.848-60.722Q113.752-60.794 113.709-60.912Q113.662-61.091 113.590-61.347Q113.518-61.603 113.475-61.812Q113.432-62.021 113.432-62.123Q113.424-61.841 113.143-60.912Q113.115-60.802 113.018-60.726Q112.920-60.650 112.799-60.650L112.623-60.650Q112.502-60.650 112.414-60.722Q112.326-60.794 112.303-60.912M117.662-60.650Q117.190-60.650 116.805-60.894Q116.420-61.138 116.197-61.548Q115.975-61.959 115.975-62.416Q115.975-62.759 116.100-63.082Q116.225-63.404 116.455-63.658Q116.686-63.912 116.992-64.056Q117.299-64.201 117.662-64.201Q118.025-64.201 118.338-64.054Q118.650-63.908 118.873-63.662Q119.096-63.416 119.223-63.095Q119.350-62.775 119.350-62.416Q119.350-61.959 119.125-61.546Q118.900-61.134 118.516-60.892Q118.131-60.650 117.662-60.650M117.662-61.209Q118.127-61.209 118.418-61.603Q118.709-61.998 118.709-62.482Q118.709-62.775 118.574-63.043Q118.440-63.310 118.199-63.476Q117.959-63.642 117.662-63.642Q117.358-63.642 117.119-63.476Q116.881-63.310 116.746-63.043Q116.611-62.775 116.611-62.482Q116.611-62.002 116.904-61.605Q117.197-61.209 117.662-61.209M120.010-60.927L120.010-61.017Q120.068-61.224 120.260-61.248L120.971-61.248L120.971-63.576L120.260-63.576Q120.065-63.599 120.010-63.818L120.010-63.904Q120.068-64.115 120.260-64.138L121.361-64.138Q121.561-64.119 121.611-63.904L121.611-63.576Q121.873-63.861 122.229-64.019Q122.584-64.177 122.971-64.177Q123.264-64.177 123.498-64.043Q123.733-63.908 123.733-63.642Q123.733-63.474 123.623-63.357Q123.514-63.240 123.346-63.240Q123.193-63.240 123.078-63.351Q122.963-63.462 122.963-63.619Q122.588-63.619 122.274-63.418Q121.959-63.216 121.785-62.882Q121.611-62.548 121.611-62.169L121.611-61.248L122.557-61.248Q122.764-61.224 122.803-61.017L122.803-60.927Q122.764-60.712 122.557-60.689L120.260-60.689Q120.068-60.712 120.010-60.927M125.897-60.650Q125.432-60.650 125.066-60.900Q124.701-61.150 124.496-61.554Q124.291-61.959 124.291-62.416Q124.291-62.759 124.416-63.080Q124.541-63.400 124.774-63.650Q125.006-63.900 125.311-64.039Q125.615-64.177 125.971-64.177Q126.483-64.177 126.889-63.857L126.889-65.017L126.467-65.017Q126.256-65.041 126.217-65.255L126.217-65.345Q126.256-65.552 126.467-65.576L127.279-65.576Q127.479-65.552 127.529-65.345L127.529-61.248L127.955-61.248Q128.162-61.224 128.201-61.017L128.201-60.927Q128.162-60.712 127.955-60.689L127.139-60.689Q126.940-60.712 126.889-60.927L126.889-61.056Q126.693-60.865 126.432-60.757Q126.170-60.650 125.897-60.650M125.936-61.209Q126.295-61.209 126.547-61.478Q126.799-61.748 126.889-62.123L126.889-62.955Q126.830-63.142 126.703-63.293Q126.576-63.443 126.399-63.531Q126.221-63.619 126.025-63.619Q125.717-63.619 125.467-63.449Q125.217-63.279 125.072-62.994Q124.928-62.709 124.928-62.408Q124.928-61.959 125.213-61.584Q125.498-61.209 125.936-61.209\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M30.599-61.736Q30.599-61.912 30.716-62.033Q30.833-62.154 31.009-62.154Q31.091-62.154 31.167-62.123Q31.243-62.091 31.294-62.041Q31.345-61.990 31.376-61.910Q31.407-61.830 31.407-61.752Q31.407-61.619 31.325-61.505Q31.595-61.169 32.384-61.169Q32.809-61.169 33.151-61.435Q33.493-61.701 33.493-62.115Q33.493-62.388 33.327-62.607Q33.161-62.826 32.901-62.937Q32.642-63.048 32.368-63.048L31.903-63.048Q31.692-63.072 31.661-63.291L31.661-63.377Q31.692-63.580 31.903-63.611L32.431-63.650Q32.645-63.650 32.837-63.773Q33.028-63.896 33.142-64.099Q33.255-64.302 33.255-64.513Q33.255-64.787 32.972-64.941Q32.688-65.095 32.384-65.095Q31.821-65.095 31.583-64.904Q31.645-64.791 31.645-64.681Q31.645-64.509 31.532-64.396Q31.419-64.283 31.247-64.283Q31.071-64.283 30.956-64.406Q30.841-64.529 30.841-64.697Q30.841-65.224 31.313-65.441Q31.786-65.658 32.384-65.658Q32.724-65.658 33.079-65.527Q33.434-65.396 33.665-65.138Q33.895-64.880 33.895-64.513Q33.895-64.169 33.727-63.865Q33.559-63.560 33.263-63.361Q33.634-63.181 33.884-62.845Q34.134-62.509 34.134-62.115Q34.134-61.669 33.880-61.328Q33.626-60.986 33.224-60.798Q32.821-60.611 32.384-60.611Q32.099-60.611 31.794-60.666Q31.489-60.720 31.214-60.847Q30.938-60.974 30.768-61.197Q30.599-61.419 30.599-61.736M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M47.192-60.927L47.192-61.017Q47.243-61.228 47.438-61.248L47.638-61.248L47.638-63.576L47.438-63.576Q47.231-63.599 47.192-63.818L47.192-63.904Q47.243-64.119 47.438-64.138L47.919-64.138Q48.110-64.115 48.169-63.904Q48.489-64.177 48.903-64.177Q49.095-64.177 49.263-64.068Q49.431-63.959 49.505-63.787Q49.681-63.978 49.903-64.078Q50.126-64.177 50.368-64.177Q50.786-64.177 50.940-63.835Q51.095-63.494 51.095-63.025L51.095-61.248L51.294-61.248Q51.505-61.224 51.544-61.017L51.544-60.927Q51.493-60.712 51.294-60.689L50.477-60.689Q50.282-60.712 50.231-60.927L50.231-61.017Q50.282-61.224 50.477-61.248L50.567-61.248L50.567-62.994Q50.567-63.619 50.317-63.619Q49.985-63.619 49.808-63.308Q49.630-62.998 49.630-62.634L49.630-61.248L49.833-61.248Q50.040-61.224 50.079-61.017L50.079-60.927Q50.028-60.712 49.833-60.689L49.017-60.689Q48.817-60.712 48.767-60.927L48.767-61.017Q48.817-61.224 49.017-61.248L49.102-61.248L49.102-62.994Q49.102-63.619 48.856-63.619Q48.524-63.619 48.347-63.306Q48.169-62.994 48.169-62.634L48.169-61.248L48.368-61.248Q48.575-61.224 48.614-61.017L48.614-60.927Q48.563-60.709 48.368-60.689L47.438-60.689Q47.231-60.712 47.192-60.927M55.005-62.177L52.563-62.177Q52.618-61.900 52.815-61.677Q53.013-61.455 53.290-61.332Q53.567-61.209 53.852-61.209Q54.325-61.209 54.548-61.498Q54.556-61.509 54.612-61.615Q54.669-61.720 54.718-61.763Q54.767-61.806 54.860-61.818L55.005-61.818Q55.196-61.798 55.255-61.584L55.255-61.529Q55.188-61.228 54.958-61.031Q54.727-60.834 54.415-60.742Q54.102-60.650 53.798-60.650Q53.313-60.650 52.874-60.878Q52.434-61.107 52.167-61.507Q51.899-61.908 51.899-62.400L51.899-62.459Q51.899-62.927 52.145-63.330Q52.392-63.732 52.800-63.966Q53.208-64.201 53.677-64.201Q54.181-64.201 54.534-63.978Q54.888-63.755 55.071-63.367Q55.255-62.978 55.255-62.474L55.255-62.416Q55.196-62.201 55.005-62.177M52.571-62.728L54.599-62.728Q54.552-63.138 54.313-63.390Q54.075-63.642 53.677-63.642Q53.282-63.642 52.976-63.380Q52.669-63.119 52.571-62.728M55.684-60.927L55.684-61.017Q55.735-61.228 55.931-61.248L56.130-61.248L56.130-63.576L55.931-63.576Q55.724-63.599 55.684-63.818L55.684-63.904Q55.735-64.119 55.931-64.138L56.411-64.138Q56.602-64.115 56.661-63.904Q56.981-64.177 57.395-64.177Q57.587-64.177 57.755-64.068Q57.923-63.959 57.997-63.787Q58.173-63.978 58.395-64.078Q58.618-64.177 58.860-64.177Q59.278-64.177 59.433-63.835Q59.587-63.494 59.587-63.025L59.587-61.248L59.786-61.248Q59.997-61.224 60.036-61.017L60.036-60.927Q59.985-60.712 59.786-60.689L58.970-60.689Q58.774-60.712 58.724-60.927L58.724-61.017Q58.774-61.224 58.970-61.248L59.059-61.248L59.059-62.994Q59.059-63.619 58.809-63.619Q58.477-63.619 58.300-63.308Q58.122-62.998 58.122-62.634L58.122-61.248L58.325-61.248Q58.532-61.224 58.571-61.017L58.571-60.927Q58.520-60.712 58.325-60.689L57.509-60.689Q57.309-60.712 57.259-60.927L57.259-61.017Q57.309-61.224 57.509-61.248L57.595-61.248L57.595-62.994Q57.595-63.619 57.349-63.619Q57.017-63.619 56.839-63.306Q56.661-62.994 56.661-62.634L56.661-61.248L56.860-61.248Q57.067-61.224 57.106-61.017L57.106-60.927Q57.056-60.709 56.860-60.689L55.931-60.689Q55.724-60.712 55.684-60.927M62.106-60.650Q61.634-60.650 61.249-60.894Q60.864-61.138 60.642-61.548Q60.419-61.959 60.419-62.416Q60.419-62.759 60.544-63.082Q60.669-63.404 60.899-63.658Q61.130-63.912 61.436-64.056Q61.743-64.201 62.106-64.201Q62.470-64.201 62.782-64.054Q63.095-63.908 63.317-63.662Q63.540-63.416 63.667-63.095Q63.794-62.775 63.794-62.416Q63.794-61.959 63.569-61.546Q63.345-61.134 62.960-60.892Q62.575-60.650 62.106-60.650M62.106-61.209Q62.571-61.209 62.862-61.603Q63.153-61.998 63.153-62.482Q63.153-62.775 63.018-63.043Q62.884-63.310 62.643-63.476Q62.403-63.642 62.106-63.642Q61.802-63.642 61.563-63.476Q61.325-63.310 61.190-63.043Q61.056-62.775 61.056-62.482Q61.056-62.002 61.349-61.605Q61.642-61.209 62.106-61.209M64.454-60.927L64.454-61.017Q64.513-61.224 64.704-61.248L65.415-61.248L65.415-63.576L64.704-63.576Q64.509-63.599 64.454-63.818L64.454-63.904Q64.513-64.115 64.704-64.138L65.806-64.138Q66.005-64.119 66.056-63.904L66.056-63.576Q66.317-63.861 66.673-64.019Q67.028-64.177 67.415-64.177Q67.708-64.177 67.942-64.043Q68.177-63.908 68.177-63.642Q68.177-63.474 68.067-63.357Q67.958-63.240 67.790-63.240Q67.638-63.240 67.522-63.351Q67.407-63.462 67.407-63.619Q67.032-63.619 66.718-63.418Q66.403-63.216 66.229-62.882Q66.056-62.548 66.056-62.169L66.056-61.248L67.001-61.248Q67.208-61.224 67.247-61.017L67.247-60.927Q67.208-60.712 67.001-60.689L64.704-60.689Q64.513-60.712 64.454-60.927M69.095-60.927L69.095-61.017Q69.145-61.224 69.341-61.248L70.380-61.248L70.380-63.576L69.407-63.576Q69.208-63.599 69.157-63.818L69.157-63.904Q69.208-64.115 69.407-64.138L70.774-64.138Q70.970-64.119 71.020-63.904L71.020-61.248L71.934-61.248Q72.130-61.224 72.181-61.017L72.181-60.927Q72.130-60.712 71.934-60.689L69.341-60.689Q69.145-60.712 69.095-60.927M70.126-65.115L70.126-65.169Q70.126-65.341 70.263-65.462Q70.399-65.584 70.575-65.584Q70.747-65.584 70.884-65.462Q71.020-65.341 71.020-65.169L71.020-65.115Q71.020-64.939 70.884-64.818Q70.747-64.697 70.575-64.697Q70.399-64.697 70.263-64.818Q70.126-64.939 70.126-65.115M76.235-62.177L73.794-62.177Q73.849-61.900 74.046-61.677Q74.243-61.455 74.520-61.332Q74.798-61.209 75.083-61.209Q75.556-61.209 75.778-61.498Q75.786-61.509 75.843-61.615Q75.899-61.720 75.948-61.763Q75.997-61.806 76.091-61.818L76.235-61.818Q76.427-61.798 76.485-61.584L76.485-61.529Q76.419-61.228 76.188-61.031Q75.958-60.834 75.645-60.742Q75.333-60.650 75.028-60.650Q74.544-60.650 74.104-60.878Q73.665-61.107 73.397-61.507Q73.130-61.908 73.130-62.400L73.130-62.459Q73.130-62.927 73.376-63.330Q73.622-63.732 74.030-63.966Q74.438-64.201 74.907-64.201Q75.411-64.201 75.765-63.978Q76.118-63.755 76.302-63.367Q76.485-62.978 76.485-62.474L76.485-62.416Q76.427-62.201 76.235-62.177M73.802-62.728L75.829-62.728Q75.782-63.138 75.544-63.390Q75.306-63.642 74.907-63.642Q74.513-63.642 74.206-63.380Q73.899-63.119 73.802-62.728M77.556-60.888L77.556-61.802Q77.583-62.009 77.794-62.033L77.962-62.033Q78.126-62.009 78.184-61.849Q78.388-61.209 79.114-61.209Q79.321-61.209 79.550-61.244Q79.778-61.279 79.946-61.394Q80.114-61.509 80.114-61.712Q80.114-61.923 79.892-62.037Q79.669-62.150 79.395-62.193L78.696-62.306Q77.556-62.517 77.556-63.240Q77.556-63.529 77.700-63.718Q77.845-63.908 78.085-64.015Q78.325-64.123 78.581-64.162Q78.837-64.201 79.114-64.201Q79.364-64.201 79.558-64.171Q79.751-64.142 79.915-64.064Q79.993-64.181 80.122-64.201L80.200-64.201Q80.298-64.189 80.360-64.126Q80.423-64.064 80.434-63.970L80.434-63.263Q80.423-63.169 80.360-63.103Q80.298-63.037 80.200-63.025L80.032-63.025Q79.938-63.037 79.872-63.103Q79.806-63.169 79.794-63.263Q79.794-63.642 79.099-63.642Q78.751-63.642 78.433-63.560Q78.114-63.478 78.114-63.232Q78.114-62.966 78.786-62.857L79.489-62.736Q79.974-62.654 80.323-62.406Q80.673-62.158 80.673-61.712Q80.673-61.322 80.436-61.080Q80.200-60.837 79.851-60.744Q79.501-60.650 79.114-60.650Q78.536-60.650 78.138-60.904Q78.067-60.779 78.018-60.722Q77.970-60.666 77.864-60.650L77.794-60.650Q77.579-60.673 77.556-60.888M82.934-59.576Q82.821-59.576 82.731-59.666Q82.642-59.755 82.642-59.865Q82.642-60.009 82.782-60.095Q83.208-60.263 83.337-60.689Q83.110-60.689 82.946-60.857Q82.782-61.025 82.782-61.248Q82.782-61.482 82.946-61.642Q83.110-61.802 83.345-61.802Q83.649-61.802 83.792-61.548Q83.934-61.294 83.934-60.962Q83.934-60.525 83.690-60.156Q83.446-59.787 83.040-59.599Q82.993-59.576 82.934-59.576M82.782-63.584Q82.782-63.806 82.948-63.972Q83.114-64.138 83.345-64.138Q83.493-64.138 83.620-64.060Q83.747-63.982 83.821-63.857Q83.895-63.732 83.895-63.584Q83.895-63.357 83.729-63.191Q83.563-63.025 83.345-63.025Q83.118-63.025 82.950-63.193Q82.782-63.361 82.782-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M89.692-60.927L89.692-61.017Q89.743-61.228 89.938-61.248L90.138-61.248L90.138-63.576L89.938-63.576Q89.731-63.599 89.692-63.818L89.692-63.904Q89.743-64.119 89.938-64.138L90.419-64.138Q90.610-64.115 90.669-63.904Q90.989-64.177 91.403-64.177Q91.595-64.177 91.763-64.068Q91.931-63.959 92.005-63.787Q92.181-63.978 92.403-64.078Q92.626-64.177 92.868-64.177Q93.286-64.177 93.440-63.835Q93.595-63.494 93.595-63.025L93.595-61.248L93.794-61.248Q94.005-61.224 94.044-61.017L94.044-60.927Q93.993-60.712 93.794-60.689L92.977-60.689Q92.782-60.712 92.731-60.927L92.731-61.017Q92.782-61.224 92.977-61.248L93.067-61.248L93.067-62.994Q93.067-63.619 92.817-63.619Q92.485-63.619 92.308-63.308Q92.130-62.998 92.130-62.634L92.130-61.248L92.333-61.248Q92.540-61.224 92.579-61.017L92.579-60.927Q92.528-60.712 92.333-60.689L91.517-60.689Q91.317-60.712 91.267-60.927L91.267-61.017Q91.317-61.224 91.517-61.248L91.602-61.248L91.602-62.994Q91.602-63.619 91.356-63.619Q91.024-63.619 90.847-63.306Q90.669-62.994 90.669-62.634L90.669-61.248L90.868-61.248Q91.075-61.224 91.114-61.017L91.114-60.927Q91.063-60.709 90.868-60.689L89.938-60.689Q89.731-60.712 89.692-60.927M96.114-60.650Q95.642-60.650 95.257-60.894Q94.872-61.138 94.649-61.548Q94.427-61.959 94.427-62.416Q94.427-62.759 94.552-63.082Q94.677-63.404 94.907-63.658Q95.138-63.912 95.444-64.056Q95.751-64.201 96.114-64.201Q96.477-64.201 96.790-64.054Q97.102-63.908 97.325-63.662Q97.548-63.416 97.675-63.095Q97.802-62.775 97.802-62.416Q97.802-61.959 97.577-61.546Q97.352-61.134 96.968-60.892Q96.583-60.650 96.114-60.650M96.114-61.209Q96.579-61.209 96.870-61.603Q97.161-61.998 97.161-62.482Q97.161-62.775 97.026-63.043Q96.892-63.310 96.651-63.476Q96.411-63.642 96.114-63.642Q95.809-63.642 95.571-63.476Q95.333-63.310 95.198-63.043Q95.063-62.775 95.063-62.482Q95.063-62.002 95.356-61.605Q95.649-61.209 96.114-61.209M100.102-60.650Q99.638-60.650 99.272-60.900Q98.907-61.150 98.702-61.554Q98.497-61.959 98.497-62.416Q98.497-62.759 98.622-63.080Q98.747-63.400 98.979-63.650Q99.212-63.900 99.517-64.039Q99.821-64.177 100.177-64.177Q100.688-64.177 101.095-63.857L101.095-65.017L100.673-65.017Q100.462-65.041 100.423-65.255L100.423-65.345Q100.462-65.552 100.673-65.576L101.485-65.576Q101.684-65.552 101.735-65.345L101.735-61.248L102.161-61.248Q102.368-61.224 102.407-61.017L102.407-60.927Q102.368-60.712 102.161-60.689L101.345-60.689Q101.145-60.712 101.095-60.927L101.095-61.056Q100.899-60.865 100.638-60.757Q100.376-60.650 100.102-60.650M100.142-61.209Q100.501-61.209 100.753-61.478Q101.005-61.748 101.095-62.123L101.095-62.955Q101.036-63.142 100.909-63.293Q100.782-63.443 100.604-63.531Q100.427-63.619 100.231-63.619Q99.923-63.619 99.673-63.449Q99.423-63.279 99.278-62.994Q99.134-62.709 99.134-62.408Q99.134-61.959 99.419-61.584Q99.704-61.209 100.142-61.209M103.227-61.544L103.227-63.576L102.806-63.576Q102.599-63.599 102.556-63.818L102.556-63.904Q102.602-64.115 102.806-64.138L103.622-64.138Q103.817-64.115 103.868-63.904L103.868-61.576Q103.868-61.341 104.038-61.275Q104.208-61.209 104.493-61.209Q104.700-61.209 104.895-61.285Q105.091-61.361 105.216-61.511Q105.341-61.662 105.341-61.873L105.341-63.576L104.919-63.576Q104.708-63.599 104.669-63.818L104.669-63.904Q104.708-64.115 104.919-64.138L105.731-64.138Q105.931-64.115 105.981-63.904L105.981-61.248L106.407-61.248Q106.614-61.224 106.653-61.017L106.653-60.927Q106.614-60.712 106.407-60.689L105.591-60.689Q105.392-60.712 105.341-60.912Q104.938-60.650 104.431-60.650Q104.196-60.650 103.981-60.691Q103.767-60.732 103.601-60.834Q103.434-60.935 103.331-61.113Q103.227-61.291 103.227-61.544M107.181-60.927L107.181-61.017Q107.231-61.224 107.427-61.248L108.532-61.248L108.532-65.017L107.427-65.017Q107.231-65.041 107.181-65.255L107.181-65.345Q107.231-65.552 107.427-65.576L108.923-65.576Q109.114-65.552 109.173-65.345L109.173-61.248L110.274-61.248Q110.474-61.224 110.524-61.017L110.524-60.927Q110.474-60.712 110.274-60.689L107.427-60.689Q107.231-60.712 107.181-60.927M114.489-62.177L112.048-62.177Q112.102-61.900 112.300-61.677Q112.497-61.455 112.774-61.332Q113.052-61.209 113.337-61.209Q113.809-61.209 114.032-61.498Q114.040-61.509 114.097-61.615Q114.153-61.720 114.202-61.763Q114.251-61.806 114.345-61.818L114.489-61.818Q114.681-61.798 114.739-61.584L114.739-61.529Q114.673-61.228 114.442-61.031Q114.212-60.834 113.899-60.742Q113.587-60.650 113.282-60.650Q112.798-60.650 112.358-60.878Q111.919-61.107 111.651-61.507Q111.384-61.908 111.384-62.400L111.384-62.459Q111.384-62.927 111.630-63.330Q111.876-63.732 112.284-63.966Q112.692-64.201 113.161-64.201Q113.665-64.201 114.018-63.978Q114.372-63.755 114.556-63.367Q114.739-62.978 114.739-62.474L114.739-62.416Q114.681-62.201 114.489-62.177M112.056-62.728L114.083-62.728Q114.036-63.138 113.798-63.390Q113.559-63.642 113.161-63.642Q112.767-63.642 112.460-63.380Q112.153-63.119 112.056-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M122.057-62.033L119.986-62.033Q119.791-62.056 119.736-62.275L119.736-62.513Q119.736-62.587 119.779-62.658L121.627-65.529Q121.713-65.658 121.865-65.658L122.322-65.658Q122.432-65.658 122.510-65.580Q122.588-65.501 122.588-65.392L122.588-62.591L123.252-62.591Q123.447-62.568 123.498-62.361L123.498-62.275Q123.447-62.056 123.252-62.033L122.588-62.033L122.588-61.248L123.162-61.248Q123.369-61.224 123.408-61.017L123.408-60.927Q123.369-60.712 123.162-60.689L121.482-60.689Q121.275-60.712 121.232-60.927L121.232-61.017Q121.275-61.224 121.482-61.248L122.057-61.248L122.057-62.033M122.057-65.185L120.385-62.591L122.057-62.591L122.057-65.185M125.311-61.248Q125.311-61.470 125.477-61.636Q125.643-61.802 125.873-61.802Q126.021-61.802 126.148-61.724Q126.275-61.646 126.350-61.521Q126.424-61.396 126.424-61.248Q126.424-61.021 126.258-60.855Q126.092-60.689 125.873-60.689Q125.646-60.689 125.478-60.857Q125.311-61.025 125.311-61.248M125.311-63.584Q125.311-63.806 125.477-63.972Q125.643-64.138 125.873-64.138Q126.021-64.138 126.148-64.060Q126.275-63.982 126.350-63.857Q126.424-63.732 126.424-63.584Q126.424-63.357 126.258-63.191Q126.092-63.025 125.873-63.025Q125.646-63.025 125.478-63.193Q125.311-63.361 125.311-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 31.764)\">\u003Cpath d=\"M136.818-60.927L136.818-61.017Q136.869-61.224 137.064-61.248L137.947-61.248L137.947-63.576L137.092-63.576Q136.893-63.599 136.842-63.818L136.842-63.904Q136.893-64.115 137.092-64.138L137.947-64.138L137.947-64.591Q137.947-65.056 138.353-65.337Q138.760-65.619 139.240-65.619Q139.553-65.619 139.797-65.498Q140.041-65.376 140.041-65.095Q140.041-64.931 139.932-64.814Q139.822-64.697 139.658-64.697Q139.510-64.697 139.389-64.802Q139.268-64.908 139.268-65.056L139.185-65.056Q139.033-65.056 138.896-64.996Q138.760-64.935 138.674-64.820Q138.588-64.705 138.588-64.560L138.588-64.138L139.619-64.138Q139.814-64.119 139.865-63.904L139.865-63.818Q139.814-63.599 139.619-63.576L138.588-63.576L138.588-61.248L139.467-61.248Q139.662-61.224 139.713-61.017L139.713-60.927Q139.662-60.712 139.467-60.689L137.064-60.689Q136.869-60.712 136.818-60.927M144.256-62.177L141.814-62.177Q141.869-61.900 142.066-61.677Q142.264-61.455 142.541-61.332Q142.818-61.209 143.103-61.209Q143.576-61.209 143.799-61.498Q143.807-61.509 143.863-61.615Q143.920-61.720 143.969-61.763Q144.018-61.806 144.111-61.818L144.256-61.818Q144.447-61.798 144.506-61.584L144.506-61.529Q144.439-61.228 144.209-61.031Q143.978-60.834 143.666-60.742Q143.353-60.650 143.049-60.650Q142.564-60.650 142.125-60.878Q141.685-61.107 141.418-61.507Q141.150-61.908 141.150-62.400L141.150-62.459Q141.150-62.927 141.396-63.330Q141.643-63.732 142.051-63.966Q142.459-64.201 142.928-64.201Q143.432-64.201 143.785-63.978Q144.139-63.755 144.322-63.367Q144.506-62.978 144.506-62.474L144.506-62.416Q144.447-62.201 144.256-62.177M141.822-62.728L143.850-62.728Q143.803-63.138 143.564-63.390Q143.326-63.642 142.928-63.642Q142.533-63.642 142.227-63.380Q141.920-63.119 141.822-62.728M146.189-61.794L146.189-63.576L145.439-63.576Q145.240-63.599 145.189-63.818L145.189-63.904Q145.240-64.115 145.439-64.138L146.189-64.138L146.189-64.888Q146.240-65.095 146.439-65.123L146.584-65.123Q146.779-65.095 146.830-64.888L146.830-64.138L148.189-64.138Q148.381-64.119 148.439-63.904L148.439-63.818Q148.385-63.599 148.189-63.576L146.830-63.576L146.830-61.826Q146.830-61.209 147.404-61.209Q147.654-61.209 147.818-61.394Q147.982-61.580 147.982-61.826Q147.982-61.919 148.055-61.990Q148.127-62.060 148.228-62.072L148.373-62.072Q148.572-62.048 148.623-61.841L148.623-61.794Q148.623-61.470 148.439-61.207Q148.256-60.943 147.963-60.796Q147.670-60.650 147.350-60.650Q146.838-60.650 146.514-60.960Q146.189-61.271 146.189-61.794M149.795-62.416Q149.795-62.896 150.039-63.310Q150.283-63.724 150.699-63.962Q151.115-64.201 151.596-64.201Q152.150-64.201 152.529-64.091Q152.908-63.982 152.908-63.576Q152.908-63.408 152.795-63.285Q152.682-63.162 152.510-63.162Q152.338-63.162 152.219-63.277Q152.100-63.392 152.100-63.560L152.100-63.619Q151.939-63.642 151.603-63.642Q151.275-63.642 151.008-63.472Q150.740-63.302 150.588-63.019Q150.435-62.736 150.435-62.416Q150.435-62.095 150.607-61.814Q150.779-61.533 151.064-61.371Q151.350-61.209 151.678-61.209Q151.990-61.209 152.117-61.312Q152.244-61.416 152.361-61.605Q152.478-61.794 152.596-61.810L152.764-61.810Q152.869-61.798 152.934-61.730Q152.998-61.662 152.998-61.560Q152.998-61.513 152.978-61.474Q152.869-61.181 152.666-61.002Q152.463-60.822 152.187-60.736Q151.912-60.650 151.596-60.650Q151.111-60.650 150.695-60.888Q150.279-61.127 150.037-61.529Q149.795-61.931 149.795-62.416M153.553-60.927L153.553-61.017Q153.596-61.224 153.803-61.248L154.225-61.248L154.225-65.017L153.803-65.017Q153.596-65.041 153.553-65.255L153.553-65.345Q153.596-65.552 153.803-65.576L154.619-65.576Q154.814-65.552 154.865-65.345L154.865-63.794Q155.326-64.177 155.924-64.177Q156.271-64.177 156.510-64.037Q156.748-63.896 156.863-63.638Q156.978-63.380 156.978-63.025L156.978-61.248L157.404-61.248Q157.611-61.224 157.650-61.017L157.650-60.927Q157.611-60.712 157.404-60.689L156.010-60.689Q155.814-60.712 155.764-60.927L155.764-61.017Q155.814-61.228 156.010-61.248L156.338-61.248L156.338-62.994Q156.338-63.302 156.248-63.460Q156.158-63.619 155.865-63.619Q155.596-63.619 155.367-63.488Q155.139-63.357 155.002-63.128Q154.865-62.900 154.865-62.634L154.865-61.248L155.291-61.248Q155.498-61.224 155.537-61.017L155.537-60.927Q155.498-60.712 155.291-60.689L153.803-60.689Q153.596-60.712 153.553-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564 10.443h108.12v-22.762h-108.12Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-23.642 61.656)\">\u003Cpath d=\"M2.742-60.689L0.762-60.689L0.762-60.986Q1.031-60.986 1.199-61.031Q1.367-61.076 1.367-61.248L1.367-63.384Q1.367-63.599 1.305-63.695Q1.242-63.791 1.125-63.812Q1.008-63.834 0.762-63.834L0.762-64.130L1.930-64.216L1.930-63.431Q2.008-63.642 2.160-63.828Q2.312-64.013 2.512-64.115Q2.711-64.216 2.937-64.216Q3.184-64.216 3.375-64.072Q3.566-63.927 3.566-63.697Q3.566-63.541 3.461-63.431Q3.355-63.322 3.199-63.322Q3.043-63.322 2.934-63.431Q2.824-63.541 2.824-63.697Q2.824-63.857 2.930-63.962Q2.605-63.962 2.391-63.734Q2.176-63.505 2.080-63.166Q1.984-62.826 1.984-62.521L1.984-61.248Q1.984-61.080 2.211-61.033Q2.437-60.986 2.742-60.986L2.742-60.689M4.047-62.443Q4.047-62.923 4.279-63.339Q4.512-63.755 4.922-64.005Q5.332-64.255 5.809-64.255Q6.539-64.255 6.937-63.814Q7.336-63.373 7.336-62.642Q7.336-62.537 7.242-62.513L4.793-62.513L4.793-62.443Q4.793-62.033 4.914-61.677Q5.035-61.322 5.307-61.105Q5.578-60.888 6.008-60.888Q6.371-60.888 6.668-61.117Q6.965-61.345 7.066-61.697Q7.074-61.744 7.160-61.759L7.242-61.759Q7.336-61.732 7.336-61.650Q7.336-61.642 7.328-61.611Q7.266-61.384 7.127-61.201Q6.988-61.017 6.797-60.884Q6.605-60.752 6.387-60.681Q6.168-60.611 5.930-60.611Q5.559-60.611 5.221-60.748Q4.883-60.884 4.615-61.136Q4.348-61.388 4.197-61.728Q4.047-62.068 4.047-62.443M4.801-62.752L6.762-62.752Q6.762-63.056 6.660-63.347Q6.559-63.638 6.342-63.820Q6.125-64.001 5.809-64.001Q5.508-64.001 5.277-63.814Q5.047-63.627 4.924-63.335Q4.801-63.044 4.801-62.752M7.824-60.080Q7.824-60.361 8.035-60.572Q8.246-60.783 8.531-60.873Q8.375-60.998 8.297-61.187Q8.219-61.377 8.219-61.576Q8.219-61.931 8.449-62.224Q8.082-62.564 8.082-63.033Q8.082-63.384 8.285-63.654Q8.488-63.923 8.809-64.070Q9.129-64.216 9.473-64.216Q9.992-64.216 10.363-63.935Q10.726-64.306 11.273-64.306Q11.453-64.306 11.580-64.179Q11.707-64.052 11.707-63.873Q11.707-63.767 11.629-63.689Q11.551-63.611 11.441-63.611Q11.332-63.611 11.256-63.687Q11.180-63.763 11.180-63.873Q11.180-63.974 11.219-64.025Q11.226-64.033 11.230-64.039Q11.234-64.044 11.234-64.048Q10.859-64.048 10.539-63.794Q10.859-63.455 10.859-63.033Q10.859-62.763 10.742-62.546Q10.625-62.330 10.420-62.171Q10.215-62.013 9.973-61.931Q9.730-61.849 9.473-61.849Q9.254-61.849 9.041-61.908Q8.828-61.966 8.633-62.087Q8.539-61.947 8.539-61.767Q8.539-61.560 8.676-61.408Q8.812-61.255 9.019-61.255L9.715-61.255Q10.203-61.255 10.615-61.171Q11.027-61.087 11.307-60.830Q11.586-60.572 11.586-60.080Q11.586-59.716 11.266-59.484Q10.945-59.252 10.504-59.150Q10.062-59.048 9.707-59.048Q9.351-59.048 8.908-59.150Q8.465-59.252 8.144-59.484Q7.824-59.716 7.824-60.080M8.328-60.080Q8.328-59.884 8.473-59.736Q8.617-59.587 8.830-59.498Q9.043-59.408 9.283-59.361Q9.523-59.314 9.707-59.314Q9.949-59.314 10.279-59.392Q10.609-59.470 10.846-59.644Q11.082-59.818 11.082-60.080Q11.082-60.486 10.672-60.595Q10.262-60.705 9.699-60.705L9.019-60.705Q8.750-60.705 8.539-60.527Q8.328-60.349 8.328-60.080M9.473-62.115Q10.195-62.115 10.195-63.033Q10.195-63.955 9.473-63.955Q8.746-63.955 8.746-63.033Q8.746-62.115 9.473-62.115M13.930-60.689L12.152-60.689L12.152-60.986Q12.426-60.986 12.594-61.033Q12.762-61.080 12.762-61.248L12.762-63.384Q12.762-63.599 12.705-63.695Q12.648-63.791 12.535-63.812Q12.422-63.834 12.176-63.834L12.176-64.130L13.375-64.216L13.375-61.248Q13.375-61.080 13.521-61.033Q13.668-60.986 13.930-60.986L13.930-60.689M12.488-65.611Q12.488-65.802 12.623-65.933Q12.758-66.064 12.953-66.064Q13.074-66.064 13.178-66.001Q13.281-65.939 13.344-65.835Q13.406-65.732 13.406-65.611Q13.406-65.416 13.275-65.281Q13.144-65.146 12.953-65.146Q12.754-65.146 12.621-65.279Q12.488-65.412 12.488-65.611M14.473-60.697L14.473-61.919Q14.473-61.947 14.504-61.978Q14.535-62.009 14.559-62.009L14.664-62.009Q14.734-62.009 14.750-61.947Q14.812-61.627 14.951-61.386Q15.090-61.146 15.322-61.005Q15.555-60.865 15.863-60.865Q16.101-60.865 16.310-60.925Q16.519-60.986 16.656-61.134Q16.793-61.283 16.793-61.529Q16.793-61.783 16.582-61.949Q16.371-62.115 16.101-62.169L15.480-62.283Q15.074-62.361 14.773-62.617Q14.473-62.873 14.473-63.248Q14.473-63.615 14.674-63.837Q14.875-64.060 15.199-64.158Q15.523-64.255 15.863-64.255Q16.328-64.255 16.625-64.048L16.848-64.232Q16.871-64.255 16.902-64.255L16.953-64.255Q16.984-64.255 17.012-64.228Q17.039-64.201 17.039-64.169L17.039-63.185Q17.039-63.154 17.014-63.125Q16.988-63.095 16.953-63.095L16.848-63.095Q16.812-63.095 16.785-63.123Q16.758-63.150 16.758-63.185Q16.758-63.584 16.506-63.804Q16.254-64.025 15.855-64.025Q15.500-64.025 15.217-63.902Q14.934-63.779 14.934-63.474Q14.934-63.255 15.135-63.123Q15.336-62.990 15.582-62.947L16.207-62.834Q16.637-62.744 16.945-62.447Q17.254-62.150 17.254-61.736Q17.254-61.166 16.855-60.888Q16.457-60.611 15.863-60.611Q15.312-60.611 14.961-60.947L14.664-60.634Q14.641-60.611 14.605-60.611L14.559-60.611Q14.535-60.611 14.504-60.642Q14.473-60.673 14.473-60.697M18.406-61.650L18.406-63.841L17.703-63.841L17.703-64.095Q18.059-64.095 18.301-64.328Q18.543-64.560 18.654-64.908Q18.766-65.255 18.766-65.611L19.047-65.611L19.047-64.138L20.223-64.138L20.223-63.841L19.047-63.841L19.047-61.666Q19.047-61.345 19.166-61.117Q19.285-60.888 19.566-60.888Q19.746-60.888 19.863-61.011Q19.980-61.134 20.033-61.314Q20.086-61.494 20.086-61.666L20.086-62.138L20.367-62.138L20.367-61.650Q20.367-61.396 20.262-61.156Q20.156-60.916 19.959-60.763Q19.762-60.611 19.504-60.611Q19.187-60.611 18.935-60.734Q18.684-60.857 18.545-61.091Q18.406-61.326 18.406-61.650M21.086-62.443Q21.086-62.923 21.318-63.339Q21.551-63.755 21.961-64.005Q22.371-64.255 22.848-64.255Q23.578-64.255 23.976-63.814Q24.375-63.373 24.375-62.642Q24.375-62.537 24.281-62.513L21.832-62.513L21.832-62.443Q21.832-62.033 21.953-61.677Q22.074-61.322 22.346-61.105Q22.617-60.888 23.047-60.888Q23.410-60.888 23.707-61.117Q24.004-61.345 24.105-61.697Q24.113-61.744 24.199-61.759L24.281-61.759Q24.375-61.732 24.375-61.650Q24.375-61.642 24.367-61.611Q24.305-61.384 24.166-61.201Q24.027-61.017 23.836-60.884Q23.644-60.752 23.426-60.681Q23.207-60.611 22.969-60.611Q22.598-60.611 22.260-60.748Q21.922-60.884 21.654-61.136Q21.387-61.388 21.236-61.728Q21.086-62.068 21.086-62.443M21.840-62.752L23.801-62.752Q23.801-63.056 23.699-63.347Q23.598-63.638 23.381-63.820Q23.164-64.001 22.848-64.001Q22.547-64.001 22.316-63.814Q22.086-63.627 21.963-63.335Q21.840-63.044 21.840-62.752M26.871-60.689L24.891-60.689L24.891-60.986Q25.160-60.986 25.328-61.031Q25.496-61.076 25.496-61.248L25.496-63.384Q25.496-63.599 25.434-63.695Q25.371-63.791 25.254-63.812Q25.137-63.834 24.891-63.834L24.891-64.130L26.059-64.216L26.059-63.431Q26.137-63.642 26.289-63.828Q26.441-64.013 26.641-64.115Q26.840-64.216 27.066-64.216Q27.312-64.216 27.504-64.072Q27.695-63.927 27.695-63.697Q27.695-63.541 27.590-63.431Q27.484-63.322 27.328-63.322Q27.172-63.322 27.062-63.431Q26.953-63.541 26.953-63.697Q26.953-63.857 27.059-63.962Q26.734-63.962 26.519-63.734Q26.305-63.505 26.209-63.166Q26.113-62.826 26.113-62.521L26.113-61.248Q26.113-61.080 26.340-61.033Q26.566-60.986 26.871-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.642 61.656)\">\u003Cpath d=\"M31.100-60.927L31.100-61.017Q31.151-61.224 31.346-61.248L32.229-61.248L32.229-63.576L31.374-63.576Q31.175-63.599 31.124-63.818L31.124-63.904Q31.175-64.115 31.374-64.138L32.229-64.138L32.229-64.591Q32.229-65.056 32.635-65.337Q33.042-65.619 33.522-65.619Q33.835-65.619 34.079-65.498Q34.323-65.376 34.323-65.095Q34.323-64.931 34.214-64.814Q34.104-64.697 33.940-64.697Q33.792-64.697 33.671-64.802Q33.550-64.908 33.550-65.056L33.468-65.056Q33.315-65.056 33.178-64.996Q33.042-64.935 32.956-64.820Q32.870-64.705 32.870-64.560L32.870-64.138L33.901-64.138Q34.096-64.119 34.147-63.904L34.147-63.818Q34.096-63.599 33.901-63.576L32.870-63.576L32.870-61.248L33.749-61.248Q33.944-61.224 33.995-61.017L33.995-60.927Q33.944-60.712 33.749-60.689L31.346-60.689Q31.151-60.712 31.100-60.927M35.643-60.927L35.643-61.017Q35.694-61.224 35.889-61.248L36.928-61.248L36.928-63.576L35.956-63.576Q35.757-63.599 35.706-63.818L35.706-63.904Q35.757-64.115 35.956-64.138L37.323-64.138Q37.518-64.119 37.569-63.904L37.569-61.248L38.483-61.248Q38.678-61.224 38.729-61.017L38.729-60.927Q38.678-60.712 38.483-60.689L35.889-60.689Q35.694-60.712 35.643-60.927M36.675-65.115L36.675-65.169Q36.675-65.341 36.811-65.462Q36.948-65.584 37.124-65.584Q37.296-65.584 37.432-65.462Q37.569-65.341 37.569-65.169L37.569-65.115Q37.569-64.939 37.432-64.818Q37.296-64.697 37.124-64.697Q36.948-64.697 36.811-64.818Q36.675-64.939 36.675-65.115M39.721-60.927L39.721-61.017Q39.772-61.224 39.968-61.248L41.073-61.248L41.073-65.017L39.968-65.017Q39.772-65.041 39.721-65.255L39.721-65.345Q39.772-65.552 39.968-65.576L41.464-65.576Q41.655-65.552 41.714-65.345L41.714-61.248L42.815-61.248Q43.014-61.224 43.065-61.017L43.065-60.927Q43.014-60.712 42.815-60.689L39.968-60.689Q39.772-60.712 39.721-60.927M47.030-62.177L44.589-62.177Q44.643-61.900 44.841-61.677Q45.038-61.455 45.315-61.332Q45.593-61.209 45.878-61.209Q46.350-61.209 46.573-61.498Q46.581-61.509 46.637-61.615Q46.694-61.720 46.743-61.763Q46.792-61.806 46.885-61.818L47.030-61.818Q47.221-61.798 47.280-61.584L47.280-61.529Q47.214-61.228 46.983-61.031Q46.753-60.834 46.440-60.742Q46.128-60.650 45.823-60.650Q45.339-60.650 44.899-60.878Q44.460-61.107 44.192-61.507Q43.925-61.908 43.925-62.400L43.925-62.459Q43.925-62.927 44.171-63.330Q44.417-63.732 44.825-63.966Q45.233-64.201 45.702-64.201Q46.206-64.201 46.559-63.978Q46.913-63.755 47.096-63.367Q47.280-62.978 47.280-62.474L47.280-62.416Q47.221-62.201 47.030-62.177M44.596-62.728L46.624-62.728Q46.577-63.138 46.339-63.390Q46.100-63.642 45.702-63.642Q45.307-63.642 45.001-63.380Q44.694-63.119 44.596-62.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M30.599-61.736Q30.599-61.912 30.716-62.033Q30.833-62.154 31.009-62.154Q31.091-62.154 31.167-62.123Q31.243-62.091 31.294-62.041Q31.345-61.990 31.376-61.910Q31.407-61.830 31.407-61.752Q31.407-61.619 31.325-61.505Q31.595-61.169 32.384-61.169Q32.809-61.169 33.151-61.435Q33.493-61.701 33.493-62.115Q33.493-62.388 33.327-62.607Q33.161-62.826 32.901-62.937Q32.642-63.048 32.368-63.048L31.903-63.048Q31.692-63.072 31.661-63.291L31.661-63.377Q31.692-63.580 31.903-63.611L32.431-63.650Q32.645-63.650 32.837-63.773Q33.028-63.896 33.142-64.099Q33.255-64.302 33.255-64.513Q33.255-64.787 32.972-64.941Q32.688-65.095 32.384-65.095Q31.821-65.095 31.583-64.904Q31.645-64.791 31.645-64.681Q31.645-64.509 31.532-64.396Q31.419-64.283 31.247-64.283Q31.071-64.283 30.956-64.406Q30.841-64.529 30.841-64.697Q30.841-65.224 31.313-65.441Q31.786-65.658 32.384-65.658Q32.724-65.658 33.079-65.527Q33.434-65.396 33.665-65.138Q33.895-64.880 33.895-64.513Q33.895-64.169 33.727-63.865Q33.559-63.560 33.263-63.361Q33.634-63.181 33.884-62.845Q34.134-62.509 34.134-62.115Q34.134-61.669 33.880-61.328Q33.626-60.986 33.224-60.798Q32.821-60.611 32.384-60.611Q32.099-60.611 31.794-60.666Q31.489-60.720 31.214-60.847Q30.938-60.974 30.768-61.197Q30.599-61.419 30.599-61.736M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M47.470-60.927L47.470-61.017Q47.528-61.224 47.720-61.248L48.431-61.248L48.431-63.576L47.720-63.576Q47.524-63.599 47.470-63.818L47.470-63.904Q47.528-64.115 47.720-64.138L48.821-64.138Q49.020-64.119 49.071-63.904L49.071-63.576Q49.333-63.861 49.688-64.019Q50.044-64.177 50.431-64.177Q50.724-64.177 50.958-64.043Q51.192-63.908 51.192-63.642Q51.192-63.474 51.083-63.357Q50.974-63.240 50.806-63.240Q50.653-63.240 50.538-63.351Q50.423-63.462 50.423-63.619Q50.048-63.619 49.733-63.418Q49.419-63.216 49.245-62.882Q49.071-62.548 49.071-62.169L49.071-61.248L50.017-61.248Q50.224-61.224 50.263-61.017L50.263-60.927Q50.224-60.712 50.017-60.689L47.720-60.689Q47.528-60.712 47.470-60.927M55.005-62.177L52.563-62.177Q52.618-61.900 52.815-61.677Q53.013-61.455 53.290-61.332Q53.567-61.209 53.852-61.209Q54.325-61.209 54.548-61.498Q54.556-61.509 54.612-61.615Q54.669-61.720 54.718-61.763Q54.767-61.806 54.860-61.818L55.005-61.818Q55.196-61.798 55.255-61.584L55.255-61.529Q55.188-61.228 54.958-61.031Q54.727-60.834 54.415-60.742Q54.102-60.650 53.798-60.650Q53.313-60.650 52.874-60.878Q52.434-61.107 52.167-61.507Q51.899-61.908 51.899-62.400L51.899-62.459Q51.899-62.927 52.145-63.330Q52.392-63.732 52.800-63.966Q53.208-64.201 53.677-64.201Q54.181-64.201 54.534-63.978Q54.888-63.755 55.071-63.367Q55.255-62.978 55.255-62.474L55.255-62.416Q55.196-62.201 55.005-62.177M52.571-62.728L54.599-62.728Q54.552-63.138 54.313-63.390Q54.075-63.642 53.677-63.642Q53.282-63.642 52.976-63.380Q52.669-63.119 52.571-62.728M55.977-60.041Q55.977-60.341 56.126-60.603Q56.274-60.865 56.524-61.025Q56.341-61.279 56.341-61.599Q56.341-61.884 56.493-62.146Q56.243-62.470 56.243-62.888Q56.243-63.248 56.434-63.544Q56.626-63.841 56.944-64.009Q57.263-64.177 57.626-64.177Q57.833-64.177 58.036-64.117Q58.239-64.056 58.403-63.955Q58.786-64.216 59.259-64.216Q59.497-64.216 59.679-64.085Q59.860-63.955 59.860-63.728Q59.860-63.580 59.759-63.474Q59.657-63.369 59.501-63.369Q59.368-63.369 59.272-63.447Q59.177-63.525 59.145-63.650Q59.001-63.642 58.802-63.552Q59.005-63.240 59.005-62.888Q59.005-62.607 58.893-62.375Q58.782-62.142 58.587-61.964Q58.392-61.787 58.140-61.689Q57.888-61.591 57.626-61.591Q57.239-61.591 56.907-61.779Q56.895-61.779 56.886-61.707Q56.876-61.634 56.876-61.599Q56.876-61.478 56.942-61.371Q57.009-61.263 57.130-61.224Q57.145-61.228 57.159-61.230Q57.173-61.232 57.196-61.232Q57.212-61.232 57.243-61.224Q57.274-61.216 57.282-61.216L57.876-61.216Q58.657-61.216 59.198-60.974Q59.739-60.732 59.739-60.041Q59.739-59.740 59.559-59.513Q59.380-59.287 59.083-59.142Q58.786-58.998 58.466-58.931Q58.145-58.865 57.860-58.865Q57.470-58.865 57.028-58.988Q56.587-59.111 56.282-59.378Q55.977-59.646 55.977-60.041M56.517-60.048Q56.517-59.830 56.757-59.689Q56.997-59.548 57.321-59.482Q57.645-59.416 57.860-59.416Q58.075-59.416 58.399-59.482Q58.724-59.548 58.964-59.689Q59.204-59.830 59.204-60.048Q59.204-60.337 58.979-60.476Q58.755-60.615 58.474-60.648Q58.192-60.681 57.845-60.681L57.227-60.681Q57.044-60.681 56.882-60.601Q56.720-60.521 56.618-60.375Q56.517-60.228 56.517-60.048M57.626-62.146Q57.927-62.146 58.145-62.365Q58.364-62.584 58.364-62.888Q58.364-63.044 58.309-63.175Q58.255-63.306 58.149-63.412Q58.044-63.517 57.913-63.572Q57.782-63.627 57.626-63.627Q57.321-63.627 57.102-63.408Q56.884-63.189 56.884-62.888Q56.884-62.591 57.106-62.369Q57.329-62.146 57.626-62.146M60.602-60.927L60.602-61.017Q60.653-61.224 60.849-61.248L61.888-61.248L61.888-63.576L60.915-63.576Q60.716-63.599 60.665-63.818L60.665-63.904Q60.716-64.115 60.915-64.138L62.282-64.138Q62.477-64.119 62.528-63.904L62.528-61.248L63.442-61.248Q63.638-61.224 63.688-61.017L63.688-60.927Q63.638-60.712 63.442-60.689L60.849-60.689Q60.653-60.712 60.602-60.927M61.634-65.115L61.634-65.169Q61.634-65.341 61.770-65.462Q61.907-65.584 62.083-65.584Q62.255-65.584 62.392-65.462Q62.528-65.341 62.528-65.169L62.528-65.115Q62.528-64.939 62.392-64.818Q62.255-64.697 62.083-64.697Q61.907-64.697 61.770-64.818Q61.634-64.939 61.634-65.115M64.817-60.888L64.817-61.802Q64.845-62.009 65.056-62.033L65.224-62.033Q65.388-62.009 65.446-61.849Q65.649-61.209 66.376-61.209Q66.583-61.209 66.811-61.244Q67.040-61.279 67.208-61.394Q67.376-61.509 67.376-61.712Q67.376-61.923 67.153-62.037Q66.931-62.150 66.657-62.193L65.958-62.306Q64.817-62.517 64.817-63.240Q64.817-63.529 64.962-63.718Q65.106-63.908 65.347-64.015Q65.587-64.123 65.843-64.162Q66.099-64.201 66.376-64.201Q66.626-64.201 66.819-64.171Q67.013-64.142 67.177-64.064Q67.255-64.181 67.384-64.201L67.462-64.201Q67.559-64.189 67.622-64.126Q67.684-64.064 67.696-63.970L67.696-63.263Q67.684-63.169 67.622-63.103Q67.559-63.037 67.462-63.025L67.294-63.025Q67.200-63.037 67.134-63.103Q67.067-63.169 67.056-63.263Q67.056-63.642 66.360-63.642Q66.013-63.642 65.694-63.560Q65.376-63.478 65.376-63.232Q65.376-62.966 66.048-62.857L66.751-62.736Q67.235-62.654 67.585-62.406Q67.934-62.158 67.934-61.712Q67.934-61.322 67.698-61.080Q67.462-60.837 67.112-60.744Q66.763-60.650 66.376-60.650Q65.798-60.650 65.399-60.904Q65.329-60.779 65.280-60.722Q65.231-60.666 65.126-60.650L65.056-60.650Q64.841-60.673 64.817-60.888M69.677-61.794L69.677-63.576L68.927-63.576Q68.727-63.599 68.677-63.818L68.677-63.904Q68.727-64.115 68.927-64.138L69.677-64.138L69.677-64.888Q69.727-65.095 69.927-65.123L70.071-65.123Q70.267-65.095 70.317-64.888L70.317-64.138L71.677-64.138Q71.868-64.119 71.927-63.904L71.927-63.818Q71.872-63.599 71.677-63.576L70.317-63.576L70.317-61.826Q70.317-61.209 70.892-61.209Q71.142-61.209 71.306-61.394Q71.470-61.580 71.470-61.826Q71.470-61.919 71.542-61.990Q71.614-62.060 71.716-62.072L71.860-62.072Q72.059-62.048 72.110-61.841L72.110-61.794Q72.110-61.470 71.927-61.207Q71.743-60.943 71.450-60.796Q71.157-60.650 70.837-60.650Q70.325-60.650 70.001-60.960Q69.677-61.271 69.677-61.794M76.235-62.177L73.794-62.177Q73.849-61.900 74.046-61.677Q74.243-61.455 74.520-61.332Q74.798-61.209 75.083-61.209Q75.556-61.209 75.778-61.498Q75.786-61.509 75.843-61.615Q75.899-61.720 75.948-61.763Q75.997-61.806 76.091-61.818L76.235-61.818Q76.427-61.798 76.485-61.584L76.485-61.529Q76.419-61.228 76.188-61.031Q75.958-60.834 75.645-60.742Q75.333-60.650 75.028-60.650Q74.544-60.650 74.104-60.878Q73.665-61.107 73.397-61.507Q73.130-61.908 73.130-62.400L73.130-62.459Q73.130-62.927 73.376-63.330Q73.622-63.732 74.030-63.966Q74.438-64.201 74.907-64.201Q75.411-64.201 75.765-63.978Q76.118-63.755 76.302-63.367Q76.485-62.978 76.485-62.474L76.485-62.416Q76.427-62.201 76.235-62.177M73.802-62.728L75.829-62.728Q75.782-63.138 75.544-63.390Q75.306-63.642 74.907-63.642Q74.513-63.642 74.206-63.380Q73.899-63.119 73.802-62.728M77.192-60.927L77.192-61.017Q77.251-61.224 77.442-61.248L78.153-61.248L78.153-63.576L77.442-63.576Q77.247-63.599 77.192-63.818L77.192-63.904Q77.251-64.115 77.442-64.138L78.544-64.138Q78.743-64.119 78.794-63.904L78.794-63.576Q79.056-63.861 79.411-64.019Q79.767-64.177 80.153-64.177Q80.446-64.177 80.681-64.043Q80.915-63.908 80.915-63.642Q80.915-63.474 80.806-63.357Q80.696-63.240 80.528-63.240Q80.376-63.240 80.261-63.351Q80.145-63.462 80.145-63.619Q79.770-63.619 79.456-63.418Q79.142-63.216 78.968-62.882Q78.794-62.548 78.794-62.169L78.794-61.248L79.739-61.248Q79.946-61.224 79.985-61.017L79.985-60.927Q79.946-60.712 79.739-60.689L77.442-60.689Q77.251-60.712 77.192-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M85.817-60.927L85.817-61.017Q85.868-61.224 86.063-61.248L86.946-61.248L86.946-63.576L86.091-63.576Q85.892-63.599 85.841-63.818L85.841-63.904Q85.892-64.115 86.091-64.138L86.946-64.138L86.946-64.591Q86.946-65.056 87.352-65.337Q87.759-65.619 88.239-65.619Q88.552-65.619 88.796-65.498Q89.040-65.376 89.040-65.095Q89.040-64.931 88.931-64.814Q88.821-64.697 88.657-64.697Q88.509-64.697 88.388-64.802Q88.267-64.908 88.267-65.056L88.184-65.056Q88.032-65.056 87.895-64.996Q87.759-64.935 87.673-64.820Q87.587-64.705 87.587-64.560L87.587-64.138L88.618-64.138Q88.813-64.119 88.864-63.904L88.864-63.818Q88.813-63.599 88.618-63.576L87.587-63.576L87.587-61.248L88.466-61.248Q88.661-61.224 88.712-61.017L88.712-60.927Q88.661-60.712 88.466-60.689L86.063-60.689Q85.868-60.712 85.817-60.927M90.360-60.927L90.360-61.017Q90.411-61.224 90.606-61.248L91.645-61.248L91.645-63.576L90.673-63.576Q90.474-63.599 90.423-63.818L90.423-63.904Q90.474-64.115 90.673-64.138L92.040-64.138Q92.235-64.119 92.286-63.904L92.286-61.248L93.200-61.248Q93.395-61.224 93.446-61.017L93.446-60.927Q93.395-60.712 93.200-60.689L90.606-60.689Q90.411-60.712 90.360-60.927M91.392-65.115L91.392-65.169Q91.392-65.341 91.528-65.462Q91.665-65.584 91.841-65.584Q92.013-65.584 92.149-65.462Q92.286-65.341 92.286-65.169L92.286-65.115Q92.286-64.939 92.149-64.818Q92.013-64.697 91.841-64.697Q91.665-64.697 91.528-64.818Q91.392-64.939 91.392-65.115M94.438-60.927L94.438-61.017Q94.489-61.224 94.684-61.248L95.790-61.248L95.790-65.017L94.684-65.017Q94.489-65.041 94.438-65.255L94.438-65.345Q94.489-65.552 94.684-65.576L96.181-65.576Q96.372-65.552 96.431-65.345L96.431-61.248L97.532-61.248Q97.731-61.224 97.782-61.017L97.782-60.927Q97.731-60.712 97.532-60.689L94.684-60.689Q94.489-60.712 94.438-60.927M101.747-62.177L99.306-62.177Q99.360-61.900 99.558-61.677Q99.755-61.455 100.032-61.332Q100.309-61.209 100.595-61.209Q101.067-61.209 101.290-61.498Q101.298-61.509 101.354-61.615Q101.411-61.720 101.460-61.763Q101.509-61.806 101.602-61.818L101.747-61.818Q101.938-61.798 101.997-61.584L101.997-61.529Q101.931-61.228 101.700-61.031Q101.470-60.834 101.157-60.742Q100.845-60.650 100.540-60.650Q100.056-60.650 99.616-60.878Q99.177-61.107 98.909-61.507Q98.642-61.908 98.642-62.400L98.642-62.459Q98.642-62.927 98.888-63.330Q99.134-63.732 99.542-63.966Q99.950-64.201 100.419-64.201Q100.923-64.201 101.276-63.978Q101.630-63.755 101.813-63.367Q101.997-62.978 101.997-62.474L101.997-62.416Q101.938-62.201 101.747-62.177M99.313-62.728L101.341-62.728Q101.294-63.138 101.056-63.390Q100.817-63.642 100.419-63.642Q100.024-63.642 99.718-63.380Q99.411-63.119 99.313-62.728M103.067-60.888L103.067-61.802Q103.095-62.009 103.306-62.033L103.474-62.033Q103.638-62.009 103.696-61.849Q103.899-61.209 104.626-61.209Q104.833-61.209 105.061-61.244Q105.290-61.279 105.458-61.394Q105.626-61.509 105.626-61.712Q105.626-61.923 105.403-62.037Q105.181-62.150 104.907-62.193L104.208-62.306Q103.067-62.517 103.067-63.240Q103.067-63.529 103.212-63.718Q103.356-63.908 103.597-64.015Q103.837-64.123 104.093-64.162Q104.349-64.201 104.626-64.201Q104.876-64.201 105.069-64.171Q105.263-64.142 105.427-64.064Q105.505-64.181 105.634-64.201L105.712-64.201Q105.809-64.189 105.872-64.126Q105.934-64.064 105.946-63.970L105.946-63.263Q105.934-63.169 105.872-63.103Q105.809-63.037 105.712-63.025L105.544-63.025Q105.450-63.037 105.384-63.103Q105.317-63.169 105.306-63.263Q105.306-63.642 104.610-63.642Q104.263-63.642 103.944-63.560Q103.626-63.478 103.626-63.232Q103.626-62.966 104.298-62.857L105.001-62.736Q105.485-62.654 105.835-62.406Q106.184-62.158 106.184-61.712Q106.184-61.322 105.948-61.080Q105.712-60.837 105.362-60.744Q105.013-60.650 104.626-60.650Q104.048-60.650 103.649-60.904Q103.579-60.779 103.530-60.722Q103.481-60.666 103.376-60.650L103.306-60.650Q103.091-60.673 103.067-60.888\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M112.814-61.611L112.814-62.826L111.600-62.826Q111.475-62.837 111.389-62.923Q111.303-63.009 111.303-63.138Q111.303-63.267 111.389-63.349Q111.475-63.431 111.600-63.443L112.814-63.443L112.814-64.666Q112.826-64.791 112.912-64.873Q112.998-64.955 113.127-64.955Q113.256-64.955 113.338-64.873Q113.420-64.791 113.432-64.666L113.432-63.443L114.646-63.443Q114.771-63.431 114.853-63.349Q114.936-63.267 114.936-63.138Q114.936-63.009 114.853-62.923Q114.771-62.837 114.646-62.826L113.432-62.826L113.432-61.611Q113.420-61.486 113.338-61.400Q113.256-61.314 113.127-61.314Q112.998-61.314 112.912-61.400Q112.826-61.486 112.814-61.611\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 61.306)\">\u003Cpath d=\"M121.072-60.689L119.889-60.689Q119.693-60.712 119.643-60.927L119.643-61.017Q119.693-61.224 119.889-61.248L120.162-61.248L120.162-65.017L119.889-65.017Q119.693-65.041 119.643-65.255L119.643-65.345Q119.693-65.552 119.889-65.576L121.459-65.576Q121.846-65.576 122.201-65.406Q122.557-65.236 122.779-64.925Q123.002-64.615 123.002-64.216Q123.002-63.990 122.920-63.781Q122.838-63.572 122.695-63.404Q122.553-63.236 122.361-63.115Q122.557-62.962 122.672-62.746Q122.787-62.529 122.787-62.291L122.787-61.712Q122.787-61.169 122.986-61.169Q123.033-61.169 123.059-61.298Q123.084-61.427 123.084-61.529Q123.135-61.736 123.330-61.759L123.475-61.759Q123.670-61.740 123.721-61.529L123.721-61.474Q123.721-61.142 123.516-60.877Q123.311-60.611 122.994-60.611Q122.580-60.611 122.363-60.918Q122.146-61.224 122.146-61.658L122.146-62.232Q122.146-62.521 121.937-62.689Q121.728-62.857 121.443-62.857L120.803-62.857L120.803-61.248L121.072-61.248Q121.271-61.224 121.322-61.017L121.322-60.927Q121.271-60.712 121.072-60.689M120.803-65.017L120.803-63.416L121.377-63.416Q121.611-63.416 121.838-63.511Q122.064-63.607 122.213-63.791Q122.361-63.974 122.361-64.216Q122.361-64.459 122.213-64.642Q122.064-64.826 121.840-64.921Q121.615-65.017 121.377-65.017L120.803-65.017M123.975-60.927L123.975-61.017Q124.033-61.228 124.225-61.248L124.447-61.248L125.400-65.431Q125.424-65.548 125.519-65.623Q125.615-65.697 125.728-65.697L126.002-65.697Q126.115-65.697 126.211-65.621Q126.307-65.544 126.330-65.431L127.279-61.248L127.506-61.248Q127.713-61.224 127.752-61.017L127.752-60.927Q127.701-60.712 127.506-60.689L126.424-60.689Q126.228-60.712 126.178-60.927L126.178-61.017Q126.228-61.224 126.424-61.248L126.623-61.248Q126.494-61.814 126.471-61.896L125.256-61.896Q125.213-61.712 125.103-61.248L125.303-61.248Q125.502-61.224 125.553-61.017L125.553-60.927Q125.502-60.712 125.303-60.689L124.225-60.689Q124.018-60.712 123.975-60.927M125.377-62.459L126.353-62.459Q125.873-64.591 125.873-64.935L125.865-64.935Q125.865-64.751 125.725-64.068Q125.584-63.384 125.377-62.459M128.103-60.927L128.103-61.017Q128.154-61.224 128.350-61.248L128.525-61.248L128.525-65.017L128.350-65.017Q128.154-65.041 128.103-65.255L128.103-65.345Q128.154-65.552 128.350-65.576L129.037-65.576Q129.166-65.576 129.266-65.500Q129.365-65.423 129.404-65.314Q129.435-65.209 129.658-64.519Q129.881-63.830 129.996-63.433Q130.111-63.037 130.111-62.962Q130.119-63.041 130.174-63.238Q130.228-63.435 130.342-63.806Q130.455-64.177 130.602-64.640Q130.748-65.103 130.814-65.314Q130.853-65.423 130.957-65.500Q131.060-65.576 131.182-65.576L131.869-65.576Q132.068-65.552 132.119-65.345L132.119-65.255Q132.068-65.041 131.869-65.017L131.693-65.017L131.693-61.248L131.869-61.248Q132.068-61.224 132.119-61.017L132.119-60.927Q132.068-60.712 131.869-60.689L130.990-60.689Q130.795-60.712 130.744-60.927L130.744-61.017Q130.795-61.224 130.990-61.248L131.166-61.248L131.166-64.935Q131.166-64.876 131.082-64.578Q130.998-64.279 130.894-63.947Q130.791-63.615 130.660-63.207Q130.529-62.798 130.463-62.584Q130.424-62.470 130.324-62.396Q130.225-62.322 130.111-62.322Q129.998-62.322 129.898-62.396Q129.799-62.470 129.760-62.584Q129.693-62.798 129.559-63.216Q129.424-63.634 129.287-64.078Q129.150-64.521 129.105-64.685Q129.060-64.849 129.053-64.935L129.053-61.248L129.228-61.248Q129.428-61.224 129.478-61.017L129.478-60.927Q129.428-60.712 129.228-60.689L128.350-60.689Q128.154-60.712 128.103-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564 40.318h108.12V17.556h-108.12Z\"\u002F>\u003Cg transform=\"translate(-6.375 92.07)\">\u003Cpath d=\"M0.726-60.927L0.726-61.017Q0.785-61.228 0.976-61.248L1.199-61.248L2.152-65.431Q2.176-65.548 2.271-65.623Q2.367-65.697 2.480-65.697L2.754-65.697Q2.867-65.697 2.963-65.621Q3.058-65.544 3.082-65.431L4.031-61.248L4.258-61.248Q4.465-61.224 4.504-61.017L4.504-60.927Q4.453-60.712 4.258-60.689L3.176-60.689Q2.980-60.712 2.930-60.927L2.930-61.017Q2.980-61.224 3.176-61.248L3.375-61.248Q3.246-61.814 3.223-61.896L2.008-61.896Q1.965-61.712 1.855-61.248L2.055-61.248Q2.254-61.224 2.305-61.017L2.305-60.927Q2.254-60.712 2.055-60.689L0.976-60.689Q0.769-60.712 0.726-60.927M2.129-62.459L3.105-62.459Q2.625-64.591 2.625-64.935L2.617-64.935Q2.617-64.751 2.476-64.068Q2.336-63.384 2.129-62.459M4.965-60.927L4.965-61.017Q5.023-61.224 5.215-61.248L5.582-61.248L5.582-65.017L5.215-65.017Q5.023-65.041 4.965-65.255L4.965-65.345Q5.023-65.552 5.215-65.576L6.742-65.576Q6.937-65.552 6.988-65.345L6.988-65.255Q6.937-65.041 6.742-65.017L6.223-65.017L6.223-61.248L8.055-61.248L8.055-61.888Q8.105-62.095 8.301-62.123L8.445-62.123Q8.644-62.095 8.695-61.888L8.695-60.927Q8.644-60.712 8.445-60.689L5.215-60.689Q5.023-60.712 4.965-60.927M9.555-62.291L9.555-65.017L9.246-65.017Q9.035-65.041 8.996-65.255L8.996-65.345Q9.035-65.552 9.246-65.576L10.508-65.576Q10.715-65.552 10.758-65.345L10.758-65.255Q10.715-65.041 10.508-65.017L10.195-65.017L10.195-62.345Q10.195-62.080 10.301-61.804Q10.406-61.529 10.619-61.349Q10.832-61.169 11.109-61.169Q11.391-61.169 11.600-61.349Q11.809-61.529 11.914-61.804Q12.019-62.080 12.019-62.345L12.019-65.017L11.707-65.017Q11.500-65.041 11.461-65.255L11.461-65.345Q11.500-65.552 11.707-65.576L12.973-65.576Q13.180-65.552 13.219-65.345L13.219-65.255Q13.180-65.041 12.973-65.017L12.660-65.017L12.660-62.291Q12.660-61.869 12.457-61.480Q12.254-61.091 11.896-60.851Q11.539-60.611 11.109-60.611Q10.457-60.611 10.006-61.123Q9.555-61.634 9.555-62.291\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 91.515)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 91.515)\">\u003Cpath d=\"M30.599-61.736Q30.599-61.912 30.716-62.033Q30.833-62.154 31.009-62.154Q31.091-62.154 31.167-62.123Q31.243-62.091 31.294-62.041Q31.345-61.990 31.376-61.910Q31.407-61.830 31.407-61.752Q31.407-61.619 31.325-61.505Q31.595-61.169 32.384-61.169Q32.809-61.169 33.151-61.435Q33.493-61.701 33.493-62.115Q33.493-62.388 33.327-62.607Q33.161-62.826 32.901-62.937Q32.642-63.048 32.368-63.048L31.903-63.048Q31.692-63.072 31.661-63.291L31.661-63.377Q31.692-63.580 31.903-63.611L32.431-63.650Q32.645-63.650 32.837-63.773Q33.028-63.896 33.142-64.099Q33.255-64.302 33.255-64.513Q33.255-64.787 32.972-64.941Q32.688-65.095 32.384-65.095Q31.821-65.095 31.583-64.904Q31.645-64.791 31.645-64.681Q31.645-64.509 31.532-64.396Q31.419-64.283 31.247-64.283Q31.071-64.283 30.956-64.406Q30.841-64.529 30.841-64.697Q30.841-65.224 31.313-65.441Q31.786-65.658 32.384-65.658Q32.724-65.658 33.079-65.527Q33.434-65.396 33.665-65.138Q33.895-64.880 33.895-64.513Q33.895-64.169 33.727-63.865Q33.559-63.560 33.263-63.361Q33.634-63.181 33.884-62.845Q34.134-62.509 34.134-62.115Q34.134-61.669 33.880-61.328Q33.626-60.986 33.224-60.798Q32.821-60.611 32.384-60.611Q32.099-60.611 31.794-60.666Q31.489-60.720 31.214-60.847Q30.938-60.974 30.768-61.197Q30.599-61.419 30.599-61.736M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 91.515)\">\u003Cpath d=\"M47.192-60.927L47.192-61.017Q47.243-61.228 47.438-61.248L47.638-61.248L47.638-63.576L47.438-63.576Q47.231-63.599 47.192-63.818L47.192-63.904Q47.243-64.119 47.438-64.138L47.919-64.138Q48.110-64.115 48.169-63.904Q48.489-64.177 48.903-64.177Q49.095-64.177 49.263-64.068Q49.431-63.959 49.505-63.787Q49.681-63.978 49.903-64.078Q50.126-64.177 50.368-64.177Q50.786-64.177 50.940-63.835Q51.095-63.494 51.095-63.025L51.095-61.248L51.294-61.248Q51.505-61.224 51.544-61.017L51.544-60.927Q51.493-60.712 51.294-60.689L50.477-60.689Q50.282-60.712 50.231-60.927L50.231-61.017Q50.282-61.224 50.477-61.248L50.567-61.248L50.567-62.994Q50.567-63.619 50.317-63.619Q49.985-63.619 49.808-63.308Q49.630-62.998 49.630-62.634L49.630-61.248L49.833-61.248Q50.040-61.224 50.079-61.017L50.079-60.927Q50.028-60.712 49.833-60.689L49.017-60.689Q48.817-60.712 48.767-60.927L48.767-61.017Q48.817-61.224 49.017-61.248L49.102-61.248L49.102-62.994Q49.102-63.619 48.856-63.619Q48.524-63.619 48.347-63.306Q48.169-62.994 48.169-62.634L48.169-61.248L48.368-61.248Q48.575-61.224 48.614-61.017L48.614-60.927Q48.563-60.709 48.368-60.689L47.438-60.689Q47.231-60.712 47.192-60.927M52.235-61.544L52.235-63.576L51.813-63.576Q51.606-63.599 51.563-63.818L51.563-63.904Q51.610-64.115 51.813-64.138L52.630-64.138Q52.825-64.115 52.876-63.904L52.876-61.576Q52.876-61.341 53.046-61.275Q53.216-61.209 53.501-61.209Q53.708-61.209 53.903-61.285Q54.099-61.361 54.224-61.511Q54.349-61.662 54.349-61.873L54.349-63.576L53.927-63.576Q53.716-63.599 53.677-63.818L53.677-63.904Q53.716-64.115 53.927-64.138L54.739-64.138Q54.938-64.115 54.989-63.904L54.989-61.248L55.415-61.248Q55.622-61.224 55.661-61.017L55.661-60.927Q55.622-60.712 55.415-60.689L54.599-60.689Q54.399-60.712 54.349-60.912Q53.946-60.650 53.438-60.650Q53.204-60.650 52.989-60.691Q52.774-60.732 52.608-60.834Q52.442-60.935 52.339-61.113Q52.235-61.291 52.235-61.544M55.997-60.927L55.997-61.017Q56.036-61.224 56.243-61.248L56.649-61.248L57.579-62.466L56.708-63.576L56.290-63.576Q56.095-63.595 56.044-63.818L56.044-63.904Q56.095-64.115 56.290-64.138L57.450-64.138Q57.649-64.115 57.700-63.904L57.700-63.818Q57.649-63.599 57.450-63.576L57.341-63.576L57.837-62.919L58.313-63.576L58.196-63.576Q57.997-63.599 57.946-63.818L57.946-63.904Q57.997-64.115 58.196-64.138L59.356-64.138Q59.552-64.119 59.602-63.904L59.602-63.818Q59.552-63.599 59.356-63.576L58.946-63.576L58.099-62.466L59.059-61.248L59.466-61.248Q59.665-61.224 59.716-61.017L59.716-60.927Q59.677-60.712 59.466-60.689L58.313-60.689Q58.106-60.712 58.067-60.927L58.067-61.017Q58.106-61.224 58.313-61.248L58.442-61.248L57.837-62.103L57.251-61.248L57.395-61.248Q57.602-61.224 57.642-61.017L57.642-60.927Q57.602-60.712 57.395-60.689L56.243-60.689Q56.048-60.709 55.997-60.927M63.497-62.177L61.056-62.177Q61.110-61.900 61.308-61.677Q61.505-61.455 61.782-61.332Q62.059-61.209 62.345-61.209Q62.817-61.209 63.040-61.498Q63.048-61.509 63.104-61.615Q63.161-61.720 63.210-61.763Q63.259-61.806 63.352-61.818L63.497-61.818Q63.688-61.798 63.747-61.584L63.747-61.529Q63.681-61.228 63.450-61.031Q63.220-60.834 62.907-60.742Q62.595-60.650 62.290-60.650Q61.806-60.650 61.366-60.878Q60.927-61.107 60.659-61.507Q60.392-61.908 60.392-62.400L60.392-62.459Q60.392-62.927 60.638-63.330Q60.884-63.732 61.292-63.966Q61.700-64.201 62.169-64.201Q62.673-64.201 63.026-63.978Q63.380-63.755 63.563-63.367Q63.747-62.978 63.747-62.474L63.747-62.416Q63.688-62.201 63.497-62.177M61.063-62.728L63.091-62.728Q63.044-63.138 62.806-63.390Q62.567-63.642 62.169-63.642Q61.774-63.642 61.468-63.380Q61.161-63.119 61.063-62.728M64.817-60.888L64.817-61.802Q64.845-62.009 65.056-62.033L65.224-62.033Q65.388-62.009 65.446-61.849Q65.649-61.209 66.376-61.209Q66.583-61.209 66.811-61.244Q67.040-61.279 67.208-61.394Q67.376-61.509 67.376-61.712Q67.376-61.923 67.153-62.037Q66.931-62.150 66.657-62.193L65.958-62.306Q64.817-62.517 64.817-63.240Q64.817-63.529 64.962-63.718Q65.106-63.908 65.347-64.015Q65.587-64.123 65.843-64.162Q66.099-64.201 66.376-64.201Q66.626-64.201 66.819-64.171Q67.013-64.142 67.177-64.064Q67.255-64.181 67.384-64.201L67.462-64.201Q67.559-64.189 67.622-64.126Q67.684-64.064 67.696-63.970L67.696-63.263Q67.684-63.169 67.622-63.103Q67.559-63.037 67.462-63.025L67.294-63.025Q67.200-63.037 67.134-63.103Q67.067-63.169 67.056-63.263Q67.056-63.642 66.360-63.642Q66.013-63.642 65.694-63.560Q65.376-63.478 65.376-63.232Q65.376-62.966 66.048-62.857L66.751-62.736Q67.235-62.654 67.585-62.406Q67.934-62.158 67.934-61.712Q67.934-61.322 67.698-61.080Q67.462-60.837 67.112-60.744Q66.763-60.650 66.376-60.650Q65.798-60.650 65.399-60.904Q65.329-60.779 65.280-60.722Q65.231-60.666 65.126-60.650L65.056-60.650Q64.841-60.673 64.817-60.888M70.196-59.576Q70.083-59.576 69.993-59.666Q69.903-59.755 69.903-59.865Q69.903-60.041 70.095-60.115Q70.313-60.166 70.485-60.324Q70.657-60.482 70.724-60.705Q70.700-60.705 70.669-60.689L70.606-60.689Q70.376-60.689 70.210-60.851Q70.044-61.013 70.044-61.248Q70.044-61.482 70.208-61.642Q70.372-61.802 70.606-61.802Q70.817-61.802 70.981-61.681Q71.145-61.560 71.235-61.367Q71.325-61.173 71.325-60.962Q71.325-60.486 71.026-60.097Q70.727-59.709 70.263-59.584Q70.239-59.576 70.196-59.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 91.515)\">\u003Cpath d=\"M78.860-60.650Q78.395-60.650 78.030-60.900Q77.665-61.150 77.460-61.554Q77.255-61.959 77.255-62.416Q77.255-62.759 77.380-63.080Q77.505-63.400 77.737-63.650Q77.970-63.900 78.274-64.039Q78.579-64.177 78.934-64.177Q79.446-64.177 79.852-63.857L79.852-65.017L79.431-65.017Q79.220-65.041 79.181-65.255L79.181-65.345Q79.220-65.552 79.431-65.576L80.243-65.576Q80.442-65.552 80.493-65.345L80.493-61.248L80.919-61.248Q81.126-61.224 81.165-61.017L81.165-60.927Q81.126-60.712 80.919-60.689L80.102-60.689Q79.903-60.712 79.852-60.927L79.852-61.056Q79.657-60.865 79.395-60.757Q79.134-60.650 78.860-60.650M78.899-61.209Q79.259-61.209 79.511-61.478Q79.763-61.748 79.852-62.123L79.852-62.955Q79.794-63.142 79.667-63.293Q79.540-63.443 79.362-63.531Q79.184-63.619 78.989-63.619Q78.681-63.619 78.431-63.449Q78.181-63.279 78.036-62.994Q77.892-62.709 77.892-62.408Q77.892-61.959 78.177-61.584Q78.462-61.209 78.899-61.209M84.755-62.177L82.313-62.177Q82.368-61.900 82.565-61.677Q82.763-61.455 83.040-61.332Q83.317-61.209 83.602-61.209Q84.075-61.209 84.298-61.498Q84.306-61.509 84.362-61.615Q84.419-61.720 84.468-61.763Q84.517-61.806 84.610-61.818L84.755-61.818Q84.946-61.798 85.005-61.584L85.005-61.529Q84.938-61.228 84.708-61.031Q84.477-60.834 84.165-60.742Q83.852-60.650 83.548-60.650Q83.063-60.650 82.624-60.878Q82.184-61.107 81.917-61.507Q81.649-61.908 81.649-62.400L81.649-62.459Q81.649-62.927 81.895-63.330Q82.142-63.732 82.550-63.966Q82.958-64.201 83.427-64.201Q83.931-64.201 84.284-63.978Q84.638-63.755 84.821-63.367Q85.005-62.978 85.005-62.474L85.005-62.416Q84.946-62.201 84.755-62.177M82.321-62.728L84.349-62.728Q84.302-63.138 84.063-63.390Q83.825-63.642 83.427-63.642Q83.032-63.642 82.726-63.380Q82.419-63.119 82.321-62.728M86.048-62.416Q86.048-62.896 86.292-63.310Q86.536-63.724 86.952-63.962Q87.368-64.201 87.849-64.201Q88.403-64.201 88.782-64.091Q89.161-63.982 89.161-63.576Q89.161-63.408 89.048-63.285Q88.934-63.162 88.763-63.162Q88.591-63.162 88.472-63.277Q88.352-63.392 88.352-63.560L88.352-63.619Q88.192-63.642 87.856-63.642Q87.528-63.642 87.261-63.472Q86.993-63.302 86.841-63.019Q86.688-62.736 86.688-62.416Q86.688-62.095 86.860-61.814Q87.032-61.533 87.317-61.371Q87.602-61.209 87.931-61.209Q88.243-61.209 88.370-61.312Q88.497-61.416 88.614-61.605Q88.731-61.794 88.849-61.810L89.017-61.810Q89.122-61.798 89.186-61.730Q89.251-61.662 89.251-61.560Q89.251-61.513 89.231-61.474Q89.122-61.181 88.919-61.002Q88.716-60.822 88.440-60.736Q88.165-60.650 87.849-60.650Q87.364-60.650 86.948-60.888Q86.532-61.127 86.290-61.529Q86.048-61.931 86.048-62.416M91.856-60.650Q91.384-60.650 90.999-60.894Q90.614-61.138 90.392-61.548Q90.169-61.959 90.169-62.416Q90.169-62.759 90.294-63.082Q90.419-63.404 90.649-63.658Q90.880-63.912 91.186-64.056Q91.493-64.201 91.856-64.201Q92.220-64.201 92.532-64.054Q92.845-63.908 93.067-63.662Q93.290-63.416 93.417-63.095Q93.544-62.775 93.544-62.416Q93.544-61.959 93.319-61.546Q93.095-61.134 92.710-60.892Q92.325-60.650 91.856-60.650M91.856-61.209Q92.321-61.209 92.612-61.603Q92.903-61.998 92.903-62.482Q92.903-62.775 92.768-63.043Q92.634-63.310 92.393-63.476Q92.153-63.642 91.856-63.642Q91.552-63.642 91.313-63.476Q91.075-63.310 90.940-63.043Q90.806-62.775 90.806-62.482Q90.806-62.002 91.099-61.605Q91.392-61.209 91.856-61.209M95.845-60.650Q95.380-60.650 95.015-60.900Q94.649-61.150 94.444-61.554Q94.239-61.959 94.239-62.416Q94.239-62.759 94.364-63.080Q94.489-63.400 94.722-63.650Q94.954-63.900 95.259-64.039Q95.563-64.177 95.919-64.177Q96.431-64.177 96.837-63.857L96.837-65.017L96.415-65.017Q96.204-65.041 96.165-65.255L96.165-65.345Q96.204-65.552 96.415-65.576L97.227-65.576Q97.427-65.552 97.477-65.345L97.477-61.248L97.903-61.248Q98.110-61.224 98.149-61.017L98.149-60.927Q98.110-60.712 97.903-60.689L97.087-60.689Q96.888-60.712 96.837-60.927L96.837-61.056Q96.642-60.865 96.380-60.757Q96.118-60.650 95.845-60.650M95.884-61.209Q96.243-61.209 96.495-61.478Q96.747-61.748 96.837-62.123L96.837-62.955Q96.778-63.142 96.651-63.293Q96.524-63.443 96.347-63.531Q96.169-63.619 95.974-63.619Q95.665-63.619 95.415-63.449Q95.165-63.279 95.020-62.994Q94.876-62.709 94.876-62.408Q94.876-61.959 95.161-61.584Q95.446-61.209 95.884-61.209M101.739-62.177L99.298-62.177Q99.352-61.900 99.550-61.677Q99.747-61.455 100.024-61.332Q100.302-61.209 100.587-61.209Q101.059-61.209 101.282-61.498Q101.290-61.509 101.347-61.615Q101.403-61.720 101.452-61.763Q101.501-61.806 101.595-61.818L101.739-61.818Q101.931-61.798 101.989-61.584L101.989-61.529Q101.923-61.228 101.692-61.031Q101.462-60.834 101.149-60.742Q100.837-60.650 100.532-60.650Q100.048-60.650 99.608-60.878Q99.169-61.107 98.901-61.507Q98.634-61.908 98.634-62.400L98.634-62.459Q98.634-62.927 98.880-63.330Q99.126-63.732 99.534-63.966Q99.942-64.201 100.411-64.201Q100.915-64.201 101.268-63.978Q101.622-63.755 101.806-63.367Q101.989-62.978 101.989-62.474L101.989-62.416Q101.931-62.201 101.739-62.177M99.306-62.728L101.333-62.728Q101.286-63.138 101.048-63.390Q100.809-63.642 100.411-63.642Q100.017-63.642 99.710-63.380Q99.403-63.119 99.306-62.728M102.696-60.927L102.696-61.017Q102.755-61.224 102.946-61.248L103.657-61.248L103.657-63.576L102.946-63.576Q102.751-63.599 102.696-63.818L102.696-63.904Q102.755-64.115 102.946-64.138L104.048-64.138Q104.247-64.119 104.298-63.904L104.298-63.576Q104.559-63.861 104.915-64.019Q105.270-64.177 105.657-64.177Q105.950-64.177 106.184-64.043Q106.419-63.908 106.419-63.642Q106.419-63.474 106.309-63.357Q106.200-63.240 106.032-63.240Q105.880-63.240 105.765-63.351Q105.649-63.462 105.649-63.619Q105.274-63.619 104.960-63.418Q104.645-63.216 104.472-62.882Q104.298-62.548 104.298-62.169L104.298-61.248L105.243-61.248Q105.450-61.224 105.489-61.017L105.489-60.927Q105.450-60.712 105.243-60.689L102.946-60.689Q102.755-60.712 102.696-60.927M107.306-60.888L107.306-61.802Q107.333-62.009 107.544-62.033L107.712-62.033Q107.876-62.009 107.934-61.849Q108.138-61.209 108.864-61.209Q109.071-61.209 109.300-61.244Q109.528-61.279 109.696-61.394Q109.864-61.509 109.864-61.712Q109.864-61.923 109.642-62.037Q109.419-62.150 109.145-62.193L108.446-62.306Q107.306-62.517 107.306-63.240Q107.306-63.529 107.450-63.718Q107.595-63.908 107.835-64.015Q108.075-64.123 108.331-64.162Q108.587-64.201 108.864-64.201Q109.114-64.201 109.308-64.171Q109.501-64.142 109.665-64.064Q109.743-64.181 109.872-64.201L109.950-64.201Q110.048-64.189 110.110-64.126Q110.173-64.064 110.184-63.970L110.184-63.263Q110.173-63.169 110.110-63.103Q110.048-63.037 109.950-63.025L109.782-63.025Q109.688-63.037 109.622-63.103Q109.556-63.169 109.544-63.263Q109.544-63.642 108.849-63.642Q108.501-63.642 108.183-63.560Q107.864-63.478 107.864-63.232Q107.864-62.966 108.536-62.857L109.239-62.736Q109.724-62.654 110.073-62.406Q110.423-62.158 110.423-61.712Q110.423-61.322 110.186-61.080Q109.950-60.837 109.601-60.744Q109.251-60.650 108.864-60.650Q108.286-60.650 107.888-60.904Q107.817-60.779 107.768-60.722Q107.720-60.666 107.614-60.650L107.544-60.650Q107.329-60.673 107.306-60.888M112.684-59.576Q112.571-59.576 112.481-59.666Q112.392-59.755 112.392-59.865Q112.392-60.041 112.583-60.115Q112.802-60.166 112.974-60.324Q113.145-60.482 113.212-60.705Q113.188-60.705 113.157-60.689L113.095-60.689Q112.864-60.689 112.698-60.851Q112.532-61.013 112.532-61.248Q112.532-61.482 112.696-61.642Q112.860-61.802 113.095-61.802Q113.306-61.802 113.470-61.681Q113.634-61.560 113.724-61.367Q113.813-61.173 113.813-60.962Q113.813-60.486 113.515-60.097Q113.216-59.709 112.751-59.584Q112.727-59.576 112.684-59.576\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 91.515)\">\u003Cpath d=\"M119.728-60.927L119.728-61.017Q119.787-61.228 119.978-61.248L120.201-61.248L121.154-65.431Q121.178-65.548 121.273-65.623Q121.369-65.697 121.482-65.697L121.756-65.697Q121.869-65.697 121.965-65.621Q122.061-65.544 122.084-65.431L123.033-61.248L123.260-61.248Q123.467-61.224 123.506-61.017L123.506-60.927Q123.455-60.712 123.260-60.689L122.178-60.689Q121.982-60.712 121.932-60.927L121.932-61.017Q121.982-61.224 122.178-61.248L122.377-61.248Q122.248-61.814 122.225-61.896L121.010-61.896Q120.967-61.712 120.857-61.248L121.057-61.248Q121.256-61.224 121.307-61.017L121.307-60.927Q121.256-60.712 121.057-60.689L119.978-60.689Q119.771-60.712 119.728-60.927M121.131-62.459L122.107-62.459Q121.627-64.591 121.627-64.935L121.619-64.935Q121.619-64.751 121.478-64.068Q121.338-63.384 121.131-62.459M123.967-60.927L123.967-61.017Q124.025-61.224 124.217-61.248L124.584-61.248L124.584-65.017L124.217-65.017Q124.025-65.041 123.967-65.255L123.967-65.345Q124.025-65.552 124.217-65.576L125.744-65.576Q125.939-65.552 125.990-65.345L125.990-65.255Q125.939-65.041 125.744-65.017L125.225-65.017L125.225-61.248L127.057-61.248L127.057-61.888Q127.107-62.095 127.303-62.123L127.447-62.123Q127.646-62.095 127.697-61.888L127.697-60.927Q127.646-60.712 127.447-60.689L124.217-60.689Q124.025-60.712 123.967-60.927M128.557-62.291L128.557-65.017L128.248-65.017Q128.037-65.041 127.998-65.255L127.998-65.345Q128.037-65.552 128.248-65.576L129.510-65.576Q129.717-65.552 129.760-65.345L129.760-65.255Q129.717-65.041 129.510-65.017L129.197-65.017L129.197-62.345Q129.197-62.080 129.303-61.804Q129.408-61.529 129.621-61.349Q129.834-61.169 130.111-61.169Q130.393-61.169 130.602-61.349Q130.810-61.529 130.916-61.804Q131.021-62.080 131.021-62.345L131.021-65.017L130.709-65.017Q130.502-65.041 130.463-65.255L130.463-65.345Q130.502-65.552 130.709-65.576L131.975-65.576Q132.182-65.552 132.221-65.345L132.221-65.255Q132.182-65.041 131.975-65.017L131.662-65.017L131.662-62.291Q131.662-61.869 131.459-61.480Q131.256-61.091 130.898-60.851Q130.541-60.611 130.111-60.611Q129.459-60.611 129.008-61.123Q128.557-61.634 128.557-62.291\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564 70.194h108.12V47.43h-108.12Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-23.375 121.057)\">\u003Cpath d=\"M2.762-60.611Q2.312-60.611 1.947-60.835Q1.582-61.060 1.328-61.443Q1.074-61.826 0.949-62.269Q0.824-62.712 0.824-63.138Q0.824-63.564 0.949-64.003Q1.074-64.443 1.328-64.826Q1.582-65.209 1.941-65.433Q2.301-65.658 2.762-65.658Q3.039-65.658 3.297-65.566Q3.555-65.474 3.769-65.306L3.902-65.544Q3.930-65.595 3.984-65.626Q4.039-65.658 4.098-65.658L4.176-65.658Q4.269-65.646 4.332-65.587Q4.394-65.529 4.406-65.423L4.406-64.095Q4.394-63.994 4.332-63.931Q4.269-63.869 4.176-63.857L4.008-63.857Q3.906-63.869 3.844-63.935Q3.781-64.001 3.769-64.095Q3.730-64.361 3.607-64.585Q3.484-64.810 3.281-64.953Q3.078-65.095 2.816-65.095Q2.484-65.095 2.232-64.912Q1.980-64.728 1.809-64.427Q1.637-64.126 1.551-63.785Q1.465-63.443 1.465-63.138Q1.465-62.834 1.549-62.492Q1.633-62.150 1.805-61.847Q1.976-61.544 2.234-61.357Q2.492-61.169 2.824-61.169Q3.207-61.169 3.488-61.443Q3.769-61.716 3.769-62.103Q3.797-62.314 4.008-62.337L4.176-62.337Q4.406-62.298 4.406-62.072Q4.406-61.755 4.269-61.484Q4.133-61.212 3.898-61.015Q3.664-60.818 3.373-60.714Q3.082-60.611 2.762-60.611M7.008-60.611Q6.559-60.611 6.193-60.835Q5.828-61.060 5.574-61.443Q5.320-61.826 5.195-62.269Q5.070-62.712 5.070-63.138Q5.070-63.564 5.195-64.003Q5.320-64.443 5.574-64.826Q5.828-65.209 6.187-65.433Q6.547-65.658 7.008-65.658Q7.285-65.658 7.543-65.566Q7.801-65.474 8.016-65.306L8.148-65.544Q8.176-65.595 8.230-65.626Q8.285-65.658 8.344-65.658L8.422-65.658Q8.516-65.646 8.578-65.587Q8.641-65.529 8.652-65.423L8.652-64.095Q8.641-63.994 8.578-63.931Q8.516-63.869 8.422-63.857L8.254-63.857Q8.152-63.869 8.090-63.935Q8.027-64.001 8.016-64.095Q7.976-64.361 7.853-64.585Q7.730-64.810 7.527-64.953Q7.324-65.095 7.062-65.095Q6.730-65.095 6.478-64.912Q6.226-64.728 6.055-64.427Q5.883-64.126 5.797-63.785Q5.711-63.443 5.711-63.138Q5.711-62.834 5.795-62.492Q5.879-62.150 6.051-61.847Q6.223-61.544 6.480-61.357Q6.738-61.169 7.070-61.169Q7.453-61.169 7.734-61.443Q8.016-61.716 8.016-62.103Q8.043-62.314 8.254-62.337L8.422-62.337Q8.652-62.298 8.652-62.072Q8.652-61.755 8.516-61.484Q8.379-61.212 8.144-61.015Q7.910-60.818 7.619-60.714Q7.328-60.611 7.008-60.611\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-23.375 121.057)\">\u003Cpath d=\"M13.469-60.927L13.469-61.017Q13.527-61.224 13.719-61.248L14.430-61.248L14.430-63.576L13.719-63.576Q13.523-63.599 13.469-63.818L13.469-63.904Q13.527-64.115 13.719-64.138L14.820-64.138Q15.019-64.119 15.070-63.904L15.070-63.576Q15.332-63.861 15.687-64.019Q16.043-64.177 16.430-64.177Q16.723-64.177 16.957-64.043Q17.191-63.908 17.191-63.642Q17.191-63.474 17.082-63.357Q16.973-63.240 16.805-63.240Q16.652-63.240 16.537-63.351Q16.422-63.462 16.422-63.619Q16.047-63.619 15.732-63.418Q15.418-63.216 15.244-62.882Q15.070-62.548 15.070-62.169L15.070-61.248L16.016-61.248Q16.223-61.224 16.262-61.017L16.262-60.927Q16.223-60.712 16.016-60.689L13.719-60.689Q13.527-60.712 13.469-60.927M21.004-62.177L18.562-62.177Q18.617-61.900 18.814-61.677Q19.012-61.455 19.289-61.332Q19.566-61.209 19.851-61.209Q20.324-61.209 20.547-61.498Q20.555-61.509 20.611-61.615Q20.668-61.720 20.717-61.763Q20.766-61.806 20.859-61.818L21.004-61.818Q21.195-61.798 21.254-61.584L21.254-61.529Q21.187-61.228 20.957-61.031Q20.726-60.834 20.414-60.742Q20.101-60.650 19.797-60.650Q19.312-60.650 18.873-60.878Q18.434-61.107 18.166-61.507Q17.898-61.908 17.898-62.400L17.898-62.459Q17.898-62.927 18.144-63.330Q18.391-63.732 18.799-63.966Q19.207-64.201 19.676-64.201Q20.180-64.201 20.533-63.978Q20.887-63.755 21.070-63.367Q21.254-62.978 21.254-62.474L21.254-62.416Q21.195-62.201 21.004-62.177M18.570-62.728L20.598-62.728Q20.551-63.138 20.312-63.390Q20.074-63.642 19.676-63.642Q19.281-63.642 18.975-63.380Q18.668-63.119 18.570-62.728M21.976-60.041Q21.976-60.341 22.125-60.603Q22.273-60.865 22.523-61.025Q22.340-61.279 22.340-61.599Q22.340-61.884 22.492-62.146Q22.242-62.470 22.242-62.888Q22.242-63.248 22.434-63.544Q22.625-63.841 22.943-64.009Q23.262-64.177 23.625-64.177Q23.832-64.177 24.035-64.117Q24.238-64.056 24.402-63.955Q24.785-64.216 25.258-64.216Q25.496-64.216 25.678-64.085Q25.859-63.955 25.859-63.728Q25.859-63.580 25.758-63.474Q25.656-63.369 25.500-63.369Q25.367-63.369 25.271-63.447Q25.176-63.525 25.144-63.650Q25-63.642 24.801-63.552Q25.004-63.240 25.004-62.888Q25.004-62.607 24.892-62.375Q24.781-62.142 24.586-61.964Q24.391-61.787 24.139-61.689Q23.887-61.591 23.625-61.591Q23.238-61.591 22.906-61.779Q22.894-61.779 22.885-61.707Q22.875-61.634 22.875-61.599Q22.875-61.478 22.941-61.371Q23.008-61.263 23.129-61.224Q23.144-61.228 23.158-61.230Q23.172-61.232 23.195-61.232Q23.211-61.232 23.242-61.224Q23.273-61.216 23.281-61.216L23.875-61.216Q24.656-61.216 25.197-60.974Q25.738-60.732 25.738-60.041Q25.738-59.740 25.559-59.513Q25.379-59.287 25.082-59.142Q24.785-58.998 24.465-58.931Q24.144-58.865 23.859-58.865Q23.469-58.865 23.027-58.988Q22.586-59.111 22.281-59.378Q21.976-59.646 21.976-60.041M22.516-60.048Q22.516-59.830 22.756-59.689Q22.996-59.548 23.320-59.482Q23.644-59.416 23.859-59.416Q24.074-59.416 24.398-59.482Q24.723-59.548 24.963-59.689Q25.203-59.830 25.203-60.048Q25.203-60.337 24.978-60.476Q24.754-60.615 24.473-60.648Q24.191-60.681 23.844-60.681L23.226-60.681Q23.043-60.681 22.881-60.601Q22.719-60.521 22.617-60.375Q22.516-60.228 22.516-60.048M23.625-62.146Q23.926-62.146 24.144-62.365Q24.363-62.584 24.363-62.888Q24.363-63.044 24.309-63.175Q24.254-63.306 24.148-63.412Q24.043-63.517 23.912-63.572Q23.781-63.627 23.625-63.627Q23.320-63.627 23.101-63.408Q22.883-63.189 22.883-62.888Q22.883-62.591 23.105-62.369Q23.328-62.146 23.625-62.146M26.601-60.927L26.601-61.017Q26.652-61.224 26.848-61.248L27.887-61.248L27.887-63.576L26.914-63.576Q26.715-63.599 26.664-63.818L26.664-63.904Q26.715-64.115 26.914-64.138L28.281-64.138Q28.476-64.119 28.527-63.904L28.527-61.248L29.441-61.248Q29.637-61.224 29.687-61.017L29.687-60.927Q29.637-60.712 29.441-60.689L26.848-60.689Q26.652-60.712 26.601-60.927M27.633-65.115L27.633-65.169Q27.633-65.341 27.769-65.462Q27.906-65.584 28.082-65.584Q28.254-65.584 28.391-65.462Q28.527-65.341 28.527-65.169L28.527-65.115Q28.527-64.939 28.391-64.818Q28.254-64.697 28.082-64.697Q27.906-64.697 27.769-64.818Q27.633-64.939 27.633-65.115M30.816-60.888L30.816-61.802Q30.844-62.009 31.055-62.033L31.223-62.033Q31.387-62.009 31.445-61.849Q31.648-61.209 32.375-61.209Q32.582-61.209 32.810-61.244Q33.039-61.279 33.207-61.394Q33.375-61.509 33.375-61.712Q33.375-61.923 33.152-62.037Q32.930-62.150 32.656-62.193L31.957-62.306Q30.816-62.517 30.816-63.240Q30.816-63.529 30.961-63.718Q31.105-63.908 31.346-64.015Q31.586-64.123 31.842-64.162Q32.098-64.201 32.375-64.201Q32.625-64.201 32.818-64.171Q33.012-64.142 33.176-64.064Q33.254-64.181 33.383-64.201L33.461-64.201Q33.559-64.189 33.621-64.126Q33.684-64.064 33.695-63.970L33.695-63.263Q33.684-63.169 33.621-63.103Q33.559-63.037 33.461-63.025L33.293-63.025Q33.199-63.037 33.133-63.103Q33.066-63.169 33.055-63.263Q33.055-63.642 32.359-63.642Q32.012-63.642 31.693-63.560Q31.375-63.478 31.375-63.232Q31.375-62.966 32.047-62.857L32.750-62.736Q33.234-62.654 33.584-62.406Q33.934-62.158 33.934-61.712Q33.934-61.322 33.697-61.080Q33.461-60.837 33.111-60.744Q32.762-60.650 32.375-60.650Q31.797-60.650 31.398-60.904Q31.328-60.779 31.279-60.722Q31.230-60.666 31.125-60.650L31.055-60.650Q30.840-60.673 30.816-60.888M35.676-61.794L35.676-63.576L34.926-63.576Q34.726-63.599 34.676-63.818L34.676-63.904Q34.726-64.115 34.926-64.138L35.676-64.138L35.676-64.888Q35.726-65.095 35.926-65.123L36.070-65.123Q36.266-65.095 36.316-64.888L36.316-64.138L37.676-64.138Q37.867-64.119 37.926-63.904L37.926-63.818Q37.871-63.599 37.676-63.576L36.316-63.576L36.316-61.826Q36.316-61.209 36.891-61.209Q37.141-61.209 37.305-61.394Q37.469-61.580 37.469-61.826Q37.469-61.919 37.541-61.990Q37.613-62.060 37.715-62.072L37.859-62.072Q38.059-62.048 38.109-61.841L38.109-61.794Q38.109-61.470 37.926-61.207Q37.742-60.943 37.449-60.796Q37.156-60.650 36.836-60.650Q36.324-60.650 36-60.960Q35.676-61.271 35.676-61.794M42.234-62.177L39.793-62.177Q39.848-61.900 40.045-61.677Q40.242-61.455 40.519-61.332Q40.797-61.209 41.082-61.209Q41.555-61.209 41.777-61.498Q41.785-61.509 41.842-61.615Q41.898-61.720 41.947-61.763Q41.996-61.806 42.090-61.818L42.234-61.818Q42.426-61.798 42.484-61.584L42.484-61.529Q42.418-61.228 42.187-61.031Q41.957-60.834 41.644-60.742Q41.332-60.650 41.027-60.650Q40.543-60.650 40.103-60.878Q39.664-61.107 39.396-61.507Q39.129-61.908 39.129-62.400L39.129-62.459Q39.129-62.927 39.375-63.330Q39.621-63.732 40.029-63.966Q40.437-64.201 40.906-64.201Q41.410-64.201 41.764-63.978Q42.117-63.755 42.301-63.367Q42.484-62.978 42.484-62.474L42.484-62.416Q42.426-62.201 42.234-62.177M39.801-62.728L41.828-62.728Q41.781-63.138 41.543-63.390Q41.305-63.642 40.906-63.642Q40.512-63.642 40.205-63.380Q39.898-63.119 39.801-62.728M43.191-60.927L43.191-61.017Q43.250-61.224 43.441-61.248L44.152-61.248L44.152-63.576L43.441-63.576Q43.246-63.599 43.191-63.818L43.191-63.904Q43.250-64.115 43.441-64.138L44.543-64.138Q44.742-64.119 44.793-63.904L44.793-63.576Q45.055-63.861 45.410-64.019Q45.766-64.177 46.152-64.177Q46.445-64.177 46.680-64.043Q46.914-63.908 46.914-63.642Q46.914-63.474 46.805-63.357Q46.695-63.240 46.527-63.240Q46.375-63.240 46.260-63.351Q46.144-63.462 46.144-63.619Q45.769-63.619 45.455-63.418Q45.141-63.216 44.967-62.882Q44.793-62.548 44.793-62.169L44.793-61.248L45.738-61.248Q45.945-61.224 45.984-61.017L45.984-60.927Q45.945-60.712 45.738-60.689L43.441-60.689Q43.250-60.712 43.191-60.927\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 121.057)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 121.057)\">\u003Cpath d=\"M30.599-61.736Q30.599-61.912 30.716-62.033Q30.833-62.154 31.009-62.154Q31.091-62.154 31.167-62.123Q31.243-62.091 31.294-62.041Q31.345-61.990 31.376-61.910Q31.407-61.830 31.407-61.752Q31.407-61.619 31.325-61.505Q31.595-61.169 32.384-61.169Q32.809-61.169 33.151-61.435Q33.493-61.701 33.493-62.115Q33.493-62.388 33.327-62.607Q33.161-62.826 32.901-62.937Q32.642-63.048 32.368-63.048L31.903-63.048Q31.692-63.072 31.661-63.291L31.661-63.377Q31.692-63.580 31.903-63.611L32.431-63.650Q32.645-63.650 32.837-63.773Q33.028-63.896 33.142-64.099Q33.255-64.302 33.255-64.513Q33.255-64.787 32.972-64.941Q32.688-65.095 32.384-65.095Q31.821-65.095 31.583-64.904Q31.645-64.791 31.645-64.681Q31.645-64.509 31.532-64.396Q31.419-64.283 31.247-64.283Q31.071-64.283 30.956-64.406Q30.841-64.529 30.841-64.697Q30.841-65.224 31.313-65.441Q31.786-65.658 32.384-65.658Q32.724-65.658 33.079-65.527Q33.434-65.396 33.665-65.138Q33.895-64.880 33.895-64.513Q33.895-64.169 33.727-63.865Q33.559-63.560 33.263-63.361Q33.634-63.181 33.884-62.845Q34.134-62.509 34.134-62.115Q34.134-61.669 33.880-61.328Q33.626-60.986 33.224-60.798Q32.821-60.611 32.384-60.611Q32.099-60.611 31.794-60.666Q31.489-60.720 31.214-60.847Q30.938-60.974 30.768-61.197Q30.599-61.419 30.599-61.736M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 121.057)\">\u003Cpath d=\"M47.696-60.927L47.696-61.017Q47.747-61.224 47.942-61.248L49.048-61.248L49.048-65.017L47.942-65.017Q47.747-65.041 47.696-65.255L47.696-65.345Q47.747-65.552 47.942-65.576L49.438-65.576Q49.630-65.552 49.688-65.345L49.688-61.248L50.790-61.248Q50.989-61.224 51.040-61.017L51.040-60.927Q50.989-60.712 50.790-60.689L47.942-60.689Q47.747-60.712 47.696-60.927M51.899-61.802Q51.899-62.248 52.313-62.505Q52.727-62.763 53.268-62.863Q53.809-62.962 54.317-62.970Q54.317-63.185 54.183-63.337Q54.048-63.490 53.841-63.566Q53.634-63.642 53.423-63.642Q53.079-63.642 52.919-63.619L52.919-63.560Q52.919-63.392 52.800-63.277Q52.681-63.162 52.517-63.162Q52.341-63.162 52.226-63.285Q52.110-63.408 52.110-63.576Q52.110-63.982 52.491-64.091Q52.872-64.201 53.431-64.201Q53.700-64.201 53.968-64.123Q54.235-64.044 54.460-63.894Q54.684-63.744 54.821-63.523Q54.958-63.302 54.958-63.025L54.958-61.306Q54.958-61.248 55.485-61.248Q55.681-61.228 55.731-61.017L55.731-60.927Q55.681-60.712 55.485-60.689L55.341-60.689Q54.997-60.689 54.768-60.736Q54.540-60.783 54.395-60.970Q53.934-60.650 53.227-60.650Q52.892-60.650 52.587-60.791Q52.282-60.931 52.091-61.193Q51.899-61.455 51.899-61.802M52.540-61.794Q52.540-61.521 52.782-61.365Q53.024-61.209 53.309-61.209Q53.528-61.209 53.761-61.267Q53.993-61.326 54.155-61.464Q54.317-61.603 54.317-61.826L54.317-62.416Q54.036-62.416 53.620-62.359Q53.204-62.302 52.872-62.164Q52.540-62.025 52.540-61.794M56.938-61.794L56.938-63.576L56.188-63.576Q55.989-63.599 55.938-63.818L55.938-63.904Q55.989-64.115 56.188-64.138L56.938-64.138L56.938-64.888Q56.989-65.095 57.188-65.123L57.333-65.123Q57.528-65.095 57.579-64.888L57.579-64.138L58.938-64.138Q59.130-64.119 59.188-63.904L59.188-63.818Q59.134-63.599 58.938-63.576L57.579-63.576L57.579-61.826Q57.579-61.209 58.153-61.209Q58.403-61.209 58.567-61.394Q58.731-61.580 58.731-61.826Q58.731-61.919 58.804-61.990Q58.876-62.060 58.977-62.072L59.122-62.072Q59.321-62.048 59.372-61.841L59.372-61.794Q59.372-61.470 59.188-61.207Q59.005-60.943 58.712-60.796Q58.419-60.650 58.099-60.650Q57.587-60.650 57.263-60.960Q56.938-61.271 56.938-61.794M60.544-62.416Q60.544-62.896 60.788-63.310Q61.032-63.724 61.448-63.962Q61.864-64.201 62.345-64.201Q62.899-64.201 63.278-64.091Q63.657-63.982 63.657-63.576Q63.657-63.408 63.544-63.285Q63.431-63.162 63.259-63.162Q63.087-63.162 62.968-63.277Q62.849-63.392 62.849-63.560L62.849-63.619Q62.688-63.642 62.352-63.642Q62.024-63.642 61.757-63.472Q61.489-63.302 61.337-63.019Q61.184-62.736 61.184-62.416Q61.184-62.095 61.356-61.814Q61.528-61.533 61.813-61.371Q62.099-61.209 62.427-61.209Q62.739-61.209 62.866-61.312Q62.993-61.416 63.110-61.605Q63.227-61.794 63.345-61.810L63.513-61.810Q63.618-61.798 63.683-61.730Q63.747-61.662 63.747-61.560Q63.747-61.513 63.727-61.474Q63.618-61.181 63.415-61.002Q63.212-60.822 62.936-60.736Q62.661-60.650 62.345-60.650Q61.860-60.650 61.444-60.888Q61.028-61.127 60.786-61.529Q60.544-61.931 60.544-62.416M64.302-60.927L64.302-61.017Q64.345-61.224 64.552-61.248L64.974-61.248L64.974-65.017L64.552-65.017Q64.345-65.041 64.302-65.255L64.302-65.345Q64.345-65.552 64.552-65.576L65.368-65.576Q65.563-65.552 65.614-65.345L65.614-63.794Q66.075-64.177 66.673-64.177Q67.020-64.177 67.259-64.037Q67.497-63.896 67.612-63.638Q67.727-63.380 67.727-63.025L67.727-61.248L68.153-61.248Q68.360-61.224 68.399-61.017L68.399-60.927Q68.360-60.712 68.153-60.689L66.759-60.689Q66.563-60.712 66.513-60.927L66.513-61.017Q66.563-61.228 66.759-61.248L67.087-61.248L67.087-62.994Q67.087-63.302 66.997-63.460Q66.907-63.619 66.614-63.619Q66.345-63.619 66.116-63.488Q65.888-63.357 65.751-63.128Q65.614-62.900 65.614-62.634L65.614-61.248L66.040-61.248Q66.247-61.224 66.286-61.017L66.286-60.927Q66.247-60.712 66.040-60.689L64.552-60.689Q64.345-60.712 64.302-60.927M71.989-62.177L69.548-62.177Q69.602-61.900 69.800-61.677Q69.997-61.455 70.274-61.332Q70.552-61.209 70.837-61.209Q71.309-61.209 71.532-61.498Q71.540-61.509 71.597-61.615Q71.653-61.720 71.702-61.763Q71.751-61.806 71.845-61.818L71.989-61.818Q72.181-61.798 72.239-61.584L72.239-61.529Q72.173-61.228 71.942-61.031Q71.712-60.834 71.399-60.742Q71.087-60.650 70.782-60.650Q70.298-60.650 69.858-60.878Q69.419-61.107 69.151-61.507Q68.884-61.908 68.884-62.400L68.884-62.459Q68.884-62.927 69.130-63.330Q69.376-63.732 69.784-63.966Q70.192-64.201 70.661-64.201Q71.165-64.201 71.518-63.978Q71.872-63.755 72.056-63.367Q72.239-62.978 72.239-62.474L72.239-62.416Q72.181-62.201 71.989-62.177M69.556-62.728L71.583-62.728Q71.536-63.138 71.298-63.390Q71.059-63.642 70.661-63.642Q70.267-63.642 69.960-63.380Q69.653-63.119 69.556-62.728M73.309-60.888L73.309-61.802Q73.337-62.009 73.548-62.033L73.716-62.033Q73.880-62.009 73.938-61.849Q74.142-61.209 74.868-61.209Q75.075-61.209 75.304-61.244Q75.532-61.279 75.700-61.394Q75.868-61.509 75.868-61.712Q75.868-61.923 75.645-62.037Q75.423-62.150 75.149-62.193L74.450-62.306Q73.309-62.517 73.309-63.240Q73.309-63.529 73.454-63.718Q73.599-63.908 73.839-64.015Q74.079-64.123 74.335-64.162Q74.591-64.201 74.868-64.201Q75.118-64.201 75.311-64.171Q75.505-64.142 75.669-64.064Q75.747-64.181 75.876-64.201L75.954-64.201Q76.052-64.189 76.114-64.126Q76.177-64.064 76.188-63.970L76.188-63.263Q76.177-63.169 76.114-63.103Q76.052-63.037 75.954-63.025L75.786-63.025Q75.692-63.037 75.626-63.103Q75.559-63.169 75.548-63.263Q75.548-63.642 74.852-63.642Q74.505-63.642 74.186-63.560Q73.868-63.478 73.868-63.232Q73.868-62.966 74.540-62.857L75.243-62.736Q75.727-62.654 76.077-62.406Q76.427-62.158 76.427-61.712Q76.427-61.322 76.190-61.080Q75.954-60.837 75.604-60.744Q75.255-60.650 74.868-60.650Q74.290-60.650 73.892-60.904Q73.821-60.779 73.772-60.722Q73.724-60.666 73.618-60.650L73.548-60.650Q73.333-60.673 73.309-60.888\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 121.057)\">\u003Cpath d=\"M83.063-61.611L83.063-62.826L81.849-62.826Q81.724-62.837 81.638-62.923Q81.552-63.009 81.552-63.138Q81.552-63.267 81.638-63.349Q81.724-63.431 81.849-63.443L83.063-63.443L83.063-64.666Q83.075-64.791 83.161-64.873Q83.247-64.955 83.376-64.955Q83.505-64.955 83.587-64.873Q83.669-64.791 83.681-64.666L83.681-63.443L84.895-63.443Q85.020-63.431 85.102-63.349Q85.184-63.267 85.184-63.138Q85.184-63.009 85.102-62.923Q85.020-62.837 84.895-62.826L83.681-62.826L83.681-61.611Q83.669-61.486 83.587-61.400Q83.505-61.314 83.376-61.314Q83.247-61.314 83.161-61.400Q83.075-61.486 83.063-61.611\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 121.057)\">\u003Cpath d=\"M90.306-62.416Q90.306-62.896 90.550-63.310Q90.794-63.724 91.210-63.962Q91.626-64.201 92.106-64.201Q92.661-64.201 93.040-64.091Q93.419-63.982 93.419-63.576Q93.419-63.408 93.306-63.285Q93.192-63.162 93.020-63.162Q92.849-63.162 92.729-63.277Q92.610-63.392 92.610-63.560L92.610-63.619Q92.450-63.642 92.114-63.642Q91.786-63.642 91.518-63.472Q91.251-63.302 91.099-63.019Q90.946-62.736 90.946-62.416Q90.946-62.095 91.118-61.814Q91.290-61.533 91.575-61.371Q91.860-61.209 92.188-61.209Q92.501-61.209 92.628-61.312Q92.755-61.416 92.872-61.605Q92.989-61.794 93.106-61.810L93.274-61.810Q93.380-61.798 93.444-61.730Q93.509-61.662 93.509-61.560Q93.509-61.513 93.489-61.474Q93.380-61.181 93.177-61.002Q92.974-60.822 92.698-60.736Q92.423-60.650 92.106-60.650Q91.622-60.650 91.206-60.888Q90.790-61.127 90.548-61.529Q90.306-61.931 90.306-62.416M94.442-60.927L94.442-61.017Q94.493-61.224 94.688-61.248L95.794-61.248L95.794-65.017L94.688-65.017Q94.493-65.041 94.442-65.255L94.442-65.345Q94.493-65.552 94.688-65.576L96.184-65.576Q96.376-65.552 96.434-65.345L96.434-61.248L97.536-61.248Q97.735-61.224 97.786-61.017L97.786-60.927Q97.735-60.712 97.536-60.689L94.688-60.689Q94.493-60.712 94.442-60.927M100.360-60.650Q99.888-60.650 99.503-60.894Q99.118-61.138 98.895-61.548Q98.673-61.959 98.673-62.416Q98.673-62.759 98.798-63.082Q98.923-63.404 99.153-63.658Q99.384-63.912 99.690-64.056Q99.997-64.201 100.360-64.201Q100.724-64.201 101.036-64.054Q101.349-63.908 101.571-63.662Q101.794-63.416 101.921-63.095Q102.048-62.775 102.048-62.416Q102.048-61.959 101.823-61.546Q101.599-61.134 101.214-60.892Q100.829-60.650 100.360-60.650M100.360-61.209Q100.825-61.209 101.116-61.603Q101.407-61.998 101.407-62.482Q101.407-62.775 101.272-63.043Q101.138-63.310 100.897-63.476Q100.657-63.642 100.360-63.642Q100.056-63.642 99.817-63.476Q99.579-63.310 99.444-63.043Q99.309-62.775 99.309-62.482Q99.309-62.002 99.602-61.605Q99.895-61.209 100.360-61.209M103.044-62.416Q103.044-62.896 103.288-63.310Q103.532-63.724 103.948-63.962Q104.364-64.201 104.845-64.201Q105.399-64.201 105.778-64.091Q106.157-63.982 106.157-63.576Q106.157-63.408 106.044-63.285Q105.931-63.162 105.759-63.162Q105.587-63.162 105.468-63.277Q105.349-63.392 105.349-63.560L105.349-63.619Q105.188-63.642 104.852-63.642Q104.524-63.642 104.257-63.472Q103.989-63.302 103.837-63.019Q103.684-62.736 103.684-62.416Q103.684-62.095 103.856-61.814Q104.028-61.533 104.313-61.371Q104.599-61.209 104.927-61.209Q105.239-61.209 105.366-61.312Q105.493-61.416 105.610-61.605Q105.727-61.794 105.845-61.810L106.013-61.810Q106.118-61.798 106.183-61.730Q106.247-61.662 106.247-61.560Q106.247-61.513 106.227-61.474Q106.118-61.181 105.915-61.002Q105.712-60.822 105.436-60.736Q105.161-60.650 104.845-60.650Q104.360-60.650 103.944-60.888Q103.528-61.127 103.286-61.529Q103.044-61.931 103.044-62.416M106.876-60.927L106.876-61.017Q106.927-61.224 107.122-61.248L107.587-61.248L107.587-65.017L107.122-65.017Q106.927-65.041 106.876-65.255L106.876-65.345Q106.927-65.552 107.122-65.576L107.868-65.576Q108.063-65.556 108.114-65.345L108.114-62.521L109.259-63.576L108.962-63.576Q108.755-63.599 108.716-63.818L108.716-63.904Q108.755-64.115 108.962-64.138L110.411-64.138Q110.614-64.115 110.661-63.904L110.661-63.818Q110.618-63.599 110.411-63.576L110.044-63.576L109.099-62.712L110.251-61.248L110.587-61.248Q110.794-61.224 110.837-61.017L110.837-60.927Q110.794-60.712 110.587-60.689L109.419-60.689Q109.224-60.712 109.173-60.927L109.173-61.017Q109.224-61.224 109.419-61.248L109.579-61.248L108.716-62.353L108.114-61.802L108.114-61.248L108.579-61.248Q108.770-61.224 108.829-61.017L108.829-60.927Q108.770-60.712 108.579-60.689L107.122-60.689Q106.927-60.712 106.876-60.927M111.595-60.927L111.595-61.017Q111.645-61.224 111.841-61.248L112.880-61.248L112.880-63.576L111.907-63.576Q111.708-63.599 111.657-63.818L111.657-63.904Q111.708-64.115 111.907-64.138L113.274-64.138Q113.470-64.119 113.520-63.904L113.520-61.248L114.434-61.248Q114.630-61.224 114.681-61.017L114.681-60.927Q114.630-60.712 114.434-60.689L111.841-60.689Q111.645-60.712 111.595-60.927M112.626-65.115L112.626-65.169Q112.626-65.341 112.763-65.462Q112.899-65.584 113.075-65.584Q113.247-65.584 113.384-65.462Q113.520-65.341 113.520-65.169L113.520-65.115Q113.520-64.939 113.384-64.818Q113.247-64.697 113.075-64.697Q112.899-64.697 112.763-64.818Q112.626-64.939 112.626-65.115M115.294-60.927L115.294-61.017Q115.337-61.224 115.544-61.248L115.966-61.248L115.966-63.576L115.544-63.576Q115.337-63.599 115.294-63.818L115.294-63.904Q115.341-64.115 115.544-64.138L116.360-64.138Q116.556-64.115 116.606-63.904L116.606-63.818L116.599-63.794Q116.825-63.974 117.099-64.076Q117.372-64.177 117.665-64.177Q118.013-64.177 118.251-64.037Q118.489-63.896 118.604-63.638Q118.720-63.380 118.720-63.025L118.720-61.248L119.145-61.248Q119.352-61.224 119.392-61.017L119.392-60.927Q119.352-60.712 119.145-60.689L117.751-60.689Q117.556-60.712 117.505-60.927L117.505-61.017Q117.556-61.228 117.751-61.248L118.079-61.248L118.079-62.994Q118.079-63.302 117.989-63.460Q117.899-63.619 117.606-63.619Q117.337-63.619 117.108-63.488Q116.880-63.357 116.743-63.128Q116.606-62.900 116.606-62.634L116.606-61.248L117.032-61.248Q117.239-61.224 117.278-61.017L117.278-60.927Q117.239-60.712 117.032-60.689L115.544-60.689Q115.337-60.712 115.294-60.927M119.708-60.041Q119.708-60.341 119.856-60.603Q120.005-60.865 120.255-61.025Q120.071-61.279 120.071-61.599Q120.071-61.884 120.224-62.146Q119.974-62.470 119.974-62.888Q119.974-63.248 120.165-63.544Q120.356-63.841 120.675-64.009Q120.993-64.177 121.356-64.177Q121.563-64.177 121.767-64.117Q121.970-64.056 122.134-63.955Q122.517-64.216 122.989-64.216Q123.227-64.216 123.409-64.085Q123.591-63.955 123.591-63.728Q123.591-63.580 123.489-63.474Q123.388-63.369 123.231-63.369Q123.099-63.369 123.003-63.447Q122.907-63.525 122.876-63.650Q122.731-63.642 122.532-63.552Q122.735-63.240 122.735-62.888Q122.735-62.607 122.624-62.375Q122.513-62.142 122.317-61.964Q122.122-61.787 121.870-61.689Q121.618-61.591 121.356-61.591Q120.970-61.591 120.638-61.779Q120.626-61.779 120.616-61.707Q120.606-61.634 120.606-61.599Q120.606-61.478 120.673-61.371Q120.739-61.263 120.860-61.224Q120.876-61.228 120.890-61.230Q120.903-61.232 120.927-61.232Q120.942-61.232 120.974-61.224Q121.005-61.216 121.013-61.216L121.606-61.216Q122.388-61.216 122.929-60.974Q123.470-60.732 123.470-60.041Q123.470-59.740 123.290-59.513Q123.110-59.287 122.813-59.142Q122.517-58.998 122.196-58.931Q121.876-58.865 121.591-58.865Q121.200-58.865 120.759-58.988Q120.317-59.111 120.013-59.378Q119.708-59.646 119.708-60.041M120.247-60.048Q120.247-59.830 120.487-59.689Q120.727-59.548 121.052-59.482Q121.376-59.416 121.591-59.416Q121.806-59.416 122.130-59.482Q122.454-59.548 122.694-59.689Q122.934-59.830 122.934-60.048Q122.934-60.337 122.710-60.476Q122.485-60.615 122.204-60.648Q121.923-60.681 121.575-60.681L120.958-60.681Q120.774-60.681 120.612-60.601Q120.450-60.521 120.349-60.375Q120.247-60.228 120.247-60.048M121.356-62.146Q121.657-62.146 121.876-62.365Q122.095-62.584 122.095-62.888Q122.095-63.044 122.040-63.175Q121.985-63.306 121.880-63.412Q121.774-63.517 121.643-63.572Q121.513-63.627 121.356-63.627Q121.052-63.627 120.833-63.408Q120.614-63.189 120.614-62.888Q120.614-62.591 120.837-62.369Q121.059-62.146 121.356-62.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564 100.07h108.12V77.306h-108.12Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-24.677 151.377)\">\u003Cpath d=\"M2.551-60.611Q2.070-60.611 1.662-60.855Q1.254-61.099 1.016-61.513Q0.777-61.927 0.777-62.416Q0.777-62.908 1.035-63.324Q1.293-63.740 1.725-63.978Q2.156-64.216 2.648-64.216Q3.269-64.216 3.719-63.779L3.719-65.408Q3.719-65.623 3.656-65.718Q3.594-65.814 3.476-65.835Q3.359-65.857 3.113-65.857L3.113-66.154L4.336-66.240L4.336-61.431Q4.336-61.220 4.398-61.125Q4.461-61.029 4.578-61.007Q4.695-60.986 4.945-60.986L4.945-60.689L3.695-60.611L3.695-61.095Q3.230-60.611 2.551-60.611M2.617-60.865Q2.957-60.865 3.250-61.056Q3.543-61.248 3.695-61.544L3.695-63.377Q3.547-63.650 3.285-63.806Q3.023-63.962 2.711-63.962Q2.086-63.962 1.803-63.515Q1.519-63.068 1.519-62.408Q1.519-61.763 1.771-61.314Q2.023-60.865 2.617-60.865M5.551-61.521Q5.551-62.005 5.953-62.300Q6.355-62.595 6.906-62.714Q7.457-62.834 7.949-62.834L7.949-63.123Q7.949-63.349 7.834-63.556Q7.719-63.763 7.521-63.882Q7.324-64.001 7.094-64.001Q6.668-64.001 6.383-63.896Q6.453-63.869 6.500-63.814Q6.547-63.759 6.572-63.689Q6.598-63.619 6.598-63.544Q6.598-63.439 6.547-63.347Q6.496-63.255 6.404-63.205Q6.312-63.154 6.207-63.154Q6.101-63.154 6.010-63.205Q5.918-63.255 5.867-63.347Q5.816-63.439 5.816-63.544Q5.816-63.962 6.205-64.109Q6.594-64.255 7.094-64.255Q7.426-64.255 7.779-64.125Q8.133-63.994 8.361-63.740Q8.590-63.486 8.590-63.138L8.590-61.337Q8.590-61.205 8.662-61.095Q8.734-60.986 8.863-60.986Q8.988-60.986 9.057-61.091Q9.125-61.197 9.125-61.337L9.125-61.849L9.406-61.849L9.406-61.337Q9.406-61.134 9.289-60.976Q9.172-60.818 8.990-60.734Q8.809-60.650 8.605-60.650Q8.375-60.650 8.223-60.822Q8.070-60.994 8.039-61.224Q7.879-60.943 7.570-60.777Q7.262-60.611 6.910-60.611Q6.398-60.611 5.975-60.834Q5.551-61.056 5.551-61.521M6.238-61.521Q6.238-61.236 6.465-61.050Q6.691-60.865 6.984-60.865Q7.230-60.865 7.455-60.982Q7.680-61.099 7.814-61.302Q7.949-61.505 7.949-61.759L7.949-62.591Q7.684-62.591 7.398-62.537Q7.113-62.482 6.842-62.353Q6.570-62.224 6.404-62.017Q6.238-61.810 6.238-61.521M10.324-61.650L10.324-63.841L9.621-63.841L9.621-64.095Q9.976-64.095 10.219-64.328Q10.461-64.560 10.572-64.908Q10.684-65.255 10.684-65.611L10.965-65.611L10.965-64.138L12.141-64.138L12.141-63.841L10.965-63.841L10.965-61.666Q10.965-61.345 11.084-61.117Q11.203-60.888 11.484-60.888Q11.664-60.888 11.781-61.011Q11.898-61.134 11.951-61.314Q12.004-61.494 12.004-61.666L12.004-62.138L12.285-62.138L12.285-61.650Q12.285-61.396 12.180-61.156Q12.074-60.916 11.877-60.763Q11.680-60.611 11.422-60.611Q11.105-60.611 10.853-60.734Q10.601-60.857 10.463-61.091Q10.324-61.326 10.324-61.650M13.101-61.521Q13.101-62.005 13.504-62.300Q13.906-62.595 14.457-62.714Q15.008-62.834 15.500-62.834L15.500-63.123Q15.500-63.349 15.385-63.556Q15.269-63.763 15.072-63.882Q14.875-64.001 14.644-64.001Q14.219-64.001 13.934-63.896Q14.004-63.869 14.051-63.814Q14.098-63.759 14.123-63.689Q14.148-63.619 14.148-63.544Q14.148-63.439 14.098-63.347Q14.047-63.255 13.955-63.205Q13.863-63.154 13.758-63.154Q13.652-63.154 13.560-63.205Q13.469-63.255 13.418-63.347Q13.367-63.439 13.367-63.544Q13.367-63.962 13.756-64.109Q14.144-64.255 14.644-64.255Q14.976-64.255 15.330-64.125Q15.684-63.994 15.912-63.740Q16.141-63.486 16.141-63.138L16.141-61.337Q16.141-61.205 16.213-61.095Q16.285-60.986 16.414-60.986Q16.539-60.986 16.607-61.091Q16.676-61.197 16.676-61.337L16.676-61.849L16.957-61.849L16.957-61.337Q16.957-61.134 16.840-60.976Q16.723-60.818 16.541-60.734Q16.359-60.650 16.156-60.650Q15.926-60.650 15.773-60.822Q15.621-60.994 15.590-61.224Q15.430-60.943 15.121-60.777Q14.812-60.611 14.461-60.611Q13.949-60.611 13.525-60.834Q13.101-61.056 13.101-61.521M13.789-61.521Q13.789-61.236 14.016-61.050Q14.242-60.865 14.535-60.865Q14.781-60.865 15.006-60.982Q15.230-61.099 15.365-61.302Q15.500-61.505 15.500-61.759L15.500-62.591Q15.234-62.591 14.949-62.537Q14.664-62.482 14.392-62.353Q14.121-62.224 13.955-62.017Q13.789-61.810 13.789-61.521\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-24.677 151.377)\">\u003Cpath d=\"M22.026-60.689L20.171-60.689L20.171-60.986Q20.444-60.986 20.612-61.033Q20.780-61.080 20.780-61.248L20.780-63.384Q20.780-63.599 20.717-63.695Q20.655-63.791 20.536-63.812Q20.417-63.834 20.171-63.834L20.171-64.130L21.362-64.216L21.362-63.482Q21.475-63.697 21.669-63.865Q21.862-64.033 22.100-64.125Q22.338-64.216 22.592-64.216Q23.553-64.216 23.729-63.505Q23.913-63.834 24.241-64.025Q24.569-64.216 24.948-64.216Q26.124-64.216 26.124-63.138L26.124-61.248Q26.124-61.080 26.292-61.033Q26.460-60.986 26.729-60.986L26.729-60.689L24.874-60.689L24.874-60.986Q25.147-60.986 25.315-61.031Q25.483-61.076 25.483-61.248L25.483-63.123Q25.483-63.509 25.358-63.736Q25.233-63.962 24.881-63.962Q24.577-63.962 24.321-63.800Q24.065-63.638 23.917-63.369Q23.768-63.099 23.768-62.802L23.768-61.248Q23.768-61.080 23.938-61.033Q24.108-60.986 24.378-60.986L24.378-60.689L22.522-60.689L22.522-60.986Q22.796-60.986 22.963-61.033Q23.131-61.080 23.131-61.248L23.131-63.123Q23.131-63.509 23.006-63.736Q22.881-63.962 22.530-63.962Q22.225-63.962 21.969-63.800Q21.713-63.638 21.565-63.369Q21.417-63.099 21.417-62.802L21.417-61.248Q21.417-61.080 21.587-61.033Q21.756-60.986 22.026-60.986L22.026-60.689M27.174-62.443Q27.174-62.923 27.407-63.339Q27.639-63.755 28.049-64.005Q28.460-64.255 28.936-64.255Q29.667-64.255 30.065-63.814Q30.463-63.373 30.463-62.642Q30.463-62.537 30.370-62.513L27.921-62.513L27.921-62.443Q27.921-62.033 28.042-61.677Q28.163-61.322 28.434-61.105Q28.706-60.888 29.135-60.888Q29.499-60.888 29.796-61.117Q30.092-61.345 30.194-61.697Q30.202-61.744 30.288-61.759L30.370-61.759Q30.463-61.732 30.463-61.650Q30.463-61.642 30.456-61.611Q30.393-61.384 30.254-61.201Q30.116-61.017 29.924-60.884Q29.733-60.752 29.514-60.681Q29.296-60.611 29.057-60.611Q28.686-60.611 28.348-60.748Q28.010-60.884 27.743-61.136Q27.475-61.388 27.325-61.728Q27.174-62.068 27.174-62.443M27.928-62.752L29.889-62.752Q29.889-63.056 29.788-63.347Q29.686-63.638 29.469-63.820Q29.253-64.001 28.936-64.001Q28.635-64.001 28.405-63.814Q28.174-63.627 28.051-63.335Q27.928-63.044 27.928-62.752M32.881-60.689L31.026-60.689L31.026-60.986Q31.299-60.986 31.467-61.033Q31.635-61.080 31.635-61.248L31.635-63.384Q31.635-63.599 31.573-63.695Q31.510-63.791 31.391-63.812Q31.272-63.834 31.026-63.834L31.026-64.130L32.217-64.216L32.217-63.482Q32.331-63.697 32.524-63.865Q32.717-64.033 32.956-64.125Q33.194-64.216 33.448-64.216Q34.409-64.216 34.585-63.505Q34.768-63.834 35.096-64.025Q35.424-64.216 35.803-64.216Q36.979-64.216 36.979-63.138L36.979-61.248Q36.979-61.080 37.147-61.033Q37.315-60.986 37.585-60.986L37.585-60.689L35.729-60.689L35.729-60.986Q36.003-60.986 36.171-61.031Q36.338-61.076 36.338-61.248L36.338-63.123Q36.338-63.509 36.213-63.736Q36.088-63.962 35.737-63.962Q35.432-63.962 35.176-63.800Q34.921-63.638 34.772-63.369Q34.624-63.099 34.624-62.802L34.624-61.248Q34.624-61.080 34.794-61.033Q34.963-60.986 35.233-60.986L35.233-60.689L33.378-60.689L33.378-60.986Q33.651-60.986 33.819-61.033Q33.987-61.080 33.987-61.248L33.987-63.123Q33.987-63.509 33.862-63.736Q33.737-63.962 33.385-63.962Q33.081-63.962 32.825-63.800Q32.569-63.638 32.421-63.369Q32.272-63.099 32.272-62.802L32.272-61.248Q32.272-61.080 32.442-61.033Q32.612-60.986 32.881-60.986L32.881-60.689M38.030-62.384Q38.030-62.888 38.286-63.320Q38.542-63.752 38.977-64.003Q39.413-64.255 39.913-64.255Q40.299-64.255 40.641-64.111Q40.983-63.966 41.245-63.705Q41.506-63.443 41.649-63.107Q41.792-62.771 41.792-62.384Q41.792-61.892 41.528-61.482Q41.264-61.072 40.835-60.841Q40.405-60.611 39.913-60.611Q39.421-60.611 38.987-60.843Q38.553-61.076 38.292-61.484Q38.030-61.892 38.030-62.384M39.913-60.888Q40.370-60.888 40.622-61.111Q40.874-61.334 40.962-61.685Q41.049-62.037 41.049-62.482Q41.049-62.912 40.956-63.250Q40.862-63.587 40.608-63.794Q40.354-64.001 39.913-64.001Q39.264-64.001 39.020-63.585Q38.776-63.169 38.776-62.482Q38.776-62.037 38.864-61.685Q38.952-61.334 39.204-61.111Q39.456-60.888 39.913-60.888M44.284-60.689L42.303-60.689L42.303-60.986Q42.573-60.986 42.741-61.031Q42.909-61.076 42.909-61.248L42.909-63.384Q42.909-63.599 42.846-63.695Q42.784-63.791 42.667-63.812Q42.549-63.834 42.303-63.834L42.303-64.130L43.471-64.216L43.471-63.431Q43.549-63.642 43.702-63.828Q43.854-64.013 44.053-64.115Q44.253-64.216 44.479-64.216Q44.725-64.216 44.917-64.072Q45.108-63.927 45.108-63.697Q45.108-63.541 45.003-63.431Q44.897-63.322 44.741-63.322Q44.585-63.322 44.475-63.431Q44.366-63.541 44.366-63.697Q44.366-63.857 44.471-63.962Q44.147-63.962 43.932-63.734Q43.717-63.505 43.622-63.166Q43.526-62.826 43.526-62.521L43.526-61.248Q43.526-61.080 43.753-61.033Q43.979-60.986 44.284-60.986L44.284-60.689M46.006-59.392Q46.120-59.314 46.296-59.314Q46.585-59.314 46.805-59.527Q47.026-59.740 47.151-60.041L47.440-60.689L46.167-63.576Q46.085-63.752 45.940-63.796Q45.796-63.841 45.526-63.841L45.526-64.138L47.245-64.138L47.245-63.841Q46.823-63.841 46.823-63.658Q46.823-63.646 46.838-63.576L47.776-61.451L48.608-63.361Q48.647-63.451 48.647-63.529Q48.647-63.669 48.546-63.755Q48.444-63.841 48.303-63.841L48.303-64.138L49.655-64.138L49.655-63.841Q49.401-63.841 49.208-63.716Q49.014-63.591 48.909-63.361L47.463-60.041Q47.350-59.787 47.184-59.564Q47.018-59.341 46.790-59.199Q46.561-59.056 46.296-59.056Q45.999-59.056 45.758-59.248Q45.518-59.439 45.518-59.728Q45.518-59.884 45.624-59.986Q45.729-60.087 45.878-60.087Q45.983-60.087 46.063-60.041Q46.143-59.994 46.190-59.916Q46.237-59.837 46.237-59.728Q46.237-59.607 46.176-59.519Q46.116-59.431 46.006-59.392\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 151.821)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 151.821)\">\u003Cpath d=\"M30.599-61.736Q30.599-61.912 30.716-62.033Q30.833-62.154 31.009-62.154Q31.091-62.154 31.167-62.123Q31.243-62.091 31.294-62.041Q31.345-61.990 31.376-61.910Q31.407-61.830 31.407-61.752Q31.407-61.619 31.325-61.505Q31.595-61.169 32.384-61.169Q32.809-61.169 33.151-61.435Q33.493-61.701 33.493-62.115Q33.493-62.388 33.327-62.607Q33.161-62.826 32.901-62.937Q32.642-63.048 32.368-63.048L31.903-63.048Q31.692-63.072 31.661-63.291L31.661-63.377Q31.692-63.580 31.903-63.611L32.431-63.650Q32.645-63.650 32.837-63.773Q33.028-63.896 33.142-64.099Q33.255-64.302 33.255-64.513Q33.255-64.787 32.972-64.941Q32.688-65.095 32.384-65.095Q31.821-65.095 31.583-64.904Q31.645-64.791 31.645-64.681Q31.645-64.509 31.532-64.396Q31.419-64.283 31.247-64.283Q31.071-64.283 30.956-64.406Q30.841-64.529 30.841-64.697Q30.841-65.224 31.313-65.441Q31.786-65.658 32.384-65.658Q32.724-65.658 33.079-65.527Q33.434-65.396 33.665-65.138Q33.895-64.880 33.895-64.513Q33.895-64.169 33.727-63.865Q33.559-63.560 33.263-63.361Q33.634-63.181 33.884-62.845Q34.134-62.509 34.134-62.115Q34.134-61.669 33.880-61.328Q33.626-60.986 33.224-60.798Q32.821-60.611 32.384-60.611Q32.099-60.611 31.794-60.666Q31.489-60.720 31.214-60.847Q30.938-60.974 30.768-61.197Q30.599-61.419 30.599-61.736M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 151.821)\">\u003Cpath d=\"M47.833-60.888L47.833-61.802Q47.860-62.009 48.071-62.033L48.239-62.033Q48.403-62.009 48.462-61.849Q48.665-61.209 49.392-61.209Q49.599-61.209 49.827-61.244Q50.056-61.279 50.224-61.394Q50.392-61.509 50.392-61.712Q50.392-61.923 50.169-62.037Q49.946-62.150 49.673-62.193L48.974-62.306Q47.833-62.517 47.833-63.240Q47.833-63.529 47.977-63.718Q48.122-63.908 48.362-64.015Q48.602-64.123 48.858-64.162Q49.114-64.201 49.392-64.201Q49.642-64.201 49.835-64.171Q50.028-64.142 50.192-64.064Q50.270-64.181 50.399-64.201L50.477-64.201Q50.575-64.189 50.638-64.126Q50.700-64.064 50.712-63.970L50.712-63.263Q50.700-63.169 50.638-63.103Q50.575-63.037 50.477-63.025L50.309-63.025Q50.216-63.037 50.149-63.103Q50.083-63.169 50.071-63.263Q50.071-63.642 49.376-63.642Q49.028-63.642 48.710-63.560Q48.392-63.478 48.392-63.232Q48.392-62.966 49.063-62.857L49.767-62.736Q50.251-62.654 50.601-62.406Q50.950-62.158 50.950-61.712Q50.950-61.322 50.714-61.080Q50.477-60.837 50.128-60.744Q49.778-60.650 49.392-60.650Q48.813-60.650 48.415-60.904Q48.345-60.779 48.296-60.722Q48.247-60.666 48.142-60.650L48.071-60.650Q47.856-60.673 47.833-60.888M51.716-60.927L51.716-61.017Q51.774-61.224 51.966-61.248L52.677-61.248L52.677-63.576L51.966-63.576Q51.770-63.599 51.716-63.818L51.716-63.904Q51.774-64.115 51.966-64.138L53.067-64.138Q53.267-64.119 53.317-63.904L53.317-63.576Q53.579-63.861 53.934-64.019Q54.290-64.177 54.677-64.177Q54.970-64.177 55.204-64.043Q55.438-63.908 55.438-63.642Q55.438-63.474 55.329-63.357Q55.220-63.240 55.052-63.240Q54.899-63.240 54.784-63.351Q54.669-63.462 54.669-63.619Q54.294-63.619 53.979-63.418Q53.665-63.216 53.491-62.882Q53.317-62.548 53.317-62.169L53.317-61.248L54.263-61.248Q54.470-61.224 54.509-61.017L54.509-60.927Q54.470-60.712 54.263-60.689L51.966-60.689Q51.774-60.712 51.716-60.927M56.145-61.802Q56.145-62.248 56.559-62.505Q56.974-62.763 57.515-62.863Q58.056-62.962 58.563-62.970Q58.563-63.185 58.429-63.337Q58.294-63.490 58.087-63.566Q57.880-63.642 57.669-63.642Q57.325-63.642 57.165-63.619L57.165-63.560Q57.165-63.392 57.046-63.277Q56.927-63.162 56.763-63.162Q56.587-63.162 56.472-63.285Q56.356-63.408 56.356-63.576Q56.356-63.982 56.737-64.091Q57.118-64.201 57.677-64.201Q57.946-64.201 58.214-64.123Q58.481-64.044 58.706-63.894Q58.931-63.744 59.067-63.523Q59.204-63.302 59.204-63.025L59.204-61.306Q59.204-61.248 59.731-61.248Q59.927-61.228 59.977-61.017L59.977-60.927Q59.927-60.712 59.731-60.689L59.587-60.689Q59.243-60.689 59.015-60.736Q58.786-60.783 58.642-60.970Q58.181-60.650 57.474-60.650Q57.138-60.650 56.833-60.791Q56.528-60.931 56.337-61.193Q56.145-61.455 56.145-61.802M56.786-61.794Q56.786-61.521 57.028-61.365Q57.270-61.209 57.556-61.209Q57.774-61.209 58.007-61.267Q58.239-61.326 58.401-61.464Q58.563-61.603 58.563-61.826L58.563-62.416Q58.282-62.416 57.866-62.359Q57.450-62.302 57.118-62.164Q56.786-62.025 56.786-61.794M59.931-60.927L59.931-61.017Q59.981-61.228 60.177-61.248L60.376-61.248L60.376-63.576L60.177-63.576Q59.970-63.599 59.931-63.818L59.931-63.904Q59.981-64.119 60.177-64.138L60.657-64.138Q60.849-64.115 60.907-63.904Q61.227-64.177 61.642-64.177Q61.833-64.177 62.001-64.068Q62.169-63.959 62.243-63.787Q62.419-63.978 62.642-64.078Q62.864-64.177 63.106-64.177Q63.524-64.177 63.679-63.835Q63.833-63.494 63.833-63.025L63.833-61.248L64.032-61.248Q64.243-61.224 64.282-61.017L64.282-60.927Q64.231-60.712 64.032-60.689L63.216-60.689Q63.020-60.712 62.970-60.927L62.970-61.017Q63.020-61.224 63.216-61.248L63.306-61.248L63.306-62.994Q63.306-63.619 63.056-63.619Q62.724-63.619 62.546-63.308Q62.368-62.998 62.368-62.634L62.368-61.248L62.571-61.248Q62.778-61.224 62.817-61.017L62.817-60.927Q62.767-60.712 62.571-60.689L61.755-60.689Q61.556-60.712 61.505-60.927L61.505-61.017Q61.556-61.224 61.755-61.248L61.841-61.248L61.841-62.994Q61.841-63.619 61.595-63.619Q61.263-63.619 61.085-63.306Q60.907-62.994 60.907-62.634L60.907-61.248L61.106-61.248Q61.313-61.224 61.352-61.017L61.352-60.927Q61.302-60.709 61.106-60.689L60.177-60.689Q59.970-60.712 59.931-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 151.821)\">\u003Cpath d=\"M68.903-61.802Q68.903-62.248 69.317-62.505Q69.731-62.763 70.272-62.863Q70.813-62.962 71.321-62.970Q71.321-63.185 71.186-63.337Q71.052-63.490 70.845-63.566Q70.638-63.642 70.427-63.642Q70.083-63.642 69.923-63.619L69.923-63.560Q69.923-63.392 69.804-63.277Q69.684-63.162 69.520-63.162Q69.345-63.162 69.229-63.285Q69.114-63.408 69.114-63.576Q69.114-63.982 69.495-64.091Q69.876-64.201 70.434-64.201Q70.704-64.201 70.972-64.123Q71.239-64.044 71.464-63.894Q71.688-63.744 71.825-63.523Q71.962-63.302 71.962-63.025L71.962-61.306Q71.962-61.248 72.489-61.248Q72.684-61.228 72.735-61.017L72.735-60.927Q72.684-60.712 72.489-60.689L72.345-60.689Q72.001-60.689 71.772-60.736Q71.544-60.783 71.399-60.970Q70.938-60.650 70.231-60.650Q69.895-60.650 69.591-60.791Q69.286-60.931 69.095-61.193Q68.903-61.455 68.903-61.802M69.544-61.794Q69.544-61.521 69.786-61.365Q70.028-61.209 70.313-61.209Q70.532-61.209 70.765-61.267Q70.997-61.326 71.159-61.464Q71.321-61.603 71.321-61.826L71.321-62.416Q71.040-62.416 70.624-62.359Q70.208-62.302 69.876-62.164Q69.544-62.025 69.544-61.794M72.813-60.927L72.813-61.017Q72.856-61.224 73.063-61.248L73.485-61.248L73.485-63.576L73.063-63.576Q72.856-63.599 72.813-63.818L72.813-63.904Q72.860-64.115 73.063-64.138L73.880-64.138Q74.075-64.115 74.126-63.904L74.126-63.818L74.118-63.794Q74.345-63.974 74.618-64.076Q74.892-64.177 75.184-64.177Q75.532-64.177 75.770-64.037Q76.009-63.896 76.124-63.638Q76.239-63.380 76.239-63.025L76.239-61.248L76.665-61.248Q76.872-61.224 76.911-61.017L76.911-60.927Q76.872-60.712 76.665-60.689L75.270-60.689Q75.075-60.712 75.024-60.927L75.024-61.017Q75.075-61.228 75.270-61.248L75.599-61.248L75.599-62.994Q75.599-63.302 75.509-63.460Q75.419-63.619 75.126-63.619Q74.856-63.619 74.628-63.488Q74.399-63.357 74.263-63.128Q74.126-62.900 74.126-62.634L74.126-61.248L74.552-61.248Q74.759-61.224 74.798-61.017L74.798-60.927Q74.759-60.712 74.552-60.689L73.063-60.689Q72.856-60.712 72.813-60.927M78.852-60.650Q78.388-60.650 78.022-60.900Q77.657-61.150 77.452-61.554Q77.247-61.959 77.247-62.416Q77.247-62.759 77.372-63.080Q77.497-63.400 77.729-63.650Q77.962-63.900 78.267-64.039Q78.571-64.177 78.927-64.177Q79.438-64.177 79.845-63.857L79.845-65.017L79.423-65.017Q79.212-65.041 79.173-65.255L79.173-65.345Q79.212-65.552 79.423-65.576L80.235-65.576Q80.434-65.552 80.485-65.345L80.485-61.248L80.911-61.248Q81.118-61.224 81.157-61.017L81.157-60.927Q81.118-60.712 80.911-60.689L80.095-60.689Q79.895-60.712 79.845-60.927L79.845-61.056Q79.649-60.865 79.388-60.757Q79.126-60.650 78.852-60.650M78.892-61.209Q79.251-61.209 79.503-61.478Q79.755-61.748 79.845-62.123L79.845-62.955Q79.786-63.142 79.659-63.293Q79.532-63.443 79.354-63.531Q79.177-63.619 78.981-63.619Q78.673-63.619 78.423-63.449Q78.173-63.279 78.028-62.994Q77.884-62.709 77.884-62.408Q77.884-61.959 78.169-61.584Q78.454-61.209 78.892-61.209\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 151.821)\">\u003Cpath d=\"M87.360-60.650Q86.895-60.650 86.530-60.900Q86.165-61.150 85.960-61.554Q85.755-61.959 85.755-62.416Q85.755-62.759 85.880-63.080Q86.005-63.400 86.237-63.650Q86.470-63.900 86.774-64.039Q87.079-64.177 87.434-64.177Q87.946-64.177 88.352-63.857L88.352-65.017L87.931-65.017Q87.720-65.041 87.681-65.255L87.681-65.345Q87.720-65.552 87.931-65.576L88.743-65.576Q88.942-65.552 88.993-65.345L88.993-61.248L89.419-61.248Q89.626-61.224 89.665-61.017L89.665-60.927Q89.626-60.712 89.419-60.689L88.602-60.689Q88.403-60.712 88.352-60.927L88.352-61.056Q88.157-60.865 87.895-60.757Q87.634-60.650 87.360-60.650M87.399-61.209Q87.759-61.209 88.011-61.478Q88.263-61.748 88.352-62.123L88.352-62.955Q88.294-63.142 88.167-63.293Q88.040-63.443 87.862-63.531Q87.684-63.619 87.489-63.619Q87.181-63.619 86.931-63.449Q86.681-63.279 86.536-62.994Q86.392-62.709 86.392-62.408Q86.392-61.959 86.677-61.584Q86.962-61.209 87.399-61.209M89.966-60.927L89.966-61.017Q90.024-61.224 90.216-61.248L90.927-61.248L90.927-63.576L90.216-63.576Q90.020-63.599 89.966-63.818L89.966-63.904Q90.024-64.115 90.216-64.138L91.317-64.138Q91.517-64.119 91.567-63.904L91.567-63.576Q91.829-63.861 92.184-64.019Q92.540-64.177 92.927-64.177Q93.220-64.177 93.454-64.043Q93.688-63.908 93.688-63.642Q93.688-63.474 93.579-63.357Q93.470-63.240 93.302-63.240Q93.149-63.240 93.034-63.351Q92.919-63.462 92.919-63.619Q92.544-63.619 92.229-63.418Q91.915-63.216 91.741-62.882Q91.567-62.548 91.567-62.169L91.567-61.248L92.513-61.248Q92.720-61.224 92.759-61.017L92.759-60.927Q92.720-60.712 92.513-60.689L90.216-60.689Q90.024-60.712 89.966-60.927M94.395-61.802Q94.395-62.248 94.809-62.505Q95.224-62.763 95.765-62.863Q96.306-62.962 96.813-62.970Q96.813-63.185 96.679-63.337Q96.544-63.490 96.337-63.566Q96.130-63.642 95.919-63.642Q95.575-63.642 95.415-63.619L95.415-63.560Q95.415-63.392 95.296-63.277Q95.177-63.162 95.013-63.162Q94.837-63.162 94.722-63.285Q94.606-63.408 94.606-63.576Q94.606-63.982 94.987-64.091Q95.368-64.201 95.927-64.201Q96.196-64.201 96.464-64.123Q96.731-64.044 96.956-63.894Q97.181-63.744 97.317-63.523Q97.454-63.302 97.454-63.025L97.454-61.306Q97.454-61.248 97.981-61.248Q98.177-61.228 98.227-61.017L98.227-60.927Q98.177-60.712 97.981-60.689L97.837-60.689Q97.493-60.689 97.265-60.736Q97.036-60.783 96.892-60.970Q96.431-60.650 95.724-60.650Q95.388-60.650 95.083-60.791Q94.778-60.931 94.587-61.193Q94.395-61.455 94.395-61.802M95.036-61.794Q95.036-61.521 95.278-61.365Q95.520-61.209 95.806-61.209Q96.024-61.209 96.257-61.267Q96.489-61.326 96.651-61.464Q96.813-61.603 96.813-61.826L96.813-62.416Q96.532-62.416 96.116-62.359Q95.700-62.302 95.368-62.164Q95.036-62.025 95.036-61.794M98.181-60.927L98.181-61.017Q98.231-61.228 98.427-61.248L98.626-61.248L98.626-63.576L98.427-63.576Q98.220-63.599 98.181-63.818L98.181-63.904Q98.231-64.119 98.427-64.138L98.907-64.138Q99.099-64.115 99.157-63.904Q99.477-64.177 99.892-64.177Q100.083-64.177 100.251-64.068Q100.419-63.959 100.493-63.787Q100.669-63.978 100.892-64.078Q101.114-64.177 101.356-64.177Q101.774-64.177 101.929-63.835Q102.083-63.494 102.083-63.025L102.083-61.248L102.282-61.248Q102.493-61.224 102.532-61.017L102.532-60.927Q102.481-60.712 102.282-60.689L101.466-60.689Q101.270-60.712 101.220-60.927L101.220-61.017Q101.270-61.224 101.466-61.248L101.556-61.248L101.556-62.994Q101.556-63.619 101.306-63.619Q100.974-63.619 100.796-63.308Q100.618-62.998 100.618-62.634L100.618-61.248L100.821-61.248Q101.028-61.224 101.067-61.017L101.067-60.927Q101.017-60.712 100.821-60.689L100.005-60.689Q99.806-60.712 99.755-60.927L99.755-61.017Q99.806-61.224 100.005-61.248L100.091-61.248L100.091-62.994Q100.091-63.619 99.845-63.619Q99.513-63.619 99.335-63.306Q99.157-62.994 99.157-62.634L99.157-61.248L99.356-61.248Q99.563-61.224 99.602-61.017L99.602-60.927Q99.552-60.709 99.356-60.689L98.427-60.689Q98.220-60.712 98.181-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-53.564 129.945h108.12v-22.763h-108.12Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-21.844 182.03)\">\u003Cpath d=\"M0.777-62.416Q0.777-62.912 1.027-63.337Q1.277-63.763 1.697-64.009Q2.117-64.255 2.617-64.255Q3.156-64.255 3.547-64.130Q3.937-64.005 3.937-63.591Q3.937-63.486 3.887-63.394Q3.836-63.302 3.744-63.252Q3.652-63.201 3.543-63.201Q3.437-63.201 3.346-63.252Q3.254-63.302 3.203-63.394Q3.152-63.486 3.152-63.591Q3.152-63.814 3.320-63.919Q3.098-63.978 2.625-63.978Q2.328-63.978 2.113-63.839Q1.898-63.701 1.767-63.470Q1.637-63.240 1.578-62.970Q1.519-62.701 1.519-62.416Q1.519-62.021 1.652-61.671Q1.785-61.322 2.057-61.105Q2.328-60.888 2.726-60.888Q3.101-60.888 3.377-61.105Q3.652-61.322 3.754-61.681Q3.769-61.744 3.832-61.744L3.937-61.744Q3.973-61.744 3.998-61.716Q4.023-61.689 4.023-61.650L4.023-61.627Q3.891-61.146 3.506-60.878Q3.121-60.611 2.617-60.611Q2.254-60.611 1.920-60.748Q1.586-60.884 1.326-61.134Q1.066-61.384 0.922-61.720Q0.777-62.056 0.777-62.416M4.512-62.384Q4.512-62.888 4.767-63.320Q5.023-63.752 5.459-64.003Q5.894-64.255 6.394-64.255Q6.781-64.255 7.123-64.111Q7.465-63.966 7.726-63.705Q7.988-63.443 8.131-63.107Q8.273-62.771 8.273-62.384Q8.273-61.892 8.010-61.482Q7.746-61.072 7.316-60.841Q6.887-60.611 6.394-60.611Q5.902-60.611 5.469-60.843Q5.035-61.076 4.773-61.484Q4.512-61.892 4.512-62.384M6.394-60.888Q6.851-60.888 7.103-61.111Q7.355-61.334 7.443-61.685Q7.531-62.037 7.531-62.482Q7.531-62.912 7.437-63.250Q7.344-63.587 7.090-63.794Q6.836-64.001 6.394-64.001Q5.746-64.001 5.502-63.585Q5.258-63.169 5.258-62.482Q5.258-62.037 5.346-61.685Q5.434-61.334 5.685-61.111Q5.937-60.888 6.394-60.888M10.687-60.689L8.832-60.689L8.832-60.986Q9.105-60.986 9.273-61.033Q9.441-61.080 9.441-61.248L9.441-63.384Q9.441-63.599 9.379-63.695Q9.316-63.791 9.197-63.812Q9.078-63.834 8.832-63.834L8.832-64.130L10.023-64.216L10.023-63.482Q10.137-63.697 10.330-63.865Q10.523-64.033 10.762-64.125Q11-64.216 11.254-64.216Q12.422-64.216 12.422-63.138L12.422-61.248Q12.422-61.080 12.592-61.033Q12.762-60.986 13.031-60.986L13.031-60.689L11.176-60.689L11.176-60.986Q11.449-60.986 11.617-61.033Q11.785-61.080 11.785-61.248L11.785-63.123Q11.785-63.505 11.664-63.734Q11.543-63.962 11.191-63.962Q10.879-63.962 10.625-63.800Q10.371-63.638 10.225-63.369Q10.078-63.099 10.078-62.802L10.078-61.248Q10.078-61.080 10.248-61.033Q10.418-60.986 10.687-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.844 182.03)\">\u003Cpath d=\"M13.873-61.650L13.873-63.841L13.170-63.841L13.170-64.095Q13.526-64.095 13.768-64.328Q14.010-64.560 14.121-64.908Q14.233-65.255 14.233-65.611L14.514-65.611L14.514-64.138L15.690-64.138L15.690-63.841L14.514-63.841L14.514-61.666Q14.514-61.345 14.633-61.117Q14.752-60.888 15.033-60.888Q15.213-60.888 15.330-61.011Q15.447-61.134 15.500-61.314Q15.553-61.494 15.553-61.666L15.553-62.138L15.834-62.138L15.834-61.650Q15.834-61.396 15.729-61.156Q15.623-60.916 15.426-60.763Q15.229-60.611 14.971-60.611Q14.655-60.611 14.403-60.734Q14.151-60.857 14.012-61.091Q13.873-61.326 13.873-61.650M18.561-60.689L16.580-60.689L16.580-60.986Q16.850-60.986 17.018-61.031Q17.186-61.076 17.186-61.248L17.186-63.384Q17.186-63.599 17.123-63.695Q17.061-63.791 16.944-63.812Q16.826-63.834 16.580-63.834L16.580-64.130L17.748-64.216L17.748-63.431Q17.826-63.642 17.979-63.828Q18.131-64.013 18.330-64.115Q18.530-64.216 18.756-64.216Q19.002-64.216 19.194-64.072Q19.385-63.927 19.385-63.697Q19.385-63.541 19.280-63.431Q19.174-63.322 19.018-63.322Q18.862-63.322 18.752-63.431Q18.643-63.541 18.643-63.697Q18.643-63.857 18.748-63.962Q18.424-63.962 18.209-63.734Q17.994-63.505 17.899-63.166Q17.803-62.826 17.803-62.521L17.803-61.248Q17.803-61.080 18.030-61.033Q18.256-60.986 18.561-60.986L18.561-60.689M19.865-62.384Q19.865-62.888 20.121-63.320Q20.377-63.752 20.813-64.003Q21.248-64.255 21.748-64.255Q22.135-64.255 22.477-64.111Q22.819-63.966 23.080-63.705Q23.342-63.443 23.485-63.107Q23.627-62.771 23.627-62.384Q23.627-61.892 23.364-61.482Q23.100-61.072 22.670-60.841Q22.240-60.611 21.748-60.611Q21.256-60.611 20.822-60.843Q20.389-61.076 20.127-61.484Q19.865-61.892 19.865-62.384M21.748-60.888Q22.205-60.888 22.457-61.111Q22.709-61.334 22.797-61.685Q22.885-62.037 22.885-62.482Q22.885-62.912 22.791-63.250Q22.697-63.587 22.444-63.794Q22.190-64.001 21.748-64.001Q21.100-64.001 20.856-63.585Q20.612-63.169 20.612-62.482Q20.612-62.037 20.699-61.685Q20.787-61.334 21.039-61.111Q21.291-60.888 21.748-60.888M26.026-60.689L24.194-60.689L24.194-60.986Q24.467-60.986 24.635-61.033Q24.803-61.080 24.803-61.248L24.803-65.408Q24.803-65.623 24.740-65.718Q24.678-65.814 24.559-65.835Q24.440-65.857 24.194-65.857L24.194-66.154L25.416-66.240L25.416-61.248Q25.416-61.080 25.584-61.033Q25.752-60.986 26.026-60.986\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.844 182.03)\">\u003Cpath d=\"M29.995-61.642L29.995-63.384Q29.995-63.599 29.932-63.695Q29.870-63.791 29.751-63.812Q29.632-63.834 29.386-63.834L29.386-64.130L30.632-64.216L30.632-61.666L30.632-61.642Q30.632-61.330 30.686-61.168Q30.741-61.005 30.891-60.935Q31.042-60.865 31.362-60.865Q31.792-60.865 32.065-61.203Q32.339-61.541 32.339-61.986L32.339-63.384Q32.339-63.599 32.276-63.695Q32.214-63.791 32.094-63.812Q31.975-63.834 31.729-63.834L31.729-64.130L32.975-64.216L32.975-61.431Q32.975-61.220 33.038-61.125Q33.100-61.029 33.219-61.007Q33.339-60.986 33.585-60.986L33.585-60.689L32.362-60.611L32.362-61.232Q32.194-60.943 31.913-60.777Q31.632-60.611 31.311-60.611Q29.995-60.611 29.995-61.642M35.960-60.689L34.104-60.689L34.104-60.986Q34.378-60.986 34.546-61.033Q34.714-61.080 34.714-61.248L34.714-63.384Q34.714-63.599 34.651-63.695Q34.589-63.791 34.469-63.812Q34.350-63.834 34.104-63.834L34.104-64.130L35.296-64.216L35.296-63.482Q35.409-63.697 35.602-63.865Q35.796-64.033 36.034-64.125Q36.272-64.216 36.526-64.216Q37.694-64.216 37.694-63.138L37.694-61.248Q37.694-61.080 37.864-61.033Q38.034-60.986 38.303-60.986L38.303-60.689L36.448-60.689L36.448-60.986Q36.721-60.986 36.889-61.033Q37.057-61.080 37.057-61.248L37.057-63.123Q37.057-63.505 36.936-63.734Q36.815-63.962 36.464-63.962Q36.151-63.962 35.897-63.800Q35.643-63.638 35.497-63.369Q35.350-63.099 35.350-62.802L35.350-61.248Q35.350-61.080 35.520-61.033Q35.690-60.986 35.960-60.986L35.960-60.689M40.608-60.689L38.831-60.689L38.831-60.986Q39.104-60.986 39.272-61.033Q39.440-61.080 39.440-61.248L39.440-63.384Q39.440-63.599 39.384-63.695Q39.327-63.791 39.214-63.812Q39.100-63.834 38.854-63.834L38.854-64.130L40.053-64.216L40.053-61.248Q40.053-61.080 40.200-61.033Q40.346-60.986 40.608-60.986L40.608-60.689M39.167-65.611Q39.167-65.802 39.302-65.933Q39.436-66.064 39.632-66.064Q39.753-66.064 39.856-66.001Q39.960-65.939 40.022-65.835Q40.085-65.732 40.085-65.611Q40.085-65.416 39.954-65.281Q39.823-65.146 39.632-65.146Q39.432-65.146 39.300-65.279Q39.167-65.412 39.167-65.611M41.733-61.650L41.733-63.841L41.030-63.841L41.030-64.095Q41.386-64.095 41.628-64.328Q41.870-64.560 41.981-64.908Q42.093-65.255 42.093-65.611L42.374-65.611L42.374-64.138L43.550-64.138L43.550-63.841L42.374-63.841L42.374-61.666Q42.374-61.345 42.493-61.117Q42.612-60.888 42.893-60.888Q43.073-60.888 43.190-61.011Q43.307-61.134 43.360-61.314Q43.413-61.494 43.413-61.666L43.413-62.138L43.694-62.138L43.694-61.650Q43.694-61.396 43.589-61.156Q43.483-60.916 43.286-60.763Q43.089-60.611 42.831-60.611Q42.514-60.611 42.262-60.734Q42.011-60.857 41.872-61.091Q41.733-61.326 41.733-61.650\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(80.355 180.808)\">\u003Cpath d=\"M0.441-60.927L0.441-61.017Q0.492-61.228 0.687-61.248L0.887-61.248L0.887-63.576L0.687-63.576Q0.480-63.599 0.441-63.818L0.441-63.904Q0.492-64.119 0.687-64.138L1.168-64.138Q1.359-64.115 1.418-63.904Q1.738-64.177 2.152-64.177Q2.344-64.177 2.512-64.068Q2.680-63.959 2.754-63.787Q2.930-63.978 3.152-64.078Q3.375-64.177 3.617-64.177Q4.035-64.177 4.189-63.835Q4.344-63.494 4.344-63.025L4.344-61.248L4.543-61.248Q4.754-61.224 4.793-61.017L4.793-60.927Q4.742-60.712 4.543-60.689L3.726-60.689Q3.531-60.712 3.480-60.927L3.480-61.017Q3.531-61.224 3.726-61.248L3.816-61.248L3.816-62.994Q3.816-63.619 3.566-63.619Q3.234-63.619 3.057-63.308Q2.879-62.998 2.879-62.634L2.879-61.248L3.082-61.248Q3.289-61.224 3.328-61.017L3.328-60.927Q3.277-60.712 3.082-60.689L2.266-60.689Q2.066-60.712 2.016-60.927L2.016-61.017Q2.066-61.224 2.266-61.248L2.351-61.248L2.351-62.994Q2.351-63.619 2.105-63.619Q1.773-63.619 1.596-63.306Q1.418-62.994 1.418-62.634L1.418-61.248L1.617-61.248Q1.824-61.224 1.863-61.017L1.863-60.927Q1.812-60.709 1.617-60.689L0.687-60.689Q0.480-60.712 0.441-60.927M6.863-60.650Q6.391-60.650 6.006-60.894Q5.621-61.138 5.398-61.548Q5.176-61.959 5.176-62.416Q5.176-62.759 5.301-63.082Q5.426-63.404 5.656-63.658Q5.887-63.912 6.193-64.056Q6.500-64.201 6.863-64.201Q7.226-64.201 7.539-64.054Q7.851-63.908 8.074-63.662Q8.297-63.416 8.424-63.095Q8.551-62.775 8.551-62.416Q8.551-61.959 8.326-61.546Q8.101-61.134 7.717-60.892Q7.332-60.650 6.863-60.650M6.863-61.209Q7.328-61.209 7.619-61.603Q7.910-61.998 7.910-62.482Q7.910-62.775 7.775-63.043Q7.641-63.310 7.400-63.476Q7.160-63.642 6.863-63.642Q6.559-63.642 6.320-63.476Q6.082-63.310 5.947-63.043Q5.812-62.775 5.812-62.482Q5.812-62.002 6.105-61.605Q6.398-61.209 6.863-61.209M10.851-60.650Q10.387-60.650 10.021-60.900Q9.656-61.150 9.451-61.554Q9.246-61.959 9.246-62.416Q9.246-62.759 9.371-63.080Q9.496-63.400 9.728-63.650Q9.961-63.900 10.266-64.039Q10.570-64.177 10.926-64.177Q11.437-64.177 11.844-63.857L11.844-65.017L11.422-65.017Q11.211-65.041 11.172-65.255L11.172-65.345Q11.211-65.552 11.422-65.576L12.234-65.576Q12.434-65.552 12.484-65.345L12.484-61.248L12.910-61.248Q13.117-61.224 13.156-61.017L13.156-60.927Q13.117-60.712 12.910-60.689L12.094-60.689Q11.894-60.712 11.844-60.927L11.844-61.056Q11.648-60.865 11.387-60.757Q11.125-60.650 10.851-60.650M10.891-61.209Q11.250-61.209 11.502-61.478Q11.754-61.748 11.844-62.123L11.844-62.955Q11.785-63.142 11.658-63.293Q11.531-63.443 11.353-63.531Q11.176-63.619 10.980-63.619Q10.672-63.619 10.422-63.449Q10.172-63.279 10.027-62.994Q9.883-62.709 9.883-62.408Q9.883-61.959 10.168-61.584Q10.453-61.209 10.891-61.209M13.976-61.544L13.976-63.576L13.555-63.576Q13.348-63.599 13.305-63.818L13.305-63.904Q13.351-64.115 13.555-64.138L14.371-64.138Q14.566-64.115 14.617-63.904L14.617-61.576Q14.617-61.341 14.787-61.275Q14.957-61.209 15.242-61.209Q15.449-61.209 15.644-61.285Q15.840-61.361 15.965-61.511Q16.090-61.662 16.090-61.873L16.090-63.576L15.668-63.576Q15.457-63.599 15.418-63.818L15.418-63.904Q15.457-64.115 15.668-64.138L16.480-64.138Q16.680-64.115 16.730-63.904L16.730-61.248L17.156-61.248Q17.363-61.224 17.402-61.017L17.402-60.927Q17.363-60.712 17.156-60.689L16.340-60.689Q16.141-60.712 16.090-60.912Q15.687-60.650 15.180-60.650Q14.945-60.650 14.730-60.691Q14.516-60.732 14.350-60.834Q14.184-60.935 14.080-61.113Q13.976-61.291 13.976-61.544M17.930-60.927L17.930-61.017Q17.980-61.224 18.176-61.248L19.281-61.248L19.281-65.017L18.176-65.017Q17.980-65.041 17.930-65.255L17.930-65.345Q17.980-65.552 18.176-65.576L19.672-65.576Q19.863-65.552 19.922-65.345L19.922-61.248L21.023-61.248Q21.223-61.224 21.273-61.017L21.273-60.927Q21.223-60.712 21.023-60.689L18.176-60.689Q17.980-60.712 17.930-60.927M25.238-62.177L22.797-62.177Q22.851-61.900 23.049-61.677Q23.246-61.455 23.523-61.332Q23.801-61.209 24.086-61.209Q24.559-61.209 24.781-61.498Q24.789-61.509 24.846-61.615Q24.902-61.720 24.951-61.763Q25-61.806 25.094-61.818L25.238-61.818Q25.430-61.798 25.488-61.584L25.488-61.529Q25.422-61.228 25.191-61.031Q24.961-60.834 24.648-60.742Q24.336-60.650 24.031-60.650Q23.547-60.650 23.107-60.878Q22.668-61.107 22.400-61.507Q22.133-61.908 22.133-62.400L22.133-62.459Q22.133-62.927 22.379-63.330Q22.625-63.732 23.033-63.966Q23.441-64.201 23.910-64.201Q24.414-64.201 24.767-63.978Q25.121-63.755 25.305-63.367Q25.488-62.978 25.488-62.474L25.488-62.416Q25.430-62.201 25.238-62.177M22.805-62.728L24.832-62.728Q24.785-63.138 24.547-63.390Q24.309-63.642 23.910-63.642Q23.516-63.642 23.209-63.380Q22.902-63.119 22.805-62.728\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 180.808)\">\u003Cpath d=\"M32.806-62.033L30.735-62.033Q30.540-62.056 30.485-62.275L30.485-62.513Q30.485-62.587 30.528-62.658L32.376-65.529Q32.462-65.658 32.614-65.658L33.071-65.658Q33.181-65.658 33.259-65.580Q33.337-65.501 33.337-65.392L33.337-62.591L34.001-62.591Q34.196-62.568 34.247-62.361L34.247-62.275Q34.196-62.056 34.001-62.033L33.337-62.033L33.337-61.248L33.911-61.248Q34.118-61.224 34.157-61.017L34.157-60.927Q34.118-60.712 33.911-60.689L32.231-60.689Q32.024-60.712 31.981-60.927L31.981-61.017Q32.024-61.224 32.231-61.248L32.806-61.248L32.806-62.033M32.806-65.185L31.134-62.591L32.806-62.591L32.806-65.185M36.059-61.248Q36.059-61.470 36.226-61.636Q36.392-61.802 36.622-61.802Q36.770-61.802 36.897-61.724Q37.024-61.646 37.099-61.521Q37.173-61.396 37.173-61.248Q37.173-61.021 37.007-60.855Q36.841-60.689 36.622-60.689Q36.395-60.689 36.227-60.857Q36.059-61.025 36.059-61.248M36.059-63.584Q36.059-63.806 36.226-63.972Q36.392-64.138 36.622-64.138Q36.770-64.138 36.897-64.060Q37.024-63.982 37.099-63.857Q37.173-63.732 37.173-63.584Q37.173-63.357 37.007-63.191Q36.841-63.025 36.622-63.025Q36.395-63.025 36.227-63.193Q36.059-63.361 36.059-63.584\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 180.808)\">\u003Cpath d=\"M47.806-62.416Q47.806-62.896 48.050-63.310Q48.294-63.724 48.710-63.962Q49.126-64.201 49.606-64.201Q50.161-64.201 50.540-64.091Q50.919-63.982 50.919-63.576Q50.919-63.408 50.806-63.285Q50.692-63.162 50.520-63.162Q50.349-63.162 50.229-63.277Q50.110-63.392 50.110-63.560L50.110-63.619Q49.950-63.642 49.614-63.642Q49.286-63.642 49.018-63.472Q48.751-63.302 48.599-63.019Q48.446-62.736 48.446-62.416Q48.446-62.095 48.618-61.814Q48.790-61.533 49.075-61.371Q49.360-61.209 49.688-61.209Q50.001-61.209 50.128-61.312Q50.255-61.416 50.372-61.605Q50.489-61.794 50.606-61.810L50.774-61.810Q50.880-61.798 50.944-61.730Q51.009-61.662 51.009-61.560Q51.009-61.513 50.989-61.474Q50.880-61.181 50.677-61.002Q50.474-60.822 50.198-60.736Q49.923-60.650 49.606-60.650Q49.122-60.650 48.706-60.888Q48.290-61.127 48.048-61.529Q47.806-61.931 47.806-62.416M53.614-60.650Q53.142-60.650 52.757-60.894Q52.372-61.138 52.149-61.548Q51.927-61.959 51.927-62.416Q51.927-62.759 52.052-63.082Q52.177-63.404 52.407-63.658Q52.638-63.912 52.944-64.056Q53.251-64.201 53.614-64.201Q53.977-64.201 54.290-64.054Q54.602-63.908 54.825-63.662Q55.048-63.416 55.175-63.095Q55.302-62.775 55.302-62.416Q55.302-61.959 55.077-61.546Q54.852-61.134 54.468-60.892Q54.083-60.650 53.614-60.650M53.614-61.209Q54.079-61.209 54.370-61.603Q54.661-61.998 54.661-62.482Q54.661-62.775 54.526-63.043Q54.392-63.310 54.151-63.476Q53.911-63.642 53.614-63.642Q53.309-63.642 53.071-63.476Q52.833-63.310 52.698-63.043Q52.563-62.775 52.563-62.482Q52.563-62.002 52.856-61.605Q53.149-61.209 53.614-61.209M55.809-60.927L55.809-61.017Q55.852-61.224 56.059-61.248L56.481-61.248L56.481-63.576L56.059-63.576Q55.852-63.599 55.809-63.818L55.809-63.904Q55.856-64.115 56.059-64.138L56.876-64.138Q57.071-64.115 57.122-63.904L57.122-63.818L57.114-63.794Q57.341-63.974 57.614-64.076Q57.888-64.177 58.181-64.177Q58.528-64.177 58.767-64.037Q59.005-63.896 59.120-63.638Q59.235-63.380 59.235-63.025L59.235-61.248L59.661-61.248Q59.868-61.224 59.907-61.017L59.907-60.927Q59.868-60.712 59.661-60.689L58.267-60.689Q58.071-60.712 58.020-60.927L58.020-61.017Q58.071-61.228 58.267-61.248L58.595-61.248L58.595-62.994Q58.595-63.302 58.505-63.460Q58.415-63.619 58.122-63.619Q57.852-63.619 57.624-63.488Q57.395-63.357 57.259-63.128Q57.122-62.900 57.122-62.634L57.122-61.248L57.548-61.248Q57.755-61.224 57.794-61.017L57.794-60.927Q57.755-60.712 57.548-60.689L56.059-60.689Q55.852-60.712 55.809-60.927M61.184-61.794L61.184-63.576L60.434-63.576Q60.235-63.599 60.184-63.818L60.184-63.904Q60.235-64.115 60.434-64.138L61.184-64.138L61.184-64.888Q61.235-65.095 61.434-65.123L61.579-65.123Q61.774-65.095 61.825-64.888L61.825-64.138L63.184-64.138Q63.376-64.119 63.434-63.904L63.434-63.818Q63.380-63.599 63.184-63.576L61.825-63.576L61.825-61.826Q61.825-61.209 62.399-61.209Q62.649-61.209 62.813-61.394Q62.977-61.580 62.977-61.826Q62.977-61.919 63.050-61.990Q63.122-62.060 63.224-62.072L63.368-62.072Q63.567-62.048 63.618-61.841L63.618-61.794Q63.618-61.470 63.434-61.207Q63.251-60.943 62.958-60.796Q62.665-60.650 62.345-60.650Q61.833-60.650 61.509-60.960Q61.184-61.271 61.184-61.794M64.454-60.927L64.454-61.017Q64.513-61.224 64.704-61.248L65.415-61.248L65.415-63.576L64.704-63.576Q64.509-63.599 64.454-63.818L64.454-63.904Q64.513-64.115 64.704-64.138L65.806-64.138Q66.005-64.119 66.056-63.904L66.056-63.576Q66.317-63.861 66.673-64.019Q67.028-64.177 67.415-64.177Q67.708-64.177 67.942-64.043Q68.177-63.908 68.177-63.642Q68.177-63.474 68.067-63.357Q67.958-63.240 67.790-63.240Q67.638-63.240 67.522-63.351Q67.407-63.462 67.407-63.619Q67.032-63.619 66.718-63.418Q66.403-63.216 66.229-62.882Q66.056-62.548 66.056-62.169L66.056-61.248L67.001-61.248Q67.208-61.224 67.247-61.017L67.247-60.927Q67.208-60.712 67.001-60.689L64.704-60.689Q64.513-60.712 64.454-60.927M70.599-60.650Q70.126-60.650 69.741-60.894Q69.356-61.138 69.134-61.548Q68.911-61.959 68.911-62.416Q68.911-62.759 69.036-63.082Q69.161-63.404 69.392-63.658Q69.622-63.912 69.929-64.056Q70.235-64.201 70.599-64.201Q70.962-64.201 71.274-64.054Q71.587-63.908 71.809-63.662Q72.032-63.416 72.159-63.095Q72.286-62.775 72.286-62.416Q72.286-61.959 72.061-61.546Q71.837-61.134 71.452-60.892Q71.067-60.650 70.599-60.650M70.599-61.209Q71.063-61.209 71.354-61.603Q71.645-61.998 71.645-62.482Q71.645-62.775 71.511-63.043Q71.376-63.310 71.136-63.476Q70.895-63.642 70.599-63.642Q70.294-63.642 70.056-63.476Q69.817-63.310 69.683-63.043Q69.548-62.775 69.548-62.482Q69.548-62.002 69.841-61.605Q70.134-61.209 70.599-61.209M73.173-60.927L73.173-61.017Q73.224-61.224 73.419-61.248L74.524-61.248L74.524-65.017L73.419-65.017Q73.224-65.041 73.173-65.255L73.173-65.345Q73.224-65.552 73.419-65.576L74.915-65.576Q75.106-65.552 75.165-65.345L75.165-61.248L76.267-61.248Q76.466-61.224 76.517-61.017L76.517-60.927Q76.466-60.712 76.267-60.689L73.419-60.689Q73.224-60.712 73.173-60.927\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(80.355 180.808)\">\u003Cpath d=\"M81.696-60.927L81.696-61.017Q81.747-61.224 81.942-61.248L83.048-61.248L83.048-65.017L81.942-65.017Q81.747-65.041 81.696-65.255L81.696-65.345Q81.747-65.552 81.942-65.576L83.438-65.576Q83.630-65.552 83.688-65.345L83.688-61.248L84.790-61.248Q84.989-61.224 85.040-61.017L85.040-60.927Q84.989-60.712 84.790-60.689L81.942-60.689Q81.747-60.712 81.696-60.927M87.614-60.650Q87.142-60.650 86.757-60.894Q86.372-61.138 86.149-61.548Q85.927-61.959 85.927-62.416Q85.927-62.759 86.052-63.082Q86.177-63.404 86.407-63.658Q86.638-63.912 86.944-64.056Q87.251-64.201 87.614-64.201Q87.977-64.201 88.290-64.054Q88.602-63.908 88.825-63.662Q89.048-63.416 89.175-63.095Q89.302-62.775 89.302-62.416Q89.302-61.959 89.077-61.546Q88.852-61.134 88.468-60.892Q88.083-60.650 87.614-60.650M87.614-61.209Q88.079-61.209 88.370-61.603Q88.661-61.998 88.661-62.482Q88.661-62.775 88.526-63.043Q88.392-63.310 88.151-63.476Q87.911-63.642 87.614-63.642Q87.309-63.642 87.071-63.476Q86.833-63.310 86.698-63.043Q86.563-62.775 86.563-62.482Q86.563-62.002 86.856-61.605Q87.149-61.209 87.614-61.209M89.977-60.041Q89.977-60.341 90.126-60.603Q90.274-60.865 90.524-61.025Q90.341-61.279 90.341-61.599Q90.341-61.884 90.493-62.146Q90.243-62.470 90.243-62.888Q90.243-63.248 90.434-63.544Q90.626-63.841 90.944-64.009Q91.263-64.177 91.626-64.177Q91.833-64.177 92.036-64.117Q92.239-64.056 92.403-63.955Q92.786-64.216 93.259-64.216Q93.497-64.216 93.679-64.085Q93.860-63.955 93.860-63.728Q93.860-63.580 93.759-63.474Q93.657-63.369 93.501-63.369Q93.368-63.369 93.272-63.447Q93.177-63.525 93.145-63.650Q93.001-63.642 92.802-63.552Q93.005-63.240 93.005-62.888Q93.005-62.607 92.893-62.375Q92.782-62.142 92.587-61.964Q92.392-61.787 92.140-61.689Q91.888-61.591 91.626-61.591Q91.239-61.591 90.907-61.779Q90.895-61.779 90.886-61.707Q90.876-61.634 90.876-61.599Q90.876-61.478 90.942-61.371Q91.009-61.263 91.130-61.224Q91.145-61.228 91.159-61.230Q91.173-61.232 91.196-61.232Q91.212-61.232 91.243-61.224Q91.274-61.216 91.282-61.216L91.876-61.216Q92.657-61.216 93.198-60.974Q93.739-60.732 93.739-60.041Q93.739-59.740 93.559-59.513Q93.380-59.287 93.083-59.142Q92.786-58.998 92.466-58.931Q92.145-58.865 91.860-58.865Q91.470-58.865 91.028-58.988Q90.587-59.111 90.282-59.378Q89.977-59.646 89.977-60.041M90.517-60.048Q90.517-59.830 90.757-59.689Q90.997-59.548 91.321-59.482Q91.645-59.416 91.860-59.416Q92.075-59.416 92.399-59.482Q92.724-59.548 92.964-59.689Q93.204-59.830 93.204-60.048Q93.204-60.337 92.979-60.476Q92.755-60.615 92.474-60.648Q92.192-60.681 91.845-60.681L91.227-60.681Q91.044-60.681 90.882-60.601Q90.720-60.521 90.618-60.375Q90.517-60.228 90.517-60.048M91.626-62.146Q91.927-62.146 92.145-62.365Q92.364-62.584 92.364-62.888Q92.364-63.044 92.309-63.175Q92.255-63.306 92.149-63.412Q92.044-63.517 91.913-63.572Q91.782-63.627 91.626-63.627Q91.321-63.627 91.102-63.408Q90.884-63.189 90.884-62.888Q90.884-62.591 91.106-62.369Q91.329-62.146 91.626-62.146M94.602-60.927L94.602-61.017Q94.653-61.224 94.849-61.248L95.888-61.248L95.888-63.576L94.915-63.576Q94.716-63.599 94.665-63.818L94.665-63.904Q94.716-64.115 94.915-64.138L96.282-64.138Q96.477-64.119 96.528-63.904L96.528-61.248L97.442-61.248Q97.638-61.224 97.688-61.017L97.688-60.927Q97.638-60.712 97.442-60.689L94.849-60.689Q94.653-60.712 94.602-60.927M95.634-65.115L95.634-65.169Q95.634-65.341 95.770-65.462Q95.907-65.584 96.083-65.584Q96.255-65.584 96.392-65.462Q96.528-65.341 96.528-65.169L96.528-65.115Q96.528-64.939 96.392-64.818Q96.255-64.697 96.083-64.697Q95.907-64.697 95.770-64.818Q95.634-64.939 95.634-65.115M98.790-62.416Q98.790-62.896 99.034-63.310Q99.278-63.724 99.694-63.962Q100.110-64.201 100.591-64.201Q101.145-64.201 101.524-64.091Q101.903-63.982 101.903-63.576Q101.903-63.408 101.790-63.285Q101.677-63.162 101.505-63.162Q101.333-63.162 101.214-63.277Q101.095-63.392 101.095-63.560L101.095-63.619Q100.934-63.642 100.599-63.642Q100.270-63.642 100.003-63.472Q99.735-63.302 99.583-63.019Q99.431-62.736 99.431-62.416Q99.431-62.095 99.602-61.814Q99.774-61.533 100.059-61.371Q100.345-61.209 100.673-61.209Q100.985-61.209 101.112-61.312Q101.239-61.416 101.356-61.605Q101.474-61.794 101.591-61.810L101.759-61.810Q101.864-61.798 101.929-61.730Q101.993-61.662 101.993-61.560Q101.993-61.513 101.974-61.474Q101.864-61.181 101.661-61.002Q101.458-60.822 101.183-60.736Q100.907-60.650 100.591-60.650Q100.106-60.650 99.690-60.888Q99.274-61.127 99.032-61.529Q98.790-61.931 98.790-62.416\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Which lesson built which part. Every functional unit of the complete CPU was constructed earlier in the course; this legend names the source. The capstone adds nothing new — it only wires the existing parts together.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:517.091px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 387.818 123.185\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-56.081 -61.804)\">\u003Cpath d=\"M-9.299 45.124L-9.299 45.034Q-9.241 44.827-9.049 44.803L-8.338 44.803L-8.338 42.475L-9.049 42.475Q-9.245 42.452-9.299 42.233L-9.299 42.147Q-9.241 41.936-9.049 41.913L-7.948 41.913Q-7.749 41.932-7.698 42.147L-7.698 42.475Q-7.436 42.190-7.081 42.032Q-6.725 41.874-6.338 41.874Q-6.045 41.874-5.811 42.008Q-5.577 42.143-5.577 42.409Q-5.577 42.577-5.686 42.694Q-5.795 42.811-5.963 42.811Q-6.116 42.811-6.231 42.700Q-6.346 42.589-6.346 42.432Q-6.721 42.432-7.036 42.633Q-7.350 42.835-7.524 43.169Q-7.698 43.503-7.698 43.882L-7.698 44.803L-6.752 44.803Q-6.545 44.827-6.506 45.034L-6.506 45.124Q-6.545 45.339-6.752 45.362L-9.049 45.362Q-9.241 45.339-9.299 45.124M-1.764 43.874L-4.206 43.874Q-4.151 44.151-3.954 44.374Q-3.756 44.596-3.479 44.719Q-3.202 44.842-2.917 44.842Q-2.444 44.842-2.221 44.553Q-2.213 44.542-2.157 44.436Q-2.100 44.331-2.051 44.288Q-2.002 44.245-1.909 44.233L-1.764 44.233Q-1.573 44.253-1.514 44.467L-1.514 44.522Q-1.581 44.823-1.811 45.020Q-2.042 45.217-2.354 45.309Q-2.667 45.401-2.971 45.401Q-3.456 45.401-3.895 45.173Q-4.335 44.944-4.602 44.544Q-4.870 44.143-4.870 43.651L-4.870 43.592Q-4.870 43.124-4.624 42.721Q-4.377 42.319-3.969 42.085Q-3.561 41.850-3.092 41.850Q-2.588 41.850-2.235 42.073Q-1.881 42.296-1.698 42.684Q-1.514 43.073-1.514 43.577L-1.514 43.635Q-1.573 43.850-1.764 43.874M-4.198 43.323L-2.170 43.323Q-2.217 42.913-2.456 42.661Q-2.694 42.409-3.092 42.409Q-3.487 42.409-3.793 42.671Q-4.100 42.932-4.198 43.323M-0.444 45.163L-0.444 44.249Q-0.417 44.042-0.206 44.018L-0.038 44.018Q0.126 44.042 0.185 44.202Q0.388 44.842 1.115 44.842Q1.322 44.842 1.550 44.807Q1.779 44.772 1.947 44.657Q2.115 44.542 2.115 44.339Q2.115 44.128 1.892 44.014Q1.669 43.901 1.396 43.858L0.697 43.745Q-0.444 43.534-0.444 42.811Q-0.444 42.522-0.299 42.333Q-0.155 42.143 0.085 42.036Q0.326 41.928 0.582 41.889Q0.837 41.850 1.115 41.850Q1.365 41.850 1.558 41.880Q1.751 41.909 1.915 41.987Q1.994 41.870 2.123 41.850L2.201 41.850Q2.298 41.862 2.361 41.925Q2.423 41.987 2.435 42.081L2.435 42.788Q2.423 42.882 2.361 42.948Q2.298 43.014 2.201 43.026L2.033 43.026Q1.939 43.014 1.873 42.948Q1.806 42.882 1.794 42.788Q1.794 42.409 1.099 42.409Q0.751 42.409 0.433 42.491Q0.115 42.573 0.115 42.819Q0.115 43.085 0.787 43.194L1.490 43.315Q1.974 43.397 2.324 43.645Q2.673 43.893 2.673 44.339Q2.673 44.729 2.437 44.971Q2.201 45.214 1.851 45.307Q1.501 45.401 1.115 45.401Q0.537 45.401 0.138 45.147Q0.068 45.272 0.019 45.329Q-0.030 45.385-0.135 45.401L-0.206 45.401Q-0.420 45.378-0.444 45.163M6.728 43.874L4.287 43.874Q4.341 44.151 4.539 44.374Q4.736 44.596 5.013 44.719Q5.290 44.842 5.576 44.842Q6.048 44.842 6.271 44.553Q6.279 44.542 6.335 44.436Q6.392 44.331 6.441 44.288Q6.490 44.245 6.583 44.233L6.728 44.233Q6.919 44.253 6.978 44.467L6.978 44.522Q6.912 44.823 6.681 45.020Q6.451 45.217 6.138 45.309Q5.826 45.401 5.521 45.401Q5.037 45.401 4.597 45.173Q4.158 44.944 3.890 44.544Q3.623 44.143 3.623 43.651L3.623 43.592Q3.623 43.124 3.869 42.721Q4.115 42.319 4.523 42.085Q4.931 41.850 5.400 41.850Q5.904 41.850 6.257 42.073Q6.611 42.296 6.794 42.684Q6.978 43.073 6.978 43.577L6.978 43.635Q6.919 43.850 6.728 43.874M4.294 43.323L6.322 43.323Q6.275 42.913 6.037 42.661Q5.798 42.409 5.400 42.409Q5.005 42.409 4.699 42.671Q4.392 42.932 4.294 43.323M8.662 44.257L8.662 42.475L7.912 42.475Q7.712 42.452 7.662 42.233L7.662 42.147Q7.712 41.936 7.912 41.913L8.662 41.913L8.662 41.163Q8.712 40.956 8.912 40.928L9.056 40.928Q9.251 40.956 9.302 41.163L9.302 41.913L10.662 41.913Q10.853 41.932 10.912 42.147L10.912 42.233Q10.857 42.452 10.662 42.475L9.302 42.475L9.302 44.225Q9.302 44.842 9.876 44.842Q10.126 44.842 10.290 44.657Q10.455 44.471 10.455 44.225Q10.455 44.132 10.527 44.061Q10.599 43.991 10.701 43.979L10.845 43.979Q11.044 44.003 11.095 44.210L11.095 44.257Q11.095 44.581 10.912 44.844Q10.728 45.108 10.435 45.255Q10.142 45.401 9.822 45.401Q9.310 45.401 8.986 45.091Q8.662 44.780 8.662 44.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M-35.13-25.77h82.513v14.226h261.765\" style=\"stroke-width:.8\"\u002F>\u003Cg transform=\"translate(-47.581 -24.586)\">\u003Cpath d=\"M-8.963 43.635Q-8.963 43.155-8.719 42.741Q-8.475 42.327-8.059 42.089Q-7.643 41.850-7.163 41.850Q-6.608 41.850-6.229 41.960Q-5.850 42.069-5.850 42.475Q-5.850 42.643-5.963 42.766Q-6.077 42.889-6.249 42.889Q-6.420 42.889-6.540 42.774Q-6.659 42.659-6.659 42.491L-6.659 42.432Q-6.819 42.409-7.155 42.409Q-7.483 42.409-7.751 42.579Q-8.018 42.749-8.170 43.032Q-8.323 43.315-8.323 43.635Q-8.323 43.956-8.151 44.237Q-7.979 44.518-7.694 44.680Q-7.409 44.842-7.081 44.842Q-6.768 44.842-6.641 44.739Q-6.514 44.635-6.397 44.446Q-6.280 44.257-6.163 44.241L-5.995 44.241Q-5.889 44.253-5.825 44.321Q-5.760 44.389-5.760 44.491Q-5.760 44.538-5.780 44.577Q-5.889 44.870-6.092 45.050Q-6.295 45.229-6.571 45.315Q-6.846 45.401-7.163 45.401Q-7.647 45.401-8.063 45.163Q-8.479 44.925-8.721 44.522Q-8.963 44.120-8.963 43.635M-4.827 45.124L-4.827 45.034Q-4.776 44.827-4.581 44.803L-3.475 44.803L-3.475 41.034L-4.581 41.034Q-4.776 41.010-4.827 40.796L-4.827 40.706Q-4.776 40.499-4.581 40.475L-3.085 40.475Q-2.893 40.499-2.835 40.706L-2.835 44.803L-1.733 44.803Q-1.534 44.827-1.483 45.034L-1.483 45.124Q-1.534 45.339-1.733 45.362L-4.581 45.362Q-4.776 45.339-4.827 45.124M-0.885 45.124L-0.885 45.034Q-0.835 44.827-0.639 44.803L-0.174 44.803L-0.174 41.034L-0.639 41.034Q-0.835 41.010-0.885 40.796L-0.885 40.706Q-0.835 40.499-0.639 40.475L0.107 40.475Q0.302 40.495 0.353 40.706L0.353 43.530L1.498 42.475L1.201 42.475Q0.994 42.452 0.955 42.233L0.955 42.147Q0.994 41.936 1.201 41.913L2.650 41.913Q2.853 41.936 2.900 42.147L2.900 42.233Q2.857 42.452 2.650 42.475L2.283 42.475L1.337 43.339L2.490 44.803L2.826 44.803Q3.033 44.827 3.076 45.034L3.076 45.124Q3.033 45.339 2.826 45.362L1.658 45.362Q1.462 45.339 1.412 45.124L1.412 45.034Q1.462 44.827 1.658 44.803L1.818 44.803L0.955 43.698L0.353 44.249L0.353 44.803L0.818 44.803Q1.009 44.827 1.068 45.034L1.068 45.124Q1.009 45.339 0.818 45.362L-0.639 45.362Q-0.835 45.339-0.885 45.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-35.13 25.445h32.72V11.219h32.721v14.226h32.721V11.219h32.72v14.226h32.722V11.219h32.72v14.226h32.72V11.219h32.722v14.226h32.72V11.219h32.721v14.226h17.071\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(90.4 -5.558)\">\u003Cpath d=\"M-8.963 43.635Q-8.963 43.155-8.719 42.741Q-8.475 42.327-8.059 42.089Q-7.643 41.850-7.163 41.850Q-6.608 41.850-6.229 41.960Q-5.850 42.069-5.850 42.475Q-5.850 42.643-5.963 42.766Q-6.077 42.889-6.249 42.889Q-6.420 42.889-6.540 42.774Q-6.659 42.659-6.659 42.491L-6.659 42.432Q-6.819 42.409-7.155 42.409Q-7.483 42.409-7.751 42.579Q-8.018 42.749-8.170 43.032Q-8.323 43.315-8.323 43.635Q-8.323 43.956-8.151 44.237Q-7.979 44.518-7.694 44.680Q-7.409 44.842-7.081 44.842Q-6.768 44.842-6.641 44.739Q-6.514 44.635-6.397 44.446Q-6.280 44.257-6.163 44.241L-5.995 44.241Q-5.889 44.253-5.825 44.321Q-5.760 44.389-5.760 44.491Q-5.760 44.538-5.780 44.577Q-5.889 44.870-6.092 45.050Q-6.295 45.229-6.571 45.315Q-6.846 45.401-7.163 45.401Q-7.647 45.401-8.063 45.163Q-8.479 44.925-8.721 44.522Q-8.963 44.120-8.963 43.635M-4.932 46.483Q-4.932 46.374-4.881 46.282Q-4.831 46.190-4.739 46.139Q-4.647 46.089-4.542 46.089Q-4.432 46.089-4.340 46.139Q-4.249 46.190-4.198 46.282Q-4.147 46.374-4.147 46.483L-4.292 46.483Q-4.292 46.620-4.268 46.620Q-4.010 46.620-3.823 46.428Q-3.635 46.237-3.549 45.971L-3.338 45.362L-4.475 42.475L-4.803 42.475Q-4.999 42.452-5.053 42.233L-5.053 42.147Q-4.995 41.936-4.803 41.913L-3.643 41.913Q-3.448 41.936-3.397 42.147L-3.397 42.233Q-3.448 42.452-3.643 42.475L-3.909 42.475Q-3.573 43.323-3.329 43.977Q-3.085 44.632-3.085 44.721L-3.077 44.721Q-3.077 44.663-2.985 44.370Q-2.893 44.077-2.700 43.493Q-2.506 42.909-2.366 42.475L-2.643 42.475Q-2.854 42.452-2.893 42.233L-2.893 42.147Q-2.842 41.932-2.643 41.913L-1.491 41.913Q-1.284 41.936-1.245 42.147L-1.245 42.233Q-1.284 42.452-1.491 42.475L-1.811 42.475L-2.987 45.971Q-3.155 46.471-3.481 46.825Q-3.807 47.178-4.268 47.178Q-4.542 47.178-4.737 46.967Q-4.932 46.757-4.932 46.483M-0.471 43.635Q-0.471 43.155-0.227 42.741Q0.017 42.327 0.433 42.089Q0.849 41.850 1.330 41.850Q1.884 41.850 2.263 41.960Q2.642 42.069 2.642 42.475Q2.642 42.643 2.529 42.766Q2.415 42.889 2.244 42.889Q2.072 42.889 1.953 42.774Q1.833 42.659 1.833 42.491L1.833 42.432Q1.673 42.409 1.337 42.409Q1.009 42.409 0.742 42.579Q0.474 42.749 0.322 43.032Q0.169 43.315 0.169 43.635Q0.169 43.956 0.341 44.237Q0.513 44.518 0.798 44.680Q1.083 44.842 1.412 44.842Q1.724 44.842 1.851 44.739Q1.978 44.635 2.095 44.446Q2.212 44.257 2.330 44.241L2.498 44.241Q2.603 44.253 2.667 44.321Q2.732 44.389 2.732 44.491Q2.732 44.538 2.712 44.577Q2.603 44.870 2.400 45.050Q2.197 45.229 1.921 45.315Q1.646 45.401 1.330 45.401Q0.845 45.401 0.429 45.163Q0.013 44.925-0.229 44.522Q-0.471 44.120-0.471 43.635M3.665 45.124L3.665 45.034Q3.716 44.827 3.912 44.803L5.017 44.803L5.017 41.034L3.912 41.034Q3.716 41.010 3.665 40.796L3.665 40.706Q3.716 40.499 3.912 40.475L5.408 40.475Q5.599 40.499 5.658 40.706L5.658 44.803L6.759 44.803Q6.958 44.827 7.009 45.034L7.009 45.124Q6.958 45.339 6.759 45.362L3.912 45.362Q3.716 45.339 3.665 45.124M10.974 43.874L8.533 43.874Q8.587 44.151 8.785 44.374Q8.982 44.596 9.259 44.719Q9.537 44.842 9.822 44.842Q10.294 44.842 10.517 44.553Q10.525 44.542 10.582 44.436Q10.638 44.331 10.687 44.288Q10.736 44.245 10.830 44.233L10.974 44.233Q11.165 44.253 11.224 44.467L11.224 44.522Q11.158 44.823 10.927 45.020Q10.697 45.217 10.384 45.309Q10.072 45.401 9.767 45.401Q9.283 45.401 8.843 45.173Q8.404 44.944 8.136 44.544Q7.869 44.143 7.869 43.651L7.869 43.592Q7.869 43.124 8.115 42.721Q8.361 42.319 8.769 42.085Q9.177 41.850 9.646 41.850Q10.150 41.850 10.503 42.073Q10.857 42.296 11.040 42.684Q11.224 43.073 11.224 43.577L11.224 43.635Q11.165 43.850 10.974 43.874M8.540 43.323L10.568 43.323Q10.521 42.913 10.283 42.661Q10.044 42.409 9.646 42.409Q9.251 42.409 8.945 42.671Q8.638 42.932 8.540 43.323\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(90.4 -5.558)\">\u003Cpath d=\"M16.833 45.124L16.833 45.034Q16.884 44.827 17.083 44.803L17.900 44.803L17.900 41.620Q17.521 41.928 17.068 41.928Q16.837 41.928 16.787 41.698L16.787 41.608Q16.837 41.393 17.033 41.370Q17.361 41.370 17.615 41.132Q17.869 40.893 18.009 40.546Q18.080 40.417 18.236 40.393L18.291 40.393Q18.486 40.413 18.537 40.628L18.537 44.803L19.353 44.803Q19.552 44.827 19.603 45.034L19.603 45.124Q19.552 45.339 19.353 45.362L17.083 45.362Q16.884 45.339 16.833 45.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(155.841 -5.558)\">\u003Cpath d=\"M-8.963 43.635Q-8.963 43.155-8.719 42.741Q-8.475 42.327-8.059 42.089Q-7.643 41.850-7.163 41.850Q-6.608 41.850-6.229 41.960Q-5.850 42.069-5.850 42.475Q-5.850 42.643-5.963 42.766Q-6.077 42.889-6.249 42.889Q-6.420 42.889-6.540 42.774Q-6.659 42.659-6.659 42.491L-6.659 42.432Q-6.819 42.409-7.155 42.409Q-7.483 42.409-7.751 42.579Q-8.018 42.749-8.170 43.032Q-8.323 43.315-8.323 43.635Q-8.323 43.956-8.151 44.237Q-7.979 44.518-7.694 44.680Q-7.409 44.842-7.081 44.842Q-6.768 44.842-6.641 44.739Q-6.514 44.635-6.397 44.446Q-6.280 44.257-6.163 44.241L-5.995 44.241Q-5.889 44.253-5.825 44.321Q-5.760 44.389-5.760 44.491Q-5.760 44.538-5.780 44.577Q-5.889 44.870-6.092 45.050Q-6.295 45.229-6.571 45.315Q-6.846 45.401-7.163 45.401Q-7.647 45.401-8.063 45.163Q-8.479 44.925-8.721 44.522Q-8.963 44.120-8.963 43.635M-4.932 46.483Q-4.932 46.374-4.881 46.282Q-4.831 46.190-4.739 46.139Q-4.647 46.089-4.542 46.089Q-4.432 46.089-4.340 46.139Q-4.249 46.190-4.198 46.282Q-4.147 46.374-4.147 46.483L-4.292 46.483Q-4.292 46.620-4.268 46.620Q-4.010 46.620-3.823 46.428Q-3.635 46.237-3.549 45.971L-3.338 45.362L-4.475 42.475L-4.803 42.475Q-4.999 42.452-5.053 42.233L-5.053 42.147Q-4.995 41.936-4.803 41.913L-3.643 41.913Q-3.448 41.936-3.397 42.147L-3.397 42.233Q-3.448 42.452-3.643 42.475L-3.909 42.475Q-3.573 43.323-3.329 43.977Q-3.085 44.632-3.085 44.721L-3.077 44.721Q-3.077 44.663-2.985 44.370Q-2.893 44.077-2.700 43.493Q-2.506 42.909-2.366 42.475L-2.643 42.475Q-2.854 42.452-2.893 42.233L-2.893 42.147Q-2.842 41.932-2.643 41.913L-1.491 41.913Q-1.284 41.936-1.245 42.147L-1.245 42.233Q-1.284 42.452-1.491 42.475L-1.811 42.475L-2.987 45.971Q-3.155 46.471-3.481 46.825Q-3.807 47.178-4.268 47.178Q-4.542 47.178-4.737 46.967Q-4.932 46.757-4.932 46.483M-0.471 43.635Q-0.471 43.155-0.227 42.741Q0.017 42.327 0.433 42.089Q0.849 41.850 1.330 41.850Q1.884 41.850 2.263 41.960Q2.642 42.069 2.642 42.475Q2.642 42.643 2.529 42.766Q2.415 42.889 2.244 42.889Q2.072 42.889 1.953 42.774Q1.833 42.659 1.833 42.491L1.833 42.432Q1.673 42.409 1.337 42.409Q1.009 42.409 0.742 42.579Q0.474 42.749 0.322 43.032Q0.169 43.315 0.169 43.635Q0.169 43.956 0.341 44.237Q0.513 44.518 0.798 44.680Q1.083 44.842 1.412 44.842Q1.724 44.842 1.851 44.739Q1.978 44.635 2.095 44.446Q2.212 44.257 2.330 44.241L2.498 44.241Q2.603 44.253 2.667 44.321Q2.732 44.389 2.732 44.491Q2.732 44.538 2.712 44.577Q2.603 44.870 2.400 45.050Q2.197 45.229 1.921 45.315Q1.646 45.401 1.330 45.401Q0.845 45.401 0.429 45.163Q0.013 44.925-0.229 44.522Q-0.471 44.120-0.471 43.635M3.665 45.124L3.665 45.034Q3.716 44.827 3.912 44.803L5.017 44.803L5.017 41.034L3.912 41.034Q3.716 41.010 3.665 40.796L3.665 40.706Q3.716 40.499 3.912 40.475L5.408 40.475Q5.599 40.499 5.658 40.706L5.658 44.803L6.759 44.803Q6.958 44.827 7.009 45.034L7.009 45.124Q6.958 45.339 6.759 45.362L3.912 45.362Q3.716 45.339 3.665 45.124M10.974 43.874L8.533 43.874Q8.587 44.151 8.785 44.374Q8.982 44.596 9.259 44.719Q9.537 44.842 9.822 44.842Q10.294 44.842 10.517 44.553Q10.525 44.542 10.582 44.436Q10.638 44.331 10.687 44.288Q10.736 44.245 10.830 44.233L10.974 44.233Q11.165 44.253 11.224 44.467L11.224 44.522Q11.158 44.823 10.927 45.020Q10.697 45.217 10.384 45.309Q10.072 45.401 9.767 45.401Q9.283 45.401 8.843 45.173Q8.404 44.944 8.136 44.544Q7.869 44.143 7.869 43.651L7.869 43.592Q7.869 43.124 8.115 42.721Q8.361 42.319 8.769 42.085Q9.177 41.850 9.646 41.850Q10.150 41.850 10.503 42.073Q10.857 42.296 11.040 42.684Q11.224 43.073 11.224 43.577L11.224 43.635Q11.165 43.850 10.974 43.874M8.540 43.323L10.568 43.323Q10.521 42.913 10.283 42.661Q10.044 42.409 9.646 42.409Q9.251 42.409 8.945 42.671Q8.638 42.932 8.540 43.323\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(155.841 -5.558)\">\u003Cpath d=\"M16.404 45.124L16.404 45.050Q16.435 44.882 16.537 44.835L17.826 43.768Q18.158 43.491 18.339 43.339Q18.521 43.186 18.716 42.966Q18.912 42.745 19.033 42.495Q19.154 42.245 19.154 41.979Q19.154 41.655 18.978 41.421Q18.802 41.186 18.523 41.071Q18.244 40.956 17.923 40.956Q17.666 40.956 17.437 41.079Q17.208 41.202 17.107 41.417Q17.208 41.550 17.208 41.698Q17.208 41.858 17.089 41.981Q16.970 42.104 16.810 42.104Q16.634 42.104 16.519 41.979Q16.404 41.854 16.404 41.682Q16.404 41.389 16.539 41.147Q16.673 40.905 16.912 40.733Q17.150 40.561 17.417 40.477Q17.685 40.393 17.978 40.393Q18.458 40.393 18.874 40.583Q19.291 40.772 19.542 41.133Q19.794 41.495 19.794 41.979Q19.794 42.323 19.662 42.626Q19.529 42.928 19.304 43.188Q19.080 43.448 18.771 43.710Q18.462 43.971 18.251 44.147L17.443 44.803L19.154 44.803L19.154 44.659Q19.205 44.448 19.404 44.425L19.544 44.425Q19.744 44.444 19.794 44.659L19.794 45.124Q19.744 45.339 19.544 45.362L16.650 45.362Q16.455 45.342 16.404 45.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(221.283 -5.558)\">\u003Cpath d=\"M-8.963 43.635Q-8.963 43.155-8.719 42.741Q-8.475 42.327-8.059 42.089Q-7.643 41.850-7.163 41.850Q-6.608 41.850-6.229 41.960Q-5.850 42.069-5.850 42.475Q-5.850 42.643-5.963 42.766Q-6.077 42.889-6.249 42.889Q-6.420 42.889-6.540 42.774Q-6.659 42.659-6.659 42.491L-6.659 42.432Q-6.819 42.409-7.155 42.409Q-7.483 42.409-7.751 42.579Q-8.018 42.749-8.170 43.032Q-8.323 43.315-8.323 43.635Q-8.323 43.956-8.151 44.237Q-7.979 44.518-7.694 44.680Q-7.409 44.842-7.081 44.842Q-6.768 44.842-6.641 44.739Q-6.514 44.635-6.397 44.446Q-6.280 44.257-6.163 44.241L-5.995 44.241Q-5.889 44.253-5.825 44.321Q-5.760 44.389-5.760 44.491Q-5.760 44.538-5.780 44.577Q-5.889 44.870-6.092 45.050Q-6.295 45.229-6.571 45.315Q-6.846 45.401-7.163 45.401Q-7.647 45.401-8.063 45.163Q-8.479 44.925-8.721 44.522Q-8.963 44.120-8.963 43.635M-4.932 46.483Q-4.932 46.374-4.881 46.282Q-4.831 46.190-4.739 46.139Q-4.647 46.089-4.542 46.089Q-4.432 46.089-4.340 46.139Q-4.249 46.190-4.198 46.282Q-4.147 46.374-4.147 46.483L-4.292 46.483Q-4.292 46.620-4.268 46.620Q-4.010 46.620-3.823 46.428Q-3.635 46.237-3.549 45.971L-3.338 45.362L-4.475 42.475L-4.803 42.475Q-4.999 42.452-5.053 42.233L-5.053 42.147Q-4.995 41.936-4.803 41.913L-3.643 41.913Q-3.448 41.936-3.397 42.147L-3.397 42.233Q-3.448 42.452-3.643 42.475L-3.909 42.475Q-3.573 43.323-3.329 43.977Q-3.085 44.632-3.085 44.721L-3.077 44.721Q-3.077 44.663-2.985 44.370Q-2.893 44.077-2.700 43.493Q-2.506 42.909-2.366 42.475L-2.643 42.475Q-2.854 42.452-2.893 42.233L-2.893 42.147Q-2.842 41.932-2.643 41.913L-1.491 41.913Q-1.284 41.936-1.245 42.147L-1.245 42.233Q-1.284 42.452-1.491 42.475L-1.811 42.475L-2.987 45.971Q-3.155 46.471-3.481 46.825Q-3.807 47.178-4.268 47.178Q-4.542 47.178-4.737 46.967Q-4.932 46.757-4.932 46.483M-0.471 43.635Q-0.471 43.155-0.227 42.741Q0.017 42.327 0.433 42.089Q0.849 41.850 1.330 41.850Q1.884 41.850 2.263 41.960Q2.642 42.069 2.642 42.475Q2.642 42.643 2.529 42.766Q2.415 42.889 2.244 42.889Q2.072 42.889 1.953 42.774Q1.833 42.659 1.833 42.491L1.833 42.432Q1.673 42.409 1.337 42.409Q1.009 42.409 0.742 42.579Q0.474 42.749 0.322 43.032Q0.169 43.315 0.169 43.635Q0.169 43.956 0.341 44.237Q0.513 44.518 0.798 44.680Q1.083 44.842 1.412 44.842Q1.724 44.842 1.851 44.739Q1.978 44.635 2.095 44.446Q2.212 44.257 2.330 44.241L2.498 44.241Q2.603 44.253 2.667 44.321Q2.732 44.389 2.732 44.491Q2.732 44.538 2.712 44.577Q2.603 44.870 2.400 45.050Q2.197 45.229 1.921 45.315Q1.646 45.401 1.330 45.401Q0.845 45.401 0.429 45.163Q0.013 44.925-0.229 44.522Q-0.471 44.120-0.471 43.635M3.665 45.124L3.665 45.034Q3.716 44.827 3.912 44.803L5.017 44.803L5.017 41.034L3.912 41.034Q3.716 41.010 3.665 40.796L3.665 40.706Q3.716 40.499 3.912 40.475L5.408 40.475Q5.599 40.499 5.658 40.706L5.658 44.803L6.759 44.803Q6.958 44.827 7.009 45.034L7.009 45.124Q6.958 45.339 6.759 45.362L3.912 45.362Q3.716 45.339 3.665 45.124M10.974 43.874L8.533 43.874Q8.587 44.151 8.785 44.374Q8.982 44.596 9.259 44.719Q9.537 44.842 9.822 44.842Q10.294 44.842 10.517 44.553Q10.525 44.542 10.582 44.436Q10.638 44.331 10.687 44.288Q10.736 44.245 10.830 44.233L10.974 44.233Q11.165 44.253 11.224 44.467L11.224 44.522Q11.158 44.823 10.927 45.020Q10.697 45.217 10.384 45.309Q10.072 45.401 9.767 45.401Q9.283 45.401 8.843 45.173Q8.404 44.944 8.136 44.544Q7.869 44.143 7.869 43.651L7.869 43.592Q7.869 43.124 8.115 42.721Q8.361 42.319 8.769 42.085Q9.177 41.850 9.646 41.850Q10.150 41.850 10.503 42.073Q10.857 42.296 11.040 42.684Q11.224 43.073 11.224 43.577L11.224 43.635Q11.165 43.850 10.974 43.874M8.540 43.323L10.568 43.323Q10.521 42.913 10.283 42.661Q10.044 42.409 9.646 42.409Q9.251 42.409 8.945 42.671Q8.638 42.932 8.540 43.323\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(221.283 -5.558)\">\u003Cpath d=\"M16.330 44.315Q16.330 44.139 16.447 44.018Q16.564 43.897 16.740 43.897Q16.822 43.897 16.898 43.928Q16.974 43.960 17.025 44.010Q17.076 44.061 17.107 44.141Q17.138 44.221 17.138 44.300Q17.138 44.432 17.056 44.546Q17.326 44.882 18.115 44.882Q18.541 44.882 18.882 44.616Q19.224 44.350 19.224 43.936Q19.224 43.663 19.058 43.444Q18.892 43.225 18.632 43.114Q18.373 43.003 18.099 43.003L17.634 43.003Q17.423 42.979 17.392 42.760L17.392 42.675Q17.423 42.471 17.634 42.440L18.162 42.401Q18.376 42.401 18.568 42.278Q18.759 42.155 18.873 41.952Q18.986 41.749 18.986 41.538Q18.986 41.264 18.703 41.110Q18.419 40.956 18.115 40.956Q17.552 40.956 17.314 41.147Q17.376 41.260 17.376 41.370Q17.376 41.542 17.263 41.655Q17.150 41.768 16.978 41.768Q16.802 41.768 16.687 41.645Q16.572 41.522 16.572 41.354Q16.572 40.827 17.044 40.610Q17.517 40.393 18.115 40.393Q18.455 40.393 18.810 40.524Q19.166 40.655 19.396 40.913Q19.626 41.171 19.626 41.538Q19.626 41.882 19.458 42.186Q19.291 42.491 18.994 42.690Q19.365 42.870 19.615 43.206Q19.865 43.542 19.865 43.936Q19.865 44.382 19.611 44.723Q19.357 45.065 18.955 45.253Q18.552 45.440 18.115 45.440Q17.830 45.440 17.525 45.385Q17.220 45.331 16.945 45.204Q16.669 45.077 16.499 44.854Q16.330 44.632 16.330 44.315\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" stroke=\"var(--tk-accent)\" d=\"M63.032 8.373v-54.06M128.474 8.373v-36.988\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M-9.299 45.124L-9.299 45.034Q-9.241 44.827-9.049 44.803L-8.338 44.803L-8.338 42.475L-9.049 42.475Q-9.245 42.452-9.299 42.233L-9.299 42.147Q-9.241 41.936-9.049 41.913L-7.948 41.913Q-7.749 41.932-7.698 42.147L-7.698 42.475Q-7.436 42.190-7.081 42.032Q-6.725 41.874-6.338 41.874Q-6.045 41.874-5.811 42.008Q-5.577 42.143-5.577 42.409Q-5.577 42.577-5.686 42.694Q-5.795 42.811-5.963 42.811Q-6.116 42.811-6.231 42.700Q-6.346 42.589-6.346 42.432Q-6.721 42.432-7.036 42.633Q-7.350 42.835-7.524 43.169Q-7.698 43.503-7.698 43.882L-7.698 44.803L-6.752 44.803Q-6.545 44.827-6.506 45.034L-6.506 45.124Q-6.545 45.339-6.752 45.362L-9.049 45.362Q-9.241 45.339-9.299 45.124M-1.764 43.874L-4.206 43.874Q-4.151 44.151-3.954 44.374Q-3.756 44.596-3.479 44.719Q-3.202 44.842-2.917 44.842Q-2.444 44.842-2.221 44.553Q-2.213 44.542-2.157 44.436Q-2.100 44.331-2.051 44.288Q-2.002 44.245-1.909 44.233L-1.764 44.233Q-1.573 44.253-1.514 44.467L-1.514 44.522Q-1.581 44.823-1.811 45.020Q-2.042 45.217-2.354 45.309Q-2.667 45.401-2.971 45.401Q-3.456 45.401-3.895 45.173Q-4.335 44.944-4.602 44.544Q-4.870 44.143-4.870 43.651L-4.870 43.592Q-4.870 43.124-4.624 42.721Q-4.377 42.319-3.969 42.085Q-3.561 41.850-3.092 41.850Q-2.588 41.850-2.235 42.073Q-1.881 42.296-1.698 42.684Q-1.514 43.073-1.514 43.577L-1.514 43.635Q-1.573 43.850-1.764 43.874M-4.198 43.323L-2.170 43.323Q-2.217 42.913-2.456 42.661Q-2.694 42.409-3.092 42.409Q-3.487 42.409-3.793 42.671Q-4.100 42.932-4.198 43.323M-0.444 45.163L-0.444 44.249Q-0.417 44.042-0.206 44.018L-0.038 44.018Q0.126 44.042 0.185 44.202Q0.388 44.842 1.115 44.842Q1.322 44.842 1.550 44.807Q1.779 44.772 1.947 44.657Q2.115 44.542 2.115 44.339Q2.115 44.128 1.892 44.014Q1.669 43.901 1.396 43.858L0.697 43.745Q-0.444 43.534-0.444 42.811Q-0.444 42.522-0.299 42.333Q-0.155 42.143 0.085 42.036Q0.326 41.928 0.582 41.889Q0.837 41.850 1.115 41.850Q1.365 41.850 1.558 41.880Q1.751 41.909 1.915 41.987Q1.994 41.870 2.123 41.850L2.201 41.850Q2.298 41.862 2.361 41.925Q2.423 41.987 2.435 42.081L2.435 42.788Q2.423 42.882 2.361 42.948Q2.298 43.014 2.201 43.026L2.033 43.026Q1.939 43.014 1.873 42.948Q1.806 42.882 1.794 42.788Q1.794 42.409 1.099 42.409Q0.751 42.409 0.433 42.491Q0.115 42.573 0.115 42.819Q0.115 43.085 0.787 43.194L1.490 43.315Q1.974 43.397 2.324 43.645Q2.673 43.893 2.673 44.339Q2.673 44.729 2.437 44.971Q2.201 45.214 1.851 45.307Q1.501 45.401 1.115 45.401Q0.537 45.401 0.138 45.147Q0.068 45.272 0.019 45.329Q-0.030 45.385-0.135 45.401L-0.206 45.401Q-0.420 45.378-0.444 45.163M6.728 43.874L4.287 43.874Q4.341 44.151 4.539 44.374Q4.736 44.596 5.013 44.719Q5.290 44.842 5.576 44.842Q6.048 44.842 6.271 44.553Q6.279 44.542 6.335 44.436Q6.392 44.331 6.441 44.288Q6.490 44.245 6.583 44.233L6.728 44.233Q6.919 44.253 6.978 44.467L6.978 44.522Q6.912 44.823 6.681 45.020Q6.451 45.217 6.138 45.309Q5.826 45.401 5.521 45.401Q5.037 45.401 4.597 45.173Q4.158 44.944 3.890 44.544Q3.623 44.143 3.623 43.651L3.623 43.592Q3.623 43.124 3.869 42.721Q4.115 42.319 4.523 42.085Q4.931 41.850 5.400 41.850Q5.904 41.850 6.257 42.073Q6.611 42.296 6.794 42.684Q6.978 43.073 6.978 43.577L6.978 43.635Q6.919 43.850 6.728 43.874M4.294 43.323L6.322 43.323Q6.275 42.913 6.037 42.661Q5.798 42.409 5.400 42.409Q5.005 42.409 4.699 42.671Q4.392 42.932 4.294 43.323M8.662 44.257L8.662 42.475L7.912 42.475Q7.712 42.452 7.662 42.233L7.662 42.147Q7.712 41.936 7.912 41.913L8.662 41.913L8.662 41.163Q8.712 40.956 8.912 40.928L9.056 40.928Q9.251 40.956 9.302 41.163L9.302 41.913L10.662 41.913Q10.853 41.932 10.912 42.147L10.912 42.233Q10.857 42.452 10.662 42.475L9.302 42.475L9.302 44.225Q9.302 44.842 9.876 44.842Q10.126 44.842 10.290 44.657Q10.455 44.471 10.455 44.225Q10.455 44.132 10.527 44.061Q10.599 43.991 10.701 43.979L10.845 43.979Q11.044 44.003 11.095 44.210L11.095 44.257Q11.095 44.581 10.912 44.844Q10.728 45.108 10.435 45.255Q10.142 45.401 9.822 45.401Q9.310 45.401 8.986 45.091Q8.662 44.780 8.662 44.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M16.048 45.124L16.048 45.034Q16.091 44.827 16.298 44.803L16.720 44.803L16.720 41.034L16.298 41.034Q16.091 41.010 16.048 40.796L16.048 40.706Q16.091 40.499 16.298 40.475L17.115 40.475Q17.310 40.499 17.361 40.706L17.361 42.257Q17.822 41.874 18.419 41.874Q18.767 41.874 19.005 42.014Q19.244 42.155 19.359 42.413Q19.474 42.671 19.474 43.026L19.474 44.803L19.900 44.803Q20.107 44.827 20.146 45.034L20.146 45.124Q20.107 45.339 19.900 45.362L18.505 45.362Q18.310 45.339 18.259 45.124L18.259 45.034Q18.310 44.823 18.505 44.803L18.833 44.803L18.833 43.057Q18.833 42.749 18.744 42.591Q18.654 42.432 18.361 42.432Q18.091 42.432 17.863 42.563Q17.634 42.694 17.498 42.923Q17.361 43.151 17.361 43.417L17.361 44.803L17.787 44.803Q17.994 44.827 18.033 45.034L18.033 45.124Q17.994 45.339 17.787 45.362L16.298 45.362Q16.091 45.339 16.048 45.124M23.736 43.874L21.294 43.874Q21.349 44.151 21.546 44.374Q21.744 44.596 22.021 44.719Q22.298 44.842 22.583 44.842Q23.056 44.842 23.279 44.553Q23.287 44.542 23.343 44.436Q23.400 44.331 23.449 44.288Q23.498 44.245 23.591 44.233L23.736 44.233Q23.927 44.253 23.986 44.467L23.986 44.522Q23.919 44.823 23.689 45.020Q23.458 45.217 23.146 45.309Q22.833 45.401 22.529 45.401Q22.044 45.401 21.605 45.173Q21.166 44.944 20.898 44.544Q20.630 44.143 20.630 43.651L20.630 43.592Q20.630 43.124 20.876 42.721Q21.123 42.319 21.531 42.085Q21.939 41.850 22.408 41.850Q22.912 41.850 23.265 42.073Q23.619 42.296 23.802 42.684Q23.986 43.073 23.986 43.577L23.986 43.635Q23.927 43.850 23.736 43.874M21.302 43.323L23.330 43.323Q23.283 42.913 23.044 42.661Q22.806 42.409 22.408 42.409Q22.013 42.409 21.707 42.671Q21.400 42.932 21.302 43.323M24.919 45.124L24.919 45.034Q24.970 44.827 25.166 44.803L26.271 44.803L26.271 41.034L25.166 41.034Q24.970 41.010 24.919 40.796L24.919 40.706Q24.970 40.499 25.166 40.475L26.662 40.475Q26.853 40.499 26.912 40.706L26.912 44.803L28.013 44.803Q28.212 44.827 28.263 45.034L28.263 45.124Q28.212 45.339 28.013 45.362L25.166 45.362Q24.970 45.339 24.919 45.124M30.580 45.401Q30.115 45.401 29.749 45.151Q29.384 44.901 29.179 44.497Q28.974 44.092 28.974 43.635Q28.974 43.292 29.099 42.971Q29.224 42.651 29.457 42.401Q29.689 42.151 29.994 42.012Q30.298 41.874 30.654 41.874Q31.166 41.874 31.572 42.194L31.572 41.034L31.150 41.034Q30.939 41.010 30.900 40.796L30.900 40.706Q30.939 40.499 31.150 40.475L31.962 40.475Q32.162 40.499 32.212 40.706L32.212 44.803L32.638 44.803Q32.845 44.827 32.884 45.034L32.884 45.124Q32.845 45.339 32.638 45.362L31.822 45.362Q31.623 45.339 31.572 45.124L31.572 44.995Q31.376 45.186 31.115 45.294Q30.853 45.401 30.580 45.401M30.619 44.842Q30.978 44.842 31.230 44.573Q31.482 44.303 31.572 43.928L31.572 43.096Q31.513 42.909 31.386 42.758Q31.259 42.608 31.082 42.520Q30.904 42.432 30.708 42.432Q30.400 42.432 30.150 42.602Q29.900 42.772 29.755 43.057Q29.611 43.342 29.611 43.643Q29.611 44.092 29.896 44.467Q30.181 44.842 30.619 44.842M34.529 44.803Q34.529 44.581 34.695 44.415Q34.861 44.249 35.091 44.249Q35.240 44.249 35.367 44.327Q35.494 44.405 35.568 44.530Q35.642 44.655 35.642 44.803Q35.642 45.030 35.476 45.196Q35.310 45.362 35.091 45.362Q34.865 45.362 34.697 45.194Q34.529 45.026 34.529 44.803M34.529 42.467Q34.529 42.245 34.695 42.079Q34.861 41.913 35.091 41.913Q35.240 41.913 35.367 41.991Q35.494 42.069 35.568 42.194Q35.642 42.319 35.642 42.467Q35.642 42.694 35.476 42.860Q35.310 43.026 35.091 43.026Q34.865 43.026 34.697 42.858Q34.529 42.690 34.529 42.467\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M45.913 45.124L45.913 45.034Q45.952 44.827 46.163 44.803L46.471 44.803L46.471 41.034L46.163 41.034Q45.952 41.010 45.913 40.796L45.913 40.706Q45.952 40.499 46.163 40.475L48.112 40.475Q48.510 40.475 48.856 40.676Q49.202 40.878 49.409 41.223Q49.616 41.569 49.616 41.971Q49.616 42.378 49.411 42.721Q49.206 43.065 48.860 43.270Q48.514 43.475 48.112 43.475L47.112 43.475L47.112 44.803L47.424 44.803Q47.635 44.827 47.674 45.034L47.674 45.124Q47.635 45.339 47.424 45.362L46.163 45.362Q45.952 45.339 45.913 45.124M47.112 41.034L47.112 42.913L47.952 42.913Q48.213 42.913 48.450 42.790Q48.686 42.667 48.831 42.452Q48.975 42.237 48.975 41.971Q48.975 41.702 48.831 41.491Q48.686 41.280 48.450 41.157Q48.213 41.034 47.952 41.034L47.112 41.034M52.241 45.440Q51.791 45.440 51.426 45.216Q51.061 44.991 50.807 44.608Q50.553 44.225 50.428 43.782Q50.303 43.339 50.303 42.913Q50.303 42.487 50.428 42.048Q50.553 41.608 50.807 41.225Q51.061 40.842 51.420 40.618Q51.780 40.393 52.241 40.393Q52.518 40.393 52.776 40.485Q53.034 40.577 53.249 40.745L53.381 40.507Q53.409 40.456 53.463 40.425Q53.518 40.393 53.577 40.393L53.655 40.393Q53.749 40.405 53.811 40.464Q53.874 40.522 53.885 40.628L53.885 41.956Q53.874 42.057 53.811 42.120Q53.749 42.182 53.655 42.194L53.487 42.194Q53.385 42.182 53.323 42.116Q53.260 42.050 53.249 41.956Q53.209 41.690 53.086 41.466Q52.963 41.241 52.760 41.098Q52.557 40.956 52.295 40.956Q51.963 40.956 51.711 41.139Q51.459 41.323 51.288 41.624Q51.116 41.925 51.030 42.266Q50.944 42.608 50.944 42.913Q50.944 43.217 51.028 43.559Q51.112 43.901 51.284 44.204Q51.456 44.507 51.713 44.694Q51.971 44.882 52.303 44.882Q52.686 44.882 52.967 44.608Q53.249 44.335 53.249 43.948Q53.276 43.737 53.487 43.714L53.655 43.714Q53.885 43.753 53.885 43.979Q53.885 44.296 53.749 44.567Q53.612 44.839 53.377 45.036Q53.143 45.233 52.852 45.337Q52.561 45.440 52.241 45.440\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M62.127 43.827L59.081 43.827Q58.959 43.815 58.872 43.731Q58.784 43.647 58.784 43.522Q58.784 43.397 58.868 43.313Q58.952 43.229 59.081 43.210L62.127 43.210Q62.252 43.229 62.334 43.313Q62.416 43.397 62.416 43.522Q62.416 43.647 62.333 43.731Q62.249 43.815 62.127 43.827M62.127 42.620L59.081 42.620Q58.948 42.600 58.866 42.522Q58.784 42.444 58.784 42.315Q58.784 42.190 58.868 42.106Q58.952 42.022 59.081 42.003L62.127 42.003Q62.252 42.022 62.334 42.106Q62.416 42.190 62.416 42.315Q62.416 42.444 62.336 42.522Q62.256 42.600 62.127 42.620\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M69.100 45.440Q68.666 45.440 68.334 45.202Q68.002 44.964 67.782 44.575Q67.561 44.186 67.454 43.749Q67.346 43.311 67.346 42.913Q67.346 42.522 67.456 42.079Q67.565 41.635 67.782 41.255Q67.999 40.874 68.333 40.633Q68.666 40.393 69.100 40.393Q69.655 40.393 70.055 40.792Q70.456 41.190 70.653 41.776Q70.850 42.362 70.850 42.913Q70.850 43.467 70.653 44.055Q70.456 44.643 70.055 45.042Q69.655 45.440 69.100 45.440M69.100 44.882Q69.401 44.882 69.618 44.665Q69.834 44.448 69.961 44.120Q70.088 43.792 70.149 43.446Q70.209 43.100 70.209 42.819Q70.209 42.569 70.147 42.243Q70.084 41.917 69.954 41.626Q69.823 41.335 69.610 41.145Q69.397 40.956 69.100 40.956Q68.725 40.956 68.473 41.268Q68.221 41.581 68.104 42.014Q67.987 42.448 67.987 42.819Q67.987 43.217 68.100 43.698Q68.213 44.178 68.461 44.530Q68.709 44.882 69.100 44.882M71.483 45.124L71.483 45.034Q71.522 44.827 71.729 44.803L72.135 44.803L73.065 43.585L72.194 42.475L71.776 42.475Q71.581 42.456 71.530 42.233L71.530 42.147Q71.581 41.936 71.776 41.913L72.936 41.913Q73.135 41.936 73.186 42.147L73.186 42.233Q73.135 42.452 72.936 42.475L72.827 42.475L73.323 43.132L73.799 42.475L73.682 42.475Q73.483 42.452 73.432 42.233L73.432 42.147Q73.483 41.936 73.682 41.913L74.842 41.913Q75.038 41.932 75.088 42.147L75.088 42.233Q75.038 42.452 74.842 42.475L74.432 42.475L73.584 43.585L74.545 44.803L74.952 44.803Q75.151 44.827 75.202 45.034L75.202 45.124Q75.163 45.339 74.952 45.362L73.799 45.362Q73.592 45.339 73.553 45.124L73.553 45.034Q73.592 44.827 73.799 44.803L73.928 44.803L73.323 43.948L72.737 44.803L72.881 44.803Q73.088 44.827 73.127 45.034L73.127 45.124Q73.088 45.339 72.881 45.362L71.729 45.362Q71.534 45.342 71.483 45.124M77.592 45.440Q77.159 45.440 76.827 45.202Q76.495 44.964 76.274 44.575Q76.053 44.186 75.946 43.749Q75.838 43.311 75.838 42.913Q75.838 42.522 75.948 42.079Q76.057 41.635 76.274 41.255Q76.491 40.874 76.825 40.633Q77.159 40.393 77.592 40.393Q78.147 40.393 78.547 40.792Q78.948 41.190 79.145 41.776Q79.342 42.362 79.342 42.913Q79.342 43.467 79.145 44.055Q78.948 44.643 78.547 45.042Q78.147 45.440 77.592 45.440M77.592 44.882Q77.893 44.882 78.110 44.665Q78.327 44.448 78.454 44.120Q78.581 43.792 78.641 43.446Q78.702 43.100 78.702 42.819Q78.702 42.569 78.639 42.243Q78.577 41.917 78.446 41.626Q78.315 41.335 78.102 41.145Q77.889 40.956 77.592 40.956Q77.217 40.956 76.965 41.268Q76.713 41.581 76.596 42.014Q76.479 42.448 76.479 42.819Q76.479 43.217 76.592 43.698Q76.706 44.178 76.954 44.530Q77.202 44.882 77.592 44.882M81.838 45.440Q81.405 45.440 81.073 45.202Q80.741 44.964 80.520 44.575Q80.299 44.186 80.192 43.749Q80.084 43.311 80.084 42.913Q80.084 42.522 80.194 42.079Q80.303 41.635 80.520 41.255Q80.737 40.874 81.071 40.633Q81.405 40.393 81.838 40.393Q82.393 40.393 82.793 40.792Q83.194 41.190 83.391 41.776Q83.588 42.362 83.588 42.913Q83.588 43.467 83.391 44.055Q83.194 44.643 82.793 45.042Q82.393 45.440 81.838 45.440M81.838 44.882Q82.139 44.882 82.356 44.665Q82.573 44.448 82.700 44.120Q82.827 43.792 82.887 43.446Q82.948 43.100 82.948 42.819Q82.948 42.569 82.885 42.243Q82.823 41.917 82.692 41.626Q82.561 41.335 82.348 41.145Q82.135 40.956 81.838 40.956Q81.463 40.956 81.211 41.268Q80.959 41.581 80.842 42.014Q80.725 42.448 80.725 42.819Q80.725 43.217 80.838 43.698Q80.952 44.178 81.200 44.530Q81.448 44.882 81.838 44.882M86.084 45.440Q85.651 45.440 85.319 45.202Q84.987 44.964 84.766 44.575Q84.545 44.186 84.438 43.749Q84.331 43.311 84.331 42.913Q84.331 42.522 84.440 42.079Q84.549 41.635 84.766 41.255Q84.983 40.874 85.317 40.633Q85.651 40.393 86.084 40.393Q86.639 40.393 87.040 40.792Q87.440 41.190 87.637 41.776Q87.834 42.362 87.834 42.913Q87.834 43.467 87.637 44.055Q87.440 44.643 87.040 45.042Q86.639 45.440 86.084 45.440M86.084 44.882Q86.385 44.882 86.602 44.665Q86.819 44.448 86.946 44.120Q87.073 43.792 87.133 43.446Q87.194 43.100 87.194 42.819Q87.194 42.569 87.131 42.243Q87.069 41.917 86.938 41.626Q86.807 41.335 86.594 41.145Q86.381 40.956 86.084 40.956Q85.709 40.956 85.458 41.268Q85.206 41.581 85.088 42.014Q84.971 42.448 84.971 42.819Q84.971 43.217 85.084 43.698Q85.198 44.178 85.446 44.530Q85.694 44.882 86.084 44.882M89.928 46.475Q89.815 46.475 89.725 46.385Q89.635 46.296 89.635 46.186Q89.635 46.010 89.827 45.936Q90.045 45.885 90.217 45.727Q90.389 45.569 90.456 45.346Q90.432 45.346 90.401 45.362L90.338 45.362Q90.108 45.362 89.942 45.200Q89.776 45.038 89.776 44.803Q89.776 44.569 89.940 44.409Q90.104 44.249 90.338 44.249Q90.549 44.249 90.713 44.370Q90.877 44.491 90.967 44.684Q91.057 44.878 91.057 45.089Q91.057 45.565 90.758 45.954Q90.459 46.342 89.995 46.467Q89.971 46.475 89.928 46.475\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M96.952 45.124L96.952 45.034Q97.010 44.827 97.202 44.803L97.913 44.803L97.913 42.475L97.202 42.475Q97.006 42.452 96.952 42.233L96.952 42.147Q97.010 41.936 97.202 41.913L98.303 41.913Q98.502 41.932 98.553 42.147L98.553 42.475Q98.815 42.190 99.170 42.032Q99.526 41.874 99.913 41.874Q100.206 41.874 100.440 42.008Q100.674 42.143 100.674 42.409Q100.674 42.577 100.565 42.694Q100.456 42.811 100.288 42.811Q100.135 42.811 100.020 42.700Q99.905 42.589 99.905 42.432Q99.530 42.432 99.215 42.633Q98.901 42.835 98.727 43.169Q98.553 43.503 98.553 43.882L98.553 44.803L99.499 44.803Q99.706 44.827 99.745 45.034L99.745 45.124Q99.706 45.339 99.499 45.362L97.202 45.362Q97.010 45.339 96.952 45.124M104.487 43.874L102.045 43.874Q102.100 44.151 102.297 44.374Q102.495 44.596 102.772 44.719Q103.049 44.842 103.334 44.842Q103.807 44.842 104.030 44.553Q104.038 44.542 104.094 44.436Q104.151 44.331 104.200 44.288Q104.249 44.245 104.342 44.233L104.487 44.233Q104.678 44.253 104.737 44.467L104.737 44.522Q104.670 44.823 104.440 45.020Q104.209 45.217 103.897 45.309Q103.584 45.401 103.280 45.401Q102.795 45.401 102.356 45.173Q101.916 44.944 101.649 44.544Q101.381 44.143 101.381 43.651L101.381 43.592Q101.381 43.124 101.627 42.721Q101.874 42.319 102.282 42.085Q102.690 41.850 103.159 41.850Q103.663 41.850 104.016 42.073Q104.370 42.296 104.553 42.684Q104.737 43.073 104.737 43.577L104.737 43.635Q104.678 43.850 104.487 43.874M102.053 43.323L104.081 43.323Q104.034 42.913 103.795 42.661Q103.557 42.409 103.159 42.409Q102.764 42.409 102.458 42.671Q102.151 42.932 102.053 43.323M105.459 46.010Q105.459 45.710 105.608 45.448Q105.756 45.186 106.006 45.026Q105.823 44.772 105.823 44.452Q105.823 44.167 105.975 43.905Q105.725 43.581 105.725 43.163Q105.725 42.803 105.916 42.507Q106.108 42.210 106.426 42.042Q106.745 41.874 107.108 41.874Q107.315 41.874 107.518 41.934Q107.721 41.995 107.885 42.096Q108.268 41.835 108.741 41.835Q108.979 41.835 109.161 41.966Q109.342 42.096 109.342 42.323Q109.342 42.471 109.241 42.577Q109.139 42.682 108.983 42.682Q108.850 42.682 108.754 42.604Q108.659 42.526 108.627 42.401Q108.483 42.409 108.284 42.499Q108.487 42.811 108.487 43.163Q108.487 43.444 108.375 43.676Q108.264 43.909 108.069 44.087Q107.874 44.264 107.622 44.362Q107.370 44.460 107.108 44.460Q106.721 44.460 106.389 44.272Q106.377 44.272 106.368 44.344Q106.358 44.417 106.358 44.452Q106.358 44.573 106.424 44.680Q106.491 44.788 106.612 44.827Q106.627 44.823 106.641 44.821Q106.655 44.819 106.678 44.819Q106.694 44.819 106.725 44.827Q106.756 44.835 106.764 44.835L107.358 44.835Q108.139 44.835 108.680 45.077Q109.221 45.319 109.221 46.010Q109.221 46.311 109.041 46.538Q108.862 46.764 108.565 46.909Q108.268 47.053 107.948 47.120Q107.627 47.186 107.342 47.186Q106.952 47.186 106.510 47.063Q106.069 46.940 105.764 46.673Q105.459 46.405 105.459 46.010M105.999 46.003Q105.999 46.221 106.239 46.362Q106.479 46.503 106.803 46.569Q107.127 46.635 107.342 46.635Q107.557 46.635 107.881 46.569Q108.206 46.503 108.446 46.362Q108.686 46.221 108.686 46.003Q108.686 45.714 108.461 45.575Q108.237 45.436 107.956 45.403Q107.674 45.370 107.327 45.370L106.709 45.370Q106.526 45.370 106.364 45.450Q106.202 45.530 106.100 45.676Q105.999 45.823 105.999 46.003M107.108 43.905Q107.409 43.905 107.627 43.686Q107.846 43.467 107.846 43.163Q107.846 43.007 107.791 42.876Q107.737 42.745 107.631 42.639Q107.526 42.534 107.395 42.479Q107.264 42.425 107.108 42.425Q106.803 42.425 106.584 42.643Q106.366 42.862 106.366 43.163Q106.366 43.460 106.588 43.682Q106.811 43.905 107.108 43.905M110.053 45.163L110.053 44.249Q110.081 44.042 110.291 44.018L110.459 44.018Q110.624 44.042 110.682 44.202Q110.885 44.842 111.612 44.842Q111.819 44.842 112.047 44.807Q112.276 44.772 112.444 44.657Q112.612 44.542 112.612 44.339Q112.612 44.128 112.389 44.014Q112.166 43.901 111.893 43.858L111.194 43.745Q110.053 43.534 110.053 42.811Q110.053 42.522 110.198 42.333Q110.342 42.143 110.583 42.036Q110.823 41.928 111.079 41.889Q111.334 41.850 111.612 41.850Q111.862 41.850 112.055 41.880Q112.249 41.909 112.413 41.987Q112.491 41.870 112.620 41.850L112.698 41.850Q112.795 41.862 112.858 41.925Q112.920 41.987 112.932 42.081L112.932 42.788Q112.920 42.882 112.858 42.948Q112.795 43.014 112.698 43.026L112.530 43.026Q112.436 43.014 112.370 42.948Q112.303 42.882 112.291 42.788Q112.291 42.409 111.596 42.409Q111.249 42.409 110.930 42.491Q110.612 42.573 110.612 42.819Q110.612 43.085 111.284 43.194L111.987 43.315Q112.471 43.397 112.821 43.645Q113.170 43.893 113.170 44.339Q113.170 44.729 112.934 44.971Q112.698 45.214 112.348 45.307Q111.999 45.401 111.612 45.401Q111.034 45.401 110.635 45.147Q110.565 45.272 110.516 45.329Q110.467 45.385 110.362 45.401L110.291 45.401Q110.077 45.378 110.053 45.163\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M121.628 43.827L118.582 43.827Q118.460 43.815 118.373 43.731Q118.285 43.647 118.285 43.522Q118.285 43.397 118.369 43.313Q118.453 43.229 118.582 43.210L121.628 43.210Q121.753 43.229 121.835 43.313Q121.918 43.397 121.918 43.522Q121.918 43.647 121.834 43.731Q121.750 43.815 121.628 43.827M121.628 42.620L118.582 42.620Q118.449 42.600 118.367 42.522Q118.285 42.444 118.285 42.315Q118.285 42.190 118.369 42.106Q118.453 42.022 118.582 42.003L121.628 42.003Q121.753 42.022 121.835 42.106Q121.918 42.190 121.918 42.315Q121.918 42.444 121.837 42.522Q121.757 42.600 121.628 42.620\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M128.601 45.440Q128.168 45.440 127.835 45.202Q127.503 44.964 127.283 44.575Q127.062 44.186 126.955 43.749Q126.847 43.311 126.847 42.913Q126.847 42.522 126.957 42.079Q127.066 41.635 127.283 41.255Q127.500 40.874 127.834 40.633Q128.168 40.393 128.601 40.393Q129.156 40.393 129.556 40.792Q129.957 41.190 130.154 41.776Q130.351 42.362 130.351 42.913Q130.351 43.467 130.154 44.055Q129.957 44.643 129.556 45.042Q129.156 45.440 128.601 45.440M128.601 44.882Q128.902 44.882 129.119 44.665Q129.335 44.448 129.462 44.120Q129.589 43.792 129.650 43.446Q129.710 43.100 129.710 42.819Q129.710 42.569 129.648 42.243Q129.585 41.917 129.455 41.626Q129.324 41.335 129.111 41.145Q128.898 40.956 128.601 40.956Q128.226 40.956 127.974 41.268Q127.722 41.581 127.605 42.014Q127.488 42.448 127.488 42.819Q127.488 43.217 127.601 43.698Q127.714 44.178 127.962 44.530Q128.210 44.882 128.601 44.882M132.445 46.475Q132.332 46.475 132.242 46.385Q132.152 46.296 132.152 46.186Q132.152 46.010 132.343 45.936Q132.562 45.885 132.734 45.727Q132.906 45.569 132.972 45.346Q132.949 45.346 132.918 45.362L132.855 45.362Q132.625 45.362 132.459 45.200Q132.293 45.038 132.293 44.803Q132.293 44.569 132.457 44.409Q132.621 44.249 132.855 44.249Q133.066 44.249 133.230 44.370Q133.394 44.491 133.484 44.684Q133.574 44.878 133.574 45.089Q133.574 45.565 133.275 45.954Q132.976 46.342 132.511 46.467Q132.488 46.475 132.445 46.475\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M142.878 45.362L139.878 45.362Q139.777 45.362 139.695 45.280Q139.613 45.198 139.613 45.096L139.613 44.987Q139.613 44.901 139.664 44.835L142.261 41.034L140.351 41.034L140.351 41.546Q140.304 41.760 140.101 41.788L139.957 41.788Q139.761 41.760 139.710 41.546L139.710 40.706Q139.761 40.499 139.957 40.475L142.824 40.475Q142.937 40.475 143.011 40.553Q143.085 40.632 143.085 40.737L143.085 40.850Q143.085 40.932 143.039 41.003L140.437 44.803L142.488 44.803L142.488 44.132Q142.539 43.921 142.734 43.897L142.878 43.897Q143.074 43.917 143.125 44.132L143.125 45.124Q143.074 45.339 142.878 45.362M143.683 45.124L143.683 45.034Q143.722 44.827 143.933 44.803L144.269 44.803L144.269 41.034L143.933 41.034Q143.722 41.010 143.683 40.796L143.683 40.706Q143.722 40.499 143.933 40.475L147.187 40.475Q147.386 40.499 147.437 40.706L147.437 41.546Q147.390 41.760 147.187 41.788L147.042 41.788Q146.847 41.760 146.796 41.546L146.796 41.034L144.910 41.034L144.910 42.635L145.917 42.635L145.917 42.417Q145.968 42.210 146.164 42.186L146.308 42.186Q146.503 42.206 146.554 42.417L146.554 43.401Q146.503 43.620 146.308 43.643L146.164 43.643Q145.968 43.624 145.917 43.401L145.917 43.194L144.910 43.194L144.910 44.803L145.398 44.803Q145.593 44.827 145.644 45.034L145.644 45.124Q145.593 45.339 145.398 45.362L143.933 45.362Q143.722 45.339 143.683 45.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M155.628 43.827L152.582 43.827Q152.460 43.815 152.373 43.731Q152.285 43.647 152.285 43.522Q152.285 43.397 152.369 43.313Q152.453 43.229 152.582 43.210L155.628 43.210Q155.753 43.229 155.835 43.313Q155.917 43.397 155.917 43.522Q155.917 43.647 155.834 43.731Q155.750 43.815 155.628 43.827M155.628 42.620L152.582 42.620Q152.449 42.600 152.367 42.522Q152.285 42.444 152.285 42.315Q152.285 42.190 152.369 42.106Q152.453 42.022 152.582 42.003L155.628 42.003Q155.753 42.022 155.835 42.106Q155.917 42.190 155.917 42.315Q155.917 42.444 155.837 42.522Q155.757 42.600 155.628 42.620\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M161.335 45.124L161.335 45.034Q161.386 44.827 161.585 44.803L162.402 44.803L162.402 41.620Q162.023 41.928 161.570 41.928Q161.339 41.928 161.289 41.698L161.289 41.608Q161.339 41.393 161.535 41.370Q161.863 41.370 162.117 41.132Q162.371 40.893 162.511 40.546Q162.582 40.417 162.738 40.393L162.792 40.393Q162.988 40.413 163.039 40.628L163.039 44.803L163.855 44.803Q164.054 44.827 164.105 45.034L164.105 45.124Q164.054 45.339 163.855 45.362L161.585 45.362Q161.386 45.339 161.335 45.124M166.445 46.475Q166.332 46.475 166.242 46.385Q166.152 46.296 166.152 46.186Q166.152 46.010 166.343 45.936Q166.562 45.885 166.734 45.727Q166.906 45.569 166.972 45.346Q166.949 45.346 166.917 45.362L166.855 45.362Q166.625 45.362 166.459 45.200Q166.292 45.038 166.292 44.803Q166.292 44.569 166.457 44.409Q166.621 44.249 166.855 44.249Q167.066 44.249 167.230 44.370Q167.394 44.491 167.484 44.684Q167.574 44.878 167.574 45.089Q167.574 45.565 167.275 45.954Q166.976 46.342 166.511 46.467Q166.488 46.475 166.445 46.475\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M173.656 45.202L173.656 43.971Q173.683 43.760 173.894 43.737L174.062 43.737Q174.156 43.749 174.218 43.807Q174.281 43.866 174.292 43.971Q174.292 44.464 174.658 44.673Q175.023 44.882 175.558 44.882Q175.792 44.882 175.996 44.774Q176.199 44.667 176.322 44.473Q176.445 44.280 176.445 44.050Q176.445 43.753 176.250 43.530Q176.054 43.307 175.765 43.241L174.757 43.010Q174.457 42.940 174.205 42.755Q173.953 42.569 173.804 42.301Q173.656 42.034 173.656 41.721Q173.656 41.342 173.865 41.038Q174.074 40.733 174.416 40.563Q174.757 40.393 175.132 40.393Q175.808 40.393 176.238 40.721L176.308 40.538Q176.382 40.417 176.519 40.393L176.597 40.393Q176.695 40.405 176.757 40.467Q176.820 40.530 176.832 40.628L176.832 41.858Q176.808 42.069 176.597 42.096L176.429 42.096Q176.234 42.073 176.199 41.889Q176.136 41.436 175.869 41.196Q175.601 40.956 175.140 40.956Q174.933 40.956 174.726 41.044Q174.519 41.132 174.386 41.300Q174.253 41.467 174.253 41.682Q174.253 41.936 174.447 42.133Q174.640 42.331 174.910 42.393L175.917 42.620Q176.246 42.698 176.500 42.901Q176.753 43.104 176.900 43.399Q177.046 43.694 177.046 44.010Q177.046 44.409 176.843 44.735Q176.640 45.061 176.296 45.251Q175.953 45.440 175.566 45.440Q174.765 45.440 174.246 45.124L174.175 45.300Q174.105 45.417 173.964 45.440L173.894 45.440Q173.679 45.417 173.656 45.202M178.675 44.257L178.675 42.475L177.925 42.475Q177.726 42.452 177.675 42.233L177.675 42.147Q177.726 41.936 177.925 41.913L178.675 41.913L178.675 41.163Q178.726 40.956 178.925 40.928L179.070 40.928Q179.265 40.956 179.316 41.163L179.316 41.913L180.675 41.913Q180.867 41.932 180.925 42.147L180.925 42.233Q180.871 42.452 180.675 42.475L179.316 42.475L179.316 44.225Q179.316 44.842 179.890 44.842Q180.140 44.842 180.304 44.657Q180.468 44.471 180.468 44.225Q180.468 44.132 180.541 44.061Q180.613 43.991 180.714 43.979L180.859 43.979Q181.058 44.003 181.109 44.210L181.109 44.257Q181.109 44.581 180.925 44.844Q180.742 45.108 180.449 45.255Q180.156 45.401 179.835 45.401Q179.324 45.401 179 45.091Q178.675 44.780 178.675 44.257M182.128 44.249Q182.128 43.803 182.542 43.546Q182.957 43.288 183.498 43.188Q184.039 43.089 184.546 43.081Q184.546 42.866 184.412 42.714Q184.277 42.561 184.070 42.485Q183.863 42.409 183.652 42.409Q183.308 42.409 183.148 42.432L183.148 42.491Q183.148 42.659 183.029 42.774Q182.910 42.889 182.746 42.889Q182.570 42.889 182.455 42.766Q182.339 42.643 182.339 42.475Q182.339 42.069 182.720 41.960Q183.101 41.850 183.660 41.850Q183.929 41.850 184.197 41.928Q184.464 42.007 184.689 42.157Q184.914 42.307 185.050 42.528Q185.187 42.749 185.187 43.026L185.187 44.745Q185.187 44.803 185.714 44.803Q185.910 44.823 185.960 45.034L185.960 45.124Q185.910 45.339 185.714 45.362L185.570 45.362Q185.226 45.362 184.998 45.315Q184.769 45.268 184.625 45.081Q184.164 45.401 183.457 45.401Q183.121 45.401 182.816 45.260Q182.511 45.120 182.320 44.858Q182.128 44.596 182.128 44.249M182.769 44.257Q182.769 44.530 183.011 44.686Q183.253 44.842 183.539 44.842Q183.757 44.842 183.990 44.784Q184.222 44.725 184.384 44.587Q184.546 44.448 184.546 44.225L184.546 43.635Q184.265 43.635 183.849 43.692Q183.433 43.749 183.101 43.887Q182.769 44.026 182.769 44.257M187.167 44.257L187.167 42.475L186.417 42.475Q186.218 42.452 186.167 42.233L186.167 42.147Q186.218 41.936 186.417 41.913L187.167 41.913L187.167 41.163Q187.218 40.956 187.417 40.928L187.562 40.928Q187.757 40.956 187.808 41.163L187.808 41.913L189.167 41.913Q189.359 41.932 189.417 42.147L189.417 42.233Q189.363 42.452 189.167 42.475L187.808 42.475L187.808 44.225Q187.808 44.842 188.382 44.842Q188.632 44.842 188.796 44.657Q188.960 44.471 188.960 44.225Q188.960 44.132 189.033 44.061Q189.105 43.991 189.207 43.979L189.351 43.979Q189.550 44.003 189.601 44.210L189.601 44.257Q189.601 44.581 189.417 44.844Q189.234 45.108 188.941 45.255Q188.648 45.401 188.328 45.401Q187.816 45.401 187.492 45.091Q187.167 44.780 187.167 44.257\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M198.129 43.827L195.083 43.827Q194.961 43.815 194.874 43.731Q194.786 43.647 194.786 43.522Q194.786 43.397 194.870 43.313Q194.954 43.229 195.083 43.210L198.129 43.210Q198.254 43.229 198.336 43.313Q198.418 43.397 198.418 43.522Q198.418 43.647 198.335 43.731Q198.251 43.815 198.129 43.827M198.129 42.620L195.083 42.620Q194.950 42.600 194.868 42.522Q194.786 42.444 194.786 42.315Q194.786 42.190 194.870 42.106Q194.954 42.022 195.083 42.003L198.129 42.003Q198.254 42.022 198.336 42.106Q198.418 42.190 198.418 42.315Q198.418 42.444 198.338 42.522Q198.258 42.600 198.129 42.620\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-22.074 -109.41)\">\u003Cpath d=\"M203.211 45.124L203.211 45.034Q203.270 44.823 203.461 44.803L203.684 44.803L204.637 40.620Q204.661 40.503 204.756 40.428Q204.852 40.354 204.965 40.354L205.239 40.354Q205.352 40.354 205.448 40.430Q205.543 40.507 205.567 40.620L206.516 44.803L206.743 44.803Q206.950 44.827 206.989 45.034L206.989 45.124Q206.938 45.339 206.743 45.362L205.661 45.362Q205.465 45.339 205.415 45.124L205.415 45.034Q205.465 44.827 205.661 44.803L205.860 44.803Q205.731 44.237 205.708 44.155L204.493 44.155Q204.450 44.339 204.340 44.803L204.540 44.803Q204.739 44.827 204.790 45.034L204.790 45.124Q204.739 45.339 204.540 45.362L203.461 45.362Q203.254 45.339 203.211 45.124M204.614 43.592L205.590 43.592Q205.110 41.460 205.110 41.116L205.102 41.116Q205.102 41.300 204.961 41.983Q204.821 42.667 204.614 43.592M207.946 45.042Q207.852 44.889 207.801 44.669Q207.751 44.448 207.723 44.147Q207.696 43.846 207.690 43.571Q207.684 43.296 207.684 42.913Q207.684 42.401 207.696 42.040Q207.708 41.678 207.766 41.331Q207.825 40.983 207.946 40.796Q208.126 40.534 208.485 40.464Q208.844 40.393 209.348 40.393Q209.852 40.393 210.210 40.464Q210.567 40.534 210.747 40.796Q210.872 40.979 210.930 41.329Q210.989 41.678 211.001 42.040Q211.012 42.401 211.012 42.913Q211.012 43.432 211.001 43.794Q210.989 44.155 210.930 44.507Q210.872 44.858 210.747 45.042Q210.563 45.300 210.208 45.370Q209.852 45.440 209.348 45.440Q208.844 45.440 208.487 45.370Q208.129 45.300 207.946 45.042M208.485 44.553Q208.586 44.760 208.811 44.821Q209.036 44.882 209.348 44.882Q209.661 44.882 209.883 44.821Q210.106 44.760 210.211 44.553Q210.317 44.339 210.344 43.901Q210.372 43.464 210.372 42.819Q210.372 41.546 210.211 41.249Q210.106 41.061 209.887 41.008Q209.668 40.956 209.348 40.956Q209.028 40.956 208.811 41.007Q208.594 41.057 208.485 41.249Q208.325 41.546 208.325 42.819Q208.325 43.128 208.327 43.296Q208.329 43.464 208.346 43.749Q208.364 44.034 208.397 44.235Q208.430 44.436 208.485 44.553M211.657 45.124L211.657 45.034Q211.696 44.827 211.907 44.803L212.153 44.803L212.153 41.034L211.907 41.034Q211.696 41.010 211.657 40.796L211.657 40.706Q211.696 40.499 211.907 40.475L212.938 40.475Q213.133 40.499 213.184 40.706L213.184 40.796Q213.133 41.010 212.938 41.034L212.680 41.034L212.680 42.987L214.258 41.034Q214.020 41.034 213.969 40.796L213.969 40.706Q214.020 40.499 214.215 40.475L215.153 40.475Q215.344 40.499 215.403 40.706L215.403 40.796Q215.344 41.010 215.153 41.034L214.938 41.034L213.739 42.514L215.047 44.803L215.235 44.803Q215.430 44.827 215.481 45.034L215.481 45.124Q215.430 45.339 215.235 45.362L214.403 45.362Q214.192 45.339 214.153 45.124L214.153 45.034Q214.192 44.827 214.403 44.803L214.442 44.803L213.383 42.956L212.680 43.827L212.680 44.803L212.938 44.803Q213.133 44.827 213.184 45.034L213.184 45.124Q213.133 45.339 212.938 45.362L211.907 45.362Q211.696 45.339 211.657 45.124\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M-9.299 45.124L-9.299 45.034Q-9.241 44.827-9.049 44.803L-8.338 44.803L-8.338 42.475L-9.049 42.475Q-9.245 42.452-9.299 42.233L-9.299 42.147Q-9.241 41.936-9.049 41.913L-7.948 41.913Q-7.749 41.932-7.698 42.147L-7.698 42.475Q-7.436 42.190-7.081 42.032Q-6.725 41.874-6.338 41.874Q-6.045 41.874-5.811 42.008Q-5.577 42.143-5.577 42.409Q-5.577 42.577-5.686 42.694Q-5.795 42.811-5.963 42.811Q-6.116 42.811-6.231 42.700Q-6.346 42.589-6.346 42.432Q-6.721 42.432-7.036 42.633Q-7.350 42.835-7.524 43.169Q-7.698 43.503-7.698 43.882L-7.698 44.803L-6.752 44.803Q-6.545 44.827-6.506 45.034L-6.506 45.124Q-6.545 45.339-6.752 45.362L-9.049 45.362Q-9.241 45.339-9.299 45.124M-1.764 43.874L-4.206 43.874Q-4.151 44.151-3.954 44.374Q-3.756 44.596-3.479 44.719Q-3.202 44.842-2.917 44.842Q-2.444 44.842-2.221 44.553Q-2.213 44.542-2.157 44.436Q-2.100 44.331-2.051 44.288Q-2.002 44.245-1.909 44.233L-1.764 44.233Q-1.573 44.253-1.514 44.467L-1.514 44.522Q-1.581 44.823-1.811 45.020Q-2.042 45.217-2.354 45.309Q-2.667 45.401-2.971 45.401Q-3.456 45.401-3.895 45.173Q-4.335 44.944-4.602 44.544Q-4.870 44.143-4.870 43.651L-4.870 43.592Q-4.870 43.124-4.624 42.721Q-4.377 42.319-3.969 42.085Q-3.561 41.850-3.092 41.850Q-2.588 41.850-2.235 42.073Q-1.881 42.296-1.698 42.684Q-1.514 43.073-1.514 43.577L-1.514 43.635Q-1.573 43.850-1.764 43.874M-4.198 43.323L-2.170 43.323Q-2.217 42.913-2.456 42.661Q-2.694 42.409-3.092 42.409Q-3.487 42.409-3.793 42.671Q-4.100 42.932-4.198 43.323M-0.581 45.124L-0.581 45.034Q-0.530 44.827-0.335 44.803L0.771 44.803L0.771 41.034L-0.335 41.034Q-0.530 41.010-0.581 40.796L-0.581 40.706Q-0.530 40.499-0.335 40.475L1.162 40.475Q1.353 40.499 1.412 40.706L1.412 44.803L2.513 44.803Q2.712 44.827 2.763 45.034L2.763 45.124Q2.712 45.339 2.513 45.362L-0.335 45.362Q-0.530 45.339-0.581 45.124M6.728 43.874L4.287 43.874Q4.341 44.151 4.539 44.374Q4.736 44.596 5.013 44.719Q5.290 44.842 5.576 44.842Q6.048 44.842 6.271 44.553Q6.279 44.542 6.335 44.436Q6.392 44.331 6.441 44.288Q6.490 44.245 6.583 44.233L6.728 44.233Q6.919 44.253 6.978 44.467L6.978 44.522Q6.912 44.823 6.681 45.020Q6.451 45.217 6.138 45.309Q5.826 45.401 5.521 45.401Q5.037 45.401 4.597 45.173Q4.158 44.944 3.890 44.544Q3.623 44.143 3.623 43.651L3.623 43.592Q3.623 43.124 3.869 42.721Q4.115 42.319 4.523 42.085Q4.931 41.850 5.400 41.850Q5.904 41.850 6.257 42.073Q6.611 42.296 6.794 42.684Q6.978 43.073 6.978 43.577L6.978 43.635Q6.919 43.850 6.728 43.874M4.294 43.323L6.322 43.323Q6.275 42.913 6.037 42.661Q5.798 42.409 5.400 42.409Q5.005 42.409 4.699 42.671Q4.392 42.932 4.294 43.323M7.869 44.249Q7.869 43.803 8.283 43.546Q8.697 43.288 9.238 43.188Q9.779 43.089 10.287 43.081Q10.287 42.866 10.152 42.714Q10.017 42.561 9.810 42.485Q9.603 42.409 9.392 42.409Q9.048 42.409 8.888 42.432L8.888 42.491Q8.888 42.659 8.769 42.774Q8.650 42.889 8.486 42.889Q8.310 42.889 8.195 42.766Q8.080 42.643 8.080 42.475Q8.080 42.069 8.460 41.960Q8.841 41.850 9.400 41.850Q9.669 41.850 9.937 41.928Q10.205 42.007 10.429 42.157Q10.654 42.307 10.790 42.528Q10.927 42.749 10.927 43.026L10.927 44.745Q10.927 44.803 11.455 44.803Q11.650 44.823 11.701 45.034L11.701 45.124Q11.650 45.339 11.455 45.362L11.310 45.362Q10.966 45.362 10.738 45.315Q10.509 45.268 10.365 45.081Q9.904 45.401 9.197 45.401Q8.861 45.401 8.556 45.260Q8.251 45.120 8.060 44.858Q7.869 44.596 7.869 44.249M8.509 44.257Q8.509 44.530 8.751 44.686Q8.994 44.842 9.279 44.842Q9.498 44.842 9.730 44.784Q9.962 44.725 10.124 44.587Q10.287 44.448 10.287 44.225L10.287 43.635Q10.005 43.635 9.589 43.692Q9.173 43.749 8.841 43.887Q8.509 44.026 8.509 44.257M12.294 45.163L12.294 44.249Q12.322 44.042 12.533 44.018L12.701 44.018Q12.865 44.042 12.923 44.202Q13.126 44.842 13.853 44.842Q14.060 44.842 14.289 44.807Q14.517 44.772 14.685 44.657Q14.853 44.542 14.853 44.339Q14.853 44.128 14.630 44.014Q14.408 43.901 14.134 43.858L13.435 43.745Q12.294 43.534 12.294 42.811Q12.294 42.522 12.439 42.333Q12.583 42.143 12.824 42.036Q13.064 41.928 13.320 41.889Q13.576 41.850 13.853 41.850Q14.103 41.850 14.296 41.880Q14.490 41.909 14.654 41.987Q14.732 41.870 14.861 41.850L14.939 41.850Q15.037 41.862 15.099 41.925Q15.162 41.987 15.173 42.081L15.173 42.788Q15.162 42.882 15.099 42.948Q15.037 43.014 14.939 43.026L14.771 43.026Q14.677 43.014 14.611 42.948Q14.544 42.882 14.533 42.788Q14.533 42.409 13.837 42.409Q13.490 42.409 13.171 42.491Q12.853 42.573 12.853 42.819Q12.853 43.085 13.525 43.194L14.228 43.315Q14.712 43.397 15.062 43.645Q15.412 43.893 15.412 44.339Q15.412 44.729 15.175 44.971Q14.939 45.214 14.589 45.307Q14.240 45.401 13.853 45.401Q13.275 45.401 12.876 45.147Q12.806 45.272 12.757 45.329Q12.708 45.385 12.603 45.401L12.533 45.401Q12.318 45.378 12.294 45.163M19.466 43.874L17.025 43.874Q17.080 44.151 17.277 44.374Q17.474 44.596 17.751 44.719Q18.029 44.842 18.314 44.842Q18.787 44.842 19.009 44.553Q19.017 44.542 19.074 44.436Q19.130 44.331 19.179 44.288Q19.228 44.245 19.322 44.233L19.466 44.233Q19.658 44.253 19.716 44.467L19.716 44.522Q19.650 44.823 19.419 45.020Q19.189 45.217 18.876 45.309Q18.564 45.401 18.259 45.401Q17.775 45.401 17.335 45.173Q16.896 44.944 16.628 44.544Q16.361 44.143 16.361 43.651L16.361 43.592Q16.361 43.124 16.607 42.721Q16.853 42.319 17.261 42.085Q17.669 41.850 18.138 41.850Q18.642 41.850 18.996 42.073Q19.349 42.296 19.533 42.684Q19.716 43.073 19.716 43.577L19.716 43.635Q19.658 43.850 19.466 43.874M17.033 43.323L19.060 43.323Q19.013 42.913 18.775 42.661Q18.537 42.409 18.138 42.409Q17.744 42.409 17.437 42.671Q17.130 42.932 17.033 43.323M21.767 44.803Q21.767 44.581 21.933 44.415Q22.099 44.249 22.330 44.249Q22.478 44.249 22.605 44.327Q22.732 44.405 22.806 44.530Q22.880 44.655 22.880 44.803Q22.880 45.030 22.714 45.196Q22.548 45.362 22.330 45.362Q22.103 45.362 21.935 45.194Q21.767 45.026 21.767 44.803M21.767 42.467Q21.767 42.245 21.933 42.079Q22.099 41.913 22.330 41.913Q22.478 41.913 22.605 41.991Q22.732 42.069 22.806 42.194Q22.880 42.319 22.880 42.467Q22.880 42.694 22.714 42.860Q22.548 43.026 22.330 43.026Q22.103 43.026 21.935 42.858Q21.767 42.690 21.767 42.467\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M33.537 43.635Q33.537 43.155 33.781 42.741Q34.025 42.327 34.441 42.089Q34.857 41.850 35.337 41.850Q35.892 41.850 36.271 41.960Q36.650 42.069 36.650 42.475Q36.650 42.643 36.537 42.766Q36.423 42.889 36.251 42.889Q36.080 42.889 35.960 42.774Q35.841 42.659 35.841 42.491L35.841 42.432Q35.681 42.409 35.345 42.409Q35.017 42.409 34.749 42.579Q34.482 42.749 34.330 43.032Q34.177 43.315 34.177 43.635Q34.177 43.956 34.349 44.237Q34.521 44.518 34.806 44.680Q35.091 44.842 35.419 44.842Q35.732 44.842 35.859 44.739Q35.986 44.635 36.103 44.446Q36.220 44.257 36.337 44.241L36.505 44.241Q36.611 44.253 36.675 44.321Q36.740 44.389 36.740 44.491Q36.740 44.538 36.720 44.577Q36.611 44.870 36.408 45.050Q36.205 45.229 35.929 45.315Q35.654 45.401 35.337 45.401Q34.853 45.401 34.437 45.163Q34.021 44.925 33.779 44.522Q33.537 44.120 33.537 43.635M37.568 46.483Q37.568 46.374 37.619 46.282Q37.669 46.190 37.761 46.139Q37.853 46.089 37.958 46.089Q38.068 46.089 38.160 46.139Q38.251 46.190 38.302 46.282Q38.353 46.374 38.353 46.483L38.208 46.483Q38.208 46.620 38.232 46.620Q38.490 46.620 38.677 46.428Q38.865 46.237 38.951 45.971L39.162 45.362L38.025 42.475L37.697 42.475Q37.501 42.452 37.447 42.233L37.447 42.147Q37.505 41.936 37.697 41.913L38.857 41.913Q39.052 41.936 39.103 42.147L39.103 42.233Q39.052 42.452 38.857 42.475L38.591 42.475Q38.927 43.323 39.171 43.977Q39.416 44.632 39.416 44.721L39.423 44.721Q39.423 44.663 39.515 44.370Q39.607 44.077 39.800 43.493Q39.994 42.909 40.134 42.475L39.857 42.475Q39.646 42.452 39.607 42.233L39.607 42.147Q39.658 41.932 39.857 41.913L41.009 41.913Q41.216 41.936 41.255 42.147L41.255 42.233Q41.216 42.452 41.009 42.475L40.689 42.475L39.513 45.971Q39.345 46.471 39.019 46.825Q38.693 47.178 38.232 47.178Q37.958 47.178 37.763 46.967Q37.568 46.757 37.568 46.483M42.029 43.635Q42.029 43.155 42.273 42.741Q42.517 42.327 42.933 42.089Q43.349 41.850 43.830 41.850Q44.384 41.850 44.763 41.960Q45.142 42.069 45.142 42.475Q45.142 42.643 45.029 42.766Q44.916 42.889 44.744 42.889Q44.572 42.889 44.453 42.774Q44.333 42.659 44.333 42.491L44.333 42.432Q44.173 42.409 43.837 42.409Q43.509 42.409 43.242 42.579Q42.974 42.749 42.822 43.032Q42.669 43.315 42.669 43.635Q42.669 43.956 42.841 44.237Q43.013 44.518 43.298 44.680Q43.583 44.842 43.912 44.842Q44.224 44.842 44.351 44.739Q44.478 44.635 44.595 44.446Q44.712 44.257 44.830 44.241L44.998 44.241Q45.103 44.253 45.167 44.321Q45.232 44.389 45.232 44.491Q45.232 44.538 45.212 44.577Q45.103 44.870 44.900 45.050Q44.697 45.229 44.421 45.315Q44.146 45.401 43.830 45.401Q43.345 45.401 42.929 45.163Q42.513 44.925 42.271 44.522Q42.029 44.120 42.029 43.635M46.166 45.124L46.166 45.034Q46.216 44.827 46.412 44.803L47.517 44.803L47.517 41.034L46.412 41.034Q46.216 41.010 46.166 40.796L46.166 40.706Q46.216 40.499 46.412 40.475L47.908 40.475Q48.099 40.499 48.158 40.706L48.158 44.803L49.259 44.803Q49.458 44.827 49.509 45.034L49.509 45.124Q49.458 45.339 49.259 45.362L46.412 45.362Q46.216 45.339 46.166 45.124M53.474 43.874L51.033 43.874Q51.087 44.151 51.285 44.374Q51.482 44.596 51.759 44.719Q52.037 44.842 52.322 44.842Q52.794 44.842 53.017 44.553Q53.025 44.542 53.082 44.436Q53.138 44.331 53.187 44.288Q53.236 44.245 53.330 44.233L53.474 44.233Q53.666 44.253 53.724 44.467L53.724 44.522Q53.658 44.823 53.427 45.020Q53.197 45.217 52.884 45.309Q52.572 45.401 52.267 45.401Q51.783 45.401 51.343 45.173Q50.904 44.944 50.636 44.544Q50.369 44.143 50.369 43.651L50.369 43.592Q50.369 43.124 50.615 42.721Q50.861 42.319 51.269 42.085Q51.677 41.850 52.146 41.850Q52.650 41.850 53.003 42.073Q53.357 42.296 53.541 42.684Q53.724 43.073 53.724 43.577L53.724 43.635Q53.666 43.850 53.474 43.874M51.041 43.323L53.068 43.323Q53.021 42.913 52.783 42.661Q52.544 42.409 52.146 42.409Q51.751 42.409 51.445 42.671Q51.138 42.932 51.041 43.323\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M59.334 45.124L59.334 45.034Q59.385 44.827 59.584 44.803L60.401 44.803L60.401 41.620Q60.022 41.928 59.569 41.928Q59.338 41.928 59.288 41.698L59.288 41.608Q59.338 41.393 59.534 41.370Q59.862 41.370 60.116 41.132Q60.370 40.893 60.510 40.546Q60.581 40.417 60.737 40.393L60.791 40.393Q60.987 40.413 61.038 40.628L61.038 44.803L61.854 44.803Q62.053 44.827 62.104 45.034L62.104 45.124Q62.053 45.339 61.854 45.362L59.584 45.362Q59.385 45.339 59.334 45.124\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M67.299 45.124L67.299 45.034Q67.350 44.827 67.545 44.803L68.428 44.803L68.428 42.475L67.573 42.475Q67.374 42.452 67.323 42.233L67.323 42.147Q67.374 41.936 67.573 41.913L68.428 41.913L68.428 41.460Q68.428 40.995 68.834 40.714Q69.241 40.432 69.721 40.432Q70.034 40.432 70.278 40.553Q70.522 40.675 70.522 40.956Q70.522 41.120 70.413 41.237Q70.303 41.354 70.139 41.354Q69.991 41.354 69.870 41.249Q69.749 41.143 69.749 40.995L69.666 40.995Q69.514 40.995 69.377 41.055Q69.241 41.116 69.155 41.231Q69.069 41.346 69.069 41.491L69.069 41.913L70.100 41.913Q70.295 41.932 70.346 42.147L70.346 42.233Q70.295 42.452 70.100 42.475L69.069 42.475L69.069 44.803L69.948 44.803Q70.143 44.827 70.194 45.034L70.194 45.124Q70.143 45.339 69.948 45.362L67.545 45.362Q67.350 45.339 67.299 45.124M74.737 43.874L72.295 43.874Q72.350 44.151 72.547 44.374Q72.745 44.596 73.022 44.719Q73.299 44.842 73.584 44.842Q74.057 44.842 74.280 44.553Q74.288 44.542 74.344 44.436Q74.401 44.331 74.450 44.288Q74.499 44.245 74.592 44.233L74.737 44.233Q74.928 44.253 74.987 44.467L74.987 44.522Q74.920 44.823 74.690 45.020Q74.459 45.217 74.147 45.309Q73.834 45.401 73.530 45.401Q73.045 45.401 72.606 45.173Q72.166 44.944 71.899 44.544Q71.631 44.143 71.631 43.651L71.631 43.592Q71.631 43.124 71.877 42.721Q72.124 42.319 72.532 42.085Q72.940 41.850 73.409 41.850Q73.913 41.850 74.266 42.073Q74.620 42.296 74.803 42.684Q74.987 43.073 74.987 43.577L74.987 43.635Q74.928 43.850 74.737 43.874M72.303 43.323L74.331 43.323Q74.284 42.913 74.045 42.661Q73.807 42.409 73.409 42.409Q73.014 42.409 72.708 42.671Q72.401 42.932 72.303 43.323M76.670 44.257L76.670 42.475L75.920 42.475Q75.721 42.452 75.670 42.233L75.670 42.147Q75.721 41.936 75.920 41.913L76.670 41.913L76.670 41.163Q76.721 40.956 76.920 40.928L77.065 40.928Q77.260 40.956 77.311 41.163L77.311 41.913L78.670 41.913Q78.862 41.932 78.920 42.147L78.920 42.233Q78.866 42.452 78.670 42.475L77.311 42.475L77.311 44.225Q77.311 44.842 77.885 44.842Q78.135 44.842 78.299 44.657Q78.463 44.471 78.463 44.225Q78.463 44.132 78.536 44.061Q78.608 43.991 78.709 43.979L78.854 43.979Q79.053 44.003 79.104 44.210L79.104 44.257Q79.104 44.581 78.920 44.844Q78.737 45.108 78.444 45.255Q78.151 45.401 77.831 45.401Q77.319 45.401 76.995 45.091Q76.670 44.780 76.670 44.257M80.276 43.635Q80.276 43.155 80.520 42.741Q80.764 42.327 81.180 42.089Q81.596 41.850 82.077 41.850Q82.631 41.850 83.010 41.960Q83.389 42.069 83.389 42.475Q83.389 42.643 83.276 42.766Q83.163 42.889 82.991 42.889Q82.819 42.889 82.700 42.774Q82.581 42.659 82.581 42.491L82.581 42.432Q82.420 42.409 82.084 42.409Q81.756 42.409 81.489 42.579Q81.221 42.749 81.069 43.032Q80.916 43.315 80.916 43.635Q80.916 43.956 81.088 44.237Q81.260 44.518 81.545 44.680Q81.831 44.842 82.159 44.842Q82.471 44.842 82.598 44.739Q82.725 44.635 82.842 44.446Q82.959 44.257 83.077 44.241L83.245 44.241Q83.350 44.253 83.415 44.321Q83.479 44.389 83.479 44.491Q83.479 44.538 83.459 44.577Q83.350 44.870 83.147 45.050Q82.944 45.229 82.668 45.315Q82.393 45.401 82.077 45.401Q81.592 45.401 81.176 45.163Q80.760 44.925 80.518 44.522Q80.276 44.120 80.276 43.635M84.034 45.124L84.034 45.034Q84.077 44.827 84.284 44.803L84.706 44.803L84.706 41.034L84.284 41.034Q84.077 41.010 84.034 40.796L84.034 40.706Q84.077 40.499 84.284 40.475L85.100 40.475Q85.295 40.499 85.346 40.706L85.346 42.257Q85.807 41.874 86.405 41.874Q86.752 41.874 86.991 42.014Q87.229 42.155 87.344 42.413Q87.459 42.671 87.459 43.026L87.459 44.803L87.885 44.803Q88.092 44.827 88.131 45.034L88.131 45.124Q88.092 45.339 87.885 45.362L86.491 45.362Q86.295 45.339 86.245 45.124L86.245 45.034Q86.295 44.823 86.491 44.803L86.819 44.803L86.819 43.057Q86.819 42.749 86.729 42.591Q86.639 42.432 86.346 42.432Q86.077 42.432 85.848 42.563Q85.620 42.694 85.483 42.923Q85.346 43.151 85.346 43.417L85.346 44.803L85.772 44.803Q85.979 44.827 86.018 45.034L86.018 45.124Q85.979 45.339 85.772 45.362L84.284 45.362Q84.077 45.339 84.034 45.124M91.721 43.874L89.280 43.874Q89.334 44.151 89.532 44.374Q89.729 44.596 90.006 44.719Q90.284 44.842 90.569 44.842Q91.041 44.842 91.264 44.553Q91.272 44.542 91.329 44.436Q91.385 44.331 91.434 44.288Q91.483 44.245 91.577 44.233L91.721 44.233Q91.913 44.253 91.971 44.467L91.971 44.522Q91.905 44.823 91.674 45.020Q91.444 45.217 91.131 45.309Q90.819 45.401 90.514 45.401Q90.030 45.401 89.590 45.173Q89.151 44.944 88.883 44.544Q88.616 44.143 88.616 43.651L88.616 43.592Q88.616 43.124 88.862 42.721Q89.108 42.319 89.516 42.085Q89.924 41.850 90.393 41.850Q90.897 41.850 91.250 42.073Q91.604 42.296 91.788 42.684Q91.971 43.073 91.971 43.577L91.971 43.635Q91.913 43.850 91.721 43.874M89.288 43.323L91.315 43.323Q91.268 42.913 91.030 42.661Q90.791 42.409 90.393 42.409Q89.999 42.409 89.692 42.671Q89.385 42.932 89.288 43.323M93.041 45.163L93.041 44.249Q93.069 44.042 93.280 44.018L93.448 44.018Q93.612 44.042 93.670 44.202Q93.874 44.842 94.600 44.842Q94.807 44.842 95.036 44.807Q95.264 44.772 95.432 44.657Q95.600 44.542 95.600 44.339Q95.600 44.128 95.377 44.014Q95.155 43.901 94.881 43.858L94.182 43.745Q93.041 43.534 93.041 42.811Q93.041 42.522 93.186 42.333Q93.331 42.143 93.571 42.036Q93.811 41.928 94.067 41.889Q94.323 41.850 94.600 41.850Q94.850 41.850 95.043 41.880Q95.237 41.909 95.401 41.987Q95.479 41.870 95.608 41.850L95.686 41.850Q95.784 41.862 95.846 41.925Q95.909 41.987 95.920 42.081L95.920 42.788Q95.909 42.882 95.846 42.948Q95.784 43.014 95.686 43.026L95.518 43.026Q95.424 43.014 95.358 42.948Q95.291 42.882 95.280 42.788Q95.280 42.409 94.584 42.409Q94.237 42.409 93.918 42.491Q93.600 42.573 93.600 42.819Q93.600 43.085 94.272 43.194L94.975 43.315Q95.459 43.397 95.809 43.645Q96.159 43.893 96.159 44.339Q96.159 44.729 95.922 44.971Q95.686 45.214 95.336 45.307Q94.987 45.401 94.600 45.401Q94.022 45.401 93.624 45.147Q93.553 45.272 93.504 45.329Q93.456 45.385 93.350 45.401L93.280 45.401Q93.065 45.378 93.041 45.163\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M101.092 45.124L101.092 45.034Q101.143 44.827 101.338 44.803L101.514 44.803L101.514 41.034L101.338 41.034Q101.143 41.010 101.092 40.796L101.092 40.706Q101.143 40.499 101.338 40.475L102.026 40.475Q102.155 40.475 102.254 40.551Q102.354 40.628 102.393 40.737Q102.424 40.842 102.647 41.532Q102.870 42.221 102.985 42.618Q103.100 43.014 103.100 43.089Q103.108 43.010 103.163 42.813Q103.217 42.616 103.331 42.245Q103.444 41.874 103.590 41.411Q103.737 40.948 103.803 40.737Q103.842 40.628 103.946 40.551Q104.049 40.475 104.170 40.475L104.858 40.475Q105.057 40.499 105.108 40.706L105.108 40.796Q105.057 41.010 104.858 41.034L104.682 41.034L104.682 44.803L104.858 44.803Q105.057 44.827 105.108 45.034L105.108 45.124Q105.057 45.339 104.858 45.362L103.979 45.362Q103.784 45.339 103.733 45.124L103.733 45.034Q103.784 44.827 103.979 44.803L104.155 44.803L104.155 41.116Q104.155 41.175 104.071 41.473Q103.987 41.772 103.883 42.104Q103.780 42.436 103.649 42.844Q103.518 43.253 103.452 43.467Q103.413 43.581 103.313 43.655Q103.213 43.729 103.100 43.729Q102.987 43.729 102.887 43.655Q102.788 43.581 102.749 43.467Q102.682 43.253 102.547 42.835Q102.413 42.417 102.276 41.973Q102.139 41.530 102.094 41.366Q102.049 41.202 102.041 41.116L102.041 44.803L102.217 44.803Q102.416 44.827 102.467 45.034L102.467 45.124Q102.416 45.339 102.217 45.362L101.338 45.362Q101.143 45.339 101.092 45.124M106.959 45.796L106.959 40.042Q107.018 39.835 107.209 39.811L108.889 39.811Q109.084 39.831 109.135 40.042L109.135 40.132Q109.084 40.346 108.889 40.370L107.600 40.370L107.600 45.467L108.889 45.467Q109.084 45.487 109.135 45.706L109.135 45.796Q109.084 46.003 108.889 46.026L107.209 46.026Q107.018 46.007 106.959 45.796M111.592 45.440Q111.159 45.440 110.827 45.202Q110.495 44.964 110.274 44.575Q110.053 44.186 109.946 43.749Q109.838 43.311 109.838 42.913Q109.838 42.522 109.948 42.079Q110.057 41.635 110.274 41.255Q110.491 40.874 110.825 40.633Q111.159 40.393 111.592 40.393Q112.147 40.393 112.547 40.792Q112.948 41.190 113.145 41.776Q113.342 42.362 113.342 42.913Q113.342 43.467 113.145 44.055Q112.948 44.643 112.547 45.042Q112.147 45.440 111.592 45.440M111.592 44.882Q111.893 44.882 112.110 44.665Q112.327 44.448 112.454 44.120Q112.581 43.792 112.641 43.446Q112.702 43.100 112.702 42.819Q112.702 42.569 112.639 42.243Q112.577 41.917 112.446 41.626Q112.315 41.335 112.102 41.145Q111.889 40.956 111.592 40.956Q111.217 40.956 110.965 41.268Q110.713 41.581 110.596 42.014Q110.479 42.448 110.479 42.819Q110.479 43.217 110.592 43.698Q110.706 44.178 110.954 44.530Q111.202 44.882 111.592 44.882M113.975 45.124L113.975 45.034Q114.014 44.827 114.221 44.803L114.627 44.803L115.557 43.585L114.686 42.475L114.268 42.475Q114.073 42.456 114.022 42.233L114.022 42.147Q114.073 41.936 114.268 41.913L115.428 41.913Q115.627 41.936 115.678 42.147L115.678 42.233Q115.627 42.452 115.428 42.475L115.319 42.475L115.815 43.132L116.291 42.475L116.174 42.475Q115.975 42.452 115.924 42.233L115.924 42.147Q115.975 41.936 116.174 41.913L117.334 41.913Q117.530 41.932 117.581 42.147L117.581 42.233Q117.530 42.452 117.334 42.475L116.924 42.475L116.077 43.585L117.038 44.803L117.444 44.803Q117.643 44.827 117.694 45.034L117.694 45.124Q117.655 45.339 117.444 45.362L116.291 45.362Q116.084 45.339 116.045 45.124L116.045 45.034Q116.084 44.827 116.291 44.803L116.420 44.803L115.815 43.948L115.229 44.803L115.374 44.803Q115.581 44.827 115.620 45.034L115.620 45.124Q115.581 45.339 115.374 45.362L114.221 45.362Q114.026 45.342 113.975 45.124M120.084 45.440Q119.651 45.440 119.319 45.202Q118.987 44.964 118.766 44.575Q118.545 44.186 118.438 43.749Q118.331 43.311 118.331 42.913Q118.331 42.522 118.440 42.079Q118.549 41.635 118.766 41.255Q118.983 40.874 119.317 40.633Q119.651 40.393 120.084 40.393Q120.639 40.393 121.040 40.792Q121.440 41.190 121.637 41.776Q121.834 42.362 121.834 42.913Q121.834 43.467 121.637 44.055Q121.440 44.643 121.040 45.042Q120.639 45.440 120.084 45.440M120.084 44.882Q120.385 44.882 120.602 44.665Q120.819 44.448 120.946 44.120Q121.073 43.792 121.133 43.446Q121.194 43.100 121.194 42.819Q121.194 42.569 121.131 42.243Q121.069 41.917 120.938 41.626Q120.807 41.335 120.594 41.145Q120.381 40.956 120.084 40.956Q119.709 40.956 119.458 41.268Q119.206 41.581 119.088 42.014Q118.971 42.448 118.971 42.819Q118.971 43.217 119.084 43.698Q119.198 44.178 119.446 44.530Q119.694 44.882 120.084 44.882M124.331 45.440Q123.897 45.440 123.565 45.202Q123.233 44.964 123.012 44.575Q122.791 44.186 122.684 43.749Q122.577 43.311 122.577 42.913Q122.577 42.522 122.686 42.079Q122.795 41.635 123.012 41.255Q123.229 40.874 123.563 40.633Q123.897 40.393 124.331 40.393Q124.885 40.393 125.286 40.792Q125.686 41.190 125.883 41.776Q126.081 42.362 126.081 42.913Q126.081 43.467 125.883 44.055Q125.686 44.643 125.286 45.042Q124.885 45.440 124.331 45.440M124.331 44.882Q124.631 44.882 124.848 44.665Q125.065 44.448 125.192 44.120Q125.319 43.792 125.379 43.446Q125.440 43.100 125.440 42.819Q125.440 42.569 125.377 42.243Q125.315 41.917 125.184 41.626Q125.053 41.335 124.840 41.145Q124.627 40.956 124.331 40.956Q123.956 40.956 123.704 41.268Q123.452 41.581 123.334 42.014Q123.217 42.448 123.217 42.819Q123.217 43.217 123.331 43.698Q123.444 44.178 123.692 44.530Q123.940 44.882 124.331 44.882M128.577 45.440Q128.143 45.440 127.811 45.202Q127.479 44.964 127.258 44.575Q127.038 44.186 126.930 43.749Q126.823 43.311 126.823 42.913Q126.823 42.522 126.932 42.079Q127.041 41.635 127.258 41.255Q127.475 40.874 127.809 40.633Q128.143 40.393 128.577 40.393Q129.131 40.393 129.532 40.792Q129.932 41.190 130.129 41.776Q130.327 42.362 130.327 42.913Q130.327 43.467 130.129 44.055Q129.932 44.643 129.532 45.042Q129.131 45.440 128.577 45.440M128.577 44.882Q128.877 44.882 129.094 44.665Q129.311 44.448 129.438 44.120Q129.565 43.792 129.625 43.446Q129.686 43.100 129.686 42.819Q129.686 42.569 129.624 42.243Q129.561 41.917 129.430 41.626Q129.299 41.335 129.086 41.145Q128.874 40.956 128.577 40.956Q128.202 40.956 127.950 41.268Q127.698 41.581 127.581 42.014Q127.463 42.448 127.463 42.819Q127.463 43.217 127.577 43.698Q127.690 44.178 127.938 44.530Q128.186 44.882 128.577 44.882M131.030 45.796L131.030 45.706Q131.081 45.491 131.276 45.467L132.565 45.467L132.565 40.370L131.276 40.370Q131.081 40.346 131.030 40.132L131.030 40.042Q131.081 39.835 131.276 39.811L132.959 39.811Q133.155 39.835 133.206 40.042L133.206 45.796Q133.155 46.003 132.959 46.026L131.276 46.026Q131.081 46.003 131.030 45.796\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M142.878 43.827L139.832 43.827Q139.710 43.815 139.623 43.731Q139.535 43.647 139.535 43.522Q139.535 43.397 139.619 43.313Q139.703 43.229 139.832 43.210L142.878 43.210Q143.003 43.229 143.085 43.313Q143.167 43.397 143.167 43.522Q143.167 43.647 143.084 43.731Q143 43.815 142.878 43.827M142.878 42.620L139.832 42.620Q139.699 42.600 139.617 42.522Q139.535 42.444 139.535 42.315Q139.535 42.190 139.619 42.106Q139.703 42.022 139.832 42.003L142.878 42.003Q143.003 42.022 143.085 42.106Q143.167 42.190 143.167 42.315Q143.167 42.444 143.087 42.522Q143.007 42.600 142.878 42.620\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M148.082 44.315Q148.082 44.139 148.199 44.018Q148.316 43.897 148.492 43.897Q148.574 43.897 148.650 43.928Q148.726 43.960 148.777 44.010Q148.828 44.061 148.859 44.141Q148.890 44.221 148.890 44.300Q148.890 44.432 148.808 44.546Q149.078 44.882 149.867 44.882Q150.292 44.882 150.634 44.616Q150.976 44.350 150.976 43.936Q150.976 43.663 150.810 43.444Q150.644 43.225 150.384 43.114Q150.125 43.003 149.851 43.003L149.386 43.003Q149.175 42.979 149.144 42.760L149.144 42.675Q149.175 42.471 149.386 42.440L149.914 42.401Q150.128 42.401 150.320 42.278Q150.511 42.155 150.625 41.952Q150.738 41.749 150.738 41.538Q150.738 41.264 150.455 41.110Q150.171 40.956 149.867 40.956Q149.304 40.956 149.066 41.147Q149.128 41.260 149.128 41.370Q149.128 41.542 149.015 41.655Q148.902 41.768 148.730 41.768Q148.554 41.768 148.439 41.645Q148.324 41.522 148.324 41.354Q148.324 40.827 148.796 40.610Q149.269 40.393 149.867 40.393Q150.207 40.393 150.562 40.524Q150.917 40.655 151.148 40.913Q151.378 41.171 151.378 41.538Q151.378 41.882 151.210 42.186Q151.042 42.491 150.746 42.690Q151.117 42.870 151.367 43.206Q151.617 43.542 151.617 43.936Q151.617 44.382 151.363 44.723Q151.109 45.065 150.707 45.253Q150.304 45.440 149.867 45.440Q149.582 45.440 149.277 45.385Q148.972 45.331 148.697 45.204Q148.421 45.077 148.251 44.854Q148.082 44.632 148.082 44.315M154.097 45.440Q153.664 45.440 153.332 45.202Q153 44.964 152.779 44.575Q152.558 44.186 152.451 43.749Q152.343 43.311 152.343 42.913Q152.343 42.522 152.453 42.079Q152.562 41.635 152.779 41.255Q152.996 40.874 153.330 40.633Q153.664 40.393 154.097 40.393Q154.652 40.393 155.052 40.792Q155.453 41.190 155.650 41.776Q155.847 42.362 155.847 42.913Q155.847 43.467 155.650 44.055Q155.453 44.643 155.052 45.042Q154.652 45.440 154.097 45.440M154.097 44.882Q154.398 44.882 154.615 44.665Q154.832 44.448 154.959 44.120Q155.085 43.792 155.146 43.446Q155.207 43.100 155.207 42.819Q155.207 42.569 155.144 42.243Q155.082 41.917 154.951 41.626Q154.820 41.335 154.607 41.145Q154.394 40.956 154.097 40.956Q153.722 40.956 153.470 41.268Q153.218 41.581 153.101 42.014Q152.984 42.448 152.984 42.819Q152.984 43.217 153.097 43.698Q153.210 44.178 153.459 44.530Q153.707 44.882 154.097 44.882\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M160.800 45.124L160.800 45.034Q160.851 44.827 161.046 44.803L161.929 44.803L161.929 42.475L161.074 42.475Q160.875 42.452 160.824 42.233L160.824 42.147Q160.875 41.936 161.074 41.913L161.929 41.913L161.929 41.460Q161.929 40.995 162.335 40.714Q162.742 40.432 163.222 40.432Q163.535 40.432 163.779 40.553Q164.023 40.675 164.023 40.956Q164.023 41.120 163.914 41.237Q163.804 41.354 163.640 41.354Q163.492 41.354 163.371 41.249Q163.250 41.143 163.250 40.995L163.167 40.995Q163.015 40.995 162.878 41.055Q162.742 41.116 162.656 41.231Q162.570 41.346 162.570 41.491L162.570 41.913L163.601 41.913Q163.796 41.932 163.847 42.147L163.847 42.233Q163.796 42.452 163.601 42.475L162.570 42.475L162.570 44.803L163.449 44.803Q163.644 44.827 163.695 45.034L163.695 45.124Q163.644 45.339 163.449 45.362L161.046 45.362Q160.851 45.339 160.800 45.124M167.285 44.018L165.214 44.018Q165.019 43.995 164.964 43.776L164.964 43.538Q164.964 43.464 165.007 43.393L166.855 40.522Q166.941 40.393 167.093 40.393L167.550 40.393Q167.660 40.393 167.738 40.471Q167.816 40.550 167.816 40.659L167.816 43.460L168.480 43.460Q168.675 43.483 168.726 43.690L168.726 43.776Q168.675 43.995 168.480 44.018L167.816 44.018L167.816 44.803L168.390 44.803Q168.597 44.827 168.636 45.034L168.636 45.124Q168.597 45.339 168.390 45.362L166.710 45.362Q166.503 45.339 166.460 45.124L166.460 45.034Q166.503 44.827 166.710 44.803L167.285 44.803L167.285 44.018M167.285 40.866L165.613 43.460L167.285 43.460\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(78.933 -92.005)\">\u003Cpath d=\"M174.796 44.803Q174.796 44.581 174.962 44.415Q175.128 44.249 175.359 44.249Q175.507 44.249 175.634 44.327Q175.761 44.405 175.835 44.530Q175.910 44.655 175.910 44.803Q175.910 45.030 175.744 45.196Q175.578 45.362 175.359 45.362Q175.132 45.362 174.964 45.194Q174.796 45.026 174.796 44.803M179.042 44.803Q179.042 44.581 179.209 44.415Q179.375 44.249 179.605 44.249Q179.753 44.249 179.880 44.327Q180.007 44.405 180.082 44.530Q180.156 44.655 180.156 44.803Q180.156 45.030 179.990 45.196Q179.824 45.362 179.605 45.362Q179.378 45.362 179.210 45.194Q179.042 45.026 179.042 44.803\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M-6.010 43.874L-8.452 43.874Q-8.397 44.151-8.200 44.374Q-8.002 44.596-7.725 44.719Q-7.448 44.842-7.163 44.842Q-6.690 44.842-6.467 44.553Q-6.460 44.542-6.403 44.436Q-6.346 44.331-6.297 44.288Q-6.249 44.245-6.155 44.233L-6.010 44.233Q-5.819 44.253-5.760 44.467L-5.760 44.522Q-5.827 44.823-6.057 45.020Q-6.288 45.217-6.600 45.309Q-6.913 45.401-7.217 45.401Q-7.702 45.401-8.141 45.173Q-8.581 44.944-8.848 44.544Q-9.116 44.143-9.116 43.651L-9.116 43.592Q-9.116 43.124-8.870 42.721Q-8.624 42.319-8.215 42.085Q-7.807 41.850-7.338 41.850Q-6.835 41.850-6.481 42.073Q-6.127 42.296-5.944 42.684Q-5.760 43.073-5.760 43.577L-5.760 43.635Q-5.819 43.850-6.010 43.874M-8.444 43.323L-6.417 43.323Q-6.463 42.913-6.702 42.661Q-6.940 42.409-7.338 42.409Q-7.733 42.409-8.040 42.671Q-8.346 42.932-8.444 43.323M-3.413 45.401Q-3.877 45.401-4.243 45.151Q-4.608 44.901-4.813 44.497Q-5.018 44.092-5.018 43.635Q-5.018 43.292-4.893 42.971Q-4.768 42.651-4.536 42.401Q-4.303 42.151-3.999 42.012Q-3.694 41.874-3.338 41.874Q-2.827 41.874-2.420 42.194L-2.420 41.034L-2.842 41.034Q-3.053 41.010-3.092 40.796L-3.092 40.706Q-3.053 40.499-2.842 40.475L-2.030 40.475Q-1.831 40.499-1.780 40.706L-1.780 44.803L-1.354 44.803Q-1.147 44.827-1.108 45.034L-1.108 45.124Q-1.147 45.339-1.354 45.362L-2.170 45.362Q-2.370 45.339-2.420 45.124L-2.420 44.995Q-2.616 45.186-2.877 45.294Q-3.139 45.401-3.413 45.401M-3.374 44.842Q-3.014 44.842-2.762 44.573Q-2.510 44.303-2.420 43.928L-2.420 43.096Q-2.479 42.909-2.606 42.758Q-2.733 42.608-2.911 42.520Q-3.088 42.432-3.284 42.432Q-3.592 42.432-3.842 42.602Q-4.092 42.772-4.237 43.057Q-4.381 43.342-4.381 43.643Q-4.381 44.092-4.096 44.467Q-3.811 44.842-3.374 44.842M-0.792 46.010Q-0.792 45.710-0.643 45.448Q-0.495 45.186-0.245 45.026Q-0.428 44.772-0.428 44.452Q-0.428 44.167-0.276 43.905Q-0.526 43.581-0.526 43.163Q-0.526 42.803-0.335 42.507Q-0.143 42.210 0.175 42.042Q0.494 41.874 0.857 41.874Q1.064 41.874 1.267 41.934Q1.470 41.995 1.634 42.096Q2.017 41.835 2.490 41.835Q2.728 41.835 2.910 41.966Q3.091 42.096 3.091 42.323Q3.091 42.471 2.990 42.577Q2.888 42.682 2.732 42.682Q2.599 42.682 2.503 42.604Q2.408 42.526 2.376 42.401Q2.232 42.409 2.033 42.499Q2.236 42.811 2.236 43.163Q2.236 43.444 2.124 43.676Q2.013 43.909 1.818 44.087Q1.623 44.264 1.371 44.362Q1.119 44.460 0.857 44.460Q0.470 44.460 0.138 44.272Q0.126 44.272 0.117 44.344Q0.107 44.417 0.107 44.452Q0.107 44.573 0.173 44.680Q0.240 44.788 0.361 44.827Q0.376 44.823 0.390 44.821Q0.404 44.819 0.427 44.819Q0.443 44.819 0.474 44.827Q0.505 44.835 0.513 44.835L1.107 44.835Q1.888 44.835 2.429 45.077Q2.970 45.319 2.970 46.010Q2.970 46.311 2.790 46.538Q2.611 46.764 2.314 46.909Q2.017 47.053 1.697 47.120Q1.376 47.186 1.091 47.186Q0.701 47.186 0.259 47.063Q-0.182 46.940-0.487 46.673Q-0.792 46.405-0.792 46.010M-0.252 46.003Q-0.252 46.221-0.012 46.362Q0.228 46.503 0.552 46.569Q0.876 46.635 1.091 46.635Q1.306 46.635 1.630 46.569Q1.955 46.503 2.195 46.362Q2.435 46.221 2.435 46.003Q2.435 45.714 2.210 45.575Q1.986 45.436 1.705 45.403Q1.423 45.370 1.076 45.370L0.458 45.370Q0.275 45.370 0.113 45.450Q-0.049 45.530-0.151 45.676Q-0.252 45.823-0.252 46.003M0.857 43.905Q1.158 43.905 1.376 43.686Q1.595 43.467 1.595 43.163Q1.595 43.007 1.540 42.876Q1.486 42.745 1.380 42.639Q1.275 42.534 1.144 42.479Q1.013 42.425 0.857 42.425Q0.552 42.425 0.333 42.643Q0.115 42.862 0.115 43.163Q0.115 43.460 0.337 43.682Q0.560 43.905 0.857 43.905M6.728 43.874L4.287 43.874Q4.341 44.151 4.539 44.374Q4.736 44.596 5.013 44.719Q5.290 44.842 5.576 44.842Q6.048 44.842 6.271 44.553Q6.279 44.542 6.335 44.436Q6.392 44.331 6.441 44.288Q6.490 44.245 6.583 44.233L6.728 44.233Q6.919 44.253 6.978 44.467L6.978 44.522Q6.912 44.823 6.681 45.020Q6.451 45.217 6.138 45.309Q5.826 45.401 5.521 45.401Q5.037 45.401 4.597 45.173Q4.158 44.944 3.890 44.544Q3.623 44.143 3.623 43.651L3.623 43.592Q3.623 43.124 3.869 42.721Q4.115 42.319 4.523 42.085Q4.931 41.850 5.400 41.850Q5.904 41.850 6.257 42.073Q6.611 42.296 6.794 42.684Q6.978 43.073 6.978 43.577L6.978 43.635Q6.919 43.850 6.728 43.874M4.294 43.323L6.322 43.323Q6.275 42.913 6.037 42.661Q5.798 42.409 5.400 42.409Q5.005 42.409 4.699 42.671Q4.392 42.932 4.294 43.323M9.029 44.803Q9.029 44.581 9.195 44.415Q9.361 44.249 9.591 44.249Q9.740 44.249 9.867 44.327Q9.994 44.405 10.068 44.530Q10.142 44.655 10.142 44.803Q10.142 45.030 9.976 45.196Q9.810 45.362 9.591 45.362Q9.365 45.362 9.197 45.194Q9.029 45.026 9.029 44.803M9.029 42.467Q9.029 42.245 9.195 42.079Q9.361 41.913 9.591 41.913Q9.740 41.913 9.867 41.991Q9.994 42.069 10.068 42.194Q10.142 42.319 10.142 42.467Q10.142 42.694 9.976 42.860Q9.810 43.026 9.591 43.026Q9.365 43.026 9.197 42.858Q9.029 42.690 9.029 42.467\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M20.451 45.124L20.451 45.034Q20.509 44.827 20.701 44.803L21.412 44.803L21.412 42.475L20.701 42.475Q20.505 42.452 20.451 42.233L20.451 42.147Q20.509 41.936 20.701 41.913L21.802 41.913Q22.001 41.932 22.052 42.147L22.052 42.475Q22.314 42.190 22.669 42.032Q23.025 41.874 23.412 41.874Q23.705 41.874 23.939 42.008Q24.173 42.143 24.173 42.409Q24.173 42.577 24.064 42.694Q23.955 42.811 23.787 42.811Q23.634 42.811 23.519 42.700Q23.404 42.589 23.404 42.432Q23.029 42.432 22.714 42.633Q22.400 42.835 22.226 43.169Q22.052 43.503 22.052 43.882L22.052 44.803L22.998 44.803Q23.205 44.827 23.244 45.034L23.244 45.124Q23.205 45.339 22.998 45.362L20.701 45.362Q20.509 45.339 20.451 45.124M25.060 45.163L25.060 44.249Q25.087 44.042 25.298 44.018L25.466 44.018Q25.630 44.042 25.689 44.202Q25.892 44.842 26.619 44.842Q26.826 44.842 27.054 44.807Q27.283 44.772 27.451 44.657Q27.619 44.542 27.619 44.339Q27.619 44.128 27.396 44.014Q27.173 43.901 26.900 43.858L26.201 43.745Q25.060 43.534 25.060 42.811Q25.060 42.522 25.205 42.333Q25.349 42.143 25.589 42.036Q25.830 41.928 26.085 41.889Q26.341 41.850 26.619 41.850Q26.869 41.850 27.062 41.880Q27.255 41.909 27.419 41.987Q27.498 41.870 27.626 41.850L27.705 41.850Q27.802 41.862 27.865 41.925Q27.927 41.987 27.939 42.081L27.939 42.788Q27.927 42.882 27.865 42.948Q27.802 43.014 27.705 43.026L27.537 43.026Q27.443 43.014 27.376 42.948Q27.310 42.882 27.298 42.788Q27.298 42.409 26.603 42.409Q26.255 42.409 25.937 42.491Q25.619 42.573 25.619 42.819Q25.619 43.085 26.291 43.194L26.994 43.315Q27.478 43.397 27.828 43.645Q28.177 43.893 28.177 44.339Q28.177 44.729 27.941 44.971Q27.705 45.214 27.355 45.307Q27.005 45.401 26.619 45.401Q26.041 45.401 25.642 45.147Q25.572 45.272 25.523 45.329Q25.474 45.385 25.369 45.401L25.298 45.401Q25.083 45.378 25.060 45.163M28.791 46.905L28.791 46.819Q28.833 46.600 29.041 46.577L29.462 46.577L29.462 42.475L29.041 42.475Q28.833 42.452 28.791 42.233L28.791 42.147Q28.837 41.936 29.041 41.913L29.857 41.913Q30.052 41.932 30.103 42.147L30.103 42.217Q30.314 42.050 30.578 41.962Q30.841 41.874 31.111 41.874Q31.451 41.874 31.748 42.018Q32.044 42.163 32.259 42.415Q32.474 42.667 32.589 42.979Q32.705 43.292 32.705 43.635Q32.705 44.100 32.478 44.510Q32.251 44.921 31.865 45.161Q31.478 45.401 31.009 45.401Q30.490 45.401 30.103 45.034L30.103 46.577L30.529 46.577Q30.736 46.600 30.775 46.819L30.775 46.905Q30.736 47.116 30.529 47.139L29.041 47.139Q28.837 47.116 28.791 46.905M30.966 44.842Q31.275 44.842 31.525 44.673Q31.775 44.503 31.919 44.221Q32.064 43.940 32.064 43.635Q32.064 43.346 31.939 43.067Q31.814 42.788 31.582 42.610Q31.349 42.432 31.048 42.432Q30.728 42.432 30.466 42.618Q30.205 42.803 30.103 43.104L30.103 43.956Q30.193 44.323 30.414 44.583Q30.634 44.842 30.966 44.842\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M40.876 43.827L37.830 43.827Q37.708 43.815 37.621 43.731Q37.533 43.647 37.533 43.522Q37.533 43.397 37.617 43.313Q37.701 43.229 37.830 43.210L40.876 43.210Q41.001 43.229 41.083 43.313Q41.166 43.397 41.166 43.522Q41.166 43.647 41.082 43.731Q40.998 43.815 40.876 43.827M40.876 42.620L37.830 42.620Q37.697 42.600 37.615 42.522Q37.533 42.444 37.533 42.315Q37.533 42.190 37.617 42.106Q37.701 42.022 37.830 42.003L40.876 42.003Q41.001 42.022 41.083 42.106Q41.166 42.190 41.166 42.315Q41.166 42.444 41.085 42.522Q41.005 42.600 40.876 42.620\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M47.850 45.440Q47.416 45.440 47.084 45.202Q46.752 44.964 46.532 44.575Q46.311 44.186 46.204 43.749Q46.096 43.311 46.096 42.913Q46.096 42.522 46.206 42.079Q46.315 41.635 46.532 41.255Q46.749 40.874 47.083 40.633Q47.416 40.393 47.850 40.393Q48.405 40.393 48.805 40.792Q49.206 41.190 49.403 41.776Q49.600 42.362 49.600 42.913Q49.600 43.467 49.403 44.055Q49.206 44.643 48.805 45.042Q48.405 45.440 47.850 45.440M47.850 44.882Q48.151 44.882 48.368 44.665Q48.584 44.448 48.711 44.120Q48.838 43.792 48.899 43.446Q48.959 43.100 48.959 42.819Q48.959 42.569 48.897 42.243Q48.834 41.917 48.704 41.626Q48.573 41.335 48.360 41.145Q48.147 40.956 47.850 40.956Q47.475 40.956 47.223 41.268Q46.971 41.581 46.854 42.014Q46.737 42.448 46.737 42.819Q46.737 43.217 46.850 43.698Q46.963 44.178 47.211 44.530Q47.459 44.882 47.850 44.882M50.233 45.124L50.233 45.034Q50.272 44.827 50.479 44.803L50.885 44.803L51.815 43.585L50.944 42.475L50.526 42.475Q50.331 42.456 50.280 42.233L50.280 42.147Q50.331 41.936 50.526 41.913L51.686 41.913Q51.885 41.936 51.936 42.147L51.936 42.233Q51.885 42.452 51.686 42.475L51.577 42.475L52.073 43.132L52.549 42.475L52.432 42.475Q52.233 42.452 52.182 42.233L52.182 42.147Q52.233 41.936 52.432 41.913L53.592 41.913Q53.788 41.932 53.838 42.147L53.838 42.233Q53.788 42.452 53.592 42.475L53.182 42.475L52.334 43.585L53.295 44.803L53.702 44.803Q53.901 44.827 53.952 45.034L53.952 45.124Q53.913 45.339 53.702 45.362L52.549 45.362Q52.342 45.339 52.303 45.124L52.303 45.034Q52.342 44.827 52.549 44.803L52.678 44.803L52.073 43.948L51.487 44.803L51.631 44.803Q51.838 44.827 51.877 45.034L51.877 45.124Q51.838 45.339 51.631 45.362L50.479 45.362Q50.284 45.342 50.233 45.124M54.647 45.124L54.647 45.050Q54.678 44.882 54.780 44.835L56.069 43.768Q56.401 43.491 56.583 43.339Q56.764 43.186 56.959 42.966Q57.155 42.745 57.276 42.495Q57.397 42.245 57.397 41.979Q57.397 41.655 57.221 41.421Q57.045 41.186 56.766 41.071Q56.487 40.956 56.166 40.956Q55.909 40.956 55.680 41.079Q55.452 41.202 55.350 41.417Q55.452 41.550 55.452 41.698Q55.452 41.858 55.333 41.981Q55.213 42.104 55.053 42.104Q54.877 42.104 54.762 41.979Q54.647 41.854 54.647 41.682Q54.647 41.389 54.782 41.147Q54.916 40.905 55.155 40.733Q55.393 40.561 55.661 40.477Q55.928 40.393 56.221 40.393Q56.702 40.393 57.118 40.583Q57.534 40.772 57.786 41.133Q58.038 41.495 58.038 41.979Q58.038 42.323 57.905 42.626Q57.772 42.928 57.547 43.188Q57.323 43.448 57.014 43.710Q56.706 43.971 56.495 44.147L55.686 44.803L57.397 44.803L57.397 44.659Q57.448 44.448 57.647 44.425L57.788 44.425Q57.987 44.444 58.038 44.659L58.038 45.124Q57.987 45.339 57.788 45.362L54.893 45.362Q54.698 45.342 54.647 45.124M60.588 45.440Q60.155 45.440 59.823 45.202Q59.491 44.964 59.270 44.575Q59.049 44.186 58.942 43.749Q58.834 43.311 58.834 42.913Q58.834 42.522 58.944 42.079Q59.053 41.635 59.270 41.255Q59.487 40.874 59.821 40.633Q60.155 40.393 60.588 40.393Q61.143 40.393 61.543 40.792Q61.944 41.190 62.141 41.776Q62.338 42.362 62.338 42.913Q62.338 43.467 62.141 44.055Q61.944 44.643 61.543 45.042Q61.143 45.440 60.588 45.440M60.588 44.882Q60.889 44.882 61.106 44.665Q61.323 44.448 61.450 44.120Q61.577 43.792 61.637 43.446Q61.698 43.100 61.698 42.819Q61.698 42.569 61.635 42.243Q61.573 41.917 61.442 41.626Q61.311 41.335 61.098 41.145Q60.885 40.956 60.588 40.956Q60.213 40.956 59.961 41.268Q59.709 41.581 59.592 42.014Q59.475 42.448 59.475 42.819Q59.475 43.217 59.588 43.698Q59.702 44.178 59.950 44.530Q60.198 44.882 60.588 44.882M64.834 45.440Q64.401 45.440 64.069 45.202Q63.737 44.964 63.516 44.575Q63.295 44.186 63.188 43.749Q63.081 43.311 63.081 42.913Q63.081 42.522 63.190 42.079Q63.299 41.635 63.516 41.255Q63.733 40.874 64.067 40.633Q64.401 40.393 64.834 40.393Q65.389 40.393 65.790 40.792Q66.190 41.190 66.387 41.776Q66.584 42.362 66.584 42.913Q66.584 43.467 66.387 44.055Q66.190 44.643 65.790 45.042Q65.389 45.440 64.834 45.440M64.834 44.882Q65.135 44.882 65.352 44.665Q65.569 44.448 65.696 44.120Q65.823 43.792 65.883 43.446Q65.944 43.100 65.944 42.819Q65.944 42.569 65.881 42.243Q65.819 41.917 65.688 41.626Q65.557 41.335 65.344 41.145Q65.131 40.956 64.834 40.956Q64.459 40.956 64.208 41.268Q63.956 41.581 63.838 42.014Q63.721 42.448 63.721 42.819Q63.721 43.217 63.834 43.698Q63.948 44.178 64.196 44.530Q64.444 44.882 64.834 44.882M68.678 46.475Q68.565 46.475 68.475 46.385Q68.385 46.296 68.385 46.186Q68.385 46.010 68.577 45.936Q68.795 45.885 68.967 45.727Q69.139 45.569 69.206 45.346Q69.182 45.346 69.151 45.362L69.088 45.362Q68.858 45.362 68.692 45.200Q68.526 45.038 68.526 44.803Q68.526 44.569 68.690 44.409Q68.854 44.249 69.088 44.249Q69.299 44.249 69.463 44.370Q69.627 44.491 69.717 44.684Q69.807 44.878 69.807 45.089Q69.807 45.565 69.508 45.954Q69.209 46.342 68.745 46.467Q68.721 46.475 68.678 46.475\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M75.663 45.124L75.663 45.034Q75.702 44.827 75.913 44.803L76.221 44.803L76.221 41.034L75.913 41.034Q75.702 41.010 75.663 40.796L75.663 40.706Q75.702 40.499 75.913 40.475L77.862 40.475Q78.260 40.475 78.606 40.676Q78.952 40.878 79.159 41.223Q79.366 41.569 79.366 41.971Q79.366 42.378 79.161 42.721Q78.956 43.065 78.610 43.270Q78.264 43.475 77.862 43.475L76.862 43.475L76.862 44.803L77.174 44.803Q77.385 44.827 77.424 45.034L77.424 45.124Q77.385 45.339 77.174 45.362L75.913 45.362Q75.702 45.339 75.663 45.124M76.862 41.034L76.862 42.913L77.702 42.913Q77.963 42.913 78.200 42.790Q78.436 42.667 78.581 42.452Q78.725 42.237 78.725 41.971Q78.725 41.702 78.581 41.491Q78.436 41.280 78.200 41.157Q77.963 41.034 77.702 41.034L76.862 41.034M81.991 45.440Q81.541 45.440 81.176 45.216Q80.811 44.991 80.557 44.608Q80.303 44.225 80.178 43.782Q80.053 43.339 80.053 42.913Q80.053 42.487 80.178 42.048Q80.303 41.608 80.557 41.225Q80.811 40.842 81.170 40.618Q81.530 40.393 81.991 40.393Q82.268 40.393 82.526 40.485Q82.784 40.577 82.999 40.745L83.131 40.507Q83.159 40.456 83.213 40.425Q83.268 40.393 83.327 40.393L83.405 40.393Q83.499 40.405 83.561 40.464Q83.624 40.522 83.635 40.628L83.635 41.956Q83.624 42.057 83.561 42.120Q83.499 42.182 83.405 42.194L83.237 42.194Q83.135 42.182 83.073 42.116Q83.010 42.050 82.999 41.956Q82.959 41.690 82.836 41.466Q82.713 41.241 82.510 41.098Q82.307 40.956 82.045 40.956Q81.713 40.956 81.461 41.139Q81.209 41.323 81.038 41.624Q80.866 41.925 80.780 42.266Q80.694 42.608 80.694 42.913Q80.694 43.217 80.778 43.559Q80.862 43.901 81.034 44.204Q81.206 44.507 81.463 44.694Q81.721 44.882 82.053 44.882Q82.436 44.882 82.717 44.608Q82.999 44.335 82.999 43.948Q83.026 43.737 83.237 43.714L83.405 43.714Q83.635 43.753 83.635 43.979Q83.635 44.296 83.499 44.567Q83.362 44.839 83.127 45.036Q82.893 45.233 82.602 45.337Q82.311 45.440 81.991 45.440\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M91.877 43.827L88.831 43.827Q88.709 43.815 88.622 43.731Q88.534 43.647 88.534 43.522Q88.534 43.397 88.618 43.313Q88.702 43.229 88.831 43.210L91.877 43.210Q92.002 43.229 92.084 43.313Q92.166 43.397 92.166 43.522Q92.166 43.647 92.083 43.731Q91.999 43.815 91.877 43.827M91.877 42.620L88.831 42.620Q88.698 42.600 88.616 42.522Q88.534 42.444 88.534 42.315Q88.534 42.190 88.618 42.106Q88.702 42.022 88.831 42.003L91.877 42.003Q92.002 42.022 92.084 42.106Q92.166 42.190 92.166 42.315Q92.166 42.444 92.086 42.522Q92.006 42.600 91.877 42.620\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(144.374 -75.267)\">\u003Cpath d=\"M98.850 45.440Q98.416 45.440 98.084 45.202Q97.752 44.964 97.532 44.575Q97.311 44.186 97.204 43.749Q97.096 43.311 97.096 42.913Q97.096 42.522 97.206 42.079Q97.315 41.635 97.532 41.255Q97.749 40.874 98.083 40.633Q98.416 40.393 98.850 40.393Q99.405 40.393 99.805 40.792Q100.206 41.190 100.403 41.776Q100.600 42.362 100.600 42.913Q100.600 43.467 100.403 44.055Q100.206 44.643 99.805 45.042Q99.405 45.440 98.850 45.440M98.850 44.882Q99.151 44.882 99.368 44.665Q99.584 44.448 99.711 44.120Q99.838 43.792 99.899 43.446Q99.959 43.100 99.959 42.819Q99.959 42.569 99.897 42.243Q99.834 41.917 99.704 41.626Q99.573 41.335 99.360 41.145Q99.147 40.956 98.850 40.956Q98.475 40.956 98.223 41.268Q97.971 41.581 97.854 42.014Q97.737 42.448 97.737 42.819Q97.737 43.217 97.850 43.698Q97.963 44.178 98.211 44.530Q98.459 44.882 98.850 44.882M101.233 45.124L101.233 45.034Q101.272 44.827 101.479 44.803L101.885 44.803L102.815 43.585L101.944 42.475L101.526 42.475Q101.331 42.456 101.280 42.233L101.280 42.147Q101.331 41.936 101.526 41.913L102.686 41.913Q102.885 41.936 102.936 42.147L102.936 42.233Q102.885 42.452 102.686 42.475L102.577 42.475L103.073 43.132L103.549 42.475L103.432 42.475Q103.233 42.452 103.182 42.233L103.182 42.147Q103.233 41.936 103.432 41.913L104.592 41.913Q104.788 41.932 104.838 42.147L104.838 42.233Q104.788 42.452 104.592 42.475L104.182 42.475L103.334 43.585L104.295 44.803L104.702 44.803Q104.901 44.827 104.952 45.034L104.952 45.124Q104.913 45.339 104.702 45.362L103.549 45.362Q103.342 45.339 103.303 45.124L103.303 45.034Q103.342 44.827 103.549 44.803L103.678 44.803L103.073 43.948L102.487 44.803L102.631 44.803Q102.838 44.827 102.877 45.034L102.877 45.124Q102.838 45.339 102.631 45.362L101.479 45.362Q101.284 45.342 101.233 45.124M107.342 45.440Q106.909 45.440 106.577 45.202Q106.245 44.964 106.024 44.575Q105.803 44.186 105.696 43.749Q105.588 43.311 105.588 42.913Q105.588 42.522 105.698 42.079Q105.807 41.635 106.024 41.255Q106.241 40.874 106.575 40.633Q106.909 40.393 107.342 40.393Q107.897 40.393 108.297 40.792Q108.698 41.190 108.895 41.776Q109.092 42.362 109.092 42.913Q109.092 43.467 108.895 44.055Q108.698 44.643 108.297 45.042Q107.897 45.440 107.342 45.440M107.342 44.882Q107.643 44.882 107.860 44.665Q108.077 44.448 108.204 44.120Q108.331 43.792 108.391 43.446Q108.452 43.100 108.452 42.819Q108.452 42.569 108.389 42.243Q108.327 41.917 108.196 41.626Q108.065 41.335 107.852 41.145Q107.639 40.956 107.342 40.956Q106.967 40.956 106.715 41.268Q106.463 41.581 106.346 42.014Q106.229 42.448 106.229 42.819Q106.229 43.217 106.342 43.698Q106.456 44.178 106.704 44.530Q106.952 44.882 107.342 44.882M111.588 45.440Q111.155 45.440 110.823 45.202Q110.491 44.964 110.270 44.575Q110.049 44.186 109.942 43.749Q109.834 43.311 109.834 42.913Q109.834 42.522 109.944 42.079Q110.053 41.635 110.270 41.255Q110.487 40.874 110.821 40.633Q111.155 40.393 111.588 40.393Q112.143 40.393 112.543 40.792Q112.944 41.190 113.141 41.776Q113.338 42.362 113.338 42.913Q113.338 43.467 113.141 44.055Q112.944 44.643 112.543 45.042Q112.143 45.440 111.588 45.440M111.588 44.882Q111.889 44.882 112.106 44.665Q112.323 44.448 112.450 44.120Q112.577 43.792 112.637 43.446Q112.698 43.100 112.698 42.819Q112.698 42.569 112.635 42.243Q112.573 41.917 112.442 41.626Q112.311 41.335 112.098 41.145Q111.885 40.956 111.588 40.956Q111.213 40.956 110.961 41.268Q110.709 41.581 110.592 42.014Q110.475 42.448 110.475 42.819Q110.475 43.217 110.588 43.698Q110.702 44.178 110.950 44.530Q111.198 44.882 111.588 44.882M114.120 44.249Q114.120 43.803 114.534 43.546Q114.948 43.288 115.489 43.188Q116.030 43.089 116.538 43.081Q116.538 42.866 116.403 42.714Q116.268 42.561 116.061 42.485Q115.854 42.409 115.643 42.409Q115.299 42.409 115.139 42.432L115.139 42.491Q115.139 42.659 115.020 42.774Q114.901 42.889 114.737 42.889Q114.561 42.889 114.446 42.766Q114.331 42.643 114.331 42.475Q114.331 42.069 114.711 41.960Q115.092 41.850 115.651 41.850Q115.920 41.850 116.188 41.928Q116.456 42.007 116.680 42.157Q116.905 42.307 117.041 42.528Q117.178 42.749 117.178 43.026L117.178 44.745Q117.178 44.803 117.706 44.803Q117.901 44.823 117.952 45.034L117.952 45.124Q117.901 45.339 117.706 45.362L117.561 45.362Q117.217 45.362 116.989 45.315Q116.760 45.268 116.616 45.081Q116.155 45.401 115.448 45.401Q115.112 45.401 114.807 45.260Q114.502 45.120 114.311 44.858Q114.120 44.596 114.120 44.249M114.760 44.257Q114.760 44.530 115.002 44.686Q115.245 44.842 115.530 44.842Q115.749 44.842 115.981 44.784Q116.213 44.725 116.375 44.587Q116.538 44.448 116.538 44.225L116.538 43.635Q116.256 43.635 115.840 43.692Q115.424 43.749 115.092 43.887Q114.760 44.026 114.760 44.257\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Bring-up. While reset is held, every clock edge reloads the defined reset state: PC = 0x000, registers zero, ZF = 1. After release, cycle 1 fetches M[0x000] (the bytes 30 f4 ..), computes valE = 0x200, and the next rising edge clocks the first real state change: rsp = 0x200 and PC = 0x00a. From here the machine is simply running.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:495.483px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 371.612 259.630\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg transform=\"translate(-24.783 2.444)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-24.002-62.033Q-24.435-62.033-24.767-62.271Q-25.099-62.509-25.320-62.898Q-25.541-63.287-25.648-63.724Q-25.756-64.162-25.756-64.560Q-25.756-64.951-25.646-65.394Q-25.537-65.838-25.320-66.218Q-25.103-66.599-24.769-66.840Q-24.435-67.080-24.002-67.080Q-23.447-67.080-23.047-66.681Q-22.646-66.283-22.449-65.697Q-22.252-65.111-22.252-64.560Q-22.252-64.006-22.449-63.418Q-22.646-62.830-23.047-62.431Q-23.447-62.033-24.002-62.033M-24.002-62.591Q-23.701-62.591-23.484-62.808Q-23.267-63.025-23.140-63.353Q-23.013-63.681-22.953-64.027Q-22.892-64.373-22.892-64.654Q-22.892-64.904-22.955-65.230Q-23.017-65.556-23.148-65.847Q-23.279-66.138-23.492-66.328Q-23.705-66.517-24.002-66.517Q-24.377-66.517-24.629-66.205Q-24.881-65.892-24.998-65.459Q-25.115-65.025-25.115-64.654Q-25.115-64.256-25.002-63.775Q-24.888-63.295-24.640-62.943Q-24.392-62.591-24.002-62.591M-19.756-62.033Q-20.189-62.033-20.521-62.271Q-20.853-62.509-21.074-62.898Q-21.295-63.287-21.402-63.724Q-21.509-64.162-21.509-64.560Q-21.509-64.951-21.400-65.394Q-21.291-65.838-21.074-66.218Q-20.857-66.599-20.523-66.840Q-20.189-67.080-19.756-67.080Q-19.201-67.080-18.800-66.681Q-18.400-66.283-18.203-65.697Q-18.006-65.111-18.006-64.560Q-18.006-64.006-18.203-63.418Q-18.400-62.830-18.800-62.431Q-19.201-62.033-19.756-62.033M-19.756-62.591Q-19.455-62.591-19.238-62.808Q-19.021-63.025-18.894-63.353Q-18.767-63.681-18.707-64.027Q-18.646-64.373-18.646-64.654Q-18.646-64.904-18.709-65.230Q-18.771-65.556-18.902-65.847Q-19.033-66.138-19.246-66.328Q-19.459-66.517-19.756-66.517Q-20.131-66.517-20.382-66.205Q-20.634-65.892-20.752-65.459Q-20.869-65.025-20.869-64.654Q-20.869-64.256-20.756-63.775Q-20.642-63.295-20.394-62.943Q-20.146-62.591-19.756-62.591\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M-38.509-63.158Q-38.509-63.334-38.392-63.455Q-38.275-63.576-38.099-63.576Q-38.017-63.576-37.941-63.545Q-37.865-63.513-37.814-63.463Q-37.763-63.412-37.732-63.332Q-37.701-63.252-37.701-63.173Q-37.701-63.041-37.783-62.927Q-37.513-62.591-36.724-62.591Q-36.298-62.591-35.957-62.857Q-35.615-63.123-35.615-63.537Q-35.615-63.810-35.781-64.029Q-35.947-64.248-36.207-64.359Q-36.466-64.470-36.740-64.470L-37.205-64.470Q-37.416-64.494-37.447-64.713L-37.447-64.798Q-37.416-65.002-37.205-65.033L-36.677-65.072Q-36.463-65.072-36.271-65.195Q-36.080-65.318-35.966-65.521Q-35.853-65.724-35.853-65.935Q-35.853-66.209-36.136-66.363Q-36.420-66.517-36.724-66.517Q-37.287-66.517-37.525-66.326Q-37.463-66.213-37.463-66.103Q-37.463-65.931-37.576-65.818Q-37.689-65.705-37.861-65.705Q-38.037-65.705-38.152-65.828Q-38.267-65.951-38.267-66.119Q-38.267-66.646-37.795-66.863Q-37.322-67.080-36.724-67.080Q-36.384-67.080-36.029-66.949Q-35.673-66.818-35.443-66.560Q-35.213-66.302-35.213-65.935Q-35.213-65.591-35.381-65.287Q-35.548-64.982-35.845-64.783Q-35.474-64.603-35.224-64.267Q-34.974-63.931-34.974-63.537Q-34.974-63.091-35.228-62.750Q-35.482-62.408-35.884-62.220Q-36.287-62.033-36.724-62.033Q-37.009-62.033-37.314-62.088Q-37.619-62.142-37.894-62.269Q-38.170-62.396-38.340-62.619Q-38.509-62.841-38.509-63.158M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M-25.791-62.349L-25.791-62.439Q-25.740-62.646-25.545-62.670L-24.662-62.670L-24.662-64.998L-25.517-64.998Q-25.716-65.021-25.767-65.240L-25.767-65.326Q-25.716-65.537-25.517-65.560L-24.662-65.560L-24.662-66.013Q-24.662-66.478-24.256-66.759Q-23.849-67.041-23.369-67.041Q-23.056-67.041-22.812-66.920Q-22.568-66.798-22.568-66.517Q-22.568-66.353-22.677-66.236Q-22.787-66.119-22.951-66.119Q-23.099-66.119-23.220-66.224Q-23.341-66.330-23.341-66.478L-23.424-66.478Q-23.576-66.478-23.713-66.418Q-23.849-66.357-23.935-66.242Q-24.021-66.127-24.021-65.982L-24.021-65.560L-22.990-65.560Q-22.795-65.541-22.744-65.326L-22.744-65.240Q-22.795-65.021-22.990-64.998L-24.021-64.998L-24.021-62.670L-23.142-62.670Q-22.947-62.646-22.896-62.439L-22.896-62.349Q-22.947-62.134-23.142-62.111L-25.545-62.111Q-25.740-62.134-25.791-62.349M-19.306-63.455L-21.377-63.455Q-21.572-63.478-21.627-63.697L-21.627-63.935Q-21.627-64.009-21.584-64.080L-19.736-66.951Q-19.650-67.080-19.498-67.080L-19.041-67.080Q-18.931-67.080-18.853-67.002Q-18.775-66.923-18.775-66.814L-18.775-64.013L-18.111-64.013Q-17.916-63.990-17.865-63.783L-17.865-63.697Q-17.916-63.478-18.111-63.455L-18.775-63.455L-18.775-62.670L-18.201-62.670Q-17.994-62.646-17.955-62.439L-17.955-62.349Q-17.994-62.134-18.201-62.111L-19.881-62.111Q-20.088-62.134-20.131-62.349L-20.131-62.439Q-20.088-62.646-19.881-62.670L-19.306-62.670L-19.306-63.455M-19.306-66.607L-20.978-64.013L-19.306-64.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-6.994-62.033Q-7.427-62.033-7.759-62.271Q-8.091-62.509-8.312-62.898Q-8.533-63.287-8.640-63.724Q-8.748-64.162-8.748-64.560Q-8.748-64.951-8.638-65.394Q-8.529-65.838-8.312-66.218Q-8.095-66.599-7.761-66.840Q-7.427-67.080-6.994-67.080Q-6.439-67.080-6.039-66.681Q-5.638-66.283-5.441-65.697Q-5.244-65.111-5.244-64.560Q-5.244-64.006-5.441-63.418Q-5.638-62.830-6.039-62.431Q-6.439-62.033-6.994-62.033M-6.994-62.591Q-6.693-62.591-6.476-62.808Q-6.259-63.025-6.132-63.353Q-6.006-63.681-5.945-64.027Q-5.884-64.373-5.884-64.654Q-5.884-64.904-5.947-65.230Q-6.009-65.556-6.140-65.847Q-6.271-66.138-6.484-66.328Q-6.697-66.517-6.994-66.517Q-7.369-66.517-7.621-66.205Q-7.873-65.892-7.990-65.459Q-8.107-65.025-8.107-64.654Q-8.107-64.256-7.994-63.775Q-7.881-63.295-7.632-62.943Q-7.384-62.591-6.994-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M4.061-62.349L4.061-62.423Q4.092-62.591 4.194-62.638L5.483-63.705Q5.815-63.982 5.996-64.134Q6.178-64.287 6.373-64.507Q6.569-64.728 6.690-64.978Q6.811-65.228 6.811-65.494Q6.811-65.818 6.635-66.052Q6.459-66.287 6.180-66.402Q5.901-66.517 5.580-66.517Q5.323-66.517 5.094-66.394Q4.866-66.271 4.764-66.056Q4.866-65.923 4.866-65.775Q4.866-65.615 4.746-65.492Q4.627-65.369 4.467-65.369Q4.291-65.369 4.176-65.494Q4.061-65.619 4.061-65.791Q4.061-66.084 4.196-66.326Q4.330-66.568 4.569-66.740Q4.807-66.912 5.075-66.996Q5.342-67.080 5.635-67.080Q6.116-67.080 6.532-66.890Q6.948-66.701 7.200-66.340Q7.452-65.978 7.452-65.494Q7.452-65.150 7.319-64.847Q7.186-64.545 6.961-64.285Q6.737-64.025 6.428-63.763Q6.119-63.502 5.909-63.326L5.100-62.670L6.811-62.670L6.811-62.814Q6.862-63.025 7.061-63.048L7.202-63.048Q7.401-63.029 7.452-62.814L7.452-62.349Q7.401-62.134 7.202-62.111L4.307-62.111Q4.112-62.131 4.061-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 2.444)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 1.889)\">\u003Cpath d=\"M-38.244-62.349L-38.244-62.439Q-38.193-62.646-37.998-62.670L-36.959-62.670L-36.959-64.998L-37.931-64.998Q-38.131-65.021-38.181-65.240L-38.181-65.326Q-38.131-65.537-37.931-65.560L-36.564-65.560Q-36.369-65.541-36.318-65.326L-36.318-62.670L-35.404-62.670Q-35.209-62.646-35.158-62.439L-35.158-62.349Q-35.209-62.134-35.404-62.111L-37.998-62.111Q-38.193-62.134-38.244-62.349M-37.213-66.537L-37.213-66.591Q-37.213-66.763-37.076-66.884Q-36.939-67.006-36.763-67.006Q-36.591-67.006-36.455-66.884Q-36.318-66.763-36.318-66.591L-36.318-66.537Q-36.318-66.361-36.455-66.240Q-36.591-66.119-36.763-66.119Q-36.939-66.119-37.076-66.240Q-37.213-66.361-37.213-66.537M-34.392-62.349L-34.392-62.439Q-34.334-62.646-34.142-62.670L-33.431-62.670L-33.431-64.998L-34.142-64.998Q-34.338-65.021-34.392-65.240L-34.392-65.326Q-34.334-65.537-34.142-65.560L-33.041-65.560Q-32.841-65.541-32.791-65.326L-32.791-64.998Q-32.529-65.283-32.173-65.441Q-31.818-65.599-31.431-65.599Q-31.138-65.599-30.904-65.465Q-30.670-65.330-30.670-65.064Q-30.670-64.896-30.779-64.779Q-30.888-64.662-31.056-64.662Q-31.209-64.662-31.324-64.773Q-31.439-64.884-31.439-65.041Q-31.814-65.041-32.129-64.840Q-32.443-64.638-32.617-64.304Q-32.791-63.970-32.791-63.591L-32.791-62.670L-31.845-62.670Q-31.638-62.646-31.599-62.439L-31.599-62.349Q-31.638-62.134-31.845-62.111L-34.142-62.111Q-34.334-62.134-34.392-62.349M-30.423-62.349L-30.423-62.439Q-30.373-62.650-30.177-62.670L-29.978-62.670L-29.978-64.998L-30.177-64.998Q-30.384-65.021-30.423-65.240L-30.423-65.326Q-30.373-65.541-30.177-65.560L-29.697-65.560Q-29.506-65.537-29.447-65.326Q-29.127-65.599-28.713-65.599Q-28.521-65.599-28.353-65.490Q-28.185-65.381-28.111-65.209Q-27.935-65.400-27.713-65.500Q-27.490-65.599-27.248-65.599Q-26.830-65.599-26.675-65.257Q-26.521-64.916-26.521-64.447L-26.521-62.670L-26.322-62.670Q-26.111-62.646-26.072-62.439L-26.072-62.349Q-26.123-62.134-26.322-62.111L-27.138-62.111Q-27.334-62.134-27.384-62.349L-27.384-62.439Q-27.334-62.646-27.138-62.670L-27.048-62.670L-27.048-64.416Q-27.048-65.041-27.298-65.041Q-27.631-65.041-27.808-64.730Q-27.986-64.420-27.986-64.056L-27.986-62.670L-27.783-62.670Q-27.576-62.646-27.537-62.439L-27.537-62.349Q-27.588-62.134-27.783-62.111L-28.599-62.111Q-28.798-62.134-28.849-62.349L-28.849-62.439Q-28.798-62.646-28.599-62.670L-28.513-62.670L-28.513-64.416Q-28.513-65.041-28.759-65.041Q-29.091-65.041-29.269-64.728Q-29.447-64.416-29.447-64.056L-29.447-62.670L-29.248-62.670Q-29.041-62.646-29.002-62.439L-29.002-62.349Q-29.052-62.131-29.248-62.111L-30.177-62.111Q-30.384-62.134-30.423-62.349M-24.002-62.072Q-24.474-62.072-24.859-62.316Q-25.244-62.560-25.466-62.970Q-25.689-63.381-25.689-63.838Q-25.689-64.181-25.564-64.504Q-25.439-64.826-25.209-65.080Q-24.978-65.334-24.672-65.478Q-24.365-65.623-24.002-65.623Q-23.638-65.623-23.326-65.476Q-23.013-65.330-22.791-65.084Q-22.568-64.838-22.441-64.517Q-22.314-64.197-22.314-63.838Q-22.314-63.381-22.539-62.968Q-22.763-62.556-23.148-62.314Q-23.533-62.072-24.002-62.072M-24.002-62.631Q-23.537-62.631-23.246-63.025Q-22.955-63.420-22.955-63.904Q-22.955-64.197-23.090-64.465Q-23.224-64.732-23.465-64.898Q-23.705-65.064-24.002-65.064Q-24.306-65.064-24.545-64.898Q-24.783-64.732-24.918-64.465Q-25.052-64.197-25.052-63.904Q-25.052-63.423-24.759-63.027Q-24.466-62.631-24.002-62.631M-20.220-62.334L-21.107-64.998L-21.427-64.998Q-21.627-65.021-21.677-65.240L-21.677-65.326Q-21.627-65.537-21.427-65.560L-20.267-65.560Q-20.072-65.541-20.021-65.326L-20.021-65.240Q-20.072-65.021-20.267-64.998L-20.548-64.998L-19.756-62.623L-18.966-64.998L-19.244-64.998Q-19.443-65.021-19.494-65.240L-19.494-65.326Q-19.443-65.537-19.244-65.560L-18.084-65.560Q-17.888-65.537-17.838-65.326L-17.838-65.240Q-17.888-65.021-18.084-64.998L-18.404-64.998L-19.291-62.334Q-19.334-62.220-19.435-62.146Q-19.537-62.072-19.662-62.072L-19.853-62.072Q-19.970-62.072-20.074-62.144Q-20.177-62.216-20.220-62.334M-15.318-60.568L-15.318-60.654Q-15.267-60.873-15.072-60.896L-14.607-60.896L-14.607-62.494Q-15.060-62.072-15.670-62.072Q-16.025-62.072-16.330-62.215Q-16.634-62.357-16.867-62.607Q-17.099-62.857-17.224-63.179Q-17.349-63.502-17.349-63.838Q-17.349-64.322-17.111-64.722Q-16.873-65.123-16.466-65.361Q-16.060-65.599-15.584-65.599Q-15.021-65.599-14.607-65.209L-14.607-65.369Q-14.556-65.580-14.357-65.599L-14.216-65.599Q-14.017-65.576-13.966-65.369L-13.966-60.896L-13.502-60.896Q-13.306-60.873-13.256-60.654L-13.256-60.568Q-13.306-60.357-13.502-60.334L-15.072-60.334Q-15.267-60.357-15.318-60.568M-15.623-62.631Q-15.252-62.631-14.976-62.884Q-14.701-63.138-14.607-63.502L-14.607-64.119Q-14.650-64.357-14.773-64.570Q-14.896-64.783-15.093-64.912Q-15.291-65.041-15.533-65.041Q-15.849-65.041-16.121-64.875Q-16.392-64.709-16.550-64.427Q-16.709-64.146-16.709-63.830Q-16.709-63.365-16.394-62.998Q-16.080-62.631-15.623-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 1.889)\">\u003Cpath d=\"M-7.271-61.677L-7.271-62.088Q-7.873-62.154-8.256-62.523Q-8.638-62.892-8.638-63.486Q-8.638-63.662-8.521-63.783Q-8.404-63.904-8.232-63.904Q-8.154-63.904-8.074-63.873Q-7.994-63.841-7.943-63.791Q-7.892-63.740-7.861-63.660Q-7.830-63.580-7.830-63.502Q-7.830-63.302-7.959-63.209Q-7.892-62.982-7.709-62.843Q-7.525-62.705-7.271-62.654L-7.271-64.384Q-7.849-64.506-8.244-64.832Q-8.638-65.158-8.638-65.705Q-8.638-66.224-8.226-66.586Q-7.814-66.947-7.271-67.021L-7.271-67.431Q-7.220-67.638-7.021-67.662L-6.959-67.662Q-6.763-67.642-6.713-67.431L-6.713-67.021Q-6.334-66.986-6.023-66.828Q-5.713-66.670-5.527-66.388Q-5.341-66.107-5.341-65.720Q-5.341-65.548-5.455-65.425Q-5.568-65.302-5.744-65.302Q-5.912-65.302-6.031-65.418Q-6.150-65.533-6.150-65.705Q-6.150-65.881-6.033-65.998Q-6.107-66.197-6.291-66.310Q-6.474-66.423-6.713-66.455L-6.713-64.920Q-6.345-64.845-6.029-64.660Q-5.713-64.474-5.527-64.183Q-5.341-63.892-5.341-63.502Q-5.341-63.224-5.451-62.986Q-5.560-62.748-5.759-62.554Q-5.959-62.361-6.209-62.246Q-6.459-62.131-6.713-62.095L-6.713-61.677Q-6.763-61.470-6.959-61.447L-7.021-61.447Q-7.220-61.466-7.271-61.677M-6.713-64.271L-6.713-62.662Q-6.400-62.732-6.168-62.949Q-5.935-63.166-5.935-63.463Q-5.935-63.670-6.043-63.834Q-6.150-63.998-6.328-64.109Q-6.506-64.220-6.713-64.271M-8.049-65.744Q-8.049-65.466-7.818-65.289Q-7.588-65.111-7.271-65.041L-7.271-66.455Q-7.568-66.400-7.808-66.211Q-8.049-66.021-8.049-65.744M-2.744-62.033Q-3.177-62.033-3.509-62.271Q-3.841-62.509-4.062-62.898Q-4.283-63.287-4.390-63.724Q-4.498-64.162-4.498-64.560Q-4.498-64.951-4.388-65.394Q-4.279-65.838-4.062-66.218Q-3.845-66.599-3.511-66.840Q-3.177-67.080-2.744-67.080Q-2.189-67.080-1.789-66.681Q-1.388-66.283-1.191-65.697Q-0.994-65.111-0.994-64.560Q-0.994-64.006-1.191-63.418Q-1.388-62.830-1.789-62.431Q-2.189-62.033-2.744-62.033M-2.744-62.591Q-2.443-62.591-2.226-62.808Q-2.009-63.025-1.882-63.353Q-1.756-63.681-1.695-64.027Q-1.634-64.373-1.634-64.654Q-1.634-64.904-1.697-65.230Q-1.759-65.556-1.890-65.847Q-2.021-66.138-2.234-66.328Q-2.447-66.517-2.744-66.517Q-3.119-66.517-3.371-66.205Q-3.623-65.892-3.740-65.459Q-3.857-65.025-3.857-64.654Q-3.857-64.256-3.744-63.775Q-3.631-63.295-3.382-62.943Q-3.134-62.591-2.744-62.591M-0.361-62.349L-0.361-62.439Q-0.322-62.646-0.115-62.670L0.291-62.670L1.221-63.888L0.350-64.998L-0.068-64.998Q-0.263-65.017-0.314-65.240L-0.314-65.326Q-0.263-65.537-0.068-65.560L1.092-65.560Q1.291-65.537 1.342-65.326L1.342-65.240Q1.291-65.021 1.092-64.998L0.983-64.998L1.479-64.341L1.955-64.998L1.838-64.998Q1.639-65.021 1.588-65.240L1.588-65.326Q1.639-65.537 1.838-65.560L2.998-65.560Q3.194-65.541 3.244-65.326L3.244-65.240Q3.194-65.021 2.998-64.998L2.588-64.998L1.741-63.888L2.701-62.670L3.108-62.670Q3.307-62.646 3.358-62.439L3.358-62.349Q3.319-62.134 3.108-62.111L1.955-62.111Q1.748-62.134 1.709-62.349L1.709-62.439Q1.748-62.646 1.955-62.670L2.084-62.670L1.479-63.525L0.893-62.670L1.037-62.670Q1.244-62.646 1.284-62.439L1.284-62.349Q1.244-62.134 1.037-62.111L-0.115-62.111Q-0.310-62.131-0.361-62.349M4.053-62.349L4.053-62.423Q4.084-62.591 4.186-62.638L5.475-63.705Q5.807-63.982 5.989-64.134Q6.170-64.287 6.366-64.507Q6.561-64.728 6.682-64.978Q6.803-65.228 6.803-65.494Q6.803-65.818 6.627-66.052Q6.451-66.287 6.172-66.402Q5.893-66.517 5.573-66.517Q5.315-66.517 5.086-66.394Q4.858-66.271 4.756-66.056Q4.858-65.923 4.858-65.775Q4.858-65.615 4.739-65.492Q4.619-65.369 4.459-65.369Q4.284-65.369 4.168-65.494Q4.053-65.619 4.053-65.791Q4.053-66.084 4.188-66.326Q4.323-66.568 4.561-66.740Q4.799-66.912 5.067-66.996Q5.334-67.080 5.627-67.080Q6.108-67.080 6.524-66.890Q6.940-66.701 7.192-66.340Q7.444-65.978 7.444-65.494Q7.444-65.150 7.311-64.847Q7.178-64.545 6.953-64.285Q6.729-64.025 6.420-63.763Q6.112-63.502 5.901-63.326L5.092-62.670L6.803-62.670L6.803-62.814Q6.854-63.025 7.053-63.048L7.194-63.048Q7.393-63.029 7.444-62.814L7.444-62.349Q7.393-62.134 7.194-62.111L4.299-62.111Q4.104-62.131 4.053-62.349M9.994-62.033Q9.561-62.033 9.229-62.271Q8.897-62.509 8.676-62.898Q8.455-63.287 8.348-63.724Q8.241-64.162 8.241-64.560Q8.241-64.951 8.350-65.394Q8.459-65.838 8.676-66.218Q8.893-66.599 9.227-66.840Q9.561-67.080 9.994-67.080Q10.549-67.080 10.950-66.681Q11.350-66.283 11.547-65.697Q11.744-65.111 11.744-64.560Q11.744-64.006 11.547-63.418Q11.350-62.830 10.950-62.431Q10.549-62.033 9.994-62.033M9.994-62.591Q10.295-62.591 10.512-62.808Q10.729-63.025 10.856-63.353Q10.983-63.681 11.043-64.027Q11.104-64.373 11.104-64.654Q11.104-64.904 11.041-65.230Q10.979-65.556 10.848-65.847Q10.717-66.138 10.504-66.328Q10.291-66.517 9.994-66.517Q9.619-66.517 9.368-66.205Q9.116-65.892 8.998-65.459Q8.881-65.025 8.881-64.654Q8.881-64.256 8.994-63.775Q9.108-63.295 9.356-62.943Q9.604-62.591 9.994-62.591M14.241-62.033Q13.807-62.033 13.475-62.271Q13.143-62.509 12.922-62.898Q12.701-63.287 12.594-63.724Q12.487-64.162 12.487-64.560Q12.487-64.951 12.596-65.394Q12.705-65.838 12.922-66.218Q13.139-66.599 13.473-66.840Q13.807-67.080 14.241-67.080Q14.795-67.080 15.196-66.681Q15.596-66.283 15.793-65.697Q15.991-65.111 15.991-64.560Q15.991-64.006 15.793-63.418Q15.596-62.830 15.196-62.431Q14.795-62.033 14.241-62.033M14.241-62.591Q14.541-62.591 14.758-62.808Q14.975-63.025 15.102-63.353Q15.229-63.681 15.289-64.027Q15.350-64.373 15.350-64.654Q15.350-64.904 15.287-65.230Q15.225-65.556 15.094-65.847Q14.963-66.138 14.750-66.328Q14.537-66.517 14.241-66.517Q13.866-66.517 13.614-66.205Q13.362-65.892 13.244-65.459Q13.127-65.025 13.127-64.654Q13.127-64.256 13.241-63.775Q13.354-63.295 13.602-62.943Q13.850-62.591 14.241-62.591M18.084-60.998Q17.971-60.998 17.881-61.088Q17.791-61.177 17.791-61.287Q17.791-61.463 17.983-61.537Q18.201-61.588 18.373-61.746Q18.545-61.904 18.612-62.127Q18.588-62.127 18.557-62.111L18.494-62.111Q18.264-62.111 18.098-62.273Q17.932-62.435 17.932-62.670Q17.932-62.904 18.096-63.064Q18.260-63.224 18.494-63.224Q18.705-63.224 18.869-63.103Q19.034-62.982 19.123-62.789Q19.213-62.595 19.213-62.384Q19.213-61.908 18.914-61.519Q18.616-61.131 18.151-61.006Q18.127-60.998 18.084-60.998M21.291-61.752Q21.291-61.806 21.315-61.873L23.580-67.478Q23.674-67.662 23.869-67.662Q23.994-67.662 24.082-67.574Q24.170-67.486 24.170-67.357Q24.170-67.298 24.147-67.240L21.885-61.631Q21.784-61.447 21.604-61.447Q21.479-61.447 21.385-61.537Q21.291-61.627 21.291-61.752M23.869-61.447Q23.518-61.447 23.336-61.787Q23.155-62.127 23.155-62.509Q23.155-62.896 23.334-63.236Q23.514-63.576 23.869-63.576Q24.108-63.576 24.266-63.406Q24.424-63.236 24.498-62.992Q24.573-62.748 24.573-62.509Q24.573-62.275 24.498-62.031Q24.424-61.787 24.266-61.617Q24.108-61.447 23.869-61.447M23.869-62.006Q23.951-62.037 23.998-62.205Q24.045-62.373 24.045-62.509Q24.045-62.646 23.998-62.816Q23.951-62.986 23.869-63.013Q23.784-62.986 23.733-62.818Q23.682-62.650 23.682-62.509Q23.682-62.381 23.733-62.209Q23.784-62.037 23.869-62.006M21.604-65.525Q21.362-65.525 21.201-65.695Q21.041-65.865 20.967-66.111Q20.893-66.357 20.893-66.599Q20.893-66.982 21.073-67.322Q21.252-67.662 21.604-67.662Q21.842-67.662 22-67.492Q22.159-67.322 22.233-67.078Q22.307-66.834 22.307-66.599Q22.307-66.357 22.233-66.111Q22.159-65.865 22-65.695Q21.842-65.525 21.604-65.525M21.604-66.088Q21.694-66.131 21.737-66.287Q21.780-66.443 21.780-66.599Q21.780-66.728 21.733-66.904Q21.686-67.080 21.596-67.103Q21.580-67.103 21.551-67.068Q21.522-67.033 21.514-67.013Q21.420-66.826 21.420-66.599Q21.420-66.463 21.469-66.291Q21.518-66.119 21.604-66.088M25.080-62.349L25.080-62.439Q25.139-62.646 25.330-62.670L26.041-62.670L26.041-64.998L25.330-64.998Q25.135-65.021 25.080-65.240L25.080-65.326Q25.139-65.537 25.330-65.560L26.432-65.560Q26.631-65.541 26.682-65.326L26.682-64.998Q26.944-65.283 27.299-65.441Q27.655-65.599 28.041-65.599Q28.334-65.599 28.569-65.465Q28.803-65.330 28.803-65.064Q28.803-64.896 28.694-64.779Q28.584-64.662 28.416-64.662Q28.264-64.662 28.149-64.773Q28.034-64.884 28.034-65.041Q27.659-65.041 27.344-64.840Q27.030-64.638 26.856-64.304Q26.682-63.970 26.682-63.591L26.682-62.670L27.627-62.670Q27.834-62.646 27.873-62.439L27.873-62.349Q27.834-62.134 27.627-62.111L25.330-62.111Q25.139-62.134 25.080-62.349M29.690-62.310L29.690-63.224Q29.717-63.431 29.928-63.455L30.096-63.455Q30.260-63.431 30.319-63.271Q30.522-62.631 31.248-62.631Q31.455-62.631 31.684-62.666Q31.912-62.701 32.080-62.816Q32.248-62.931 32.248-63.134Q32.248-63.345 32.026-63.459Q31.803-63.572 31.530-63.615L30.830-63.728Q29.690-63.939 29.690-64.662Q29.690-64.951 29.834-65.140Q29.979-65.330 30.219-65.437Q30.459-65.545 30.715-65.584Q30.971-65.623 31.248-65.623Q31.498-65.623 31.692-65.593Q31.885-65.564 32.049-65.486Q32.127-65.603 32.256-65.623L32.334-65.623Q32.432-65.611 32.494-65.548Q32.557-65.486 32.569-65.392L32.569-64.685Q32.557-64.591 32.494-64.525Q32.432-64.459 32.334-64.447L32.166-64.447Q32.073-64.459 32.006-64.525Q31.940-64.591 31.928-64.685Q31.928-65.064 31.233-65.064Q30.885-65.064 30.567-64.982Q30.248-64.900 30.248-64.654Q30.248-64.388 30.920-64.279L31.623-64.158Q32.108-64.076 32.457-63.828Q32.807-63.580 32.807-63.134Q32.807-62.744 32.571-62.502Q32.334-62.259 31.985-62.166Q31.635-62.072 31.248-62.072Q30.670-62.072 30.272-62.326Q30.201-62.201 30.153-62.144Q30.104-62.088 29.998-62.072L29.928-62.072Q29.713-62.095 29.690-62.310M33.420-60.568L33.420-60.654Q33.463-60.873 33.670-60.896L34.092-60.896L34.092-64.998L33.670-64.998Q33.463-65.021 33.420-65.240L33.420-65.326Q33.467-65.537 33.670-65.560L34.487-65.560Q34.682-65.541 34.733-65.326L34.733-65.256Q34.944-65.423 35.207-65.511Q35.471-65.599 35.741-65.599Q36.080-65.599 36.377-65.455Q36.674-65.310 36.889-65.058Q37.104-64.806 37.219-64.494Q37.334-64.181 37.334-63.838Q37.334-63.373 37.108-62.963Q36.881-62.552 36.494-62.312Q36.108-62.072 35.639-62.072Q35.119-62.072 34.733-62.439L34.733-60.896L35.159-60.896Q35.366-60.873 35.405-60.654L35.405-60.568Q35.366-60.357 35.159-60.334L33.670-60.334Q33.467-60.357 33.420-60.568M35.596-62.631Q35.905-62.631 36.155-62.800Q36.405-62.970 36.549-63.252Q36.694-63.533 36.694-63.838Q36.694-64.127 36.569-64.406Q36.444-64.685 36.211-64.863Q35.979-65.041 35.678-65.041Q35.358-65.041 35.096-64.855Q34.834-64.670 34.733-64.369L34.733-63.517Q34.823-63.150 35.043-62.890Q35.264-62.631 35.596-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 19.516)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-24.002-62.033Q-24.435-62.033-24.767-62.271Q-25.099-62.509-25.320-62.898Q-25.541-63.287-25.648-63.724Q-25.756-64.162-25.756-64.560Q-25.756-64.951-25.646-65.394Q-25.537-65.838-25.320-66.218Q-25.103-66.599-24.769-66.840Q-24.435-67.080-24.002-67.080Q-23.447-67.080-23.047-66.681Q-22.646-66.283-22.449-65.697Q-22.252-65.111-22.252-64.560Q-22.252-64.006-22.449-63.418Q-22.646-62.830-23.047-62.431Q-23.447-62.033-24.002-62.033M-24.002-62.591Q-23.701-62.591-23.484-62.808Q-23.267-63.025-23.140-63.353Q-23.013-63.681-22.953-64.027Q-22.892-64.373-22.892-64.654Q-22.892-64.904-22.955-65.230Q-23.017-65.556-23.148-65.847Q-23.279-66.138-23.492-66.328Q-23.705-66.517-24.002-66.517Q-24.377-66.517-24.629-66.205Q-24.881-65.892-24.998-65.459Q-25.115-65.025-25.115-64.654Q-25.115-64.256-25.002-63.775Q-24.888-63.295-24.640-62.943Q-24.392-62.591-24.002-62.591M-21.470-63.224Q-21.470-63.670-21.056-63.927Q-20.642-64.185-20.101-64.285Q-19.560-64.384-19.052-64.392Q-19.052-64.607-19.187-64.759Q-19.322-64.912-19.529-64.988Q-19.736-65.064-19.947-65.064Q-20.291-65.064-20.451-65.041L-20.451-64.982Q-20.451-64.814-20.570-64.699Q-20.689-64.584-20.853-64.584Q-21.029-64.584-21.144-64.707Q-21.259-64.830-21.259-64.998Q-21.259-65.404-20.879-65.513Q-20.498-65.623-19.939-65.623Q-19.670-65.623-19.402-65.545Q-19.134-65.466-18.910-65.316Q-18.685-65.166-18.548-64.945Q-18.412-64.724-18.412-64.447L-18.412-62.728Q-18.412-62.670-17.884-62.670Q-17.689-62.650-17.638-62.439L-17.638-62.349Q-17.689-62.134-17.884-62.111L-18.029-62.111Q-18.373-62.111-18.601-62.158Q-18.830-62.205-18.974-62.392Q-19.435-62.072-20.142-62.072Q-20.478-62.072-20.783-62.213Q-21.088-62.353-21.279-62.615Q-21.470-62.877-21.470-63.224M-20.830-63.216Q-20.830-62.943-20.588-62.787Q-20.345-62.631-20.060-62.631Q-19.841-62.631-19.609-62.689Q-19.377-62.748-19.215-62.886Q-19.052-63.025-19.052-63.248L-19.052-63.838Q-19.334-63.838-19.750-63.781Q-20.166-63.724-20.498-63.586Q-20.830-63.447-20.830-63.216\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M-38.509-63.158Q-38.509-63.334-38.392-63.455Q-38.275-63.576-38.099-63.576Q-38.017-63.576-37.941-63.545Q-37.865-63.513-37.814-63.463Q-37.763-63.412-37.732-63.332Q-37.701-63.252-37.701-63.173Q-37.701-63.041-37.783-62.927Q-37.513-62.591-36.724-62.591Q-36.298-62.591-35.957-62.857Q-35.615-63.123-35.615-63.537Q-35.615-63.810-35.781-64.029Q-35.947-64.248-36.207-64.359Q-36.466-64.470-36.740-64.470L-37.205-64.470Q-37.416-64.494-37.447-64.713L-37.447-64.798Q-37.416-65.002-37.205-65.033L-36.677-65.072Q-36.463-65.072-36.271-65.195Q-36.080-65.318-35.966-65.521Q-35.853-65.724-35.853-65.935Q-35.853-66.209-36.136-66.363Q-36.420-66.517-36.724-66.517Q-37.287-66.517-37.525-66.326Q-37.463-66.213-37.463-66.103Q-37.463-65.931-37.576-65.818Q-37.689-65.705-37.861-65.705Q-38.037-65.705-38.152-65.828Q-38.267-65.951-38.267-66.119Q-38.267-66.646-37.795-66.863Q-37.322-67.080-36.724-67.080Q-36.384-67.080-36.029-66.949Q-35.673-66.818-35.443-66.560Q-35.213-66.302-35.213-65.935Q-35.213-65.591-35.381-65.287Q-35.548-64.982-35.845-64.783Q-35.474-64.603-35.224-64.267Q-34.974-63.931-34.974-63.537Q-34.974-63.091-35.228-62.750Q-35.482-62.408-35.884-62.220Q-36.287-62.033-36.724-62.033Q-37.009-62.033-37.314-62.088Q-37.619-62.142-37.894-62.269Q-38.170-62.396-38.340-62.619Q-38.509-62.841-38.509-63.158M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M-25.791-62.349L-25.791-62.439Q-25.740-62.646-25.545-62.670L-24.662-62.670L-24.662-64.998L-25.517-64.998Q-25.716-65.021-25.767-65.240L-25.767-65.326Q-25.716-65.537-25.517-65.560L-24.662-65.560L-24.662-66.013Q-24.662-66.478-24.256-66.759Q-23.849-67.041-23.369-67.041Q-23.056-67.041-22.812-66.920Q-22.568-66.798-22.568-66.517Q-22.568-66.353-22.677-66.236Q-22.787-66.119-22.951-66.119Q-23.099-66.119-23.220-66.224Q-23.341-66.330-23.341-66.478L-23.424-66.478Q-23.576-66.478-23.713-66.418Q-23.849-66.357-23.935-66.242Q-24.021-66.127-24.021-65.982L-24.021-65.560L-22.990-65.560Q-22.795-65.541-22.744-65.326L-22.744-65.240Q-22.795-65.021-22.990-64.998L-24.021-64.998L-24.021-62.670L-23.142-62.670Q-22.947-62.646-22.896-62.439L-22.896-62.349Q-22.947-62.134-23.142-62.111L-25.545-62.111Q-25.740-62.134-25.791-62.349M-20.529-62.326L-20.529-62.384Q-20.529-62.927-20.424-63.474Q-20.318-64.021-20.113-64.545Q-19.908-65.068-19.611-65.547Q-19.314-66.025-18.935-66.439L-20.873-66.439L-20.873-66.302Q-20.924-66.088-21.123-66.064L-21.263-66.064Q-21.463-66.088-21.513-66.302L-21.513-66.896Q-21.463-67.107-21.263-67.127L-21.123-67.127Q-20.986-67.115-20.912-66.998L-18.224-66.998Q-18.029-66.974-17.978-66.767L-17.978-66.677Q-17.990-66.588-18.033-66.537Q-18.295-66.279-18.525-66.013Q-18.756-65.748-18.918-65.515Q-19.080-65.283-19.238-64.984Q-19.396-64.685-19.529-64.334Q-19.705-63.861-19.797-63.345Q-19.888-62.830-19.888-62.326Q-19.900-62.201-19.986-62.123Q-20.072-62.045-20.193-62.033Q-20.330-62.033-20.424-62.111Q-20.517-62.189-20.529-62.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M-12.224-62.990Q-12.107-62.787-11.873-62.689Q-11.638-62.591-11.377-62.591Q-11.080-62.591-10.806-62.720Q-10.533-62.849-10.359-63.086Q-10.185-63.322-10.185-63.623Q-10.185-63.877-10.304-64.119Q-10.424-64.361-10.638-64.507Q-10.853-64.654-11.123-64.654Q-11.728-64.654-12.064-64.334Q-12.142-64.248-12.197-64.201Q-12.252-64.154-12.338-64.142L-12.439-64.142Q-12.638-64.166-12.689-64.384L-12.689-66.767Q-12.638-66.974-12.439-66.998L-10.080-66.998Q-9.884-66.978-9.834-66.767L-9.834-66.677Q-9.884-66.463-10.080-66.439L-12.049-66.439L-12.049-65.013Q-11.642-65.216-11.123-65.216Q-10.693-65.216-10.328-65Q-9.963-64.783-9.754-64.414Q-9.545-64.045-9.545-63.623Q-9.545-63.150-9.808-62.791Q-10.072-62.431-10.496-62.232Q-10.920-62.033-11.377-62.033Q-11.631-62.033-11.908-62.107Q-12.185-62.181-12.420-62.338Q-12.654-62.494-12.795-62.728Q-12.935-62.963-12.935-63.248Q-12.935-63.416-12.820-63.539Q-12.705-63.662-12.529-63.662Q-12.447-63.662-12.377-63.632Q-12.306-63.603-12.250-63.548Q-12.193-63.494-12.162-63.418Q-12.131-63.341-12.131-63.263Q-12.131-63.103-12.224-62.990M-8.763-63.525Q-8.763-63.810-8.607-64.064Q-8.451-64.318-8.201-64.492Q-7.951-64.666-7.666-64.752Q-7.904-64.826-8.131-64.968Q-8.357-65.111-8.500-65.320Q-8.642-65.529-8.642-65.775Q-8.642-66.173-8.396-66.468Q-8.150-66.763-7.767-66.922Q-7.384-67.080-6.994-67.080Q-6.603-67.080-6.220-66.922Q-5.838-66.763-5.591-66.465Q-5.345-66.166-5.345-65.775Q-5.345-65.529-5.488-65.322Q-5.631-65.115-5.857-64.970Q-6.084-64.826-6.322-64.752Q-5.869-64.615-5.549-64.289Q-5.228-63.963-5.228-63.525Q-5.228-63.088-5.486-62.744Q-5.744-62.400-6.154-62.216Q-6.564-62.033-6.994-62.033Q-7.424-62.033-7.834-62.215Q-8.244-62.396-8.504-62.740Q-8.763-63.084-8.763-63.525M-8.123-63.525Q-8.123-63.252-7.957-63.037Q-7.791-62.822-7.529-62.707Q-7.267-62.591-6.994-62.591Q-6.720-62.591-6.461-62.707Q-6.201-62.822-6.035-63.039Q-5.869-63.256-5.869-63.525Q-5.869-63.802-6.035-64.019Q-6.201-64.236-6.461-64.353Q-6.720-64.470-6.994-64.470Q-7.267-64.470-7.529-64.353Q-7.791-64.236-7.957-64.021Q-8.123-63.806-8.123-63.525M-8.002-65.775Q-8.002-65.537-7.845-65.369Q-7.689-65.201-7.453-65.117Q-7.216-65.033-6.994-65.033Q-6.775-65.033-6.537-65.117Q-6.299-65.201-6.142-65.371Q-5.986-65.541-5.986-65.775Q-5.986-66.009-6.142-66.179Q-6.299-66.349-6.537-66.433Q-6.775-66.517-6.994-66.517Q-7.216-66.517-7.453-66.433Q-7.689-66.349-7.845-66.181Q-8.002-66.013-8.002-65.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 19.516)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 18.96)\">\u003Cpath d=\"M-38.244-62.349L-38.244-62.439Q-38.193-62.646-37.998-62.670L-36.959-62.670L-36.959-64.998L-37.931-64.998Q-38.131-65.021-38.181-65.240L-38.181-65.326Q-38.131-65.537-37.931-65.560L-36.564-65.560Q-36.369-65.541-36.318-65.326L-36.318-62.670L-35.404-62.670Q-35.209-62.646-35.158-62.439L-35.158-62.349Q-35.209-62.134-35.404-62.111L-37.998-62.111Q-38.193-62.134-38.244-62.349M-37.213-66.537L-37.213-66.591Q-37.213-66.763-37.076-66.884Q-36.939-67.006-36.763-67.006Q-36.591-67.006-36.455-66.884Q-36.318-66.763-36.318-66.591L-36.318-66.537Q-36.318-66.361-36.455-66.240Q-36.591-66.119-36.763-66.119Q-36.939-66.119-37.076-66.240Q-37.213-66.361-37.213-66.537M-34.392-62.349L-34.392-62.439Q-34.334-62.646-34.142-62.670L-33.431-62.670L-33.431-64.998L-34.142-64.998Q-34.338-65.021-34.392-65.240L-34.392-65.326Q-34.334-65.537-34.142-65.560L-33.041-65.560Q-32.841-65.541-32.791-65.326L-32.791-64.998Q-32.529-65.283-32.173-65.441Q-31.818-65.599-31.431-65.599Q-31.138-65.599-30.904-65.465Q-30.670-65.330-30.670-65.064Q-30.670-64.896-30.779-64.779Q-30.888-64.662-31.056-64.662Q-31.209-64.662-31.324-64.773Q-31.439-64.884-31.439-65.041Q-31.814-65.041-32.129-64.840Q-32.443-64.638-32.617-64.304Q-32.791-63.970-32.791-63.591L-32.791-62.670L-31.845-62.670Q-31.638-62.646-31.599-62.439L-31.599-62.349Q-31.638-62.134-31.845-62.111L-34.142-62.111Q-34.334-62.134-34.392-62.349M-30.423-62.349L-30.423-62.439Q-30.373-62.650-30.177-62.670L-29.978-62.670L-29.978-64.998L-30.177-64.998Q-30.384-65.021-30.423-65.240L-30.423-65.326Q-30.373-65.541-30.177-65.560L-29.697-65.560Q-29.506-65.537-29.447-65.326Q-29.127-65.599-28.713-65.599Q-28.521-65.599-28.353-65.490Q-28.185-65.381-28.111-65.209Q-27.935-65.400-27.713-65.500Q-27.490-65.599-27.248-65.599Q-26.830-65.599-26.675-65.257Q-26.521-64.916-26.521-64.447L-26.521-62.670L-26.322-62.670Q-26.111-62.646-26.072-62.439L-26.072-62.349Q-26.123-62.134-26.322-62.111L-27.138-62.111Q-27.334-62.134-27.384-62.349L-27.384-62.439Q-27.334-62.646-27.138-62.670L-27.048-62.670L-27.048-64.416Q-27.048-65.041-27.298-65.041Q-27.631-65.041-27.808-64.730Q-27.986-64.420-27.986-64.056L-27.986-62.670L-27.783-62.670Q-27.576-62.646-27.537-62.439L-27.537-62.349Q-27.588-62.134-27.783-62.111L-28.599-62.111Q-28.798-62.134-28.849-62.349L-28.849-62.439Q-28.798-62.646-28.599-62.670L-28.513-62.670L-28.513-64.416Q-28.513-65.041-28.759-65.041Q-29.091-65.041-29.269-64.728Q-29.447-64.416-29.447-64.056L-29.447-62.670L-29.248-62.670Q-29.041-62.646-29.002-62.439L-29.002-62.349Q-29.052-62.131-29.248-62.111L-30.177-62.111Q-30.384-62.134-30.423-62.349M-24.002-62.072Q-24.474-62.072-24.859-62.316Q-25.244-62.560-25.466-62.970Q-25.689-63.381-25.689-63.838Q-25.689-64.181-25.564-64.504Q-25.439-64.826-25.209-65.080Q-24.978-65.334-24.672-65.478Q-24.365-65.623-24.002-65.623Q-23.638-65.623-23.326-65.476Q-23.013-65.330-22.791-65.084Q-22.568-64.838-22.441-64.517Q-22.314-64.197-22.314-63.838Q-22.314-63.381-22.539-62.968Q-22.763-62.556-23.148-62.314Q-23.533-62.072-24.002-62.072M-24.002-62.631Q-23.537-62.631-23.246-63.025Q-22.955-63.420-22.955-63.904Q-22.955-64.197-23.090-64.465Q-23.224-64.732-23.465-64.898Q-23.705-65.064-24.002-65.064Q-24.306-65.064-24.545-64.898Q-24.783-64.732-24.918-64.465Q-25.052-64.197-25.052-63.904Q-25.052-63.423-24.759-63.027Q-24.466-62.631-24.002-62.631M-20.220-62.334L-21.107-64.998L-21.427-64.998Q-21.627-65.021-21.677-65.240L-21.677-65.326Q-21.627-65.537-21.427-65.560L-20.267-65.560Q-20.072-65.541-20.021-65.326L-20.021-65.240Q-20.072-65.021-20.267-64.998L-20.548-64.998L-19.756-62.623L-18.966-64.998L-19.244-64.998Q-19.443-65.021-19.494-65.240L-19.494-65.326Q-19.443-65.537-19.244-65.560L-18.084-65.560Q-17.888-65.537-17.838-65.326L-17.838-65.240Q-17.888-65.021-18.084-64.998L-18.404-64.998L-19.291-62.334Q-19.334-62.220-19.435-62.146Q-19.537-62.072-19.662-62.072L-19.853-62.072Q-19.970-62.072-20.074-62.144Q-20.177-62.216-20.220-62.334M-15.318-60.568L-15.318-60.654Q-15.267-60.873-15.072-60.896L-14.607-60.896L-14.607-62.494Q-15.060-62.072-15.670-62.072Q-16.025-62.072-16.330-62.215Q-16.634-62.357-16.867-62.607Q-17.099-62.857-17.224-63.179Q-17.349-63.502-17.349-63.838Q-17.349-64.322-17.111-64.722Q-16.873-65.123-16.466-65.361Q-16.060-65.599-15.584-65.599Q-15.021-65.599-14.607-65.209L-14.607-65.369Q-14.556-65.580-14.357-65.599L-14.216-65.599Q-14.017-65.576-13.966-65.369L-13.966-60.896L-13.502-60.896Q-13.306-60.873-13.256-60.654L-13.256-60.568Q-13.306-60.357-13.502-60.334L-15.072-60.334Q-15.267-60.357-15.318-60.568M-15.623-62.631Q-15.252-62.631-14.976-62.884Q-14.701-63.138-14.607-63.502L-14.607-64.119Q-14.650-64.357-14.773-64.570Q-14.896-64.783-15.093-64.912Q-15.291-65.041-15.533-65.041Q-15.849-65.041-16.121-64.875Q-16.392-64.709-16.550-64.427Q-16.709-64.146-16.709-63.830Q-16.709-63.365-16.394-62.998Q-16.080-62.631-15.623-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 18.96)\">\u003Cpath d=\"M-7.271-61.677L-7.271-62.088Q-7.873-62.154-8.256-62.523Q-8.638-62.892-8.638-63.486Q-8.638-63.662-8.521-63.783Q-8.404-63.904-8.232-63.904Q-8.154-63.904-8.074-63.873Q-7.994-63.841-7.943-63.791Q-7.892-63.740-7.861-63.660Q-7.830-63.580-7.830-63.502Q-7.830-63.302-7.959-63.209Q-7.892-62.982-7.709-62.843Q-7.525-62.705-7.271-62.654L-7.271-64.384Q-7.849-64.506-8.244-64.832Q-8.638-65.158-8.638-65.705Q-8.638-66.224-8.226-66.586Q-7.814-66.947-7.271-67.021L-7.271-67.431Q-7.220-67.638-7.021-67.662L-6.959-67.662Q-6.763-67.642-6.713-67.431L-6.713-67.021Q-6.334-66.986-6.023-66.828Q-5.713-66.670-5.527-66.388Q-5.341-66.107-5.341-65.720Q-5.341-65.548-5.455-65.425Q-5.568-65.302-5.744-65.302Q-5.912-65.302-6.031-65.418Q-6.150-65.533-6.150-65.705Q-6.150-65.881-6.033-65.998Q-6.107-66.197-6.291-66.310Q-6.474-66.423-6.713-66.455L-6.713-64.920Q-6.345-64.845-6.029-64.660Q-5.713-64.474-5.527-64.183Q-5.341-63.892-5.341-63.502Q-5.341-63.224-5.451-62.986Q-5.560-62.748-5.759-62.554Q-5.959-62.361-6.209-62.246Q-6.459-62.131-6.713-62.095L-6.713-61.677Q-6.763-61.470-6.959-61.447L-7.021-61.447Q-7.220-61.466-7.271-61.677M-6.713-64.271L-6.713-62.662Q-6.400-62.732-6.168-62.949Q-5.935-63.166-5.935-63.463Q-5.935-63.670-6.043-63.834Q-6.150-63.998-6.328-64.109Q-6.506-64.220-6.713-64.271M-8.049-65.744Q-8.049-65.466-7.818-65.289Q-7.588-65.111-7.271-65.041L-7.271-66.455Q-7.568-66.400-7.808-66.211Q-8.049-66.021-8.049-65.744M-4.459-63.224Q-4.459-63.670-4.045-63.927Q-3.631-64.185-3.090-64.285Q-2.549-64.384-2.041-64.392Q-2.041-64.607-2.175-64.759Q-2.310-64.912-2.517-64.988Q-2.724-65.064-2.935-65.064Q-3.279-65.064-3.439-65.041L-3.439-64.982Q-3.439-64.814-3.558-64.699Q-3.677-64.584-3.841-64.584Q-4.017-64.584-4.132-64.707Q-4.248-64.830-4.248-64.998Q-4.248-65.404-3.867-65.513Q-3.486-65.623-2.927-65.623Q-2.658-65.623-2.390-65.545Q-2.123-65.466-1.898-65.316Q-1.674-65.166-1.537-64.945Q-1.400-64.724-1.400-64.447L-1.400-62.728Q-1.400-62.670-0.873-62.670Q-0.677-62.650-0.627-62.439L-0.627-62.349Q-0.677-62.134-0.873-62.111L-1.017-62.111Q-1.361-62.111-1.590-62.158Q-1.818-62.205-1.963-62.392Q-2.424-62.072-3.131-62.072Q-3.466-62.072-3.771-62.213Q-4.076-62.353-4.267-62.615Q-4.459-62.877-4.459-63.224M-3.818-63.216Q-3.818-62.943-3.576-62.787Q-3.334-62.631-3.049-62.631Q-2.830-62.631-2.597-62.689Q-2.365-62.748-2.203-62.886Q-2.041-63.025-2.041-63.248L-2.041-63.838Q-2.322-63.838-2.738-63.781Q-3.154-63.724-3.486-63.586Q-3.818-63.447-3.818-63.216M-0.396-62.349L-0.396-62.439Q-0.338-62.646-0.146-62.670L0.565-62.670L0.565-64.998L-0.146-64.998Q-0.341-65.021-0.396-65.240L-0.396-65.326Q-0.338-65.537-0.146-65.560L0.955-65.560Q1.155-65.541 1.205-65.326L1.205-64.998Q1.467-65.283 1.823-65.441Q2.178-65.599 2.565-65.599Q2.858-65.599 3.092-65.465Q3.326-65.330 3.326-65.064Q3.326-64.896 3.217-64.779Q3.108-64.662 2.940-64.662Q2.787-64.662 2.672-64.773Q2.557-64.884 2.557-65.041Q2.182-65.041 1.868-64.840Q1.553-64.638 1.379-64.304Q1.205-63.970 1.205-63.591L1.205-62.670L2.151-62.670Q2.358-62.646 2.397-62.439L2.397-62.349Q2.358-62.134 2.151-62.111L-0.146-62.111Q-0.338-62.134-0.396-62.349M3.850-62.349L3.850-62.439Q3.909-62.646 4.100-62.670L4.811-62.670L4.811-64.998L4.100-64.998Q3.905-65.021 3.850-65.240L3.850-65.326Q3.909-65.537 4.100-65.560L5.201-65.560Q5.401-65.541 5.451-65.326L5.451-64.998Q5.713-65.283 6.069-65.441Q6.424-65.599 6.811-65.599Q7.104-65.599 7.338-65.465Q7.573-65.330 7.573-65.064Q7.573-64.896 7.463-64.779Q7.354-64.662 7.186-64.662Q7.034-64.662 6.918-64.773Q6.803-64.884 6.803-65.041Q6.428-65.041 6.114-64.840Q5.799-64.638 5.625-64.304Q5.451-63.970 5.451-63.591L5.451-62.670L6.397-62.670Q6.604-62.646 6.643-62.439L6.643-62.349Q6.604-62.134 6.397-62.111L4.100-62.111Q3.909-62.134 3.850-62.349M8.280-63.224Q8.280-63.670 8.694-63.927Q9.108-64.185 9.649-64.285Q10.190-64.384 10.698-64.392Q10.698-64.607 10.563-64.759Q10.428-64.912 10.221-64.988Q10.014-65.064 9.803-65.064Q9.459-65.064 9.299-65.041L9.299-64.982Q9.299-64.814 9.180-64.699Q9.061-64.584 8.897-64.584Q8.721-64.584 8.606-64.707Q8.491-64.830 8.491-64.998Q8.491-65.404 8.871-65.513Q9.252-65.623 9.811-65.623Q10.080-65.623 10.348-65.545Q10.616-65.466 10.840-65.316Q11.065-65.166 11.201-64.945Q11.338-64.724 11.338-64.447L11.338-62.728Q11.338-62.670 11.866-62.670Q12.061-62.650 12.112-62.439L12.112-62.349Q12.061-62.134 11.866-62.111L11.721-62.111Q11.377-62.111 11.149-62.158Q10.920-62.205 10.776-62.392Q10.315-62.072 9.608-62.072Q9.272-62.072 8.967-62.213Q8.662-62.353 8.471-62.615Q8.280-62.877 8.280-63.224M8.920-63.216Q8.920-62.943 9.162-62.787Q9.405-62.631 9.690-62.631Q9.909-62.631 10.141-62.689Q10.373-62.748 10.535-62.886Q10.698-63.025 10.698-63.248L10.698-63.838Q10.416-63.838 10-63.781Q9.584-63.724 9.252-63.586Q8.920-63.447 8.920-63.216M12.463-60.990Q12.463-61.099 12.514-61.191Q12.565-61.283 12.657-61.334Q12.748-61.384 12.854-61.384Q12.963-61.384 13.055-61.334Q13.147-61.283 13.198-61.191Q13.248-61.099 13.248-60.990L13.104-60.990Q13.104-60.853 13.127-60.853Q13.385-60.853 13.573-61.045Q13.760-61.236 13.846-61.502L14.057-62.111L12.920-64.998L12.592-64.998Q12.397-65.021 12.342-65.240L12.342-65.326Q12.401-65.537 12.592-65.560L13.752-65.560Q13.948-65.537 13.998-65.326L13.998-65.240Q13.948-65.021 13.752-64.998L13.487-64.998Q13.823-64.150 14.067-63.496Q14.311-62.841 14.311-62.752L14.319-62.752Q14.319-62.810 14.410-63.103Q14.502-63.396 14.696-63.980Q14.889-64.564 15.030-64.998L14.752-64.998Q14.541-65.021 14.502-65.240L14.502-65.326Q14.553-65.541 14.752-65.560L15.905-65.560Q16.112-65.537 16.151-65.326L16.151-65.240Q16.112-65.021 15.905-64.998L15.584-64.998L14.409-61.502Q14.241-61.002 13.914-60.648Q13.588-60.295 13.127-60.295Q12.854-60.295 12.659-60.506Q12.463-60.716 12.463-60.990M18.084-60.998Q17.971-60.998 17.881-61.088Q17.791-61.177 17.791-61.287Q17.791-61.463 17.983-61.537Q18.201-61.588 18.373-61.746Q18.545-61.904 18.612-62.127Q18.588-62.127 18.557-62.111L18.494-62.111Q18.264-62.111 18.098-62.273Q17.932-62.435 17.932-62.670Q17.932-62.904 18.096-63.064Q18.260-63.224 18.494-63.224Q18.705-63.224 18.869-63.103Q19.034-62.982 19.123-62.789Q19.213-62.595 19.213-62.384Q19.213-61.908 18.914-61.519Q18.616-61.131 18.151-61.006Q18.127-60.998 18.084-60.998M21.291-61.752Q21.291-61.806 21.315-61.873L23.580-67.478Q23.674-67.662 23.869-67.662Q23.994-67.662 24.082-67.574Q24.170-67.486 24.170-67.357Q24.170-67.298 24.147-67.240L21.885-61.631Q21.784-61.447 21.604-61.447Q21.479-61.447 21.385-61.537Q21.291-61.627 21.291-61.752M23.869-61.447Q23.518-61.447 23.336-61.787Q23.155-62.127 23.155-62.509Q23.155-62.896 23.334-63.236Q23.514-63.576 23.869-63.576Q24.108-63.576 24.266-63.406Q24.424-63.236 24.498-62.992Q24.573-62.748 24.573-62.509Q24.573-62.275 24.498-62.031Q24.424-61.787 24.266-61.617Q24.108-61.447 23.869-61.447M23.869-62.006Q23.951-62.037 23.998-62.205Q24.045-62.373 24.045-62.509Q24.045-62.646 23.998-62.816Q23.951-62.986 23.869-63.013Q23.784-62.986 23.733-62.818Q23.682-62.650 23.682-62.509Q23.682-62.381 23.733-62.209Q23.784-62.037 23.869-62.006M21.604-65.525Q21.362-65.525 21.201-65.695Q21.041-65.865 20.967-66.111Q20.893-66.357 20.893-66.599Q20.893-66.982 21.073-67.322Q21.252-67.662 21.604-67.662Q21.842-67.662 22-67.492Q22.159-67.322 22.233-67.078Q22.307-66.834 22.307-66.599Q22.307-66.357 22.233-66.111Q22.159-65.865 22-65.695Q21.842-65.525 21.604-65.525M21.604-66.088Q21.694-66.131 21.737-66.287Q21.780-66.443 21.780-66.599Q21.780-66.728 21.733-66.904Q21.686-67.080 21.596-67.103Q21.580-67.103 21.551-67.068Q21.522-67.033 21.514-67.013Q21.420-66.826 21.420-66.599Q21.420-66.463 21.469-66.291Q21.518-66.119 21.604-66.088M25.080-62.349L25.080-62.439Q25.139-62.646 25.330-62.670L26.041-62.670L26.041-64.998L25.330-64.998Q25.135-65.021 25.080-65.240L25.080-65.326Q25.139-65.537 25.330-65.560L26.432-65.560Q26.631-65.541 26.682-65.326L26.682-64.998Q26.944-65.283 27.299-65.441Q27.655-65.599 28.041-65.599Q28.334-65.599 28.569-65.465Q28.803-65.330 28.803-65.064Q28.803-64.896 28.694-64.779Q28.584-64.662 28.416-64.662Q28.264-64.662 28.149-64.773Q28.034-64.884 28.034-65.041Q27.659-65.041 27.344-64.840Q27.030-64.638 26.856-64.304Q26.682-63.970 26.682-63.591L26.682-62.670L27.627-62.670Q27.834-62.646 27.873-62.439L27.873-62.349Q27.834-62.134 27.627-62.111L25.330-62.111Q25.139-62.134 25.080-62.349M30.967-62.072Q30.502-62.072 30.137-62.322Q29.772-62.572 29.567-62.976Q29.362-63.381 29.362-63.838Q29.362-64.181 29.487-64.502Q29.612-64.822 29.844-65.072Q30.076-65.322 30.381-65.461Q30.686-65.599 31.041-65.599Q31.553-65.599 31.959-65.279L31.959-66.439L31.537-66.439Q31.326-66.463 31.287-66.677L31.287-66.767Q31.326-66.974 31.537-66.998L32.350-66.998Q32.549-66.974 32.600-66.767L32.600-62.670L33.026-62.670Q33.233-62.646 33.272-62.439L33.272-62.349Q33.233-62.134 33.026-62.111L32.209-62.111Q32.010-62.134 31.959-62.349L31.959-62.478Q31.764-62.287 31.502-62.179Q31.241-62.072 30.967-62.072M31.006-62.631Q31.366-62.631 31.618-62.900Q31.869-63.170 31.959-63.545L31.959-64.377Q31.901-64.564 31.774-64.715Q31.647-64.865 31.469-64.953Q31.291-65.041 31.096-65.041Q30.787-65.041 30.537-64.871Q30.287-64.701 30.143-64.416Q29.998-64.131 29.998-63.830Q29.998-63.381 30.284-63.006Q30.569-62.631 31.006-62.631M33.967-62.349L33.967-62.439Q34.018-62.646 34.213-62.670L35.252-62.670L35.252-64.998L34.280-64.998Q34.080-65.021 34.030-65.240L34.030-65.326Q34.080-65.537 34.280-65.560L35.647-65.560Q35.842-65.541 35.893-65.326L35.893-62.670L36.807-62.670Q37.002-62.646 37.053-62.439L37.053-62.349Q37.002-62.134 36.807-62.111L34.213-62.111Q34.018-62.134 33.967-62.349M34.998-66.537L34.998-66.591Q34.998-66.763 35.135-66.884Q35.272-67.006 35.448-67.006Q35.619-67.006 35.756-66.884Q35.893-66.763 35.893-66.591L35.893-66.537Q35.893-66.361 35.756-66.240Q35.619-66.119 35.448-66.119Q35.272-66.119 35.135-66.240Q34.998-66.361 34.998-66.537\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 36.588)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.267-62.349L-25.267-62.439Q-25.216-62.646-25.017-62.670L-24.201-62.670L-24.201-65.853Q-24.580-65.545-25.033-65.545Q-25.263-65.545-25.314-65.775L-25.314-65.865Q-25.263-66.080-25.068-66.103Q-24.740-66.103-24.486-66.341Q-24.232-66.580-24.091-66.927Q-24.021-67.056-23.865-67.080L-23.810-67.080Q-23.615-67.060-23.564-66.845L-23.564-62.670L-22.748-62.670Q-22.548-62.646-22.498-62.439L-22.498-62.349Q-22.548-62.134-22.748-62.111L-25.017-62.111Q-25.216-62.134-25.267-62.349M-19.318-63.455L-21.388-63.455Q-21.584-63.478-21.638-63.697L-21.638-63.935Q-21.638-64.009-21.595-64.080L-19.748-66.951Q-19.662-67.080-19.509-67.080L-19.052-67.080Q-18.943-67.080-18.865-67.002Q-18.787-66.923-18.787-66.814L-18.787-64.013L-18.123-64.013Q-17.927-63.990-17.877-63.783L-17.877-63.697Q-17.927-63.478-18.123-63.455L-18.787-63.455L-18.787-62.670L-18.213-62.670Q-18.006-62.646-17.966-62.439L-17.966-62.349Q-18.006-62.134-18.213-62.111L-19.892-62.111Q-20.099-62.134-20.142-62.349L-20.142-62.439Q-20.099-62.646-19.892-62.670L-19.318-62.670L-19.318-63.455M-19.318-66.607L-20.990-64.013L-19.318-64.013\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M-38.509-63.158Q-38.509-63.334-38.392-63.455Q-38.275-63.576-38.099-63.576Q-38.017-63.576-37.941-63.545Q-37.865-63.513-37.814-63.463Q-37.763-63.412-37.732-63.332Q-37.701-63.252-37.701-63.173Q-37.701-63.041-37.783-62.927Q-37.513-62.591-36.724-62.591Q-36.298-62.591-35.957-62.857Q-35.615-63.123-35.615-63.537Q-35.615-63.810-35.781-64.029Q-35.947-64.248-36.207-64.359Q-36.466-64.470-36.740-64.470L-37.205-64.470Q-37.416-64.494-37.447-64.713L-37.447-64.798Q-37.416-65.002-37.205-65.033L-36.677-65.072Q-36.463-65.072-36.271-65.195Q-36.080-65.318-35.966-65.521Q-35.853-65.724-35.853-65.935Q-35.853-66.209-36.136-66.363Q-36.420-66.517-36.724-66.517Q-37.287-66.517-37.525-66.326Q-37.463-66.213-37.463-66.103Q-37.463-65.931-37.576-65.818Q-37.689-65.705-37.861-65.705Q-38.037-65.705-38.152-65.828Q-38.267-65.951-38.267-66.119Q-38.267-66.646-37.795-66.863Q-37.322-67.080-36.724-67.080Q-36.384-67.080-36.029-66.949Q-35.673-66.818-35.443-66.560Q-35.213-66.302-35.213-65.935Q-35.213-65.591-35.381-65.287Q-35.548-64.982-35.845-64.783Q-35.474-64.603-35.224-64.267Q-34.974-63.931-34.974-63.537Q-34.974-63.091-35.228-62.750Q-35.482-62.408-35.884-62.220Q-36.287-62.033-36.724-62.033Q-37.009-62.033-37.314-62.088Q-37.619-62.142-37.894-62.269Q-38.170-62.396-38.340-62.619Q-38.509-62.841-38.509-63.158M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M-25.791-62.349L-25.791-62.439Q-25.740-62.646-25.545-62.670L-24.662-62.670L-24.662-64.998L-25.517-64.998Q-25.716-65.021-25.767-65.240L-25.767-65.326Q-25.716-65.537-25.517-65.560L-24.662-65.560L-24.662-66.013Q-24.662-66.478-24.256-66.759Q-23.849-67.041-23.369-67.041Q-23.056-67.041-22.812-66.920Q-22.568-66.798-22.568-66.517Q-22.568-66.353-22.677-66.236Q-22.787-66.119-22.951-66.119Q-23.099-66.119-23.220-66.224Q-23.341-66.330-23.341-66.478L-23.424-66.478Q-23.576-66.478-23.713-66.418Q-23.849-66.357-23.935-66.242Q-24.021-66.127-24.021-65.982L-24.021-65.560L-22.990-65.560Q-22.795-65.541-22.744-65.326L-22.744-65.240Q-22.795-65.021-22.990-64.998L-24.021-64.998L-24.021-62.670L-23.142-62.670Q-22.947-62.646-22.896-62.439L-22.896-62.349Q-22.947-62.134-23.142-62.111L-25.545-62.111Q-25.740-62.134-25.791-62.349M-19.744-62.033Q-20.384-62.033-20.771-62.410Q-21.158-62.787-21.316-63.359Q-21.474-63.931-21.474-64.560Q-21.474-65.025-21.314-65.480Q-21.154-65.935-20.865-66.295Q-20.576-66.654-20.168-66.867Q-19.759-67.080-19.271-67.080Q-18.998-67.080-18.748-66.982Q-18.498-66.884-18.345-66.689Q-18.193-66.494-18.193-66.201Q-18.193-66.025-18.306-65.904Q-18.420-65.783-18.591-65.783Q-18.767-65.783-18.884-65.896Q-19.002-66.009-19.002-66.181Q-19.002-66.302-18.927-66.423Q-19.037-66.517-19.271-66.517Q-19.689-66.517-20.025-66.277Q-20.361-66.037-20.566-65.650Q-20.771-65.263-20.818-64.865Q-20.580-65.064-20.271-65.172Q-19.963-65.279-19.642-65.279Q-19.302-65.279-19.004-65.154Q-18.705-65.029-18.486-64.810Q-18.267-64.591-18.142-64.293Q-18.017-63.994-18.017-63.654Q-18.017-63.306-18.156-63.006Q-18.295-62.705-18.535-62.488Q-18.775-62.271-19.090-62.152Q-19.404-62.033-19.744-62.033M-20.728-63.576Q-20.666-63.314-20.537-63.090Q-20.408-62.865-20.209-62.728Q-20.009-62.591-19.744-62.591Q-19.291-62.591-18.974-62.898Q-18.658-63.205-18.658-63.654Q-18.658-63.935-18.793-64.181Q-18.927-64.427-19.164-64.570Q-19.400-64.713-19.697-64.713Q-20.088-64.713-20.420-64.486Q-20.752-64.259-20.752-63.888Q-20.752-63.849-20.736-63.771Q-20.720-63.693-20.720-63.654Q-20.720-63.627-20.722-63.611Q-20.724-63.595-20.728-63.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-6.556-63.455L-8.627-63.455Q-8.822-63.478-8.877-63.697L-8.877-63.935Q-8.877-64.009-8.834-64.080L-6.986-66.951Q-6.900-67.080-6.748-67.080L-6.291-67.080Q-6.181-67.080-6.103-67.002Q-6.025-66.923-6.025-66.814L-6.025-64.013L-5.361-64.013Q-5.166-63.990-5.115-63.783L-5.115-63.697Q-5.166-63.478-5.361-63.455L-6.025-63.455L-6.025-62.670L-5.451-62.670Q-5.244-62.646-5.205-62.439L-5.205-62.349Q-5.244-62.134-5.451-62.111L-7.131-62.111Q-7.338-62.134-7.381-62.349L-7.381-62.439Q-7.338-62.646-7.131-62.670L-6.556-62.670L-6.556-63.455M-6.556-66.607L-8.228-64.013L-6.556-64.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 36.588)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 36.032)\">\u003Cpath d=\"M-38.244-62.349L-38.244-62.439Q-38.193-62.646-37.998-62.670L-36.959-62.670L-36.959-64.998L-37.931-64.998Q-38.131-65.021-38.181-65.240L-38.181-65.326Q-38.131-65.537-37.931-65.560L-36.564-65.560Q-36.369-65.541-36.318-65.326L-36.318-62.670L-35.404-62.670Q-35.209-62.646-35.158-62.439L-35.158-62.349Q-35.209-62.134-35.404-62.111L-37.998-62.111Q-38.193-62.134-38.244-62.349M-37.213-66.537L-37.213-66.591Q-37.213-66.763-37.076-66.884Q-36.939-67.006-36.763-67.006Q-36.591-67.006-36.455-66.884Q-36.318-66.763-36.318-66.591L-36.318-66.537Q-36.318-66.361-36.455-66.240Q-36.591-66.119-36.763-66.119Q-36.939-66.119-37.076-66.240Q-37.213-66.361-37.213-66.537M-34.392-62.349L-34.392-62.439Q-34.334-62.646-34.142-62.670L-33.431-62.670L-33.431-64.998L-34.142-64.998Q-34.338-65.021-34.392-65.240L-34.392-65.326Q-34.334-65.537-34.142-65.560L-33.041-65.560Q-32.841-65.541-32.791-65.326L-32.791-64.998Q-32.529-65.283-32.173-65.441Q-31.818-65.599-31.431-65.599Q-31.138-65.599-30.904-65.465Q-30.670-65.330-30.670-65.064Q-30.670-64.896-30.779-64.779Q-30.888-64.662-31.056-64.662Q-31.209-64.662-31.324-64.773Q-31.439-64.884-31.439-65.041Q-31.814-65.041-32.129-64.840Q-32.443-64.638-32.617-64.304Q-32.791-63.970-32.791-63.591L-32.791-62.670L-31.845-62.670Q-31.638-62.646-31.599-62.439L-31.599-62.349Q-31.638-62.134-31.845-62.111L-34.142-62.111Q-34.334-62.134-34.392-62.349M-30.423-62.349L-30.423-62.439Q-30.373-62.650-30.177-62.670L-29.978-62.670L-29.978-64.998L-30.177-64.998Q-30.384-65.021-30.423-65.240L-30.423-65.326Q-30.373-65.541-30.177-65.560L-29.697-65.560Q-29.506-65.537-29.447-65.326Q-29.127-65.599-28.713-65.599Q-28.521-65.599-28.353-65.490Q-28.185-65.381-28.111-65.209Q-27.935-65.400-27.713-65.500Q-27.490-65.599-27.248-65.599Q-26.830-65.599-26.675-65.257Q-26.521-64.916-26.521-64.447L-26.521-62.670L-26.322-62.670Q-26.111-62.646-26.072-62.439L-26.072-62.349Q-26.123-62.134-26.322-62.111L-27.138-62.111Q-27.334-62.134-27.384-62.349L-27.384-62.439Q-27.334-62.646-27.138-62.670L-27.048-62.670L-27.048-64.416Q-27.048-65.041-27.298-65.041Q-27.631-65.041-27.808-64.730Q-27.986-64.420-27.986-64.056L-27.986-62.670L-27.783-62.670Q-27.576-62.646-27.537-62.439L-27.537-62.349Q-27.588-62.134-27.783-62.111L-28.599-62.111Q-28.798-62.134-28.849-62.349L-28.849-62.439Q-28.798-62.646-28.599-62.670L-28.513-62.670L-28.513-64.416Q-28.513-65.041-28.759-65.041Q-29.091-65.041-29.269-64.728Q-29.447-64.416-29.447-64.056L-29.447-62.670L-29.248-62.670Q-29.041-62.646-29.002-62.439L-29.002-62.349Q-29.052-62.131-29.248-62.111L-30.177-62.111Q-30.384-62.134-30.423-62.349M-24.002-62.072Q-24.474-62.072-24.859-62.316Q-25.244-62.560-25.466-62.970Q-25.689-63.381-25.689-63.838Q-25.689-64.181-25.564-64.504Q-25.439-64.826-25.209-65.080Q-24.978-65.334-24.672-65.478Q-24.365-65.623-24.002-65.623Q-23.638-65.623-23.326-65.476Q-23.013-65.330-22.791-65.084Q-22.568-64.838-22.441-64.517Q-22.314-64.197-22.314-63.838Q-22.314-63.381-22.539-62.968Q-22.763-62.556-23.148-62.314Q-23.533-62.072-24.002-62.072M-24.002-62.631Q-23.537-62.631-23.246-63.025Q-22.955-63.420-22.955-63.904Q-22.955-64.197-23.090-64.465Q-23.224-64.732-23.465-64.898Q-23.705-65.064-24.002-65.064Q-24.306-65.064-24.545-64.898Q-24.783-64.732-24.918-64.465Q-25.052-64.197-25.052-63.904Q-25.052-63.423-24.759-63.027Q-24.466-62.631-24.002-62.631M-20.220-62.334L-21.107-64.998L-21.427-64.998Q-21.627-65.021-21.677-65.240L-21.677-65.326Q-21.627-65.537-21.427-65.560L-20.267-65.560Q-20.072-65.541-20.021-65.326L-20.021-65.240Q-20.072-65.021-20.267-64.998L-20.548-64.998L-19.756-62.623L-18.966-64.998L-19.244-64.998Q-19.443-65.021-19.494-65.240L-19.494-65.326Q-19.443-65.537-19.244-65.560L-18.084-65.560Q-17.888-65.537-17.838-65.326L-17.838-65.240Q-17.888-65.021-18.084-64.998L-18.404-64.998L-19.291-62.334Q-19.334-62.220-19.435-62.146Q-19.537-62.072-19.662-62.072L-19.853-62.072Q-19.970-62.072-20.074-62.144Q-20.177-62.216-20.220-62.334M-15.318-60.568L-15.318-60.654Q-15.267-60.873-15.072-60.896L-14.607-60.896L-14.607-62.494Q-15.060-62.072-15.670-62.072Q-16.025-62.072-16.330-62.215Q-16.634-62.357-16.867-62.607Q-17.099-62.857-17.224-63.179Q-17.349-63.502-17.349-63.838Q-17.349-64.322-17.111-64.722Q-16.873-65.123-16.466-65.361Q-16.060-65.599-15.584-65.599Q-15.021-65.599-14.607-65.209L-14.607-65.369Q-14.556-65.580-14.357-65.599L-14.216-65.599Q-14.017-65.576-13.966-65.369L-13.966-60.896L-13.502-60.896Q-13.306-60.873-13.256-60.654L-13.256-60.568Q-13.306-60.357-13.502-60.334L-15.072-60.334Q-15.267-60.357-15.318-60.568M-15.623-62.631Q-15.252-62.631-14.976-62.884Q-14.701-63.138-14.607-63.502L-14.607-64.119Q-14.650-64.357-14.773-64.570Q-14.896-64.783-15.093-64.912Q-15.291-65.041-15.533-65.041Q-15.849-65.041-16.121-64.875Q-16.392-64.709-16.550-64.427Q-16.709-64.146-16.709-63.830Q-16.709-63.365-16.394-62.998Q-16.080-62.631-15.623-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 36.032)\">\u003Cpath d=\"M-7.271-61.677L-7.271-62.088Q-7.873-62.154-8.256-62.523Q-8.638-62.892-8.638-63.486Q-8.638-63.662-8.521-63.783Q-8.404-63.904-8.232-63.904Q-8.154-63.904-8.074-63.873Q-7.994-63.841-7.943-63.791Q-7.892-63.740-7.861-63.660Q-7.830-63.580-7.830-63.502Q-7.830-63.302-7.959-63.209Q-7.892-62.982-7.709-62.843Q-7.525-62.705-7.271-62.654L-7.271-64.384Q-7.849-64.506-8.244-64.832Q-8.638-65.158-8.638-65.705Q-8.638-66.224-8.226-66.586Q-7.814-66.947-7.271-67.021L-7.271-67.431Q-7.220-67.638-7.021-67.662L-6.959-67.662Q-6.763-67.642-6.713-67.431L-6.713-67.021Q-6.334-66.986-6.023-66.828Q-5.713-66.670-5.527-66.388Q-5.341-66.107-5.341-65.720Q-5.341-65.548-5.455-65.425Q-5.568-65.302-5.744-65.302Q-5.912-65.302-6.031-65.418Q-6.150-65.533-6.150-65.705Q-6.150-65.881-6.033-65.998Q-6.107-66.197-6.291-66.310Q-6.474-66.423-6.713-66.455L-6.713-64.920Q-6.345-64.845-6.029-64.660Q-5.713-64.474-5.527-64.183Q-5.341-63.892-5.341-63.502Q-5.341-63.224-5.451-62.986Q-5.560-62.748-5.759-62.554Q-5.959-62.361-6.209-62.246Q-6.459-62.131-6.713-62.095L-6.713-61.677Q-6.763-61.470-6.959-61.447L-7.021-61.447Q-7.220-61.466-7.271-61.677M-6.713-64.271L-6.713-62.662Q-6.400-62.732-6.168-62.949Q-5.935-63.166-5.935-63.463Q-5.935-63.670-6.043-63.834Q-6.150-63.998-6.328-64.109Q-6.506-64.220-6.713-64.271M-8.049-65.744Q-8.049-65.466-7.818-65.289Q-7.588-65.111-7.271-65.041L-7.271-66.455Q-7.568-66.400-7.808-66.211Q-8.049-66.021-8.049-65.744M-2.306-63.455L-4.377-63.455Q-4.572-63.478-4.627-63.697L-4.627-63.935Q-4.627-64.009-4.584-64.080L-2.736-66.951Q-2.650-67.080-2.498-67.080L-2.041-67.080Q-1.931-67.080-1.853-67.002Q-1.775-66.923-1.775-66.814L-1.775-64.013L-1.111-64.013Q-0.916-63.990-0.865-63.783L-0.865-63.697Q-0.916-63.478-1.111-63.455L-1.775-63.455L-1.775-62.670L-1.201-62.670Q-0.994-62.646-0.955-62.439L-0.955-62.349Q-0.994-62.134-1.201-62.111L-2.881-62.111Q-3.088-62.134-3.131-62.349L-3.131-62.439Q-3.088-62.646-2.881-62.670L-2.306-62.670L-2.306-63.455M-2.306-66.607L-3.978-64.013L-2.306-64.013L-2.306-66.607M1.100-60.998Q0.987-60.998 0.897-61.088Q0.807-61.177 0.807-61.287Q0.807-61.463 0.998-61.537Q1.217-61.588 1.389-61.746Q1.561-61.904 1.627-62.127Q1.604-62.127 1.573-62.111L1.510-62.111Q1.280-62.111 1.114-62.273Q0.948-62.435 0.948-62.670Q0.948-62.904 1.112-63.064Q1.276-63.224 1.510-63.224Q1.721-63.224 1.885-63.103Q2.049-62.982 2.139-62.789Q2.229-62.595 2.229-62.384Q2.229-61.908 1.930-61.519Q1.631-61.131 1.166-61.006Q1.143-60.998 1.100-60.998M4.307-61.752Q4.307-61.806 4.330-61.873L6.596-67.478Q6.690-67.662 6.885-67.662Q7.010-67.662 7.098-67.574Q7.186-67.486 7.186-67.357Q7.186-67.298 7.162-67.240L4.901-61.631Q4.799-61.447 4.619-61.447Q4.494-61.447 4.401-61.537Q4.307-61.627 4.307-61.752M6.885-61.447Q6.534-61.447 6.352-61.787Q6.170-62.127 6.170-62.509Q6.170-62.896 6.350-63.236Q6.530-63.576 6.885-63.576Q7.123-63.576 7.282-63.406Q7.440-63.236 7.514-62.992Q7.588-62.748 7.588-62.509Q7.588-62.275 7.514-62.031Q7.440-61.787 7.282-61.617Q7.123-61.447 6.885-61.447M6.885-62.006Q6.967-62.037 7.014-62.205Q7.061-62.373 7.061-62.509Q7.061-62.646 7.014-62.816Q6.967-62.986 6.885-63.013Q6.799-62.986 6.748-62.818Q6.698-62.650 6.698-62.509Q6.698-62.381 6.748-62.209Q6.799-62.037 6.885-62.006M4.619-65.525Q4.377-65.525 4.217-65.695Q4.057-65.865 3.983-66.111Q3.909-66.357 3.909-66.599Q3.909-66.982 4.088-67.322Q4.268-67.662 4.619-67.662Q4.858-67.662 5.016-67.492Q5.174-67.322 5.248-67.078Q5.323-66.834 5.323-66.599Q5.323-66.357 5.248-66.111Q5.174-65.865 5.016-65.695Q4.858-65.525 4.619-65.525M4.619-66.088Q4.709-66.131 4.752-66.287Q4.795-66.443 4.795-66.599Q4.795-66.728 4.748-66.904Q4.701-67.080 4.612-67.103Q4.596-67.103 4.567-67.068Q4.537-67.033 4.530-67.013Q4.436-66.826 4.436-66.599Q4.436-66.463 4.485-66.291Q4.534-66.119 4.619-66.088M8.096-62.349L8.096-62.439Q8.155-62.646 8.346-62.670L9.057-62.670L9.057-64.998L8.346-64.998Q8.151-65.021 8.096-65.240L8.096-65.326Q8.155-65.537 8.346-65.560L9.448-65.560Q9.647-65.541 9.698-65.326L9.698-64.998Q9.959-65.283 10.315-65.441Q10.670-65.599 11.057-65.599Q11.350-65.599 11.584-65.465Q11.819-65.330 11.819-65.064Q11.819-64.896 11.709-64.779Q11.600-64.662 11.432-64.662Q11.280-64.662 11.164-64.773Q11.049-64.884 11.049-65.041Q10.674-65.041 10.360-64.840Q10.045-64.638 9.871-64.304Q9.698-63.970 9.698-63.591L9.698-62.670L10.643-62.670Q10.850-62.646 10.889-62.439L10.889-62.349Q10.850-62.134 10.643-62.111L8.346-62.111Q8.155-62.134 8.096-62.349M12.705-62.310L12.705-63.224Q12.733-63.431 12.944-63.455L13.112-63.455Q13.276-63.431 13.334-63.271Q13.537-62.631 14.264-62.631Q14.471-62.631 14.700-62.666Q14.928-62.701 15.096-62.816Q15.264-62.931 15.264-63.134Q15.264-63.345 15.041-63.459Q14.819-63.572 14.545-63.615L13.846-63.728Q12.705-63.939 12.705-64.662Q12.705-64.951 12.850-65.140Q12.994-65.330 13.235-65.437Q13.475-65.545 13.731-65.584Q13.987-65.623 14.264-65.623Q14.514-65.623 14.707-65.593Q14.901-65.564 15.065-65.486Q15.143-65.603 15.272-65.623L15.350-65.623Q15.448-65.611 15.510-65.548Q15.573-65.486 15.584-65.392L15.584-64.685Q15.573-64.591 15.510-64.525Q15.448-64.459 15.350-64.447L15.182-64.447Q15.088-64.459 15.022-64.525Q14.955-64.591 14.944-64.685Q14.944-65.064 14.248-65.064Q13.901-65.064 13.582-64.982Q13.264-64.900 13.264-64.654Q13.264-64.388 13.936-64.279L14.639-64.158Q15.123-64.076 15.473-63.828Q15.823-63.580 15.823-63.134Q15.823-62.744 15.586-62.502Q15.350-62.259 15-62.166Q14.651-62.072 14.264-62.072Q13.686-62.072 13.287-62.326Q13.217-62.201 13.168-62.144Q13.119-62.088 13.014-62.072L12.944-62.072Q12.729-62.095 12.705-62.310M16.983-62.349L16.983-62.439Q17.034-62.646 17.229-62.670L18.268-62.670L18.268-64.998L17.295-64.998Q17.096-65.021 17.045-65.240L17.045-65.326Q17.096-65.537 17.295-65.560L18.662-65.560Q18.858-65.541 18.909-65.326L18.909-62.670L19.823-62.670Q20.018-62.646 20.069-62.439L20.069-62.349Q20.018-62.134 19.823-62.111L17.229-62.111Q17.034-62.134 16.983-62.349M18.014-66.537L18.014-66.591Q18.014-66.763 18.151-66.884Q18.287-67.006 18.463-67.006Q18.635-67.006 18.772-66.884Q18.909-66.763 18.909-66.591L18.909-66.537Q18.909-66.361 18.772-66.240Q18.635-66.119 18.463-66.119Q18.287-66.119 18.151-66.240Q18.014-66.361 18.014-66.537\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 53.66)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.267-62.349L-25.267-62.439Q-25.216-62.646-25.017-62.670L-24.201-62.670L-24.201-65.853Q-24.580-65.545-25.033-65.545Q-25.263-65.545-25.314-65.775L-25.314-65.865Q-25.263-66.080-25.068-66.103Q-24.740-66.103-24.486-66.341Q-24.232-66.580-24.091-66.927Q-24.021-67.056-23.865-67.080L-23.810-67.080Q-23.615-67.060-23.564-66.845L-23.564-62.670L-22.748-62.670Q-22.548-62.646-22.498-62.439L-22.498-62.349Q-22.548-62.134-22.748-62.111L-25.017-62.111Q-25.216-62.134-25.267-62.349M-18.365-63.599L-20.806-63.599Q-20.752-63.322-20.554-63.099Q-20.357-62.877-20.080-62.754Q-19.802-62.631-19.517-62.631Q-19.045-62.631-18.822-62.920Q-18.814-62.931-18.757-63.037Q-18.701-63.142-18.652-63.185Q-18.603-63.228-18.509-63.240L-18.365-63.240Q-18.173-63.220-18.115-63.006L-18.115-62.951Q-18.181-62.650-18.412-62.453Q-18.642-62.256-18.955-62.164Q-19.267-62.072-19.572-62.072Q-20.056-62.072-20.496-62.300Q-20.935-62.529-21.203-62.929Q-21.470-63.330-21.470-63.822L-21.470-63.881Q-21.470-64.349-21.224-64.752Q-20.978-65.154-20.570-65.388Q-20.162-65.623-19.693-65.623Q-19.189-65.623-18.836-65.400Q-18.482-65.177-18.298-64.789Q-18.115-64.400-18.115-63.896L-18.115-63.838Q-18.173-63.623-18.365-63.599M-20.798-64.150L-18.771-64.150Q-18.818-64.560-19.056-64.812Q-19.295-65.064-19.693-65.064Q-20.088-65.064-20.394-64.802Q-20.701-64.541-20.798-64.150\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M-38.509-63.525Q-38.509-63.810-38.353-64.064Q-38.197-64.318-37.947-64.492Q-37.697-64.666-37.412-64.752Q-37.650-64.826-37.877-64.968Q-38.103-65.111-38.246-65.320Q-38.388-65.529-38.388-65.775Q-38.388-66.173-38.142-66.468Q-37.896-66.763-37.513-66.922Q-37.131-67.080-36.740-67.080Q-36.349-67.080-35.966-66.922Q-35.584-66.763-35.338-66.465Q-35.091-66.166-35.091-65.775Q-35.091-65.529-35.234-65.322Q-35.377-65.115-35.603-64.970Q-35.830-64.826-36.068-64.752Q-35.615-64.615-35.295-64.289Q-34.974-63.963-34.974-63.525Q-34.974-63.088-35.232-62.744Q-35.490-62.400-35.900-62.216Q-36.310-62.033-36.740-62.033Q-37.170-62.033-37.580-62.215Q-37.990-62.396-38.250-62.740Q-38.509-63.084-38.509-63.525M-37.869-63.525Q-37.869-63.252-37.703-63.037Q-37.537-62.822-37.275-62.707Q-37.013-62.591-36.740-62.591Q-36.466-62.591-36.207-62.707Q-35.947-62.822-35.781-63.039Q-35.615-63.256-35.615-63.525Q-35.615-63.802-35.781-64.019Q-35.947-64.236-36.207-64.353Q-36.466-64.470-36.740-64.470Q-37.013-64.470-37.275-64.353Q-37.537-64.236-37.703-64.021Q-37.869-63.806-37.869-63.525M-37.748-65.775Q-37.748-65.537-37.591-65.369Q-37.435-65.201-37.199-65.117Q-36.963-65.033-36.740-65.033Q-36.521-65.033-36.283-65.117Q-36.045-65.201-35.888-65.371Q-35.732-65.541-35.732-65.775Q-35.732-66.009-35.888-66.179Q-36.045-66.349-36.283-66.433Q-36.521-66.517-36.740-66.517Q-36.963-66.517-37.199-66.433Q-37.435-66.349-37.591-66.181Q-37.748-66.013-37.748-65.775M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M-25.685-62.349L-25.685-62.423Q-25.654-62.591-25.552-62.638L-24.263-63.705Q-23.931-63.982-23.750-64.134Q-23.568-64.287-23.373-64.507Q-23.177-64.728-23.056-64.978Q-22.935-65.228-22.935-65.494Q-22.935-65.818-23.111-66.052Q-23.287-66.287-23.566-66.402Q-23.845-66.517-24.166-66.517Q-24.424-66.517-24.652-66.394Q-24.881-66.271-24.982-66.056Q-24.881-65.923-24.881-65.775Q-24.881-65.615-25-65.492Q-25.119-65.369-25.279-65.369Q-25.455-65.369-25.570-65.494Q-25.685-65.619-25.685-65.791Q-25.685-66.084-25.550-66.326Q-25.416-66.568-25.177-66.740Q-24.939-66.912-24.672-66.996Q-24.404-67.080-24.111-67.080Q-23.631-67.080-23.215-66.890Q-22.799-66.701-22.547-66.340Q-22.295-65.978-22.295-65.494Q-22.295-65.150-22.427-64.847Q-22.560-64.545-22.785-64.285Q-23.009-64.025-23.318-63.763Q-23.627-63.502-23.838-63.326L-24.646-62.670L-22.935-62.670L-22.935-62.814Q-22.884-63.025-22.685-63.048L-22.545-63.048Q-22.345-63.029-22.295-62.814L-22.295-62.349Q-22.345-62.134-22.545-62.111L-25.439-62.111Q-25.634-62.131-25.685-62.349M-21.513-63.525Q-21.513-63.810-21.357-64.064Q-21.201-64.318-20.951-64.492Q-20.701-64.666-20.416-64.752Q-20.654-64.826-20.881-64.968Q-21.107-65.111-21.250-65.320Q-21.392-65.529-21.392-65.775Q-21.392-66.173-21.146-66.468Q-20.900-66.763-20.517-66.922Q-20.134-67.080-19.744-67.080Q-19.353-67.080-18.970-66.922Q-18.588-66.763-18.341-66.465Q-18.095-66.166-18.095-65.775Q-18.095-65.529-18.238-65.322Q-18.381-65.115-18.607-64.970Q-18.834-64.826-19.072-64.752Q-18.619-64.615-18.299-64.289Q-17.978-63.963-17.978-63.525Q-17.978-63.088-18.236-62.744Q-18.494-62.400-18.904-62.216Q-19.314-62.033-19.744-62.033Q-20.174-62.033-20.584-62.215Q-20.994-62.396-21.254-62.740Q-21.513-63.084-21.513-63.525M-20.873-63.525Q-20.873-63.252-20.707-63.037Q-20.541-62.822-20.279-62.707Q-20.017-62.591-19.744-62.591Q-19.470-62.591-19.211-62.707Q-18.951-62.822-18.785-63.039Q-18.619-63.256-18.619-63.525Q-18.619-63.802-18.785-64.019Q-18.951-64.236-19.211-64.353Q-19.470-64.470-19.744-64.470Q-20.017-64.470-20.279-64.353Q-20.541-64.236-20.707-64.021Q-20.873-63.806-20.873-63.525M-20.752-65.775Q-20.752-65.537-20.595-65.369Q-20.439-65.201-20.203-65.117Q-19.966-65.033-19.744-65.033Q-19.525-65.033-19.287-65.117Q-19.049-65.201-18.892-65.371Q-18.736-65.541-18.736-65.775Q-18.736-66.009-18.892-66.179Q-19.049-66.349-19.287-66.433Q-19.525-66.517-19.744-66.517Q-19.966-66.517-20.203-66.433Q-20.439-66.349-20.595-66.181Q-20.752-66.013-20.752-65.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-6.994-62.033Q-7.427-62.033-7.759-62.271Q-8.091-62.509-8.312-62.898Q-8.533-63.287-8.640-63.724Q-8.748-64.162-8.748-64.560Q-8.748-64.951-8.638-65.394Q-8.529-65.838-8.312-66.218Q-8.095-66.599-7.761-66.840Q-7.427-67.080-6.994-67.080Q-6.439-67.080-6.039-66.681Q-5.638-66.283-5.441-65.697Q-5.244-65.111-5.244-64.560Q-5.244-64.006-5.441-63.418Q-5.638-62.830-6.039-62.431Q-6.439-62.033-6.994-62.033M-6.994-62.591Q-6.693-62.591-6.476-62.808Q-6.259-63.025-6.132-63.353Q-6.006-63.681-5.945-64.027Q-5.884-64.373-5.884-64.654Q-5.884-64.904-5.947-65.230Q-6.009-65.556-6.140-65.847Q-6.271-66.138-6.484-66.328Q-6.697-66.517-6.994-66.517Q-7.369-66.517-7.621-66.205Q-7.873-65.892-7.990-65.459Q-8.107-65.025-8.107-64.654Q-8.107-64.256-7.994-63.775Q-7.881-63.295-7.632-62.943Q-7.384-62.591-6.994-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 53.66)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 53.66)\">\u003Cpath d=\"M-38.302-63.838Q-38.302-64.318-38.058-64.732Q-37.814-65.146-37.398-65.384Q-36.982-65.623-36.502-65.623Q-35.947-65.623-35.568-65.513Q-35.189-65.404-35.189-64.998Q-35.189-64.830-35.302-64.707Q-35.416-64.584-35.588-64.584Q-35.759-64.584-35.879-64.699Q-35.998-64.814-35.998-64.982L-35.998-65.041Q-36.158-65.064-36.494-65.064Q-36.822-65.064-37.090-64.894Q-37.357-64.724-37.509-64.441Q-37.662-64.158-37.662-63.838Q-37.662-63.517-37.490-63.236Q-37.318-62.955-37.033-62.793Q-36.748-62.631-36.420-62.631Q-36.107-62.631-35.980-62.734Q-35.853-62.838-35.736-63.027Q-35.619-63.216-35.502-63.232L-35.334-63.232Q-35.228-63.220-35.164-63.152Q-35.099-63.084-35.099-62.982Q-35.099-62.935-35.119-62.896Q-35.228-62.603-35.431-62.423Q-35.634-62.244-35.910-62.158Q-36.185-62.072-36.502-62.072Q-36.986-62.072-37.402-62.310Q-37.818-62.548-38.060-62.951Q-38.302-63.353-38.302-63.838M-34.209-63.224Q-34.209-63.670-33.795-63.927Q-33.381-64.185-32.840-64.285Q-32.298-64.384-31.791-64.392Q-31.791-64.607-31.925-64.759Q-32.060-64.912-32.267-64.988Q-32.474-65.064-32.685-65.064Q-33.029-65.064-33.189-65.041L-33.189-64.982Q-33.189-64.814-33.308-64.699Q-33.427-64.584-33.591-64.584Q-33.767-64.584-33.882-64.707Q-33.998-64.830-33.998-64.998Q-33.998-65.404-33.617-65.513Q-33.236-65.623-32.677-65.623Q-32.408-65.623-32.140-65.545Q-31.873-65.466-31.648-65.316Q-31.423-65.166-31.287-64.945Q-31.150-64.724-31.150-64.447L-31.150-62.728Q-31.150-62.670-30.623-62.670Q-30.427-62.650-30.377-62.439L-30.377-62.349Q-30.427-62.134-30.623-62.111L-30.767-62.111Q-31.111-62.111-31.340-62.158Q-31.568-62.205-31.713-62.392Q-32.173-62.072-32.881-62.072Q-33.216-62.072-33.521-62.213Q-33.826-62.353-34.017-62.615Q-34.209-62.877-34.209-63.224M-33.568-63.216Q-33.568-62.943-33.326-62.787Q-33.084-62.631-32.798-62.631Q-32.580-62.631-32.347-62.689Q-32.115-62.748-31.953-62.886Q-31.791-63.025-31.791-63.248L-31.791-63.838Q-32.072-63.838-32.488-63.781Q-32.904-63.724-33.236-63.586Q-33.568-63.447-33.568-63.216M-29.920-62.349L-29.920-62.439Q-29.869-62.646-29.673-62.670L-28.568-62.670L-28.568-66.439L-29.673-66.439Q-29.869-66.463-29.920-66.677L-29.920-66.767Q-29.869-66.974-29.673-66.998L-28.177-66.998Q-27.986-66.974-27.927-66.767L-27.927-62.670L-26.826-62.670Q-26.627-62.646-26.576-62.439L-26.576-62.349Q-26.627-62.134-26.826-62.111L-29.673-62.111Q-29.869-62.134-29.920-62.349M-25.673-62.349L-25.673-62.439Q-25.623-62.646-25.427-62.670L-24.322-62.670L-24.322-66.439L-25.427-66.439Q-25.623-66.463-25.673-66.677L-25.673-66.767Q-25.623-66.974-25.427-66.998L-23.931-66.998Q-23.740-66.974-23.681-66.767L-23.681-62.670L-22.580-62.670Q-22.381-62.646-22.330-62.439L-22.330-62.349Q-22.381-62.134-22.580-62.111L-25.427-62.111Q-25.623-62.134-25.673-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 53.66)\">\u003Cpath d=\"M-17.025-62.310L-17.025-63.224Q-16.998-63.431-16.787-63.455L-16.619-63.455Q-16.455-63.431-16.396-63.271Q-16.193-62.631-15.466-62.631Q-15.259-62.631-15.031-62.666Q-14.802-62.701-14.634-62.816Q-14.466-62.931-14.466-63.134Q-14.466-63.345-14.689-63.459Q-14.912-63.572-15.185-63.615L-15.884-63.728Q-17.025-63.939-17.025-64.662Q-17.025-64.951-16.881-65.140Q-16.736-65.330-16.496-65.437Q-16.256-65.545-16-65.584Q-15.744-65.623-15.466-65.623Q-15.216-65.623-15.023-65.593Q-14.830-65.564-14.666-65.486Q-14.588-65.603-14.459-65.623L-14.381-65.623Q-14.283-65.611-14.220-65.548Q-14.158-65.486-14.146-65.392L-14.146-64.685Q-14.158-64.591-14.220-64.525Q-14.283-64.459-14.381-64.447L-14.549-64.447Q-14.642-64.459-14.709-64.525Q-14.775-64.591-14.787-64.685Q-14.787-65.064-15.482-65.064Q-15.830-65.064-16.148-64.982Q-16.466-64.900-16.466-64.654Q-16.466-64.388-15.795-64.279L-15.091-64.158Q-14.607-64.076-14.257-63.828Q-13.908-63.580-13.908-63.134Q-13.908-62.744-14.144-62.502Q-14.381-62.259-14.730-62.166Q-15.080-62.072-15.466-62.072Q-16.045-62.072-16.443-62.326Q-16.513-62.201-16.562-62.144Q-16.611-62.088-16.716-62.072L-16.787-62.072Q-17.002-62.095-17.025-62.310M-12.623-62.966L-12.623-64.998L-13.045-64.998Q-13.252-65.021-13.295-65.240L-13.295-65.326Q-13.248-65.537-13.045-65.560L-12.228-65.560Q-12.033-65.537-11.982-65.326L-11.982-62.998Q-11.982-62.763-11.812-62.697Q-11.642-62.631-11.357-62.631Q-11.150-62.631-10.955-62.707Q-10.759-62.783-10.634-62.933Q-10.509-63.084-10.509-63.295L-10.509-64.998L-10.931-64.998Q-11.142-65.021-11.181-65.240L-11.181-65.326Q-11.142-65.537-10.931-65.560L-10.119-65.560Q-9.920-65.537-9.869-65.326L-9.869-62.670L-9.443-62.670Q-9.236-62.646-9.197-62.439L-9.197-62.349Q-9.236-62.134-9.443-62.111L-10.259-62.111Q-10.459-62.134-10.509-62.334Q-10.912-62.072-11.420-62.072Q-11.654-62.072-11.869-62.113Q-12.084-62.154-12.250-62.256Q-12.416-62.357-12.519-62.535Q-12.623-62.713-12.623-62.966M-9.174-62.349L-9.174-62.439Q-9.123-62.650-8.927-62.670L-8.728-62.670L-8.728-64.998L-8.927-64.998Q-9.134-65.021-9.174-65.240L-9.174-65.326Q-9.123-65.541-8.927-65.560L-8.447-65.560Q-8.256-65.537-8.197-65.326Q-7.877-65.599-7.463-65.599Q-7.271-65.599-7.103-65.490Q-6.935-65.381-6.861-65.209Q-6.685-65.400-6.463-65.500Q-6.240-65.599-5.998-65.599Q-5.580-65.599-5.425-65.257Q-5.271-64.916-5.271-64.447L-5.271-62.670L-5.072-62.670Q-4.861-62.646-4.822-62.439L-4.822-62.349Q-4.873-62.134-5.072-62.111L-5.888-62.111Q-6.084-62.134-6.134-62.349L-6.134-62.439Q-6.084-62.646-5.888-62.670L-5.799-62.670L-5.799-64.416Q-5.799-65.041-6.049-65.041Q-6.381-65.041-6.558-64.730Q-6.736-64.420-6.736-64.056L-6.736-62.670L-6.533-62.670Q-6.326-62.646-6.287-62.439L-6.287-62.349Q-6.338-62.134-6.533-62.111L-7.349-62.111Q-7.549-62.134-7.599-62.349L-7.599-62.439Q-7.549-62.646-7.349-62.670L-7.263-62.670L-7.263-64.416Q-7.263-65.041-7.509-65.041Q-7.841-65.041-8.019-64.728Q-8.197-64.416-8.197-64.056L-8.197-62.670L-7.998-62.670Q-7.791-62.646-7.752-62.439L-7.752-62.349Q-7.802-62.131-7.998-62.111L-8.927-62.111Q-9.134-62.134-9.174-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 70.73)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.697-62.349L-25.697-62.423Q-25.666-62.591-25.564-62.638L-24.275-63.705Q-23.943-63.982-23.761-64.134Q-23.580-64.287-23.384-64.507Q-23.189-64.728-23.068-64.978Q-22.947-65.228-22.947-65.494Q-22.947-65.818-23.123-66.052Q-23.298-66.287-23.578-66.402Q-23.857-66.517-24.177-66.517Q-24.435-66.517-24.664-66.394Q-24.892-66.271-24.994-66.056Q-24.892-65.923-24.892-65.775Q-24.892-65.615-25.011-65.492Q-25.131-65.369-25.291-65.369Q-25.466-65.369-25.582-65.494Q-25.697-65.619-25.697-65.791Q-25.697-66.084-25.562-66.326Q-25.427-66.568-25.189-66.740Q-24.951-66.912-24.683-66.996Q-24.416-67.080-24.123-67.080Q-23.642-67.080-23.226-66.890Q-22.810-66.701-22.558-66.340Q-22.306-65.978-22.306-65.494Q-22.306-65.150-22.439-64.847Q-22.572-64.545-22.797-64.285Q-23.021-64.025-23.330-63.763Q-23.638-63.502-23.849-63.326L-24.658-62.670L-22.947-62.670L-22.947-62.814Q-22.896-63.025-22.697-63.048L-22.556-63.048Q-22.357-63.029-22.306-62.814L-22.306-62.349Q-22.357-62.134-22.556-62.111L-25.451-62.111Q-25.646-62.131-25.697-62.349M-20.541-62.326L-20.541-62.384Q-20.541-62.927-20.435-63.474Q-20.330-64.021-20.125-64.545Q-19.920-65.068-19.623-65.547Q-19.326-66.025-18.947-66.439L-20.884-66.439L-20.884-66.302Q-20.935-66.088-21.134-66.064L-21.275-66.064Q-21.474-66.088-21.525-66.302L-21.525-66.896Q-21.474-67.107-21.275-67.127L-21.134-67.127Q-20.998-67.115-20.923-66.998L-18.236-66.998Q-18.041-66.974-17.990-66.767L-17.990-66.677Q-18.002-66.588-18.045-66.537Q-18.306-66.279-18.537-66.013Q-18.767-65.748-18.929-65.515Q-19.091-65.283-19.250-64.984Q-19.408-64.685-19.541-64.334Q-19.716-63.861-19.808-63.345Q-19.900-62.830-19.900-62.326Q-19.912-62.201-19.998-62.123Q-20.084-62.045-20.205-62.033Q-20.341-62.033-20.435-62.111Q-20.529-62.189-20.541-62.326\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 70.73)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 70.73)\">\u003Cpath d=\"M-38.791-62.349L-38.791-62.439Q-38.748-62.646-38.541-62.670L-38.119-62.670L-38.119-66.439L-38.541-66.439Q-38.748-66.463-38.791-66.677L-38.791-66.767Q-38.748-66.974-38.541-66.998L-37.724-66.998Q-37.529-66.974-37.478-66.767L-37.478-65.216Q-37.017-65.599-36.420-65.599Q-36.072-65.599-35.834-65.459Q-35.595-65.318-35.480-65.060Q-35.365-64.802-35.365-64.447L-35.365-62.670L-34.939-62.670Q-34.732-62.646-34.693-62.439L-34.693-62.349Q-34.732-62.134-34.939-62.111L-36.334-62.111Q-36.529-62.134-36.580-62.349L-36.580-62.439Q-36.529-62.650-36.334-62.670L-36.006-62.670L-36.006-64.416Q-36.006-64.724-36.095-64.882Q-36.185-65.041-36.478-65.041Q-36.748-65.041-36.976-64.910Q-37.205-64.779-37.341-64.550Q-37.478-64.322-37.478-64.056L-37.478-62.670L-37.052-62.670Q-36.845-62.646-36.806-62.439L-36.806-62.349Q-36.845-62.134-37.052-62.111L-38.541-62.111Q-38.748-62.134-38.791-62.349M-34.209-63.224Q-34.209-63.670-33.795-63.927Q-33.381-64.185-32.840-64.285Q-32.298-64.384-31.791-64.392Q-31.791-64.607-31.925-64.759Q-32.060-64.912-32.267-64.988Q-32.474-65.064-32.685-65.064Q-33.029-65.064-33.189-65.041L-33.189-64.982Q-33.189-64.814-33.308-64.699Q-33.427-64.584-33.591-64.584Q-33.767-64.584-33.882-64.707Q-33.998-64.830-33.998-64.998Q-33.998-65.404-33.617-65.513Q-33.236-65.623-32.677-65.623Q-32.408-65.623-32.140-65.545Q-31.873-65.466-31.648-65.316Q-31.423-65.166-31.287-64.945Q-31.150-64.724-31.150-64.447L-31.150-62.728Q-31.150-62.670-30.623-62.670Q-30.427-62.650-30.377-62.439L-30.377-62.349Q-30.427-62.134-30.623-62.111L-30.767-62.111Q-31.111-62.111-31.340-62.158Q-31.568-62.205-31.713-62.392Q-32.173-62.072-32.881-62.072Q-33.216-62.072-33.521-62.213Q-33.826-62.353-34.017-62.615Q-34.209-62.877-34.209-63.224M-33.568-63.216Q-33.568-62.943-33.326-62.787Q-33.084-62.631-32.798-62.631Q-32.580-62.631-32.347-62.689Q-32.115-62.748-31.953-62.886Q-31.791-63.025-31.791-63.248L-31.791-63.838Q-32.072-63.838-32.488-63.781Q-32.904-63.724-33.236-63.586Q-33.568-63.447-33.568-63.216M-29.920-62.349L-29.920-62.439Q-29.869-62.646-29.673-62.670L-28.568-62.670L-28.568-66.439L-29.673-66.439Q-29.869-66.463-29.920-66.677L-29.920-66.767Q-29.869-66.974-29.673-66.998L-28.177-66.998Q-27.986-66.974-27.927-66.767L-27.927-62.670L-26.826-62.670Q-26.627-62.646-26.576-62.439L-26.576-62.349Q-26.627-62.134-26.826-62.111L-29.673-62.111Q-29.869-62.134-29.920-62.349M-24.923-63.216L-24.923-64.998L-25.673-64.998Q-25.873-65.021-25.923-65.240L-25.923-65.326Q-25.873-65.537-25.673-65.560L-24.923-65.560L-24.923-66.310Q-24.873-66.517-24.673-66.545L-24.529-66.545Q-24.334-66.517-24.283-66.310L-24.283-65.560L-22.923-65.560Q-22.732-65.541-22.673-65.326L-22.673-65.240Q-22.728-65.021-22.923-64.998L-24.283-64.998L-24.283-63.248Q-24.283-62.631-23.709-62.631Q-23.459-62.631-23.295-62.816Q-23.131-63.002-23.131-63.248Q-23.131-63.341-23.058-63.412Q-22.986-63.482-22.884-63.494L-22.740-63.494Q-22.541-63.470-22.490-63.263L-22.490-63.216Q-22.490-62.892-22.673-62.629Q-22.857-62.365-23.150-62.218Q-23.443-62.072-23.763-62.072Q-24.275-62.072-24.599-62.382Q-24.923-62.693-24.923-63.216\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 93.493)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.697-62.349L-25.697-62.423Q-25.666-62.591-25.564-62.638L-24.275-63.705Q-23.943-63.982-23.761-64.134Q-23.580-64.287-23.384-64.507Q-23.189-64.728-23.068-64.978Q-22.947-65.228-22.947-65.494Q-22.947-65.818-23.123-66.052Q-23.298-66.287-23.578-66.402Q-23.857-66.517-24.177-66.517Q-24.435-66.517-24.664-66.394Q-24.892-66.271-24.994-66.056Q-24.892-65.923-24.892-65.775Q-24.892-65.615-25.011-65.492Q-25.131-65.369-25.291-65.369Q-25.466-65.369-25.582-65.494Q-25.697-65.619-25.697-65.791Q-25.697-66.084-25.562-66.326Q-25.427-66.568-25.189-66.740Q-24.951-66.912-24.683-66.996Q-24.416-67.080-24.123-67.080Q-23.642-67.080-23.226-66.890Q-22.810-66.701-22.558-66.340Q-22.306-65.978-22.306-65.494Q-22.306-65.150-22.439-64.847Q-22.572-64.545-22.797-64.285Q-23.021-64.025-23.330-63.763Q-23.638-63.502-23.849-63.326L-24.658-62.670L-22.947-62.670L-22.947-62.814Q-22.896-63.025-22.697-63.048L-22.556-63.048Q-22.357-63.029-22.306-62.814L-22.306-62.349Q-22.357-62.134-22.556-62.111L-25.451-62.111Q-25.646-62.131-25.697-62.349M-21.525-63.525Q-21.525-63.810-21.369-64.064Q-21.213-64.318-20.963-64.492Q-20.713-64.666-20.427-64.752Q-20.666-64.826-20.892-64.968Q-21.119-65.111-21.261-65.320Q-21.404-65.529-21.404-65.775Q-21.404-66.173-21.158-66.468Q-20.912-66.763-20.529-66.922Q-20.146-67.080-19.756-67.080Q-19.365-67.080-18.982-66.922Q-18.599-66.763-18.353-66.465Q-18.107-66.166-18.107-65.775Q-18.107-65.529-18.250-65.322Q-18.392-65.115-18.619-64.970Q-18.845-64.826-19.084-64.752Q-18.631-64.615-18.310-64.289Q-17.990-63.963-17.990-63.525Q-17.990-63.088-18.248-62.744Q-18.506-62.400-18.916-62.216Q-19.326-62.033-19.756-62.033Q-20.185-62.033-20.595-62.215Q-21.006-62.396-21.265-62.740Q-21.525-63.084-21.525-63.525M-20.884-63.525Q-20.884-63.252-20.718-63.037Q-20.552-62.822-20.291-62.707Q-20.029-62.591-19.756-62.591Q-19.482-62.591-19.222-62.707Q-18.963-62.822-18.797-63.039Q-18.631-63.256-18.631-63.525Q-18.631-63.802-18.797-64.019Q-18.963-64.236-19.222-64.353Q-19.482-64.470-19.756-64.470Q-20.029-64.470-20.291-64.353Q-20.552-64.236-20.718-64.021Q-20.884-63.806-20.884-63.525M-20.763-65.775Q-20.763-65.537-20.607-65.369Q-20.451-65.201-20.215-65.117Q-19.978-65.033-19.756-65.033Q-19.537-65.033-19.298-65.117Q-19.060-65.201-18.904-65.371Q-18.748-65.541-18.748-65.775Q-18.748-66.009-18.904-66.179Q-19.060-66.349-19.298-66.433Q-19.537-66.517-19.756-66.517Q-19.978-66.517-20.215-66.433Q-20.451-66.349-20.607-66.181Q-20.763-66.013-20.763-65.775\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M-38.509-63.158Q-38.509-63.334-38.392-63.455Q-38.275-63.576-38.099-63.576Q-38.017-63.576-37.941-63.545Q-37.865-63.513-37.814-63.463Q-37.763-63.412-37.732-63.332Q-37.701-63.252-37.701-63.173Q-37.701-63.041-37.783-62.927Q-37.513-62.591-36.724-62.591Q-36.298-62.591-35.957-62.857Q-35.615-63.123-35.615-63.537Q-35.615-63.810-35.781-64.029Q-35.947-64.248-36.207-64.359Q-36.466-64.470-36.740-64.470L-37.205-64.470Q-37.416-64.494-37.447-64.713L-37.447-64.798Q-37.416-65.002-37.205-65.033L-36.677-65.072Q-36.463-65.072-36.271-65.195Q-36.080-65.318-35.966-65.521Q-35.853-65.724-35.853-65.935Q-35.853-66.209-36.136-66.363Q-36.420-66.517-36.724-66.517Q-37.287-66.517-37.525-66.326Q-37.463-66.213-37.463-66.103Q-37.463-65.931-37.576-65.818Q-37.689-65.705-37.861-65.705Q-38.037-65.705-38.152-65.828Q-38.267-65.951-38.267-66.119Q-38.267-66.646-37.795-66.863Q-37.322-67.080-36.724-67.080Q-36.384-67.080-36.029-66.949Q-35.673-66.818-35.443-66.560Q-35.213-66.302-35.213-65.935Q-35.213-65.591-35.381-65.287Q-35.548-64.982-35.845-64.783Q-35.474-64.603-35.224-64.267Q-34.974-63.931-34.974-63.537Q-34.974-63.091-35.228-62.750Q-35.482-62.408-35.884-62.220Q-36.287-62.033-36.724-62.033Q-37.009-62.033-37.314-62.088Q-37.619-62.142-37.894-62.269Q-38.170-62.396-38.340-62.619Q-38.509-62.841-38.509-63.158M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M-25.791-62.349L-25.791-62.439Q-25.740-62.646-25.545-62.670L-24.662-62.670L-24.662-64.998L-25.517-64.998Q-25.716-65.021-25.767-65.240L-25.767-65.326Q-25.716-65.537-25.517-65.560L-24.662-65.560L-24.662-66.013Q-24.662-66.478-24.256-66.759Q-23.849-67.041-23.369-67.041Q-23.056-67.041-22.812-66.920Q-22.568-66.798-22.568-66.517Q-22.568-66.353-22.677-66.236Q-22.787-66.119-22.951-66.119Q-23.099-66.119-23.220-66.224Q-23.341-66.330-23.341-66.478L-23.424-66.478Q-23.576-66.478-23.713-66.418Q-23.849-66.357-23.935-66.242Q-24.021-66.127-24.021-65.982L-24.021-65.560L-22.990-65.560Q-22.795-65.541-22.744-65.326L-22.744-65.240Q-22.795-65.021-22.990-64.998L-24.021-64.998L-24.021-62.670L-23.142-62.670Q-22.947-62.646-22.896-62.439L-22.896-62.349Q-22.947-62.134-23.142-62.111L-25.545-62.111Q-25.740-62.134-25.791-62.349M-21.513-63.525Q-21.513-63.810-21.357-64.064Q-21.201-64.318-20.951-64.492Q-20.701-64.666-20.416-64.752Q-20.654-64.826-20.881-64.968Q-21.107-65.111-21.250-65.320Q-21.392-65.529-21.392-65.775Q-21.392-66.173-21.146-66.468Q-20.900-66.763-20.517-66.922Q-20.134-67.080-19.744-67.080Q-19.353-67.080-18.970-66.922Q-18.588-66.763-18.341-66.465Q-18.095-66.166-18.095-65.775Q-18.095-65.529-18.238-65.322Q-18.381-65.115-18.607-64.970Q-18.834-64.826-19.072-64.752Q-18.619-64.615-18.299-64.289Q-17.978-63.963-17.978-63.525Q-17.978-63.088-18.236-62.744Q-18.494-62.400-18.904-62.216Q-19.314-62.033-19.744-62.033Q-20.174-62.033-20.584-62.215Q-20.994-62.396-21.254-62.740Q-21.513-63.084-21.513-63.525M-20.873-63.525Q-20.873-63.252-20.707-63.037Q-20.541-62.822-20.279-62.707Q-20.017-62.591-19.744-62.591Q-19.470-62.591-19.211-62.707Q-18.951-62.822-18.785-63.039Q-18.619-63.256-18.619-63.525Q-18.619-63.802-18.785-64.019Q-18.951-64.236-19.211-64.353Q-19.470-64.470-19.744-64.470Q-20.017-64.470-20.279-64.353Q-20.541-64.236-20.707-64.021Q-20.873-63.806-20.873-63.525M-20.752-65.775Q-20.752-65.537-20.595-65.369Q-20.439-65.201-20.203-65.117Q-19.966-65.033-19.744-65.033Q-19.525-65.033-19.287-65.117Q-19.049-65.201-18.892-65.371Q-18.736-65.541-18.736-65.775Q-18.736-66.009-18.892-66.179Q-19.049-66.349-19.287-66.433Q-19.525-66.517-19.744-66.517Q-19.966-66.517-20.203-66.433Q-20.439-66.349-20.595-66.181Q-20.752-66.013-20.752-65.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-8.763-63.525Q-8.763-63.810-8.607-64.064Q-8.451-64.318-8.201-64.492Q-7.951-64.666-7.666-64.752Q-7.904-64.826-8.131-64.968Q-8.357-65.111-8.500-65.320Q-8.642-65.529-8.642-65.775Q-8.642-66.173-8.396-66.468Q-8.150-66.763-7.767-66.922Q-7.384-67.080-6.994-67.080Q-6.603-67.080-6.220-66.922Q-5.838-66.763-5.591-66.465Q-5.345-66.166-5.345-65.775Q-5.345-65.529-5.488-65.322Q-5.631-65.115-5.857-64.970Q-6.084-64.826-6.322-64.752Q-5.869-64.615-5.549-64.289Q-5.228-63.963-5.228-63.525Q-5.228-63.088-5.486-62.744Q-5.744-62.400-6.154-62.216Q-6.564-62.033-6.994-62.033Q-7.424-62.033-7.834-62.215Q-8.244-62.396-8.504-62.740Q-8.763-63.084-8.763-63.525M-8.123-63.525Q-8.123-63.252-7.957-63.037Q-7.791-62.822-7.529-62.707Q-7.267-62.591-6.994-62.591Q-6.720-62.591-6.461-62.707Q-6.201-62.822-6.035-63.039Q-5.869-63.256-5.869-63.525Q-5.869-63.802-6.035-64.019Q-6.201-64.236-6.461-64.353Q-6.720-64.470-6.994-64.470Q-7.267-64.470-7.529-64.353Q-7.791-64.236-7.957-64.021Q-8.123-63.806-8.123-63.525M-8.002-65.775Q-8.002-65.537-7.845-65.369Q-7.689-65.201-7.453-65.117Q-7.216-65.033-6.994-65.033Q-6.775-65.033-6.537-65.117Q-6.299-65.201-6.142-65.371Q-5.986-65.541-5.986-65.775Q-5.986-66.009-6.142-66.179Q-6.299-66.349-6.537-66.433Q-6.775-66.517-6.994-66.517Q-7.216-66.517-7.453-66.433Q-7.689-66.349-7.845-66.181Q-8.002-66.013-8.002-65.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 93.493)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 92.938)\">\u003Cpath d=\"M-38.275-62.310L-38.275-63.224Q-38.248-63.431-38.037-63.455L-37.869-63.455Q-37.705-63.431-37.646-63.271Q-37.443-62.631-36.716-62.631Q-36.509-62.631-36.281-62.666Q-36.052-62.701-35.884-62.816Q-35.716-62.931-35.716-63.134Q-35.716-63.345-35.939-63.459Q-36.162-63.572-36.435-63.615L-37.134-63.728Q-38.275-63.939-38.275-64.662Q-38.275-64.951-38.131-65.140Q-37.986-65.330-37.746-65.437Q-37.506-65.545-37.250-65.584Q-36.994-65.623-36.716-65.623Q-36.466-65.623-36.273-65.593Q-36.080-65.564-35.916-65.486Q-35.838-65.603-35.709-65.623L-35.631-65.623Q-35.533-65.611-35.470-65.548Q-35.408-65.486-35.396-65.392L-35.396-64.685Q-35.408-64.591-35.470-64.525Q-35.533-64.459-35.631-64.447L-35.798-64.447Q-35.892-64.459-35.959-64.525Q-36.025-64.591-36.037-64.685Q-36.037-65.064-36.732-65.064Q-37.080-65.064-37.398-64.982Q-37.716-64.900-37.716-64.654Q-37.716-64.388-37.045-64.279L-36.341-64.158Q-35.857-64.076-35.507-63.828Q-35.158-63.580-35.158-63.134Q-35.158-62.744-35.394-62.502Q-35.631-62.259-35.980-62.166Q-36.330-62.072-36.716-62.072Q-37.295-62.072-37.693-62.326Q-37.763-62.201-37.812-62.144Q-37.861-62.088-37.966-62.072L-38.037-62.072Q-38.252-62.095-38.275-62.310M-33.873-62.966L-33.873-64.998L-34.295-64.998Q-34.502-65.021-34.545-65.240L-34.545-65.326Q-34.498-65.537-34.295-65.560L-33.478-65.560Q-33.283-65.537-33.232-65.326L-33.232-62.998Q-33.232-62.763-33.062-62.697Q-32.892-62.631-32.607-62.631Q-32.400-62.631-32.205-62.707Q-32.009-62.783-31.884-62.933Q-31.759-63.084-31.759-63.295L-31.759-64.998L-32.181-64.998Q-32.392-65.021-32.431-65.240L-32.431-65.326Q-32.392-65.537-32.181-65.560L-31.369-65.560Q-31.170-65.537-31.119-65.326L-31.119-62.670L-30.693-62.670Q-30.486-62.646-30.447-62.439L-30.447-62.349Q-30.486-62.134-30.693-62.111L-31.509-62.111Q-31.709-62.134-31.759-62.334Q-32.162-62.072-32.670-62.072Q-32.904-62.072-33.119-62.113Q-33.334-62.154-33.500-62.256Q-33.666-62.357-33.769-62.535Q-33.873-62.713-33.873-62.966M-30.423-62.349L-30.423-62.439Q-30.373-62.650-30.177-62.670L-29.978-62.670L-29.978-64.998L-30.177-64.998Q-30.384-65.021-30.423-65.240L-30.423-65.326Q-30.373-65.541-30.177-65.560L-29.697-65.560Q-29.506-65.537-29.447-65.326Q-29.127-65.599-28.713-65.599Q-28.521-65.599-28.353-65.490Q-28.185-65.381-28.111-65.209Q-27.935-65.400-27.713-65.500Q-27.490-65.599-27.248-65.599Q-26.830-65.599-26.675-65.257Q-26.521-64.916-26.521-64.447L-26.521-62.670L-26.322-62.670Q-26.111-62.646-26.072-62.439L-26.072-62.349Q-26.123-62.134-26.322-62.111L-27.138-62.111Q-27.334-62.134-27.384-62.349L-27.384-62.439Q-27.334-62.646-27.138-62.670L-27.048-62.670L-27.048-64.416Q-27.048-65.041-27.298-65.041Q-27.631-65.041-27.808-64.730Q-27.986-64.420-27.986-64.056L-27.986-62.670L-27.783-62.670Q-27.576-62.646-27.537-62.439L-27.537-62.349Q-27.588-62.134-27.783-62.111L-28.599-62.111Q-28.798-62.134-28.849-62.349L-28.849-62.439Q-28.798-62.646-28.599-62.670L-28.513-62.670L-28.513-64.416Q-28.513-65.041-28.759-65.041Q-29.091-65.041-29.269-64.728Q-29.447-64.416-29.447-64.056L-29.447-62.670L-29.248-62.670Q-29.041-62.646-29.002-62.439L-29.002-62.349Q-29.052-62.131-29.248-62.111L-30.177-62.111Q-30.384-62.134-30.423-62.349M-24.556-62.670Q-24.556-62.892-24.390-63.058Q-24.224-63.224-23.994-63.224Q-23.845-63.224-23.718-63.146Q-23.591-63.068-23.517-62.943Q-23.443-62.818-23.443-62.670Q-23.443-62.443-23.609-62.277Q-23.775-62.111-23.994-62.111Q-24.220-62.111-24.388-62.279Q-24.556-62.447-24.556-62.670M-24.556-65.006Q-24.556-65.228-24.390-65.394Q-24.224-65.560-23.994-65.560Q-23.845-65.560-23.718-65.482Q-23.591-65.404-23.517-65.279Q-23.443-65.154-23.443-65.006Q-23.443-64.779-23.609-64.613Q-23.775-64.447-23.994-64.447Q-24.220-64.447-24.388-64.615Q-24.556-64.783-24.556-65.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 92.938)\">\u003Cpath d=\"M-12.744-62.349L-12.744-62.439Q-12.693-62.646-12.498-62.670L-11.459-62.670L-11.459-64.998L-12.431-64.998Q-12.631-65.021-12.681-65.240L-12.681-65.326Q-12.631-65.537-12.431-65.560L-11.064-65.560Q-10.869-65.541-10.818-65.326L-10.818-62.670L-9.904-62.670Q-9.709-62.646-9.658-62.439L-9.658-62.349Q-9.709-62.134-9.904-62.111L-12.498-62.111Q-12.693-62.134-12.744-62.349M-11.713-66.537L-11.713-66.591Q-11.713-66.763-11.576-66.884Q-11.439-67.006-11.263-67.006Q-11.091-67.006-10.955-66.884Q-10.818-66.763-10.818-66.591L-10.818-66.537Q-10.818-66.361-10.955-66.240Q-11.091-66.119-11.263-66.119Q-11.439-66.119-11.576-66.240Q-11.713-66.361-11.713-66.537M-8.892-62.349L-8.892-62.439Q-8.834-62.646-8.642-62.670L-7.931-62.670L-7.931-64.998L-8.642-64.998Q-8.838-65.021-8.892-65.240L-8.892-65.326Q-8.834-65.537-8.642-65.560L-7.541-65.560Q-7.341-65.541-7.291-65.326L-7.291-64.998Q-7.029-65.283-6.674-65.441Q-6.318-65.599-5.931-65.599Q-5.638-65.599-5.404-65.465Q-5.170-65.330-5.170-65.064Q-5.170-64.896-5.279-64.779Q-5.388-64.662-5.556-64.662Q-5.709-64.662-5.824-64.773Q-5.939-64.884-5.939-65.041Q-6.314-65.041-6.629-64.840Q-6.943-64.638-7.117-64.304Q-7.291-63.970-7.291-63.591L-7.291-62.670L-6.345-62.670Q-6.138-62.646-6.099-62.439L-6.099-62.349Q-6.138-62.134-6.345-62.111L-8.642-62.111Q-8.834-62.134-8.892-62.349M-4.924-62.349L-4.924-62.439Q-4.873-62.650-4.677-62.670L-4.478-62.670L-4.478-64.998L-4.677-64.998Q-4.884-65.021-4.924-65.240L-4.924-65.326Q-4.873-65.541-4.677-65.560L-4.197-65.560Q-4.006-65.537-3.947-65.326Q-3.627-65.599-3.213-65.599Q-3.021-65.599-2.853-65.490Q-2.685-65.381-2.611-65.209Q-2.435-65.400-2.213-65.500Q-1.990-65.599-1.748-65.599Q-1.330-65.599-1.175-65.257Q-1.021-64.916-1.021-64.447L-1.021-62.670L-0.822-62.670Q-0.611-62.646-0.572-62.439L-0.572-62.349Q-0.623-62.134-0.822-62.111L-1.638-62.111Q-1.834-62.134-1.884-62.349L-1.884-62.439Q-1.834-62.646-1.638-62.670L-1.549-62.670L-1.549-64.416Q-1.549-65.041-1.799-65.041Q-2.131-65.041-2.308-64.730Q-2.486-64.420-2.486-64.056L-2.486-62.670L-2.283-62.670Q-2.076-62.646-2.037-62.439L-2.037-62.349Q-2.088-62.134-2.283-62.111L-3.099-62.111Q-3.299-62.134-3.349-62.349L-3.349-62.439Q-3.299-62.646-3.099-62.670L-3.013-62.670L-3.013-64.416Q-3.013-65.041-3.259-65.041Q-3.591-65.041-3.769-64.728Q-3.947-64.416-3.947-64.056L-3.947-62.670L-3.748-62.670Q-3.541-62.646-3.502-62.439L-3.502-62.349Q-3.552-62.131-3.748-62.111L-4.677-62.111Q-4.884-62.134-4.924-62.349M1.498-62.072Q1.026-62.072 0.641-62.316Q0.256-62.560 0.034-62.970Q-0.189-63.381-0.189-63.838Q-0.189-64.181-0.064-64.504Q0.061-64.826 0.291-65.080Q0.522-65.334 0.828-65.478Q1.135-65.623 1.498-65.623Q1.862-65.623 2.174-65.476Q2.487-65.330 2.709-65.084Q2.932-64.838 3.059-64.517Q3.186-64.197 3.186-63.838Q3.186-63.381 2.961-62.968Q2.737-62.556 2.352-62.314Q1.967-62.072 1.498-62.072M1.498-62.631Q1.963-62.631 2.254-63.025Q2.545-63.420 2.545-63.904Q2.545-64.197 2.410-64.465Q2.276-64.732 2.035-64.898Q1.795-65.064 1.498-65.064Q1.194-65.064 0.955-64.898Q0.717-64.732 0.582-64.465Q0.448-64.197 0.448-63.904Q0.448-63.423 0.741-63.027Q1.034-62.631 1.498-62.631M5.280-62.334L4.393-64.998L4.073-64.998Q3.873-65.021 3.823-65.240L3.823-65.326Q3.873-65.537 4.073-65.560L5.233-65.560Q5.428-65.541 5.479-65.326L5.479-65.240Q5.428-65.021 5.233-64.998L4.951-64.998L5.744-62.623L6.534-64.998L6.256-64.998Q6.057-65.021 6.006-65.240L6.006-65.326Q6.057-65.537 6.256-65.560L7.416-65.560Q7.612-65.537 7.662-65.326L7.662-65.240Q7.612-65.021 7.416-64.998L7.096-64.998L6.209-62.334Q6.166-62.220 6.065-62.146Q5.963-62.072 5.838-62.072L5.647-62.072Q5.530-62.072 5.426-62.144Q5.323-62.216 5.280-62.334M10.182-60.568L10.182-60.654Q10.233-60.873 10.428-60.896L10.893-60.896L10.893-62.494Q10.440-62.072 9.830-62.072Q9.475-62.072 9.170-62.215Q8.866-62.357 8.633-62.607Q8.401-62.857 8.276-63.179Q8.151-63.502 8.151-63.838Q8.151-64.322 8.389-64.722Q8.627-65.123 9.034-65.361Q9.440-65.599 9.916-65.599Q10.479-65.599 10.893-65.209L10.893-65.369Q10.944-65.580 11.143-65.599L11.284-65.599Q11.483-65.576 11.534-65.369L11.534-60.896L11.998-60.896Q12.194-60.873 12.244-60.654L12.244-60.568Q12.194-60.357 11.998-60.334L10.428-60.334Q10.233-60.357 10.182-60.568M9.877-62.631Q10.248-62.631 10.524-62.884Q10.799-63.138 10.893-63.502L10.893-64.119Q10.850-64.357 10.727-64.570Q10.604-64.783 10.407-64.912Q10.209-65.041 9.967-65.041Q9.651-65.041 9.379-64.875Q9.108-64.709 8.950-64.427Q8.791-64.146 8.791-63.830Q8.791-63.365 9.106-62.998Q9.420-62.631 9.877-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 92.938)\">\u003Cpath d=\"M18.230-61.677L18.230-62.088Q17.628-62.154 17.245-62.523Q16.863-62.892 16.863-63.486Q16.863-63.662 16.980-63.783Q17.097-63.904 17.269-63.904Q17.347-63.904 17.427-63.873Q17.507-63.841 17.558-63.791Q17.609-63.740 17.640-63.660Q17.671-63.580 17.671-63.502Q17.671-63.302 17.542-63.209Q17.609-62.982 17.792-62.843Q17.976-62.705 18.230-62.654L18.230-64.384Q17.652-64.506 17.257-64.832Q16.863-65.158 16.863-65.705Q16.863-66.224 17.275-66.586Q17.687-66.947 18.230-67.021L18.230-67.431Q18.281-67.638 18.480-67.662L18.542-67.662Q18.738-67.642 18.788-67.431L18.788-67.021Q19.167-66.986 19.478-66.828Q19.788-66.670 19.974-66.388Q20.160-66.107 20.160-65.720Q20.160-65.548 20.046-65.425Q19.933-65.302 19.757-65.302Q19.589-65.302 19.470-65.418Q19.351-65.533 19.351-65.705Q19.351-65.881 19.468-65.998Q19.394-66.197 19.210-66.310Q19.027-66.423 18.788-66.455L18.788-64.920Q19.156-64.845 19.472-64.660Q19.788-64.474 19.974-64.183Q20.160-63.892 20.160-63.502Q20.160-63.224 20.050-62.986Q19.941-62.748 19.742-62.554Q19.542-62.361 19.292-62.246Q19.042-62.131 18.788-62.095L18.788-61.677Q18.738-61.470 18.542-61.447L18.480-61.447Q18.281-61.466 18.230-61.677M18.788-64.271L18.788-62.662Q19.101-62.732 19.333-62.949Q19.566-63.166 19.566-63.463Q19.566-63.670 19.458-63.834Q19.351-63.998 19.173-64.109Q18.995-64.220 18.788-64.271M17.453-65.744Q17.453-65.466 17.683-65.289Q17.913-65.111 18.230-65.041L18.230-66.455Q17.933-66.400 17.693-66.211Q17.453-66.021 17.453-65.744M20.988-63.525Q20.988-63.810 21.144-64.064Q21.300-64.318 21.550-64.492Q21.800-64.666 22.085-64.752Q21.847-64.826 21.620-64.968Q21.394-65.111 21.251-65.320Q21.109-65.529 21.109-65.775Q21.109-66.173 21.355-66.468Q21.601-66.763 21.984-66.922Q22.367-67.080 22.757-67.080Q23.148-67.080 23.531-66.922Q23.913-66.763 24.160-66.465Q24.406-66.166 24.406-65.775Q24.406-65.529 24.263-65.322Q24.120-65.115 23.894-64.970Q23.667-64.826 23.429-64.752Q23.882-64.615 24.203-64.289Q24.523-63.963 24.523-63.525Q24.523-63.088 24.265-62.744Q24.007-62.400 23.597-62.216Q23.187-62.033 22.757-62.033Q22.328-62.033 21.917-62.215Q21.507-62.396 21.247-62.740Q20.988-63.084 20.988-63.525M21.628-63.525Q21.628-63.252 21.794-63.037Q21.960-62.822 22.222-62.707Q22.484-62.591 22.757-62.591Q23.031-62.591 23.290-62.707Q23.550-62.822 23.716-63.039Q23.882-63.256 23.882-63.525Q23.882-63.802 23.716-64.019Q23.550-64.236 23.290-64.353Q23.031-64.470 22.757-64.470Q22.484-64.470 22.222-64.353Q21.960-64.236 21.794-64.021Q21.628-63.806 21.628-63.525M21.749-65.775Q21.749-65.537 21.906-65.369Q22.062-65.201 22.298-65.117Q22.535-65.033 22.757-65.033Q22.976-65.033 23.214-65.117Q23.453-65.201 23.609-65.371Q23.765-65.541 23.765-65.775Q23.765-66.009 23.609-66.179Q23.453-66.349 23.214-66.433Q22.976-66.517 22.757-66.517Q22.535-66.517 22.298-66.433Q22.062-66.349 21.906-66.181Q21.749-66.013 21.749-65.775M26.601-60.998Q26.488-60.998 26.398-61.088Q26.308-61.177 26.308-61.287Q26.308-61.463 26.499-61.537Q26.718-61.588 26.890-61.746Q27.062-61.904 27.128-62.127Q27.105-62.127 27.074-62.111L27.011-62.111Q26.781-62.111 26.615-62.273Q26.449-62.435 26.449-62.670Q26.449-62.904 26.613-63.064Q26.777-63.224 27.011-63.224Q27.222-63.224 27.386-63.103Q27.550-62.982 27.640-62.789Q27.730-62.595 27.730-62.384Q27.730-61.908 27.431-61.519Q27.132-61.131 26.667-61.006Q26.644-60.998 26.601-60.998M29.808-61.752Q29.808-61.806 29.831-61.873L32.097-67.478Q32.191-67.662 32.386-67.662Q32.511-67.662 32.599-67.574Q32.687-67.486 32.687-67.357Q32.687-67.298 32.663-67.240L30.402-61.631Q30.300-61.447 30.120-61.447Q29.995-61.447 29.902-61.537Q29.808-61.627 29.808-61.752M32.386-61.447Q32.035-61.447 31.853-61.787Q31.671-62.127 31.671-62.509Q31.671-62.896 31.851-63.236Q32.031-63.576 32.386-63.576Q32.624-63.576 32.783-63.406Q32.941-63.236 33.015-62.992Q33.089-62.748 33.089-62.509Q33.089-62.275 33.015-62.031Q32.941-61.787 32.783-61.617Q32.624-61.447 32.386-61.447M32.386-62.006Q32.468-62.037 32.515-62.205Q32.562-62.373 32.562-62.509Q32.562-62.646 32.515-62.816Q32.468-62.986 32.386-63.013Q32.300-62.986 32.249-62.818Q32.199-62.650 32.199-62.509Q32.199-62.381 32.249-62.209Q32.300-62.037 32.386-62.006M30.120-65.525Q29.878-65.525 29.718-65.695Q29.558-65.865 29.484-66.111Q29.410-66.357 29.410-66.599Q29.410-66.982 29.589-67.322Q29.769-67.662 30.120-67.662Q30.359-67.662 30.517-67.492Q30.675-67.322 30.749-67.078Q30.824-66.834 30.824-66.599Q30.824-66.357 30.749-66.111Q30.675-65.865 30.517-65.695Q30.359-65.525 30.120-65.525M30.120-66.088Q30.210-66.131 30.253-66.287Q30.296-66.443 30.296-66.599Q30.296-66.728 30.249-66.904Q30.203-67.080 30.113-67.103Q30.097-67.103 30.068-67.068Q30.038-67.033 30.031-67.013Q29.937-66.826 29.937-66.599Q29.937-66.463 29.986-66.291Q30.035-66.119 30.120-66.088M33.597-62.349L33.597-62.439Q33.656-62.646 33.847-62.670L34.558-62.670L34.558-64.998L33.847-64.998Q33.652-65.021 33.597-65.240L33.597-65.326Q33.656-65.537 33.847-65.560L34.949-65.560Q35.148-65.541 35.199-65.326L35.199-64.998Q35.460-65.283 35.816-65.441Q36.171-65.599 36.558-65.599Q36.851-65.599 37.085-65.465Q37.320-65.330 37.320-65.064Q37.320-64.896 37.210-64.779Q37.101-64.662 36.933-64.662Q36.781-64.662 36.665-64.773Q36.550-64.884 36.550-65.041Q36.175-65.041 35.861-64.840Q35.546-64.638 35.372-64.304Q35.199-63.970 35.199-63.591L35.199-62.670L36.144-62.670Q36.351-62.646 36.390-62.439L36.390-62.349Q36.351-62.134 36.144-62.111L33.847-62.111Q33.656-62.134 33.597-62.349M37.972-63.525Q37.972-63.810 38.128-64.064Q38.285-64.318 38.535-64.492Q38.785-64.666 39.070-64.752Q38.831-64.826 38.605-64.968Q38.378-65.111 38.236-65.320Q38.093-65.529 38.093-65.775Q38.093-66.173 38.339-66.468Q38.585-66.763 38.968-66.922Q39.351-67.080 39.742-67.080Q40.132-67.080 40.515-66.922Q40.898-66.763 41.144-66.465Q41.390-66.166 41.390-65.775Q41.390-65.529 41.247-65.322Q41.105-65.115 40.878-64.970Q40.652-64.826 40.413-64.752Q40.867-64.615 41.187-64.289Q41.507-63.963 41.507-63.525Q41.507-63.088 41.249-62.744Q40.992-62.400 40.581-62.216Q40.171-62.033 39.742-62.033Q39.312-62.033 38.902-62.215Q38.492-62.396 38.232-62.740Q37.972-63.084 37.972-63.525M38.613-63.525Q38.613-63.252 38.779-63.037Q38.945-62.822 39.206-62.707Q39.468-62.591 39.742-62.591Q40.015-62.591 40.275-62.707Q40.535-62.822 40.701-63.039Q40.867-63.256 40.867-63.525Q40.867-63.802 40.701-64.019Q40.535-64.236 40.275-64.353Q40.015-64.470 39.742-64.470Q39.468-64.470 39.206-64.353Q38.945-64.236 38.779-64.021Q38.613-63.806 38.613-63.525M38.734-65.775Q38.734-65.537 38.890-65.369Q39.046-65.201 39.283-65.117Q39.519-65.033 39.742-65.033Q39.960-65.033 40.199-65.117Q40.437-65.201 40.593-65.371Q40.749-65.541 40.749-65.775Q40.749-66.009 40.593-66.179Q40.437-66.349 40.199-66.433Q39.960-66.517 39.742-66.517Q39.519-66.517 39.283-66.433Q39.046-66.349 38.890-66.181Q38.734-66.013 38.734-65.775\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 110.565)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.771-63.158Q-25.771-63.334-25.654-63.455Q-25.537-63.576-25.361-63.576Q-25.279-63.576-25.203-63.545Q-25.127-63.513-25.076-63.463Q-25.025-63.412-24.994-63.332Q-24.963-63.252-24.963-63.173Q-24.963-63.041-25.045-62.927Q-24.775-62.591-23.986-62.591Q-23.560-62.591-23.218-62.857Q-22.877-63.123-22.877-63.537Q-22.877-63.810-23.043-64.029Q-23.209-64.248-23.468-64.359Q-23.728-64.470-24.002-64.470L-24.466-64.470Q-24.677-64.494-24.709-64.713L-24.709-64.798Q-24.677-65.002-24.466-65.033L-23.939-65.072Q-23.724-65.072-23.533-65.195Q-23.341-65.318-23.228-65.521Q-23.115-65.724-23.115-65.935Q-23.115-66.209-23.398-66.363Q-23.681-66.517-23.986-66.517Q-24.548-66.517-24.787-66.326Q-24.724-66.213-24.724-66.103Q-24.724-65.931-24.838-65.818Q-24.951-65.705-25.123-65.705Q-25.298-65.705-25.414-65.828Q-25.529-65.951-25.529-66.119Q-25.529-66.646-25.056-66.863Q-24.584-67.080-23.986-67.080Q-23.646-67.080-23.291-66.949Q-22.935-66.818-22.705-66.560Q-22.474-66.302-22.474-65.935Q-22.474-65.591-22.642-65.287Q-22.810-64.982-23.107-64.783Q-22.736-64.603-22.486-64.267Q-22.236-63.931-22.236-63.537Q-22.236-63.091-22.490-62.750Q-22.744-62.408-23.146-62.220Q-23.548-62.033-23.986-62.033Q-24.271-62.033-24.576-62.088Q-24.881-62.142-25.156-62.269Q-25.431-62.396-25.601-62.619Q-25.771-62.841-25.771-63.158M-21.451-62.349L-21.451-62.423Q-21.420-62.591-21.318-62.638L-20.029-63.705Q-19.697-63.982-19.515-64.134Q-19.334-64.287-19.138-64.507Q-18.943-64.728-18.822-64.978Q-18.701-65.228-18.701-65.494Q-18.701-65.818-18.877-66.052Q-19.052-66.287-19.332-66.402Q-19.611-66.517-19.931-66.517Q-20.189-66.517-20.418-66.394Q-20.646-66.271-20.748-66.056Q-20.646-65.923-20.646-65.775Q-20.646-65.615-20.765-65.492Q-20.884-65.369-21.045-65.369Q-21.220-65.369-21.336-65.494Q-21.451-65.619-21.451-65.791Q-21.451-66.084-21.316-66.326Q-21.181-66.568-20.943-66.740Q-20.705-66.912-20.437-66.996Q-20.170-67.080-19.877-67.080Q-19.396-67.080-18.980-66.890Q-18.564-66.701-18.312-66.340Q-18.060-65.978-18.060-65.494Q-18.060-65.150-18.193-64.847Q-18.326-64.545-18.550-64.285Q-18.775-64.025-19.084-63.763Q-19.392-63.502-19.603-63.326L-20.412-62.670L-18.701-62.670L-18.701-62.814Q-18.650-63.025-18.451-63.048L-18.310-63.048Q-18.111-63.029-18.060-62.814L-18.060-62.349Q-18.111-62.134-18.310-62.111L-21.205-62.111Q-21.400-62.131-21.451-62.349\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M-38.509-63.158Q-38.509-63.334-38.392-63.455Q-38.275-63.576-38.099-63.576Q-38.017-63.576-37.941-63.545Q-37.865-63.513-37.814-63.463Q-37.763-63.412-37.732-63.332Q-37.701-63.252-37.701-63.173Q-37.701-63.041-37.783-62.927Q-37.513-62.591-36.724-62.591Q-36.298-62.591-35.957-62.857Q-35.615-63.123-35.615-63.537Q-35.615-63.810-35.781-64.029Q-35.947-64.248-36.207-64.359Q-36.466-64.470-36.740-64.470L-37.205-64.470Q-37.416-64.494-37.447-64.713L-37.447-64.798Q-37.416-65.002-37.205-65.033L-36.677-65.072Q-36.463-65.072-36.271-65.195Q-36.080-65.318-35.966-65.521Q-35.853-65.724-35.853-65.935Q-35.853-66.209-36.136-66.363Q-36.420-66.517-36.724-66.517Q-37.287-66.517-37.525-66.326Q-37.463-66.213-37.463-66.103Q-37.463-65.931-37.576-65.818Q-37.689-65.705-37.861-65.705Q-38.037-65.705-38.152-65.828Q-38.267-65.951-38.267-66.119Q-38.267-66.646-37.795-66.863Q-37.322-67.080-36.724-67.080Q-36.384-67.080-36.029-66.949Q-35.673-66.818-35.443-66.560Q-35.213-66.302-35.213-65.935Q-35.213-65.591-35.381-65.287Q-35.548-64.982-35.845-64.783Q-35.474-64.603-35.224-64.267Q-34.974-63.931-34.974-63.537Q-34.974-63.091-35.228-62.750Q-35.482-62.408-35.884-62.220Q-36.287-62.033-36.724-62.033Q-37.009-62.033-37.314-62.088Q-37.619-62.142-37.894-62.269Q-38.170-62.396-38.340-62.619Q-38.509-62.841-38.509-63.158M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M-25.791-62.349L-25.791-62.439Q-25.740-62.646-25.545-62.670L-24.662-62.670L-24.662-64.998L-25.517-64.998Q-25.716-65.021-25.767-65.240L-25.767-65.326Q-25.716-65.537-25.517-65.560L-24.662-65.560L-24.662-66.013Q-24.662-66.478-24.256-66.759Q-23.849-67.041-23.369-67.041Q-23.056-67.041-22.812-66.920Q-22.568-66.798-22.568-66.517Q-22.568-66.353-22.677-66.236Q-22.787-66.119-22.951-66.119Q-23.099-66.119-23.220-66.224Q-23.341-66.330-23.341-66.478L-23.424-66.478Q-23.576-66.478-23.713-66.418Q-23.849-66.357-23.935-66.242Q-24.021-66.127-24.021-65.982L-24.021-65.560L-22.990-65.560Q-22.795-65.541-22.744-65.326L-22.744-65.240Q-22.795-65.021-22.990-64.998L-24.021-64.998L-24.021-62.670L-23.142-62.670Q-22.947-62.646-22.896-62.439L-22.896-62.349Q-22.947-62.134-23.142-62.111L-25.545-62.111Q-25.740-62.134-25.791-62.349M-21.299-62.912Q-21.299-63.088-21.183-63.211Q-21.068-63.334-20.888-63.334Q-20.720-63.334-20.605-63.218Q-20.490-63.103-20.490-62.927Q-20.490-62.806-20.552-62.705Q-20.404-62.591-20.095-62.591Q-19.791-62.591-19.537-62.742Q-19.283-62.892-19.101-63.138Q-18.920-63.384-18.812-63.677Q-18.705-63.970-18.674-64.248Q-18.912-64.048-19.220-63.943Q-19.529-63.838-19.849-63.838Q-20.295-63.838-20.668-64.054Q-21.041-64.271-21.257-64.640Q-21.474-65.009-21.474-65.455Q-21.474-65.927-21.228-66.298Q-20.982-66.670-20.576-66.875Q-20.170-67.080-19.697-67.080Q-19.213-67.080-18.881-66.851Q-18.549-66.623-18.361-66.250Q-18.174-65.877-18.095-65.447Q-18.017-65.017-18.017-64.560Q-18.017-63.951-18.271-63.363Q-18.525-62.775-19.002-62.404Q-19.478-62.033-20.095-62.033Q-20.591-62.033-20.945-62.242Q-21.299-62.451-21.299-62.912M-19.795-64.400Q-19.408-64.400-19.072-64.629Q-18.736-64.857-18.736-65.224Q-18.736-65.263-18.752-65.341Q-18.767-65.420-18.767-65.455Q-18.767-65.466-18.759-65.498Q-18.752-65.529-18.752-65.537Q-18.814-65.787-18.933-66.007Q-19.052-66.228-19.246-66.373Q-19.439-66.517-19.697-66.517Q-20.170-66.517-20.502-66.216Q-20.834-65.916-20.834-65.455Q-20.834-65.173-20.697-64.927Q-20.560-64.681-20.322-64.541Q-20.084-64.400-19.795-64.400\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-8.259-62.349L-8.259-62.439Q-8.209-62.646-8.009-62.670L-7.193-62.670L-7.193-65.853Q-7.572-65.545-8.025-65.545Q-8.256-65.545-8.306-65.775L-8.306-65.865Q-8.256-66.080-8.060-66.103Q-7.732-66.103-7.478-66.341Q-7.224-66.580-7.084-66.927Q-7.013-67.056-6.857-67.080L-6.802-67.080Q-6.607-67.060-6.556-66.845L-6.556-62.670L-5.740-62.670Q-5.541-62.646-5.490-62.439L-5.490-62.349Q-5.541-62.134-5.740-62.111L-8.009-62.111Q-8.209-62.134-8.259-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 110.565)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 110.01)\">\u003Cpath d=\"M-38.244-62.349L-38.244-62.439Q-38.193-62.646-37.998-62.670L-36.959-62.670L-36.959-64.998L-37.931-64.998Q-38.131-65.021-38.181-65.240L-38.181-65.326Q-38.131-65.537-37.931-65.560L-36.564-65.560Q-36.369-65.541-36.318-65.326L-36.318-62.670L-35.404-62.670Q-35.209-62.646-35.158-62.439L-35.158-62.349Q-35.209-62.134-35.404-62.111L-37.998-62.111Q-38.193-62.134-38.244-62.349M-37.213-66.537L-37.213-66.591Q-37.213-66.763-37.076-66.884Q-36.939-67.006-36.763-67.006Q-36.591-67.006-36.455-66.884Q-36.318-66.763-36.318-66.591L-36.318-66.537Q-36.318-66.361-36.455-66.240Q-36.591-66.119-36.763-66.119Q-36.939-66.119-37.076-66.240Q-37.213-66.361-37.213-66.537M-34.392-62.349L-34.392-62.439Q-34.334-62.646-34.142-62.670L-33.431-62.670L-33.431-64.998L-34.142-64.998Q-34.338-65.021-34.392-65.240L-34.392-65.326Q-34.334-65.537-34.142-65.560L-33.041-65.560Q-32.841-65.541-32.791-65.326L-32.791-64.998Q-32.529-65.283-32.173-65.441Q-31.818-65.599-31.431-65.599Q-31.138-65.599-30.904-65.465Q-30.670-65.330-30.670-65.064Q-30.670-64.896-30.779-64.779Q-30.888-64.662-31.056-64.662Q-31.209-64.662-31.324-64.773Q-31.439-64.884-31.439-65.041Q-31.814-65.041-32.129-64.840Q-32.443-64.638-32.617-64.304Q-32.791-63.970-32.791-63.591L-32.791-62.670L-31.845-62.670Q-31.638-62.646-31.599-62.439L-31.599-62.349Q-31.638-62.134-31.845-62.111L-34.142-62.111Q-34.334-62.134-34.392-62.349M-30.423-62.349L-30.423-62.439Q-30.373-62.650-30.177-62.670L-29.978-62.670L-29.978-64.998L-30.177-64.998Q-30.384-65.021-30.423-65.240L-30.423-65.326Q-30.373-65.541-30.177-65.560L-29.697-65.560Q-29.506-65.537-29.447-65.326Q-29.127-65.599-28.713-65.599Q-28.521-65.599-28.353-65.490Q-28.185-65.381-28.111-65.209Q-27.935-65.400-27.713-65.500Q-27.490-65.599-27.248-65.599Q-26.830-65.599-26.675-65.257Q-26.521-64.916-26.521-64.447L-26.521-62.670L-26.322-62.670Q-26.111-62.646-26.072-62.439L-26.072-62.349Q-26.123-62.134-26.322-62.111L-27.138-62.111Q-27.334-62.134-27.384-62.349L-27.384-62.439Q-27.334-62.646-27.138-62.670L-27.048-62.670L-27.048-64.416Q-27.048-65.041-27.298-65.041Q-27.631-65.041-27.808-64.730Q-27.986-64.420-27.986-64.056L-27.986-62.670L-27.783-62.670Q-27.576-62.646-27.537-62.439L-27.537-62.349Q-27.588-62.134-27.783-62.111L-28.599-62.111Q-28.798-62.134-28.849-62.349L-28.849-62.439Q-28.798-62.646-28.599-62.670L-28.513-62.670L-28.513-64.416Q-28.513-65.041-28.759-65.041Q-29.091-65.041-29.269-64.728Q-29.447-64.416-29.447-64.056L-29.447-62.670L-29.248-62.670Q-29.041-62.646-29.002-62.439L-29.002-62.349Q-29.052-62.131-29.248-62.111L-30.177-62.111Q-30.384-62.134-30.423-62.349M-24.002-62.072Q-24.474-62.072-24.859-62.316Q-25.244-62.560-25.466-62.970Q-25.689-63.381-25.689-63.838Q-25.689-64.181-25.564-64.504Q-25.439-64.826-25.209-65.080Q-24.978-65.334-24.672-65.478Q-24.365-65.623-24.002-65.623Q-23.638-65.623-23.326-65.476Q-23.013-65.330-22.791-65.084Q-22.568-64.838-22.441-64.517Q-22.314-64.197-22.314-63.838Q-22.314-63.381-22.539-62.968Q-22.763-62.556-23.148-62.314Q-23.533-62.072-24.002-62.072M-24.002-62.631Q-23.537-62.631-23.246-63.025Q-22.955-63.420-22.955-63.904Q-22.955-64.197-23.090-64.465Q-23.224-64.732-23.465-64.898Q-23.705-65.064-24.002-65.064Q-24.306-65.064-24.545-64.898Q-24.783-64.732-24.918-64.465Q-25.052-64.197-25.052-63.904Q-25.052-63.423-24.759-63.027Q-24.466-62.631-24.002-62.631M-20.220-62.334L-21.107-64.998L-21.427-64.998Q-21.627-65.021-21.677-65.240L-21.677-65.326Q-21.627-65.537-21.427-65.560L-20.267-65.560Q-20.072-65.541-20.021-65.326L-20.021-65.240Q-20.072-65.021-20.267-64.998L-20.548-64.998L-19.756-62.623L-18.966-64.998L-19.244-64.998Q-19.443-65.021-19.494-65.240L-19.494-65.326Q-19.443-65.537-19.244-65.560L-18.084-65.560Q-17.888-65.537-17.838-65.326L-17.838-65.240Q-17.888-65.021-18.084-64.998L-18.404-64.998L-19.291-62.334Q-19.334-62.220-19.435-62.146Q-19.537-62.072-19.662-62.072L-19.853-62.072Q-19.970-62.072-20.074-62.144Q-20.177-62.216-20.220-62.334M-15.318-60.568L-15.318-60.654Q-15.267-60.873-15.072-60.896L-14.607-60.896L-14.607-62.494Q-15.060-62.072-15.670-62.072Q-16.025-62.072-16.330-62.215Q-16.634-62.357-16.867-62.607Q-17.099-62.857-17.224-63.179Q-17.349-63.502-17.349-63.838Q-17.349-64.322-17.111-64.722Q-16.873-65.123-16.466-65.361Q-16.060-65.599-15.584-65.599Q-15.021-65.599-14.607-65.209L-14.607-65.369Q-14.556-65.580-14.357-65.599L-14.216-65.599Q-14.017-65.576-13.966-65.369L-13.966-60.896L-13.502-60.896Q-13.306-60.873-13.256-60.654L-13.256-60.568Q-13.306-60.357-13.502-60.334L-15.072-60.334Q-15.267-60.357-15.318-60.568M-15.623-62.631Q-15.252-62.631-14.976-62.884Q-14.701-63.138-14.607-63.502L-14.607-64.119Q-14.650-64.357-14.773-64.570Q-14.896-64.783-15.093-64.912Q-15.291-65.041-15.533-65.041Q-15.849-65.041-16.121-64.875Q-16.392-64.709-16.550-64.427Q-16.709-64.146-16.709-63.830Q-16.709-63.365-16.394-62.998Q-16.080-62.631-15.623-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 110.01)\">\u003Cpath d=\"M-7.271-61.677L-7.271-62.088Q-7.873-62.154-8.256-62.523Q-8.638-62.892-8.638-63.486Q-8.638-63.662-8.521-63.783Q-8.404-63.904-8.232-63.904Q-8.154-63.904-8.074-63.873Q-7.994-63.841-7.943-63.791Q-7.892-63.740-7.861-63.660Q-7.830-63.580-7.830-63.502Q-7.830-63.302-7.959-63.209Q-7.892-62.982-7.709-62.843Q-7.525-62.705-7.271-62.654L-7.271-64.384Q-7.849-64.506-8.244-64.832Q-8.638-65.158-8.638-65.705Q-8.638-66.224-8.226-66.586Q-7.814-66.947-7.271-67.021L-7.271-67.431Q-7.220-67.638-7.021-67.662L-6.959-67.662Q-6.763-67.642-6.713-67.431L-6.713-67.021Q-6.334-66.986-6.023-66.828Q-5.713-66.670-5.527-66.388Q-5.341-66.107-5.341-65.720Q-5.341-65.548-5.455-65.425Q-5.568-65.302-5.744-65.302Q-5.912-65.302-6.031-65.418Q-6.150-65.533-6.150-65.705Q-6.150-65.881-6.033-65.998Q-6.107-66.197-6.291-66.310Q-6.474-66.423-6.713-66.455L-6.713-64.920Q-6.345-64.845-6.029-64.660Q-5.713-64.474-5.527-64.183Q-5.341-63.892-5.341-63.502Q-5.341-63.224-5.451-62.986Q-5.560-62.748-5.759-62.554Q-5.959-62.361-6.209-62.246Q-6.459-62.131-6.713-62.095L-6.713-61.677Q-6.763-61.470-6.959-61.447L-7.021-61.447Q-7.220-61.466-7.271-61.677M-6.713-64.271L-6.713-62.662Q-6.400-62.732-6.168-62.949Q-5.935-63.166-5.935-63.463Q-5.935-63.670-6.043-63.834Q-6.150-63.998-6.328-64.109Q-6.506-64.220-6.713-64.271M-8.049-65.744Q-8.049-65.466-7.818-65.289Q-7.588-65.111-7.271-65.041L-7.271-66.455Q-7.568-66.400-7.808-66.211Q-8.049-66.021-8.049-65.744M-4.009-62.349L-4.009-62.439Q-3.959-62.646-3.759-62.670L-2.943-62.670L-2.943-65.853Q-3.322-65.545-3.775-65.545Q-4.006-65.545-4.056-65.775L-4.056-65.865Q-4.006-66.080-3.810-66.103Q-3.482-66.103-3.228-66.341Q-2.974-66.580-2.834-66.927Q-2.763-67.056-2.607-67.080L-2.552-67.080Q-2.357-67.060-2.306-66.845L-2.306-62.670L-1.490-62.670Q-1.291-62.646-1.240-62.439L-1.240-62.349Q-1.291-62.134-1.490-62.111L-3.759-62.111Q-3.959-62.134-4.009-62.349M1.100-60.998Q0.987-60.998 0.897-61.088Q0.807-61.177 0.807-61.287Q0.807-61.463 0.998-61.537Q1.217-61.588 1.389-61.746Q1.561-61.904 1.627-62.127Q1.604-62.127 1.573-62.111L1.510-62.111Q1.280-62.111 1.114-62.273Q0.948-62.435 0.948-62.670Q0.948-62.904 1.112-63.064Q1.276-63.224 1.510-63.224Q1.721-63.224 1.885-63.103Q2.049-62.982 2.139-62.789Q2.229-62.595 2.229-62.384Q2.229-61.908 1.930-61.519Q1.631-61.131 1.166-61.006Q1.143-60.998 1.100-60.998M4.307-61.752Q4.307-61.806 4.330-61.873L6.596-67.478Q6.690-67.662 6.885-67.662Q7.010-67.662 7.098-67.574Q7.186-67.486 7.186-67.357Q7.186-67.298 7.162-67.240L4.901-61.631Q4.799-61.447 4.619-61.447Q4.494-61.447 4.401-61.537Q4.307-61.627 4.307-61.752M6.885-61.447Q6.534-61.447 6.352-61.787Q6.170-62.127 6.170-62.509Q6.170-62.896 6.350-63.236Q6.530-63.576 6.885-63.576Q7.123-63.576 7.282-63.406Q7.440-63.236 7.514-62.992Q7.588-62.748 7.588-62.509Q7.588-62.275 7.514-62.031Q7.440-61.787 7.282-61.617Q7.123-61.447 6.885-61.447M6.885-62.006Q6.967-62.037 7.014-62.205Q7.061-62.373 7.061-62.509Q7.061-62.646 7.014-62.816Q6.967-62.986 6.885-63.013Q6.799-62.986 6.748-62.818Q6.698-62.650 6.698-62.509Q6.698-62.381 6.748-62.209Q6.799-62.037 6.885-62.006M4.619-65.525Q4.377-65.525 4.217-65.695Q4.057-65.865 3.983-66.111Q3.909-66.357 3.909-66.599Q3.909-66.982 4.088-67.322Q4.268-67.662 4.619-67.662Q4.858-67.662 5.016-67.492Q5.174-67.322 5.248-67.078Q5.323-66.834 5.323-66.599Q5.323-66.357 5.248-66.111Q5.174-65.865 5.016-65.695Q4.858-65.525 4.619-65.525M4.619-66.088Q4.709-66.131 4.752-66.287Q4.795-66.443 4.795-66.599Q4.795-66.728 4.748-66.904Q4.701-67.080 4.612-67.103Q4.596-67.103 4.567-67.068Q4.537-67.033 4.530-67.013Q4.436-66.826 4.436-66.599Q4.436-66.463 4.485-66.291Q4.534-66.119 4.619-66.088M8.096-62.349L8.096-62.439Q8.155-62.646 8.346-62.670L9.057-62.670L9.057-64.998L8.346-64.998Q8.151-65.021 8.096-65.240L8.096-65.326Q8.155-65.537 8.346-65.560L9.448-65.560Q9.647-65.541 9.698-65.326L9.698-64.998Q9.959-65.283 10.315-65.441Q10.670-65.599 11.057-65.599Q11.350-65.599 11.584-65.465Q11.819-65.330 11.819-65.064Q11.819-64.896 11.709-64.779Q11.600-64.662 11.432-64.662Q11.280-64.662 11.164-64.773Q11.049-64.884 11.049-65.041Q10.674-65.041 10.360-64.840Q10.045-64.638 9.871-64.304Q9.698-63.970 9.698-63.591L9.698-62.670L10.643-62.670Q10.850-62.646 10.889-62.439L10.889-62.349Q10.850-62.134 10.643-62.111L8.346-62.111Q8.155-62.134 8.096-62.349M12.686-62.912Q12.686-63.088 12.801-63.211Q12.916-63.334 13.096-63.334Q13.264-63.334 13.379-63.218Q13.494-63.103 13.494-62.927Q13.494-62.806 13.432-62.705Q13.580-62.591 13.889-62.591Q14.194-62.591 14.448-62.742Q14.701-62.892 14.883-63.138Q15.065-63.384 15.172-63.677Q15.280-63.970 15.311-64.248Q15.073-64.048 14.764-63.943Q14.455-63.838 14.135-63.838Q13.690-63.838 13.317-64.054Q12.944-64.271 12.727-64.640Q12.510-65.009 12.510-65.455Q12.510-65.927 12.756-66.298Q13.002-66.670 13.409-66.875Q13.815-67.080 14.287-67.080Q14.772-67.080 15.104-66.851Q15.436-66.623 15.623-66.250Q15.811-65.877 15.889-65.447Q15.967-65.017 15.967-64.560Q15.967-63.951 15.713-63.363Q15.459-62.775 14.983-62.404Q14.506-62.033 13.889-62.033Q13.393-62.033 13.039-62.242Q12.686-62.451 12.686-62.912M14.190-64.400Q14.576-64.400 14.912-64.629Q15.248-64.857 15.248-65.224Q15.248-65.263 15.233-65.341Q15.217-65.420 15.217-65.455Q15.217-65.466 15.225-65.498Q15.233-65.529 15.233-65.537Q15.170-65.787 15.051-66.007Q14.932-66.228 14.739-66.373Q14.545-66.517 14.287-66.517Q13.815-66.517 13.483-66.216Q13.151-65.916 13.151-65.455Q13.151-65.173 13.287-64.927Q13.424-64.681 13.662-64.541Q13.901-64.400 14.190-64.400\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 127.636)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.771-63.158Q-25.771-63.334-25.654-63.455Q-25.537-63.576-25.361-63.576Q-25.279-63.576-25.203-63.545Q-25.127-63.513-25.076-63.463Q-25.025-63.412-24.994-63.332Q-24.963-63.252-24.963-63.173Q-24.963-63.041-25.045-62.927Q-24.775-62.591-23.986-62.591Q-23.560-62.591-23.218-62.857Q-22.877-63.123-22.877-63.537Q-22.877-63.810-23.043-64.029Q-23.209-64.248-23.468-64.359Q-23.728-64.470-24.002-64.470L-24.466-64.470Q-24.677-64.494-24.709-64.713L-24.709-64.798Q-24.677-65.002-24.466-65.033L-23.939-65.072Q-23.724-65.072-23.533-65.195Q-23.341-65.318-23.228-65.521Q-23.115-65.724-23.115-65.935Q-23.115-66.209-23.398-66.363Q-23.681-66.517-23.986-66.517Q-24.548-66.517-24.787-66.326Q-24.724-66.213-24.724-66.103Q-24.724-65.931-24.838-65.818Q-24.951-65.705-25.123-65.705Q-25.298-65.705-25.414-65.828Q-25.529-65.951-25.529-66.119Q-25.529-66.646-25.056-66.863Q-24.584-67.080-23.986-67.080Q-23.646-67.080-23.291-66.949Q-22.935-66.818-22.705-66.560Q-22.474-66.302-22.474-65.935Q-22.474-65.591-22.642-65.287Q-22.810-64.982-23.107-64.783Q-22.736-64.603-22.486-64.267Q-22.236-63.931-22.236-63.537Q-22.236-63.091-22.490-62.750Q-22.744-62.408-23.146-62.220Q-23.548-62.033-23.986-62.033Q-24.271-62.033-24.576-62.088Q-24.881-62.142-25.156-62.269Q-25.431-62.396-25.601-62.619Q-25.771-62.841-25.771-63.158M-21.318-63.838Q-21.318-64.318-21.074-64.732Q-20.830-65.146-20.414-65.384Q-19.998-65.623-19.517-65.623Q-18.963-65.623-18.584-65.513Q-18.205-65.404-18.205-64.998Q-18.205-64.830-18.318-64.707Q-18.431-64.584-18.603-64.584Q-18.775-64.584-18.894-64.699Q-19.013-64.814-19.013-64.982L-19.013-65.041Q-19.173-65.064-19.509-65.064Q-19.838-65.064-20.105-64.894Q-20.373-64.724-20.525-64.441Q-20.677-64.158-20.677-63.838Q-20.677-63.517-20.506-63.236Q-20.334-62.955-20.048-62.793Q-19.763-62.631-19.435-62.631Q-19.123-62.631-18.996-62.734Q-18.869-62.838-18.752-63.027Q-18.634-63.216-18.517-63.232L-18.349-63.232Q-18.244-63.220-18.179-63.152Q-18.115-63.084-18.115-62.982Q-18.115-62.935-18.134-62.896Q-18.244-62.603-18.447-62.423Q-18.650-62.244-18.925-62.158Q-19.201-62.072-19.517-62.072Q-20.002-62.072-20.418-62.310Q-20.834-62.548-21.076-62.951Q-21.318-63.353-21.318-63.838\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 127.636)\">\u003Cpath d=\"M-36.740-62.033Q-37.381-62.033-37.767-62.410Q-38.154-62.787-38.312-63.359Q-38.470-63.931-38.470-64.560Q-38.470-65.025-38.310-65.480Q-38.150-65.935-37.861-66.295Q-37.572-66.654-37.164-66.867Q-36.756-67.080-36.267-67.080Q-35.994-67.080-35.744-66.982Q-35.494-66.884-35.341-66.689Q-35.189-66.494-35.189-66.201Q-35.189-66.025-35.302-65.904Q-35.416-65.783-35.588-65.783Q-35.763-65.783-35.881-65.896Q-35.998-66.009-35.998-66.181Q-35.998-66.302-35.923-66.423Q-36.033-66.517-36.267-66.517Q-36.685-66.517-37.021-66.277Q-37.357-66.037-37.562-65.650Q-37.767-65.263-37.814-64.865Q-37.576-65.064-37.267-65.172Q-36.959-65.279-36.638-65.279Q-36.298-65.279-36-65.154Q-35.701-65.029-35.482-64.810Q-35.263-64.591-35.138-64.293Q-35.013-63.994-35.013-63.654Q-35.013-63.306-35.152-63.006Q-35.291-62.705-35.531-62.488Q-35.771-62.271-36.086-62.152Q-36.400-62.033-36.740-62.033M-37.724-63.576Q-37.662-63.314-37.533-63.090Q-37.404-62.865-37.205-62.728Q-37.006-62.591-36.740-62.591Q-36.287-62.591-35.970-62.898Q-35.654-63.205-35.654-63.654Q-35.654-63.935-35.789-64.181Q-35.923-64.427-36.160-64.570Q-36.396-64.713-36.693-64.713Q-37.084-64.713-37.416-64.486Q-37.748-64.259-37.748-63.888Q-37.748-63.849-37.732-63.771Q-37.716-63.693-37.716-63.654Q-37.716-63.627-37.718-63.611Q-37.720-63.595-37.724-63.576M-34.263-63.158Q-34.263-63.334-34.146-63.455Q-34.029-63.576-33.853-63.576Q-33.771-63.576-33.695-63.545Q-33.619-63.513-33.568-63.463Q-33.517-63.412-33.486-63.332Q-33.455-63.252-33.455-63.173Q-33.455-63.041-33.537-62.927Q-33.267-62.591-32.478-62.591Q-32.052-62.591-31.711-62.857Q-31.369-63.123-31.369-63.537Q-31.369-63.810-31.535-64.029Q-31.701-64.248-31.961-64.359Q-32.220-64.470-32.494-64.470L-32.959-64.470Q-33.170-64.494-33.201-64.713L-33.201-64.798Q-33.170-65.002-32.959-65.033L-32.431-65.072Q-32.216-65.072-32.025-65.195Q-31.834-65.318-31.720-65.521Q-31.607-65.724-31.607-65.935Q-31.607-66.209-31.890-66.363Q-32.173-66.517-32.478-66.517Q-33.041-66.517-33.279-66.326Q-33.216-66.213-33.216-66.103Q-33.216-65.931-33.330-65.818Q-33.443-65.705-33.615-65.705Q-33.791-65.705-33.906-65.828Q-34.021-65.951-34.021-66.119Q-34.021-66.646-33.548-66.863Q-33.076-67.080-32.478-67.080Q-32.138-67.080-31.783-66.949Q-31.427-66.818-31.197-66.560Q-30.966-66.302-30.966-65.935Q-30.966-65.591-31.134-65.287Q-31.302-64.982-31.599-64.783Q-31.228-64.603-30.978-64.267Q-30.728-63.931-30.728-63.537Q-30.728-63.091-30.982-62.750Q-31.236-62.408-31.638-62.220Q-32.041-62.033-32.478-62.033Q-32.763-62.033-33.068-62.088Q-33.373-62.142-33.648-62.269Q-33.923-62.396-34.093-62.619Q-34.263-62.841-34.263-63.158\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 127.636)\">\u003Cpath d=\"M-23.990-62.033Q-24.424-62.033-24.756-62.271Q-25.088-62.509-25.308-62.898Q-25.529-63.287-25.636-63.724Q-25.744-64.162-25.744-64.560Q-25.744-64.951-25.634-65.394Q-25.525-65.838-25.308-66.218Q-25.091-66.599-24.757-66.840Q-24.424-67.080-23.990-67.080Q-23.435-67.080-23.035-66.681Q-22.634-66.283-22.437-65.697Q-22.240-65.111-22.240-64.560Q-22.240-64.006-22.437-63.418Q-22.634-62.830-23.035-62.431Q-23.435-62.033-23.990-62.033M-23.990-62.591Q-23.689-62.591-23.472-62.808Q-23.256-63.025-23.129-63.353Q-23.002-63.681-22.941-64.027Q-22.881-64.373-22.881-64.654Q-22.881-64.904-22.943-65.230Q-23.006-65.556-23.136-65.847Q-23.267-66.138-23.480-66.328Q-23.693-66.517-23.990-66.517Q-24.365-66.517-24.617-66.205Q-24.869-65.892-24.986-65.459Q-25.103-65.025-25.103-64.654Q-25.103-64.256-24.990-63.775Q-24.877-63.295-24.629-62.943Q-24.381-62.591-23.990-62.591M-19.744-62.033Q-20.177-62.033-20.509-62.271Q-20.841-62.509-21.062-62.898Q-21.283-63.287-21.390-63.724Q-21.498-64.162-21.498-64.560Q-21.498-64.951-21.388-65.394Q-21.279-65.838-21.062-66.218Q-20.845-66.599-20.511-66.840Q-20.177-67.080-19.744-67.080Q-19.189-67.080-18.789-66.681Q-18.388-66.283-18.191-65.697Q-17.994-65.111-17.994-64.560Q-17.994-64.006-18.191-63.418Q-18.388-62.830-18.789-62.431Q-19.189-62.033-19.744-62.033M-19.744-62.591Q-19.443-62.591-19.226-62.808Q-19.009-63.025-18.882-63.353Q-18.756-63.681-18.695-64.027Q-18.634-64.373-18.634-64.654Q-18.634-64.904-18.697-65.230Q-18.759-65.556-18.890-65.847Q-19.021-66.138-19.234-66.328Q-19.447-66.517-19.744-66.517Q-20.119-66.517-20.371-66.205Q-20.623-65.892-20.740-65.459Q-20.857-65.025-20.857-64.654Q-20.857-64.256-20.744-63.775Q-20.631-63.295-20.382-62.943Q-20.134-62.591-19.744-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 127.08)\">\u003Cpath d=\"M-38.603-62.349L-38.603-62.439Q-38.564-62.646-38.357-62.670L-37.951-62.670L-37.021-63.888L-37.892-64.998L-38.310-64.998Q-38.506-65.017-38.556-65.240L-38.556-65.326Q-38.506-65.537-38.310-65.560L-37.150-65.560Q-36.951-65.537-36.900-65.326L-36.900-65.240Q-36.951-65.021-37.150-64.998L-37.259-64.998L-36.763-64.341L-36.287-64.998L-36.404-64.998Q-36.603-65.021-36.654-65.240L-36.654-65.326Q-36.603-65.537-36.404-65.560L-35.244-65.560Q-35.048-65.541-34.998-65.326L-34.998-65.240Q-35.048-65.021-35.244-64.998L-35.654-64.998L-36.502-63.888L-35.541-62.670L-35.134-62.670Q-34.935-62.646-34.884-62.439L-34.884-62.349Q-34.923-62.134-35.134-62.111L-36.287-62.111Q-36.494-62.134-36.533-62.349L-36.533-62.439Q-36.494-62.646-36.287-62.670L-36.158-62.670L-36.763-63.525L-37.349-62.670L-37.205-62.670Q-36.998-62.646-36.959-62.439L-36.959-62.349Q-36.998-62.134-37.205-62.111L-38.357-62.111Q-38.552-62.131-38.603-62.349M-32.494-62.072Q-32.966-62.072-33.351-62.316Q-33.736-62.560-33.959-62.970Q-34.181-63.381-34.181-63.838Q-34.181-64.181-34.056-64.504Q-33.931-64.826-33.701-65.080Q-33.470-65.334-33.164-65.478Q-32.857-65.623-32.494-65.623Q-32.131-65.623-31.818-65.476Q-31.506-65.330-31.283-65.084Q-31.060-64.838-30.933-64.517Q-30.806-64.197-30.806-63.838Q-30.806-63.381-31.031-62.968Q-31.256-62.556-31.640-62.314Q-32.025-62.072-32.494-62.072M-32.494-62.631Q-32.029-62.631-31.738-63.025Q-31.447-63.420-31.447-63.904Q-31.447-64.197-31.582-64.465Q-31.716-64.732-31.957-64.898Q-32.197-65.064-32.494-65.064Q-32.798-65.064-33.037-64.898Q-33.275-64.732-33.410-64.465Q-33.545-64.197-33.545-63.904Q-33.545-63.423-33.252-63.027Q-32.959-62.631-32.494-62.631M-30.146-62.349L-30.146-62.439Q-30.088-62.646-29.896-62.670L-29.185-62.670L-29.185-64.998L-29.896-64.998Q-30.091-65.021-30.146-65.240L-30.146-65.326Q-30.088-65.537-29.896-65.560L-28.795-65.560Q-28.595-65.541-28.545-65.326L-28.545-64.998Q-28.283-65.283-27.927-65.441Q-27.572-65.599-27.185-65.599Q-26.892-65.599-26.658-65.465Q-26.423-65.330-26.423-65.064Q-26.423-64.896-26.533-64.779Q-26.642-64.662-26.810-64.662Q-26.963-64.662-27.078-64.773Q-27.193-64.884-27.193-65.041Q-27.568-65.041-27.882-64.840Q-28.197-64.638-28.371-64.304Q-28.545-63.970-28.545-63.591L-28.545-62.670L-27.599-62.670Q-27.392-62.646-27.353-62.439L-27.353-62.349Q-27.392-62.134-27.599-62.111L-29.896-62.111Q-30.088-62.134-30.146-62.349M-23.810-60.568L-23.810-60.654Q-23.759-60.873-23.564-60.896L-23.099-60.896L-23.099-62.494Q-23.552-62.072-24.162-62.072Q-24.517-62.072-24.822-62.215Q-25.127-62.357-25.359-62.607Q-25.591-62.857-25.716-63.179Q-25.841-63.502-25.841-63.838Q-25.841-64.322-25.603-64.722Q-25.365-65.123-24.959-65.361Q-24.552-65.599-24.076-65.599Q-23.513-65.599-23.099-65.209L-23.099-65.369Q-23.048-65.580-22.849-65.599L-22.709-65.599Q-22.509-65.576-22.459-65.369L-22.459-60.896L-21.994-60.896Q-21.798-60.873-21.748-60.654L-21.748-60.568Q-21.798-60.357-21.994-60.334L-23.564-60.334Q-23.759-60.357-23.810-60.568M-24.115-62.631Q-23.744-62.631-23.468-62.884Q-23.193-63.138-23.099-63.502L-23.099-64.119Q-23.142-64.357-23.265-64.570Q-23.388-64.783-23.586-64.912Q-23.783-65.041-24.025-65.041Q-24.341-65.041-24.613-64.875Q-24.884-64.709-25.043-64.427Q-25.201-64.146-25.201-63.830Q-25.201-63.365-24.886-62.998Q-24.572-62.631-24.115-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 127.08)\">\u003Cpath d=\"M-16.931-61.752Q-16.931-61.806-16.908-61.873L-14.642-67.478Q-14.549-67.662-14.353-67.662Q-14.228-67.662-14.140-67.574Q-14.052-67.486-14.052-67.357Q-14.052-67.298-14.076-67.240L-16.338-61.631Q-16.439-61.447-16.619-61.447Q-16.744-61.447-16.838-61.537Q-16.931-61.627-16.931-61.752M-14.353-61.447Q-14.705-61.447-14.886-61.787Q-15.068-62.127-15.068-62.509Q-15.068-62.896-14.888-63.236Q-14.709-63.576-14.353-63.576Q-14.115-63.576-13.957-63.406Q-13.799-63.236-13.724-62.992Q-13.650-62.748-13.650-62.509Q-13.650-62.275-13.724-62.031Q-13.799-61.787-13.957-61.617Q-14.115-61.447-14.353-61.447M-14.353-62.006Q-14.271-62.037-14.224-62.205Q-14.177-62.373-14.177-62.509Q-14.177-62.646-14.224-62.816Q-14.271-62.986-14.353-63.013Q-14.439-62.986-14.490-62.818Q-14.541-62.650-14.541-62.509Q-14.541-62.381-14.490-62.209Q-14.439-62.037-14.353-62.006M-16.619-65.525Q-16.861-65.525-17.021-65.695Q-17.181-65.865-17.256-66.111Q-17.330-66.357-17.330-66.599Q-17.330-66.982-17.150-67.322Q-16.970-67.662-16.619-67.662Q-16.381-67.662-16.222-67.492Q-16.064-67.322-15.990-67.078Q-15.916-66.834-15.916-66.599Q-15.916-66.357-15.990-66.111Q-16.064-65.865-16.222-65.695Q-16.381-65.525-16.619-65.525M-16.619-66.088Q-16.529-66.131-16.486-66.287Q-16.443-66.443-16.443-66.599Q-16.443-66.728-16.490-66.904Q-16.537-67.080-16.627-67.103Q-16.642-67.103-16.672-67.068Q-16.701-67.033-16.709-67.013Q-16.802-66.826-16.802-66.599Q-16.802-66.463-16.754-66.291Q-16.705-66.119-16.619-66.088M-13.142-62.349L-13.142-62.439Q-13.084-62.646-12.892-62.670L-12.181-62.670L-12.181-64.998L-12.892-64.998Q-13.088-65.021-13.142-65.240L-13.142-65.326Q-13.084-65.537-12.892-65.560L-11.791-65.560Q-11.591-65.541-11.541-65.326L-11.541-64.998Q-11.279-65.283-10.924-65.441Q-10.568-65.599-10.181-65.599Q-9.888-65.599-9.654-65.465Q-9.420-65.330-9.420-65.064Q-9.420-64.896-9.529-64.779Q-9.638-64.662-9.806-64.662Q-9.959-64.662-10.074-64.773Q-10.189-64.884-10.189-65.041Q-10.564-65.041-10.879-64.840Q-11.193-64.638-11.367-64.304Q-11.541-63.970-11.541-63.591L-11.541-62.670L-10.595-62.670Q-10.388-62.646-10.349-62.439L-10.349-62.349Q-10.388-62.134-10.595-62.111L-12.892-62.111Q-13.084-62.134-13.142-62.349M-8.713-63.224Q-8.713-63.670-8.299-63.927Q-7.884-64.185-7.343-64.285Q-6.802-64.384-6.295-64.392Q-6.295-64.607-6.429-64.759Q-6.564-64.912-6.771-64.988Q-6.978-65.064-7.189-65.064Q-7.533-65.064-7.693-65.041L-7.693-64.982Q-7.693-64.814-7.812-64.699Q-7.931-64.584-8.095-64.584Q-8.271-64.584-8.386-64.707Q-8.502-64.830-8.502-64.998Q-8.502-65.404-8.121-65.513Q-7.740-65.623-7.181-65.623Q-6.912-65.623-6.644-65.545Q-6.377-65.466-6.152-65.316Q-5.927-65.166-5.791-64.945Q-5.654-64.724-5.654-64.447L-5.654-62.728Q-5.654-62.670-5.127-62.670Q-4.931-62.650-4.881-62.439L-4.881-62.349Q-4.931-62.134-5.127-62.111L-5.271-62.111Q-5.615-62.111-5.843-62.158Q-6.072-62.205-6.216-62.392Q-6.677-62.072-7.384-62.072Q-7.720-62.072-8.025-62.213Q-8.330-62.353-8.521-62.615Q-8.713-62.877-8.713-63.224M-8.072-63.216Q-8.072-62.943-7.830-62.787Q-7.588-62.631-7.302-62.631Q-7.084-62.631-6.851-62.689Q-6.619-62.748-6.457-62.886Q-6.295-63.025-6.295-63.248L-6.295-63.838Q-6.576-63.838-6.992-63.781Q-7.408-63.724-7.740-63.586Q-8.072-63.447-8.072-63.216M-4.615-62.349L-4.615-62.439Q-4.576-62.646-4.369-62.670L-3.963-62.670L-3.033-63.888L-3.904-64.998L-4.322-64.998Q-4.517-65.017-4.568-65.240L-4.568-65.326Q-4.517-65.537-4.322-65.560L-3.162-65.560Q-2.963-65.537-2.912-65.326L-2.912-65.240Q-2.963-65.021-3.162-64.998L-3.271-64.998L-2.775-64.341L-2.299-64.998L-2.416-64.998Q-2.615-65.021-2.666-65.240L-2.666-65.326Q-2.615-65.537-2.416-65.560L-1.256-65.560Q-1.060-65.541-1.009-65.326L-1.009-65.240Q-1.060-65.021-1.256-64.998L-1.666-64.998L-2.513-63.888L-1.552-62.670L-1.146-62.670Q-0.947-62.646-0.896-62.439L-0.896-62.349Q-0.935-62.134-1.146-62.111L-2.299-62.111Q-2.506-62.134-2.545-62.349L-2.545-62.439Q-2.506-62.646-2.299-62.670L-2.170-62.670L-2.775-63.525L-3.361-62.670L-3.216-62.670Q-3.009-62.646-2.970-62.439L-2.970-62.349Q-3.009-62.134-3.216-62.111L-4.369-62.111Q-4.564-62.131-4.615-62.349M1.092-60.998Q0.979-60.998 0.889-61.088Q0.799-61.177 0.799-61.287Q0.799-61.463 0.991-61.537Q1.209-61.588 1.381-61.746Q1.553-61.904 1.619-62.127Q1.596-62.127 1.565-62.111L1.502-62.111Q1.272-62.111 1.106-62.273Q0.940-62.435 0.940-62.670Q0.940-62.904 1.104-63.064Q1.268-63.224 1.502-63.224Q1.713-63.224 1.877-63.103Q2.041-62.982 2.131-62.789Q2.221-62.595 2.221-62.384Q2.221-61.908 1.922-61.519Q1.623-61.131 1.159-61.006Q1.135-60.998 1.092-60.998M4.299-61.752Q4.299-61.806 4.323-61.873L6.588-67.478Q6.682-67.662 6.877-67.662Q7.002-67.662 7.090-67.574Q7.178-67.486 7.178-67.357Q7.178-67.298 7.155-67.240L4.893-61.631Q4.791-61.447 4.612-61.447Q4.487-61.447 4.393-61.537Q4.299-61.627 4.299-61.752M6.877-61.447Q6.526-61.447 6.344-61.787Q6.162-62.127 6.162-62.509Q6.162-62.896 6.342-63.236Q6.522-63.576 6.877-63.576Q7.116-63.576 7.274-63.406Q7.432-63.236 7.506-62.992Q7.580-62.748 7.580-62.509Q7.580-62.275 7.506-62.031Q7.432-61.787 7.274-61.617Q7.116-61.447 6.877-61.447M6.877-62.006Q6.959-62.037 7.006-62.205Q7.053-62.373 7.053-62.509Q7.053-62.646 7.006-62.816Q6.959-62.986 6.877-63.013Q6.791-62.986 6.741-62.818Q6.690-62.650 6.690-62.509Q6.690-62.381 6.741-62.209Q6.791-62.037 6.877-62.006M4.612-65.525Q4.369-65.525 4.209-65.695Q4.049-65.865 3.975-66.111Q3.901-66.357 3.901-66.599Q3.901-66.982 4.080-67.322Q4.260-67.662 4.612-67.662Q4.850-67.662 5.008-67.492Q5.166-67.322 5.241-67.078Q5.315-66.834 5.315-66.599Q5.315-66.357 5.241-66.111Q5.166-65.865 5.008-65.695Q4.850-65.525 4.612-65.525M4.612-66.088Q4.701-66.131 4.744-66.287Q4.787-66.443 4.787-66.599Q4.787-66.728 4.741-66.904Q4.694-67.080 4.604-67.103Q4.588-67.103 4.559-67.068Q4.530-67.033 4.522-67.013Q4.428-66.826 4.428-66.599Q4.428-66.463 4.477-66.291Q4.526-66.119 4.612-66.088M8.088-62.349L8.088-62.439Q8.147-62.646 8.338-62.670L9.049-62.670L9.049-64.998L8.338-64.998Q8.143-65.021 8.088-65.240L8.088-65.326Q8.147-65.537 8.338-65.560L9.440-65.560Q9.639-65.541 9.690-65.326L9.690-64.998Q9.951-65.283 10.307-65.441Q10.662-65.599 11.049-65.599Q11.342-65.599 11.576-65.465Q11.811-65.330 11.811-65.064Q11.811-64.896 11.701-64.779Q11.592-64.662 11.424-64.662Q11.272-64.662 11.157-64.773Q11.041-64.884 11.041-65.041Q10.666-65.041 10.352-64.840Q10.037-64.638 9.864-64.304Q9.690-63.970 9.690-63.591L9.690-62.670L10.635-62.670Q10.842-62.646 10.881-62.439L10.881-62.349Q10.842-62.134 10.635-62.111L8.338-62.111Q8.147-62.134 8.088-62.349M12.518-63.224Q12.518-63.670 12.932-63.927Q13.346-64.185 13.887-64.285Q14.428-64.384 14.936-64.392Q14.936-64.607 14.801-64.759Q14.666-64.912 14.459-64.988Q14.252-65.064 14.041-65.064Q13.698-65.064 13.537-65.041L13.537-64.982Q13.537-64.814 13.418-64.699Q13.299-64.584 13.135-64.584Q12.959-64.584 12.844-64.707Q12.729-64.830 12.729-64.998Q12.729-65.404 13.110-65.513Q13.491-65.623 14.049-65.623Q14.319-65.623 14.586-65.545Q14.854-65.466 15.078-65.316Q15.303-65.166 15.440-64.945Q15.576-64.724 15.576-64.447L15.576-62.728Q15.576-62.670 16.104-62.670Q16.299-62.650 16.350-62.439L16.350-62.349Q16.299-62.134 16.104-62.111L15.959-62.111Q15.616-62.111 15.387-62.158Q15.159-62.205 15.014-62.392Q14.553-62.072 13.846-62.072Q13.510-62.072 13.205-62.213Q12.901-62.353 12.709-62.615Q12.518-62.877 12.518-63.224M13.159-63.216Q13.159-62.943 13.401-62.787Q13.643-62.631 13.928-62.631Q14.147-62.631 14.379-62.689Q14.612-62.748 14.774-62.886Q14.936-63.025 14.936-63.248L14.936-63.838Q14.655-63.838 14.239-63.781Q13.823-63.724 13.491-63.586Q13.159-63.447 13.159-63.216M16.616-62.349L16.616-62.439Q16.655-62.646 16.862-62.670L17.268-62.670L18.198-63.888L17.326-64.998L16.909-64.998Q16.713-65.017 16.662-65.240L16.662-65.326Q16.713-65.537 16.909-65.560L18.069-65.560Q18.268-65.537 18.319-65.326L18.319-65.240Q18.268-65.021 18.069-64.998L17.959-64.998L18.455-64.341L18.932-64.998L18.815-64.998Q18.616-65.021 18.565-65.240L18.565-65.326Q18.616-65.537 18.815-65.560L19.975-65.560Q20.170-65.541 20.221-65.326L20.221-65.240Q20.170-65.021 19.975-64.998L19.565-64.998L18.717-63.888L19.678-62.670L20.084-62.670Q20.284-62.646 20.334-62.439L20.334-62.349Q20.295-62.134 20.084-62.111L18.932-62.111Q18.725-62.134 18.686-62.349L18.686-62.439Q18.725-62.646 18.932-62.670L19.061-62.670L18.455-63.525L17.869-62.670L18.014-62.670Q18.221-62.646 18.260-62.439L18.260-62.349Q18.221-62.134 18.014-62.111L16.862-62.111Q16.666-62.131 16.616-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 150.399)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-25.771-63.158Q-25.771-63.334-25.654-63.455Q-25.537-63.576-25.361-63.576Q-25.279-63.576-25.203-63.545Q-25.127-63.513-25.076-63.463Q-25.025-63.412-24.994-63.332Q-24.963-63.252-24.963-63.173Q-24.963-63.041-25.045-62.927Q-24.775-62.591-23.986-62.591Q-23.560-62.591-23.218-62.857Q-22.877-63.123-22.877-63.537Q-22.877-63.810-23.043-64.029Q-23.209-64.248-23.468-64.359Q-23.728-64.470-24.002-64.470L-24.466-64.470Q-24.677-64.494-24.709-64.713L-24.709-64.798Q-24.677-65.002-24.466-65.033L-23.939-65.072Q-23.724-65.072-23.533-65.195Q-23.341-65.318-23.228-65.521Q-23.115-65.724-23.115-65.935Q-23.115-66.209-23.398-66.363Q-23.681-66.517-23.986-66.517Q-24.548-66.517-24.787-66.326Q-24.724-66.213-24.724-66.103Q-24.724-65.931-24.838-65.818Q-24.951-65.705-25.123-65.705Q-25.298-65.705-25.414-65.828Q-25.529-65.951-25.529-66.119Q-25.529-66.646-25.056-66.863Q-24.584-67.080-23.986-67.080Q-23.646-67.080-23.291-66.949Q-22.935-66.818-22.705-66.560Q-22.474-66.302-22.474-65.935Q-22.474-65.591-22.642-65.287Q-22.810-64.982-23.107-64.783Q-22.736-64.603-22.486-64.267Q-22.236-63.931-22.236-63.537Q-22.236-63.091-22.490-62.750Q-22.744-62.408-23.146-62.220Q-23.548-62.033-23.986-62.033Q-24.271-62.033-24.576-62.088Q-24.881-62.142-25.156-62.269Q-25.431-62.396-25.601-62.619Q-25.771-62.841-25.771-63.158M-18.365-63.599L-20.806-63.599Q-20.752-63.322-20.554-63.099Q-20.357-62.877-20.080-62.754Q-19.802-62.631-19.517-62.631Q-19.045-62.631-18.822-62.920Q-18.814-62.931-18.757-63.037Q-18.701-63.142-18.652-63.185Q-18.603-63.228-18.509-63.240L-18.365-63.240Q-18.173-63.220-18.115-63.006L-18.115-62.951Q-18.181-62.650-18.412-62.453Q-18.642-62.256-18.955-62.164Q-19.267-62.072-19.572-62.072Q-20.056-62.072-20.496-62.300Q-20.935-62.529-21.203-62.929Q-21.470-63.330-21.470-63.822L-21.470-63.881Q-21.470-64.349-21.224-64.752Q-20.978-65.154-20.570-65.388Q-20.162-65.623-19.693-65.623Q-19.189-65.623-18.836-65.400Q-18.482-65.177-18.298-64.789Q-18.115-64.400-18.115-63.896L-18.115-63.838Q-18.173-63.623-18.365-63.599M-20.798-64.150L-18.771-64.150Q-18.818-64.560-19.056-64.812Q-19.295-65.064-19.693-65.064Q-20.088-65.064-20.394-64.802Q-20.701-64.541-20.798-64.150\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M-37.724-62.990Q-37.607-62.787-37.373-62.689Q-37.138-62.591-36.877-62.591Q-36.580-62.591-36.306-62.720Q-36.033-62.849-35.859-63.086Q-35.685-63.322-35.685-63.623Q-35.685-63.877-35.804-64.119Q-35.923-64.361-36.138-64.507Q-36.353-64.654-36.623-64.654Q-37.228-64.654-37.564-64.334Q-37.642-64.248-37.697-64.201Q-37.752-64.154-37.838-64.142L-37.939-64.142Q-38.138-64.166-38.189-64.384L-38.189-66.767Q-38.138-66.974-37.939-66.998L-35.580-66.998Q-35.384-66.978-35.334-66.767L-35.334-66.677Q-35.384-66.463-35.580-66.439L-37.548-66.439L-37.548-65.013Q-37.142-65.216-36.623-65.216Q-36.193-65.216-35.828-65Q-35.463-64.783-35.254-64.414Q-35.045-64.045-35.045-63.623Q-35.045-63.150-35.308-62.791Q-35.572-62.431-35.996-62.232Q-36.420-62.033-36.877-62.033Q-37.131-62.033-37.408-62.107Q-37.685-62.181-37.920-62.338Q-38.154-62.494-38.295-62.728Q-38.435-62.963-38.435-63.248Q-38.435-63.416-38.320-63.539Q-38.205-63.662-38.029-63.662Q-37.947-63.662-37.877-63.632Q-37.806-63.603-37.750-63.548Q-37.693-63.494-37.662-63.418Q-37.631-63.341-37.631-63.263Q-37.631-63.103-37.724-62.990M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M-25.705-63.224Q-25.705-63.670-25.291-63.927Q-24.877-64.185-24.336-64.285Q-23.795-64.384-23.287-64.392Q-23.287-64.607-23.422-64.759Q-23.556-64.912-23.763-64.988Q-23.970-65.064-24.181-65.064Q-24.525-65.064-24.685-65.041L-24.685-64.982Q-24.685-64.814-24.804-64.699Q-24.924-64.584-25.088-64.584Q-25.263-64.584-25.379-64.707Q-25.494-64.830-25.494-64.998Q-25.494-65.404-25.113-65.513Q-24.732-65.623-24.174-65.623Q-23.904-65.623-23.636-65.545Q-23.369-65.466-23.144-65.316Q-22.920-65.166-22.783-64.945Q-22.646-64.724-22.646-64.447L-22.646-62.728Q-22.646-62.670-22.119-62.670Q-21.924-62.650-21.873-62.439L-21.873-62.349Q-21.924-62.134-22.119-62.111L-22.263-62.111Q-22.607-62.111-22.836-62.158Q-23.064-62.205-23.209-62.392Q-23.670-62.072-24.377-62.072Q-24.713-62.072-25.017-62.213Q-25.322-62.353-25.513-62.615Q-25.705-62.877-25.705-63.224M-25.064-63.216Q-25.064-62.943-24.822-62.787Q-24.580-62.631-24.295-62.631Q-24.076-62.631-23.843-62.689Q-23.611-62.748-23.449-62.886Q-23.287-63.025-23.287-63.248L-23.287-63.838Q-23.568-63.838-23.984-63.781Q-24.400-63.724-24.732-63.586Q-25.064-63.447-25.064-63.216M-20.529-62.326L-20.529-62.384Q-20.529-62.927-20.424-63.474Q-20.318-64.021-20.113-64.545Q-19.908-65.068-19.611-65.547Q-19.314-66.025-18.935-66.439L-20.873-66.439L-20.873-66.302Q-20.924-66.088-21.123-66.064L-21.263-66.064Q-21.463-66.088-21.513-66.302L-21.513-66.896Q-21.463-67.107-21.263-67.127L-21.123-67.127Q-20.986-67.115-20.912-66.998L-18.224-66.998Q-18.029-66.974-17.978-66.767L-17.978-66.677Q-17.990-66.588-18.033-66.537Q-18.295-66.279-18.525-66.013Q-18.756-65.748-18.918-65.515Q-19.080-65.283-19.238-64.984Q-19.396-64.685-19.529-64.334Q-19.705-63.861-19.797-63.345Q-19.888-62.830-19.888-62.326Q-19.900-62.201-19.986-62.123Q-20.072-62.045-20.193-62.033Q-20.330-62.033-20.424-62.111Q-20.517-62.189-20.529-62.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-6.994-62.033Q-7.427-62.033-7.759-62.271Q-8.091-62.509-8.312-62.898Q-8.533-63.287-8.640-63.724Q-8.748-64.162-8.748-64.560Q-8.748-64.951-8.638-65.394Q-8.529-65.838-8.312-66.218Q-8.095-66.599-7.761-66.840Q-7.427-67.080-6.994-67.080Q-6.439-67.080-6.039-66.681Q-5.638-66.283-5.441-65.697Q-5.244-65.111-5.244-64.560Q-5.244-64.006-5.441-63.418Q-5.638-62.830-6.039-62.431Q-6.439-62.033-6.994-62.033M-6.994-62.591Q-6.693-62.591-6.476-62.808Q-6.259-63.025-6.132-63.353Q-6.006-63.681-5.945-64.027Q-5.884-64.373-5.884-64.654Q-5.884-64.904-5.947-65.230Q-6.009-65.556-6.140-65.847Q-6.271-66.138-6.484-66.328Q-6.697-66.517-6.994-66.517Q-7.369-66.517-7.621-66.205Q-7.873-65.892-7.990-65.459Q-8.107-65.025-8.107-64.654Q-8.107-64.256-7.994-63.775Q-7.881-63.295-7.632-62.943Q-7.384-62.591-6.994-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 150.399)\">\u003Cpath d=\"M78.011-62.033Q77.578-62.033 77.245-62.271Q76.913-62.509 76.693-62.898Q76.472-63.287 76.365-63.724Q76.257-64.162 76.257-64.560Q76.257-64.951 76.367-65.394Q76.476-65.838 76.693-66.218Q76.910-66.599 77.244-66.840Q77.578-67.080 78.011-67.080Q78.566-67.080 78.966-66.681Q79.367-66.283 79.564-65.697Q79.761-65.111 79.761-64.560Q79.761-64.006 79.564-63.418Q79.367-62.830 78.966-62.431Q78.566-62.033 78.011-62.033M78.011-62.591Q78.312-62.591 78.529-62.808Q78.745-63.025 78.872-63.353Q78.999-63.681 79.060-64.027Q79.120-64.373 79.120-64.654Q79.120-64.904 79.058-65.230Q78.995-65.556 78.865-65.847Q78.734-66.138 78.521-66.328Q78.308-66.517 78.011-66.517Q77.636-66.517 77.384-66.205Q77.132-65.892 77.015-65.459Q76.898-65.025 76.898-64.654Q76.898-64.256 77.011-63.775Q77.124-63.295 77.372-62.943Q77.620-62.591 78.011-62.591M82.257-62.033Q81.824-62.033 81.492-62.271Q81.160-62.509 80.939-62.898Q80.718-63.287 80.611-63.724Q80.503-64.162 80.503-64.560Q80.503-64.951 80.613-65.394Q80.722-65.838 80.939-66.218Q81.156-66.599 81.490-66.840Q81.824-67.080 82.257-67.080Q82.812-67.080 83.212-66.681Q83.613-66.283 83.810-65.697Q84.007-65.111 84.007-64.560Q84.007-64.006 83.810-63.418Q83.613-62.830 83.212-62.431Q82.812-62.033 82.257-62.033M82.257-62.591Q82.558-62.591 82.775-62.808Q82.992-63.025 83.119-63.353Q83.245-63.681 83.306-64.027Q83.367-64.373 83.367-64.654Q83.367-64.904 83.304-65.230Q83.242-65.556 83.111-65.847Q82.980-66.138 82.767-66.328Q82.554-66.517 82.257-66.517Q81.882-66.517 81.630-66.205Q81.378-65.892 81.261-65.459Q81.144-65.025 81.144-64.654Q81.144-64.256 81.257-63.775Q81.370-63.295 81.619-62.943Q81.867-62.591 82.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 149.843)\">\u003Cpath d=\"M-38.412-62.349L-38.412-62.439Q-38.361-62.646-38.166-62.670L-37.060-62.670L-37.060-66.439L-38.166-66.439Q-38.361-66.463-38.412-66.677L-38.412-66.767Q-38.361-66.974-38.166-66.998L-36.670-66.998Q-36.478-66.974-36.420-66.767L-36.420-62.670L-35.318-62.670Q-35.119-62.646-35.068-62.439L-35.068-62.349Q-35.119-62.134-35.318-62.111L-38.166-62.111Q-38.361-62.134-38.412-62.349M-32.494-62.072Q-32.966-62.072-33.351-62.316Q-33.736-62.560-33.959-62.970Q-34.181-63.381-34.181-63.838Q-34.181-64.181-34.056-64.504Q-33.931-64.826-33.701-65.080Q-33.470-65.334-33.164-65.478Q-32.857-65.623-32.494-65.623Q-32.131-65.623-31.818-65.476Q-31.506-65.330-31.283-65.084Q-31.060-64.838-30.933-64.517Q-30.806-64.197-30.806-63.838Q-30.806-63.381-31.031-62.968Q-31.256-62.556-31.640-62.314Q-32.025-62.072-32.494-62.072M-32.494-62.631Q-32.029-62.631-31.738-63.025Q-31.447-63.420-31.447-63.904Q-31.447-64.197-31.582-64.465Q-31.716-64.732-31.957-64.898Q-32.197-65.064-32.494-65.064Q-32.798-65.064-33.037-64.898Q-33.275-64.732-33.410-64.465Q-33.545-64.197-33.545-63.904Q-33.545-63.423-33.252-63.027Q-32.959-62.631-32.494-62.631M-28.248-62.072Q-28.720-62.072-29.105-62.316Q-29.490-62.560-29.713-62.970Q-29.935-63.381-29.935-63.838Q-29.935-64.181-29.810-64.504Q-29.685-64.826-29.455-65.080Q-29.224-65.334-28.918-65.478Q-28.611-65.623-28.248-65.623Q-27.884-65.623-27.572-65.476Q-27.259-65.330-27.037-65.084Q-26.814-64.838-26.687-64.517Q-26.560-64.197-26.560-63.838Q-26.560-63.381-26.785-62.968Q-27.009-62.556-27.394-62.314Q-27.779-62.072-28.248-62.072M-28.248-62.631Q-27.783-62.631-27.492-63.025Q-27.201-63.420-27.201-63.904Q-27.201-64.197-27.336-64.465Q-27.470-64.732-27.711-64.898Q-27.951-65.064-28.248-65.064Q-28.552-65.064-28.791-64.898Q-29.029-64.732-29.164-64.465Q-29.298-64.197-29.298-63.904Q-29.298-63.423-29.006-63.027Q-28.713-62.631-28.248-62.631M-26.052-60.568L-26.052-60.654Q-26.009-60.873-25.802-60.896L-25.381-60.896L-25.381-64.998L-25.802-64.998Q-26.009-65.021-26.052-65.240L-26.052-65.326Q-26.006-65.537-25.802-65.560L-24.986-65.560Q-24.791-65.541-24.740-65.326L-24.740-65.256Q-24.529-65.423-24.265-65.511Q-24.002-65.599-23.732-65.599Q-23.392-65.599-23.095-65.455Q-22.798-65.310-22.584-65.058Q-22.369-64.806-22.254-64.494Q-22.138-64.181-22.138-63.838Q-22.138-63.373-22.365-62.963Q-22.591-62.552-22.978-62.312Q-23.365-62.072-23.834-62.072Q-24.353-62.072-24.740-62.439L-24.740-60.896L-24.314-60.896Q-24.107-60.873-24.068-60.654L-24.068-60.568Q-24.107-60.357-24.314-60.334L-25.802-60.334Q-26.006-60.357-26.052-60.568M-23.877-62.631Q-23.568-62.631-23.318-62.800Q-23.068-62.970-22.923-63.252Q-22.779-63.533-22.779-63.838Q-22.779-64.127-22.904-64.406Q-23.029-64.685-23.261-64.863Q-23.494-65.041-23.795-65.041Q-24.115-65.041-24.377-64.855Q-24.638-64.670-24.740-64.369L-24.740-63.517Q-24.650-63.150-24.429-62.890Q-24.209-62.631-23.877-62.631M-20.310-62.670Q-20.310-62.892-20.144-63.058Q-19.978-63.224-19.748-63.224Q-19.599-63.224-19.472-63.146Q-19.345-63.068-19.271-62.943Q-19.197-62.818-19.197-62.670Q-19.197-62.443-19.363-62.277Q-19.529-62.111-19.748-62.111Q-19.974-62.111-20.142-62.279Q-20.310-62.447-20.310-62.670M-20.310-65.006Q-20.310-65.228-20.144-65.394Q-19.978-65.560-19.748-65.560Q-19.599-65.560-19.472-65.482Q-19.345-65.404-19.271-65.279Q-19.197-65.154-19.197-65.006Q-19.197-64.779-19.363-64.613Q-19.529-64.447-19.748-64.447Q-19.974-64.447-20.142-64.615Q-20.310-64.783-20.310-65.006\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 149.843)\">\u003Cpath d=\"M-9.166-62.349L-9.166-62.439Q-9.115-62.650-8.920-62.670L-8.720-62.670L-8.720-64.998L-8.920-64.998Q-9.127-65.021-9.166-65.240L-9.166-65.326Q-9.115-65.541-8.920-65.560L-8.439-65.560Q-8.248-65.537-8.189-65.326Q-7.869-65.599-7.455-65.599Q-7.263-65.599-7.095-65.490Q-6.927-65.381-6.853-65.209Q-6.677-65.400-6.455-65.500Q-6.232-65.599-5.990-65.599Q-5.572-65.599-5.418-65.257Q-5.263-64.916-5.263-64.447L-5.263-62.670L-5.064-62.670Q-4.853-62.646-4.814-62.439L-4.814-62.349Q-4.865-62.134-5.064-62.111L-5.881-62.111Q-6.076-62.134-6.127-62.349L-6.127-62.439Q-6.076-62.646-5.881-62.670L-5.791-62.670L-5.791-64.416Q-5.791-65.041-6.041-65.041Q-6.373-65.041-6.550-64.730Q-6.728-64.420-6.728-64.056L-6.728-62.670L-6.525-62.670Q-6.318-62.646-6.279-62.439L-6.279-62.349Q-6.330-62.134-6.525-62.111L-7.341-62.111Q-7.541-62.134-7.591-62.349L-7.591-62.439Q-7.541-62.646-7.341-62.670L-7.256-62.670L-7.256-64.416Q-7.256-65.041-7.502-65.041Q-7.834-65.041-8.011-64.728Q-8.189-64.416-8.189-64.056L-8.189-62.670L-7.990-62.670Q-7.783-62.646-7.744-62.439L-7.744-62.349Q-7.795-62.131-7.990-62.111L-8.920-62.111Q-9.127-62.134-9.166-62.349M-4.642-62.349L-4.642-62.439Q-4.584-62.646-4.392-62.670L-3.681-62.670L-3.681-64.998L-4.392-64.998Q-4.588-65.021-4.642-65.240L-4.642-65.326Q-4.584-65.537-4.392-65.560L-3.291-65.560Q-3.091-65.541-3.041-65.326L-3.041-64.998Q-2.779-65.283-2.424-65.441Q-2.068-65.599-1.681-65.599Q-1.388-65.599-1.154-65.465Q-0.920-65.330-0.920-65.064Q-0.920-64.896-1.029-64.779Q-1.138-64.662-1.306-64.662Q-1.459-64.662-1.574-64.773Q-1.689-64.884-1.689-65.041Q-2.064-65.041-2.379-64.840Q-2.693-64.638-2.867-64.304Q-3.041-63.970-3.041-63.591L-3.041-62.670L-2.095-62.670Q-1.888-62.646-1.849-62.439L-1.849-62.349Q-1.888-62.134-2.095-62.111L-4.392-62.111Q-4.584-62.134-4.642-62.349M-0.674-62.349L-0.674-62.439Q-0.623-62.650-0.427-62.670L-0.228-62.670L-0.228-64.998L-0.427-64.998Q-0.634-65.021-0.674-65.240L-0.674-65.326Q-0.623-65.541-0.427-65.560L0.053-65.560Q0.244-65.537 0.303-65.326Q0.623-65.599 1.037-65.599Q1.229-65.599 1.397-65.490Q1.565-65.381 1.639-65.209Q1.815-65.400 2.037-65.500Q2.260-65.599 2.502-65.599Q2.920-65.599 3.075-65.257Q3.229-64.916 3.229-64.447L3.229-62.670L3.428-62.670Q3.639-62.646 3.678-62.439L3.678-62.349Q3.627-62.134 3.428-62.111L2.612-62.111Q2.416-62.134 2.366-62.349L2.366-62.439Q2.416-62.646 2.612-62.670L2.701-62.670L2.701-64.416Q2.701-65.041 2.451-65.041Q2.119-65.041 1.942-64.730Q1.764-64.420 1.764-64.056L1.764-62.670L1.967-62.670Q2.174-62.646 2.213-62.439L2.213-62.349Q2.162-62.134 1.967-62.111L1.151-62.111Q0.951-62.134 0.901-62.349L0.901-62.439Q0.951-62.646 1.151-62.670L1.237-62.670L1.237-64.416Q1.237-65.041 0.991-65.041Q0.659-65.041 0.481-64.728Q0.303-64.416 0.303-64.056L0.303-62.670L0.502-62.670Q0.709-62.646 0.748-62.439L0.748-62.349Q0.698-62.131 0.502-62.111L-0.427-62.111Q-0.634-62.134-0.674-62.349M5.748-62.072Q5.276-62.072 4.891-62.316Q4.506-62.560 4.284-62.970Q4.061-63.381 4.061-63.838Q4.061-64.181 4.186-64.504Q4.311-64.826 4.541-65.080Q4.772-65.334 5.078-65.478Q5.385-65.623 5.748-65.623Q6.112-65.623 6.424-65.476Q6.737-65.330 6.959-65.084Q7.182-64.838 7.309-64.517Q7.436-64.197 7.436-63.838Q7.436-63.381 7.211-62.968Q6.987-62.556 6.602-62.314Q6.217-62.072 5.748-62.072M5.748-62.631Q6.213-62.631 6.504-63.025Q6.795-63.420 6.795-63.904Q6.795-64.197 6.660-64.465Q6.526-64.732 6.285-64.898Q6.045-65.064 5.748-65.064Q5.444-65.064 5.205-64.898Q4.967-64.732 4.832-64.465Q4.698-64.197 4.698-63.904Q4.698-63.423 4.991-63.027Q5.284-62.631 5.748-62.631M9.530-62.334L8.643-64.998L8.323-64.998Q8.123-65.021 8.073-65.240L8.073-65.326Q8.123-65.537 8.323-65.560L9.483-65.560Q9.678-65.541 9.729-65.326L9.729-65.240Q9.678-65.021 9.483-64.998L9.201-64.998L9.994-62.623L10.784-64.998L10.506-64.998Q10.307-65.021 10.256-65.240L10.256-65.326Q10.307-65.537 10.506-65.560L11.666-65.560Q11.862-65.537 11.912-65.326L11.912-65.240Q11.862-65.021 11.666-64.998L11.346-64.998L10.459-62.334Q10.416-62.220 10.315-62.146Q10.213-62.072 10.088-62.072L9.897-62.072Q9.780-62.072 9.676-62.144Q9.573-62.216 9.530-62.334M14.432-60.568L14.432-60.654Q14.483-60.873 14.678-60.896L15.143-60.896L15.143-62.494Q14.690-62.072 14.080-62.072Q13.725-62.072 13.420-62.215Q13.116-62.357 12.883-62.607Q12.651-62.857 12.526-63.179Q12.401-63.502 12.401-63.838Q12.401-64.322 12.639-64.722Q12.877-65.123 13.284-65.361Q13.690-65.599 14.166-65.599Q14.729-65.599 15.143-65.209L15.143-65.369Q15.194-65.580 15.393-65.599L15.534-65.599Q15.733-65.576 15.784-65.369L15.784-60.896L16.248-60.896Q16.444-60.873 16.494-60.654L16.494-60.568Q16.444-60.357 16.248-60.334L14.678-60.334Q14.483-60.357 14.432-60.568M14.127-62.631Q14.498-62.631 14.774-62.884Q15.049-63.138 15.143-63.502L15.143-64.119Q15.100-64.357 14.977-64.570Q14.854-64.783 14.657-64.912Q14.459-65.041 14.217-65.041Q13.901-65.041 13.629-64.875Q13.358-64.709 13.200-64.427Q13.041-64.146 13.041-63.830Q13.041-63.365 13.356-62.998Q13.670-62.631 14.127-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 149.843)\">\u003Cpath d=\"M23.753-61.470Q23.222-61.779 22.822-62.267Q22.421-62.756 22.210-63.349Q21.999-63.943 21.999-64.560Q21.999-65.177 22.208-65.765Q22.417-66.353 22.814-66.834Q23.210-67.314 23.745-67.638Q23.816-67.662 23.847-67.662L23.937-67.662Q24.035-67.650 24.101-67.584Q24.167-67.517 24.167-67.416Q24.167-67.271 24.066-67.209Q23.617-66.920 23.290-66.504Q22.964-66.088 22.802-65.595Q22.640-65.103 22.640-64.560Q22.640-64.154 22.736-63.767Q22.831-63.381 23.009-63.045Q23.187-62.709 23.447-62.425Q23.706-62.142 24.054-61.912Q24.167-61.834 24.167-61.697Q24.167-61.599 24.101-61.529Q24.035-61.459 23.937-61.447L23.847-61.447Q23.788-61.447 23.753-61.470M25.566-61.752Q25.566-61.806 25.589-61.873L27.855-67.478Q27.949-67.662 28.144-67.662Q28.269-67.662 28.357-67.574Q28.445-67.486 28.445-67.357Q28.445-67.298 28.421-67.240L26.160-61.631Q26.058-61.447 25.878-61.447Q25.753-61.447 25.660-61.537Q25.566-61.627 25.566-61.752M28.144-61.447Q27.792-61.447 27.611-61.787Q27.429-62.127 27.429-62.509Q27.429-62.896 27.609-63.236Q27.788-63.576 28.144-63.576Q28.382-63.576 28.540-63.406Q28.699-63.236 28.773-62.992Q28.847-62.748 28.847-62.509Q28.847-62.275 28.773-62.031Q28.699-61.787 28.540-61.617Q28.382-61.447 28.144-61.447M28.144-62.006Q28.226-62.037 28.273-62.205Q28.320-62.373 28.320-62.509Q28.320-62.646 28.273-62.816Q28.226-62.986 28.144-63.013Q28.058-62.986 28.007-62.818Q27.956-62.650 27.956-62.509Q27.956-62.381 28.007-62.209Q28.058-62.037 28.144-62.006M25.878-65.525Q25.636-65.525 25.476-65.695Q25.316-65.865 25.242-66.111Q25.167-66.357 25.167-66.599Q25.167-66.982 25.347-67.322Q25.527-67.662 25.878-67.662Q26.117-67.662 26.275-67.492Q26.433-67.322 26.507-67.078Q26.581-66.834 26.581-66.599Q26.581-66.357 26.507-66.111Q26.433-65.865 26.275-65.695Q26.117-65.525 25.878-65.525M25.878-66.088Q25.968-66.131 26.011-66.287Q26.054-66.443 26.054-66.599Q26.054-66.728 26.007-66.904Q25.960-67.080 25.870-67.103Q25.855-67.103 25.826-67.068Q25.796-67.033 25.788-67.013Q25.695-66.826 25.695-66.599Q25.695-66.463 25.744-66.291Q25.792-66.119 25.878-66.088M29.355-62.349L29.355-62.439Q29.413-62.646 29.605-62.670L30.316-62.670L30.316-64.998L29.605-64.998Q29.410-65.021 29.355-65.240L29.355-65.326Q29.413-65.537 29.605-65.560L30.706-65.560Q30.906-65.541 30.956-65.326L30.956-64.998Q31.218-65.283 31.574-65.441Q31.929-65.599 32.316-65.599Q32.609-65.599 32.843-65.465Q33.078-65.330 33.078-65.064Q33.078-64.896 32.968-64.779Q32.859-64.662 32.691-64.662Q32.538-64.662 32.423-64.773Q32.308-64.884 32.308-65.041Q31.933-65.041 31.619-64.840Q31.304-64.638 31.130-64.304Q30.956-63.970 30.956-63.591L30.956-62.670L31.902-62.670Q32.109-62.646 32.148-62.439L32.148-62.349Q32.109-62.134 31.902-62.111L29.605-62.111Q29.413-62.134 29.355-62.349M35.242-62.072Q34.777-62.072 34.411-62.322Q34.046-62.572 33.841-62.976Q33.636-63.381 33.636-63.838Q33.636-64.181 33.761-64.502Q33.886-64.822 34.119-65.072Q34.351-65.322 34.656-65.461Q34.960-65.599 35.316-65.599Q35.828-65.599 36.234-65.279L36.234-66.439L35.812-66.439Q35.601-66.463 35.562-66.677L35.562-66.767Q35.601-66.974 35.812-66.998L36.624-66.998Q36.824-66.974 36.874-66.767L36.874-62.670L37.300-62.670Q37.507-62.646 37.546-62.439L37.546-62.349Q37.507-62.134 37.300-62.111L36.484-62.111Q36.285-62.134 36.234-62.349L36.234-62.478Q36.038-62.287 35.777-62.179Q35.515-62.072 35.242-62.072M35.281-62.631Q35.640-62.631 35.892-62.900Q36.144-63.170 36.234-63.545L36.234-64.377Q36.175-64.564 36.048-64.715Q35.921-64.865 35.744-64.953Q35.566-65.041 35.370-65.041Q35.062-65.041 34.812-64.871Q34.562-64.701 34.417-64.416Q34.273-64.131 34.273-63.830Q34.273-63.381 34.558-63.006Q34.843-62.631 35.281-62.631M38.242-62.349L38.242-62.439Q38.292-62.646 38.488-62.670L39.527-62.670L39.527-64.998L38.554-64.998Q38.355-65.021 38.304-65.240L38.304-65.326Q38.355-65.537 38.554-65.560L39.921-65.560Q40.117-65.541 40.167-65.326L40.167-62.670L41.081-62.670Q41.277-62.646 41.328-62.439L41.328-62.349Q41.277-62.134 41.081-62.111L38.488-62.111Q38.292-62.134 38.242-62.349M39.273-66.537L39.273-66.591Q39.273-66.763 39.410-66.884Q39.546-67.006 39.722-67.006Q39.894-67.006 40.031-66.884Q40.167-66.763 40.167-66.591L40.167-66.537Q40.167-66.361 40.031-66.240Q39.894-66.119 39.722-66.119Q39.546-66.119 39.410-66.240Q39.273-66.361 39.273-66.537M42.910-61.447L42.824-61.447Q42.718-61.459 42.650-61.531Q42.581-61.603 42.581-61.697Q42.581-61.838 42.687-61.904Q43.023-62.119 43.292-62.408Q43.562-62.697 43.745-63.045Q43.929-63.392 44.019-63.771Q44.109-64.150 44.109-64.560Q44.109-65.099 43.945-65.591Q43.781-66.084 43.462-66.498Q43.144-66.912 42.703-67.201Q42.581-67.283 42.581-67.416Q42.581-67.513 42.650-67.582Q42.718-67.650 42.824-67.662L42.910-67.662Q42.964-67.662 42.999-67.638Q43.386-67.416 43.726-67.068Q44.066-66.720 44.286-66.326Q44.507-65.931 44.628-65.486Q44.749-65.041 44.749-64.560Q44.749-64.076 44.628-63.625Q44.507-63.173 44.283-62.777Q44.058-62.381 43.734-62.047Q43.410-61.713 43.007-61.470Q42.937-61.447 42.910-61.447M47.835-60.998Q47.722-60.998 47.632-61.088Q47.542-61.177 47.542-61.287Q47.542-61.463 47.734-61.537Q47.953-61.588 48.124-61.746Q48.296-61.904 48.363-62.127Q48.339-62.127 48.308-62.111L48.245-62.111Q48.015-62.111 47.849-62.273Q47.683-62.435 47.683-62.670Q47.683-62.904 47.847-63.064Q48.011-63.224 48.245-63.224Q48.456-63.224 48.620-63.103Q48.785-62.982 48.874-62.789Q48.964-62.595 48.964-62.384Q48.964-61.908 48.665-61.519Q48.367-61.131 47.902-61.006Q47.878-60.998 47.835-60.998M51.042-61.752Q51.042-61.806 51.066-61.873L53.331-67.478Q53.425-67.662 53.620-67.662Q53.745-67.662 53.833-67.574Q53.921-67.486 53.921-67.357Q53.921-67.298 53.898-67.240L51.636-61.631Q51.535-61.447 51.355-61.447Q51.230-61.447 51.136-61.537Q51.042-61.627 51.042-61.752M53.620-61.447Q53.269-61.447 53.087-61.787Q52.906-62.127 52.906-62.509Q52.906-62.896 53.085-63.236Q53.265-63.576 53.620-63.576Q53.859-63.576 54.017-63.406Q54.175-63.236 54.249-62.992Q54.324-62.748 54.324-62.509Q54.324-62.275 54.249-62.031Q54.175-61.787 54.017-61.617Q53.859-61.447 53.620-61.447M53.620-62.006Q53.703-62.037 53.749-62.205Q53.796-62.373 53.796-62.509Q53.796-62.646 53.749-62.816Q53.703-62.986 53.620-63.013Q53.535-62.986 53.484-62.818Q53.433-62.650 53.433-62.509Q53.433-62.381 53.484-62.209Q53.535-62.037 53.620-62.006M51.355-65.525Q51.113-65.525 50.953-65.695Q50.792-65.865 50.718-66.111Q50.644-66.357 50.644-66.599Q50.644-66.982 50.824-67.322Q51.003-67.662 51.355-67.662Q51.593-67.662 51.751-67.492Q51.910-67.322 51.984-67.078Q52.058-66.834 52.058-66.599Q52.058-66.357 51.984-66.111Q51.910-65.865 51.751-65.695Q51.593-65.525 51.355-65.525M51.355-66.088Q51.445-66.131 51.488-66.287Q51.531-66.443 51.531-66.599Q51.531-66.728 51.484-66.904Q51.437-67.080 51.347-67.103Q51.331-67.103 51.302-67.068Q51.273-67.033 51.265-67.013Q51.171-66.826 51.171-66.599Q51.171-66.463 51.220-66.291Q51.269-66.119 51.355-66.088M54.831-62.349L54.831-62.439Q54.890-62.646 55.081-62.670L55.792-62.670L55.792-64.998L55.081-64.998Q54.886-65.021 54.831-65.240L54.831-65.326Q54.890-65.537 55.081-65.560L56.183-65.560Q56.382-65.541 56.433-65.326L56.433-64.998Q56.695-65.283 57.050-65.441Q57.406-65.599 57.792-65.599Q58.085-65.599 58.320-65.465Q58.554-65.330 58.554-65.064Q58.554-64.896 58.445-64.779Q58.335-64.662 58.167-64.662Q58.015-64.662 57.900-64.773Q57.785-64.884 57.785-65.041Q57.410-65.041 57.095-64.840Q56.781-64.638 56.607-64.304Q56.433-63.970 56.433-63.591L56.433-62.670L57.378-62.670Q57.585-62.646 57.624-62.439L57.624-62.349Q57.585-62.134 57.378-62.111L55.081-62.111Q54.890-62.134 54.831-62.349M59.710-62.349L59.710-62.439Q59.761-62.646 59.960-62.670L60.777-62.670L60.777-65.853Q60.398-65.545 59.945-65.545Q59.714-65.545 59.663-65.775L59.663-65.865Q59.714-66.080 59.910-66.103Q60.238-66.103 60.492-66.341Q60.745-66.580 60.886-66.927Q60.956-67.056 61.113-67.080L61.167-67.080Q61.363-67.060 61.413-66.845L61.413-62.670L62.230-62.670Q62.429-62.646 62.480-62.439L62.480-62.349Q62.429-62.134 62.230-62.111L59.960-62.111Q59.761-62.134 59.710-62.349M65.222-62.033Q64.788-62.033 64.456-62.271Q64.124-62.509 63.904-62.898Q63.683-63.287 63.576-63.724Q63.468-64.162 63.468-64.560Q63.468-64.951 63.578-65.394Q63.687-65.838 63.904-66.218Q64.120-66.599 64.454-66.840Q64.788-67.080 65.222-67.080Q65.777-67.080 66.177-66.681Q66.578-66.283 66.775-65.697Q66.972-65.111 66.972-64.560Q66.972-64.006 66.775-63.418Q66.578-62.830 66.177-62.431Q65.777-62.033 65.222-62.033M65.222-62.591Q65.523-62.591 65.740-62.808Q65.956-63.025 66.083-63.353Q66.210-63.681 66.271-64.027Q66.331-64.373 66.331-64.654Q66.331-64.904 66.269-65.230Q66.206-65.556 66.076-65.847Q65.945-66.138 65.732-66.328Q65.519-66.517 65.222-66.517Q64.847-66.517 64.595-66.205Q64.343-65.892 64.226-65.459Q64.109-65.025 64.109-64.654Q64.109-64.256 64.222-63.775Q64.335-63.295 64.583-62.943Q64.831-62.591 65.222-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 167.47)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-23.564-63.455L-25.634-63.455Q-25.830-63.478-25.884-63.697L-25.884-63.935Q-25.884-64.009-25.841-64.080L-23.994-66.951Q-23.908-67.080-23.756-67.080L-23.298-67.080Q-23.189-67.080-23.111-67.002Q-23.033-66.923-23.033-66.814L-23.033-64.013L-22.369-64.013Q-22.173-63.990-22.123-63.783L-22.123-63.697Q-22.173-63.478-22.369-63.455L-23.033-63.455L-23.033-62.670L-22.459-62.670Q-22.252-62.646-22.213-62.439L-22.213-62.349Q-22.252-62.134-22.459-62.111L-24.138-62.111Q-24.345-62.134-24.388-62.349L-24.388-62.439Q-24.345-62.646-24.138-62.670L-23.564-62.670L-23.564-63.455M-23.564-66.607L-25.236-64.013L-23.564-64.013L-23.564-66.607M-21.525-63.525Q-21.525-63.810-21.369-64.064Q-21.213-64.318-20.963-64.492Q-20.713-64.666-20.427-64.752Q-20.666-64.826-20.892-64.968Q-21.119-65.111-21.261-65.320Q-21.404-65.529-21.404-65.775Q-21.404-66.173-21.158-66.468Q-20.912-66.763-20.529-66.922Q-20.146-67.080-19.756-67.080Q-19.365-67.080-18.982-66.922Q-18.599-66.763-18.353-66.465Q-18.107-66.166-18.107-65.775Q-18.107-65.529-18.250-65.322Q-18.392-65.115-18.619-64.970Q-18.845-64.826-19.084-64.752Q-18.631-64.615-18.310-64.289Q-17.990-63.963-17.990-63.525Q-17.990-63.088-18.248-62.744Q-18.506-62.400-18.916-62.216Q-19.326-62.033-19.756-62.033Q-20.185-62.033-20.595-62.215Q-21.006-62.396-21.265-62.740Q-21.525-63.084-21.525-63.525M-20.884-63.525Q-20.884-63.252-20.718-63.037Q-20.552-62.822-20.291-62.707Q-20.029-62.591-19.756-62.591Q-19.482-62.591-19.222-62.707Q-18.963-62.822-18.797-63.039Q-18.631-63.256-18.631-63.525Q-18.631-63.802-18.797-64.019Q-18.963-64.236-19.222-64.353Q-19.482-64.470-19.756-64.470Q-20.029-64.470-20.291-64.353Q-20.552-64.236-20.718-64.021Q-20.884-63.806-20.884-63.525M-20.763-65.775Q-20.763-65.537-20.607-65.369Q-20.451-65.201-20.215-65.117Q-19.978-65.033-19.756-65.033Q-19.537-65.033-19.298-65.117Q-19.060-65.201-18.904-65.371Q-18.748-65.541-18.748-65.775Q-18.748-66.009-18.904-66.179Q-19.060-66.349-19.298-66.433Q-19.537-66.517-19.756-66.517Q-19.978-66.517-20.215-66.433Q-20.451-66.349-20.607-66.181Q-20.763-66.013-20.763-65.775\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 167.47)\">\u003Cpath d=\"M-36.740-62.033Q-37.381-62.033-37.767-62.410Q-38.154-62.787-38.312-63.359Q-38.470-63.931-38.470-64.560Q-38.470-65.025-38.310-65.480Q-38.150-65.935-37.861-66.295Q-37.572-66.654-37.164-66.867Q-36.756-67.080-36.267-67.080Q-35.994-67.080-35.744-66.982Q-35.494-66.884-35.341-66.689Q-35.189-66.494-35.189-66.201Q-35.189-66.025-35.302-65.904Q-35.416-65.783-35.588-65.783Q-35.763-65.783-35.881-65.896Q-35.998-66.009-35.998-66.181Q-35.998-66.302-35.923-66.423Q-36.033-66.517-36.267-66.517Q-36.685-66.517-37.021-66.277Q-37.357-66.037-37.562-65.650Q-37.767-65.263-37.814-64.865Q-37.576-65.064-37.267-65.172Q-36.959-65.279-36.638-65.279Q-36.298-65.279-36-65.154Q-35.701-65.029-35.482-64.810Q-35.263-64.591-35.138-64.293Q-35.013-63.994-35.013-63.654Q-35.013-63.306-35.152-63.006Q-35.291-62.705-35.531-62.488Q-35.771-62.271-36.086-62.152Q-36.400-62.033-36.740-62.033M-37.724-63.576Q-37.662-63.314-37.533-63.090Q-37.404-62.865-37.205-62.728Q-37.006-62.591-36.740-62.591Q-36.287-62.591-35.970-62.898Q-35.654-63.205-35.654-63.654Q-35.654-63.935-35.789-64.181Q-35.923-64.427-36.160-64.570Q-36.396-64.713-36.693-64.713Q-37.084-64.713-37.416-64.486Q-37.748-64.259-37.748-63.888Q-37.748-63.849-37.732-63.771Q-37.716-63.693-37.716-63.654Q-37.716-63.627-37.718-63.611Q-37.720-63.595-37.724-63.576M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 167.47)\">\u003Cpath d=\"M-25.705-63.224Q-25.705-63.670-25.291-63.927Q-24.877-64.185-24.336-64.285Q-23.795-64.384-23.287-64.392Q-23.287-64.607-23.422-64.759Q-23.556-64.912-23.763-64.988Q-23.970-65.064-24.181-65.064Q-24.525-65.064-24.685-65.041L-24.685-64.982Q-24.685-64.814-24.804-64.699Q-24.924-64.584-25.088-64.584Q-25.263-64.584-25.379-64.707Q-25.494-64.830-25.494-64.998Q-25.494-65.404-25.113-65.513Q-24.732-65.623-24.174-65.623Q-23.904-65.623-23.636-65.545Q-23.369-65.466-23.144-65.316Q-22.920-65.166-22.783-64.945Q-22.646-64.724-22.646-64.447L-22.646-62.728Q-22.646-62.670-22.119-62.670Q-21.924-62.650-21.873-62.439L-21.873-62.349Q-21.924-62.134-22.119-62.111L-22.263-62.111Q-22.607-62.111-22.836-62.158Q-23.064-62.205-23.209-62.392Q-23.670-62.072-24.377-62.072Q-24.713-62.072-25.017-62.213Q-25.322-62.353-25.513-62.615Q-25.705-62.877-25.705-63.224M-25.064-63.216Q-25.064-62.943-24.822-62.787Q-24.580-62.631-24.295-62.631Q-24.076-62.631-23.843-62.689Q-23.611-62.748-23.449-62.886Q-23.287-63.025-23.287-63.248L-23.287-63.838Q-23.568-63.838-23.984-63.781Q-24.400-63.724-24.732-63.586Q-25.064-63.447-25.064-63.216M-19.744-62.033Q-20.177-62.033-20.509-62.271Q-20.841-62.509-21.062-62.898Q-21.283-63.287-21.390-63.724Q-21.498-64.162-21.498-64.560Q-21.498-64.951-21.388-65.394Q-21.279-65.838-21.062-66.218Q-20.845-66.599-20.511-66.840Q-20.177-67.080-19.744-67.080Q-19.189-67.080-18.789-66.681Q-18.388-66.283-18.191-65.697Q-17.994-65.111-17.994-64.560Q-17.994-64.006-18.191-63.418Q-18.388-62.830-18.789-62.431Q-19.189-62.033-19.744-62.033M-19.744-62.591Q-19.443-62.591-19.226-62.808Q-19.009-63.025-18.882-63.353Q-18.756-63.681-18.695-64.027Q-18.634-64.373-18.634-64.654Q-18.634-64.904-18.697-65.230Q-18.759-65.556-18.890-65.847Q-19.021-66.138-19.234-66.328Q-19.447-66.517-19.744-66.517Q-20.119-66.517-20.371-66.205Q-20.623-65.892-20.740-65.459Q-20.857-65.025-20.857-64.654Q-20.857-64.256-20.744-63.775Q-20.631-63.295-20.382-62.943Q-20.134-62.591-19.744-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 166.915)\">\u003Cpath d=\"M-38.455-63.224Q-38.455-63.670-38.041-63.927Q-37.627-64.185-37.086-64.285Q-36.545-64.384-36.037-64.392Q-36.037-64.607-36.172-64.759Q-36.306-64.912-36.513-64.988Q-36.720-65.064-36.931-65.064Q-37.275-65.064-37.435-65.041L-37.435-64.982Q-37.435-64.814-37.554-64.699Q-37.673-64.584-37.838-64.584Q-38.013-64.584-38.129-64.707Q-38.244-64.830-38.244-64.998Q-38.244-65.404-37.863-65.513Q-37.482-65.623-36.923-65.623Q-36.654-65.623-36.386-65.545Q-36.119-65.466-35.894-65.316Q-35.670-65.166-35.533-64.945Q-35.396-64.724-35.396-64.447L-35.396-62.728Q-35.396-62.670-34.869-62.670Q-34.673-62.650-34.623-62.439L-34.623-62.349Q-34.673-62.134-34.869-62.111L-35.013-62.111Q-35.357-62.111-35.586-62.158Q-35.814-62.205-35.959-62.392Q-36.420-62.072-37.127-62.072Q-37.463-62.072-37.767-62.213Q-38.072-62.353-38.263-62.615Q-38.455-62.877-38.455-63.224M-37.814-63.216Q-37.814-62.943-37.572-62.787Q-37.330-62.631-37.045-62.631Q-36.826-62.631-36.593-62.689Q-36.361-62.748-36.199-62.886Q-36.037-63.025-36.037-63.248L-36.037-63.838Q-36.318-63.838-36.734-63.781Q-37.150-63.724-37.482-63.586Q-37.814-63.447-37.814-63.216M-32.752-62.072Q-33.216-62.072-33.582-62.322Q-33.947-62.572-34.152-62.976Q-34.357-63.381-34.357-63.838Q-34.357-64.181-34.232-64.502Q-34.107-64.822-33.875-65.072Q-33.642-65.322-33.338-65.461Q-33.033-65.599-32.677-65.599Q-32.166-65.599-31.759-65.279L-31.759-66.439L-32.181-66.439Q-32.392-66.463-32.431-66.677L-32.431-66.767Q-32.392-66.974-32.181-66.998L-31.369-66.998Q-31.170-66.974-31.119-66.767L-31.119-62.670L-30.693-62.670Q-30.486-62.646-30.447-62.439L-30.447-62.349Q-30.486-62.134-30.693-62.111L-31.509-62.111Q-31.709-62.134-31.759-62.349L-31.759-62.478Q-31.955-62.287-32.216-62.179Q-32.478-62.072-32.752-62.072M-32.713-62.631Q-32.353-62.631-32.101-62.900Q-31.849-63.170-31.759-63.545L-31.759-64.377Q-31.818-64.564-31.945-64.715Q-32.072-64.865-32.250-64.953Q-32.427-65.041-32.623-65.041Q-32.931-65.041-33.181-64.871Q-33.431-64.701-33.576-64.416Q-33.720-64.131-33.720-63.830Q-33.720-63.381-33.435-63.006Q-33.150-62.631-32.713-62.631M-28.506-62.072Q-28.970-62.072-29.336-62.322Q-29.701-62.572-29.906-62.976Q-30.111-63.381-30.111-63.838Q-30.111-64.181-29.986-64.502Q-29.861-64.822-29.629-65.072Q-29.396-65.322-29.091-65.461Q-28.787-65.599-28.431-65.599Q-27.920-65.599-27.513-65.279L-27.513-66.439L-27.935-66.439Q-28.146-66.463-28.185-66.677L-28.185-66.767Q-28.146-66.974-27.935-66.998L-27.123-66.998Q-26.923-66.974-26.873-66.767L-26.873-62.670L-26.447-62.670Q-26.240-62.646-26.201-62.439L-26.201-62.349Q-26.240-62.134-26.447-62.111L-27.263-62.111Q-27.463-62.134-27.513-62.349L-27.513-62.478Q-27.709-62.287-27.970-62.179Q-28.232-62.072-28.506-62.072M-28.466-62.631Q-28.107-62.631-27.855-62.900Q-27.603-63.170-27.513-63.545L-27.513-64.377Q-27.572-64.564-27.699-64.715Q-27.826-64.865-28.004-64.953Q-28.181-65.041-28.377-65.041Q-28.685-65.041-28.935-64.871Q-29.185-64.701-29.330-64.416Q-29.474-64.131-29.474-63.830Q-29.474-63.381-29.189-63.006Q-28.904-62.631-28.466-62.631M-23.810-60.568L-23.810-60.654Q-23.759-60.873-23.564-60.896L-23.099-60.896L-23.099-62.494Q-23.552-62.072-24.162-62.072Q-24.517-62.072-24.822-62.215Q-25.127-62.357-25.359-62.607Q-25.591-62.857-25.716-63.179Q-25.841-63.502-25.841-63.838Q-25.841-64.322-25.603-64.722Q-25.365-65.123-24.959-65.361Q-24.552-65.599-24.076-65.599Q-23.513-65.599-23.099-65.209L-23.099-65.369Q-23.048-65.580-22.849-65.599L-22.709-65.599Q-22.509-65.576-22.459-65.369L-22.459-60.896L-21.994-60.896Q-21.798-60.873-21.748-60.654L-21.748-60.568Q-21.798-60.357-21.994-60.334L-23.564-60.334Q-23.759-60.357-23.810-60.568M-24.115-62.631Q-23.744-62.631-23.468-62.884Q-23.193-63.138-23.099-63.502L-23.099-64.119Q-23.142-64.357-23.265-64.570Q-23.388-64.783-23.586-64.912Q-23.783-65.041-24.025-65.041Q-24.341-65.041-24.613-64.875Q-24.884-64.709-25.043-64.427Q-25.201-64.146-25.201-63.830Q-25.201-63.365-24.886-62.998Q-24.572-62.631-24.115-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 166.915)\">\u003Cpath d=\"M-16.931-61.752Q-16.931-61.806-16.908-61.873L-14.642-67.478Q-14.549-67.662-14.353-67.662Q-14.228-67.662-14.140-67.574Q-14.052-67.486-14.052-67.357Q-14.052-67.298-14.076-67.240L-16.338-61.631Q-16.439-61.447-16.619-61.447Q-16.744-61.447-16.838-61.537Q-16.931-61.627-16.931-61.752M-14.353-61.447Q-14.705-61.447-14.886-61.787Q-15.068-62.127-15.068-62.509Q-15.068-62.896-14.888-63.236Q-14.709-63.576-14.353-63.576Q-14.115-63.576-13.957-63.406Q-13.799-63.236-13.724-62.992Q-13.650-62.748-13.650-62.509Q-13.650-62.275-13.724-62.031Q-13.799-61.787-13.957-61.617Q-14.115-61.447-14.353-61.447M-14.353-62.006Q-14.271-62.037-14.224-62.205Q-14.177-62.373-14.177-62.509Q-14.177-62.646-14.224-62.816Q-14.271-62.986-14.353-63.013Q-14.439-62.986-14.490-62.818Q-14.541-62.650-14.541-62.509Q-14.541-62.381-14.490-62.209Q-14.439-62.037-14.353-62.006M-16.619-65.525Q-16.861-65.525-17.021-65.695Q-17.181-65.865-17.256-66.111Q-17.330-66.357-17.330-66.599Q-17.330-66.982-17.150-67.322Q-16.970-67.662-16.619-67.662Q-16.381-67.662-16.222-67.492Q-16.064-67.322-15.990-67.078Q-15.916-66.834-15.916-66.599Q-15.916-66.357-15.990-66.111Q-16.064-65.865-16.222-65.695Q-16.381-65.525-16.619-65.525M-16.619-66.088Q-16.529-66.131-16.486-66.287Q-16.443-66.443-16.443-66.599Q-16.443-66.728-16.490-66.904Q-16.537-67.080-16.627-67.103Q-16.642-67.103-16.672-67.068Q-16.701-67.033-16.709-67.013Q-16.802-66.826-16.802-66.599Q-16.802-66.463-16.754-66.291Q-16.705-66.119-16.619-66.088M-13.142-62.349L-13.142-62.439Q-13.084-62.646-12.892-62.670L-12.181-62.670L-12.181-64.998L-12.892-64.998Q-13.088-65.021-13.142-65.240L-13.142-65.326Q-13.084-65.537-12.892-65.560L-11.791-65.560Q-11.591-65.541-11.541-65.326L-11.541-64.998Q-11.279-65.283-10.924-65.441Q-10.568-65.599-10.181-65.599Q-9.888-65.599-9.654-65.465Q-9.420-65.330-9.420-65.064Q-9.420-64.896-9.529-64.779Q-9.638-64.662-9.806-64.662Q-9.959-64.662-10.074-64.773Q-10.189-64.884-10.189-65.041Q-10.564-65.041-10.879-64.840Q-11.193-64.638-11.367-64.304Q-11.541-63.970-11.541-63.591L-11.541-62.670L-10.595-62.670Q-10.388-62.646-10.349-62.439L-10.349-62.349Q-10.388-62.134-10.595-62.111L-12.892-62.111Q-13.084-62.134-13.142-62.349M-8.263-62.349L-8.263-62.439Q-8.213-62.646-8.013-62.670L-7.197-62.670L-7.197-65.853Q-7.576-65.545-8.029-65.545Q-8.259-65.545-8.310-65.775L-8.310-65.865Q-8.259-66.080-8.064-66.103Q-7.736-66.103-7.482-66.341Q-7.228-66.580-7.088-66.927Q-7.017-67.056-6.861-67.080L-6.806-67.080Q-6.611-67.060-6.560-66.845L-6.560-62.670L-5.744-62.670Q-5.545-62.646-5.494-62.439L-5.494-62.349Q-5.545-62.134-5.744-62.111L-8.013-62.111Q-8.213-62.134-8.263-62.349M-2.752-62.033Q-3.185-62.033-3.517-62.271Q-3.849-62.509-4.070-62.898Q-4.291-63.287-4.398-63.724Q-4.506-64.162-4.506-64.560Q-4.506-64.951-4.396-65.394Q-4.287-65.838-4.070-66.218Q-3.853-66.599-3.519-66.840Q-3.185-67.080-2.752-67.080Q-2.197-67.080-1.797-66.681Q-1.396-66.283-1.199-65.697Q-1.002-65.111-1.002-64.560Q-1.002-64.006-1.199-63.418Q-1.396-62.830-1.797-62.431Q-2.197-62.033-2.752-62.033M-2.752-62.591Q-2.451-62.591-2.234-62.808Q-2.017-63.025-1.890-63.353Q-1.763-63.681-1.703-64.027Q-1.642-64.373-1.642-64.654Q-1.642-64.904-1.705-65.230Q-1.767-65.556-1.898-65.847Q-2.029-66.138-2.242-66.328Q-2.455-66.517-2.752-66.517Q-3.127-66.517-3.379-66.205Q-3.631-65.892-3.748-65.459Q-3.865-65.025-3.865-64.654Q-3.865-64.256-3.752-63.775Q-3.638-63.295-3.390-62.943Q-3.142-62.591-2.752-62.591M1.092-60.998Q0.979-60.998 0.889-61.088Q0.799-61.177 0.799-61.287Q0.799-61.463 0.991-61.537Q1.209-61.588 1.381-61.746Q1.553-61.904 1.619-62.127Q1.596-62.127 1.565-62.111L1.502-62.111Q1.272-62.111 1.106-62.273Q0.940-62.435 0.940-62.670Q0.940-62.904 1.104-63.064Q1.268-63.224 1.502-63.224Q1.713-63.224 1.877-63.103Q2.041-62.982 2.131-62.789Q2.221-62.595 2.221-62.384Q2.221-61.908 1.922-61.519Q1.623-61.131 1.159-61.006Q1.135-60.998 1.092-60.998M4.299-61.752Q4.299-61.806 4.323-61.873L6.588-67.478Q6.682-67.662 6.877-67.662Q7.002-67.662 7.090-67.574Q7.178-67.486 7.178-67.357Q7.178-67.298 7.155-67.240L4.893-61.631Q4.791-61.447 4.612-61.447Q4.487-61.447 4.393-61.537Q4.299-61.627 4.299-61.752M6.877-61.447Q6.526-61.447 6.344-61.787Q6.162-62.127 6.162-62.509Q6.162-62.896 6.342-63.236Q6.522-63.576 6.877-63.576Q7.116-63.576 7.274-63.406Q7.432-63.236 7.506-62.992Q7.580-62.748 7.580-62.509Q7.580-62.275 7.506-62.031Q7.432-61.787 7.274-61.617Q7.116-61.447 6.877-61.447M6.877-62.006Q6.959-62.037 7.006-62.205Q7.053-62.373 7.053-62.509Q7.053-62.646 7.006-62.816Q6.959-62.986 6.877-63.013Q6.791-62.986 6.741-62.818Q6.690-62.650 6.690-62.509Q6.690-62.381 6.741-62.209Q6.791-62.037 6.877-62.006M4.612-65.525Q4.369-65.525 4.209-65.695Q4.049-65.865 3.975-66.111Q3.901-66.357 3.901-66.599Q3.901-66.982 4.080-67.322Q4.260-67.662 4.612-67.662Q4.850-67.662 5.008-67.492Q5.166-67.322 5.241-67.078Q5.315-66.834 5.315-66.599Q5.315-66.357 5.241-66.111Q5.166-65.865 5.008-65.695Q4.850-65.525 4.612-65.525M4.612-66.088Q4.701-66.131 4.744-66.287Q4.787-66.443 4.787-66.599Q4.787-66.728 4.741-66.904Q4.694-67.080 4.604-67.103Q4.588-67.103 4.559-67.068Q4.530-67.033 4.522-67.013Q4.428-66.826 4.428-66.599Q4.428-66.463 4.477-66.291Q4.526-66.119 4.612-66.088M8.088-62.349L8.088-62.439Q8.147-62.646 8.338-62.670L9.049-62.670L9.049-64.998L8.338-64.998Q8.143-65.021 8.088-65.240L8.088-65.326Q8.147-65.537 8.338-65.560L9.440-65.560Q9.639-65.541 9.690-65.326L9.690-64.998Q9.951-65.283 10.307-65.441Q10.662-65.599 11.049-65.599Q11.342-65.599 11.576-65.465Q11.811-65.330 11.811-65.064Q11.811-64.896 11.701-64.779Q11.592-64.662 11.424-64.662Q11.272-64.662 11.157-64.773Q11.041-64.884 11.041-65.041Q10.666-65.041 10.352-64.840Q10.037-64.638 9.864-64.304Q9.690-63.970 9.690-63.591L9.690-62.670L10.635-62.670Q10.842-62.646 10.881-62.439L10.881-62.349Q10.842-62.134 10.635-62.111L8.338-62.111Q8.147-62.134 8.088-62.349M12.518-63.224Q12.518-63.670 12.932-63.927Q13.346-64.185 13.887-64.285Q14.428-64.384 14.936-64.392Q14.936-64.607 14.801-64.759Q14.666-64.912 14.459-64.988Q14.252-65.064 14.041-65.064Q13.698-65.064 13.537-65.041L13.537-64.982Q13.537-64.814 13.418-64.699Q13.299-64.584 13.135-64.584Q12.959-64.584 12.844-64.707Q12.729-64.830 12.729-64.998Q12.729-65.404 13.110-65.513Q13.491-65.623 14.049-65.623Q14.319-65.623 14.586-65.545Q14.854-65.466 15.078-65.316Q15.303-65.166 15.440-64.945Q15.576-64.724 15.576-64.447L15.576-62.728Q15.576-62.670 16.104-62.670Q16.299-62.650 16.350-62.439L16.350-62.349Q16.299-62.134 16.104-62.111L15.959-62.111Q15.616-62.111 15.387-62.158Q15.159-62.205 15.014-62.392Q14.553-62.072 13.846-62.072Q13.510-62.072 13.205-62.213Q12.901-62.353 12.709-62.615Q12.518-62.877 12.518-63.224M13.159-63.216Q13.159-62.943 13.401-62.787Q13.643-62.631 13.928-62.631Q14.147-62.631 14.379-62.689Q14.612-62.748 14.774-62.886Q14.936-63.025 14.936-63.248L14.936-63.838Q14.655-63.838 14.239-63.781Q13.823-63.724 13.491-63.586Q13.159-63.447 13.159-63.216M16.616-62.349L16.616-62.439Q16.655-62.646 16.862-62.670L17.268-62.670L18.198-63.888L17.326-64.998L16.909-64.998Q16.713-65.017 16.662-65.240L16.662-65.326Q16.713-65.537 16.909-65.560L18.069-65.560Q18.268-65.537 18.319-65.326L18.319-65.240Q18.268-65.021 18.069-64.998L17.959-64.998L18.455-64.341L18.932-64.998L18.815-64.998Q18.616-65.021 18.565-65.240L18.565-65.326Q18.616-65.537 18.815-65.560L19.975-65.560Q20.170-65.541 20.221-65.326L20.221-65.240Q20.170-65.021 19.975-64.998L19.565-64.998L18.717-63.888L19.678-62.670L20.084-62.670Q20.284-62.646 20.334-62.439L20.334-62.349Q20.295-62.134 20.084-62.111L18.932-62.111Q18.725-62.134 18.686-62.349L18.686-62.439Q18.725-62.646 18.932-62.670L19.061-62.670L18.455-63.525L17.869-62.670L18.014-62.670Q18.221-62.646 18.260-62.439L18.260-62.349Q18.221-62.134 18.014-62.111L16.862-62.111Q16.666-62.131 16.616-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 184.542)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-23.564-63.455L-25.634-63.455Q-25.830-63.478-25.884-63.697L-25.884-63.935Q-25.884-64.009-25.841-64.080L-23.994-66.951Q-23.908-67.080-23.756-67.080L-23.298-67.080Q-23.189-67.080-23.111-67.002Q-23.033-66.923-23.033-66.814L-23.033-64.013L-22.369-64.013Q-22.173-63.990-22.123-63.783L-22.123-63.697Q-22.173-63.478-22.369-63.455L-23.033-63.455L-23.033-62.670L-22.459-62.670Q-22.252-62.646-22.213-62.439L-22.213-62.349Q-22.252-62.134-22.459-62.111L-24.138-62.111Q-24.345-62.134-24.388-62.349L-24.388-62.439Q-24.345-62.646-24.138-62.670L-23.564-62.670L-23.564-63.455M-23.564-66.607L-25.236-64.013L-23.564-64.013L-23.564-66.607M-21.470-63.224Q-21.470-63.670-21.056-63.927Q-20.642-64.185-20.101-64.285Q-19.560-64.384-19.052-64.392Q-19.052-64.607-19.187-64.759Q-19.322-64.912-19.529-64.988Q-19.736-65.064-19.947-65.064Q-20.291-65.064-20.451-65.041L-20.451-64.982Q-20.451-64.814-20.570-64.699Q-20.689-64.584-20.853-64.584Q-21.029-64.584-21.144-64.707Q-21.259-64.830-21.259-64.998Q-21.259-65.404-20.879-65.513Q-20.498-65.623-19.939-65.623Q-19.670-65.623-19.402-65.545Q-19.134-65.466-18.910-65.316Q-18.685-65.166-18.548-64.945Q-18.412-64.724-18.412-64.447L-18.412-62.728Q-18.412-62.670-17.884-62.670Q-17.689-62.650-17.638-62.439L-17.638-62.349Q-17.689-62.134-17.884-62.111L-18.029-62.111Q-18.373-62.111-18.601-62.158Q-18.830-62.205-18.974-62.392Q-19.435-62.072-20.142-62.072Q-20.478-62.072-20.783-62.213Q-21.088-62.353-21.279-62.615Q-21.470-62.877-21.470-63.224M-20.830-63.216Q-20.830-62.943-20.588-62.787Q-20.345-62.631-20.060-62.631Q-19.841-62.631-19.609-62.689Q-19.377-62.748-19.215-62.886Q-19.052-63.025-19.052-63.248L-19.052-63.838Q-19.334-63.838-19.750-63.781Q-20.166-63.724-20.498-63.586Q-20.830-63.447-20.830-63.216\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 184.542)\">\u003Cpath d=\"M-36.740-62.033Q-37.381-62.033-37.767-62.410Q-38.154-62.787-38.312-63.359Q-38.470-63.931-38.470-64.560Q-38.470-65.025-38.310-65.480Q-38.150-65.935-37.861-66.295Q-37.572-66.654-37.164-66.867Q-36.756-67.080-36.267-67.080Q-35.994-67.080-35.744-66.982Q-35.494-66.884-35.341-66.689Q-35.189-66.494-35.189-66.201Q-35.189-66.025-35.302-65.904Q-35.416-65.783-35.588-65.783Q-35.763-65.783-35.881-65.896Q-35.998-66.009-35.998-66.181Q-35.998-66.302-35.923-66.423Q-36.033-66.517-36.267-66.517Q-36.685-66.517-37.021-66.277Q-37.357-66.037-37.562-65.650Q-37.767-65.263-37.814-64.865Q-37.576-65.064-37.267-65.172Q-36.959-65.279-36.638-65.279Q-36.298-65.279-36-65.154Q-35.701-65.029-35.482-64.810Q-35.263-64.591-35.138-64.293Q-35.013-63.994-35.013-63.654Q-35.013-63.306-35.152-63.006Q-35.291-62.705-35.531-62.488Q-35.771-62.271-36.086-62.152Q-36.400-62.033-36.740-62.033M-37.724-63.576Q-37.662-63.314-37.533-63.090Q-37.404-62.865-37.205-62.728Q-37.006-62.591-36.740-62.591Q-36.287-62.591-35.970-62.898Q-35.654-63.205-35.654-63.654Q-35.654-63.935-35.789-64.181Q-35.923-64.427-36.160-64.570Q-36.396-64.713-36.693-64.713Q-37.084-64.713-37.416-64.486Q-37.748-64.259-37.748-63.888Q-37.748-63.849-37.732-63.771Q-37.716-63.693-37.716-63.654Q-37.716-63.627-37.718-63.611Q-37.720-63.595-37.724-63.576M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 184.542)\">\u003Cpath d=\"M-25.759-63.525Q-25.759-63.810-25.603-64.064Q-25.447-64.318-25.197-64.492Q-24.947-64.666-24.662-64.752Q-24.900-64.826-25.127-64.968Q-25.353-65.111-25.496-65.320Q-25.638-65.529-25.638-65.775Q-25.638-66.173-25.392-66.468Q-25.146-66.763-24.763-66.922Q-24.381-67.080-23.990-67.080Q-23.599-67.080-23.216-66.922Q-22.834-66.763-22.588-66.465Q-22.341-66.166-22.341-65.775Q-22.341-65.529-22.484-65.322Q-22.627-65.115-22.853-64.970Q-23.080-64.826-23.318-64.752Q-22.865-64.615-22.545-64.289Q-22.224-63.963-22.224-63.525Q-22.224-63.088-22.482-62.744Q-22.740-62.400-23.150-62.216Q-23.560-62.033-23.990-62.033Q-24.420-62.033-24.830-62.215Q-25.240-62.396-25.500-62.740Q-25.759-63.084-25.759-63.525M-25.119-63.525Q-25.119-63.252-24.953-63.037Q-24.787-62.822-24.525-62.707Q-24.263-62.591-23.990-62.591Q-23.716-62.591-23.457-62.707Q-23.197-62.822-23.031-63.039Q-22.865-63.256-22.865-63.525Q-22.865-63.802-23.031-64.019Q-23.197-64.236-23.457-64.353Q-23.716-64.470-23.990-64.470Q-24.263-64.470-24.525-64.353Q-24.787-64.236-24.953-64.021Q-25.119-63.806-25.119-63.525M-24.998-65.775Q-24.998-65.537-24.841-65.369Q-24.685-65.201-24.449-65.117Q-24.213-65.033-23.990-65.033Q-23.771-65.033-23.533-65.117Q-23.295-65.201-23.138-65.371Q-22.982-65.541-22.982-65.775Q-22.982-66.009-23.138-66.179Q-23.295-66.349-23.533-66.433Q-23.771-66.517-23.990-66.517Q-24.213-66.517-24.449-66.433Q-24.685-66.349-24.841-66.181Q-24.998-66.013-24.998-65.775M-20.529-62.326L-20.529-62.384Q-20.529-62.927-20.424-63.474Q-20.318-64.021-20.113-64.545Q-19.908-65.068-19.611-65.547Q-19.314-66.025-18.935-66.439L-20.873-66.439L-20.873-66.302Q-20.924-66.088-21.123-66.064L-21.263-66.064Q-21.463-66.088-21.513-66.302L-21.513-66.896Q-21.463-67.107-21.263-67.127L-21.123-67.127Q-20.986-67.115-20.912-66.998L-18.224-66.998Q-18.029-66.974-17.978-66.767L-17.978-66.677Q-17.990-66.588-18.033-66.537Q-18.295-66.279-18.525-66.013Q-18.756-65.748-18.918-65.515Q-19.080-65.283-19.238-64.984Q-19.396-64.685-19.529-64.334Q-19.705-63.861-19.797-63.345Q-19.888-62.830-19.888-62.326Q-19.900-62.201-19.986-62.123Q-20.072-62.045-20.193-62.033Q-20.330-62.033-20.424-62.111Q-20.517-62.189-20.529-62.326\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 183.986)\">\u003Cpath d=\"M-38.455-63.224Q-38.455-63.670-38.041-63.927Q-37.627-64.185-37.086-64.285Q-36.545-64.384-36.037-64.392Q-36.037-64.607-36.172-64.759Q-36.306-64.912-36.513-64.988Q-36.720-65.064-36.931-65.064Q-37.275-65.064-37.435-65.041L-37.435-64.982Q-37.435-64.814-37.554-64.699Q-37.673-64.584-37.838-64.584Q-38.013-64.584-38.129-64.707Q-38.244-64.830-38.244-64.998Q-38.244-65.404-37.863-65.513Q-37.482-65.623-36.923-65.623Q-36.654-65.623-36.386-65.545Q-36.119-65.466-35.894-65.316Q-35.670-65.166-35.533-64.945Q-35.396-64.724-35.396-64.447L-35.396-62.728Q-35.396-62.670-34.869-62.670Q-34.673-62.650-34.623-62.439L-34.623-62.349Q-34.673-62.134-34.869-62.111L-35.013-62.111Q-35.357-62.111-35.586-62.158Q-35.814-62.205-35.959-62.392Q-36.420-62.072-37.127-62.072Q-37.463-62.072-37.767-62.213Q-38.072-62.353-38.263-62.615Q-38.455-62.877-38.455-63.224M-37.814-63.216Q-37.814-62.943-37.572-62.787Q-37.330-62.631-37.045-62.631Q-36.826-62.631-36.593-62.689Q-36.361-62.748-36.199-62.886Q-36.037-63.025-36.037-63.248L-36.037-63.838Q-36.318-63.838-36.734-63.781Q-37.150-63.724-37.482-63.586Q-37.814-63.447-37.814-63.216M-32.752-62.072Q-33.216-62.072-33.582-62.322Q-33.947-62.572-34.152-62.976Q-34.357-63.381-34.357-63.838Q-34.357-64.181-34.232-64.502Q-34.107-64.822-33.875-65.072Q-33.642-65.322-33.338-65.461Q-33.033-65.599-32.677-65.599Q-32.166-65.599-31.759-65.279L-31.759-66.439L-32.181-66.439Q-32.392-66.463-32.431-66.677L-32.431-66.767Q-32.392-66.974-32.181-66.998L-31.369-66.998Q-31.170-66.974-31.119-66.767L-31.119-62.670L-30.693-62.670Q-30.486-62.646-30.447-62.439L-30.447-62.349Q-30.486-62.134-30.693-62.111L-31.509-62.111Q-31.709-62.134-31.759-62.349L-31.759-62.478Q-31.955-62.287-32.216-62.179Q-32.478-62.072-32.752-62.072M-32.713-62.631Q-32.353-62.631-32.101-62.900Q-31.849-63.170-31.759-63.545L-31.759-64.377Q-31.818-64.564-31.945-64.715Q-32.072-64.865-32.250-64.953Q-32.427-65.041-32.623-65.041Q-32.931-65.041-33.181-64.871Q-33.431-64.701-33.576-64.416Q-33.720-64.131-33.720-63.830Q-33.720-63.381-33.435-63.006Q-33.150-62.631-32.713-62.631M-28.506-62.072Q-28.970-62.072-29.336-62.322Q-29.701-62.572-29.906-62.976Q-30.111-63.381-30.111-63.838Q-30.111-64.181-29.986-64.502Q-29.861-64.822-29.629-65.072Q-29.396-65.322-29.091-65.461Q-28.787-65.599-28.431-65.599Q-27.920-65.599-27.513-65.279L-27.513-66.439L-27.935-66.439Q-28.146-66.463-28.185-66.677L-28.185-66.767Q-28.146-66.974-27.935-66.998L-27.123-66.998Q-26.923-66.974-26.873-66.767L-26.873-62.670L-26.447-62.670Q-26.240-62.646-26.201-62.439L-26.201-62.349Q-26.240-62.134-26.447-62.111L-27.263-62.111Q-27.463-62.134-27.513-62.349L-27.513-62.478Q-27.709-62.287-27.970-62.179Q-28.232-62.072-28.506-62.072M-28.466-62.631Q-28.107-62.631-27.855-62.900Q-27.603-63.170-27.513-63.545L-27.513-64.377Q-27.572-64.564-27.699-64.715Q-27.826-64.865-28.004-64.953Q-28.181-65.041-28.377-65.041Q-28.685-65.041-28.935-64.871Q-29.185-64.701-29.330-64.416Q-29.474-64.131-29.474-63.830Q-29.474-63.381-29.189-63.006Q-28.904-62.631-28.466-62.631M-23.810-60.568L-23.810-60.654Q-23.759-60.873-23.564-60.896L-23.099-60.896L-23.099-62.494Q-23.552-62.072-24.162-62.072Q-24.517-62.072-24.822-62.215Q-25.127-62.357-25.359-62.607Q-25.591-62.857-25.716-63.179Q-25.841-63.502-25.841-63.838Q-25.841-64.322-25.603-64.722Q-25.365-65.123-24.959-65.361Q-24.552-65.599-24.076-65.599Q-23.513-65.599-23.099-65.209L-23.099-65.369Q-23.048-65.580-22.849-65.599L-22.709-65.599Q-22.509-65.576-22.459-65.369L-22.459-60.896L-21.994-60.896Q-21.798-60.873-21.748-60.654L-21.748-60.568Q-21.798-60.357-21.994-60.334L-23.564-60.334Q-23.759-60.357-23.810-60.568M-24.115-62.631Q-23.744-62.631-23.468-62.884Q-23.193-63.138-23.099-63.502L-23.099-64.119Q-23.142-64.357-23.265-64.570Q-23.388-64.783-23.586-64.912Q-23.783-65.041-24.025-65.041Q-24.341-65.041-24.613-64.875Q-24.884-64.709-25.043-64.427Q-25.201-64.146-25.201-63.830Q-25.201-63.365-24.886-62.998Q-24.572-62.631-24.115-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 183.986)\">\u003Cpath d=\"M-16.931-61.752Q-16.931-61.806-16.908-61.873L-14.642-67.478Q-14.549-67.662-14.353-67.662Q-14.228-67.662-14.140-67.574Q-14.052-67.486-14.052-67.357Q-14.052-67.298-14.076-67.240L-16.338-61.631Q-16.439-61.447-16.619-61.447Q-16.744-61.447-16.838-61.537Q-16.931-61.627-16.931-61.752M-14.353-61.447Q-14.705-61.447-14.886-61.787Q-15.068-62.127-15.068-62.509Q-15.068-62.896-14.888-63.236Q-14.709-63.576-14.353-63.576Q-14.115-63.576-13.957-63.406Q-13.799-63.236-13.724-62.992Q-13.650-62.748-13.650-62.509Q-13.650-62.275-13.724-62.031Q-13.799-61.787-13.957-61.617Q-14.115-61.447-14.353-61.447M-14.353-62.006Q-14.271-62.037-14.224-62.205Q-14.177-62.373-14.177-62.509Q-14.177-62.646-14.224-62.816Q-14.271-62.986-14.353-63.013Q-14.439-62.986-14.490-62.818Q-14.541-62.650-14.541-62.509Q-14.541-62.381-14.490-62.209Q-14.439-62.037-14.353-62.006M-16.619-65.525Q-16.861-65.525-17.021-65.695Q-17.181-65.865-17.256-66.111Q-17.330-66.357-17.330-66.599Q-17.330-66.982-17.150-67.322Q-16.970-67.662-16.619-67.662Q-16.381-67.662-16.222-67.492Q-16.064-67.322-15.990-67.078Q-15.916-66.834-15.916-66.599Q-15.916-66.357-15.990-66.111Q-16.064-65.865-16.222-65.695Q-16.381-65.525-16.619-65.525M-16.619-66.088Q-16.529-66.131-16.486-66.287Q-16.443-66.443-16.443-66.599Q-16.443-66.728-16.490-66.904Q-16.537-67.080-16.627-67.103Q-16.642-67.103-16.672-67.068Q-16.701-67.033-16.709-67.013Q-16.802-66.826-16.802-66.599Q-16.802-66.463-16.754-66.291Q-16.705-66.119-16.619-66.088M-13.142-62.349L-13.142-62.439Q-13.084-62.646-12.892-62.670L-12.181-62.670L-12.181-64.998L-12.892-64.998Q-13.088-65.021-13.142-65.240L-13.142-65.326Q-13.084-65.537-12.892-65.560L-11.791-65.560Q-11.591-65.541-11.541-65.326L-11.541-64.998Q-11.279-65.283-10.924-65.441Q-10.568-65.599-10.181-65.599Q-9.888-65.599-9.654-65.465Q-9.420-65.330-9.420-65.064Q-9.420-64.896-9.529-64.779Q-9.638-64.662-9.806-64.662Q-9.959-64.662-10.074-64.773Q-10.189-64.884-10.189-65.041Q-10.564-65.041-10.879-64.840Q-11.193-64.638-11.367-64.304Q-11.541-63.970-11.541-63.591L-11.541-62.670L-10.595-62.670Q-10.388-62.646-10.349-62.439L-10.349-62.349Q-10.388-62.134-10.595-62.111L-12.892-62.111Q-13.084-62.134-13.142-62.349M-8.767-63.525Q-8.767-63.810-8.611-64.064Q-8.455-64.318-8.205-64.492Q-7.955-64.666-7.670-64.752Q-7.908-64.826-8.134-64.968Q-8.361-65.111-8.504-65.320Q-8.646-65.529-8.646-65.775Q-8.646-66.173-8.400-66.468Q-8.154-66.763-7.771-66.922Q-7.388-67.080-6.998-67.080Q-6.607-67.080-6.224-66.922Q-5.841-66.763-5.595-66.465Q-5.349-66.166-5.349-65.775Q-5.349-65.529-5.492-65.322Q-5.634-65.115-5.861-64.970Q-6.088-64.826-6.326-64.752Q-5.873-64.615-5.552-64.289Q-5.232-63.963-5.232-63.525Q-5.232-63.088-5.490-62.744Q-5.748-62.400-6.158-62.216Q-6.568-62.033-6.998-62.033Q-7.427-62.033-7.838-62.215Q-8.248-62.396-8.507-62.740Q-8.767-63.084-8.767-63.525M-8.127-63.525Q-8.127-63.252-7.961-63.037Q-7.795-62.822-7.533-62.707Q-7.271-62.591-6.998-62.591Q-6.724-62.591-6.465-62.707Q-6.205-62.822-6.039-63.039Q-5.873-63.256-5.873-63.525Q-5.873-63.802-6.039-64.019Q-6.205-64.236-6.465-64.353Q-6.724-64.470-6.998-64.470Q-7.271-64.470-7.533-64.353Q-7.795-64.236-7.961-64.021Q-8.127-63.806-8.127-63.525M-8.006-65.775Q-8.006-65.537-7.849-65.369Q-7.693-65.201-7.457-65.117Q-7.220-65.033-6.998-65.033Q-6.779-65.033-6.541-65.117Q-6.302-65.201-6.146-65.371Q-5.990-65.541-5.990-65.775Q-5.990-66.009-6.146-66.179Q-6.302-66.349-6.541-66.433Q-6.779-66.517-6.998-66.517Q-7.220-66.517-7.457-66.433Q-7.693-66.349-7.849-66.181Q-8.006-66.013-8.006-65.775M-3.154-60.998Q-3.267-60.998-3.357-61.088Q-3.447-61.177-3.447-61.287Q-3.447-61.463-3.256-61.537Q-3.037-61.588-2.865-61.746Q-2.693-61.904-2.627-62.127Q-2.650-62.127-2.681-62.111L-2.744-62.111Q-2.974-62.111-3.140-62.273Q-3.306-62.435-3.306-62.670Q-3.306-62.904-3.142-63.064Q-2.978-63.224-2.744-63.224Q-2.533-63.224-2.369-63.103Q-2.205-62.982-2.115-62.789Q-2.025-62.595-2.025-62.384Q-2.025-61.908-2.324-61.519Q-2.623-61.131-3.088-61.006Q-3.111-60.998-3.154-60.998M0.053-61.752Q0.053-61.806 0.076-61.873L2.342-67.478Q2.436-67.662 2.631-67.662Q2.756-67.662 2.844-67.574Q2.932-67.486 2.932-67.357Q2.932-67.298 2.909-67.240L0.647-61.631Q0.545-61.447 0.366-61.447Q0.241-61.447 0.147-61.537Q0.053-61.627 0.053-61.752M2.631-61.447Q2.280-61.447 2.098-61.787Q1.916-62.127 1.916-62.509Q1.916-62.896 2.096-63.236Q2.276-63.576 2.631-63.576Q2.869-63.576 3.028-63.406Q3.186-63.236 3.260-62.992Q3.334-62.748 3.334-62.509Q3.334-62.275 3.260-62.031Q3.186-61.787 3.028-61.617Q2.869-61.447 2.631-61.447M2.631-62.006Q2.713-62.037 2.760-62.205Q2.807-62.373 2.807-62.509Q2.807-62.646 2.760-62.816Q2.713-62.986 2.631-63.013Q2.545-62.986 2.494-62.818Q2.444-62.650 2.444-62.509Q2.444-62.381 2.494-62.209Q2.545-62.037 2.631-62.006M0.366-65.525Q0.123-65.525-0.037-65.695Q-0.197-65.865-0.271-66.111Q-0.345-66.357-0.345-66.599Q-0.345-66.982-0.166-67.322Q0.014-67.662 0.366-67.662Q0.604-67.662 0.762-67.492Q0.920-67.322 0.994-67.078Q1.069-66.834 1.069-66.599Q1.069-66.357 0.994-66.111Q0.920-65.865 0.762-65.695Q0.604-65.525 0.366-65.525M0.366-66.088Q0.455-66.131 0.498-66.287Q0.541-66.443 0.541-66.599Q0.541-66.728 0.494-66.904Q0.448-67.080 0.358-67.103Q0.342-67.103 0.313-67.068Q0.284-67.033 0.276-67.013Q0.182-66.826 0.182-66.599Q0.182-66.463 0.231-66.291Q0.280-66.119 0.366-66.088M3.842-62.349L3.842-62.439Q3.901-62.646 4.092-62.670L4.803-62.670L4.803-64.998L4.092-64.998Q3.897-65.021 3.842-65.240L3.842-65.326Q3.901-65.537 4.092-65.560L5.194-65.560Q5.393-65.541 5.444-65.326L5.444-64.998Q5.705-65.283 6.061-65.441Q6.416-65.599 6.803-65.599Q7.096-65.599 7.330-65.465Q7.565-65.330 7.565-65.064Q7.565-64.896 7.455-64.779Q7.346-64.662 7.178-64.662Q7.026-64.662 6.910-64.773Q6.795-64.884 6.795-65.041Q6.420-65.041 6.106-64.840Q5.791-64.638 5.618-64.304Q5.444-63.970 5.444-63.591L5.444-62.670L6.389-62.670Q6.596-62.646 6.635-62.439L6.635-62.349Q6.596-62.134 6.389-62.111L4.092-62.111Q3.901-62.134 3.842-62.349M9.729-62.072Q9.264-62.072 8.899-62.322Q8.534-62.572 8.328-62.976Q8.123-63.381 8.123-63.838Q8.123-64.181 8.248-64.502Q8.373-64.822 8.606-65.072Q8.838-65.322 9.143-65.461Q9.448-65.599 9.803-65.599Q10.315-65.599 10.721-65.279L10.721-66.439L10.299-66.439Q10.088-66.463 10.049-66.677L10.049-66.767Q10.088-66.974 10.299-66.998L11.112-66.998Q11.311-66.974 11.362-66.767L11.362-62.670L11.787-62.670Q11.994-62.646 12.034-62.439L12.034-62.349Q11.994-62.134 11.787-62.111L10.971-62.111Q10.772-62.134 10.721-62.349L10.721-62.478Q10.526-62.287 10.264-62.179Q10.002-62.072 9.729-62.072M9.768-62.631Q10.127-62.631 10.379-62.900Q10.631-63.170 10.721-63.545L10.721-64.377Q10.662-64.564 10.535-64.715Q10.409-64.865 10.231-64.953Q10.053-65.041 9.858-65.041Q9.549-65.041 9.299-64.871Q9.049-64.701 8.905-64.416Q8.760-64.131 8.760-63.830Q8.760-63.381 9.045-63.006Q9.330-62.631 9.768-62.631M12.729-62.349L12.729-62.439Q12.780-62.646 12.975-62.670L14.014-62.670L14.014-64.998L13.041-64.998Q12.842-65.021 12.791-65.240L12.791-65.326Q12.842-65.537 13.041-65.560L14.409-65.560Q14.604-65.541 14.655-65.326L14.655-62.670L15.569-62.670Q15.764-62.646 15.815-62.439L15.815-62.349Q15.764-62.134 15.569-62.111L12.975-62.111Q12.780-62.134 12.729-62.349M13.760-66.537L13.760-66.591Q13.760-66.763 13.897-66.884Q14.034-67.006 14.209-67.006Q14.381-67.006 14.518-66.884Q14.655-66.763 14.655-66.591L14.655-66.537Q14.655-66.361 14.518-66.240Q14.381-66.119 14.209-66.119Q14.034-66.119 13.897-66.240Q13.760-66.361 13.760-66.537\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 201.614)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-23.564-63.455L-25.634-63.455Q-25.830-63.478-25.884-63.697L-25.884-63.935Q-25.884-64.009-25.841-64.080L-23.994-66.951Q-23.908-67.080-23.756-67.080L-23.298-67.080Q-23.189-67.080-23.111-67.002Q-23.033-66.923-23.033-66.814L-23.033-64.013L-22.369-64.013Q-22.173-63.990-22.123-63.783L-22.123-63.697Q-22.173-63.478-22.369-63.455L-23.033-63.455L-23.033-62.670L-22.459-62.670Q-22.252-62.646-22.213-62.439L-22.213-62.349Q-22.252-62.134-22.459-62.111L-24.138-62.111Q-24.345-62.134-24.388-62.349L-24.388-62.439Q-24.345-62.646-24.138-62.670L-23.564-62.670L-23.564-63.455M-23.564-66.607L-25.236-64.013L-23.564-64.013L-23.564-66.607M-21.318-63.838Q-21.318-64.318-21.074-64.732Q-20.830-65.146-20.414-65.384Q-19.998-65.623-19.517-65.623Q-18.963-65.623-18.584-65.513Q-18.205-65.404-18.205-64.998Q-18.205-64.830-18.318-64.707Q-18.431-64.584-18.603-64.584Q-18.775-64.584-18.894-64.699Q-19.013-64.814-19.013-64.982L-19.013-65.041Q-19.173-65.064-19.509-65.064Q-19.838-65.064-20.105-64.894Q-20.373-64.724-20.525-64.441Q-20.677-64.158-20.677-63.838Q-20.677-63.517-20.506-63.236Q-20.334-62.955-20.048-62.793Q-19.763-62.631-19.435-62.631Q-19.123-62.631-18.996-62.734Q-18.869-62.838-18.752-63.027Q-18.634-63.216-18.517-63.232L-18.349-63.232Q-18.244-63.220-18.179-63.152Q-18.115-63.084-18.115-62.982Q-18.115-62.935-18.134-62.896Q-18.244-62.603-18.447-62.423Q-18.650-62.244-18.925-62.158Q-19.201-62.072-19.517-62.072Q-20.002-62.072-20.418-62.310Q-20.834-62.548-21.076-62.951Q-21.318-63.353-21.318-63.838\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 201.614)\">\u003Cpath d=\"M-36.740-62.033Q-37.381-62.033-37.767-62.410Q-38.154-62.787-38.312-63.359Q-38.470-63.931-38.470-64.560Q-38.470-65.025-38.310-65.480Q-38.150-65.935-37.861-66.295Q-37.572-66.654-37.164-66.867Q-36.756-67.080-36.267-67.080Q-35.994-67.080-35.744-66.982Q-35.494-66.884-35.341-66.689Q-35.189-66.494-35.189-66.201Q-35.189-66.025-35.302-65.904Q-35.416-65.783-35.588-65.783Q-35.763-65.783-35.881-65.896Q-35.998-66.009-35.998-66.181Q-35.998-66.302-35.923-66.423Q-36.033-66.517-36.267-66.517Q-36.685-66.517-37.021-66.277Q-37.357-66.037-37.562-65.650Q-37.767-65.263-37.814-64.865Q-37.576-65.064-37.267-65.172Q-36.959-65.279-36.638-65.279Q-36.298-65.279-36-65.154Q-35.701-65.029-35.482-64.810Q-35.263-64.591-35.138-64.293Q-35.013-63.994-35.013-63.654Q-35.013-63.306-35.152-63.006Q-35.291-62.705-35.531-62.488Q-35.771-62.271-36.086-62.152Q-36.400-62.033-36.740-62.033M-37.724-63.576Q-37.662-63.314-37.533-63.090Q-37.404-62.865-37.205-62.728Q-37.006-62.591-36.740-62.591Q-36.287-62.591-35.970-62.898Q-35.654-63.205-35.654-63.654Q-35.654-63.935-35.789-64.181Q-35.923-64.427-36.160-64.570Q-36.396-64.713-36.693-64.713Q-37.084-64.713-37.416-64.486Q-37.748-64.259-37.748-63.888Q-37.748-63.849-37.732-63.771Q-37.716-63.693-37.716-63.654Q-37.716-63.627-37.718-63.611Q-37.720-63.595-37.724-63.576M-33.759-62.349L-33.759-62.439Q-33.709-62.646-33.509-62.670L-32.693-62.670L-32.693-65.853Q-33.072-65.545-33.525-65.545Q-33.756-65.545-33.806-65.775L-33.806-65.865Q-33.756-66.080-33.560-66.103Q-33.232-66.103-32.978-66.341Q-32.724-66.580-32.584-66.927Q-32.513-67.056-32.357-67.080L-32.302-67.080Q-32.107-67.060-32.056-66.845L-32.056-62.670L-31.240-62.670Q-31.041-62.646-30.990-62.439L-30.990-62.349Q-31.041-62.134-31.240-62.111L-33.509-62.111Q-33.709-62.134-33.759-62.349\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 201.614)\">\u003Cpath d=\"M-25.545-62.912Q-25.545-63.088-25.429-63.211Q-25.314-63.334-25.134-63.334Q-24.966-63.334-24.851-63.218Q-24.736-63.103-24.736-62.927Q-24.736-62.806-24.799-62.705Q-24.650-62.591-24.341-62.591Q-24.037-62.591-23.783-62.742Q-23.529-62.892-23.347-63.138Q-23.166-63.384-23.058-63.677Q-22.951-63.970-22.920-64.248Q-23.158-64.048-23.466-63.943Q-23.775-63.838-24.095-63.838Q-24.541-63.838-24.914-64.054Q-25.287-64.271-25.504-64.640Q-25.720-65.009-25.720-65.455Q-25.720-65.927-25.474-66.298Q-25.228-66.670-24.822-66.875Q-24.416-67.080-23.943-67.080Q-23.459-67.080-23.127-66.851Q-22.795-66.623-22.607-66.250Q-22.420-65.877-22.341-65.447Q-22.263-65.017-22.263-64.560Q-22.263-63.951-22.517-63.363Q-22.771-62.775-23.248-62.404Q-23.724-62.033-24.341-62.033Q-24.838-62.033-25.191-62.242Q-25.545-62.451-25.545-62.912M-24.041-64.400Q-23.654-64.400-23.318-64.629Q-22.982-64.857-22.982-65.224Q-22.982-65.263-22.998-65.341Q-23.013-65.420-23.013-65.455Q-23.013-65.466-23.006-65.498Q-22.998-65.529-22.998-65.537Q-23.060-65.787-23.179-66.007Q-23.299-66.228-23.492-66.373Q-23.685-66.517-23.943-66.517Q-24.416-66.517-24.748-66.216Q-25.080-65.916-25.080-65.455Q-25.080-65.173-24.943-64.927Q-24.806-64.681-24.568-64.541Q-24.330-64.400-24.041-64.400M-19.744-62.033Q-20.384-62.033-20.771-62.410Q-21.158-62.787-21.316-63.359Q-21.474-63.931-21.474-64.560Q-21.474-65.025-21.314-65.480Q-21.154-65.935-20.865-66.295Q-20.576-66.654-20.168-66.867Q-19.759-67.080-19.271-67.080Q-18.998-67.080-18.748-66.982Q-18.498-66.884-18.345-66.689Q-18.193-66.494-18.193-66.201Q-18.193-66.025-18.306-65.904Q-18.420-65.783-18.591-65.783Q-18.767-65.783-18.884-65.896Q-19.002-66.009-19.002-66.181Q-19.002-66.302-18.927-66.423Q-19.037-66.517-19.271-66.517Q-19.689-66.517-20.025-66.277Q-20.361-66.037-20.566-65.650Q-20.771-65.263-20.818-64.865Q-20.580-65.064-20.271-65.172Q-19.963-65.279-19.642-65.279Q-19.302-65.279-19.004-65.154Q-18.705-65.029-18.486-64.810Q-18.267-64.591-18.142-64.293Q-18.017-63.994-18.017-63.654Q-18.017-63.306-18.156-63.006Q-18.295-62.705-18.535-62.488Q-18.775-62.271-19.090-62.152Q-19.404-62.033-19.744-62.033M-20.728-63.576Q-20.666-63.314-20.537-63.090Q-20.408-62.865-20.209-62.728Q-20.009-62.591-19.744-62.591Q-19.291-62.591-18.974-62.898Q-18.658-63.205-18.658-63.654Q-18.658-63.935-18.793-64.181Q-18.927-64.427-19.164-64.570Q-19.400-64.713-19.697-64.713Q-20.088-64.713-20.420-64.486Q-20.752-64.259-20.752-63.888Q-20.752-63.849-20.736-63.771Q-20.720-63.693-20.720-63.654Q-20.720-63.627-20.722-63.611Q-20.724-63.595-20.728-63.576\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 201.058)\">\u003Cpath d=\"M-38.275-62.310L-38.275-63.224Q-38.248-63.431-38.037-63.455L-37.869-63.455Q-37.705-63.431-37.646-63.271Q-37.443-62.631-36.716-62.631Q-36.509-62.631-36.281-62.666Q-36.052-62.701-35.884-62.816Q-35.716-62.931-35.716-63.134Q-35.716-63.345-35.939-63.459Q-36.162-63.572-36.435-63.615L-37.134-63.728Q-38.275-63.939-38.275-64.662Q-38.275-64.951-38.131-65.140Q-37.986-65.330-37.746-65.437Q-37.506-65.545-37.250-65.584Q-36.994-65.623-36.716-65.623Q-36.466-65.623-36.273-65.593Q-36.080-65.564-35.916-65.486Q-35.838-65.603-35.709-65.623L-35.631-65.623Q-35.533-65.611-35.470-65.548Q-35.408-65.486-35.396-65.392L-35.396-64.685Q-35.408-64.591-35.470-64.525Q-35.533-64.459-35.631-64.447L-35.798-64.447Q-35.892-64.459-35.959-64.525Q-36.025-64.591-36.037-64.685Q-36.037-65.064-36.732-65.064Q-37.080-65.064-37.398-64.982Q-37.716-64.900-37.716-64.654Q-37.716-64.388-37.045-64.279L-36.341-64.158Q-35.857-64.076-35.507-63.828Q-35.158-63.580-35.158-63.134Q-35.158-62.744-35.394-62.502Q-35.631-62.259-35.980-62.166Q-36.330-62.072-36.716-62.072Q-37.295-62.072-37.693-62.326Q-37.763-62.201-37.812-62.144Q-37.861-62.088-37.966-62.072L-38.037-62.072Q-38.252-62.095-38.275-62.310M-33.873-62.966L-33.873-64.998L-34.295-64.998Q-34.502-65.021-34.545-65.240L-34.545-65.326Q-34.498-65.537-34.295-65.560L-33.478-65.560Q-33.283-65.537-33.232-65.326L-33.232-62.998Q-33.232-62.763-33.062-62.697Q-32.892-62.631-32.607-62.631Q-32.400-62.631-32.205-62.707Q-32.009-62.783-31.884-62.933Q-31.759-63.084-31.759-63.295L-31.759-64.998L-32.181-64.998Q-32.392-65.021-32.431-65.240L-32.431-65.326Q-32.392-65.537-32.181-65.560L-31.369-65.560Q-31.170-65.537-31.119-65.326L-31.119-62.670L-30.693-62.670Q-30.486-62.646-30.447-62.439L-30.447-62.349Q-30.486-62.134-30.693-62.111L-31.509-62.111Q-31.709-62.134-31.759-62.334Q-32.162-62.072-32.670-62.072Q-32.904-62.072-33.119-62.113Q-33.334-62.154-33.500-62.256Q-33.666-62.357-33.769-62.535Q-33.873-62.713-33.873-62.966M-29.627-62.349L-29.627-66.439L-30.048-66.439Q-30.256-66.463-30.298-66.677L-30.298-66.767Q-30.256-66.974-30.048-66.998L-29.232-66.998Q-29.037-66.974-28.986-66.767L-28.986-65.256Q-28.775-65.423-28.511-65.511Q-28.248-65.599-27.978-65.599Q-27.638-65.599-27.341-65.455Q-27.045-65.310-26.830-65.058Q-26.615-64.806-26.500-64.494Q-26.384-64.181-26.384-63.838Q-26.384-63.373-26.611-62.963Q-26.838-62.552-27.224-62.312Q-27.611-62.072-28.080-62.072Q-28.599-62.072-28.986-62.439L-28.986-62.349Q-29.037-62.131-29.232-62.111L-29.377-62.111Q-29.568-62.134-29.627-62.349M-28.123-62.631Q-27.814-62.631-27.564-62.800Q-27.314-62.970-27.170-63.252Q-27.025-63.533-27.025-63.838Q-27.025-64.127-27.150-64.406Q-27.275-64.685-27.507-64.863Q-27.740-65.041-28.041-65.041Q-28.361-65.041-28.623-64.855Q-28.884-64.670-28.986-64.369L-28.986-63.517Q-28.896-63.150-28.675-62.890Q-28.455-62.631-28.123-62.631M-23.810-60.568L-23.810-60.654Q-23.759-60.873-23.564-60.896L-23.099-60.896L-23.099-62.494Q-23.552-62.072-24.162-62.072Q-24.517-62.072-24.822-62.215Q-25.127-62.357-25.359-62.607Q-25.591-62.857-25.716-63.179Q-25.841-63.502-25.841-63.838Q-25.841-64.322-25.603-64.722Q-25.365-65.123-24.959-65.361Q-24.552-65.599-24.076-65.599Q-23.513-65.599-23.099-65.209L-23.099-65.369Q-23.048-65.580-22.849-65.599L-22.709-65.599Q-22.509-65.576-22.459-65.369L-22.459-60.896L-21.994-60.896Q-21.798-60.873-21.748-60.654L-21.748-60.568Q-21.798-60.357-21.994-60.334L-23.564-60.334Q-23.759-60.357-23.810-60.568M-24.115-62.631Q-23.744-62.631-23.468-62.884Q-23.193-63.138-23.099-63.502L-23.099-64.119Q-23.142-64.357-23.265-64.570Q-23.388-64.783-23.586-64.912Q-23.783-65.041-24.025-65.041Q-24.341-65.041-24.613-64.875Q-24.884-64.709-25.043-64.427Q-25.201-64.146-25.201-63.830Q-25.201-63.365-24.886-62.998Q-24.572-62.631-24.115-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 201.058)\">\u003Cpath d=\"M-16.931-61.752Q-16.931-61.806-16.908-61.873L-14.642-67.478Q-14.549-67.662-14.353-67.662Q-14.228-67.662-14.140-67.574Q-14.052-67.486-14.052-67.357Q-14.052-67.298-14.076-67.240L-16.338-61.631Q-16.439-61.447-16.619-61.447Q-16.744-61.447-16.838-61.537Q-16.931-61.627-16.931-61.752M-14.353-61.447Q-14.705-61.447-14.886-61.787Q-15.068-62.127-15.068-62.509Q-15.068-62.896-14.888-63.236Q-14.709-63.576-14.353-63.576Q-14.115-63.576-13.957-63.406Q-13.799-63.236-13.724-62.992Q-13.650-62.748-13.650-62.509Q-13.650-62.275-13.724-62.031Q-13.799-61.787-13.957-61.617Q-14.115-61.447-14.353-61.447M-14.353-62.006Q-14.271-62.037-14.224-62.205Q-14.177-62.373-14.177-62.509Q-14.177-62.646-14.224-62.816Q-14.271-62.986-14.353-63.013Q-14.439-62.986-14.490-62.818Q-14.541-62.650-14.541-62.509Q-14.541-62.381-14.490-62.209Q-14.439-62.037-14.353-62.006M-16.619-65.525Q-16.861-65.525-17.021-65.695Q-17.181-65.865-17.256-66.111Q-17.330-66.357-17.330-66.599Q-17.330-66.982-17.150-67.322Q-16.970-67.662-16.619-67.662Q-16.381-67.662-16.222-67.492Q-16.064-67.322-15.990-67.078Q-15.916-66.834-15.916-66.599Q-15.916-66.357-15.990-66.111Q-16.064-65.865-16.222-65.695Q-16.381-65.525-16.619-65.525M-16.619-66.088Q-16.529-66.131-16.486-66.287Q-16.443-66.443-16.443-66.599Q-16.443-66.728-16.490-66.904Q-16.537-67.080-16.627-67.103Q-16.642-67.103-16.672-67.068Q-16.701-67.033-16.709-67.013Q-16.802-66.826-16.802-66.599Q-16.802-66.463-16.754-66.291Q-16.705-66.119-16.619-66.088M-13.142-62.349L-13.142-62.439Q-13.084-62.646-12.892-62.670L-12.181-62.670L-12.181-64.998L-12.892-64.998Q-13.088-65.021-13.142-65.240L-13.142-65.326Q-13.084-65.537-12.892-65.560L-11.791-65.560Q-11.591-65.541-11.541-65.326L-11.541-64.998Q-11.279-65.283-10.924-65.441Q-10.568-65.599-10.181-65.599Q-9.888-65.599-9.654-65.465Q-9.420-65.330-9.420-65.064Q-9.420-64.896-9.529-64.779Q-9.638-64.662-9.806-64.662Q-9.959-64.662-10.074-64.773Q-10.189-64.884-10.189-65.041Q-10.564-65.041-10.879-64.840Q-11.193-64.638-11.367-64.304Q-11.541-63.970-11.541-63.591L-11.541-62.670L-10.595-62.670Q-10.388-62.646-10.349-62.439L-10.349-62.349Q-10.388-62.134-10.595-62.111L-12.892-62.111Q-13.084-62.134-13.142-62.349M-8.552-62.912Q-8.552-63.088-8.437-63.211Q-8.322-63.334-8.142-63.334Q-7.974-63.334-7.859-63.218Q-7.744-63.103-7.744-62.927Q-7.744-62.806-7.806-62.705Q-7.658-62.591-7.349-62.591Q-7.045-62.591-6.791-62.742Q-6.537-62.892-6.355-63.138Q-6.174-63.384-6.066-63.677Q-5.959-63.970-5.927-64.248Q-6.166-64.048-6.474-63.943Q-6.783-63.838-7.103-63.838Q-7.549-63.838-7.922-64.054Q-8.295-64.271-8.511-64.640Q-8.728-65.009-8.728-65.455Q-8.728-65.927-8.482-66.298Q-8.236-66.670-7.830-66.875Q-7.424-67.080-6.951-67.080Q-6.466-67.080-6.134-66.851Q-5.802-66.623-5.615-66.250Q-5.427-65.877-5.349-65.447Q-5.271-65.017-5.271-64.560Q-5.271-63.951-5.525-63.363Q-5.779-62.775-6.256-62.404Q-6.732-62.033-7.349-62.033Q-7.845-62.033-8.199-62.242Q-8.552-62.451-8.552-62.912M-7.049-64.400Q-6.662-64.400-6.326-64.629Q-5.990-64.857-5.990-65.224Q-5.990-65.263-6.006-65.341Q-6.021-65.420-6.021-65.455Q-6.021-65.466-6.013-65.498Q-6.006-65.529-6.006-65.537Q-6.068-65.787-6.187-66.007Q-6.306-66.228-6.500-66.373Q-6.693-66.517-6.951-66.517Q-7.424-66.517-7.756-66.216Q-8.088-65.916-8.088-65.455Q-8.088-65.173-7.951-64.927Q-7.814-64.681-7.576-64.541Q-7.338-64.400-7.049-64.400M-3.154-60.998Q-3.267-60.998-3.357-61.088Q-3.447-61.177-3.447-61.287Q-3.447-61.463-3.256-61.537Q-3.037-61.588-2.865-61.746Q-2.693-61.904-2.627-62.127Q-2.650-62.127-2.681-62.111L-2.744-62.111Q-2.974-62.111-3.140-62.273Q-3.306-62.435-3.306-62.670Q-3.306-62.904-3.142-63.064Q-2.978-63.224-2.744-63.224Q-2.533-63.224-2.369-63.103Q-2.205-62.982-2.115-62.789Q-2.025-62.595-2.025-62.384Q-2.025-61.908-2.324-61.519Q-2.623-61.131-3.088-61.006Q-3.111-60.998-3.154-60.998M0.053-61.752Q0.053-61.806 0.076-61.873L2.342-67.478Q2.436-67.662 2.631-67.662Q2.756-67.662 2.844-67.574Q2.932-67.486 2.932-67.357Q2.932-67.298 2.909-67.240L0.647-61.631Q0.545-61.447 0.366-61.447Q0.241-61.447 0.147-61.537Q0.053-61.627 0.053-61.752M2.631-61.447Q2.280-61.447 2.098-61.787Q1.916-62.127 1.916-62.509Q1.916-62.896 2.096-63.236Q2.276-63.576 2.631-63.576Q2.869-63.576 3.028-63.406Q3.186-63.236 3.260-62.992Q3.334-62.748 3.334-62.509Q3.334-62.275 3.260-62.031Q3.186-61.787 3.028-61.617Q2.869-61.447 2.631-61.447M2.631-62.006Q2.713-62.037 2.760-62.205Q2.807-62.373 2.807-62.509Q2.807-62.646 2.760-62.816Q2.713-62.986 2.631-63.013Q2.545-62.986 2.494-62.818Q2.444-62.650 2.444-62.509Q2.444-62.381 2.494-62.209Q2.545-62.037 2.631-62.006M0.366-65.525Q0.123-65.525-0.037-65.695Q-0.197-65.865-0.271-66.111Q-0.345-66.357-0.345-66.599Q-0.345-66.982-0.166-67.322Q0.014-67.662 0.366-67.662Q0.604-67.662 0.762-67.492Q0.920-67.322 0.994-67.078Q1.069-66.834 1.069-66.599Q1.069-66.357 0.994-66.111Q0.920-65.865 0.762-65.695Q0.604-65.525 0.366-65.525M0.366-66.088Q0.455-66.131 0.498-66.287Q0.541-66.443 0.541-66.599Q0.541-66.728 0.494-66.904Q0.448-67.080 0.358-67.103Q0.342-67.103 0.313-67.068Q0.284-67.033 0.276-67.013Q0.182-66.826 0.182-66.599Q0.182-66.463 0.231-66.291Q0.280-66.119 0.366-66.088M3.842-62.349L3.842-62.439Q3.901-62.646 4.092-62.670L4.803-62.670L4.803-64.998L4.092-64.998Q3.897-65.021 3.842-65.240L3.842-65.326Q3.901-65.537 4.092-65.560L5.194-65.560Q5.393-65.541 5.444-65.326L5.444-64.998Q5.705-65.283 6.061-65.441Q6.416-65.599 6.803-65.599Q7.096-65.599 7.330-65.465Q7.565-65.330 7.565-65.064Q7.565-64.896 7.455-64.779Q7.346-64.662 7.178-64.662Q7.026-64.662 6.910-64.773Q6.795-64.884 6.795-65.041Q6.420-65.041 6.106-64.840Q5.791-64.638 5.618-64.304Q5.444-63.970 5.444-63.591L5.444-62.670L6.389-62.670Q6.596-62.646 6.635-62.439L6.635-62.349Q6.596-62.134 6.389-62.111L4.092-62.111Q3.901-62.134 3.842-62.349M8.451-62.310L8.451-63.224Q8.479-63.431 8.690-63.455L8.858-63.455Q9.022-63.431 9.080-63.271Q9.284-62.631 10.010-62.631Q10.217-62.631 10.446-62.666Q10.674-62.701 10.842-62.816Q11.010-62.931 11.010-63.134Q11.010-63.345 10.787-63.459Q10.565-63.572 10.291-63.615L9.592-63.728Q8.451-63.939 8.451-64.662Q8.451-64.951 8.596-65.140Q8.741-65.330 8.981-65.437Q9.221-65.545 9.477-65.584Q9.733-65.623 10.010-65.623Q10.260-65.623 10.453-65.593Q10.647-65.564 10.811-65.486Q10.889-65.603 11.018-65.623L11.096-65.623Q11.194-65.611 11.256-65.548Q11.319-65.486 11.330-65.392L11.330-64.685Q11.319-64.591 11.256-64.525Q11.194-64.459 11.096-64.447L10.928-64.447Q10.834-64.459 10.768-64.525Q10.701-64.591 10.690-64.685Q10.690-65.064 9.994-65.064Q9.647-65.064 9.328-64.982Q9.010-64.900 9.010-64.654Q9.010-64.388 9.682-64.279L10.385-64.158Q10.869-64.076 11.219-63.828Q11.569-63.580 11.569-63.134Q11.569-62.744 11.332-62.502Q11.096-62.259 10.746-62.166Q10.397-62.072 10.010-62.072Q9.432-62.072 9.034-62.326Q8.963-62.201 8.914-62.144Q8.866-62.088 8.760-62.072L8.690-62.072Q8.475-62.095 8.451-62.310M12.729-62.349L12.729-62.439Q12.780-62.646 12.975-62.670L14.014-62.670L14.014-64.998L13.041-64.998Q12.842-65.021 12.791-65.240L12.791-65.326Q12.842-65.537 13.041-65.560L14.409-65.560Q14.604-65.541 14.655-65.326L14.655-62.670L15.569-62.670Q15.764-62.646 15.815-62.439L15.815-62.349Q15.764-62.134 15.569-62.111L12.975-62.111Q12.780-62.134 12.729-62.349M13.760-66.537L13.760-66.591Q13.760-66.763 13.897-66.884Q14.034-67.006 14.209-67.006Q14.381-67.006 14.518-66.884Q14.655-66.763 14.655-66.591L14.655-66.537Q14.655-66.361 14.518-66.240Q14.381-66.119 14.209-66.119Q14.034-66.119 13.897-66.240Q13.760-66.361 13.760-66.537\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 218.685)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-23.564-63.455L-25.634-63.455Q-25.830-63.478-25.884-63.697L-25.884-63.935Q-25.884-64.009-25.841-64.080L-23.994-66.951Q-23.908-67.080-23.756-67.080L-23.298-67.080Q-23.189-67.080-23.111-67.002Q-23.033-66.923-23.033-66.814L-23.033-64.013L-22.369-64.013Q-22.173-63.990-22.123-63.783L-22.123-63.697Q-22.173-63.478-22.369-63.455L-23.033-63.455L-23.033-62.670L-22.459-62.670Q-22.252-62.646-22.213-62.439L-22.213-62.349Q-22.252-62.134-22.459-62.111L-24.138-62.111Q-24.345-62.134-24.388-62.349L-24.388-62.439Q-24.345-62.646-24.138-62.670L-23.564-62.670L-23.564-63.455M-23.564-66.607L-25.236-64.013L-23.564-64.013L-23.564-66.607M-18.365-63.599L-20.806-63.599Q-20.752-63.322-20.554-63.099Q-20.357-62.877-20.080-62.754Q-19.802-62.631-19.517-62.631Q-19.045-62.631-18.822-62.920Q-18.814-62.931-18.757-63.037Q-18.701-63.142-18.652-63.185Q-18.603-63.228-18.509-63.240L-18.365-63.240Q-18.173-63.220-18.115-63.006L-18.115-62.951Q-18.181-62.650-18.412-62.453Q-18.642-62.256-18.955-62.164Q-19.267-62.072-19.572-62.072Q-20.056-62.072-20.496-62.300Q-20.935-62.529-21.203-62.929Q-21.470-63.330-21.470-63.822L-21.470-63.881Q-21.470-64.349-21.224-64.752Q-20.978-65.154-20.570-65.388Q-20.162-65.623-19.693-65.623Q-19.189-65.623-18.836-65.400Q-18.482-65.177-18.298-64.789Q-18.115-64.400-18.115-63.896L-18.115-63.838Q-18.173-63.623-18.365-63.599M-20.798-64.150L-18.771-64.150Q-18.818-64.560-19.056-64.812Q-19.295-65.064-19.693-65.064Q-20.088-65.064-20.394-64.802Q-20.701-64.541-20.798-64.150\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M-37.525-62.326L-37.525-62.384Q-37.525-62.927-37.420-63.474Q-37.314-64.021-37.109-64.545Q-36.904-65.068-36.607-65.547Q-36.310-66.025-35.931-66.439L-37.869-66.439L-37.869-66.302Q-37.920-66.088-38.119-66.064L-38.259-66.064Q-38.459-66.088-38.509-66.302L-38.509-66.896Q-38.459-67.107-38.259-67.127L-38.119-67.127Q-37.982-67.115-37.908-66.998L-35.220-66.998Q-35.025-66.974-34.974-66.767L-34.974-66.677Q-34.986-66.588-35.029-66.537Q-35.291-66.279-35.521-66.013Q-35.752-65.748-35.914-65.515Q-36.076-65.283-36.234-64.984Q-36.392-64.685-36.525-64.334Q-36.701-63.861-36.793-63.345Q-36.884-62.830-36.884-62.326Q-36.896-62.201-36.982-62.123Q-37.068-62.045-37.189-62.033Q-37.326-62.033-37.420-62.111Q-37.513-62.189-37.525-62.326M-32.056-63.455L-34.127-63.455Q-34.322-63.478-34.377-63.697L-34.377-63.935Q-34.377-64.009-34.334-64.080L-32.486-66.951Q-32.400-67.080-32.248-67.080L-31.791-67.080Q-31.681-67.080-31.603-67.002Q-31.525-66.923-31.525-66.814L-31.525-64.013L-30.861-64.013Q-30.666-63.990-30.615-63.783L-30.615-63.697Q-30.666-63.478-30.861-63.455L-31.525-63.455L-31.525-62.670L-30.951-62.670Q-30.744-62.646-30.705-62.439L-30.705-62.349Q-30.744-62.134-30.951-62.111L-32.631-62.111Q-32.838-62.134-32.881-62.349L-32.881-62.439Q-32.838-62.646-32.631-62.670L-32.056-62.670L-32.056-63.455M-32.056-66.607L-33.728-64.013L-32.056-64.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M-25.759-63.158Q-25.759-63.334-25.642-63.455Q-25.525-63.576-25.349-63.576Q-25.267-63.576-25.191-63.545Q-25.115-63.513-25.064-63.463Q-25.013-63.412-24.982-63.332Q-24.951-63.252-24.951-63.173Q-24.951-63.041-25.033-62.927Q-24.763-62.591-23.974-62.591Q-23.549-62.591-23.207-62.857Q-22.865-63.123-22.865-63.537Q-22.865-63.810-23.031-64.029Q-23.197-64.248-23.457-64.359Q-23.716-64.470-23.990-64.470L-24.455-64.470Q-24.666-64.494-24.697-64.713L-24.697-64.798Q-24.666-65.002-24.455-65.033L-23.927-65.072Q-23.713-65.072-23.521-65.195Q-23.330-65.318-23.216-65.521Q-23.103-65.724-23.103-65.935Q-23.103-66.209-23.386-66.363Q-23.670-66.517-23.974-66.517Q-24.537-66.517-24.775-66.326Q-24.713-66.213-24.713-66.103Q-24.713-65.931-24.826-65.818Q-24.939-65.705-25.111-65.705Q-25.287-65.705-25.402-65.828Q-25.517-65.951-25.517-66.119Q-25.517-66.646-25.045-66.863Q-24.572-67.080-23.974-67.080Q-23.634-67.080-23.279-66.949Q-22.924-66.818-22.693-66.560Q-22.463-66.302-22.463-65.935Q-22.463-65.591-22.631-65.287Q-22.799-64.982-23.095-64.783Q-22.724-64.603-22.474-64.267Q-22.224-63.931-22.224-63.537Q-22.224-63.091-22.478-62.750Q-22.732-62.408-23.134-62.220Q-23.537-62.033-23.974-62.033Q-24.259-62.033-24.564-62.088Q-24.869-62.142-25.144-62.269Q-25.420-62.396-25.590-62.619Q-25.759-62.841-25.759-63.158M-18.353-63.599L-20.795-63.599Q-20.740-63.322-20.543-63.099Q-20.345-62.877-20.068-62.754Q-19.791-62.631-19.506-62.631Q-19.033-62.631-18.810-62.920Q-18.802-62.931-18.746-63.037Q-18.689-63.142-18.640-63.185Q-18.591-63.228-18.498-63.240L-18.353-63.240Q-18.162-63.220-18.103-63.006L-18.103-62.951Q-18.170-62.650-18.400-62.453Q-18.631-62.256-18.943-62.164Q-19.256-62.072-19.560-62.072Q-20.045-62.072-20.484-62.300Q-20.924-62.529-21.191-62.929Q-21.459-63.330-21.459-63.822L-21.459-63.881Q-21.459-64.349-21.213-64.752Q-20.966-65.154-20.558-65.388Q-20.150-65.623-19.681-65.623Q-19.177-65.623-18.824-65.400Q-18.470-65.177-18.287-64.789Q-18.103-64.400-18.103-63.896L-18.103-63.838Q-18.162-63.623-18.353-63.599M-20.787-64.150L-18.759-64.150Q-18.806-64.560-19.045-64.812Q-19.283-65.064-19.681-65.064Q-20.076-65.064-20.382-64.802Q-20.689-64.541-20.787-64.150\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M-11.240-62.033Q-11.674-62.033-12.006-62.271Q-12.338-62.509-12.558-62.898Q-12.779-63.287-12.886-63.724Q-12.994-64.162-12.994-64.560Q-12.994-64.951-12.884-65.394Q-12.775-65.838-12.558-66.218Q-12.341-66.599-12.007-66.840Q-11.674-67.080-11.240-67.080Q-10.685-67.080-10.285-66.681Q-9.884-66.283-9.687-65.697Q-9.490-65.111-9.490-64.560Q-9.490-64.006-9.687-63.418Q-9.884-62.830-10.285-62.431Q-10.685-62.033-11.240-62.033M-11.240-62.591Q-10.939-62.591-10.722-62.808Q-10.506-63.025-10.379-63.353Q-10.252-63.681-10.191-64.027Q-10.131-64.373-10.131-64.654Q-10.131-64.904-10.193-65.230Q-10.256-65.556-10.386-65.847Q-10.517-66.138-10.730-66.328Q-10.943-66.517-11.240-66.517Q-11.615-66.517-11.867-66.205Q-12.119-65.892-12.236-65.459Q-12.353-65.025-12.353-64.654Q-12.353-64.256-12.240-63.775Q-12.127-63.295-11.879-62.943Q-11.631-62.591-11.240-62.591M-6.994-62.033Q-7.427-62.033-7.759-62.271Q-8.091-62.509-8.312-62.898Q-8.533-63.287-8.640-63.724Q-8.748-64.162-8.748-64.560Q-8.748-64.951-8.638-65.394Q-8.529-65.838-8.312-66.218Q-8.095-66.599-7.761-66.840Q-7.427-67.080-6.994-67.080Q-6.439-67.080-6.039-66.681Q-5.638-66.283-5.441-65.697Q-5.244-65.111-5.244-64.560Q-5.244-64.006-5.441-63.418Q-5.638-62.830-6.039-62.431Q-6.439-62.033-6.994-62.033M-6.994-62.591Q-6.693-62.591-6.476-62.808Q-6.259-63.025-6.132-63.353Q-6.006-63.681-5.945-64.027Q-5.884-64.373-5.884-64.654Q-5.884-64.904-5.947-65.230Q-6.009-65.556-6.140-65.847Q-6.271-66.138-6.484-66.328Q-6.697-66.517-6.994-66.517Q-7.369-66.517-7.621-66.205Q-7.873-65.892-7.990-65.459Q-8.107-65.025-8.107-64.654Q-8.107-64.256-7.994-63.775Q-7.881-63.295-7.632-62.943Q-7.384-62.591-6.994-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M1.510-62.033Q1.077-62.033 0.744-62.271Q0.412-62.509 0.192-62.898Q-0.029-63.287-0.136-63.724Q-0.244-64.162-0.244-64.560Q-0.244-64.951-0.134-65.394Q-0.025-65.838 0.192-66.218Q0.409-66.599 0.743-66.840Q1.077-67.080 1.510-67.080Q2.065-67.080 2.465-66.681Q2.866-66.283 3.063-65.697Q3.260-65.111 3.260-64.560Q3.260-64.006 3.063-63.418Q2.866-62.830 2.465-62.431Q2.065-62.033 1.510-62.033M1.510-62.591Q1.811-62.591 2.028-62.808Q2.244-63.025 2.371-63.353Q2.498-63.681 2.559-64.027Q2.619-64.373 2.619-64.654Q2.619-64.904 2.557-65.230Q2.494-65.556 2.364-65.847Q2.233-66.138 2.020-66.328Q1.807-66.517 1.510-66.517Q1.135-66.517 0.883-66.205Q0.631-65.892 0.514-65.459Q0.397-65.025 0.397-64.654Q0.397-64.256 0.510-63.775Q0.623-63.295 0.871-62.943Q1.119-62.591 1.510-62.591M5.756-62.033Q5.323-62.033 4.991-62.271Q4.659-62.509 4.438-62.898Q4.217-63.287 4.110-63.724Q4.002-64.162 4.002-64.560Q4.002-64.951 4.112-65.394Q4.221-65.838 4.438-66.218Q4.655-66.599 4.989-66.840Q5.323-67.080 5.756-67.080Q6.311-67.080 6.711-66.681Q7.112-66.283 7.309-65.697Q7.506-65.111 7.506-64.560Q7.506-64.006 7.309-63.418Q7.112-62.830 6.711-62.431Q6.311-62.033 5.756-62.033M5.756-62.591Q6.057-62.591 6.274-62.808Q6.491-63.025 6.618-63.353Q6.744-63.681 6.805-64.027Q6.866-64.373 6.866-64.654Q6.866-64.904 6.803-65.230Q6.741-65.556 6.610-65.847Q6.479-66.138 6.266-66.328Q6.053-66.517 5.756-66.517Q5.381-66.517 5.129-66.205Q4.877-65.892 4.760-65.459Q4.643-65.025 4.643-64.654Q4.643-64.256 4.756-63.775Q4.869-63.295 5.118-62.943Q5.366-62.591 5.756-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M14.261-62.033Q13.828-62.033 13.495-62.271Q13.163-62.509 12.943-62.898Q12.722-63.287 12.615-63.724Q12.507-64.162 12.507-64.560Q12.507-64.951 12.617-65.394Q12.726-65.838 12.943-66.218Q13.160-66.599 13.494-66.840Q13.828-67.080 14.261-67.080Q14.816-67.080 15.216-66.681Q15.617-66.283 15.814-65.697Q16.011-65.111 16.011-64.560Q16.011-64.006 15.814-63.418Q15.617-62.830 15.216-62.431Q14.816-62.033 14.261-62.033M14.261-62.591Q14.562-62.591 14.779-62.808Q14.995-63.025 15.122-63.353Q15.249-63.681 15.310-64.027Q15.370-64.373 15.370-64.654Q15.370-64.904 15.308-65.230Q15.245-65.556 15.115-65.847Q14.984-66.138 14.771-66.328Q14.558-66.517 14.261-66.517Q13.886-66.517 13.634-66.205Q13.382-65.892 13.265-65.459Q13.148-65.025 13.148-64.654Q13.148-64.256 13.261-63.775Q13.374-63.295 13.622-62.943Q13.870-62.591 14.261-62.591M18.507-62.033Q18.074-62.033 17.742-62.271Q17.410-62.509 17.189-62.898Q16.968-63.287 16.861-63.724Q16.753-64.162 16.753-64.560Q16.753-64.951 16.863-65.394Q16.972-65.838 17.189-66.218Q17.406-66.599 17.740-66.840Q18.074-67.080 18.507-67.080Q19.062-67.080 19.462-66.681Q19.863-66.283 20.060-65.697Q20.257-65.111 20.257-64.560Q20.257-64.006 20.060-63.418Q19.863-62.830 19.462-62.431Q19.062-62.033 18.507-62.033M18.507-62.591Q18.808-62.591 19.025-62.808Q19.242-63.025 19.369-63.353Q19.495-63.681 19.556-64.027Q19.617-64.373 19.617-64.654Q19.617-64.904 19.554-65.230Q19.492-65.556 19.361-65.847Q19.230-66.138 19.017-66.328Q18.804-66.517 18.507-66.517Q18.132-66.517 17.880-66.205Q17.628-65.892 17.511-65.459Q17.394-65.025 17.394-64.654Q17.394-64.256 17.507-63.775Q17.620-63.295 17.869-62.943Q18.117-62.591 18.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M27.011-62.033Q26.578-62.033 26.245-62.271Q25.913-62.509 25.693-62.898Q25.472-63.287 25.365-63.724Q25.257-64.162 25.257-64.560Q25.257-64.951 25.367-65.394Q25.476-65.838 25.693-66.218Q25.910-66.599 26.244-66.840Q26.578-67.080 27.011-67.080Q27.566-67.080 27.966-66.681Q28.367-66.283 28.564-65.697Q28.761-65.111 28.761-64.560Q28.761-64.006 28.564-63.418Q28.367-62.830 27.966-62.431Q27.566-62.033 27.011-62.033M27.011-62.591Q27.312-62.591 27.529-62.808Q27.745-63.025 27.872-63.353Q27.999-63.681 28.060-64.027Q28.120-64.373 28.120-64.654Q28.120-64.904 28.058-65.230Q27.995-65.556 27.865-65.847Q27.734-66.138 27.521-66.328Q27.308-66.517 27.011-66.517Q26.636-66.517 26.384-66.205Q26.132-65.892 26.015-65.459Q25.898-65.025 25.898-64.654Q25.898-64.256 26.011-63.775Q26.124-63.295 26.372-62.943Q26.620-62.591 27.011-62.591M31.257-62.033Q30.824-62.033 30.492-62.271Q30.160-62.509 29.939-62.898Q29.718-63.287 29.611-63.724Q29.503-64.162 29.503-64.560Q29.503-64.951 29.613-65.394Q29.722-65.838 29.939-66.218Q30.156-66.599 30.490-66.840Q30.824-67.080 31.257-67.080Q31.812-67.080 32.212-66.681Q32.613-66.283 32.810-65.697Q33.007-65.111 33.007-64.560Q33.007-64.006 32.810-63.418Q32.613-62.830 32.212-62.431Q31.812-62.033 31.257-62.033M31.257-62.591Q31.558-62.591 31.775-62.808Q31.992-63.025 32.119-63.353Q32.245-63.681 32.306-64.027Q32.367-64.373 32.367-64.654Q32.367-64.904 32.304-65.230Q32.242-65.556 32.111-65.847Q31.980-66.138 31.767-66.328Q31.554-66.517 31.257-66.517Q30.882-66.517 30.630-66.205Q30.378-65.892 30.261-65.459Q30.144-65.025 30.144-64.654Q30.144-64.256 30.257-63.775Q30.370-63.295 30.619-62.943Q30.867-62.591 31.257-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M39.761-62.033Q39.328-62.033 38.995-62.271Q38.663-62.509 38.443-62.898Q38.222-63.287 38.115-63.724Q38.007-64.162 38.007-64.560Q38.007-64.951 38.117-65.394Q38.226-65.838 38.443-66.218Q38.660-66.599 38.994-66.840Q39.328-67.080 39.761-67.080Q40.316-67.080 40.716-66.681Q41.117-66.283 41.314-65.697Q41.511-65.111 41.511-64.560Q41.511-64.006 41.314-63.418Q41.117-62.830 40.716-62.431Q40.316-62.033 39.761-62.033M39.761-62.591Q40.062-62.591 40.279-62.808Q40.495-63.025 40.622-63.353Q40.749-63.681 40.810-64.027Q40.870-64.373 40.870-64.654Q40.870-64.904 40.808-65.230Q40.745-65.556 40.615-65.847Q40.484-66.138 40.271-66.328Q40.058-66.517 39.761-66.517Q39.386-66.517 39.134-66.205Q38.882-65.892 38.765-65.459Q38.648-65.025 38.648-64.654Q38.648-64.256 38.761-63.775Q38.874-63.295 39.122-62.943Q39.370-62.591 39.761-62.591M44.007-62.033Q43.574-62.033 43.242-62.271Q42.910-62.509 42.689-62.898Q42.468-63.287 42.361-63.724Q42.253-64.162 42.253-64.560Q42.253-64.951 42.363-65.394Q42.472-65.838 42.689-66.218Q42.906-66.599 43.240-66.840Q43.574-67.080 44.007-67.080Q44.562-67.080 44.962-66.681Q45.363-66.283 45.560-65.697Q45.757-65.111 45.757-64.560Q45.757-64.006 45.560-63.418Q45.363-62.830 44.962-62.431Q44.562-62.033 44.007-62.033M44.007-62.591Q44.308-62.591 44.525-62.808Q44.742-63.025 44.869-63.353Q44.995-63.681 45.056-64.027Q45.117-64.373 45.117-64.654Q45.117-64.904 45.054-65.230Q44.992-65.556 44.861-65.847Q44.730-66.138 44.517-66.328Q44.304-66.517 44.007-66.517Q43.632-66.517 43.380-66.205Q43.128-65.892 43.011-65.459Q42.894-65.025 42.894-64.654Q42.894-64.256 43.007-63.775Q43.120-63.295 43.369-62.943Q43.617-62.591 44.007-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M52.511-62.033Q52.078-62.033 51.745-62.271Q51.413-62.509 51.193-62.898Q50.972-63.287 50.865-63.724Q50.757-64.162 50.757-64.560Q50.757-64.951 50.867-65.394Q50.976-65.838 51.193-66.218Q51.410-66.599 51.744-66.840Q52.078-67.080 52.511-67.080Q53.066-67.080 53.466-66.681Q53.867-66.283 54.064-65.697Q54.261-65.111 54.261-64.560Q54.261-64.006 54.064-63.418Q53.867-62.830 53.466-62.431Q53.066-62.033 52.511-62.033M52.511-62.591Q52.812-62.591 53.029-62.808Q53.245-63.025 53.372-63.353Q53.499-63.681 53.560-64.027Q53.620-64.373 53.620-64.654Q53.620-64.904 53.558-65.230Q53.495-65.556 53.365-65.847Q53.234-66.138 53.021-66.328Q52.808-66.517 52.511-66.517Q52.136-66.517 51.884-66.205Q51.632-65.892 51.515-65.459Q51.398-65.025 51.398-64.654Q51.398-64.256 51.511-63.775Q51.624-63.295 51.872-62.943Q52.120-62.591 52.511-62.591M56.757-62.033Q56.324-62.033 55.992-62.271Q55.660-62.509 55.439-62.898Q55.218-63.287 55.111-63.724Q55.003-64.162 55.003-64.560Q55.003-64.951 55.113-65.394Q55.222-65.838 55.439-66.218Q55.656-66.599 55.990-66.840Q56.324-67.080 56.757-67.080Q57.312-67.080 57.712-66.681Q58.113-66.283 58.310-65.697Q58.507-65.111 58.507-64.560Q58.507-64.006 58.310-63.418Q58.113-62.830 57.712-62.431Q57.312-62.033 56.757-62.033M56.757-62.591Q57.058-62.591 57.275-62.808Q57.492-63.025 57.619-63.353Q57.745-63.681 57.806-64.027Q57.867-64.373 57.867-64.654Q57.867-64.904 57.804-65.230Q57.742-65.556 57.611-65.847Q57.480-66.138 57.267-66.328Q57.054-66.517 56.757-66.517Q56.382-66.517 56.130-66.205Q55.878-65.892 55.761-65.459Q55.644-65.025 55.644-64.654Q55.644-64.256 55.757-63.775Q55.870-63.295 56.119-62.943Q56.367-62.591 56.757-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 218.685)\">\u003Cpath d=\"M65.261-62.033Q64.828-62.033 64.495-62.271Q64.163-62.509 63.943-62.898Q63.722-63.287 63.615-63.724Q63.507-64.162 63.507-64.560Q63.507-64.951 63.617-65.394Q63.726-65.838 63.943-66.218Q64.160-66.599 64.494-66.840Q64.828-67.080 65.261-67.080Q65.816-67.080 66.216-66.681Q66.617-66.283 66.814-65.697Q67.011-65.111 67.011-64.560Q67.011-64.006 66.814-63.418Q66.617-62.830 66.216-62.431Q65.816-62.033 65.261-62.033M65.261-62.591Q65.562-62.591 65.779-62.808Q65.995-63.025 66.122-63.353Q66.249-63.681 66.310-64.027Q66.370-64.373 66.370-64.654Q66.370-64.904 66.308-65.230Q66.245-65.556 66.115-65.847Q65.984-66.138 65.771-66.328Q65.558-66.517 65.261-66.517Q64.886-66.517 64.634-66.205Q64.382-65.892 64.265-65.459Q64.148-65.025 64.148-64.654Q64.148-64.256 64.261-63.775Q64.374-63.295 64.622-62.943Q64.870-62.591 65.261-62.591M69.507-62.033Q69.074-62.033 68.742-62.271Q68.410-62.509 68.189-62.898Q67.968-63.287 67.861-63.724Q67.753-64.162 67.753-64.560Q67.753-64.951 67.863-65.394Q67.972-65.838 68.189-66.218Q68.406-66.599 68.740-66.840Q69.074-67.080 69.507-67.080Q70.062-67.080 70.462-66.681Q70.863-66.283 71.060-65.697Q71.257-65.111 71.257-64.560Q71.257-64.006 71.060-63.418Q70.863-62.830 70.462-62.431Q70.062-62.033 69.507-62.033M69.507-62.591Q69.808-62.591 70.025-62.808Q70.242-63.025 70.369-63.353Q70.495-63.681 70.556-64.027Q70.617-64.373 70.617-64.654Q70.617-64.904 70.554-65.230Q70.492-65.556 70.361-65.847Q70.230-66.138 70.017-66.328Q69.804-66.517 69.507-66.517Q69.132-66.517 68.880-66.205Q68.628-65.892 68.511-65.459Q68.394-65.025 68.394-64.654Q68.394-64.256 68.507-63.775Q68.620-63.295 68.869-62.943Q69.117-62.591 69.507-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(222.619 217.797)\">\u003Cpath d=\"M-38.478-60.927L-38.478-60.982Q-38.478-61.138-38.353-61.248Q-38.228-61.357-38.068-61.357Q-37.916-61.357-37.793-61.246Q-37.670-61.134-37.670-60.982L-37.670-60.927Q-37.670-60.904-37.672-60.896Q-37.673-60.888-37.677-60.881Q-37.517-60.853-37.205-60.853Q-36.853-60.853-36.670-61.148Q-36.486-61.443-36.486-61.806L-36.486-64.998L-37.588-64.998Q-37.787-65.021-37.838-65.240L-37.838-65.326Q-37.787-65.537-37.588-65.560L-36.091-65.560Q-35.896-65.537-35.845-65.326L-35.845-61.752Q-35.845-61.381-36.027-61.041Q-36.209-60.701-36.525-60.498Q-36.841-60.295-37.213-60.295Q-37.459-60.295-37.646-60.306Q-37.834-60.318-38.031-60.381Q-38.228-60.443-38.353-60.574Q-38.478-60.705-38.478-60.927M-36.740-66.537L-36.740-66.591Q-36.740-66.763-36.603-66.884Q-36.466-67.006-36.295-67.006Q-36.119-67.006-35.982-66.884Q-35.845-66.763-35.845-66.591L-35.845-66.537Q-35.845-66.361-35.982-66.240Q-36.119-66.119-36.295-66.119Q-36.466-66.119-36.603-66.240Q-36.740-66.361-36.740-66.537M-34.545-62.349L-34.545-62.439Q-34.502-62.646-34.295-62.670L-33.873-62.670L-33.873-64.998L-34.295-64.998Q-34.502-65.021-34.545-65.240L-34.545-65.326Q-34.498-65.537-34.295-65.560L-33.478-65.560Q-33.283-65.537-33.232-65.326L-33.232-65.240L-33.240-65.216Q-33.013-65.396-32.740-65.498Q-32.466-65.599-32.173-65.599Q-31.826-65.599-31.588-65.459Q-31.349-65.318-31.234-65.060Q-31.119-64.802-31.119-64.447L-31.119-62.670L-30.693-62.670Q-30.486-62.646-30.447-62.439L-30.447-62.349Q-30.486-62.134-30.693-62.111L-32.088-62.111Q-32.283-62.134-32.334-62.349L-32.334-62.439Q-32.283-62.650-32.088-62.670L-31.759-62.670L-31.759-64.416Q-31.759-64.724-31.849-64.882Q-31.939-65.041-32.232-65.041Q-32.502-65.041-32.730-64.910Q-32.959-64.779-33.095-64.550Q-33.232-64.322-33.232-64.056L-33.232-62.670L-32.806-62.670Q-32.599-62.646-32.560-62.439L-32.560-62.349Q-32.599-62.134-32.806-62.111L-34.295-62.111Q-34.502-62.134-34.545-62.349M-26.857-63.599L-29.298-63.599Q-29.244-63.322-29.047-63.099Q-28.849-62.877-28.572-62.754Q-28.295-62.631-28.009-62.631Q-27.537-62.631-27.314-62.920Q-27.306-62.931-27.250-63.037Q-27.193-63.142-27.144-63.185Q-27.095-63.228-27.002-63.240L-26.857-63.240Q-26.666-63.220-26.607-63.006L-26.607-62.951Q-26.673-62.650-26.904-62.453Q-27.134-62.256-27.447-62.164Q-27.759-62.072-28.064-62.072Q-28.548-62.072-28.988-62.300Q-29.427-62.529-29.695-62.929Q-29.963-63.330-29.963-63.822L-29.963-63.881Q-29.963-64.349-29.716-64.752Q-29.470-65.154-29.062-65.388Q-28.654-65.623-28.185-65.623Q-27.681-65.623-27.328-65.400Q-26.974-65.177-26.791-64.789Q-26.607-64.400-26.607-63.896L-26.607-63.838Q-26.666-63.623-26.857-63.599M-29.291-64.150L-27.263-64.150Q-27.310-64.560-27.548-64.812Q-27.787-65.064-28.185-65.064Q-28.580-65.064-28.886-64.802Q-29.193-64.541-29.291-64.150\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 217.797)\">\u003Cpath d=\"M-21.412-62.349L-21.412-62.439Q-21.361-62.646-21.166-62.670L-20.060-62.670L-20.060-66.439L-21.166-66.439Q-21.361-66.463-21.412-66.677L-21.412-66.767Q-21.361-66.974-21.166-66.998L-19.670-66.998Q-19.478-66.974-19.420-66.767L-19.420-62.670L-18.318-62.670Q-18.119-62.646-18.068-62.439L-18.068-62.349Q-18.119-62.134-18.318-62.111L-21.166-62.111Q-21.361-62.134-21.412-62.349M-15.494-62.072Q-15.966-62.072-16.351-62.316Q-16.736-62.560-16.959-62.970Q-17.181-63.381-17.181-63.838Q-17.181-64.181-17.056-64.504Q-16.931-64.826-16.701-65.080Q-16.470-65.334-16.164-65.478Q-15.857-65.623-15.494-65.623Q-15.131-65.623-14.818-65.476Q-14.506-65.330-14.283-65.084Q-14.060-64.838-13.933-64.517Q-13.806-64.197-13.806-63.838Q-13.806-63.381-14.031-62.968Q-14.256-62.556-14.640-62.314Q-15.025-62.072-15.494-62.072M-15.494-62.631Q-15.029-62.631-14.738-63.025Q-14.447-63.420-14.447-63.904Q-14.447-64.197-14.582-64.465Q-14.716-64.732-14.957-64.898Q-15.197-65.064-15.494-65.064Q-15.799-65.064-16.037-64.898Q-16.275-64.732-16.410-64.465Q-16.545-64.197-16.545-63.904Q-16.545-63.423-16.252-63.027Q-15.959-62.631-15.494-62.631M-11.248-62.072Q-11.720-62.072-12.105-62.316Q-12.490-62.560-12.713-62.970Q-12.935-63.381-12.935-63.838Q-12.935-64.181-12.810-64.504Q-12.685-64.826-12.455-65.080Q-12.224-65.334-11.918-65.478Q-11.611-65.623-11.248-65.623Q-10.884-65.623-10.572-65.476Q-10.259-65.330-10.037-65.084Q-9.814-64.838-9.687-64.517Q-9.560-64.197-9.560-63.838Q-9.560-63.381-9.785-62.968Q-10.009-62.556-10.394-62.314Q-10.779-62.072-11.248-62.072M-11.248-62.631Q-10.783-62.631-10.492-63.025Q-10.201-63.420-10.201-63.904Q-10.201-64.197-10.336-64.465Q-10.470-64.732-10.711-64.898Q-10.951-65.064-11.248-65.064Q-11.552-65.064-11.791-64.898Q-12.029-64.732-12.164-64.465Q-12.299-64.197-12.299-63.904Q-12.299-63.423-12.006-63.027Q-11.713-62.631-11.248-62.631M-9.052-60.568L-9.052-60.654Q-9.009-60.873-8.802-60.896L-8.381-60.896L-8.381-64.998L-8.802-64.998Q-9.009-65.021-9.052-65.240L-9.052-65.326Q-9.006-65.537-8.802-65.560L-7.986-65.560Q-7.791-65.541-7.740-65.326L-7.740-65.256Q-7.529-65.423-7.265-65.511Q-7.002-65.599-6.732-65.599Q-6.392-65.599-6.095-65.455Q-5.799-65.310-5.584-65.058Q-5.369-64.806-5.254-64.494Q-5.138-64.181-5.138-63.838Q-5.138-63.373-5.365-62.963Q-5.591-62.552-5.978-62.312Q-6.365-62.072-6.834-62.072Q-7.353-62.072-7.740-62.439L-7.740-60.896L-7.314-60.896Q-7.107-60.873-7.068-60.654L-7.068-60.568Q-7.107-60.357-7.314-60.334L-8.802-60.334Q-9.006-60.357-9.052-60.568M-6.877-62.631Q-6.568-62.631-6.318-62.800Q-6.068-62.970-5.924-63.252Q-5.779-63.533-5.779-63.838Q-5.779-64.127-5.904-64.406Q-6.029-64.685-6.261-64.863Q-6.494-65.041-6.795-65.041Q-7.115-65.041-7.377-64.855Q-7.638-64.670-7.740-64.369L-7.740-63.517Q-7.650-63.150-7.429-62.890Q-7.209-62.631-6.877-62.631\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-24.783 235.757)\">\u003Cpath d=\"M-36.740-62.033Q-37.173-62.033-37.506-62.271Q-37.838-62.509-38.058-62.898Q-38.279-63.287-38.386-63.724Q-38.494-64.162-38.494-64.560Q-38.494-64.951-38.384-65.394Q-38.275-65.838-38.058-66.218Q-37.841-66.599-37.507-66.840Q-37.173-67.080-36.740-67.080Q-36.185-67.080-35.785-66.681Q-35.384-66.283-35.187-65.697Q-34.990-65.111-34.990-64.560Q-34.990-64.006-35.187-63.418Q-35.384-62.830-35.785-62.431Q-36.185-62.033-36.740-62.033M-36.740-62.591Q-36.439-62.591-36.222-62.808Q-36.006-63.025-35.879-63.353Q-35.752-63.681-35.691-64.027Q-35.631-64.373-35.631-64.654Q-35.631-64.904-35.693-65.230Q-35.756-65.556-35.886-65.847Q-36.017-66.138-36.230-66.328Q-36.443-66.517-36.740-66.517Q-37.115-66.517-37.367-66.205Q-37.619-65.892-37.736-65.459Q-37.853-65.025-37.853-64.654Q-37.853-64.256-37.740-63.775Q-37.627-63.295-37.379-62.943Q-37.131-62.591-36.740-62.591M-34.357-62.349L-34.357-62.439Q-34.318-62.646-34.111-62.670L-33.705-62.670L-32.775-63.888L-33.646-64.998L-34.064-64.998Q-34.259-65.017-34.310-65.240L-34.310-65.326Q-34.259-65.537-34.064-65.560L-32.904-65.560Q-32.705-65.537-32.654-65.326L-32.654-65.240Q-32.705-65.021-32.904-64.998L-33.013-64.998L-32.517-64.341L-32.041-64.998L-32.158-64.998Q-32.357-65.021-32.408-65.240L-32.408-65.326Q-32.357-65.537-32.158-65.560L-30.998-65.560Q-30.802-65.541-30.752-65.326L-30.752-65.240Q-30.802-65.021-30.998-64.998L-31.408-64.998L-32.256-63.888L-31.295-62.670L-30.888-62.670Q-30.689-62.646-30.638-62.439L-30.638-62.349Q-30.677-62.134-30.888-62.111L-32.041-62.111Q-32.248-62.134-32.287-62.349L-32.287-62.439Q-32.248-62.646-32.041-62.670L-31.912-62.670L-32.517-63.525L-33.103-62.670L-32.959-62.670Q-32.752-62.646-32.713-62.439L-32.713-62.349Q-32.752-62.134-32.959-62.111L-34.111-62.111Q-34.306-62.131-34.357-62.349M-28.248-62.033Q-28.681-62.033-29.013-62.271Q-29.345-62.509-29.566-62.898Q-29.787-63.287-29.894-63.724Q-30.002-64.162-30.002-64.560Q-30.002-64.951-29.892-65.394Q-29.783-65.838-29.566-66.218Q-29.349-66.599-29.015-66.840Q-28.681-67.080-28.248-67.080Q-27.693-67.080-27.293-66.681Q-26.892-66.283-26.695-65.697Q-26.498-65.111-26.498-64.560Q-26.498-64.006-26.695-63.418Q-26.892-62.830-27.293-62.431Q-27.693-62.033-28.248-62.033M-28.248-62.591Q-27.947-62.591-27.730-62.808Q-27.513-63.025-27.386-63.353Q-27.259-63.681-27.199-64.027Q-27.138-64.373-27.138-64.654Q-27.138-64.904-27.201-65.230Q-27.263-65.556-27.394-65.847Q-27.525-66.138-27.738-66.328Q-27.951-66.517-28.248-66.517Q-28.623-66.517-28.875-66.205Q-29.127-65.892-29.244-65.459Q-29.361-65.025-29.361-64.654Q-29.361-64.256-29.248-63.775Q-29.134-63.295-28.886-62.943Q-28.638-62.591-28.248-62.591M-24.986-62.990Q-24.869-62.787-24.634-62.689Q-24.400-62.591-24.138-62.591Q-23.841-62.591-23.568-62.720Q-23.295-62.849-23.121-63.086Q-22.947-63.322-22.947-63.623Q-22.947-63.877-23.066-64.119Q-23.185-64.361-23.400-64.507Q-23.615-64.654-23.884-64.654Q-24.490-64.654-24.826-64.334Q-24.904-64.248-24.959-64.201Q-25.013-64.154-25.099-64.142L-25.201-64.142Q-25.400-64.166-25.451-64.384L-25.451-66.767Q-25.400-66.974-25.201-66.998L-22.841-66.998Q-22.646-66.978-22.595-66.767L-22.595-66.677Q-22.646-66.463-22.841-66.439L-24.810-66.439L-24.810-65.013Q-24.404-65.216-23.884-65.216Q-23.455-65.216-23.090-65Q-22.724-64.783-22.515-64.414Q-22.306-64.045-22.306-63.623Q-22.306-63.150-22.570-62.791Q-22.834-62.431-23.257-62.232Q-23.681-62.033-24.138-62.033Q-24.392-62.033-24.670-62.107Q-24.947-62.181-25.181-62.338Q-25.416-62.494-25.556-62.728Q-25.697-62.963-25.697-63.248Q-25.697-63.416-25.582-63.539Q-25.466-63.662-25.291-63.662Q-25.209-63.662-25.138-63.632Q-25.068-63.603-25.011-63.548Q-24.955-63.494-24.923-63.418Q-24.892-63.341-24.892-63.263Q-24.892-63.103-24.986-62.990M-20.541-62.326L-20.541-62.384Q-20.541-62.927-20.435-63.474Q-20.330-64.021-20.125-64.545Q-19.920-65.068-19.623-65.547Q-19.326-66.025-18.947-66.439L-20.884-66.439L-20.884-66.302Q-20.935-66.088-21.134-66.064L-21.275-66.064Q-21.474-66.088-21.525-66.302L-21.525-66.896Q-21.474-67.107-21.275-67.127L-21.134-67.127Q-20.998-67.115-20.923-66.998L-18.236-66.998Q-18.041-66.974-17.990-66.767L-17.990-66.677Q-18.002-66.588-18.045-66.537Q-18.306-66.279-18.537-66.013Q-18.767-65.748-18.929-65.515Q-19.091-65.283-19.250-64.984Q-19.408-64.685-19.541-64.334Q-19.716-63.861-19.808-63.345Q-19.900-62.830-19.900-62.326Q-19.912-62.201-19.998-62.123Q-20.084-62.045-20.205-62.033Q-20.341-62.033-20.435-62.111Q-20.529-62.189-20.541-62.326\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.069 235.757)\">\u003Cpath d=\"M-38.295-62.912Q-38.295-63.088-38.179-63.211Q-38.064-63.334-37.884-63.334Q-37.716-63.334-37.601-63.218Q-37.486-63.103-37.486-62.927Q-37.486-62.806-37.548-62.705Q-37.400-62.591-37.091-62.591Q-36.787-62.591-36.533-62.742Q-36.279-62.892-36.097-63.138Q-35.916-63.384-35.808-63.677Q-35.701-63.970-35.670-64.248Q-35.908-64.048-36.216-63.943Q-36.525-63.838-36.845-63.838Q-37.291-63.838-37.664-64.054Q-38.037-64.271-38.254-64.640Q-38.470-65.009-38.470-65.455Q-38.470-65.927-38.224-66.298Q-37.978-66.670-37.572-66.875Q-37.166-67.080-36.693-67.080Q-36.209-67.080-35.877-66.851Q-35.545-66.623-35.357-66.250Q-35.170-65.877-35.091-65.447Q-35.013-65.017-35.013-64.560Q-35.013-63.951-35.267-63.363Q-35.521-62.775-35.998-62.404Q-36.474-62.033-37.091-62.033Q-37.588-62.033-37.941-62.242Q-38.295-62.451-38.295-62.912M-36.791-64.400Q-36.404-64.400-36.068-64.629Q-35.732-64.857-35.732-65.224Q-35.732-65.263-35.748-65.341Q-35.763-65.420-35.763-65.455Q-35.763-65.466-35.756-65.498Q-35.748-65.529-35.748-65.537Q-35.810-65.787-35.929-66.007Q-36.048-66.228-36.242-66.373Q-36.435-66.517-36.693-66.517Q-37.166-66.517-37.498-66.216Q-37.830-65.916-37.830-65.455Q-37.830-65.173-37.693-64.927Q-37.556-64.681-37.318-64.541Q-37.080-64.400-36.791-64.400M-32.494-62.033Q-32.927-62.033-33.259-62.271Q-33.591-62.509-33.812-62.898Q-34.033-63.287-34.140-63.724Q-34.248-64.162-34.248-64.560Q-34.248-64.951-34.138-65.394Q-34.029-65.838-33.812-66.218Q-33.595-66.599-33.261-66.840Q-32.927-67.080-32.494-67.080Q-31.939-67.080-31.539-66.681Q-31.138-66.283-30.941-65.697Q-30.744-65.111-30.744-64.560Q-30.744-64.006-30.941-63.418Q-31.138-62.830-31.539-62.431Q-31.939-62.033-32.494-62.033M-32.494-62.591Q-32.193-62.591-31.976-62.808Q-31.759-63.025-31.632-63.353Q-31.506-63.681-31.445-64.027Q-31.384-64.373-31.384-64.654Q-31.384-64.904-31.447-65.230Q-31.509-65.556-31.640-65.847Q-31.771-66.138-31.984-66.328Q-32.197-66.517-32.494-66.517Q-32.869-66.517-33.121-66.205Q-33.373-65.892-33.490-65.459Q-33.607-65.025-33.607-64.654Q-33.607-64.256-33.494-63.775Q-33.381-63.295-33.132-62.943Q-32.884-62.591-32.494-62.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(222.619 235.527)\">\u003Cpath d=\"M-38.638-62.349L-38.638-62.439Q-38.580-62.646-38.388-62.670L-37.677-62.670L-37.677-64.998L-38.388-64.998Q-38.584-65.021-38.638-65.240L-38.638-65.326Q-38.580-65.537-38.388-65.560L-37.287-65.560Q-37.088-65.541-37.037-65.326L-37.037-64.998Q-36.775-65.283-36.420-65.441Q-36.064-65.599-35.677-65.599Q-35.384-65.599-35.150-65.465Q-34.916-65.330-34.916-65.064Q-34.916-64.896-35.025-64.779Q-35.134-64.662-35.302-64.662Q-35.455-64.662-35.570-64.773Q-35.685-64.884-35.685-65.041Q-36.060-65.041-36.375-64.840Q-36.689-64.638-36.863-64.304Q-37.037-63.970-37.037-63.591L-37.037-62.670L-36.091-62.670Q-35.884-62.646-35.845-62.439L-35.845-62.349Q-35.884-62.134-36.091-62.111L-38.388-62.111Q-38.580-62.134-38.638-62.349M-31.103-63.599L-33.545-63.599Q-33.490-63.322-33.293-63.099Q-33.095-62.877-32.818-62.754Q-32.541-62.631-32.256-62.631Q-31.783-62.631-31.560-62.920Q-31.552-62.931-31.496-63.037Q-31.439-63.142-31.390-63.185Q-31.341-63.228-31.248-63.240L-31.103-63.240Q-30.912-63.220-30.853-63.006L-30.853-62.951Q-30.920-62.650-31.150-62.453Q-31.381-62.256-31.693-62.164Q-32.006-62.072-32.310-62.072Q-32.795-62.072-33.234-62.300Q-33.673-62.529-33.941-62.929Q-34.209-63.330-34.209-63.822L-34.209-63.881Q-34.209-64.349-33.963-64.752Q-33.716-65.154-33.308-65.388Q-32.900-65.623-32.431-65.623Q-31.927-65.623-31.574-65.400Q-31.220-65.177-31.037-64.789Q-30.853-64.400-30.853-63.896L-30.853-63.838Q-30.912-63.623-31.103-63.599M-33.537-64.150L-31.509-64.150Q-31.556-64.560-31.795-64.812Q-32.033-65.064-32.431-65.064Q-32.826-65.064-33.132-64.802Q-33.439-64.541-33.537-64.150M-29.170-63.216L-29.170-64.998L-29.920-64.998Q-30.119-65.021-30.170-65.240L-30.170-65.326Q-30.119-65.537-29.920-65.560L-29.170-65.560L-29.170-66.310Q-29.119-66.517-28.920-66.545L-28.775-66.545Q-28.580-66.517-28.529-66.310L-28.529-65.560L-27.170-65.560Q-26.978-65.541-26.920-65.326L-26.920-65.240Q-26.974-65.021-27.170-64.998L-28.529-64.998L-28.529-63.248Q-28.529-62.631-27.955-62.631Q-27.705-62.631-27.541-62.816Q-27.377-63.002-27.377-63.248Q-27.377-63.341-27.304-63.412Q-27.232-63.482-27.131-63.494L-26.986-63.494Q-26.787-63.470-26.736-63.263L-26.736-63.216Q-26.736-62.892-26.920-62.629Q-27.103-62.365-27.396-62.218Q-27.689-62.072-28.009-62.072Q-28.521-62.072-28.845-62.382Q-29.170-62.693-29.170-63.216\" 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-68.737-72.07v253.23\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-68.737 17.556h359.928M-68.737 74.462h359.928\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The assembled bytes of asum.ys from address 0x000. Each irmovq is 30, then f:rB, then the 8-byte little-endian value; call is 80 plus the destination 0x028; the OPq instructions are two bytes; jne is 74 plus the destination 0x03e; ret is 90 and halt is 00. The label addresses (sum = 0x028, loop = 0x03e) appear literally inside the call and jne.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:346.385px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 259.789 177.904\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-16.993-66.493v45.525h85.359v-45.525Zm85.359 45.525\"\u002F>\u003Cg stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-21.014 29.873)\">\u003Cpath d=\"M37.419-77.720Q37.419-78.216 37.669-78.641Q37.919-79.067 38.339-79.313Q38.759-79.559 39.259-79.559Q39.798-79.559 40.189-79.434Q40.579-79.309 40.579-78.895Q40.579-78.790 40.529-78.698Q40.478-78.606 40.386-78.555Q40.294-78.505 40.185-78.505Q40.079-78.505 39.988-78.555Q39.896-78.606 39.845-78.698Q39.794-78.790 39.794-78.895Q39.794-79.118 39.962-79.223Q39.740-79.282 39.267-79.282Q38.970-79.282 38.755-79.143Q38.540-79.005 38.409-78.774Q38.279-78.544 38.220-78.274Q38.161-78.005 38.161-77.720Q38.161-77.325 38.294-76.975Q38.427-76.626 38.699-76.409Q38.970-76.192 39.368-76.192Q39.743-76.192 40.019-76.409Q40.294-76.626 40.396-76.985Q40.411-77.048 40.474-77.048L40.579-77.048Q40.615-77.048 40.640-77.020Q40.665-76.993 40.665-76.954L40.665-76.930Q40.533-76.450 40.148-76.182Q39.763-75.915 39.259-75.915Q38.896-75.915 38.562-76.052Q38.228-76.188 37.968-76.438Q37.708-76.688 37.564-77.024Q37.419-77.360 37.419-77.720M41.154-77.688Q41.154-78.192 41.409-78.624Q41.665-79.055 42.101-79.307Q42.536-79.559 43.036-79.559Q43.423-79.559 43.765-79.415Q44.107-79.270 44.368-79.009Q44.630-78.747 44.773-78.411Q44.915-78.075 44.915-77.688Q44.915-77.196 44.652-76.786Q44.388-76.376 43.958-76.145Q43.529-75.915 43.036-75.915Q42.544-75.915 42.111-76.147Q41.677-76.380 41.415-76.788Q41.154-77.196 41.154-77.688M43.036-76.192Q43.493-76.192 43.745-76.415Q43.997-76.638 44.085-76.989Q44.173-77.341 44.173-77.786Q44.173-78.216 44.079-78.554Q43.986-78.891 43.732-79.098Q43.478-79.305 43.036-79.305Q42.388-79.305 42.144-78.889Q41.900-78.473 41.900-77.786Q41.900-77.341 41.988-76.989Q42.075-76.638 42.327-76.415Q42.579-76.192 43.036-76.192\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.014 29.873)\">\u003Cpath d=\"M47.457-75.915Q46.976-75.915 46.568-76.159Q46.160-76.403 45.922-76.817Q45.683-77.231 45.683-77.720Q45.683-78.212 45.941-78.628Q46.199-79.044 46.631-79.282Q47.062-79.520 47.554-79.520Q48.175-79.520 48.625-79.083L48.625-80.712Q48.625-80.927 48.562-81.022Q48.500-81.118 48.382-81.139Q48.265-81.161 48.019-81.161L48.019-81.458L49.242-81.544L49.242-76.735Q49.242-76.524 49.304-76.429Q49.367-76.333 49.484-76.311Q49.601-76.290 49.851-76.290L49.851-75.993L48.601-75.915L48.601-76.399Q48.136-75.915 47.457-75.915M47.523-76.169Q47.863-76.169 48.156-76.360Q48.449-76.552 48.601-76.848L48.601-78.680Q48.453-78.954 48.191-79.110Q47.929-79.266 47.617-79.266Q46.992-79.266 46.709-78.819Q46.425-78.372 46.425-77.712Q46.425-77.067 46.677-76.618Q46.929-76.169 47.523-76.169M50.359-77.747Q50.359-78.227 50.591-78.643Q50.824-79.059 51.234-79.309Q51.644-79.559 52.121-79.559Q52.851-79.559 53.250-79.118Q53.648-78.677 53.648-77.946Q53.648-77.841 53.554-77.817L51.105-77.817L51.105-77.747Q51.105-77.337 51.226-76.981Q51.347-76.626 51.619-76.409Q51.890-76.192 52.320-76.192Q52.683-76.192 52.980-76.421Q53.277-76.649 53.379-77.001Q53.386-77.048 53.472-77.063L53.554-77.063Q53.648-77.036 53.648-76.954Q53.648-76.946 53.640-76.915Q53.578-76.688 53.439-76.505Q53.300-76.321 53.109-76.188Q52.918-76.055 52.699-75.985Q52.480-75.915 52.242-75.915Q51.871-75.915 51.533-76.052Q51.195-76.188 50.927-76.440Q50.660-76.692 50.509-77.032Q50.359-77.372 50.359-77.747M51.113-78.055L53.074-78.055Q53.074-78.360 52.972-78.651Q52.871-78.942 52.654-79.124Q52.437-79.305 52.121-79.305Q51.820-79.305 51.590-79.118Q51.359-78.930 51.236-78.639Q51.113-78.348 51.113-78.055M54.617-76.458Q54.617-76.641 54.754-76.778Q54.890-76.915 55.082-76.915Q55.273-76.915 55.406-76.782Q55.539-76.649 55.539-76.458Q55.539-76.259 55.406-76.126Q55.273-75.993 55.082-75.993Q54.890-75.993 54.754-76.130Q54.617-76.266 54.617-76.458M54.617-78.985Q54.617-79.169 54.754-79.305Q54.890-79.442 55.082-79.442Q55.273-79.442 55.406-79.309Q55.539-79.177 55.539-78.985Q55.539-78.786 55.406-78.653Q55.273-78.520 55.082-78.520Q54.890-78.520 54.754-78.657Q54.617-78.794 54.617-78.985\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.014 29.873)\">\u003Cpath d=\"M25.631-66.731L25.631-66.821Q25.682-67.032 25.877-67.052L26.077-67.052L26.077-69.380L25.877-69.380Q25.670-69.403 25.631-69.622L25.631-69.708Q25.682-69.923 25.877-69.942L26.358-69.942Q26.549-69.919 26.608-69.708Q26.928-69.981 27.342-69.981Q27.534-69.981 27.702-69.872Q27.870-69.763 27.944-69.591Q28.120-69.782 28.342-69.882Q28.565-69.981 28.807-69.981Q29.225-69.981 29.379-69.639Q29.534-69.298 29.534-68.829L29.534-67.052L29.733-67.052Q29.944-67.028 29.983-66.821L29.983-66.731Q29.932-66.516 29.733-66.493L28.916-66.493Q28.721-66.516 28.670-66.731L28.670-66.821Q28.721-67.028 28.916-67.052L29.006-67.052L29.006-68.798Q29.006-69.423 28.756-69.423Q28.424-69.423 28.247-69.112Q28.069-68.802 28.069-68.438L28.069-67.052L28.272-67.052Q28.479-67.028 28.518-66.821L28.518-66.731Q28.467-66.516 28.272-66.493L27.456-66.493Q27.256-66.516 27.206-66.731L27.206-66.821Q27.256-67.028 27.456-67.052L27.541-67.052L27.541-68.798Q27.541-69.423 27.295-69.423Q26.963-69.423 26.786-69.110Q26.608-68.798 26.608-68.438L26.608-67.052L26.807-67.052Q27.014-67.028 27.053-66.821L27.053-66.731Q27.002-66.513 26.807-66.493L25.877-66.493Q25.670-66.516 25.631-66.731M30.338-67.606Q30.338-68.052 30.752-68.309Q31.166-68.567 31.707-68.667Q32.248-68.766 32.756-68.774Q32.756-68.989 32.622-69.141Q32.487-69.294 32.280-69.370Q32.073-69.446 31.862-69.446Q31.518-69.446 31.358-69.423L31.358-69.364Q31.358-69.196 31.239-69.081Q31.120-68.966 30.956-68.966Q30.780-68.966 30.665-69.089Q30.549-69.212 30.549-69.380Q30.549-69.786 30.930-69.895Q31.311-70.005 31.870-70.005Q32.139-70.005 32.407-69.927Q32.674-69.848 32.899-69.698Q33.123-69.548 33.260-69.327Q33.397-69.106 33.397-68.829L33.397-67.110Q33.397-67.052 33.924-67.052Q34.120-67.032 34.170-66.821L34.170-66.731Q34.120-66.516 33.924-66.493L33.780-66.493Q33.436-66.493 33.207-66.540Q32.979-66.587 32.834-66.774Q32.373-66.454 31.666-66.454Q31.331-66.454 31.026-66.595Q30.721-66.735 30.530-66.997Q30.338-67.259 30.338-67.606M30.979-67.598Q30.979-67.325 31.221-67.169Q31.463-67.013 31.748-67.013Q31.967-67.013 32.200-67.071Q32.432-67.130 32.594-67.268Q32.756-67.407 32.756-67.630L32.756-68.220Q32.475-68.220 32.059-68.163Q31.643-68.106 31.311-67.968Q30.979-67.829 30.979-67.598M34.795-66.731L34.795-66.821Q34.846-67.028 35.041-67.052L36.081-67.052L36.081-69.380L35.108-69.380Q34.909-69.403 34.858-69.622L34.858-69.708Q34.909-69.919 35.108-69.942L36.475-69.942Q36.670-69.923 36.721-69.708L36.721-67.052L37.635-67.052Q37.831-67.028 37.881-66.821L37.881-66.731Q37.831-66.516 37.635-66.493L35.041-66.493Q34.846-66.516 34.795-66.731M35.827-70.919L35.827-70.973Q35.827-71.145 35.963-71.266Q36.100-71.388 36.276-71.388Q36.448-71.388 36.584-71.266Q36.721-71.145 36.721-70.973L36.721-70.919Q36.721-70.743 36.584-70.622Q36.448-70.501 36.276-70.501Q36.100-70.501 35.963-70.622Q35.827-70.743 35.827-70.919M38.495-66.731L38.495-66.821Q38.538-67.028 38.745-67.052L39.166-67.052L39.166-69.380L38.745-69.380Q38.538-69.403 38.495-69.622L38.495-69.708Q38.541-69.919 38.745-69.942L39.561-69.942Q39.756-69.919 39.807-69.708L39.807-69.622L39.799-69.598Q40.026-69.778 40.299-69.880Q40.573-69.981 40.866-69.981Q41.213-69.981 41.452-69.841Q41.690-69.700 41.805-69.442Q41.920-69.184 41.920-68.829L41.920-67.052L42.346-67.052Q42.553-67.028 42.592-66.821L42.592-66.731Q42.553-66.516 42.346-66.493L40.952-66.493Q40.756-66.516 40.706-66.731L40.706-66.821Q40.756-67.032 40.952-67.052L41.280-67.052L41.280-68.798Q41.280-69.106 41.190-69.264Q41.100-69.423 40.807-69.423Q40.538-69.423 40.309-69.292Q40.081-69.161 39.944-68.932Q39.807-68.704 39.807-68.438L39.807-67.052L40.233-67.052Q40.440-67.028 40.479-66.821L40.479-66.731Q40.440-66.516 40.233-66.493L38.745-66.493Q38.538-66.516 38.495-66.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.014 29.873)\">\u003Cpath d=\"M48.641-68.309L46.168-68.309Q46.090-68.321 46.041-68.370Q45.993-68.419 45.993-68.493Q45.993-68.567 46.041-68.616Q46.090-68.665 46.168-68.677L48.641-68.677L48.641-71.157Q48.668-71.325 48.825-71.325Q48.899-71.325 48.948-71.276Q48.997-71.227 49.008-71.157L49.008-68.677L51.481-68.677Q51.649-68.645 51.649-68.493Q51.649-68.341 51.481-68.309L49.008-68.309L49.008-65.829Q48.997-65.759 48.948-65.710Q48.899-65.661 48.825-65.661Q48.668-65.661 48.641-65.829\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-21.014 29.873)\">\u003Cpath d=\"M55.551-66.692L55.551-67.606Q55.578-67.813 55.789-67.837L55.957-67.837Q56.121-67.813 56.180-67.653Q56.383-67.013 57.110-67.013Q57.317-67.013 57.545-67.048Q57.774-67.083 57.942-67.198Q58.110-67.313 58.110-67.516Q58.110-67.727 57.887-67.841Q57.664-67.954 57.391-67.997L56.692-68.110Q55.551-68.321 55.551-69.044Q55.551-69.333 55.695-69.522Q55.840-69.712 56.080-69.819Q56.320-69.927 56.576-69.966Q56.832-70.005 57.110-70.005Q57.360-70.005 57.553-69.975Q57.746-69.946 57.910-69.868Q57.988-69.985 58.117-70.005L58.195-70.005Q58.293-69.993 58.356-69.930Q58.418-69.868 58.430-69.774L58.430-69.067Q58.418-68.973 58.356-68.907Q58.293-68.841 58.195-68.829L58.028-68.829Q57.934-68.841 57.867-68.907Q57.801-68.973 57.789-69.067Q57.789-69.446 57.094-69.446Q56.746-69.446 56.428-69.364Q56.110-69.282 56.110-69.036Q56.110-68.770 56.781-68.661L57.485-68.540Q57.969-68.458 58.319-68.210Q58.668-67.962 58.668-67.516Q58.668-67.126 58.432-66.884Q58.195-66.641 57.846-66.548Q57.496-66.454 57.110-66.454Q56.531-66.454 56.133-66.708Q56.063-66.583 56.014-66.526Q55.965-66.470 55.860-66.454L55.789-66.454Q55.574-66.477 55.551-66.692M59.953-67.348L59.953-69.380L59.531-69.380Q59.324-69.403 59.281-69.622L59.281-69.708Q59.328-69.919 59.531-69.942L60.348-69.942Q60.543-69.919 60.594-69.708L60.594-67.380Q60.594-67.145 60.764-67.079Q60.934-67.013 61.219-67.013Q61.426-67.013 61.621-67.089Q61.817-67.165 61.942-67.315Q62.067-67.466 62.067-67.677L62.067-69.380L61.645-69.380Q61.434-69.403 61.395-69.622L61.395-69.708Q61.434-69.919 61.645-69.942L62.457-69.942Q62.656-69.919 62.707-69.708L62.707-67.052L63.133-67.052Q63.340-67.028 63.379-66.821L63.379-66.731Q63.340-66.516 63.133-66.493L62.317-66.493Q62.117-66.516 62.067-66.716Q61.664-66.454 61.156-66.454Q60.922-66.454 60.707-66.495Q60.492-66.536 60.326-66.638Q60.160-66.739 60.057-66.917Q59.953-67.095 59.953-67.348M63.403-66.731L63.403-66.821Q63.453-67.032 63.649-67.052L63.848-67.052L63.848-69.380L63.649-69.380Q63.442-69.403 63.403-69.622L63.403-69.708Q63.453-69.923 63.649-69.942L64.129-69.942Q64.320-69.919 64.379-69.708Q64.699-69.981 65.113-69.981Q65.305-69.981 65.473-69.872Q65.641-69.763 65.715-69.591Q65.891-69.782 66.113-69.882Q66.336-69.981 66.578-69.981Q66.996-69.981 67.151-69.639Q67.305-69.298 67.305-68.829L67.305-67.052L67.504-67.052Q67.715-67.028 67.754-66.821L67.754-66.731Q67.703-66.516 67.504-66.493L66.688-66.493Q66.492-66.516 66.442-66.731L66.442-66.821Q66.492-67.028 66.688-67.052L66.778-67.052L66.778-68.798Q66.778-69.423 66.528-69.423Q66.195-69.423 66.018-69.112Q65.840-68.802 65.840-68.438L65.840-67.052L66.043-67.052Q66.250-67.028 66.289-66.821L66.289-66.731Q66.238-66.516 66.043-66.493L65.227-66.493Q65.028-66.516 64.977-66.731L64.977-66.821Q65.028-67.028 65.227-67.052L65.313-67.052L65.313-68.798Q65.313-69.423 65.067-69.423Q64.735-69.423 64.557-69.110Q64.379-68.798 64.379-68.438L64.379-67.052L64.578-67.052Q64.785-67.028 64.824-66.821L64.824-66.731Q64.774-66.513 64.578-66.493L63.649-66.493Q63.442-66.516 63.403-66.731\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-16.993-20.968v39.834h85.359v-39.834Zm85.359 39.834\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-17.614 70.914)\">\u003Cpath d=\"M33.949-76.825Q33.949-77.309 34.351-77.604Q34.754-77.899 35.304-78.018Q35.855-78.138 36.347-78.138L36.347-78.427Q36.347-78.653 36.232-78.860Q36.117-79.067 35.920-79.186Q35.722-79.305 35.492-79.305Q35.066-79.305 34.781-79.200Q34.851-79.173 34.898-79.118Q34.945-79.063 34.970-78.993Q34.996-78.923 34.996-78.848Q34.996-78.743 34.945-78.651Q34.894-78.559 34.802-78.509Q34.711-78.458 34.605-78.458Q34.500-78.458 34.408-78.509Q34.316-78.559 34.265-78.651Q34.215-78.743 34.215-78.848Q34.215-79.266 34.603-79.413Q34.992-79.559 35.492-79.559Q35.824-79.559 36.177-79.429Q36.531-79.298 36.759-79.044Q36.988-78.790 36.988-78.442L36.988-76.641Q36.988-76.509 37.060-76.399Q37.133-76.290 37.261-76.290Q37.386-76.290 37.455-76.395Q37.523-76.501 37.523-76.641L37.523-77.153L37.804-77.153L37.804-76.641Q37.804-76.438 37.687-76.280Q37.570-76.122 37.388-76.038Q37.207-75.954 37.004-75.954Q36.773-75.954 36.621-76.126Q36.468-76.298 36.437-76.528Q36.277-76.247 35.968-76.081Q35.660-75.915 35.308-75.915Q34.797-75.915 34.373-76.138Q33.949-76.360 33.949-76.825M34.636-76.825Q34.636-76.540 34.863-76.354Q35.090-76.169 35.383-76.169Q35.629-76.169 35.853-76.286Q36.078-76.403 36.213-76.606Q36.347-76.809 36.347-77.063L36.347-77.895Q36.082-77.895 35.797-77.841Q35.511-77.786 35.240-77.657Q34.968-77.528 34.802-77.321Q34.636-77.114 34.636-76.825M40.105-75.993L38.125-75.993L38.125-76.290Q38.394-76.290 38.562-76.335Q38.730-76.380 38.730-76.552L38.730-78.688Q38.730-78.903 38.668-78.999Q38.605-79.095 38.488-79.116Q38.371-79.138 38.125-79.138L38.125-79.434L39.293-79.520L39.293-78.735Q39.371-78.946 39.523-79.132Q39.675-79.317 39.875-79.419Q40.074-79.520 40.300-79.520Q40.547-79.520 40.738-79.376Q40.929-79.231 40.929-79.001Q40.929-78.845 40.824-78.735Q40.718-78.626 40.562-78.626Q40.406-78.626 40.297-78.735Q40.187-78.845 40.187-79.001Q40.187-79.161 40.293-79.266Q39.968-79.266 39.754-79.038Q39.539-78.809 39.443-78.470Q39.347-78.130 39.347-77.825L39.347-76.552Q39.347-76.384 39.574-76.337Q39.800-76.290 40.105-76.290L40.105-75.993M43.418-75.993L41.437-75.993L41.437-76.290Q41.707-76.290 41.875-76.335Q42.043-76.380 42.043-76.552L42.043-78.688Q42.043-78.903 41.980-78.999Q41.918-79.095 41.800-79.116Q41.683-79.138 41.437-79.138L41.437-79.434L42.605-79.520L42.605-78.735Q42.683-78.946 42.836-79.132Q42.988-79.317 43.187-79.419Q43.386-79.520 43.613-79.520Q43.859-79.520 44.050-79.376Q44.242-79.231 44.242-79.001Q44.242-78.845 44.136-78.735Q44.031-78.626 43.875-78.626Q43.718-78.626 43.609-78.735Q43.500-78.845 43.500-79.001Q43.500-79.161 43.605-79.266Q43.281-79.266 43.066-79.038Q42.851-78.809 42.756-78.470Q42.660-78.130 42.660-77.825L42.660-76.552Q42.660-76.384 42.886-76.337Q43.113-76.290 43.418-76.290L43.418-75.993M44.820-76.825Q44.820-77.309 45.222-77.604Q45.625-77.899 46.175-78.018Q46.726-78.138 47.218-78.138L47.218-78.427Q47.218-78.653 47.103-78.860Q46.988-79.067 46.791-79.186Q46.593-79.305 46.363-79.305Q45.937-79.305 45.652-79.200Q45.722-79.173 45.769-79.118Q45.816-79.063 45.842-78.993Q45.867-78.923 45.867-78.848Q45.867-78.743 45.816-78.651Q45.765-78.559 45.674-78.509Q45.582-78.458 45.476-78.458Q45.371-78.458 45.279-78.509Q45.187-78.559 45.136-78.651Q45.086-78.743 45.086-78.848Q45.086-79.266 45.474-79.413Q45.863-79.559 46.363-79.559Q46.695-79.559 47.049-79.429Q47.402-79.298 47.631-79.044Q47.859-78.790 47.859-78.442L47.859-76.641Q47.859-76.509 47.931-76.399Q48.004-76.290 48.133-76.290Q48.258-76.290 48.326-76.395Q48.394-76.501 48.394-76.641L48.394-77.153L48.675-77.153L48.675-76.641Q48.675-76.438 48.558-76.280Q48.441-76.122 48.259-76.038Q48.078-75.954 47.875-75.954Q47.644-75.954 47.492-76.126Q47.340-76.298 47.308-76.528Q47.148-76.247 46.840-76.081Q46.531-75.915 46.179-75.915Q45.668-75.915 45.244-76.138Q44.820-76.360 44.820-76.825M45.508-76.825Q45.508-76.540 45.734-76.354Q45.961-76.169 46.254-76.169Q46.500-76.169 46.724-76.286Q46.949-76.403 47.084-76.606Q47.218-76.809 47.218-77.063L47.218-77.895Q46.953-77.895 46.668-77.841Q46.383-77.786 46.111-77.657Q45.840-77.528 45.674-77.321Q45.508-77.114 45.508-76.825\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.614 70.914)\">\u003Cpath d=\"M49.158-74.696Q49.272-74.618 49.447-74.618Q49.736-74.618 49.957-74.831Q50.178-75.044 50.303-75.345L50.592-75.993L49.318-78.880Q49.236-79.055 49.092-79.100Q48.947-79.145 48.678-79.145L48.678-79.442L50.397-79.442L50.397-79.145Q49.975-79.145 49.975-78.962Q49.975-78.950 49.990-78.880L50.928-76.755L51.760-78.665Q51.799-78.755 51.799-78.833Q51.799-78.973 51.697-79.059Q51.596-79.145 51.455-79.145L51.455-79.442L52.807-79.442L52.807-79.145Q52.553-79.145 52.359-79.020Q52.166-78.895 52.061-78.665L50.615-75.345Q50.502-75.091 50.336-74.868Q50.170-74.645 49.941-74.503Q49.713-74.360 49.447-74.360Q49.150-74.360 48.910-74.552Q48.670-74.743 48.670-75.032Q48.670-75.188 48.775-75.290Q48.881-75.391 49.029-75.391Q49.135-75.391 49.215-75.345Q49.295-75.298 49.342-75.220Q49.389-75.141 49.389-75.032Q49.389-74.911 49.328-74.823Q49.268-74.735 49.158-74.696\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.614 70.914)\">\u003Cpath d=\"M28.303-64.501Q27.690-64.958 27.288-65.593Q26.885-66.227 26.690-66.973Q26.495-67.720 26.495-68.493Q26.495-69.266 26.690-70.013Q26.885-70.759 27.288-71.393Q27.690-72.028 28.303-72.485Q28.315-72.489 28.323-72.491Q28.331-72.493 28.342-72.493L28.420-72.493Q28.459-72.493 28.485-72.466Q28.510-72.438 28.510-72.395Q28.510-72.345 28.479-72.325Q27.971-71.872 27.649-71.249Q27.327-70.626 27.186-69.930Q27.045-69.235 27.045-68.493Q27.045-67.759 27.184-67.059Q27.323-66.360 27.647-65.735Q27.971-65.110 28.479-64.661Q28.510-64.641 28.510-64.591Q28.510-64.548 28.485-64.520Q28.459-64.493 28.420-64.493L28.342-64.493Q28.334-64.497 28.325-64.499Q28.315-64.501 28.303-64.501M31.471-67.805L29.229-67.805L29.229-68.102L31.799-71.759Q31.838-71.813 31.901-71.813L32.045-71.813Q32.096-71.813 32.127-71.782Q32.159-71.751 32.159-71.700L32.159-68.102L32.991-68.102L32.991-67.805L32.159-67.805L32.159-67.052Q32.159-66.790 32.983-66.790L32.983-66.493L30.647-66.493L30.647-66.790Q31.471-66.790 31.471-67.052L31.471-67.805M31.526-70.907L29.557-68.102L31.526-68.102\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-17.614 70.914)\">\u003Cpath d=\"M40.532-64.942L38.677-64.942L38.677-65.235Q38.946-65.235 39.114-65.280Q39.282-65.325 39.282-65.501L39.282-66.950Q39.079-66.704 38.778-66.559Q38.477-66.415 38.145-66.415Q37.661-66.415 37.249-66.657Q36.837-66.899 36.596-67.311Q36.356-67.723 36.356-68.220Q36.356-68.716 36.612-69.130Q36.868-69.544 37.298-69.782Q37.727-70.020 38.220-70.020Q38.575-70.020 38.882-69.841Q39.188-69.661 39.380-69.348L39.669-70.020L39.923-70.020L39.923-65.501Q39.923-65.325 40.091-65.280Q40.259-65.235 40.532-65.235L40.532-64.942M38.204-66.669Q38.571-66.669 38.864-66.901Q39.157-67.134 39.305-67.493L39.305-68.829Q39.212-69.212 38.938-69.475Q38.665-69.739 38.290-69.739Q37.930-69.739 37.657-69.509Q37.384-69.278 37.241-68.921Q37.098-68.563 37.098-68.212Q37.098-67.876 37.223-67.514Q37.348-67.153 37.600-66.911Q37.852-66.669 38.204-66.669M41.477-67.446L41.477-69.188Q41.477-69.403 41.415-69.499Q41.352-69.595 41.233-69.616Q41.114-69.638 40.868-69.638L40.868-69.934L42.114-70.020L42.114-67.470L42.114-67.446Q42.114-67.134 42.169-66.972Q42.223-66.809 42.374-66.739Q42.524-66.669 42.845-66.669Q43.274-66.669 43.548-67.007Q43.821-67.345 43.821-67.790L43.821-69.188Q43.821-69.403 43.759-69.499Q43.696-69.595 43.577-69.616Q43.458-69.638 43.212-69.638L43.212-69.934L44.458-70.020L44.458-67.235Q44.458-67.024 44.520-66.929Q44.583-66.833 44.702-66.811Q44.821-66.790 45.067-66.790L45.067-66.493L43.845-66.415L43.845-67.036Q43.677-66.747 43.395-66.581Q43.114-66.415 42.794-66.415Q41.477-66.415 41.477-67.446M45.610-67.325Q45.610-67.809 46.013-68.104Q46.415-68.399 46.966-68.518Q47.516-68.638 48.009-68.638L48.009-68.927Q48.009-69.153 47.893-69.360Q47.778-69.567 47.581-69.686Q47.384-69.805 47.153-69.805Q46.727-69.805 46.442-69.700Q46.513-69.673 46.559-69.618Q46.606-69.563 46.632-69.493Q46.657-69.423 46.657-69.348Q46.657-69.243 46.606-69.151Q46.555-69.059 46.464-69.009Q46.372-68.958 46.266-68.958Q46.161-68.958 46.069-69.009Q45.977-69.059 45.927-69.151Q45.876-69.243 45.876-69.348Q45.876-69.766 46.264-69.913Q46.653-70.059 47.153-70.059Q47.485-70.059 47.839-69.929Q48.192-69.798 48.421-69.544Q48.649-69.290 48.649-68.942L48.649-67.141Q48.649-67.009 48.721-66.899Q48.794-66.790 48.923-66.790Q49.048-66.790 49.116-66.895Q49.184-67.001 49.184-67.141L49.184-67.653L49.466-67.653L49.466-67.141Q49.466-66.938 49.348-66.780Q49.231-66.622 49.050-66.538Q48.868-66.454 48.665-66.454Q48.434-66.454 48.282-66.626Q48.130-66.798 48.098-67.028Q47.938-66.747 47.630-66.581Q47.321-66.415 46.970-66.415Q46.458-66.415 46.034-66.638Q45.610-66.860 45.610-67.325M46.298-67.325Q46.298-67.040 46.524-66.854Q46.751-66.669 47.044-66.669Q47.290-66.669 47.514-66.786Q47.739-66.903 47.874-67.106Q48.009-67.309 48.009-67.563L48.009-68.395Q47.743-68.395 47.458-68.341Q47.173-68.286 46.901-68.157Q46.630-68.028 46.464-67.821Q46.298-67.614 46.298-67.325M51.575-66.415Q51.095-66.415 50.686-66.659Q50.278-66.903 50.040-67.317Q49.802-67.731 49.802-68.220Q49.802-68.712 50.059-69.128Q50.317-69.544 50.749-69.782Q51.180-70.020 51.673-70.020Q52.294-70.020 52.743-69.583L52.743-71.212Q52.743-71.427 52.680-71.522Q52.618-71.618 52.501-71.639Q52.384-71.661 52.138-71.661L52.138-71.958L53.360-72.044L53.360-67.235Q53.360-67.024 53.423-66.929Q53.485-66.833 53.602-66.811Q53.720-66.790 53.970-66.790L53.970-66.493L52.720-66.415L52.720-66.899Q52.255-66.415 51.575-66.415M51.641-66.669Q51.981-66.669 52.274-66.860Q52.567-67.052 52.720-67.348L52.720-69.180Q52.571-69.454 52.309-69.610Q52.048-69.766 51.735-69.766Q51.110-69.766 50.827-69.319Q50.544-68.872 50.544-68.212Q50.544-67.567 50.796-67.118Q51.048-66.669 51.641-66.669M54.520-66.501L54.520-67.723Q54.520-67.751 54.552-67.782Q54.583-67.813 54.606-67.813L54.712-67.813Q54.782-67.813 54.798-67.751Q54.860-67.430 54.999-67.190Q55.138-66.950 55.370-66.809Q55.602-66.669 55.911-66.669Q56.149-66.669 56.358-66.729Q56.567-66.790 56.704-66.938Q56.841-67.087 56.841-67.333Q56.841-67.587 56.630-67.753Q56.419-67.919 56.149-67.973L55.528-68.087Q55.122-68.165 54.821-68.421Q54.520-68.677 54.520-69.052Q54.520-69.419 54.721-69.641Q54.923-69.864 55.247-69.962Q55.571-70.059 55.911-70.059Q56.376-70.059 56.673-69.852L56.895-70.036Q56.919-70.059 56.950-70.059L57.001-70.059Q57.032-70.059 57.059-70.032Q57.087-70.005 57.087-69.973L57.087-68.989Q57.087-68.958 57.061-68.929Q57.036-68.899 57.001-68.899L56.895-68.899Q56.860-68.899 56.833-68.927Q56.805-68.954 56.805-68.989Q56.805-69.388 56.554-69.608Q56.302-69.829 55.903-69.829Q55.548-69.829 55.264-69.706Q54.981-69.583 54.981-69.278Q54.981-69.059 55.182-68.927Q55.384-68.794 55.630-68.751L56.255-68.638Q56.684-68.548 56.993-68.251Q57.302-67.954 57.302-67.540Q57.302-66.970 56.903-66.692Q56.505-66.415 55.911-66.415Q55.360-66.415 55.009-66.751L54.712-66.438Q54.688-66.415 54.653-66.415L54.606-66.415Q54.583-66.415 54.552-66.446Q54.520-66.477 54.520-66.501M58.231-64.493L58.149-64.493Q58.114-64.493 58.089-64.522Q58.063-64.552 58.063-64.591Q58.063-64.641 58.095-64.661Q58.481-64.997 58.764-65.446Q59.048-65.895 59.214-66.395Q59.380-66.895 59.454-67.413Q59.528-67.930 59.528-68.493Q59.528-69.063 59.454-69.579Q59.380-70.095 59.214-70.591Q59.048-71.087 58.768-71.534Q58.489-71.981 58.095-72.325Q58.063-72.345 58.063-72.395Q58.063-72.434 58.089-72.464Q58.114-72.493 58.149-72.493L58.231-72.493Q58.243-72.493 58.253-72.491Q58.263-72.489 58.270-72.485Q58.884-72.028 59.286-71.393Q59.688-70.759 59.884-70.013Q60.079-69.266 60.079-68.493Q60.079-67.720 59.884-66.973Q59.688-66.227 59.286-65.593Q58.884-64.958 58.270-64.501Q58.259-64.501 58.251-64.499Q58.243-64.497 58.231-64.493\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-16.993 18.866v39.833h85.359V18.866Zm85.359 39.833\" style=\"stroke-dasharray:3.0,3.0\"\u002F>\u003Cg transform=\"translate(-17 107.72)\">\u003Cpath d=\"M28.799-65.852Q28.268-66.161 27.868-66.649Q27.467-67.138 27.256-67.731Q27.045-68.325 27.045-68.942Q27.045-69.559 27.254-70.147Q27.463-70.735 27.860-71.216Q28.256-71.696 28.791-72.020Q28.862-72.044 28.893-72.044L28.983-72.044Q29.081-72.032 29.147-71.966Q29.213-71.899 29.213-71.798Q29.213-71.653 29.112-71.591Q28.663-71.302 28.336-70.886Q28.010-70.470 27.848-69.977Q27.686-69.485 27.686-68.942Q27.686-68.536 27.782-68.149Q27.877-67.763 28.055-67.427Q28.233-67.091 28.493-66.807Q28.752-66.524 29.100-66.294Q29.213-66.216 29.213-66.079Q29.213-65.981 29.147-65.911Q29.081-65.841 28.983-65.829L28.893-65.829Q28.834-65.829 28.799-65.852M30.674-67.348L30.674-69.380L30.252-69.380Q30.045-69.403 30.002-69.622L30.002-69.708Q30.049-69.919 30.252-69.942L31.069-69.942Q31.264-69.919 31.315-69.708L31.315-67.380Q31.315-67.145 31.485-67.079Q31.655-67.013 31.940-67.013Q32.147-67.013 32.342-67.089Q32.538-67.165 32.663-67.315Q32.788-67.466 32.788-67.677L32.788-69.380L32.366-69.380Q32.155-69.403 32.116-69.622L32.116-69.708Q32.155-69.919 32.366-69.942L33.178-69.942Q33.377-69.919 33.428-69.708L33.428-67.052L33.854-67.052Q34.061-67.028 34.100-66.821L34.100-66.731Q34.061-66.516 33.854-66.493L33.038-66.493Q32.838-66.516 32.788-66.716Q32.385-66.454 31.877-66.454Q31.643-66.454 31.428-66.495Q31.213-66.536 31.047-66.638Q30.881-66.739 30.778-66.917Q30.674-67.095 30.674-67.348M34.248-66.731L34.248-66.821Q34.291-67.028 34.498-67.052L34.920-67.052L34.920-69.380L34.498-69.380Q34.291-69.403 34.248-69.622L34.248-69.708Q34.295-69.919 34.498-69.942L35.315-69.942Q35.510-69.919 35.561-69.708L35.561-69.622L35.553-69.598Q35.780-69.778 36.053-69.880Q36.327-69.981 36.620-69.981Q36.967-69.981 37.206-69.841Q37.444-69.700 37.559-69.442Q37.674-69.184 37.674-68.829L37.674-67.052L38.100-67.052Q38.307-67.028 38.346-66.821L38.346-66.731Q38.307-66.516 38.100-66.493L36.706-66.493Q36.510-66.516 36.459-66.731L36.459-66.821Q36.510-67.032 36.706-67.052L37.034-67.052L37.034-68.798Q37.034-69.106 36.944-69.264Q36.854-69.423 36.561-69.423Q36.291-69.423 36.063-69.292Q35.834-69.161 35.698-68.932Q35.561-68.704 35.561-68.438L35.561-67.052L35.987-67.052Q36.194-67.028 36.233-66.821L36.233-66.731Q36.194-66.516 35.987-66.493L34.498-66.493Q34.291-66.516 34.248-66.731M39.166-67.348L39.166-69.380L38.745-69.380Q38.538-69.403 38.495-69.622L38.495-69.708Q38.541-69.919 38.745-69.942L39.561-69.942Q39.756-69.919 39.807-69.708L39.807-67.380Q39.807-67.145 39.977-67.079Q40.147-67.013 40.432-67.013Q40.639-67.013 40.834-67.089Q41.030-67.165 41.155-67.315Q41.280-67.466 41.280-67.677L41.280-69.380L40.858-69.380Q40.647-69.403 40.608-69.622L40.608-69.708Q40.647-69.919 40.858-69.942L41.670-69.942Q41.870-69.919 41.920-69.708L41.920-67.052L42.346-67.052Q42.553-67.028 42.592-66.821L42.592-66.731Q42.553-66.516 42.346-66.493L41.530-66.493Q41.331-66.516 41.280-66.716Q40.877-66.454 40.370-66.454Q40.135-66.454 39.920-66.495Q39.706-66.536 39.540-66.638Q39.373-66.739 39.270-66.917Q39.166-67.095 39.166-67.348M43.256-66.692L43.256-67.606Q43.284-67.813 43.495-67.837L43.663-67.837Q43.827-67.813 43.885-67.653Q44.088-67.013 44.815-67.013Q45.022-67.013 45.250-67.048Q45.479-67.083 45.647-67.198Q45.815-67.313 45.815-67.516Q45.815-67.727 45.592-67.841Q45.370-67.954 45.096-67.997L44.397-68.110Q43.256-68.321 43.256-69.044Q43.256-69.333 43.401-69.522Q43.545-69.712 43.786-69.819Q44.026-69.927 44.282-69.966Q44.538-70.005 44.815-70.005Q45.065-70.005 45.258-69.975Q45.452-69.946 45.616-69.868Q45.694-69.985 45.823-70.005L45.901-70.005Q45.998-69.993 46.061-69.930Q46.123-69.868 46.135-69.774L46.135-69.067Q46.123-68.973 46.061-68.907Q45.998-68.841 45.901-68.829L45.733-68.829Q45.639-68.841 45.573-68.907Q45.506-68.973 45.495-69.067Q45.495-69.446 44.799-69.446Q44.452-69.446 44.133-69.364Q43.815-69.282 43.815-69.036Q43.815-68.770 44.487-68.661L45.190-68.540Q45.674-68.458 46.024-68.210Q46.373-67.962 46.373-67.516Q46.373-67.126 46.137-66.884Q45.901-66.641 45.551-66.548Q45.202-66.454 44.815-66.454Q44.237-66.454 43.838-66.708Q43.768-66.583 43.719-66.526Q43.670-66.470 43.565-66.454L43.495-66.454Q43.280-66.477 43.256-66.692M50.428-67.981L47.987-67.981Q48.041-67.704 48.239-67.481Q48.436-67.259 48.713-67.136Q48.991-67.013 49.276-67.013Q49.748-67.013 49.971-67.302Q49.979-67.313 50.036-67.419Q50.092-67.524 50.141-67.567Q50.190-67.610 50.284-67.622L50.428-67.622Q50.620-67.602 50.678-67.388L50.678-67.333Q50.612-67.032 50.381-66.835Q50.151-66.638 49.838-66.546Q49.526-66.454 49.221-66.454Q48.737-66.454 48.297-66.682Q47.858-66.911 47.590-67.311Q47.323-67.712 47.323-68.204L47.323-68.263Q47.323-68.731 47.569-69.134Q47.815-69.536 48.223-69.770Q48.631-70.005 49.100-70.005Q49.604-70.005 49.957-69.782Q50.311-69.559 50.495-69.171Q50.678-68.782 50.678-68.278L50.678-68.220Q50.620-68.005 50.428-67.981M47.995-68.532L50.022-68.532Q49.975-68.942 49.737-69.194Q49.498-69.446 49.100-69.446Q48.706-69.446 48.399-69.184Q48.092-68.923 47.995-68.532M53.026-66.454Q52.561-66.454 52.196-66.704Q51.831-66.954 51.625-67.358Q51.420-67.763 51.420-68.220Q51.420-68.563 51.545-68.884Q51.670-69.204 51.903-69.454Q52.135-69.704 52.440-69.843Q52.745-69.981 53.100-69.981Q53.612-69.981 54.018-69.661L54.018-70.821L53.596-70.821Q53.385-70.845 53.346-71.059L53.346-71.149Q53.385-71.356 53.596-71.380L54.409-71.380Q54.608-71.356 54.659-71.149L54.659-67.052L55.084-67.052Q55.291-67.028 55.331-66.821L55.331-66.731Q55.291-66.516 55.084-66.493L54.268-66.493Q54.069-66.516 54.018-66.731L54.018-66.860Q53.823-66.669 53.561-66.561Q53.299-66.454 53.026-66.454M53.065-67.013Q53.424-67.013 53.676-67.282Q53.928-67.552 54.018-67.927L54.018-68.759Q53.959-68.946 53.832-69.097Q53.706-69.247 53.528-69.335Q53.350-69.423 53.155-69.423Q52.846-69.423 52.596-69.253Q52.346-69.083 52.202-68.798Q52.057-68.513 52.057-68.212Q52.057-67.763 52.342-67.388Q52.627-67.013 53.065-67.013M56.448-65.829L56.362-65.829Q56.256-65.841 56.188-65.913Q56.120-65.985 56.120-66.079Q56.120-66.220 56.225-66.286Q56.561-66.501 56.831-66.790Q57.100-67.079 57.284-67.427Q57.467-67.774 57.557-68.153Q57.647-68.532 57.647-68.942Q57.647-69.481 57.483-69.973Q57.319-70.466 57-70.880Q56.682-71.294 56.241-71.583Q56.120-71.665 56.120-71.798Q56.120-71.895 56.188-71.964Q56.256-72.032 56.362-72.044L56.448-72.044Q56.502-72.044 56.538-72.020Q56.924-71.798 57.264-71.450Q57.604-71.102 57.825-70.708Q58.045-70.313 58.166-69.868Q58.288-69.423 58.288-68.942Q58.288-68.458 58.166-68.007Q58.045-67.555 57.821-67.159Q57.596-66.763 57.272-66.429Q56.948-66.095 56.545-65.852Q56.475-65.829 56.448-65.829\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-16.993 58.7V75.77h85.359V58.7ZM68.366 75.77\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmr7\" font-size=\"7\">\u003Cg transform=\"translate(-16.077 136.158)\">\u003Cpath d=\"M26-66.500L26-67.563Q26-67.587 26.028-67.614Q26.055-67.641 26.079-67.641L26.188-67.641Q26.253-67.641 26.267-67.583Q26.363-67.149 26.609-66.898Q26.855-66.647 27.269-66.647Q27.610-66.647 27.863-66.780Q28.116-66.913 28.116-67.221Q28.116-67.378 28.022-67.493Q27.928-67.607 27.790-67.676Q27.651-67.744 27.484-67.782L26.903-67.881Q26.547-67.949 26.274-68.170Q26-68.390 26-68.732Q26-68.981 26.112-69.156Q26.223-69.330 26.409-69.429Q26.595-69.528 26.811-69.571Q27.026-69.614 27.269-69.614Q27.682-69.614 27.962-69.432L28.178-69.607Q28.188-69.610 28.195-69.612Q28.202-69.614 28.212-69.614L28.263-69.614Q28.290-69.614 28.314-69.590Q28.338-69.566 28.338-69.538L28.338-68.691Q28.338-68.670 28.314-68.643Q28.290-68.616 28.263-68.616L28.150-68.616Q28.123-68.616 28.097-68.641Q28.072-68.667 28.072-68.691Q28.072-68.927 27.966-69.091Q27.860-69.255 27.677-69.337Q27.494-69.419 27.262-69.419Q26.934-69.419 26.677-69.316Q26.421-69.214 26.421-68.937Q26.421-68.742 26.604-68.633Q26.787-68.523 27.016-68.482L27.590-68.376Q27.836-68.328 28.050-68.200Q28.263-68.072 28.400-67.869Q28.537-67.665 28.537-67.416Q28.537-66.903 28.171-66.664Q27.805-66.425 27.269-66.425Q26.773-66.425 26.441-66.719L26.175-66.445Q26.154-66.425 26.127-66.425L26.079-66.425Q26.055-66.425 26.028-66.452Q26-66.479 26-66.500M29.692-67.334L29.692-69.231L29.053-69.231L29.053-69.453Q29.371-69.453 29.588-69.663Q29.805-69.873 29.905-70.183Q30.006-70.492 30.006-70.800L30.273-70.800L30.273-69.511L31.350-69.511L31.350-69.231L30.273-69.231L30.273-67.347Q30.273-67.071 30.377-66.872Q30.481-66.674 30.741-66.674Q30.898-66.674 31.004-66.778Q31.110-66.883 31.160-67.036Q31.209-67.190 31.209-67.347L31.209-67.761L31.476-67.761L31.476-67.334Q31.476-67.108 31.377-66.898Q31.278-66.688 31.093-66.556Q30.909-66.425 30.680-66.425Q30.242-66.425 29.967-66.662Q29.692-66.900 29.692-67.334M32.344-67.221Q32.344-67.553 32.568-67.780Q32.792-68.007 33.135-68.135Q33.479-68.264 33.852-68.316Q34.224-68.369 34.528-68.369L34.528-68.622Q34.528-68.827 34.421-69.007Q34.313-69.186 34.132-69.289Q33.951-69.391 33.742-69.391Q33.335-69.391 33.100-69.299Q33.188-69.262 33.235-69.178Q33.281-69.094 33.281-68.992Q33.281-68.896 33.235-68.817Q33.188-68.739 33.108-68.694Q33.028-68.650 32.939-68.650Q32.789-68.650 32.688-68.747Q32.587-68.845 32.587-68.992Q32.587-69.614 33.742-69.614Q33.954-69.614 34.204-69.550Q34.453-69.487 34.655-69.368Q34.856-69.248 34.983-69.063Q35.109-68.879 35.109-68.636L35.109-67.060Q35.109-66.944 35.171-66.848Q35.232-66.753 35.345-66.753Q35.455-66.753 35.519-66.847Q35.584-66.941 35.584-67.060L35.584-67.508L35.851-67.508L35.851-67.060Q35.851-66.790 35.624-66.625Q35.396-66.459 35.116-66.459Q34.908-66.459 34.771-66.613Q34.634-66.766 34.610-66.982Q34.463-66.715 34.181-66.570Q33.899-66.425 33.575-66.425Q33.298-66.425 33.014-66.500Q32.730-66.575 32.537-66.754Q32.344-66.934 32.344-67.221M32.959-67.221Q32.959-67.047 33.060-66.917Q33.161-66.787 33.317-66.717Q33.472-66.647 33.636-66.647Q33.855-66.647 34.063-66.744Q34.272-66.842 34.400-67.023Q34.528-67.204 34.528-67.430L34.528-68.158Q34.204-68.158 33.838-68.067Q33.472-67.976 33.216-67.764Q32.959-67.553 32.959-67.221M36.268-68.004Q36.268-68.332 36.403-68.633Q36.538-68.933 36.774-69.154Q37.010-69.374 37.314-69.494Q37.618-69.614 37.943-69.614Q38.449-69.614 38.797-69.511Q39.146-69.409 39.146-69.033Q39.146-68.886 39.049-68.785Q38.951-68.684 38.804-68.684Q38.650-68.684 38.551-68.783Q38.452-68.882 38.452-69.033Q38.452-69.221 38.592-69.313Q38.391-69.364 37.950-69.364Q37.594-69.364 37.365-69.168Q37.136-68.971 37.035-68.662Q36.935-68.352 36.935-68.004Q36.935-67.655 37.061-67.349Q37.187-67.043 37.442-66.859Q37.697-66.674 38.052-66.674Q38.274-66.674 38.459-66.758Q38.644-66.842 38.779-66.997Q38.914-67.153 38.972-67.361Q38.985-67.416 39.040-67.416L39.153-67.416Q39.184-67.416 39.206-67.392Q39.228-67.368 39.228-67.334L39.228-67.313Q39.143-67.026 38.955-66.828Q38.767-66.630 38.502-66.527Q38.237-66.425 37.943-66.425Q37.512-66.425 37.124-66.631Q36.736-66.838 36.502-67.201Q36.268-67.563 36.268-68.004\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-16.077 136.158)\">\u003Cpath d=\"M41.217-66.493L39.634-66.493L39.634-66.773Q39.863-66.773 40.012-66.807Q40.160-66.842 40.160-66.982L40.160-70.601Q40.160-70.871 40.053-70.933Q39.945-70.994 39.634-70.994L39.634-71.275L40.714-71.350L40.714-68.062L41.699-68.831Q41.904-68.968 41.904-69.118Q41.904-69.162 41.863-69.197Q41.822-69.231 41.777-69.231L41.777-69.511L43.141-69.511L43.141-69.231Q42.652-69.231 42.133-68.831L41.576-68.397L42.553-67.173Q42.755-66.927 42.888-66.850Q43.021-66.773 43.308-66.773L43.308-66.493L41.876-66.493L41.876-66.773Q42.064-66.773 42.064-66.886Q42.064-66.982 41.910-67.173L41.176-68.082L40.694-67.703L40.694-66.982Q40.694-66.845 40.842-66.809Q40.991-66.773 41.217-66.773\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-16.077 136.158)\">\u003Cpath d=\"M46.516-68.004Q46.516-68.332 46.651-68.633Q46.786-68.933 47.022-69.154Q47.258-69.374 47.562-69.494Q47.867-69.614 48.191-69.614Q48.697-69.614 49.046-69.511Q49.394-69.409 49.394-69.033Q49.394-68.886 49.297-68.785Q49.200-68.684 49.053-68.684Q48.899-68.684 48.800-68.783Q48.701-68.882 48.701-69.033Q48.701-69.221 48.841-69.313Q48.639-69.364 48.198-69.364Q47.843-69.364 47.614-69.168Q47.385-68.971 47.284-68.662Q47.183-68.352 47.183-68.004Q47.183-67.655 47.309-67.349Q47.436-67.043 47.691-66.859Q47.945-66.674 48.301-66.674Q48.523-66.674 48.707-66.758Q48.892-66.842 49.027-66.997Q49.162-67.153 49.220-67.361Q49.234-67.416 49.288-67.416L49.401-67.416Q49.432-67.416 49.454-67.392Q49.476-67.368 49.476-67.334L49.476-67.313Q49.391-67.026 49.203-66.828Q49.015-66.630 48.750-66.527Q48.485-66.425 48.191-66.425Q47.761-66.425 47.373-66.631Q46.985-66.838 46.751-67.201Q46.516-67.563 46.516-68.004M50.023-68.028Q50.023-68.349 50.148-68.638Q50.273-68.927 50.498-69.150Q50.724-69.374 51.020-69.494Q51.315-69.614 51.633-69.614Q51.961-69.614 52.223-69.514Q52.484-69.415 52.660-69.233Q52.836-69.050 52.930-68.792Q53.024-68.534 53.024-68.202Q53.024-68.110 52.942-68.089L50.686-68.089L50.686-68.028Q50.686-67.440 50.970-67.057Q51.254-66.674 51.821-66.674Q52.142-66.674 52.411-66.867Q52.679-67.060 52.768-67.375Q52.775-67.416 52.850-67.430L52.942-67.430Q53.024-67.406 53.024-67.334Q53.024-67.327 53.017-67.300Q52.905-66.903 52.534-66.664Q52.163-66.425 51.739-66.425Q51.302-66.425 50.902-66.633Q50.502-66.842 50.263-67.209Q50.023-67.576 50.023-68.028M50.693-68.298L52.508-68.298Q52.508-68.575 52.411-68.827Q52.313-69.080 52.115-69.236Q51.917-69.391 51.633-69.391Q51.356-69.391 51.143-69.233Q50.929-69.074 50.811-68.819Q50.693-68.564 50.693-68.298M55.280-66.493L53.677-66.493L53.677-66.773Q53.903-66.773 54.051-66.807Q54.200-66.842 54.200-66.982L54.200-70.601Q54.200-70.871 54.092-70.933Q53.985-70.994 53.677-70.994L53.677-71.275L54.754-71.350L54.754-66.982Q54.754-66.845 54.904-66.809Q55.055-66.773 55.280-66.773L55.280-66.493M57.543-66.493L55.940-66.493L55.940-66.773Q56.165-66.773 56.314-66.807Q56.463-66.842 56.463-66.982L56.463-70.601Q56.463-70.871 56.355-70.933Q56.247-70.994 55.940-70.994L55.940-71.275L57.016-71.350L57.016-66.982Q57.016-66.845 57.167-66.809Q57.317-66.773 57.543-66.773\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.210\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 2.444)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M40.545-66.415Q40.112-66.415 39.780-66.653Q39.448-66.891 39.227-67.280Q39.006-67.669 38.899-68.106Q38.791-68.544 38.791-68.942Q38.791-69.333 38.901-69.776Q39.010-70.220 39.227-70.600Q39.444-70.981 39.778-71.222Q40.112-71.462 40.545-71.462Q41.100-71.462 41.500-71.063Q41.901-70.665 42.098-70.079Q42.295-69.493 42.295-68.942Q42.295-68.388 42.098-67.800Q41.901-67.212 41.500-66.813Q41.100-66.415 40.545-66.415M40.545-66.973Q40.846-66.973 41.063-67.190Q41.280-67.407 41.407-67.735Q41.534-68.063 41.594-68.409Q41.655-68.755 41.655-69.036Q41.655-69.286 41.592-69.612Q41.530-69.938 41.399-70.229Q41.268-70.520 41.055-70.710Q40.842-70.899 40.545-70.899Q40.170-70.899 39.918-70.587Q39.666-70.274 39.549-69.841Q39.432-69.407 39.432-69.036Q39.432-68.638 39.545-68.157Q39.659-67.677 39.907-67.325Q40.155-66.973 40.545-66.973M44.791-66.415Q44.358-66.415 44.026-66.653Q43.694-66.891 43.473-67.280Q43.252-67.669 43.145-68.106Q43.038-68.544 43.038-68.942Q43.038-69.333 43.147-69.776Q43.256-70.220 43.473-70.600Q43.690-70.981 44.024-71.222Q44.358-71.462 44.791-71.462Q45.346-71.462 45.747-71.063Q46.147-70.665 46.344-70.079Q46.541-69.493 46.541-68.942Q46.541-68.388 46.344-67.800Q46.147-67.212 45.747-66.813Q45.346-66.415 44.791-66.415M44.791-66.973Q45.092-66.973 45.309-67.190Q45.526-67.407 45.653-67.735Q45.780-68.063 45.840-68.409Q45.901-68.755 45.901-69.036Q45.901-69.286 45.838-69.612Q45.776-69.938 45.645-70.229Q45.514-70.520 45.301-70.710Q45.088-70.899 44.791-70.899Q44.416-70.899 44.165-70.587Q43.913-70.274 43.795-69.841Q43.678-69.407 43.678-69.036Q43.678-68.638 43.791-68.157Q43.905-67.677 44.153-67.325Q44.401-66.973 44.791-66.973\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 47.969)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M39.561-67.372Q39.678-67.169 39.913-67.071Q40.147-66.973 40.409-66.973Q40.706-66.973 40.979-67.102Q41.252-67.231 41.426-67.468Q41.600-67.704 41.600-68.005Q41.600-68.259 41.481-68.501Q41.362-68.743 41.147-68.889Q40.932-69.036 40.663-69.036Q40.057-69.036 39.721-68.716Q39.643-68.630 39.588-68.583Q39.534-68.536 39.448-68.524L39.346-68.524Q39.147-68.548 39.096-68.766L39.096-71.149Q39.147-71.356 39.346-71.380L41.706-71.380Q41.901-71.360 41.952-71.149L41.952-71.059Q41.901-70.845 41.706-70.821L39.737-70.821L39.737-69.395Q40.143-69.598 40.663-69.598Q41.092-69.598 41.457-69.382Q41.823-69.165 42.032-68.796Q42.241-68.427 42.241-68.005Q42.241-67.532 41.977-67.173Q41.713-66.813 41.290-66.614Q40.866-66.415 40.409-66.415Q40.155-66.415 39.877-66.489Q39.600-66.563 39.366-66.720Q39.131-66.876 38.991-67.110Q38.850-67.345 38.850-67.630Q38.850-67.798 38.965-67.921Q39.081-68.044 39.256-68.044Q39.338-68.044 39.409-68.014Q39.479-67.985 39.536-67.930Q39.592-67.876 39.623-67.800Q39.655-67.723 39.655-67.645Q39.655-67.485 39.561-67.372M43.022-67.907Q43.022-68.192 43.178-68.446Q43.334-68.700 43.584-68.874Q43.834-69.048 44.120-69.134Q43.881-69.208 43.655-69.350Q43.428-69.493 43.286-69.702Q43.143-69.911 43.143-70.157Q43.143-70.555 43.389-70.850Q43.635-71.145 44.018-71.304Q44.401-71.462 44.791-71.462Q45.182-71.462 45.565-71.304Q45.948-71.145 46.194-70.847Q46.440-70.548 46.440-70.157Q46.440-69.911 46.297-69.704Q46.155-69.497 45.928-69.352Q45.702-69.208 45.463-69.134Q45.916-68.997 46.237-68.671Q46.557-68.345 46.557-67.907Q46.557-67.470 46.299-67.126Q46.041-66.782 45.631-66.598Q45.221-66.415 44.791-66.415Q44.362-66.415 43.952-66.597Q43.541-66.778 43.282-67.122Q43.022-67.466 43.022-67.907M43.663-67.907Q43.663-67.634 43.829-67.419Q43.995-67.204 44.256-67.089Q44.518-66.973 44.791-66.973Q45.065-66.973 45.325-67.089Q45.584-67.204 45.750-67.421Q45.916-67.638 45.916-67.907Q45.916-68.184 45.750-68.401Q45.584-68.618 45.325-68.735Q45.065-68.852 44.791-68.852Q44.518-68.852 44.256-68.735Q43.995-68.618 43.829-68.403Q43.663-68.188 43.663-67.907M43.784-70.157Q43.784-69.919 43.940-69.751Q44.096-69.583 44.332-69.499Q44.569-69.415 44.791-69.415Q45.010-69.415 45.248-69.499Q45.487-69.583 45.643-69.753Q45.799-69.923 45.799-70.157Q45.799-70.391 45.643-70.561Q45.487-70.731 45.248-70.815Q45.010-70.899 44.791-70.899Q44.569-70.899 44.332-70.815Q44.096-70.731 43.940-70.563Q43.784-70.395 43.784-70.157\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 87.803)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M39.760-66.708L39.760-66.766Q39.760-67.309 39.866-67.856Q39.971-68.403 40.176-68.927Q40.381-69.450 40.678-69.929Q40.975-70.407 41.354-70.821L39.416-70.821L39.416-70.684Q39.366-70.470 39.166-70.446L39.026-70.446Q38.827-70.470 38.776-70.684L38.776-71.278Q38.827-71.489 39.026-71.509L39.166-71.509Q39.303-71.497 39.377-71.380L42.065-71.380Q42.260-71.356 42.311-71.149L42.311-71.059Q42.299-70.970 42.256-70.919Q41.995-70.661 41.764-70.395Q41.534-70.130 41.372-69.897Q41.209-69.665 41.051-69.366Q40.893-69.067 40.760-68.716Q40.584-68.243 40.493-67.727Q40.401-67.212 40.401-66.708Q40.389-66.583 40.303-66.505Q40.217-66.427 40.096-66.415Q39.959-66.415 39.866-66.493Q39.772-66.571 39.760-66.708M43.022-67.907Q43.022-68.192 43.178-68.446Q43.334-68.700 43.584-68.874Q43.834-69.048 44.120-69.134Q43.881-69.208 43.655-69.350Q43.428-69.493 43.286-69.702Q43.143-69.911 43.143-70.157Q43.143-70.555 43.389-70.850Q43.635-71.145 44.018-71.304Q44.401-71.462 44.791-71.462Q45.182-71.462 45.565-71.304Q45.948-71.145 46.194-70.847Q46.440-70.548 46.440-70.157Q46.440-69.911 46.297-69.704Q46.155-69.497 45.928-69.352Q45.702-69.208 45.463-69.134Q45.916-68.997 46.237-68.671Q46.557-68.345 46.557-67.907Q46.557-67.470 46.299-67.126Q46.041-66.782 45.631-66.598Q45.221-66.415 44.791-66.415Q44.362-66.415 43.952-66.597Q43.541-66.778 43.282-67.122Q43.022-67.466 43.022-67.907M43.663-67.907Q43.663-67.634 43.829-67.419Q43.995-67.204 44.256-67.089Q44.518-66.973 44.791-66.973Q45.065-66.973 45.325-67.089Q45.584-67.204 45.750-67.421Q45.916-67.638 45.916-67.907Q45.916-68.184 45.750-68.401Q45.584-68.618 45.325-68.735Q45.065-68.852 44.791-68.852Q44.518-68.852 44.256-68.735Q43.995-68.618 43.829-68.403Q43.663-68.188 43.663-67.907M43.784-70.157Q43.784-69.919 43.940-69.751Q44.096-69.583 44.332-69.499Q44.569-69.415 44.791-69.415Q45.010-69.415 45.248-69.499Q45.487-69.583 45.643-69.753Q45.799-69.923 45.799-70.157Q45.799-70.391 45.643-70.561Q45.487-70.731 45.248-70.815Q45.010-70.899 44.791-70.899Q44.569-70.899 44.332-70.815Q44.096-70.731 43.940-70.563Q43.784-70.395 43.784-70.157\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 127.636)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M35.034-66.731L35.034-66.821Q35.084-67.028 35.284-67.052L36.100-67.052L36.100-70.235Q35.721-69.927 35.268-69.927Q35.038-69.927 34.987-70.157L34.987-70.247Q35.038-70.462 35.233-70.485Q35.561-70.485 35.815-70.723Q36.069-70.962 36.209-71.309Q36.280-71.438 36.436-71.462L36.491-71.462Q36.686-71.442 36.737-71.227L36.737-67.052L37.553-67.052Q37.752-67.028 37.803-66.821L37.803-66.731Q37.752-66.516 37.553-66.493L35.284-66.493Q35.084-66.516 35.034-66.731M38.745-66.731L38.745-66.821Q38.795-67.028 38.991-67.052L39.873-67.052L39.873-69.380L39.018-69.380Q38.819-69.403 38.768-69.622L38.768-69.708Q38.819-69.919 39.018-69.942L39.873-69.942L39.873-70.395Q39.873-70.860 40.280-71.141Q40.686-71.423 41.166-71.423Q41.479-71.423 41.723-71.302Q41.967-71.180 41.967-70.899Q41.967-70.735 41.858-70.618Q41.748-70.501 41.584-70.501Q41.436-70.501 41.315-70.606Q41.194-70.712 41.194-70.860L41.112-70.860Q40.959-70.860 40.823-70.800Q40.686-70.739 40.600-70.624Q40.514-70.509 40.514-70.364L40.514-69.942L41.545-69.942Q41.741-69.923 41.791-69.708L41.791-69.622Q41.741-69.403 41.545-69.380L40.514-69.380L40.514-67.052L41.393-67.052Q41.588-67.028 41.639-66.821L41.639-66.731Q41.588-66.516 41.393-66.493L38.991-66.493Q38.795-66.516 38.745-66.731M43.022-67.907Q43.022-68.192 43.178-68.446Q43.334-68.700 43.584-68.874Q43.834-69.048 44.120-69.134Q43.881-69.208 43.655-69.350Q43.428-69.493 43.286-69.702Q43.143-69.911 43.143-70.157Q43.143-70.555 43.389-70.850Q43.635-71.145 44.018-71.304Q44.401-71.462 44.791-71.462Q45.182-71.462 45.565-71.304Q45.948-71.145 46.194-70.847Q46.440-70.548 46.440-70.157Q46.440-69.911 46.297-69.704Q46.155-69.497 45.928-69.352Q45.702-69.208 45.463-69.134Q45.916-68.997 46.237-68.671Q46.557-68.345 46.557-67.907Q46.557-67.470 46.299-67.126Q46.041-66.782 45.631-66.598Q45.221-66.415 44.791-66.415Q44.362-66.415 43.952-66.597Q43.541-66.778 43.282-67.122Q43.022-67.466 43.022-67.907M43.663-67.907Q43.663-67.634 43.829-67.419Q43.995-67.204 44.256-67.089Q44.518-66.973 44.791-66.973Q45.065-66.973 45.325-67.089Q45.584-67.204 45.750-67.421Q45.916-67.638 45.916-67.907Q45.916-68.184 45.750-68.401Q45.584-68.618 45.325-68.735Q45.065-68.852 44.791-68.852Q44.518-68.852 44.256-68.735Q43.995-68.618 43.829-68.403Q43.663-68.188 43.663-67.907M43.784-70.157Q43.784-69.919 43.940-69.751Q44.096-69.583 44.332-69.499Q44.569-69.415 44.791-69.415Q45.010-69.415 45.248-69.499Q45.487-69.583 45.643-69.753Q45.799-69.923 45.799-70.157Q45.799-70.391 45.643-70.561Q45.487-70.731 45.248-70.815Q45.010-70.899 44.791-70.899Q44.569-70.899 44.332-70.815Q44.096-70.731 43.940-70.563Q43.784-70.395 43.784-70.157\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-73.153 144.708)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M34.604-66.731L34.604-66.805Q34.635-66.973 34.737-67.020L36.026-68.087Q36.358-68.364 36.540-68.516Q36.721-68.669 36.916-68.889Q37.112-69.110 37.233-69.360Q37.354-69.610 37.354-69.876Q37.354-70.200 37.178-70.434Q37.002-70.669 36.723-70.784Q36.444-70.899 36.123-70.899Q35.866-70.899 35.637-70.776Q35.409-70.653 35.307-70.438Q35.409-70.305 35.409-70.157Q35.409-69.997 35.290-69.874Q35.170-69.751 35.010-69.751Q34.834-69.751 34.719-69.876Q34.604-70.001 34.604-70.173Q34.604-70.466 34.739-70.708Q34.873-70.950 35.112-71.122Q35.350-71.294 35.618-71.378Q35.885-71.462 36.178-71.462Q36.659-71.462 37.075-71.272Q37.491-71.083 37.743-70.722Q37.995-70.360 37.995-69.876Q37.995-69.532 37.862-69.229Q37.729-68.927 37.504-68.667Q37.280-68.407 36.971-68.145Q36.663-67.884 36.452-67.708L35.643-67.052L37.354-67.052L37.354-67.196Q37.405-67.407 37.604-67.430L37.745-67.430Q37.944-67.411 37.995-67.196L37.995-66.731Q37.944-66.516 37.745-66.493L34.850-66.493Q34.655-66.513 34.604-66.731M40.545-66.415Q40.112-66.415 39.780-66.653Q39.448-66.891 39.227-67.280Q39.006-67.669 38.899-68.106Q38.791-68.544 38.791-68.942Q38.791-69.333 38.901-69.776Q39.010-70.220 39.227-70.600Q39.444-70.981 39.778-71.222Q40.112-71.462 40.545-71.462Q41.100-71.462 41.500-71.063Q41.901-70.665 42.098-70.079Q42.295-69.493 42.295-68.942Q42.295-68.388 42.098-67.800Q41.901-67.212 41.500-66.813Q41.100-66.415 40.545-66.415M40.545-66.973Q40.846-66.973 41.063-67.190Q41.280-67.407 41.407-67.735Q41.534-68.063 41.594-68.409Q41.655-68.755 41.655-69.036Q41.655-69.286 41.592-69.612Q41.530-69.938 41.399-70.229Q41.268-70.520 41.055-70.710Q40.842-70.899 40.545-70.899Q40.170-70.899 39.918-70.587Q39.666-70.274 39.549-69.841Q39.432-69.407 39.432-69.036Q39.432-68.638 39.545-68.157Q39.659-67.677 39.907-67.325Q40.155-66.973 40.545-66.973M44.791-66.415Q44.358-66.415 44.026-66.653Q43.694-66.891 43.473-67.280Q43.252-67.669 43.145-68.106Q43.038-68.544 43.038-68.942Q43.038-69.333 43.147-69.776Q43.256-70.220 43.473-70.600Q43.690-70.981 44.024-71.222Q44.358-71.462 44.791-71.462Q45.346-71.462 45.747-71.063Q46.147-70.665 46.344-70.079Q46.541-69.493 46.541-68.942Q46.541-68.388 46.344-67.800Q46.147-67.212 45.747-66.813Q45.346-66.415 44.791-66.415M44.791-66.973Q45.092-66.973 45.309-67.190Q45.526-67.407 45.653-67.735Q45.780-68.063 45.840-68.409Q45.901-68.755 45.901-69.036Q45.901-69.286 45.838-69.612Q45.776-69.938 45.645-70.229Q45.514-70.520 45.301-70.710Q45.088-70.899 44.791-70.899Q44.416-70.899 44.165-70.587Q43.913-70.274 43.795-69.841Q43.678-69.407 43.678-69.036Q43.678-68.638 43.791-68.157Q43.905-67.677 44.153-67.325Q44.401-66.973 44.791-66.973\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(54.748 55.082)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M39.561-67.372Q39.678-67.169 39.913-67.071Q40.147-66.973 40.409-66.973Q40.706-66.973 40.979-67.102Q41.252-67.231 41.426-67.468Q41.600-67.704 41.600-68.005Q41.600-68.259 41.481-68.501Q41.362-68.743 41.147-68.889Q40.932-69.036 40.663-69.036Q40.057-69.036 39.721-68.716Q39.643-68.630 39.588-68.583Q39.534-68.536 39.448-68.524L39.346-68.524Q39.147-68.548 39.096-68.766L39.096-71.149Q39.147-71.356 39.346-71.380L41.706-71.380Q41.901-71.360 41.952-71.149L41.952-71.059Q41.901-70.845 41.706-70.821L39.737-70.821L39.737-69.395Q40.143-69.598 40.663-69.598Q41.092-69.598 41.457-69.382Q41.823-69.165 42.032-68.796Q42.241-68.427 42.241-68.005Q42.241-67.532 41.977-67.173Q41.713-66.813 41.290-66.614Q40.866-66.415 40.409-66.415Q40.155-66.415 39.877-66.489Q39.600-66.563 39.366-66.720Q39.131-66.876 38.991-67.110Q38.850-67.345 38.850-67.630Q38.850-67.798 38.965-67.921Q39.081-68.044 39.256-68.044Q39.338-68.044 39.409-68.014Q39.479-67.985 39.536-67.930Q39.592-67.876 39.623-67.800Q39.655-67.723 39.655-67.645Q39.655-67.485 39.561-67.372M43.022-67.907Q43.022-68.192 43.178-68.446Q43.334-68.700 43.584-68.874Q43.834-69.048 44.120-69.134Q43.881-69.208 43.655-69.350Q43.428-69.493 43.286-69.702Q43.143-69.911 43.143-70.157Q43.143-70.555 43.389-70.850Q43.635-71.145 44.018-71.304Q44.401-71.462 44.791-71.462Q45.182-71.462 45.565-71.304Q45.948-71.145 46.194-70.847Q46.440-70.548 46.440-70.157Q46.440-69.911 46.297-69.704Q46.155-69.497 45.928-69.352Q45.702-69.208 45.463-69.134Q45.916-68.997 46.237-68.671Q46.557-68.345 46.557-67.907Q46.557-67.470 46.299-67.126Q46.041-66.782 45.631-66.598Q45.221-66.415 44.791-66.415Q44.362-66.415 43.952-66.597Q43.541-66.778 43.282-67.122Q43.022-67.466 43.022-67.907M43.663-67.907Q43.663-67.634 43.829-67.419Q43.995-67.204 44.256-67.089Q44.518-66.973 44.791-66.973Q45.065-66.973 45.325-67.089Q45.584-67.204 45.750-67.421Q45.916-67.638 45.916-67.907Q45.916-68.184 45.750-68.401Q45.584-68.618 45.325-68.735Q45.065-68.852 44.791-68.852Q44.518-68.852 44.256-68.735Q43.995-68.618 43.829-68.403Q43.663-68.188 43.663-67.907M43.784-70.157Q43.784-69.919 43.940-69.751Q44.096-69.583 44.332-69.499Q44.569-69.415 44.791-69.415Q45.010-69.415 45.248-69.499Q45.487-69.583 45.643-69.753Q45.799-69.923 45.799-70.157Q45.799-70.391 45.643-70.561Q45.487-70.731 45.248-70.815Q45.010-70.899 44.791-70.899Q44.569-70.899 44.332-70.815Q44.096-70.731 43.940-70.563Q43.784-70.395 43.784-70.157M48.483-67.052Q48.483-67.274 48.649-67.440Q48.815-67.606 49.045-67.606Q49.194-67.606 49.321-67.528Q49.448-67.450 49.522-67.325Q49.596-67.200 49.596-67.052Q49.596-66.825 49.430-66.659Q49.264-66.493 49.045-66.493Q48.819-66.493 48.651-66.661Q48.483-66.829 48.483-67.052M48.483-69.388Q48.483-69.610 48.649-69.776Q48.815-69.942 49.045-69.942Q49.194-69.942 49.321-69.864Q49.448-69.786 49.522-69.661Q49.596-69.536 49.596-69.388Q49.596-69.161 49.430-68.995Q49.264-68.829 49.045-68.829Q48.819-68.829 48.651-68.997Q48.483-69.165 48.483-69.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 55.082)\">\u003Cpath d=\"M61.808-66.415Q61.374-66.415 61.042-66.653Q60.710-66.891 60.490-67.280Q60.269-67.669 60.162-68.106Q60.054-68.544 60.054-68.942Q60.054-69.333 60.164-69.776Q60.273-70.220 60.490-70.600Q60.707-70.981 61.041-71.222Q61.374-71.462 61.808-71.462Q62.363-71.462 62.763-71.063Q63.164-70.665 63.361-70.079Q63.558-69.493 63.558-68.942Q63.558-68.388 63.361-67.800Q63.164-67.212 62.763-66.813Q62.363-66.415 61.808-66.415M61.808-66.973Q62.109-66.973 62.326-67.190Q62.542-67.407 62.669-67.735Q62.796-68.063 62.857-68.409Q62.917-68.755 62.917-69.036Q62.917-69.286 62.855-69.612Q62.792-69.938 62.662-70.229Q62.531-70.520 62.318-70.710Q62.105-70.899 61.808-70.899Q61.433-70.899 61.181-70.587Q60.929-70.274 60.812-69.841Q60.695-69.407 60.695-69.036Q60.695-68.638 60.808-68.157Q60.921-67.677 61.169-67.325Q61.417-66.973 61.808-66.973M66.054-66.415Q65.621-66.415 65.289-66.653Q64.957-66.891 64.736-67.280Q64.515-67.669 64.408-68.106Q64.300-68.544 64.300-68.942Q64.300-69.333 64.410-69.776Q64.519-70.220 64.736-70.600Q64.953-70.981 65.287-71.222Q65.621-71.462 66.054-71.462Q66.609-71.462 67.009-71.063Q67.410-70.665 67.607-70.079Q67.804-69.493 67.804-68.942Q67.804-68.388 67.607-67.800Q67.410-67.212 67.009-66.813Q66.609-66.415 66.054-66.415M66.054-66.973Q66.355-66.973 66.572-67.190Q66.789-67.407 66.916-67.735Q67.042-68.063 67.103-68.409Q67.164-68.755 67.164-69.036Q67.164-69.286 67.101-69.612Q67.039-69.938 66.908-70.229Q66.777-70.520 66.564-70.710Q66.351-70.899 66.054-70.899Q65.679-70.899 65.427-70.587Q65.175-70.274 65.058-69.841Q64.941-69.407 64.941-69.036Q64.941-68.638 65.054-68.157Q65.167-67.677 65.416-67.325Q65.664-66.973 66.054-66.973M70.300-66.415Q69.867-66.415 69.535-66.653Q69.203-66.891 68.982-67.280Q68.761-67.669 68.654-68.106Q68.546-68.544 68.546-68.942Q68.546-69.333 68.656-69.776Q68.765-70.220 68.982-70.600Q69.199-70.981 69.533-71.222Q69.867-71.462 70.300-71.462Q70.855-71.462 71.255-71.063Q71.656-70.665 71.853-70.079Q72.050-69.493 72.050-68.942Q72.050-68.388 71.853-67.800Q71.656-67.212 71.255-66.813Q70.855-66.415 70.300-66.415M70.300-66.973Q70.601-66.973 70.818-67.190Q71.035-67.407 71.162-67.735Q71.289-68.063 71.349-68.409Q71.410-68.755 71.410-69.036Q71.410-69.286 71.347-69.612Q71.285-69.938 71.154-70.229Q71.023-70.520 70.810-70.710Q70.597-70.899 70.300-70.899Q69.925-70.899 69.673-70.587Q69.421-70.274 69.304-69.841Q69.187-69.407 69.187-69.036Q69.187-68.638 69.300-68.157Q69.414-67.677 69.662-67.325Q69.910-66.973 70.300-66.973M74.289-66.454Q73.824-66.454 73.458-66.704Q73.093-66.954 72.888-67.358Q72.683-67.763 72.683-68.220Q72.683-68.563 72.808-68.884Q72.933-69.204 73.166-69.454Q73.398-69.704 73.703-69.843Q74.007-69.981 74.363-69.981Q74.874-69.981 75.281-69.661L75.281-70.821L74.859-70.821Q74.648-70.845 74.609-71.059L74.609-71.149Q74.648-71.356 74.859-71.380L75.671-71.380Q75.871-71.356 75.921-71.149L75.921-67.052L76.347-67.052Q76.554-67.028 76.593-66.821L76.593-66.731Q76.554-66.516 76.347-66.493L75.531-66.493Q75.332-66.516 75.281-66.731L75.281-66.860Q75.085-66.669 74.824-66.561Q74.562-66.454 74.289-66.454M74.328-67.013Q74.687-67.013 74.939-67.282Q75.191-67.552 75.281-67.927L75.281-68.759Q75.222-68.946 75.095-69.097Q74.968-69.247 74.791-69.335Q74.613-69.423 74.417-69.423Q74.109-69.423 73.859-69.253Q73.609-69.083 73.464-68.798Q73.320-68.513 73.320-68.212Q73.320-67.763 73.605-67.388Q73.890-67.013 74.328-67.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 55.082)\">\u003Cpath d=\"M83.058-66.415Q82.624-66.415 82.292-66.653Q81.960-66.891 81.740-67.280Q81.519-67.669 81.412-68.106Q81.304-68.544 81.304-68.942Q81.304-69.333 81.414-69.776Q81.523-70.220 81.740-70.600Q81.957-70.981 82.291-71.222Q82.624-71.462 83.058-71.462Q83.613-71.462 84.013-71.063Q84.414-70.665 84.611-70.079Q84.808-69.493 84.808-68.942Q84.808-68.388 84.611-67.800Q84.414-67.212 84.013-66.813Q83.613-66.415 83.058-66.415M83.058-66.973Q83.359-66.973 83.576-67.190Q83.792-67.407 83.919-67.735Q84.046-68.063 84.107-68.409Q84.167-68.755 84.167-69.036Q84.167-69.286 84.105-69.612Q84.042-69.938 83.912-70.229Q83.781-70.520 83.568-70.710Q83.355-70.899 83.058-70.899Q82.683-70.899 82.431-70.587Q82.179-70.274 82.062-69.841Q81.945-69.407 81.945-69.036Q81.945-68.638 82.058-68.157Q82.171-67.677 82.419-67.325Q82.667-66.973 83.058-66.973M87.304-66.415Q86.871-66.415 86.539-66.653Q86.207-66.891 85.986-67.280Q85.765-67.669 85.658-68.106Q85.550-68.544 85.550-68.942Q85.550-69.333 85.660-69.776Q85.769-70.220 85.986-70.600Q86.203-70.981 86.537-71.222Q86.871-71.462 87.304-71.462Q87.859-71.462 88.259-71.063Q88.660-70.665 88.857-70.079Q89.054-69.493 89.054-68.942Q89.054-68.388 88.857-67.800Q88.660-67.212 88.259-66.813Q87.859-66.415 87.304-66.415M87.304-66.973Q87.605-66.973 87.822-67.190Q88.039-67.407 88.166-67.735Q88.292-68.063 88.353-68.409Q88.414-68.755 88.414-69.036Q88.414-69.286 88.351-69.612Q88.289-69.938 88.158-70.229Q88.027-70.520 87.814-70.710Q87.601-70.899 87.304-70.899Q86.929-70.899 86.677-70.587Q86.425-70.274 86.308-69.841Q86.191-69.407 86.191-69.036Q86.191-68.638 86.304-68.157Q86.417-67.677 86.666-67.325Q86.914-66.973 87.304-66.973M91.550-66.415Q91.117-66.415 90.785-66.653Q90.453-66.891 90.232-67.280Q90.011-67.669 89.904-68.106Q89.796-68.544 89.796-68.942Q89.796-69.333 89.906-69.776Q90.015-70.220 90.232-70.600Q90.449-70.981 90.783-71.222Q91.117-71.462 91.550-71.462Q92.105-71.462 92.505-71.063Q92.906-70.665 93.103-70.079Q93.300-69.493 93.300-68.942Q93.300-68.388 93.103-67.800Q92.906-67.212 92.505-66.813Q92.105-66.415 91.550-66.415M91.550-66.973Q91.851-66.973 92.068-67.190Q92.285-67.407 92.412-67.735Q92.539-68.063 92.599-68.409Q92.660-68.755 92.660-69.036Q92.660-69.286 92.597-69.612Q92.535-69.938 92.404-70.229Q92.273-70.520 92.060-70.710Q91.847-70.899 91.550-70.899Q91.175-70.899 90.923-70.587Q90.671-70.274 90.554-69.841Q90.437-69.407 90.437-69.036Q90.437-68.638 90.550-68.157Q90.664-67.677 90.912-67.325Q91.160-66.973 91.550-66.973M95.539-66.454Q95.074-66.454 94.708-66.704Q94.343-66.954 94.138-67.358Q93.933-67.763 93.933-68.220Q93.933-68.563 94.058-68.884Q94.183-69.204 94.416-69.454Q94.648-69.704 94.953-69.843Q95.257-69.981 95.613-69.981Q96.124-69.981 96.531-69.661L96.531-70.821L96.109-70.821Q95.898-70.845 95.859-71.059L95.859-71.149Q95.898-71.356 96.109-71.380L96.921-71.380Q97.121-71.356 97.171-71.149L97.171-67.052L97.597-67.052Q97.804-67.028 97.843-66.821L97.843-66.731Q97.804-66.516 97.597-66.493L96.781-66.493Q96.582-66.516 96.531-66.731L96.531-66.860Q96.335-66.669 96.074-66.561Q95.812-66.454 95.539-66.454M95.578-67.013Q95.937-67.013 96.189-67.282Q96.441-67.552 96.531-67.927L96.531-68.759Q96.472-68.946 96.345-69.097Q96.218-69.247 96.041-69.335Q95.863-69.423 95.667-69.423Q95.359-69.423 95.109-69.253Q94.859-69.083 94.714-68.798Q94.570-68.513 94.570-68.212Q94.570-67.763 94.855-67.388Q95.140-67.013 95.578-67.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 55.082)\">\u003Cpath d=\"M104.309-66.415Q103.876-66.415 103.543-66.653Q103.211-66.891 102.991-67.280Q102.770-67.669 102.663-68.106Q102.555-68.544 102.555-68.942Q102.555-69.333 102.665-69.776Q102.774-70.220 102.991-70.600Q103.208-70.981 103.542-71.222Q103.876-71.462 104.309-71.462Q104.864-71.462 105.264-71.063Q105.665-70.665 105.862-70.079Q106.059-69.493 106.059-68.942Q106.059-68.388 105.862-67.800Q105.665-67.212 105.264-66.813Q104.864-66.415 104.309-66.415M104.309-66.973Q104.610-66.973 104.827-67.190Q105.043-67.407 105.170-67.735Q105.297-68.063 105.358-68.409Q105.418-68.755 105.418-69.036Q105.418-69.286 105.356-69.612Q105.293-69.938 105.163-70.229Q105.032-70.520 104.819-70.710Q104.606-70.899 104.309-70.899Q103.934-70.899 103.682-70.587Q103.430-70.274 103.313-69.841Q103.196-69.407 103.196-69.036Q103.196-68.638 103.309-68.157Q103.422-67.677 103.670-67.325Q103.918-66.973 104.309-66.973M108.555-66.415Q108.122-66.415 107.790-66.653Q107.458-66.891 107.237-67.280Q107.016-67.669 106.909-68.106Q106.801-68.544 106.801-68.942Q106.801-69.333 106.911-69.776Q107.020-70.220 107.237-70.600Q107.454-70.981 107.788-71.222Q108.122-71.462 108.555-71.462Q109.110-71.462 109.510-71.063Q109.911-70.665 110.108-70.079Q110.305-69.493 110.305-68.942Q110.305-68.388 110.108-67.800Q109.911-67.212 109.510-66.813Q109.110-66.415 108.555-66.415M108.555-66.973Q108.856-66.973 109.073-67.190Q109.290-67.407 109.417-67.735Q109.543-68.063 109.604-68.409Q109.665-68.755 109.665-69.036Q109.665-69.286 109.602-69.612Q109.540-69.938 109.409-70.229Q109.278-70.520 109.065-70.710Q108.852-70.899 108.555-70.899Q108.180-70.899 107.928-70.587Q107.676-70.274 107.559-69.841Q107.442-69.407 107.442-69.036Q107.442-68.638 107.555-68.157Q107.668-67.677 107.917-67.325Q108.165-66.973 108.555-66.973M112.801-66.415Q112.368-66.415 112.036-66.653Q111.704-66.891 111.483-67.280Q111.262-67.669 111.155-68.106Q111.047-68.544 111.047-68.942Q111.047-69.333 111.157-69.776Q111.266-70.220 111.483-70.600Q111.700-70.981 112.034-71.222Q112.368-71.462 112.801-71.462Q113.356-71.462 113.756-71.063Q114.157-70.665 114.354-70.079Q114.551-69.493 114.551-68.942Q114.551-68.388 114.354-67.800Q114.157-67.212 113.756-66.813Q113.356-66.415 112.801-66.415M112.801-66.973Q113.102-66.973 113.319-67.190Q113.536-67.407 113.663-67.735Q113.790-68.063 113.850-68.409Q113.911-68.755 113.911-69.036Q113.911-69.286 113.848-69.612Q113.786-69.938 113.655-70.229Q113.524-70.520 113.311-70.710Q113.098-70.899 112.801-70.899Q112.426-70.899 112.174-70.587Q111.922-70.274 111.805-69.841Q111.688-69.407 111.688-69.036Q111.688-68.638 111.801-68.157Q111.915-67.677 112.163-67.325Q112.411-66.973 112.801-66.973M116.790-66.454Q116.325-66.454 115.959-66.704Q115.594-66.954 115.389-67.358Q115.184-67.763 115.184-68.220Q115.184-68.563 115.309-68.884Q115.434-69.204 115.667-69.454Q115.899-69.704 116.204-69.843Q116.508-69.981 116.864-69.981Q117.376-69.981 117.782-69.661L117.782-70.821L117.360-70.821Q117.149-70.845 117.110-71.059L117.110-71.149Q117.149-71.356 117.360-71.380L118.172-71.380Q118.372-71.356 118.422-71.149L118.422-67.052L118.848-67.052Q119.055-67.028 119.094-66.821L119.094-66.731Q119.055-66.516 118.848-66.493L118.032-66.493Q117.833-66.516 117.782-66.731L117.782-66.860Q117.586-66.669 117.325-66.561Q117.063-66.454 116.790-66.454M116.829-67.013Q117.188-67.013 117.440-67.282Q117.692-67.552 117.782-67.927L117.782-68.759Q117.723-68.946 117.596-69.097Q117.469-69.247 117.292-69.335Q117.114-69.423 116.918-69.423Q116.610-69.423 116.360-69.253Q116.110-69.083 115.965-68.798Q115.821-68.513 115.821-68.212Q115.821-67.763 116.106-67.388Q116.391-67.013 116.829-67.013\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(54.748 63.618)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M40.545-66.415Q39.905-66.415 39.518-66.792Q39.131-67.169 38.973-67.741Q38.815-68.313 38.815-68.942Q38.815-69.407 38.975-69.862Q39.135-70.317 39.424-70.677Q39.713-71.036 40.122-71.249Q40.530-71.462 41.018-71.462Q41.291-71.462 41.541-71.364Q41.791-71.266 41.944-71.071Q42.096-70.876 42.096-70.583Q42.096-70.407 41.983-70.286Q41.870-70.165 41.698-70.165Q41.522-70.165 41.405-70.278Q41.288-70.391 41.288-70.563Q41.288-70.684 41.362-70.805Q41.252-70.899 41.018-70.899Q40.600-70.899 40.264-70.659Q39.928-70.419 39.723-70.032Q39.518-69.645 39.471-69.247Q39.709-69.446 40.018-69.554Q40.327-69.661 40.647-69.661Q40.987-69.661 41.286-69.536Q41.584-69.411 41.803-69.192Q42.022-68.973 42.147-68.675Q42.272-68.376 42.272-68.036Q42.272-67.688 42.133-67.388Q41.995-67.087 41.754-66.870Q41.514-66.653 41.200-66.534Q40.885-66.415 40.545-66.415M39.561-67.958Q39.623-67.696 39.752-67.472Q39.881-67.247 40.081-67.110Q40.280-66.973 40.545-66.973Q40.998-66.973 41.315-67.280Q41.631-67.587 41.631-68.036Q41.631-68.317 41.497-68.563Q41.362-68.809 41.125-68.952Q40.889-69.095 40.592-69.095Q40.202-69.095 39.870-68.868Q39.538-68.641 39.538-68.270Q39.538-68.231 39.553-68.153Q39.569-68.075 39.569-68.036Q39.569-68.009 39.567-67.993Q39.565-67.977 39.561-67.958M44.791-66.415Q44.358-66.415 44.026-66.653Q43.694-66.891 43.473-67.280Q43.252-67.669 43.145-68.106Q43.038-68.544 43.038-68.942Q43.038-69.333 43.147-69.776Q43.256-70.220 43.473-70.600Q43.690-70.981 44.024-71.222Q44.358-71.462 44.791-71.462Q45.346-71.462 45.747-71.063Q46.147-70.665 46.344-70.079Q46.541-69.493 46.541-68.942Q46.541-68.388 46.344-67.800Q46.147-67.212 45.747-66.813Q45.346-66.415 44.791-66.415M44.791-66.973Q45.092-66.973 45.309-67.190Q45.526-67.407 45.653-67.735Q45.780-68.063 45.840-68.409Q45.901-68.755 45.901-69.036Q45.901-69.286 45.838-69.612Q45.776-69.938 45.645-70.229Q45.514-70.520 45.301-70.710Q45.088-70.899 44.791-70.899Q44.416-70.899 44.165-70.587Q43.913-70.274 43.795-69.841Q43.678-69.407 43.678-69.036Q43.678-68.638 43.791-68.157Q43.905-67.677 44.153-67.325Q44.401-66.973 44.791-66.973M48.483-67.052Q48.483-67.274 48.649-67.440Q48.815-67.606 49.045-67.606Q49.194-67.606 49.321-67.528Q49.448-67.450 49.522-67.325Q49.596-67.200 49.596-67.052Q49.596-66.825 49.430-66.659Q49.264-66.493 49.045-66.493Q48.819-66.493 48.651-66.661Q48.483-66.829 48.483-67.052M48.483-69.388Q48.483-69.610 48.649-69.776Q48.815-69.942 49.045-69.942Q49.194-69.942 49.321-69.864Q49.448-69.786 49.522-69.661Q49.596-69.536 49.596-69.388Q49.596-69.161 49.430-68.995Q49.264-68.829 49.045-68.829Q48.819-68.829 48.651-68.997Q48.483-69.165 48.483-69.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 63.618)\">\u003Cpath d=\"M61.808-66.415Q61.374-66.415 61.042-66.653Q60.710-66.891 60.490-67.280Q60.269-67.669 60.162-68.106Q60.054-68.544 60.054-68.942Q60.054-69.333 60.164-69.776Q60.273-70.220 60.490-70.600Q60.707-70.981 61.041-71.222Q61.374-71.462 61.808-71.462Q62.363-71.462 62.763-71.063Q63.164-70.665 63.361-70.079Q63.558-69.493 63.558-68.942Q63.558-68.388 63.361-67.800Q63.164-67.212 62.763-66.813Q62.363-66.415 61.808-66.415M61.808-66.973Q62.109-66.973 62.326-67.190Q62.542-67.407 62.669-67.735Q62.796-68.063 62.857-68.409Q62.917-68.755 62.917-69.036Q62.917-69.286 62.855-69.612Q62.792-69.938 62.662-70.229Q62.531-70.520 62.318-70.710Q62.105-70.899 61.808-70.899Q61.433-70.899 61.181-70.587Q60.929-70.274 60.812-69.841Q60.695-69.407 60.695-69.036Q60.695-68.638 60.808-68.157Q60.921-67.677 61.169-67.325Q61.417-66.973 61.808-66.973M66.054-66.415Q65.621-66.415 65.289-66.653Q64.957-66.891 64.736-67.280Q64.515-67.669 64.408-68.106Q64.300-68.544 64.300-68.942Q64.300-69.333 64.410-69.776Q64.519-70.220 64.736-70.600Q64.953-70.981 65.287-71.222Q65.621-71.462 66.054-71.462Q66.609-71.462 67.009-71.063Q67.410-70.665 67.607-70.079Q67.804-69.493 67.804-68.942Q67.804-68.388 67.607-67.800Q67.410-67.212 67.009-66.813Q66.609-66.415 66.054-66.415M66.054-66.973Q66.355-66.973 66.572-67.190Q66.789-67.407 66.916-67.735Q67.042-68.063 67.103-68.409Q67.164-68.755 67.164-69.036Q67.164-69.286 67.101-69.612Q67.039-69.938 66.908-70.229Q66.777-70.520 66.564-70.710Q66.351-70.899 66.054-70.899Q65.679-70.899 65.427-70.587Q65.175-70.274 65.058-69.841Q64.941-69.407 64.941-69.036Q64.941-68.638 65.054-68.157Q65.167-67.677 65.416-67.325Q65.664-66.973 66.054-66.973M68.738-68.220Q68.738-68.700 68.982-69.114Q69.226-69.528 69.642-69.766Q70.058-70.005 70.539-70.005Q71.093-70.005 71.472-69.895Q71.851-69.786 71.851-69.380Q71.851-69.212 71.738-69.089Q71.624-68.966 71.453-68.966Q71.281-68.966 71.162-69.081Q71.042-69.196 71.042-69.364L71.042-69.423Q70.882-69.446 70.546-69.446Q70.218-69.446 69.951-69.276Q69.683-69.106 69.531-68.823Q69.378-68.540 69.378-68.220Q69.378-67.899 69.550-67.618Q69.722-67.337 70.007-67.175Q70.292-67.013 70.621-67.013Q70.933-67.013 71.060-67.116Q71.187-67.220 71.304-67.409Q71.421-67.598 71.539-67.614L71.707-67.614Q71.812-67.602 71.876-67.534Q71.941-67.466 71.941-67.364Q71.941-67.317 71.921-67.278Q71.812-66.985 71.609-66.805Q71.406-66.626 71.130-66.540Q70.855-66.454 70.539-66.454Q70.054-66.454 69.638-66.692Q69.222-66.930 68.980-67.333Q68.738-67.735 68.738-68.220M74.546-66.415Q74.113-66.415 73.781-66.653Q73.449-66.891 73.228-67.280Q73.007-67.669 72.900-68.106Q72.792-68.544 72.792-68.942Q72.792-69.333 72.902-69.776Q73.011-70.220 73.228-70.600Q73.445-70.981 73.779-71.222Q74.113-71.462 74.546-71.462Q75.101-71.462 75.501-71.063Q75.902-70.665 76.099-70.079Q76.296-69.493 76.296-68.942Q76.296-68.388 76.099-67.800Q75.902-67.212 75.501-66.813Q75.101-66.415 74.546-66.415M74.546-66.973Q74.847-66.973 75.064-67.190Q75.281-67.407 75.408-67.735Q75.535-68.063 75.595-68.409Q75.656-68.755 75.656-69.036Q75.656-69.286 75.593-69.612Q75.531-69.938 75.400-70.229Q75.269-70.520 75.056-70.710Q74.843-70.899 74.546-70.899Q74.171-70.899 73.919-70.587Q73.667-70.274 73.550-69.841Q73.433-69.407 73.433-69.036Q73.433-68.638 73.546-68.157Q73.660-67.677 73.908-67.325Q74.156-66.973 74.546-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 63.618)\">\u003Cpath d=\"M83.058-66.415Q82.624-66.415 82.292-66.653Q81.960-66.891 81.740-67.280Q81.519-67.669 81.412-68.106Q81.304-68.544 81.304-68.942Q81.304-69.333 81.414-69.776Q81.523-70.220 81.740-70.600Q81.957-70.981 82.291-71.222Q82.624-71.462 83.058-71.462Q83.613-71.462 84.013-71.063Q84.414-70.665 84.611-70.079Q84.808-69.493 84.808-68.942Q84.808-68.388 84.611-67.800Q84.414-67.212 84.013-66.813Q83.613-66.415 83.058-66.415M83.058-66.973Q83.359-66.973 83.576-67.190Q83.792-67.407 83.919-67.735Q84.046-68.063 84.107-68.409Q84.167-68.755 84.167-69.036Q84.167-69.286 84.105-69.612Q84.042-69.938 83.912-70.229Q83.781-70.520 83.568-70.710Q83.355-70.899 83.058-70.899Q82.683-70.899 82.431-70.587Q82.179-70.274 82.062-69.841Q81.945-69.407 81.945-69.036Q81.945-68.638 82.058-68.157Q82.171-67.677 82.419-67.325Q82.667-66.973 83.058-66.973M87.304-66.415Q86.871-66.415 86.539-66.653Q86.207-66.891 85.986-67.280Q85.765-67.669 85.658-68.106Q85.550-68.544 85.550-68.942Q85.550-69.333 85.660-69.776Q85.769-70.220 85.986-70.600Q86.203-70.981 86.537-71.222Q86.871-71.462 87.304-71.462Q87.859-71.462 88.259-71.063Q88.660-70.665 88.857-70.079Q89.054-69.493 89.054-68.942Q89.054-68.388 88.857-67.800Q88.660-67.212 88.259-66.813Q87.859-66.415 87.304-66.415M87.304-66.973Q87.605-66.973 87.822-67.190Q88.039-67.407 88.166-67.735Q88.292-68.063 88.353-68.409Q88.414-68.755 88.414-69.036Q88.414-69.286 88.351-69.612Q88.289-69.938 88.158-70.229Q88.027-70.520 87.814-70.710Q87.601-70.899 87.304-70.899Q86.929-70.899 86.677-70.587Q86.425-70.274 86.308-69.841Q86.191-69.407 86.191-69.036Q86.191-68.638 86.304-68.157Q86.417-67.677 86.666-67.325Q86.914-66.973 87.304-66.973M89.988-68.220Q89.988-68.700 90.232-69.114Q90.476-69.528 90.892-69.766Q91.308-70.005 91.789-70.005Q92.343-70.005 92.722-69.895Q93.101-69.786 93.101-69.380Q93.101-69.212 92.988-69.089Q92.874-68.966 92.703-68.966Q92.531-68.966 92.412-69.081Q92.292-69.196 92.292-69.364L92.292-69.423Q92.132-69.446 91.796-69.446Q91.468-69.446 91.201-69.276Q90.933-69.106 90.781-68.823Q90.628-68.540 90.628-68.220Q90.628-67.899 90.800-67.618Q90.972-67.337 91.257-67.175Q91.542-67.013 91.871-67.013Q92.183-67.013 92.310-67.116Q92.437-67.220 92.554-67.409Q92.671-67.598 92.789-67.614L92.957-67.614Q93.062-67.602 93.126-67.534Q93.191-67.466 93.191-67.364Q93.191-67.317 93.171-67.278Q93.062-66.985 92.859-66.805Q92.656-66.626 92.380-66.540Q92.105-66.454 91.789-66.454Q91.304-66.454 90.888-66.692Q90.472-66.930 90.230-67.333Q89.988-67.735 89.988-68.220M95.796-66.415Q95.363-66.415 95.031-66.653Q94.699-66.891 94.478-67.280Q94.257-67.669 94.150-68.106Q94.042-68.544 94.042-68.942Q94.042-69.333 94.152-69.776Q94.261-70.220 94.478-70.600Q94.695-70.981 95.029-71.222Q95.363-71.462 95.796-71.462Q96.351-71.462 96.751-71.063Q97.152-70.665 97.349-70.079Q97.546-69.493 97.546-68.942Q97.546-68.388 97.349-67.800Q97.152-67.212 96.751-66.813Q96.351-66.415 95.796-66.415M95.796-66.973Q96.097-66.973 96.314-67.190Q96.531-67.407 96.658-67.735Q96.785-68.063 96.845-68.409Q96.906-68.755 96.906-69.036Q96.906-69.286 96.843-69.612Q96.781-69.938 96.650-70.229Q96.519-70.520 96.306-70.710Q96.093-70.899 95.796-70.899Q95.421-70.899 95.169-70.587Q94.917-70.274 94.800-69.841Q94.683-69.407 94.683-69.036Q94.683-68.638 94.796-68.157Q94.910-67.677 95.158-67.325Q95.406-66.973 95.796-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 63.618)\">\u003Cpath d=\"M104.309-66.415Q103.876-66.415 103.543-66.653Q103.211-66.891 102.991-67.280Q102.770-67.669 102.663-68.106Q102.555-68.544 102.555-68.942Q102.555-69.333 102.665-69.776Q102.774-70.220 102.991-70.600Q103.208-70.981 103.542-71.222Q103.876-71.462 104.309-71.462Q104.864-71.462 105.264-71.063Q105.665-70.665 105.862-70.079Q106.059-69.493 106.059-68.942Q106.059-68.388 105.862-67.800Q105.665-67.212 105.264-66.813Q104.864-66.415 104.309-66.415M104.309-66.973Q104.610-66.973 104.827-67.190Q105.043-67.407 105.170-67.735Q105.297-68.063 105.358-68.409Q105.418-68.755 105.418-69.036Q105.418-69.286 105.356-69.612Q105.293-69.938 105.163-70.229Q105.032-70.520 104.819-70.710Q104.606-70.899 104.309-70.899Q103.934-70.899 103.682-70.587Q103.430-70.274 103.313-69.841Q103.196-69.407 103.196-69.036Q103.196-68.638 103.309-68.157Q103.422-67.677 103.670-67.325Q103.918-66.973 104.309-66.973M108.555-66.415Q108.122-66.415 107.790-66.653Q107.458-66.891 107.237-67.280Q107.016-67.669 106.909-68.106Q106.801-68.544 106.801-68.942Q106.801-69.333 106.911-69.776Q107.020-70.220 107.237-70.600Q107.454-70.981 107.788-71.222Q108.122-71.462 108.555-71.462Q109.110-71.462 109.510-71.063Q109.911-70.665 110.108-70.079Q110.305-69.493 110.305-68.942Q110.305-68.388 110.108-67.800Q109.911-67.212 109.510-66.813Q109.110-66.415 108.555-66.415M108.555-66.973Q108.856-66.973 109.073-67.190Q109.290-67.407 109.417-67.735Q109.543-68.063 109.604-68.409Q109.665-68.755 109.665-69.036Q109.665-69.286 109.602-69.612Q109.540-69.938 109.409-70.229Q109.278-70.520 109.065-70.710Q108.852-70.899 108.555-70.899Q108.180-70.899 107.928-70.587Q107.676-70.274 107.559-69.841Q107.442-69.407 107.442-69.036Q107.442-68.638 107.555-68.157Q107.668-67.677 107.917-67.325Q108.165-66.973 108.555-66.973M111.239-68.220Q111.239-68.700 111.483-69.114Q111.727-69.528 112.143-69.766Q112.559-70.005 113.040-70.005Q113.594-70.005 113.973-69.895Q114.352-69.786 114.352-69.380Q114.352-69.212 114.239-69.089Q114.126-68.966 113.954-68.966Q113.782-68.966 113.663-69.081Q113.543-69.196 113.543-69.364L113.543-69.423Q113.383-69.446 113.047-69.446Q112.719-69.446 112.452-69.276Q112.184-69.106 112.032-68.823Q111.879-68.540 111.879-68.220Q111.879-67.899 112.051-67.618Q112.223-67.337 112.508-67.175Q112.793-67.013 113.122-67.013Q113.434-67.013 113.561-67.116Q113.688-67.220 113.805-67.409Q113.922-67.598 114.040-67.614L114.208-67.614Q114.313-67.602 114.377-67.534Q114.442-67.466 114.442-67.364Q114.442-67.317 114.422-67.278Q114.313-66.985 114.110-66.805Q113.907-66.626 113.631-66.540Q113.356-66.454 113.040-66.454Q112.555-66.454 112.139-66.692Q111.723-66.930 111.481-67.333Q111.239-67.735 111.239-68.220M117.047-66.415Q116.614-66.415 116.282-66.653Q115.950-66.891 115.729-67.280Q115.508-67.669 115.401-68.106Q115.293-68.544 115.293-68.942Q115.293-69.333 115.403-69.776Q115.512-70.220 115.729-70.600Q115.946-70.981 116.280-71.222Q116.614-71.462 117.047-71.462Q117.602-71.462 118.002-71.063Q118.403-70.665 118.600-70.079Q118.797-69.493 118.797-68.942Q118.797-68.388 118.600-67.800Q118.403-67.212 118.002-66.813Q117.602-66.415 117.047-66.415M117.047-66.973Q117.348-66.973 117.565-67.190Q117.782-67.407 117.909-67.735Q118.036-68.063 118.096-68.409Q118.157-68.755 118.157-69.036Q118.157-69.286 118.094-69.612Q118.032-69.938 117.901-70.229Q117.770-70.520 117.557-70.710Q117.344-70.899 117.047-70.899Q116.672-70.899 116.420-70.587Q116.168-70.274 116.051-69.841Q115.934-69.407 115.934-69.036Q115.934-68.638 116.047-68.157Q116.161-67.677 116.409-67.325Q116.657-66.973 117.047-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(54.748 72.154)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M40.545-66.415Q39.905-66.415 39.518-66.792Q39.131-67.169 38.973-67.741Q38.815-68.313 38.815-68.942Q38.815-69.407 38.975-69.862Q39.135-70.317 39.424-70.677Q39.713-71.036 40.122-71.249Q40.530-71.462 41.018-71.462Q41.291-71.462 41.541-71.364Q41.791-71.266 41.944-71.071Q42.096-70.876 42.096-70.583Q42.096-70.407 41.983-70.286Q41.870-70.165 41.698-70.165Q41.522-70.165 41.405-70.278Q41.288-70.391 41.288-70.563Q41.288-70.684 41.362-70.805Q41.252-70.899 41.018-70.899Q40.600-70.899 40.264-70.659Q39.928-70.419 39.723-70.032Q39.518-69.645 39.471-69.247Q39.709-69.446 40.018-69.554Q40.327-69.661 40.647-69.661Q40.987-69.661 41.286-69.536Q41.584-69.411 41.803-69.192Q42.022-68.973 42.147-68.675Q42.272-68.376 42.272-68.036Q42.272-67.688 42.133-67.388Q41.995-67.087 41.754-66.870Q41.514-66.653 41.200-66.534Q40.885-66.415 40.545-66.415M39.561-67.958Q39.623-67.696 39.752-67.472Q39.881-67.247 40.081-67.110Q40.280-66.973 40.545-66.973Q40.998-66.973 41.315-67.280Q41.631-67.587 41.631-68.036Q41.631-68.317 41.497-68.563Q41.362-68.809 41.125-68.952Q40.889-69.095 40.592-69.095Q40.202-69.095 39.870-68.868Q39.538-68.641 39.538-68.270Q39.538-68.231 39.553-68.153Q39.569-68.075 39.569-68.036Q39.569-68.009 39.567-67.993Q39.565-67.977 39.561-67.958M43.022-67.907Q43.022-68.192 43.178-68.446Q43.334-68.700 43.584-68.874Q43.834-69.048 44.120-69.134Q43.881-69.208 43.655-69.350Q43.428-69.493 43.286-69.702Q43.143-69.911 43.143-70.157Q43.143-70.555 43.389-70.850Q43.635-71.145 44.018-71.304Q44.401-71.462 44.791-71.462Q45.182-71.462 45.565-71.304Q45.948-71.145 46.194-70.847Q46.440-70.548 46.440-70.157Q46.440-69.911 46.297-69.704Q46.155-69.497 45.928-69.352Q45.702-69.208 45.463-69.134Q45.916-68.997 46.237-68.671Q46.557-68.345 46.557-67.907Q46.557-67.470 46.299-67.126Q46.041-66.782 45.631-66.598Q45.221-66.415 44.791-66.415Q44.362-66.415 43.952-66.597Q43.541-66.778 43.282-67.122Q43.022-67.466 43.022-67.907M43.663-67.907Q43.663-67.634 43.829-67.419Q43.995-67.204 44.256-67.089Q44.518-66.973 44.791-66.973Q45.065-66.973 45.325-67.089Q45.584-67.204 45.750-67.421Q45.916-67.638 45.916-67.907Q45.916-68.184 45.750-68.401Q45.584-68.618 45.325-68.735Q45.065-68.852 44.791-68.852Q44.518-68.852 44.256-68.735Q43.995-68.618 43.829-68.403Q43.663-68.188 43.663-67.907M43.784-70.157Q43.784-69.919 43.940-69.751Q44.096-69.583 44.332-69.499Q44.569-69.415 44.791-69.415Q45.010-69.415 45.248-69.499Q45.487-69.583 45.643-69.753Q45.799-69.923 45.799-70.157Q45.799-70.391 45.643-70.561Q45.487-70.731 45.248-70.815Q45.010-70.899 44.791-70.899Q44.569-70.899 44.332-70.815Q44.096-70.731 43.940-70.563Q43.784-70.395 43.784-70.157M48.483-67.052Q48.483-67.274 48.649-67.440Q48.815-67.606 49.045-67.606Q49.194-67.606 49.321-67.528Q49.448-67.450 49.522-67.325Q49.596-67.200 49.596-67.052Q49.596-66.825 49.430-66.659Q49.264-66.493 49.045-66.493Q48.819-66.493 48.651-66.661Q48.483-66.829 48.483-67.052M48.483-69.388Q48.483-69.610 48.649-69.776Q48.815-69.942 49.045-69.942Q49.194-69.942 49.321-69.864Q49.448-69.786 49.522-69.661Q49.596-69.536 49.596-69.388Q49.596-69.161 49.430-68.995Q49.264-68.829 49.045-68.829Q48.819-68.829 48.651-68.997Q48.483-69.165 48.483-69.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 72.154)\">\u003Cpath d=\"M61.808-66.415Q61.374-66.415 61.042-66.653Q60.710-66.891 60.490-67.280Q60.269-67.669 60.162-68.106Q60.054-68.544 60.054-68.942Q60.054-69.333 60.164-69.776Q60.273-70.220 60.490-70.600Q60.707-70.981 61.041-71.222Q61.374-71.462 61.808-71.462Q62.363-71.462 62.763-71.063Q63.164-70.665 63.361-70.079Q63.558-69.493 63.558-68.942Q63.558-68.388 63.361-67.800Q63.164-67.212 62.763-66.813Q62.363-66.415 61.808-66.415M61.808-66.973Q62.109-66.973 62.326-67.190Q62.542-67.407 62.669-67.735Q62.796-68.063 62.857-68.409Q62.917-68.755 62.917-69.036Q62.917-69.286 62.855-69.612Q62.792-69.938 62.662-70.229Q62.531-70.520 62.318-70.710Q62.105-70.899 61.808-70.899Q61.433-70.899 61.181-70.587Q60.929-70.274 60.812-69.841Q60.695-69.407 60.695-69.036Q60.695-68.638 60.808-68.157Q60.921-67.677 61.169-67.325Q61.417-66.973 61.808-66.973M64.675-66.731L64.675-70.821L64.253-70.821Q64.046-70.845 64.003-71.059L64.003-71.149Q64.046-71.356 64.253-71.380L65.070-71.380Q65.265-71.356 65.316-71.149L65.316-69.638Q65.527-69.805 65.791-69.893Q66.054-69.981 66.324-69.981Q66.664-69.981 66.960-69.837Q67.257-69.692 67.472-69.440Q67.687-69.188 67.802-68.876Q67.917-68.563 67.917-68.220Q67.917-67.755 67.691-67.345Q67.464-66.934 67.078-66.694Q66.691-66.454 66.222-66.454Q65.703-66.454 65.316-66.821L65.316-66.731Q65.265-66.513 65.070-66.493L64.925-66.493Q64.734-66.516 64.675-66.731M66.179-67.013Q66.488-67.013 66.738-67.182Q66.988-67.352 67.132-67.634Q67.277-67.915 67.277-68.220Q67.277-68.509 67.152-68.788Q67.027-69.067 66.794-69.245Q66.562-69.423 66.261-69.423Q65.941-69.423 65.679-69.237Q65.417-69.052 65.316-68.751L65.316-67.899Q65.406-67.532 65.626-67.272Q65.847-67.013 66.179-67.013M70.300-66.415Q69.867-66.415 69.535-66.653Q69.203-66.891 68.982-67.280Q68.761-67.669 68.654-68.106Q68.546-68.544 68.546-68.942Q68.546-69.333 68.656-69.776Q68.765-70.220 68.982-70.600Q69.199-70.981 69.533-71.222Q69.867-71.462 70.300-71.462Q70.855-71.462 71.255-71.063Q71.656-70.665 71.853-70.079Q72.050-69.493 72.050-68.942Q72.050-68.388 71.853-67.800Q71.656-67.212 71.255-66.813Q70.855-66.415 70.300-66.415M70.300-66.973Q70.601-66.973 70.818-67.190Q71.035-67.407 71.162-67.735Q71.289-68.063 71.349-68.409Q71.410-68.755 71.410-69.036Q71.410-69.286 71.347-69.612Q71.285-69.938 71.154-70.229Q71.023-70.520 70.810-70.710Q70.597-70.899 70.300-70.899Q69.925-70.899 69.673-70.587Q69.421-70.274 69.304-69.841Q69.187-69.407 69.187-69.036Q69.187-68.638 69.300-68.157Q69.414-67.677 69.662-67.325Q69.910-66.973 70.300-66.973M74.546-66.415Q74.113-66.415 73.781-66.653Q73.449-66.891 73.228-67.280Q73.007-67.669 72.900-68.106Q72.792-68.544 72.792-68.942Q72.792-69.333 72.902-69.776Q73.011-70.220 73.228-70.600Q73.445-70.981 73.779-71.222Q74.113-71.462 74.546-71.462Q75.101-71.462 75.501-71.063Q75.902-70.665 76.099-70.079Q76.296-69.493 76.296-68.942Q76.296-68.388 76.099-67.800Q75.902-67.212 75.501-66.813Q75.101-66.415 74.546-66.415M74.546-66.973Q74.847-66.973 75.064-67.190Q75.281-67.407 75.408-67.735Q75.535-68.063 75.595-68.409Q75.656-68.755 75.656-69.036Q75.656-69.286 75.593-69.612Q75.531-69.938 75.400-70.229Q75.269-70.520 75.056-70.710Q74.843-70.899 74.546-70.899Q74.171-70.899 73.919-70.587Q73.667-70.274 73.550-69.841Q73.433-69.407 73.433-69.036Q73.433-68.638 73.546-68.157Q73.660-67.677 73.908-67.325Q74.156-66.973 74.546-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 72.154)\">\u003Cpath d=\"M83.058-66.415Q82.624-66.415 82.292-66.653Q81.960-66.891 81.740-67.280Q81.519-67.669 81.412-68.106Q81.304-68.544 81.304-68.942Q81.304-69.333 81.414-69.776Q81.523-70.220 81.740-70.600Q81.957-70.981 82.291-71.222Q82.624-71.462 83.058-71.462Q83.613-71.462 84.013-71.063Q84.414-70.665 84.611-70.079Q84.808-69.493 84.808-68.942Q84.808-68.388 84.611-67.800Q84.414-67.212 84.013-66.813Q83.613-66.415 83.058-66.415M83.058-66.973Q83.359-66.973 83.576-67.190Q83.792-67.407 83.919-67.735Q84.046-68.063 84.107-68.409Q84.167-68.755 84.167-69.036Q84.167-69.286 84.105-69.612Q84.042-69.938 83.912-70.229Q83.781-70.520 83.568-70.710Q83.355-70.899 83.058-70.899Q82.683-70.899 82.431-70.587Q82.179-70.274 82.062-69.841Q81.945-69.407 81.945-69.036Q81.945-68.638 82.058-68.157Q82.171-67.677 82.419-67.325Q82.667-66.973 83.058-66.973M85.925-66.731L85.925-70.821L85.503-70.821Q85.296-70.845 85.253-71.059L85.253-71.149Q85.296-71.356 85.503-71.380L86.320-71.380Q86.515-71.356 86.566-71.149L86.566-69.638Q86.777-69.805 87.041-69.893Q87.304-69.981 87.574-69.981Q87.914-69.981 88.210-69.837Q88.507-69.692 88.722-69.440Q88.937-69.188 89.052-68.876Q89.167-68.563 89.167-68.220Q89.167-67.755 88.941-67.345Q88.714-66.934 88.328-66.694Q87.941-66.454 87.472-66.454Q86.953-66.454 86.566-66.821L86.566-66.731Q86.515-66.513 86.320-66.493L86.175-66.493Q85.984-66.516 85.925-66.731M87.429-67.013Q87.738-67.013 87.988-67.182Q88.238-67.352 88.382-67.634Q88.527-67.915 88.527-68.220Q88.527-68.509 88.402-68.788Q88.277-69.067 88.044-69.245Q87.812-69.423 87.511-69.423Q87.191-69.423 86.929-69.237Q86.667-69.052 86.566-68.751L86.566-67.899Q86.656-67.532 86.876-67.272Q87.097-67.013 87.429-67.013M91.550-66.415Q91.117-66.415 90.785-66.653Q90.453-66.891 90.232-67.280Q90.011-67.669 89.904-68.106Q89.796-68.544 89.796-68.942Q89.796-69.333 89.906-69.776Q90.015-70.220 90.232-70.600Q90.449-70.981 90.783-71.222Q91.117-71.462 91.550-71.462Q92.105-71.462 92.505-71.063Q92.906-70.665 93.103-70.079Q93.300-69.493 93.300-68.942Q93.300-68.388 93.103-67.800Q92.906-67.212 92.505-66.813Q92.105-66.415 91.550-66.415M91.550-66.973Q91.851-66.973 92.068-67.190Q92.285-67.407 92.412-67.735Q92.539-68.063 92.599-68.409Q92.660-68.755 92.660-69.036Q92.660-69.286 92.597-69.612Q92.535-69.938 92.404-70.229Q92.273-70.520 92.060-70.710Q91.847-70.899 91.550-70.899Q91.175-70.899 90.923-70.587Q90.671-70.274 90.554-69.841Q90.437-69.407 90.437-69.036Q90.437-68.638 90.550-68.157Q90.664-67.677 90.912-67.325Q91.160-66.973 91.550-66.973M95.796-66.415Q95.363-66.415 95.031-66.653Q94.699-66.891 94.478-67.280Q94.257-67.669 94.150-68.106Q94.042-68.544 94.042-68.942Q94.042-69.333 94.152-69.776Q94.261-70.220 94.478-70.600Q94.695-70.981 95.029-71.222Q95.363-71.462 95.796-71.462Q96.351-71.462 96.751-71.063Q97.152-70.665 97.349-70.079Q97.546-69.493 97.546-68.942Q97.546-68.388 97.349-67.800Q97.152-67.212 96.751-66.813Q96.351-66.415 95.796-66.415M95.796-66.973Q96.097-66.973 96.314-67.190Q96.531-67.407 96.658-67.735Q96.785-68.063 96.845-68.409Q96.906-68.755 96.906-69.036Q96.906-69.286 96.843-69.612Q96.781-69.938 96.650-70.229Q96.519-70.520 96.306-70.710Q96.093-70.899 95.796-70.899Q95.421-70.899 95.169-70.587Q94.917-70.274 94.800-69.841Q94.683-69.407 94.683-69.036Q94.683-68.638 94.796-68.157Q94.910-67.677 95.158-67.325Q95.406-66.973 95.796-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 72.154)\">\u003Cpath d=\"M104.309-66.415Q103.876-66.415 103.543-66.653Q103.211-66.891 102.991-67.280Q102.770-67.669 102.663-68.106Q102.555-68.544 102.555-68.942Q102.555-69.333 102.665-69.776Q102.774-70.220 102.991-70.600Q103.208-70.981 103.542-71.222Q103.876-71.462 104.309-71.462Q104.864-71.462 105.264-71.063Q105.665-70.665 105.862-70.079Q106.059-69.493 106.059-68.942Q106.059-68.388 105.862-67.800Q105.665-67.212 105.264-66.813Q104.864-66.415 104.309-66.415M104.309-66.973Q104.610-66.973 104.827-67.190Q105.043-67.407 105.170-67.735Q105.297-68.063 105.358-68.409Q105.418-68.755 105.418-69.036Q105.418-69.286 105.356-69.612Q105.293-69.938 105.163-70.229Q105.032-70.520 104.819-70.710Q104.606-70.899 104.309-70.899Q103.934-70.899 103.682-70.587Q103.430-70.274 103.313-69.841Q103.196-69.407 103.196-69.036Q103.196-68.638 103.309-68.157Q103.422-67.677 103.670-67.325Q103.918-66.973 104.309-66.973M107.176-66.731L107.176-70.821L106.754-70.821Q106.547-70.845 106.504-71.059L106.504-71.149Q106.547-71.356 106.754-71.380L107.571-71.380Q107.766-71.356 107.817-71.149L107.817-69.638Q108.028-69.805 108.292-69.893Q108.555-69.981 108.825-69.981Q109.165-69.981 109.461-69.837Q109.758-69.692 109.973-69.440Q110.188-69.188 110.303-68.876Q110.418-68.563 110.418-68.220Q110.418-67.755 110.192-67.345Q109.965-66.934 109.579-66.694Q109.192-66.454 108.723-66.454Q108.204-66.454 107.817-66.821L107.817-66.731Q107.766-66.513 107.571-66.493L107.426-66.493Q107.235-66.516 107.176-66.731M108.680-67.013Q108.989-67.013 109.239-67.182Q109.489-67.352 109.633-67.634Q109.778-67.915 109.778-68.220Q109.778-68.509 109.653-68.788Q109.528-69.067 109.295-69.245Q109.063-69.423 108.762-69.423Q108.442-69.423 108.180-69.237Q107.918-69.052 107.817-68.751L107.817-67.899Q107.907-67.532 108.127-67.272Q108.348-67.013 108.680-67.013M112.801-66.415Q112.368-66.415 112.036-66.653Q111.704-66.891 111.483-67.280Q111.262-67.669 111.155-68.106Q111.047-68.544 111.047-68.942Q111.047-69.333 111.157-69.776Q111.266-70.220 111.483-70.600Q111.700-70.981 112.034-71.222Q112.368-71.462 112.801-71.462Q113.356-71.462 113.756-71.063Q114.157-70.665 114.354-70.079Q114.551-69.493 114.551-68.942Q114.551-68.388 114.354-67.800Q114.157-67.212 113.756-66.813Q113.356-66.415 112.801-66.415M112.801-66.973Q113.102-66.973 113.319-67.190Q113.536-67.407 113.663-67.735Q113.790-68.063 113.850-68.409Q113.911-68.755 113.911-69.036Q113.911-69.286 113.848-69.612Q113.786-69.938 113.655-70.229Q113.524-70.520 113.311-70.710Q113.098-70.899 112.801-70.899Q112.426-70.899 112.174-70.587Q111.922-70.274 111.805-69.841Q111.688-69.407 111.688-69.036Q111.688-68.638 111.801-68.157Q111.915-67.677 112.163-67.325Q112.411-66.973 112.801-66.973M117.047-66.415Q116.614-66.415 116.282-66.653Q115.950-66.891 115.729-67.280Q115.508-67.669 115.401-68.106Q115.293-68.544 115.293-68.942Q115.293-69.333 115.403-69.776Q115.512-70.220 115.729-70.600Q115.946-70.981 116.280-71.222Q116.614-71.462 117.047-71.462Q117.602-71.462 118.002-71.063Q118.403-70.665 118.600-70.079Q118.797-69.493 118.797-68.942Q118.797-68.388 118.600-67.800Q118.403-67.212 118.002-66.813Q117.602-66.415 117.047-66.415M117.047-66.973Q117.348-66.973 117.565-67.190Q117.782-67.407 117.909-67.735Q118.036-68.063 118.096-68.409Q118.157-68.755 118.157-69.036Q118.157-69.286 118.094-69.612Q118.032-69.938 117.901-70.229Q117.770-70.520 117.557-70.710Q117.344-70.899 117.047-70.899Q116.672-70.899 116.420-70.587Q116.168-70.274 116.051-69.841Q115.934-69.407 115.934-69.036Q115.934-68.638 116.047-68.157Q116.161-67.677 116.409-67.325Q116.657-66.973 117.047-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(54.748 80.69)\">\u003Cpath d=\"M27.807-66.415Q27.373-66.415 27.041-66.653Q26.709-66.891 26.489-67.280Q26.268-67.669 26.161-68.106Q26.053-68.544 26.053-68.942Q26.053-69.333 26.163-69.776Q26.272-70.220 26.489-70.600Q26.706-70.981 27.040-71.222Q27.373-71.462 27.807-71.462Q28.362-71.462 28.762-71.063Q29.163-70.665 29.360-70.079Q29.557-69.493 29.557-68.942Q29.557-68.388 29.360-67.800Q29.163-67.212 28.762-66.813Q28.362-66.415 27.807-66.415M27.807-66.973Q28.108-66.973 28.325-67.190Q28.541-67.407 28.668-67.735Q28.795-68.063 28.856-68.409Q28.916-68.755 28.916-69.036Q28.916-69.286 28.854-69.612Q28.791-69.938 28.661-70.229Q28.530-70.520 28.317-70.710Q28.104-70.899 27.807-70.899Q27.432-70.899 27.180-70.587Q26.928-70.274 26.811-69.841Q26.694-69.407 26.694-69.036Q26.694-68.638 26.807-68.157Q26.920-67.677 27.168-67.325Q27.416-66.973 27.807-66.973M30.190-66.731L30.190-66.821Q30.229-67.028 30.436-67.052L30.842-67.052L31.772-68.270L30.901-69.380L30.483-69.380Q30.288-69.399 30.237-69.622L30.237-69.708Q30.288-69.919 30.483-69.942L31.643-69.942Q31.842-69.919 31.893-69.708L31.893-69.622Q31.842-69.403 31.643-69.380L31.534-69.380L32.030-68.723L32.506-69.380L32.389-69.380Q32.190-69.403 32.139-69.622L32.139-69.708Q32.190-69.919 32.389-69.942L33.549-69.942Q33.745-69.923 33.795-69.708L33.795-69.622Q33.745-69.403 33.549-69.380L33.139-69.380L32.291-68.270L33.252-67.052L33.659-67.052Q33.858-67.028 33.909-66.821L33.909-66.731Q33.870-66.516 33.659-66.493L32.506-66.493Q32.299-66.516 32.260-66.731L32.260-66.821Q32.299-67.028 32.506-67.052L32.635-67.052L32.030-67.907L31.444-67.052L31.588-67.052Q31.795-67.028 31.834-66.821L31.834-66.731Q31.795-66.516 31.588-66.493L30.436-66.493Q30.241-66.513 30.190-66.731M36.299-66.415Q35.866-66.415 35.534-66.653Q35.202-66.891 34.981-67.280Q34.760-67.669 34.653-68.106Q34.545-68.544 34.545-68.942Q34.545-69.333 34.655-69.776Q34.764-70.220 34.981-70.600Q35.198-70.981 35.532-71.222Q35.866-71.462 36.299-71.462Q36.854-71.462 37.254-71.063Q37.655-70.665 37.852-70.079Q38.049-69.493 38.049-68.942Q38.049-68.388 37.852-67.800Q37.655-67.212 37.254-66.813Q36.854-66.415 36.299-66.415M36.299-66.973Q36.600-66.973 36.817-67.190Q37.034-67.407 37.161-67.735Q37.288-68.063 37.348-68.409Q37.409-68.755 37.409-69.036Q37.409-69.286 37.346-69.612Q37.284-69.938 37.153-70.229Q37.022-70.520 36.809-70.710Q36.596-70.899 36.299-70.899Q35.924-70.899 35.672-70.587Q35.420-70.274 35.303-69.841Q35.186-69.407 35.186-69.036Q35.186-68.638 35.299-68.157Q35.413-67.677 35.661-67.325Q35.909-66.973 36.299-66.973M39.760-66.708L39.760-66.766Q39.760-67.309 39.866-67.856Q39.971-68.403 40.176-68.927Q40.381-69.450 40.678-69.929Q40.975-70.407 41.354-70.821L39.416-70.821L39.416-70.684Q39.366-70.470 39.166-70.446L39.026-70.446Q38.827-70.470 38.776-70.684L38.776-71.278Q38.827-71.489 39.026-71.509L39.166-71.509Q39.303-71.497 39.377-71.380L42.065-71.380Q42.260-71.356 42.311-71.149L42.311-71.059Q42.299-70.970 42.256-70.919Q41.995-70.661 41.764-70.395Q41.534-70.130 41.372-69.897Q41.209-69.665 41.051-69.366Q40.893-69.067 40.760-68.716Q40.584-68.243 40.493-67.727Q40.401-67.212 40.401-66.708Q40.389-66.583 40.303-66.505Q40.217-66.427 40.096-66.415Q39.959-66.415 39.866-66.493Q39.772-66.571 39.760-66.708M44.791-66.415Q44.358-66.415 44.026-66.653Q43.694-66.891 43.473-67.280Q43.252-67.669 43.145-68.106Q43.038-68.544 43.038-68.942Q43.038-69.333 43.147-69.776Q43.256-70.220 43.473-70.600Q43.690-70.981 44.024-71.222Q44.358-71.462 44.791-71.462Q45.346-71.462 45.747-71.063Q46.147-70.665 46.344-70.079Q46.541-69.493 46.541-68.942Q46.541-68.388 46.344-67.800Q46.147-67.212 45.747-66.813Q45.346-66.415 44.791-66.415M44.791-66.973Q45.092-66.973 45.309-67.190Q45.526-67.407 45.653-67.735Q45.780-68.063 45.840-68.409Q45.901-68.755 45.901-69.036Q45.901-69.286 45.838-69.612Q45.776-69.938 45.645-70.229Q45.514-70.520 45.301-70.710Q45.088-70.899 44.791-70.899Q44.416-70.899 44.165-70.587Q43.913-70.274 43.795-69.841Q43.678-69.407 43.678-69.036Q43.678-68.638 43.791-68.157Q43.905-67.677 44.153-67.325Q44.401-66.973 44.791-66.973M48.483-67.052Q48.483-67.274 48.649-67.440Q48.815-67.606 49.045-67.606Q49.194-67.606 49.321-67.528Q49.448-67.450 49.522-67.325Q49.596-67.200 49.596-67.052Q49.596-66.825 49.430-66.659Q49.264-66.493 49.045-66.493Q48.819-66.493 48.651-66.661Q48.483-66.829 48.483-67.052M48.483-69.388Q48.483-69.610 48.649-69.776Q48.815-69.942 49.045-69.942Q49.194-69.942 49.321-69.864Q49.448-69.786 49.522-69.661Q49.596-69.536 49.596-69.388Q49.596-69.161 49.430-68.995Q49.264-68.829 49.045-68.829Q48.819-68.829 48.651-68.997Q48.483-69.165 48.483-69.388\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 80.69)\">\u003Cpath d=\"M60.093-67.606Q60.093-68.052 60.507-68.309Q60.921-68.567 61.462-68.667Q62.003-68.766 62.511-68.774Q62.511-68.989 62.376-69.141Q62.242-69.294 62.035-69.370Q61.828-69.446 61.617-69.446Q61.273-69.446 61.113-69.423L61.113-69.364Q61.113-69.196 60.994-69.081Q60.874-68.966 60.710-68.966Q60.535-68.966 60.419-69.089Q60.304-69.212 60.304-69.380Q60.304-69.786 60.685-69.895Q61.066-70.005 61.624-70.005Q61.894-70.005 62.162-69.927Q62.429-69.848 62.654-69.698Q62.878-69.548 63.015-69.327Q63.152-69.106 63.152-68.829L63.152-67.110Q63.152-67.052 63.679-67.052Q63.874-67.032 63.925-66.821L63.925-66.731Q63.874-66.516 63.679-66.493L63.535-66.493Q63.191-66.493 62.962-66.540Q62.734-66.587 62.589-66.774Q62.128-66.454 61.421-66.454Q61.085-66.454 60.781-66.595Q60.476-66.735 60.285-66.997Q60.093-67.259 60.093-67.606M60.734-67.598Q60.734-67.325 60.976-67.169Q61.218-67.013 61.503-67.013Q61.722-67.013 61.955-67.071Q62.187-67.130 62.349-67.268Q62.511-67.407 62.511-67.630L62.511-68.220Q62.230-68.220 61.814-68.163Q61.398-68.106 61.066-67.968Q60.734-67.829 60.734-67.598M66.054-66.415Q65.621-66.415 65.289-66.653Q64.957-66.891 64.736-67.280Q64.515-67.669 64.408-68.106Q64.300-68.544 64.300-68.942Q64.300-69.333 64.410-69.776Q64.519-70.220 64.736-70.600Q64.953-70.981 65.287-71.222Q65.621-71.462 66.054-71.462Q66.609-71.462 67.009-71.063Q67.410-70.665 67.607-70.079Q67.804-69.493 67.804-68.942Q67.804-68.388 67.607-67.800Q67.410-67.212 67.009-66.813Q66.609-66.415 66.054-66.415M66.054-66.973Q66.355-66.973 66.572-67.190Q66.789-67.407 66.916-67.735Q67.042-68.063 67.103-68.409Q67.164-68.755 67.164-69.036Q67.164-69.286 67.101-69.612Q67.039-69.938 66.908-70.229Q66.777-70.520 66.564-70.710Q66.351-70.899 66.054-70.899Q65.679-70.899 65.427-70.587Q65.175-70.274 65.058-69.841Q64.941-69.407 64.941-69.036Q64.941-68.638 65.054-68.157Q65.167-67.677 65.416-67.325Q65.664-66.973 66.054-66.973M70.300-66.415Q69.867-66.415 69.535-66.653Q69.203-66.891 68.982-67.280Q68.761-67.669 68.654-68.106Q68.546-68.544 68.546-68.942Q68.546-69.333 68.656-69.776Q68.765-70.220 68.982-70.600Q69.199-70.981 69.533-71.222Q69.867-71.462 70.300-71.462Q70.855-71.462 71.255-71.063Q71.656-70.665 71.853-70.079Q72.050-69.493 72.050-68.942Q72.050-68.388 71.853-67.800Q71.656-67.212 71.255-66.813Q70.855-66.415 70.300-66.415M70.300-66.973Q70.601-66.973 70.818-67.190Q71.035-67.407 71.162-67.735Q71.289-68.063 71.349-68.409Q71.410-68.755 71.410-69.036Q71.410-69.286 71.347-69.612Q71.285-69.938 71.154-70.229Q71.023-70.520 70.810-70.710Q70.597-70.899 70.300-70.899Q69.925-70.899 69.673-70.587Q69.421-70.274 69.304-69.841Q69.187-69.407 69.187-69.036Q69.187-68.638 69.300-68.157Q69.414-67.677 69.662-67.325Q69.910-66.973 70.300-66.973M74.546-66.415Q74.113-66.415 73.781-66.653Q73.449-66.891 73.228-67.280Q73.007-67.669 72.900-68.106Q72.792-68.544 72.792-68.942Q72.792-69.333 72.902-69.776Q73.011-70.220 73.228-70.600Q73.445-70.981 73.779-71.222Q74.113-71.462 74.546-71.462Q75.101-71.462 75.501-71.063Q75.902-70.665 76.099-70.079Q76.296-69.493 76.296-68.942Q76.296-68.388 76.099-67.800Q75.902-67.212 75.501-66.813Q75.101-66.415 74.546-66.415M74.546-66.973Q74.847-66.973 75.064-67.190Q75.281-67.407 75.408-67.735Q75.535-68.063 75.595-68.409Q75.656-68.755 75.656-69.036Q75.656-69.286 75.593-69.612Q75.531-69.938 75.400-70.229Q75.269-70.520 75.056-70.710Q74.843-70.899 74.546-70.899Q74.171-70.899 73.919-70.587Q73.667-70.274 73.550-69.841Q73.433-69.407 73.433-69.036Q73.433-68.638 73.546-68.157Q73.660-67.677 73.908-67.325Q74.156-66.973 74.546-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 80.69)\">\u003Cpath d=\"M81.343-67.606Q81.343-68.052 81.757-68.309Q82.171-68.567 82.712-68.667Q83.253-68.766 83.761-68.774Q83.761-68.989 83.626-69.141Q83.492-69.294 83.285-69.370Q83.078-69.446 82.867-69.446Q82.523-69.446 82.363-69.423L82.363-69.364Q82.363-69.196 82.244-69.081Q82.124-68.966 81.960-68.966Q81.785-68.966 81.669-69.089Q81.554-69.212 81.554-69.380Q81.554-69.786 81.935-69.895Q82.316-70.005 82.874-70.005Q83.144-70.005 83.412-69.927Q83.679-69.848 83.904-69.698Q84.128-69.548 84.265-69.327Q84.402-69.106 84.402-68.829L84.402-67.110Q84.402-67.052 84.929-67.052Q85.124-67.032 85.175-66.821L85.175-66.731Q85.124-66.516 84.929-66.493L84.785-66.493Q84.441-66.493 84.212-66.540Q83.984-66.587 83.839-66.774Q83.378-66.454 82.671-66.454Q82.335-66.454 82.031-66.595Q81.726-66.735 81.535-66.997Q81.343-67.259 81.343-67.606M81.984-67.598Q81.984-67.325 82.226-67.169Q82.468-67.013 82.753-67.013Q82.972-67.013 83.205-67.071Q83.437-67.130 83.599-67.268Q83.761-67.407 83.761-67.630L83.761-68.220Q83.480-68.220 83.064-68.163Q82.648-68.106 82.316-67.968Q81.984-67.829 81.984-67.598M87.304-66.415Q86.871-66.415 86.539-66.653Q86.207-66.891 85.986-67.280Q85.765-67.669 85.658-68.106Q85.550-68.544 85.550-68.942Q85.550-69.333 85.660-69.776Q85.769-70.220 85.986-70.600Q86.203-70.981 86.537-71.222Q86.871-71.462 87.304-71.462Q87.859-71.462 88.259-71.063Q88.660-70.665 88.857-70.079Q89.054-69.493 89.054-68.942Q89.054-68.388 88.857-67.800Q88.660-67.212 88.259-66.813Q87.859-66.415 87.304-66.415M87.304-66.973Q87.605-66.973 87.822-67.190Q88.039-67.407 88.166-67.735Q88.292-68.063 88.353-68.409Q88.414-68.755 88.414-69.036Q88.414-69.286 88.351-69.612Q88.289-69.938 88.158-70.229Q88.027-70.520 87.814-70.710Q87.601-70.899 87.304-70.899Q86.929-70.899 86.677-70.587Q86.425-70.274 86.308-69.841Q86.191-69.407 86.191-69.036Q86.191-68.638 86.304-68.157Q86.417-67.677 86.666-67.325Q86.914-66.973 87.304-66.973M91.550-66.415Q91.117-66.415 90.785-66.653Q90.453-66.891 90.232-67.280Q90.011-67.669 89.904-68.106Q89.796-68.544 89.796-68.942Q89.796-69.333 89.906-69.776Q90.015-70.220 90.232-70.600Q90.449-70.981 90.783-71.222Q91.117-71.462 91.550-71.462Q92.105-71.462 92.505-71.063Q92.906-70.665 93.103-70.079Q93.300-69.493 93.300-68.942Q93.300-68.388 93.103-67.800Q92.906-67.212 92.505-66.813Q92.105-66.415 91.550-66.415M91.550-66.973Q91.851-66.973 92.068-67.190Q92.285-67.407 92.412-67.735Q92.539-68.063 92.599-68.409Q92.660-68.755 92.660-69.036Q92.660-69.286 92.597-69.612Q92.535-69.938 92.404-70.229Q92.273-70.520 92.060-70.710Q91.847-70.899 91.550-70.899Q91.175-70.899 90.923-70.587Q90.671-70.274 90.554-69.841Q90.437-69.407 90.437-69.036Q90.437-68.638 90.550-68.157Q90.664-67.677 90.912-67.325Q91.160-66.973 91.550-66.973M95.796-66.415Q95.363-66.415 95.031-66.653Q94.699-66.891 94.478-67.280Q94.257-67.669 94.150-68.106Q94.042-68.544 94.042-68.942Q94.042-69.333 94.152-69.776Q94.261-70.220 94.478-70.600Q94.695-70.981 95.029-71.222Q95.363-71.462 95.796-71.462Q96.351-71.462 96.751-71.063Q97.152-70.665 97.349-70.079Q97.546-69.493 97.546-68.942Q97.546-68.388 97.349-67.800Q97.152-67.212 96.751-66.813Q96.351-66.415 95.796-66.415M95.796-66.973Q96.097-66.973 96.314-67.190Q96.531-67.407 96.658-67.735Q96.785-68.063 96.845-68.409Q96.906-68.755 96.906-69.036Q96.906-69.286 96.843-69.612Q96.781-69.938 96.650-70.229Q96.519-70.520 96.306-70.710Q96.093-70.899 95.796-70.899Q95.421-70.899 95.169-70.587Q94.917-70.274 94.800-69.841Q94.683-69.407 94.683-69.036Q94.683-68.638 94.796-68.157Q94.910-67.677 95.158-67.325Q95.406-66.973 95.796-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 80.69)\">\u003Cpath d=\"M102.594-67.606Q102.594-68.052 103.008-68.309Q103.422-68.567 103.963-68.667Q104.504-68.766 105.012-68.774Q105.012-68.989 104.877-69.141Q104.743-69.294 104.536-69.370Q104.329-69.446 104.118-69.446Q103.774-69.446 103.614-69.423L103.614-69.364Q103.614-69.196 103.495-69.081Q103.376-68.966 103.211-68.966Q103.036-68.966 102.920-69.089Q102.805-69.212 102.805-69.380Q102.805-69.786 103.186-69.895Q103.567-70.005 104.126-70.005Q104.395-70.005 104.663-69.927Q104.930-69.848 105.155-69.698Q105.379-69.548 105.516-69.327Q105.653-69.106 105.653-68.829L105.653-67.110Q105.653-67.052 106.180-67.052Q106.376-67.032 106.426-66.821L106.426-66.731Q106.376-66.516 106.180-66.493L106.036-66.493Q105.692-66.493 105.463-66.540Q105.235-66.587 105.090-66.774Q104.629-66.454 103.922-66.454Q103.586-66.454 103.282-66.595Q102.977-66.735 102.786-66.997Q102.594-67.259 102.594-67.606M103.235-67.598Q103.235-67.325 103.477-67.169Q103.719-67.013 104.004-67.013Q104.223-67.013 104.456-67.071Q104.688-67.130 104.850-67.268Q105.012-67.407 105.012-67.630L105.012-68.220Q104.731-68.220 104.315-68.163Q103.899-68.106 103.567-67.968Q103.235-67.829 103.235-67.598M108.555-66.415Q108.122-66.415 107.790-66.653Q107.458-66.891 107.237-67.280Q107.016-67.669 106.909-68.106Q106.801-68.544 106.801-68.942Q106.801-69.333 106.911-69.776Q107.020-70.220 107.237-70.600Q107.454-70.981 107.788-71.222Q108.122-71.462 108.555-71.462Q109.110-71.462 109.510-71.063Q109.911-70.665 110.108-70.079Q110.305-69.493 110.305-68.942Q110.305-68.388 110.108-67.800Q109.911-67.212 109.510-66.813Q109.110-66.415 108.555-66.415M108.555-66.973Q108.856-66.973 109.073-67.190Q109.290-67.407 109.417-67.735Q109.543-68.063 109.604-68.409Q109.665-68.755 109.665-69.036Q109.665-69.286 109.602-69.612Q109.540-69.938 109.409-70.229Q109.278-70.520 109.065-70.710Q108.852-70.899 108.555-70.899Q108.180-70.899 107.928-70.587Q107.676-70.274 107.559-69.841Q107.442-69.407 107.442-69.036Q107.442-68.638 107.555-68.157Q107.668-67.677 107.917-67.325Q108.165-66.973 108.555-66.973M112.801-66.415Q112.368-66.415 112.036-66.653Q111.704-66.891 111.483-67.280Q111.262-67.669 111.155-68.106Q111.047-68.544 111.047-68.942Q111.047-69.333 111.157-69.776Q111.266-70.220 111.483-70.600Q111.700-70.981 112.034-71.222Q112.368-71.462 112.801-71.462Q113.356-71.462 113.756-71.063Q114.157-70.665 114.354-70.079Q114.551-69.493 114.551-68.942Q114.551-68.388 114.354-67.800Q114.157-67.212 113.756-66.813Q113.356-66.415 112.801-66.415M112.801-66.973Q113.102-66.973 113.319-67.190Q113.536-67.407 113.663-67.735Q113.790-68.063 113.850-68.409Q113.911-68.755 113.911-69.036Q113.911-69.286 113.848-69.612Q113.786-69.938 113.655-70.229Q113.524-70.520 113.311-70.710Q113.098-70.899 112.801-70.899Q112.426-70.899 112.174-70.587Q111.922-70.274 111.805-69.841Q111.688-69.407 111.688-69.036Q111.688-68.638 111.801-68.157Q111.915-67.677 112.163-67.325Q112.411-66.973 112.801-66.973M117.047-66.415Q116.614-66.415 116.282-66.653Q115.950-66.891 115.729-67.280Q115.508-67.669 115.401-68.106Q115.293-68.544 115.293-68.942Q115.293-69.333 115.403-69.776Q115.512-70.220 115.729-70.600Q115.946-70.981 116.280-71.222Q116.614-71.462 117.047-71.462Q117.602-71.462 118.002-71.063Q118.403-70.665 118.600-70.079Q118.797-69.493 118.797-68.942Q118.797-68.388 118.600-67.800Q118.403-67.212 118.002-66.813Q117.602-66.415 117.047-66.415M117.047-66.973Q117.348-66.973 117.565-67.190Q117.782-67.407 117.909-67.735Q118.036-68.063 118.096-68.409Q118.157-68.755 118.157-69.036Q118.157-69.286 118.094-69.612Q118.032-69.938 117.901-70.229Q117.770-70.520 117.557-70.710Q117.344-70.899 117.047-70.899Q116.672-70.899 116.420-70.587Q116.168-70.274 116.051-69.841Q115.934-69.407 115.934-69.036Q115.934-68.638 116.047-68.157Q116.161-67.677 116.409-67.325Q116.657-66.973 117.047-66.973\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(54.748 136.172)\">\u003Cpath d=\"M26.245-68.220Q26.245-68.700 26.489-69.114Q26.733-69.528 27.149-69.766Q27.565-70.005 28.045-70.005Q28.600-70.005 28.979-69.895Q29.358-69.786 29.358-69.380Q29.358-69.212 29.245-69.089Q29.131-68.966 28.959-68.966Q28.788-68.966 28.668-69.081Q28.549-69.196 28.549-69.364L28.549-69.423Q28.389-69.446 28.053-69.446Q27.725-69.446 27.457-69.276Q27.190-69.106 27.038-68.823Q26.885-68.540 26.885-68.220Q26.885-67.899 27.057-67.618Q27.229-67.337 27.514-67.175Q27.799-67.013 28.127-67.013Q28.440-67.013 28.567-67.116Q28.694-67.220 28.811-67.409Q28.928-67.598 29.045-67.614L29.213-67.614Q29.319-67.602 29.383-67.534Q29.448-67.466 29.448-67.364Q29.448-67.317 29.428-67.278Q29.319-66.985 29.116-66.805Q28.913-66.626 28.637-66.540Q28.362-66.454 28.045-66.454Q27.561-66.454 27.145-66.692Q26.729-66.930 26.487-67.333Q26.245-67.735 26.245-68.220M30.338-67.606Q30.338-68.052 30.752-68.309Q31.166-68.567 31.707-68.667Q32.248-68.766 32.756-68.774Q32.756-68.989 32.622-69.141Q32.487-69.294 32.280-69.370Q32.073-69.446 31.862-69.446Q31.518-69.446 31.358-69.423L31.358-69.364Q31.358-69.196 31.239-69.081Q31.120-68.966 30.956-68.966Q30.780-68.966 30.665-69.089Q30.549-69.212 30.549-69.380Q30.549-69.786 30.930-69.895Q31.311-70.005 31.870-70.005Q32.139-70.005 32.407-69.927Q32.674-69.848 32.899-69.698Q33.123-69.548 33.260-69.327Q33.397-69.106 33.397-68.829L33.397-67.110Q33.397-67.052 33.924-67.052Q34.120-67.032 34.170-66.821L34.170-66.731Q34.120-66.516 33.924-66.493L33.780-66.493Q33.436-66.493 33.207-66.540Q32.979-66.587 32.834-66.774Q32.373-66.454 31.666-66.454Q31.331-66.454 31.026-66.595Q30.721-66.735 30.530-66.997Q30.338-67.259 30.338-67.606M30.979-67.598Q30.979-67.325 31.221-67.169Q31.463-67.013 31.748-67.013Q31.967-67.013 32.200-67.071Q32.432-67.130 32.594-67.268Q32.756-67.407 32.756-67.630L32.756-68.220Q32.475-68.220 32.059-68.163Q31.643-68.106 31.311-67.968Q30.979-67.829 30.979-67.598M34.627-66.731L34.627-66.821Q34.678-67.028 34.873-67.052L35.979-67.052L35.979-70.821L34.873-70.821Q34.678-70.845 34.627-71.059L34.627-71.149Q34.678-71.356 34.873-71.380L36.370-71.380Q36.561-71.356 36.620-71.149L36.620-67.052L37.721-67.052Q37.920-67.028 37.971-66.821L37.971-66.731Q37.920-66.516 37.721-66.493L34.873-66.493Q34.678-66.516 34.627-66.731M38.873-66.731L38.873-66.821Q38.924-67.028 39.120-67.052L40.225-67.052L40.225-70.821L39.120-70.821Q38.924-70.845 38.873-71.059L38.873-71.149Q38.924-71.356 39.120-71.380L40.616-71.380Q40.807-71.356 40.866-71.149L40.866-67.052L41.967-67.052Q42.166-67.028 42.217-66.821L42.217-66.731Q42.166-66.516 41.967-66.493L39.120-66.493Q38.924-66.516 38.873-66.731\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 136.172)\">\u003Cpath d=\"M47.945-66.716L47.480-69.380L47.320-69.380Q47.113-69.403 47.074-69.622L47.074-69.708Q47.113-69.919 47.320-69.942L48.488-69.942Q48.699-69.919 48.738-69.708L48.738-69.622Q48.699-69.403 48.488-69.380L48.015-69.380Q48.128-68.735 48.207-68.290Q48.285-67.845 48.335-67.526Q48.386-67.208 48.386-67.134Q48.394-67.305 48.679-68.302Q48.718-68.415 48.816-68.489Q48.914-68.563 49.035-68.563L49.113-68.563Q49.234-68.563 49.332-68.489Q49.429-68.415 49.464-68.302Q49.574-67.919 49.656-67.595Q49.738-67.270 49.738-67.134Q49.749-67.423 50.097-69.380L49.624-69.380Q49.417-69.403 49.378-69.622L49.378-69.708Q49.417-69.919 49.624-69.942L50.800-69.942Q50.992-69.919 51.050-69.708L51.050-69.622Q50.996-69.403 50.800-69.380L50.632-69.380L50.167-66.716Q50.144-66.598 50.056-66.526Q49.968-66.454 49.847-66.454L49.707-66.454Q49.585-66.454 49.490-66.526Q49.394-66.598 49.351-66.716Q49.304-66.895 49.232-67.151Q49.160-67.407 49.117-67.616Q49.074-67.825 49.074-67.927Q49.066-67.645 48.785-66.716Q48.757-66.606 48.660-66.530Q48.562-66.454 48.441-66.454L48.265-66.454Q48.144-66.454 48.056-66.526Q47.968-66.598 47.945-66.716M51.406-66.731L51.406-66.821Q51.464-67.028 51.656-67.052L52.367-67.052L52.367-69.380L51.656-69.380Q51.460-69.403 51.406-69.622L51.406-69.708Q51.464-69.919 51.656-69.942L52.757-69.942Q52.957-69.923 53.007-69.708L53.007-69.380Q53.269-69.665 53.624-69.823Q53.980-69.981 54.367-69.981Q54.660-69.981 54.894-69.847Q55.128-69.712 55.128-69.446Q55.128-69.278 55.019-69.161Q54.910-69.044 54.742-69.044Q54.589-69.044 54.474-69.155Q54.359-69.266 54.359-69.423Q53.984-69.423 53.669-69.222Q53.355-69.020 53.181-68.686Q53.007-68.352 53.007-67.973L53.007-67.052L53.953-67.052Q54.160-67.028 54.199-66.821L54.199-66.731Q54.160-66.516 53.953-66.493L51.656-66.493Q51.464-66.516 51.406-66.731M56.046-66.731L56.046-66.821Q56.097-67.028 56.292-67.052L57.332-67.052L57.332-69.380L56.359-69.380Q56.160-69.403 56.109-69.622L56.109-69.708Q56.160-69.919 56.359-69.942L57.726-69.942Q57.921-69.923 57.972-69.708L57.972-67.052L58.886-67.052Q59.082-67.028 59.132-66.821L59.132-66.731Q59.082-66.516 58.886-66.493L56.292-66.493Q56.097-66.516 56.046-66.731M57.078-70.919L57.078-70.973Q57.078-71.145 57.214-71.266Q57.351-71.388 57.527-71.388Q57.699-71.388 57.835-71.266Q57.972-71.145 57.972-70.973L57.972-70.919Q57.972-70.743 57.835-70.622Q57.699-70.501 57.527-70.501Q57.351-70.501 57.214-70.622Q57.078-70.743 57.078-70.919M60.874-67.598L60.874-69.380L60.124-69.380Q59.925-69.403 59.874-69.622L59.874-69.708Q59.925-69.919 60.124-69.942L60.874-69.942L60.874-70.692Q60.925-70.899 61.124-70.927L61.269-70.927Q61.464-70.899 61.515-70.692L61.515-69.942L62.874-69.942Q63.066-69.923 63.124-69.708L63.124-69.622Q63.070-69.403 62.874-69.380L61.515-69.380L61.515-67.630Q61.515-67.013 62.089-67.013Q62.339-67.013 62.503-67.198Q62.667-67.384 62.667-67.630Q62.667-67.723 62.740-67.794Q62.812-67.864 62.914-67.876L63.058-67.876Q63.257-67.852 63.308-67.645L63.308-67.598Q63.308-67.274 63.124-67.011Q62.941-66.747 62.648-66.600Q62.355-66.454 62.035-66.454Q61.523-66.454 61.199-66.764Q60.874-67.075 60.874-67.598M67.433-67.981L64.992-67.981Q65.046-67.704 65.244-67.481Q65.441-67.259 65.718-67.136Q65.996-67.013 66.281-67.013Q66.753-67.013 66.976-67.302Q66.984-67.313 67.041-67.419Q67.097-67.524 67.146-67.567Q67.195-67.610 67.289-67.622L67.433-67.622Q67.624-67.602 67.683-67.388L67.683-67.333Q67.617-67.032 67.386-66.835Q67.156-66.638 66.843-66.546Q66.531-66.454 66.226-66.454Q65.742-66.454 65.302-66.682Q64.863-66.911 64.595-67.311Q64.328-67.712 64.328-68.204L64.328-68.263Q64.328-68.731 64.574-69.134Q64.820-69.536 65.228-69.770Q65.636-70.005 66.105-70.005Q66.609-70.005 66.962-69.782Q67.316-69.559 67.499-69.171Q67.683-68.782 67.683-68.278L67.683-68.220Q67.624-68.005 67.433-67.981M64.999-68.532L67.027-68.532Q66.980-68.942 66.742-69.194Q66.503-69.446 66.105-69.446Q65.710-69.446 65.404-69.184Q65.097-68.923 64.999-68.532M68.753-66.692L68.753-67.606Q68.781-67.813 68.992-67.837L69.160-67.837Q69.324-67.813 69.382-67.653Q69.585-67.013 70.312-67.013Q70.519-67.013 70.748-67.048Q70.976-67.083 71.144-67.198Q71.312-67.313 71.312-67.516Q71.312-67.727 71.089-67.841Q70.867-67.954 70.593-67.997L69.894-68.110Q68.753-68.321 68.753-69.044Q68.753-69.333 68.898-69.522Q69.042-69.712 69.283-69.819Q69.523-69.927 69.779-69.966Q70.035-70.005 70.312-70.005Q70.562-70.005 70.755-69.975Q70.949-69.946 71.113-69.868Q71.191-69.985 71.320-70.005L71.398-70.005Q71.496-69.993 71.558-69.930Q71.621-69.868 71.632-69.774L71.632-69.067Q71.621-68.973 71.558-68.907Q71.496-68.841 71.398-68.829L71.230-68.829Q71.136-68.841 71.070-68.907Q71.003-68.973 70.992-69.067Q70.992-69.446 70.296-69.446Q69.949-69.446 69.630-69.364Q69.312-69.282 69.312-69.036Q69.312-68.770 69.984-68.661L70.687-68.540Q71.171-68.458 71.521-68.210Q71.871-67.962 71.871-67.516Q71.871-67.126 71.634-66.884Q71.398-66.641 71.048-66.548Q70.699-66.454 70.312-66.454Q69.734-66.454 69.335-66.708Q69.265-66.583 69.216-66.526Q69.167-66.470 69.062-66.454L68.992-66.454Q68.777-66.477 68.753-66.692\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 136.172)\">\u003Cpath d=\"M78.808-66.415Q78.374-66.415 78.042-66.653Q77.710-66.891 77.490-67.280Q77.269-67.669 77.162-68.106Q77.054-68.544 77.054-68.942Q77.054-69.333 77.164-69.776Q77.273-70.220 77.490-70.600Q77.707-70.981 78.041-71.222Q78.374-71.462 78.808-71.462Q79.363-71.462 79.763-71.063Q80.164-70.665 80.361-70.079Q80.558-69.493 80.558-68.942Q80.558-68.388 80.361-67.800Q80.164-67.212 79.763-66.813Q79.363-66.415 78.808-66.415M78.808-66.973Q79.109-66.973 79.326-67.190Q79.542-67.407 79.669-67.735Q79.796-68.063 79.857-68.409Q79.917-68.755 79.917-69.036Q79.917-69.286 79.855-69.612Q79.792-69.938 79.662-70.229Q79.531-70.520 79.318-70.710Q79.105-70.899 78.808-70.899Q78.433-70.899 78.181-70.587Q77.929-70.274 77.812-69.841Q77.695-69.407 77.695-69.036Q77.695-68.638 77.808-68.157Q77.921-67.677 78.169-67.325Q78.417-66.973 78.808-66.973M81.191-66.731L81.191-66.821Q81.230-67.028 81.437-67.052L81.843-67.052L82.773-68.270L81.902-69.380L81.484-69.380Q81.289-69.399 81.238-69.622L81.238-69.708Q81.289-69.919 81.484-69.942L82.644-69.942Q82.843-69.919 82.894-69.708L82.894-69.622Q82.843-69.403 82.644-69.380L82.535-69.380L83.031-68.723L83.507-69.380L83.390-69.380Q83.191-69.403 83.140-69.622L83.140-69.708Q83.191-69.919 83.390-69.942L84.550-69.942Q84.746-69.923 84.796-69.708L84.796-69.622Q84.746-69.403 84.550-69.380L84.140-69.380L83.292-68.270L84.253-67.052L84.660-67.052Q84.859-67.028 84.910-66.821L84.910-66.731Q84.871-66.516 84.660-66.493L83.507-66.493Q83.300-66.516 83.261-66.731L83.261-66.821Q83.300-67.028 83.507-67.052L83.636-67.052L83.031-67.907L82.445-67.052L82.589-67.052Q82.796-67.028 82.835-66.821L82.835-66.731Q82.796-66.516 82.589-66.493L81.437-66.493Q81.242-66.513 81.191-66.731M87.300-66.415Q86.867-66.415 86.535-66.653Q86.203-66.891 85.982-67.280Q85.761-67.669 85.654-68.106Q85.546-68.544 85.546-68.942Q85.546-69.333 85.656-69.776Q85.765-70.220 85.982-70.600Q86.199-70.981 86.533-71.222Q86.867-71.462 87.300-71.462Q87.855-71.462 88.255-71.063Q88.656-70.665 88.853-70.079Q89.050-69.493 89.050-68.942Q89.050-68.388 88.853-67.800Q88.656-67.212 88.255-66.813Q87.855-66.415 87.300-66.415M87.300-66.973Q87.601-66.973 87.818-67.190Q88.035-67.407 88.162-67.735Q88.289-68.063 88.349-68.409Q88.410-68.755 88.410-69.036Q88.410-69.286 88.347-69.612Q88.285-69.938 88.154-70.229Q88.023-70.520 87.810-70.710Q87.597-70.899 87.300-70.899Q86.925-70.899 86.673-70.587Q86.421-70.274 86.304-69.841Q86.187-69.407 86.187-69.036Q86.187-68.638 86.300-68.157Q86.414-67.677 86.662-67.325Q86.910-66.973 87.300-66.973M89.851-66.731L89.851-66.805Q89.882-66.973 89.984-67.020L91.273-68.087Q91.605-68.364 91.787-68.516Q91.968-68.669 92.164-68.889Q92.359-69.110 92.480-69.360Q92.601-69.610 92.601-69.876Q92.601-70.200 92.425-70.434Q92.249-70.669 91.970-70.784Q91.691-70.899 91.371-70.899Q91.113-70.899 90.884-70.776Q90.656-70.653 90.554-70.438Q90.656-70.305 90.656-70.157Q90.656-69.997 90.537-69.874Q90.417-69.751 90.257-69.751Q90.082-69.751 89.966-69.876Q89.851-70.001 89.851-70.173Q89.851-70.466 89.986-70.708Q90.121-70.950 90.359-71.122Q90.597-71.294 90.865-71.378Q91.132-71.462 91.425-71.462Q91.906-71.462 92.322-71.272Q92.738-71.083 92.990-70.722Q93.242-70.360 93.242-69.876Q93.242-69.532 93.109-69.229Q92.976-68.927 92.751-68.667Q92.527-68.407 92.218-68.145Q91.910-67.884 91.699-67.708L90.890-67.052L92.601-67.052L92.601-67.196Q92.652-67.407 92.851-67.430L92.992-67.430Q93.191-67.411 93.242-67.196L93.242-66.731Q93.191-66.516 92.992-66.493L90.097-66.493Q89.902-66.513 89.851-66.731M95.007-66.708L95.007-66.766Q95.007-67.309 95.113-67.856Q95.218-68.403 95.423-68.927Q95.628-69.450 95.925-69.929Q96.222-70.407 96.601-70.821L94.664-70.821L94.664-70.684Q94.613-70.470 94.414-70.446L94.273-70.446Q94.074-70.470 94.023-70.684L94.023-71.278Q94.074-71.489 94.273-71.509L94.414-71.509Q94.550-71.497 94.624-71.380L97.312-71.380Q97.507-71.356 97.558-71.149L97.558-71.059Q97.546-70.970 97.503-70.919Q97.242-70.661 97.011-70.395Q96.781-70.130 96.619-69.897Q96.457-69.665 96.298-69.366Q96.140-69.067 96.007-68.716Q95.832-68.243 95.740-67.727Q95.648-67.212 95.648-66.708Q95.636-66.583 95.550-66.505Q95.464-66.427 95.343-66.415Q95.207-66.415 95.113-66.493Q95.019-66.571 95.007-66.708\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 136.172)\">\u003Cpath d=\"M102.258-66.731L102.258-66.821Q102.301-67.028 102.508-67.052L102.930-67.052L102.930-70.821L102.508-70.821Q102.301-70.845 102.258-71.059L102.258-71.149Q102.301-71.356 102.508-71.380L103.325-71.380Q103.520-71.356 103.571-71.149L103.571-69.598Q104.032-69.981 104.629-69.981Q104.977-69.981 105.215-69.841Q105.454-69.700 105.569-69.442Q105.684-69.184 105.684-68.829L105.684-67.052L106.110-67.052Q106.317-67.028 106.356-66.821L106.356-66.731Q106.317-66.516 106.110-66.493L104.715-66.493Q104.520-66.516 104.469-66.731L104.469-66.821Q104.520-67.032 104.715-67.052L105.043-67.052L105.043-68.798Q105.043-69.106 104.954-69.264Q104.864-69.423 104.571-69.423Q104.301-69.423 104.073-69.292Q103.844-69.161 103.708-68.932Q103.571-68.704 103.571-68.438L103.571-67.052L103.997-67.052Q104.204-67.028 104.243-66.821L104.243-66.731Q104.204-66.516 103.997-66.493L102.508-66.493Q102.301-66.516 102.258-66.731M109.946-67.981L107.504-67.981Q107.559-67.704 107.756-67.481Q107.954-67.259 108.231-67.136Q108.508-67.013 108.793-67.013Q109.266-67.013 109.489-67.302Q109.497-67.313 109.553-67.419Q109.610-67.524 109.659-67.567Q109.708-67.610 109.801-67.622L109.946-67.622Q110.137-67.602 110.196-67.388L110.196-67.333Q110.129-67.032 109.899-66.835Q109.668-66.638 109.356-66.546Q109.043-66.454 108.739-66.454Q108.254-66.454 107.815-66.682Q107.376-66.911 107.108-67.311Q106.840-67.712 106.840-68.204L106.840-68.263Q106.840-68.731 107.086-69.134Q107.333-69.536 107.741-69.770Q108.149-70.005 108.618-70.005Q109.122-70.005 109.475-69.782Q109.829-69.559 110.012-69.171Q110.196-68.782 110.196-68.278L110.196-68.220Q110.137-68.005 109.946-67.981M107.512-68.532L109.540-68.532Q109.493-68.942 109.254-69.194Q109.016-69.446 108.618-69.446Q108.223-69.446 107.917-69.184Q107.610-68.923 107.512-68.532M110.903-66.731L110.903-66.821Q110.961-67.028 111.153-67.052L111.864-67.052L111.864-69.380L111.153-69.380Q110.958-69.403 110.903-69.622L110.903-69.708Q110.961-69.919 111.153-69.942L112.254-69.942Q112.454-69.923 112.504-69.708L112.504-69.380Q112.766-69.665 113.122-69.823Q113.477-69.981 113.864-69.981Q114.157-69.981 114.391-69.847Q114.626-69.712 114.626-69.446Q114.626-69.278 114.516-69.161Q114.407-69.044 114.239-69.044Q114.086-69.044 113.971-69.155Q113.856-69.266 113.856-69.423Q113.481-69.423 113.167-69.222Q112.852-69.020 112.678-68.686Q112.504-68.352 112.504-67.973L112.504-67.052L113.450-67.052Q113.657-67.028 113.696-66.821L113.696-66.731Q113.657-66.516 113.450-66.493L111.153-66.493Q110.961-66.516 110.903-66.731M118.438-67.981L115.997-67.981Q116.051-67.704 116.249-67.481Q116.446-67.259 116.723-67.136Q117.001-67.013 117.286-67.013Q117.758-67.013 117.981-67.302Q117.989-67.313 118.045-67.419Q118.102-67.524 118.151-67.567Q118.200-67.610 118.293-67.622L118.438-67.622Q118.629-67.602 118.688-67.388L118.688-67.333Q118.622-67.032 118.391-66.835Q118.161-66.638 117.848-66.546Q117.536-66.454 117.231-66.454Q116.747-66.454 116.307-66.682Q115.868-66.911 115.600-67.311Q115.333-67.712 115.333-68.204L115.333-68.263Q115.333-68.731 115.579-69.134Q115.825-69.536 116.233-69.770Q116.641-70.005 117.110-70.005Q117.614-70.005 117.967-69.782Q118.321-69.559 118.504-69.171Q118.688-68.782 118.688-68.278L118.688-68.220Q118.629-68.005 118.438-67.981M116.004-68.532L118.032-68.532Q117.985-68.942 117.747-69.194Q117.508-69.446 117.110-69.446Q116.715-69.446 116.409-69.184Q116.102-68.923 116.004-68.532\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M27.975-66.485Q27.920-66.802 27.762-67.114Q27.604-67.427 27.373-67.679Q27.143-67.930 26.850-68.112Q26.557-68.294 26.229-68.388Q26.159-68.411 26.159-68.493Q26.159-68.575 26.229-68.598Q26.557-68.696 26.850-68.878Q27.143-69.059 27.377-69.317Q27.612-69.575 27.766-69.876Q27.920-70.177 27.975-70.501Q27.995-70.587 28.077-70.606L28.245-70.606Q28.342-70.579 28.342-70.477Q28.245-69.950 27.944-69.477Q27.643-69.005 27.190-68.677L33.541-68.677Q33.616-68.677 33.663-68.624Q33.709-68.571 33.709-68.493Q33.709-68.419 33.659-68.364Q33.608-68.309 33.541-68.309L27.190-68.309Q27.487-68.095 27.719-67.817Q27.952-67.540 28.110-67.208Q28.268-66.876 28.342-66.509Q28.342-66.407 28.245-66.380L28.077-66.380Q27.995-66.399 27.975-66.485\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M38.660-66.731L38.660-66.821Q38.718-67.028 38.910-67.052L39.621-67.052L39.621-69.380L38.910-69.380Q38.714-69.403 38.660-69.622L38.660-69.708Q38.718-69.919 38.910-69.942L40.011-69.942Q40.210-69.923 40.261-69.708L40.261-69.380Q40.523-69.665 40.878-69.823Q41.234-69.981 41.621-69.981Q41.914-69.981 42.148-69.847Q42.382-69.712 42.382-69.446Q42.382-69.278 42.273-69.161Q42.164-69.044 41.996-69.044Q41.843-69.044 41.728-69.155Q41.613-69.266 41.613-69.423Q41.238-69.423 40.923-69.222Q40.609-69.020 40.435-68.686Q40.261-68.352 40.261-67.973L40.261-67.052L41.207-67.052Q41.414-67.028 41.453-66.821L41.453-66.731Q41.414-66.516 41.207-66.493L38.910-66.493Q38.718-66.516 38.660-66.731M43.269-66.692L43.269-67.606Q43.296-67.813 43.507-67.837L43.675-67.837Q43.839-67.813 43.898-67.653Q44.101-67.013 44.828-67.013Q45.035-67.013 45.263-67.048Q45.492-67.083 45.660-67.198Q45.828-67.313 45.828-67.516Q45.828-67.727 45.605-67.841Q45.382-67.954 45.109-67.997L44.410-68.110Q43.269-68.321 43.269-69.044Q43.269-69.333 43.414-69.522Q43.558-69.712 43.798-69.819Q44.039-69.927 44.294-69.966Q44.550-70.005 44.828-70.005Q45.078-70.005 45.271-69.975Q45.464-69.946 45.628-69.868Q45.707-69.985 45.835-70.005L45.914-70.005Q46.011-69.993 46.074-69.930Q46.136-69.868 46.148-69.774L46.148-69.067Q46.136-68.973 46.074-68.907Q46.011-68.841 45.914-68.829L45.746-68.829Q45.652-68.841 45.585-68.907Q45.519-68.973 45.507-69.067Q45.507-69.446 44.812-69.446Q44.464-69.446 44.146-69.364Q43.828-69.282 43.828-69.036Q43.828-68.770 44.499-68.661L45.203-68.540Q45.687-68.458 46.037-68.210Q46.386-67.962 46.386-67.516Q46.386-67.126 46.150-66.884Q45.914-66.641 45.564-66.548Q45.214-66.454 44.828-66.454Q44.249-66.454 43.851-66.708Q43.781-66.583 43.732-66.526Q43.683-66.470 43.578-66.454L43.507-66.454Q43.292-66.477 43.269-66.692M46.999-64.950L46.999-65.036Q47.042-65.255 47.249-65.278L47.671-65.278L47.671-69.380L47.249-69.380Q47.042-69.403 46.999-69.622L46.999-69.708Q47.046-69.919 47.249-69.942L48.066-69.942Q48.261-69.923 48.312-69.708L48.312-69.638Q48.523-69.805 48.787-69.893Q49.050-69.981 49.320-69.981Q49.660-69.981 49.957-69.837Q50.253-69.692 50.468-69.440Q50.683-69.188 50.798-68.876Q50.914-68.563 50.914-68.220Q50.914-67.755 50.687-67.345Q50.460-66.934 50.074-66.694Q49.687-66.454 49.218-66.454Q48.699-66.454 48.312-66.821L48.312-65.278L48.738-65.278Q48.945-65.255 48.984-65.036L48.984-64.950Q48.945-64.739 48.738-64.716L47.249-64.716Q47.046-64.739 46.999-64.950M49.175-67.013Q49.484-67.013 49.734-67.182Q49.984-67.352 50.128-67.634Q50.273-67.915 50.273-68.220Q50.273-68.509 50.148-68.788Q50.023-69.067 49.791-69.245Q49.558-69.423 49.257-69.423Q48.937-69.423 48.675-69.237Q48.414-69.052 48.312-68.751L48.312-67.899Q48.402-67.532 48.623-67.272Q48.843-67.013 49.175-67.013\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M59.085-68.028L56.039-68.028Q55.917-68.040 55.830-68.124Q55.742-68.208 55.742-68.333Q55.742-68.458 55.826-68.542Q55.910-68.626 56.039-68.645L59.085-68.645Q59.210-68.626 59.292-68.542Q59.374-68.458 59.374-68.333Q59.374-68.208 59.291-68.124Q59.207-68.040 59.085-68.028M59.085-69.235L56.039-69.235Q55.906-69.255 55.824-69.333Q55.742-69.411 55.742-69.540Q55.742-69.665 55.826-69.749Q55.910-69.833 56.039-69.852L59.085-69.852Q59.210-69.833 59.292-69.749Q59.374-69.665 59.374-69.540Q59.374-69.411 59.294-69.333Q59.214-69.255 59.085-69.235\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M66.058-66.415Q65.624-66.415 65.292-66.653Q64.960-66.891 64.740-67.280Q64.519-67.669 64.412-68.106Q64.304-68.544 64.304-68.942Q64.304-69.333 64.414-69.776Q64.523-70.220 64.740-70.600Q64.957-70.981 65.291-71.222Q65.624-71.462 66.058-71.462Q66.613-71.462 67.013-71.063Q67.414-70.665 67.611-70.079Q67.808-69.493 67.808-68.942Q67.808-68.388 67.611-67.800Q67.414-67.212 67.013-66.813Q66.613-66.415 66.058-66.415M66.058-66.973Q66.359-66.973 66.576-67.190Q66.792-67.407 66.919-67.735Q67.046-68.063 67.107-68.409Q67.167-68.755 67.167-69.036Q67.167-69.286 67.105-69.612Q67.042-69.938 66.912-70.229Q66.781-70.520 66.568-70.710Q66.355-70.899 66.058-70.899Q65.683-70.899 65.431-70.587Q65.179-70.274 65.062-69.841Q64.945-69.407 64.945-69.036Q64.945-68.638 65.058-68.157Q65.171-67.677 65.419-67.325Q65.667-66.973 66.058-66.973M68.441-66.731L68.441-66.821Q68.480-67.028 68.687-67.052L69.093-67.052L70.023-68.270L69.152-69.380L68.734-69.380Q68.539-69.399 68.488-69.622L68.488-69.708Q68.539-69.919 68.734-69.942L69.894-69.942Q70.093-69.919 70.144-69.708L70.144-69.622Q70.093-69.403 69.894-69.380L69.785-69.380L70.281-68.723L70.757-69.380L70.640-69.380Q70.441-69.403 70.390-69.622L70.390-69.708Q70.441-69.919 70.640-69.942L71.800-69.942Q71.996-69.923 72.046-69.708L72.046-69.622Q71.996-69.403 71.800-69.380L71.390-69.380L70.542-68.270L71.503-67.052L71.910-67.052Q72.109-67.028 72.160-66.821L72.160-66.731Q72.121-66.516 71.910-66.493L70.757-66.493Q70.550-66.516 70.511-66.731L70.511-66.821Q70.550-67.028 70.757-67.052L70.886-67.052L70.281-67.907L69.695-67.052L69.839-67.052Q70.046-67.028 70.085-66.821L70.085-66.731Q70.046-66.516 69.839-66.493L68.687-66.493Q68.492-66.513 68.441-66.731M72.855-66.731L72.855-66.805Q72.886-66.973 72.988-67.020L74.277-68.087Q74.609-68.364 74.791-68.516Q74.972-68.669 75.167-68.889Q75.363-69.110 75.484-69.360Q75.605-69.610 75.605-69.876Q75.605-70.200 75.429-70.434Q75.253-70.669 74.974-70.784Q74.695-70.899 74.374-70.899Q74.117-70.899 73.888-70.776Q73.660-70.653 73.558-70.438Q73.660-70.305 73.660-70.157Q73.660-69.997 73.541-69.874Q73.421-69.751 73.261-69.751Q73.085-69.751 72.970-69.876Q72.855-70.001 72.855-70.173Q72.855-70.466 72.990-70.708Q73.124-70.950 73.363-71.122Q73.601-71.294 73.869-71.378Q74.136-71.462 74.429-71.462Q74.910-71.462 75.326-71.272Q75.742-71.083 75.994-70.722Q76.246-70.360 76.246-69.876Q76.246-69.532 76.113-69.229Q75.980-68.927 75.755-68.667Q75.531-68.407 75.222-68.145Q74.914-67.884 74.703-67.708L73.894-67.052L75.605-67.052L75.605-67.196Q75.656-67.407 75.855-67.430L75.996-67.430Q76.195-67.411 76.246-67.196L76.246-66.731Q76.195-66.516 75.996-66.493L73.101-66.493Q72.906-66.513 72.855-66.731M78.796-66.415Q78.363-66.415 78.031-66.653Q77.699-66.891 77.478-67.280Q77.257-67.669 77.150-68.106Q77.042-68.544 77.042-68.942Q77.042-69.333 77.152-69.776Q77.261-70.220 77.478-70.600Q77.695-70.981 78.029-71.222Q78.363-71.462 78.796-71.462Q79.351-71.462 79.751-71.063Q80.152-70.665 80.349-70.079Q80.546-69.493 80.546-68.942Q80.546-68.388 80.349-67.800Q80.152-67.212 79.751-66.813Q79.351-66.415 78.796-66.415M78.796-66.973Q79.097-66.973 79.314-67.190Q79.531-67.407 79.658-67.735Q79.785-68.063 79.845-68.409Q79.906-68.755 79.906-69.036Q79.906-69.286 79.843-69.612Q79.781-69.938 79.650-70.229Q79.519-70.520 79.306-70.710Q79.093-70.899 78.796-70.899Q78.421-70.899 78.169-70.587Q77.917-70.274 77.800-69.841Q77.683-69.407 77.683-69.036Q77.683-68.638 77.796-68.157Q77.910-67.677 78.158-67.325Q78.406-66.973 78.796-66.973M83.042-66.415Q82.609-66.415 82.277-66.653Q81.945-66.891 81.724-67.280Q81.503-67.669 81.396-68.106Q81.289-68.544 81.289-68.942Q81.289-69.333 81.398-69.776Q81.507-70.220 81.724-70.600Q81.941-70.981 82.275-71.222Q82.609-71.462 83.042-71.462Q83.597-71.462 83.998-71.063Q84.398-70.665 84.595-70.079Q84.792-69.493 84.792-68.942Q84.792-68.388 84.595-67.800Q84.398-67.212 83.998-66.813Q83.597-66.415 83.042-66.415M83.042-66.973Q83.343-66.973 83.560-67.190Q83.777-67.407 83.904-67.735Q84.031-68.063 84.091-68.409Q84.152-68.755 84.152-69.036Q84.152-69.286 84.089-69.612Q84.027-69.938 83.896-70.229Q83.765-70.520 83.552-70.710Q83.339-70.899 83.042-70.899Q82.667-70.899 82.416-70.587Q82.164-70.274 82.046-69.841Q81.929-69.407 81.929-69.036Q81.929-68.638 82.042-68.157Q82.156-67.677 82.404-67.325Q82.652-66.973 83.042-66.973\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M89.843-67.606Q89.843-68.052 90.257-68.309Q90.671-68.567 91.212-68.667Q91.753-68.766 92.261-68.774Q92.261-68.989 92.126-69.141Q91.992-69.294 91.785-69.370Q91.578-69.446 91.367-69.446Q91.023-69.446 90.863-69.423L90.863-69.364Q90.863-69.196 90.744-69.081Q90.624-68.966 90.460-68.966Q90.285-68.966 90.169-69.089Q90.054-69.212 90.054-69.380Q90.054-69.786 90.435-69.895Q90.816-70.005 91.374-70.005Q91.644-70.005 91.912-69.927Q92.179-69.848 92.404-69.698Q92.628-69.548 92.765-69.327Q92.902-69.106 92.902-68.829L92.902-67.110Q92.902-67.052 93.429-67.052Q93.624-67.032 93.675-66.821L93.675-66.731Q93.624-66.516 93.429-66.493L93.285-66.493Q92.941-66.493 92.712-66.540Q92.484-66.587 92.339-66.774Q91.878-66.454 91.171-66.454Q90.835-66.454 90.531-66.595Q90.226-66.735 90.035-66.997Q89.843-67.259 89.843-67.606M90.484-67.598Q90.484-67.325 90.726-67.169Q90.968-67.013 91.253-67.013Q91.472-67.013 91.705-67.071Q91.937-67.130 92.099-67.268Q92.261-67.407 92.261-67.630L92.261-68.220Q91.980-68.220 91.564-68.163Q91.148-68.106 90.816-67.968Q90.484-67.829 90.484-67.598M94.882-67.598L94.882-69.380L94.132-69.380Q93.933-69.403 93.882-69.622L93.882-69.708Q93.933-69.919 94.132-69.942L94.882-69.942L94.882-70.692Q94.933-70.899 95.132-70.927L95.277-70.927Q95.472-70.899 95.523-70.692L95.523-69.942L96.882-69.942Q97.074-69.923 97.132-69.708L97.132-69.622Q97.078-69.403 96.882-69.380L95.523-69.380L95.523-67.630Q95.523-67.013 96.097-67.013Q96.347-67.013 96.511-67.198Q96.675-67.384 96.675-67.630Q96.675-67.723 96.748-67.794Q96.820-67.864 96.921-67.876L97.066-67.876Q97.265-67.852 97.316-67.645L97.316-67.598Q97.316-67.274 97.132-67.011Q96.949-66.747 96.656-66.600Q96.363-66.454 96.042-66.454Q95.531-66.454 95.207-66.764Q94.882-67.075 94.882-67.598\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(54.748 143.82)\">\u003Cpath d=\"M102.411-66.731L102.411-66.821Q102.469-67.028 102.661-67.052L103.372-67.052L103.372-69.380L102.661-69.380Q102.465-69.403 102.411-69.622L102.411-69.708Q102.469-69.919 102.661-69.942L103.762-69.942Q103.961-69.923 104.012-69.708L104.012-69.380Q104.274-69.665 104.629-69.823Q104.985-69.981 105.372-69.981Q105.665-69.981 105.899-69.847Q106.133-69.712 106.133-69.446Q106.133-69.278 106.024-69.161Q105.915-69.044 105.747-69.044Q105.594-69.044 105.479-69.155Q105.364-69.266 105.364-69.423Q104.989-69.423 104.674-69.222Q104.360-69.020 104.186-68.686Q104.012-68.352 104.012-67.973L104.012-67.052L104.958-67.052Q105.165-67.028 105.204-66.821L105.204-66.731Q105.165-66.516 104.958-66.493L102.661-66.493Q102.469-66.516 102.411-66.731M109.946-67.981L107.504-67.981Q107.559-67.704 107.756-67.481Q107.954-67.259 108.231-67.136Q108.508-67.013 108.793-67.013Q109.266-67.013 109.489-67.302Q109.497-67.313 109.553-67.419Q109.610-67.524 109.659-67.567Q109.708-67.610 109.801-67.622L109.946-67.622Q110.137-67.602 110.196-67.388L110.196-67.333Q110.129-67.032 109.899-66.835Q109.668-66.638 109.356-66.546Q109.043-66.454 108.739-66.454Q108.254-66.454 107.815-66.682Q107.376-66.911 107.108-67.311Q106.840-67.712 106.840-68.204L106.840-68.263Q106.840-68.731 107.086-69.134Q107.333-69.536 107.741-69.770Q108.149-70.005 108.618-70.005Q109.122-70.005 109.475-69.782Q109.829-69.559 110.012-69.171Q110.196-68.782 110.196-68.278L110.196-68.220Q110.137-68.005 109.946-67.981M107.512-68.532L109.540-68.532Q109.493-68.942 109.254-69.194Q109.016-69.446 108.618-69.446Q108.223-69.446 107.917-69.184Q107.610-68.923 107.512-68.532M111.266-66.692L111.266-67.606Q111.293-67.813 111.504-67.837L111.672-67.837Q111.836-67.813 111.895-67.653Q112.098-67.013 112.825-67.013Q113.032-67.013 113.260-67.048Q113.489-67.083 113.657-67.198Q113.825-67.313 113.825-67.516Q113.825-67.727 113.602-67.841Q113.379-67.954 113.106-67.997L112.407-68.110Q111.266-68.321 111.266-69.044Q111.266-69.333 111.411-69.522Q111.555-69.712 111.795-69.819Q112.036-69.927 112.292-69.966Q112.547-70.005 112.825-70.005Q113.075-70.005 113.268-69.975Q113.461-69.946 113.626-69.868Q113.704-69.985 113.833-70.005L113.911-70.005Q114.008-69.993 114.071-69.930Q114.133-69.868 114.145-69.774L114.145-69.067Q114.133-68.973 114.071-68.907Q114.008-68.841 113.911-68.829L113.743-68.829Q113.649-68.841 113.583-68.907Q113.516-68.973 113.504-69.067Q113.504-69.446 112.809-69.446Q112.461-69.446 112.143-69.364Q111.825-69.282 111.825-69.036Q111.825-68.770 112.497-68.661L113.200-68.540Q113.684-68.458 114.034-68.210Q114.383-67.962 114.383-67.516Q114.383-67.126 114.147-66.884Q113.911-66.641 113.561-66.548Q113.211-66.454 112.825-66.454Q112.247-66.454 111.848-66.708Q111.778-66.583 111.729-66.526Q111.680-66.470 111.575-66.454L111.504-66.454Q111.290-66.477 111.266-66.692M118.438-67.981L115.997-67.981Q116.051-67.704 116.249-67.481Q116.446-67.259 116.723-67.136Q117.001-67.013 117.286-67.013Q117.758-67.013 117.981-67.302Q117.989-67.313 118.045-67.419Q118.102-67.524 118.151-67.567Q118.200-67.610 118.293-67.622L118.438-67.622Q118.629-67.602 118.688-67.388L118.688-67.333Q118.622-67.032 118.391-66.835Q118.161-66.638 117.848-66.546Q117.536-66.454 117.231-66.454Q116.747-66.454 116.307-66.682Q115.868-66.911 115.600-67.311Q115.333-67.712 115.333-68.204L115.333-68.263Q115.333-68.731 115.579-69.134Q115.825-69.536 116.233-69.770Q116.641-70.005 117.110-70.005Q117.614-70.005 117.967-69.782Q118.321-69.559 118.504-69.171Q118.688-68.782 118.688-68.278L118.688-68.220Q118.629-68.005 118.438-67.981M116.004-68.532L118.032-68.532Q117.985-68.942 117.747-69.194Q117.508-69.446 117.110-69.446Q116.715-69.446 116.409-69.184Q116.102-68.923 116.004-68.532M120.372-67.598L120.372-69.380L119.622-69.380Q119.422-69.403 119.372-69.622L119.372-69.708Q119.422-69.919 119.622-69.942L120.372-69.942L120.372-70.692Q120.422-70.899 120.622-70.927L120.766-70.927Q120.961-70.899 121.012-70.692L121.012-69.942L122.372-69.942Q122.563-69.923 122.622-69.708L122.622-69.622Q122.567-69.403 122.372-69.380L121.012-69.380L121.012-67.630Q121.012-67.013 121.586-67.013Q121.836-67.013 122.001-67.198Q122.165-67.384 122.165-67.630Q122.165-67.723 122.237-67.794Q122.309-67.864 122.411-67.876L122.555-67.876Q122.754-67.852 122.805-67.645L122.805-67.598Q122.805-67.274 122.622-67.011Q122.438-66.747 122.145-66.600Q121.852-66.454 121.532-66.454Q121.020-66.454 120.696-66.764Q120.372-67.075 120.372-67.598\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M-48.29 75.771V55.01\"\u002F>\u003Cpath stroke=\"none\" d=\"m-48.29 53.009-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"rotate(-90 63.883 58.105)\">\u003Cpath d=\"M26.272-66.692L26.272-67.606Q26.299-67.813 26.510-67.837L26.678-67.837Q26.842-67.813 26.901-67.653Q27.104-67.013 27.831-67.013Q28.038-67.013 28.266-67.048Q28.495-67.083 28.663-67.198Q28.831-67.313 28.831-67.516Q28.831-67.727 28.608-67.841Q28.385-67.954 28.112-67.997L27.413-68.110Q26.272-68.321 26.272-69.044Q26.272-69.333 26.416-69.522Q26.561-69.712 26.801-69.819Q27.041-69.927 27.297-69.966Q27.553-70.005 27.831-70.005Q28.081-70.005 28.274-69.975Q28.467-69.946 28.631-69.868Q28.709-69.985 28.838-70.005L28.916-70.005Q29.014-69.993 29.077-69.930Q29.139-69.868 29.151-69.774L29.151-69.067Q29.139-68.973 29.077-68.907Q29.014-68.841 28.916-68.829L28.748-68.829Q28.655-68.841 28.588-68.907Q28.522-68.973 28.510-69.067Q28.510-69.446 27.815-69.446Q27.467-69.446 27.149-69.364Q26.831-69.282 26.831-69.036Q26.831-68.770 27.502-68.661L28.206-68.540Q28.690-68.458 29.040-68.210Q29.389-67.962 29.389-67.516Q29.389-67.126 29.153-66.884Q28.916-66.641 28.567-66.548Q28.217-66.454 27.831-66.454Q27.252-66.454 26.854-66.708Q26.784-66.583 26.735-66.526Q26.686-66.470 26.581-66.454L26.510-66.454Q26.295-66.477 26.272-66.692M31.131-67.598L31.131-69.380L30.381-69.380Q30.182-69.403 30.131-69.622L30.131-69.708Q30.182-69.919 30.381-69.942L31.131-69.942L31.131-70.692Q31.182-70.899 31.381-70.927L31.526-70.927Q31.721-70.899 31.772-70.692L31.772-69.942L33.131-69.942Q33.323-69.923 33.381-69.708L33.381-69.622Q33.327-69.403 33.131-69.380L31.772-69.380L31.772-67.630Q31.772-67.013 32.346-67.013Q32.596-67.013 32.760-67.198Q32.924-67.384 32.924-67.630Q32.924-67.723 32.997-67.794Q33.069-67.864 33.170-67.876L33.315-67.876Q33.514-67.852 33.565-67.645L33.565-67.598Q33.565-67.274 33.381-67.011Q33.198-66.747 32.905-66.600Q32.612-66.454 32.291-66.454Q31.780-66.454 31.456-66.764Q31.131-67.075 31.131-67.598M34.584-67.606Q34.584-68.052 34.998-68.309Q35.413-68.567 35.954-68.667Q36.495-68.766 37.002-68.774Q37.002-68.989 36.868-69.141Q36.733-69.294 36.526-69.370Q36.319-69.446 36.108-69.446Q35.764-69.446 35.604-69.423L35.604-69.364Q35.604-69.196 35.485-69.081Q35.366-68.966 35.202-68.966Q35.026-68.966 34.911-69.089Q34.795-69.212 34.795-69.380Q34.795-69.786 35.176-69.895Q35.557-70.005 36.116-70.005Q36.385-70.005 36.653-69.927Q36.920-69.848 37.145-69.698Q37.370-69.548 37.506-69.327Q37.643-69.106 37.643-68.829L37.643-67.110Q37.643-67.052 38.170-67.052Q38.366-67.032 38.416-66.821L38.416-66.731Q38.366-66.516 38.170-66.493L38.026-66.493Q37.682-66.493 37.454-66.540Q37.225-66.587 37.081-66.774Q36.620-66.454 35.913-66.454Q35.577-66.454 35.272-66.595Q34.967-66.735 34.776-66.997Q34.584-67.259 34.584-67.606M35.225-67.598Q35.225-67.325 35.467-67.169Q35.709-67.013 35.995-67.013Q36.213-67.013 36.446-67.071Q36.678-67.130 36.840-67.268Q37.002-67.407 37.002-67.630L37.002-68.220Q36.721-68.220 36.305-68.163Q35.889-68.106 35.557-67.968Q35.225-67.829 35.225-67.598M38.983-68.220Q38.983-68.700 39.227-69.114Q39.471-69.528 39.887-69.766Q40.303-70.005 40.784-70.005Q41.338-70.005 41.717-69.895Q42.096-69.786 42.096-69.380Q42.096-69.212 41.983-69.089Q41.870-68.966 41.698-68.966Q41.526-68.966 41.407-69.081Q41.288-69.196 41.288-69.364L41.288-69.423Q41.127-69.446 40.791-69.446Q40.463-69.446 40.196-69.276Q39.928-69.106 39.776-68.823Q39.623-68.540 39.623-68.220Q39.623-67.899 39.795-67.618Q39.967-67.337 40.252-67.175Q40.538-67.013 40.866-67.013Q41.178-67.013 41.305-67.116Q41.432-67.220 41.549-67.409Q41.666-67.598 41.784-67.614L41.952-67.614Q42.057-67.602 42.122-67.534Q42.186-67.466 42.186-67.364Q42.186-67.317 42.166-67.278Q42.057-66.985 41.854-66.805Q41.651-66.626 41.375-66.540Q41.100-66.454 40.784-66.454Q40.299-66.454 39.883-66.692Q39.467-66.930 39.225-67.333Q38.983-67.735 38.983-68.220M42.815-66.731L42.815-66.821Q42.866-67.028 43.061-67.052L43.526-67.052L43.526-70.821L43.061-70.821Q42.866-70.845 42.815-71.059L42.815-71.149Q42.866-71.356 43.061-71.380L43.807-71.380Q44.002-71.360 44.053-71.149L44.053-68.325L45.198-69.380L44.901-69.380Q44.694-69.403 44.655-69.622L44.655-69.708Q44.694-69.919 44.901-69.942L46.350-69.942Q46.553-69.919 46.600-69.708L46.600-69.622Q46.557-69.403 46.350-69.380L45.983-69.380L45.038-68.516L46.190-67.052L46.526-67.052Q46.733-67.028 46.776-66.821L46.776-66.731Q46.733-66.516 46.526-66.493L45.358-66.493Q45.163-66.516 45.112-66.731L45.112-66.821Q45.163-67.028 45.358-67.052L45.518-67.052L44.655-68.157L44.053-67.606L44.053-67.052L44.518-67.052Q44.709-67.028 44.768-66.821L44.768-66.731Q44.709-66.516 44.518-66.493L43.061-66.493Q42.866-66.516 42.815-66.731\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"rotate(-90 63.883 58.105)\">\u003Cpath d=\"M51.425-65.845Q51.425-66.145 51.574-66.407Q51.722-66.669 51.972-66.829Q51.789-67.083 51.789-67.403Q51.789-67.688 51.941-67.950Q51.691-68.274 51.691-68.692Q51.691-69.052 51.882-69.348Q52.074-69.645 52.392-69.813Q52.710-69.981 53.074-69.981Q53.281-69.981 53.484-69.921Q53.687-69.860 53.851-69.759Q54.234-70.020 54.707-70.020Q54.945-70.020 55.126-69.889Q55.308-69.759 55.308-69.532Q55.308-69.384 55.207-69.278Q55.105-69.173 54.949-69.173Q54.816-69.173 54.720-69.251Q54.624-69.329 54.593-69.454Q54.449-69.446 54.249-69.356Q54.453-69.044 54.453-68.692Q54.453-68.411 54.341-68.179Q54.230-67.946 54.035-67.768Q53.839-67.591 53.587-67.493Q53.335-67.395 53.074-67.395Q52.687-67.395 52.355-67.583Q52.343-67.583 52.333-67.511Q52.324-67.438 52.324-67.403Q52.324-67.282 52.390-67.175Q52.457-67.067 52.578-67.028Q52.593-67.032 52.607-67.034Q52.621-67.036 52.644-67.036Q52.660-67.036 52.691-67.028Q52.722-67.020 52.730-67.020L53.324-67.020Q54.105-67.020 54.646-66.778Q55.187-66.536 55.187-65.845Q55.187-65.544 55.007-65.317Q54.828-65.091 54.531-64.946Q54.234-64.802 53.914-64.735Q53.593-64.669 53.308-64.669Q52.917-64.669 52.476-64.792Q52.035-64.915 51.730-65.182Q51.425-65.450 51.425-65.845M51.964-65.852Q51.964-65.634 52.205-65.493Q52.445-65.352 52.769-65.286Q53.093-65.220 53.308-65.220Q53.523-65.220 53.847-65.286Q54.171-65.352 54.412-65.493Q54.652-65.634 54.652-65.852Q54.652-66.141 54.427-66.280Q54.203-66.419 53.921-66.452Q53.640-66.485 53.292-66.485L52.675-66.485Q52.492-66.485 52.330-66.405Q52.167-66.325 52.066-66.179Q51.964-66.032 51.964-65.852M53.074-67.950Q53.374-67.950 53.593-68.169Q53.812-68.388 53.812-68.692Q53.812-68.848 53.757-68.979Q53.703-69.110 53.597-69.216Q53.492-69.321 53.361-69.376Q53.230-69.430 53.074-69.430Q52.769-69.430 52.550-69.212Q52.332-68.993 52.332-68.692Q52.332-68.395 52.554-68.173Q52.777-67.950 53.074-67.950M55.656-66.731L55.656-66.821Q55.714-67.028 55.906-67.052L56.617-67.052L56.617-69.380L55.906-69.380Q55.710-69.403 55.656-69.622L55.656-69.708Q55.714-69.919 55.906-69.942L57.007-69.942Q57.207-69.923 57.257-69.708L57.257-69.380Q57.519-69.665 57.874-69.823Q58.230-69.981 58.617-69.981Q58.910-69.981 59.144-69.847Q59.378-69.712 59.378-69.446Q59.378-69.278 59.269-69.161Q59.160-69.044 58.992-69.044Q58.839-69.044 58.724-69.155Q58.609-69.266 58.609-69.423Q58.234-69.423 57.919-69.222Q57.605-69.020 57.431-68.686Q57.257-68.352 57.257-67.973L57.257-67.052L58.203-67.052Q58.410-67.028 58.449-66.821L58.449-66.731Q58.410-66.516 58.203-66.493L55.906-66.493Q55.714-66.516 55.656-66.731M61.800-66.454Q61.328-66.454 60.943-66.698Q60.558-66.942 60.335-67.352Q60.113-67.763 60.113-68.220Q60.113-68.563 60.238-68.886Q60.363-69.208 60.593-69.462Q60.824-69.716 61.130-69.860Q61.437-70.005 61.800-70.005Q62.164-70.005 62.476-69.858Q62.789-69.712 63.011-69.466Q63.234-69.220 63.361-68.899Q63.488-68.579 63.488-68.220Q63.488-67.763 63.263-67.350Q63.039-66.938 62.654-66.696Q62.269-66.454 61.800-66.454M61.800-67.013Q62.265-67.013 62.556-67.407Q62.847-67.802 62.847-68.286Q62.847-68.579 62.712-68.847Q62.578-69.114 62.337-69.280Q62.097-69.446 61.800-69.446Q61.496-69.446 61.257-69.280Q61.019-69.114 60.884-68.847Q60.749-68.579 60.749-68.286Q60.749-67.805 61.042-67.409Q61.335-67.013 61.800-67.013M64.933-66.716L64.468-69.380L64.308-69.380Q64.101-69.403 64.062-69.622L64.062-69.708Q64.101-69.919 64.308-69.942L65.476-69.942Q65.687-69.919 65.726-69.708L65.726-69.622Q65.687-69.403 65.476-69.380L65.003-69.380Q65.117-68.735 65.195-68.290Q65.273-67.845 65.324-67.526Q65.374-67.208 65.374-67.134Q65.382-67.305 65.667-68.302Q65.707-68.415 65.804-68.489Q65.902-68.563 66.023-68.563L66.101-68.563Q66.222-68.563 66.320-68.489Q66.417-68.415 66.453-68.302Q66.562-67.919 66.644-67.595Q66.726-67.270 66.726-67.134Q66.738-67.423 67.085-69.380L66.613-69.380Q66.406-69.403 66.367-69.622L66.367-69.708Q66.406-69.919 66.613-69.942L67.789-69.942Q67.980-69.919 68.039-69.708L68.039-69.622Q67.984-69.403 67.789-69.380L67.621-69.380L67.156-66.716Q67.132-66.598 67.044-66.526Q66.957-66.454 66.835-66.454L66.695-66.454Q66.574-66.454 66.478-66.526Q66.382-66.598 66.339-66.716Q66.292-66.895 66.220-67.151Q66.148-67.407 66.105-67.616Q66.062-67.825 66.062-67.927Q66.054-67.645 65.773-66.716Q65.746-66.606 65.648-66.530Q65.550-66.454 65.429-66.454L65.253-66.454Q65.132-66.454 65.044-66.526Q64.957-66.598 64.933-66.716M68.757-66.692L68.757-67.606Q68.785-67.813 68.996-67.837L69.164-67.837Q69.328-67.813 69.386-67.653Q69.589-67.013 70.316-67.013Q70.523-67.013 70.751-67.048Q70.980-67.083 71.148-67.198Q71.316-67.313 71.316-67.516Q71.316-67.727 71.093-67.841Q70.871-67.954 70.597-67.997L69.898-68.110Q68.757-68.321 68.757-69.044Q68.757-69.333 68.902-69.522Q69.046-69.712 69.287-69.819Q69.527-69.927 69.783-69.966Q70.039-70.005 70.316-70.005Q70.566-70.005 70.759-69.975Q70.953-69.946 71.117-69.868Q71.195-69.985 71.324-70.005L71.402-70.005Q71.499-69.993 71.562-69.930Q71.624-69.868 71.636-69.774L71.636-69.067Q71.624-68.973 71.562-68.907Q71.499-68.841 71.402-68.829L71.234-68.829Q71.140-68.841 71.074-68.907Q71.007-68.973 70.996-69.067Q70.996-69.446 70.300-69.446Q69.953-69.446 69.634-69.364Q69.316-69.282 69.316-69.036Q69.316-68.770 69.988-68.661L70.691-68.540Q71.175-68.458 71.525-68.210Q71.874-67.962 71.874-67.516Q71.874-67.126 71.638-66.884Q71.402-66.641 71.052-66.548Q70.703-66.454 70.316-66.454Q69.738-66.454 69.339-66.708Q69.269-66.583 69.220-66.526Q69.171-66.470 69.066-66.454L68.996-66.454Q68.781-66.477 68.757-66.692\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The memory image at reset. Code occupies 0x000-0x057, the four array quads follow at 0x058-0x077, and the stack region is empty with rsp initialized to 0x200. The one cell the program will write is 0x1f8: call pushes the return address 0x027 there, and ret pops it back.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:594.064px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 445.548 315.319\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403-54.222h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 -23.352)\">\u003Cpath d=\"M-56.308-43.146Q-56.308-43.626-56.064-44.040Q-55.820-44.454-55.404-44.692Q-54.988-44.931-54.508-44.931Q-53.953-44.931-53.574-44.821Q-53.195-44.712-53.195-44.306Q-53.195-44.138-53.308-44.015Q-53.422-43.892-53.594-43.892Q-53.765-43.892-53.885-44.007Q-54.004-44.122-54.004-44.290L-54.004-44.349Q-54.164-44.372-54.500-44.372Q-54.828-44.372-55.096-44.202Q-55.363-44.032-55.515-43.749Q-55.668-43.466-55.668-43.146Q-55.668-42.825-55.496-42.544Q-55.324-42.263-55.039-42.101Q-54.754-41.939-54.426-41.939Q-54.113-41.939-53.986-42.042Q-53.859-42.146-53.742-42.335Q-53.625-42.524-53.508-42.540L-53.340-42.540Q-53.234-42.528-53.170-42.460Q-53.105-42.392-53.105-42.290Q-53.105-42.243-53.125-42.204Q-53.234-41.911-53.437-41.731Q-53.640-41.552-53.916-41.466Q-54.191-41.380-54.508-41.380Q-54.992-41.380-55.408-41.618Q-55.824-41.856-56.066-42.259Q-56.308-42.661-56.308-43.146M-52.277-40.298Q-52.277-40.407-52.226-40.499Q-52.176-40.591-52.084-40.642Q-51.992-40.692-51.887-40.692Q-51.777-40.692-51.685-40.642Q-51.594-40.591-51.543-40.499Q-51.492-40.407-51.492-40.298L-51.637-40.298Q-51.637-40.161-51.613-40.161Q-51.355-40.161-51.168-40.353Q-50.980-40.544-50.894-40.810L-50.683-41.419L-51.820-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-50.988-44.868Q-50.793-44.845-50.742-44.634L-50.742-44.548Q-50.793-44.329-50.988-44.306L-51.254-44.306Q-50.918-43.458-50.674-42.804Q-50.429-42.149-50.429-42.060L-50.422-42.060Q-50.422-42.118-50.330-42.411Q-50.238-42.704-50.045-43.288Q-49.851-43.872-49.711-44.306L-49.988-44.306Q-50.199-44.329-50.238-44.548L-50.238-44.634Q-50.187-44.849-49.988-44.868L-48.836-44.868Q-48.629-44.845-48.590-44.634L-48.590-44.548Q-48.629-44.329-48.836-44.306L-49.156-44.306L-50.332-40.810Q-50.500-40.310-50.826-39.956Q-51.152-39.603-51.613-39.603Q-51.887-39.603-52.082-39.814Q-52.277-40.024-52.277-40.298M-47.816-43.146Q-47.816-43.626-47.572-44.040Q-47.328-44.454-46.912-44.692Q-46.496-44.931-46.015-44.931Q-45.461-44.931-45.082-44.821Q-44.703-44.712-44.703-44.306Q-44.703-44.138-44.816-44.015Q-44.929-43.892-45.101-43.892Q-45.273-43.892-45.392-44.007Q-45.512-44.122-45.512-44.290L-45.512-44.349Q-45.672-44.372-46.008-44.372Q-46.336-44.372-46.603-44.202Q-46.871-44.032-47.023-43.749Q-47.176-43.466-47.176-43.146Q-47.176-42.825-47.004-42.544Q-46.832-42.263-46.547-42.101Q-46.262-41.939-45.933-41.939Q-45.621-41.939-45.494-42.042Q-45.367-42.146-45.250-42.335Q-45.133-42.524-45.015-42.540L-44.847-42.540Q-44.742-42.528-44.678-42.460Q-44.613-42.392-44.613-42.290Q-44.613-42.243-44.633-42.204Q-44.742-41.911-44.945-41.731Q-45.148-41.552-45.424-41.466Q-45.699-41.380-46.015-41.380Q-46.500-41.380-46.916-41.618Q-47.332-41.856-47.574-42.259Q-47.816-42.661-47.816-43.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 -21.74)\">\u003Cpath d=\"M-56.683-41.657L-56.683-41.747Q-56.644-41.954-56.433-41.978L-56.125-41.978L-56.125-45.747L-56.433-45.747Q-56.644-45.771-56.683-45.985L-56.683-46.075Q-56.644-46.282-56.433-46.306L-54.484-46.306Q-54.086-46.306-53.740-46.105Q-53.394-45.903-53.187-45.558Q-52.980-45.212-52.980-44.810Q-52.980-44.403-53.185-44.060Q-53.390-43.716-53.736-43.511Q-54.082-43.306-54.484-43.306L-55.484-43.306L-55.484-41.978L-55.172-41.978Q-54.961-41.954-54.922-41.747L-54.922-41.657Q-54.961-41.442-55.172-41.419L-56.433-41.419Q-56.644-41.442-56.683-41.657M-55.484-45.747L-55.484-43.868L-54.644-43.868Q-54.383-43.868-54.146-43.991Q-53.910-44.114-53.765-44.329Q-53.621-44.544-53.621-44.810Q-53.621-45.079-53.765-45.290Q-53.910-45.501-54.146-45.624Q-54.383-45.747-54.644-45.747L-55.484-45.747M-50.355-41.341Q-50.804-41.341-51.170-41.565Q-51.535-41.790-51.789-42.173Q-52.043-42.556-52.168-42.999Q-52.293-43.442-52.293-43.868Q-52.293-44.294-52.168-44.733Q-52.043-45.173-51.789-45.556Q-51.535-45.939-51.176-46.163Q-50.816-46.388-50.355-46.388Q-50.078-46.388-49.820-46.296Q-49.562-46.204-49.347-46.036L-49.215-46.274Q-49.187-46.325-49.133-46.356Q-49.078-46.388-49.019-46.388L-48.941-46.388Q-48.847-46.376-48.785-46.317Q-48.722-46.259-48.711-46.153L-48.711-44.825Q-48.722-44.724-48.785-44.661Q-48.847-44.599-48.941-44.587L-49.109-44.587Q-49.211-44.599-49.273-44.665Q-49.336-44.731-49.347-44.825Q-49.387-45.091-49.510-45.315Q-49.633-45.540-49.836-45.683Q-50.039-45.825-50.301-45.825Q-50.633-45.825-50.885-45.642Q-51.137-45.458-51.308-45.157Q-51.480-44.856-51.566-44.515Q-51.652-44.173-51.652-43.868Q-51.652-43.564-51.568-43.222Q-51.484-42.880-51.312-42.577Q-51.140-42.274-50.883-42.087Q-50.625-41.899-50.293-41.899Q-49.910-41.899-49.629-42.173Q-49.347-42.446-49.347-42.833Q-49.320-43.044-49.109-43.067L-48.941-43.067Q-48.711-43.028-48.711-42.802Q-48.711-42.485-48.847-42.214Q-48.984-41.942-49.219-41.745Q-49.453-41.548-49.744-41.444Q-50.035-41.341-50.355-41.341\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 -21.74)\">\u003Cpath d=\"M-56.250-41.657L-56.250-41.747Q-56.199-41.954-56.004-41.978L-54.965-41.978L-54.965-44.306L-55.937-44.306Q-56.137-44.329-56.187-44.548L-56.187-44.634Q-56.137-44.845-55.937-44.868L-54.570-44.868Q-54.375-44.849-54.324-44.634L-54.324-41.978L-53.410-41.978Q-53.215-41.954-53.164-41.747L-53.164-41.657Q-53.215-41.442-53.410-41.419L-56.004-41.419Q-56.199-41.442-56.250-41.657M-55.219-45.845L-55.219-45.899Q-55.219-46.071-55.082-46.192Q-54.945-46.314-54.769-46.314Q-54.597-46.314-54.461-46.192Q-54.324-46.071-54.324-45.899L-54.324-45.845Q-54.324-45.669-54.461-45.548Q-54.597-45.427-54.769-45.427Q-54.945-45.427-55.082-45.548Q-55.219-45.669-55.219-45.845M-52.551-41.657L-52.551-41.747Q-52.508-41.954-52.301-41.978L-51.879-41.978L-51.879-44.306L-52.301-44.306Q-52.508-44.329-52.551-44.548L-52.551-44.634Q-52.504-44.845-52.301-44.868L-51.484-44.868Q-51.289-44.845-51.238-44.634L-51.238-44.548L-51.246-44.524Q-51.019-44.704-50.746-44.806Q-50.472-44.907-50.179-44.907Q-49.832-44.907-49.594-44.767Q-49.355-44.626-49.240-44.368Q-49.125-44.110-49.125-43.755L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-50.094-41.419Q-50.289-41.442-50.340-41.657L-50.340-41.747Q-50.289-41.958-50.094-41.978L-49.765-41.978L-49.765-43.724Q-49.765-44.032-49.855-44.190Q-49.945-44.349-50.238-44.349Q-50.508-44.349-50.736-44.218Q-50.965-44.087-51.101-43.858Q-51.238-43.630-51.238-43.364L-51.238-41.978L-50.812-41.978Q-50.605-41.954-50.566-41.747L-50.566-41.657Q-50.605-41.442-50.812-41.419L-52.301-41.419Q-52.508-41.442-52.551-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-42.929-42.524L-42.929-44.306L-43.679-44.306Q-43.879-44.329-43.929-44.548L-43.929-44.634Q-43.879-44.845-43.679-44.868L-42.929-44.868L-42.929-45.618Q-42.879-45.825-42.679-45.853L-42.535-45.853Q-42.340-45.825-42.289-45.618L-42.289-44.868L-40.929-44.868Q-40.738-44.849-40.679-44.634L-40.679-44.548Q-40.734-44.329-40.929-44.306L-42.289-44.306L-42.289-42.556Q-42.289-41.939-41.715-41.939Q-41.465-41.939-41.301-42.124Q-41.137-42.310-41.137-42.556Q-41.137-42.649-41.064-42.720Q-40.992-42.790-40.890-42.802L-40.746-42.802Q-40.547-42.778-40.496-42.571L-40.496-42.524Q-40.496-42.200-40.679-41.937Q-40.863-41.673-41.156-41.526Q-41.449-41.380-41.769-41.380Q-42.281-41.380-42.605-41.690Q-42.929-42.001-42.929-42.524M-39.660-41.657L-39.660-41.747Q-39.601-41.954-39.410-41.978L-38.699-41.978L-38.699-44.306L-39.410-44.306Q-39.605-44.329-39.660-44.548L-39.660-44.634Q-39.601-44.845-39.410-44.868L-38.308-44.868Q-38.109-44.849-38.058-44.634L-38.058-44.306Q-37.797-44.591-37.441-44.749Q-37.086-44.907-36.699-44.907Q-36.406-44.907-36.172-44.773Q-35.937-44.638-35.937-44.372Q-35.937-44.204-36.047-44.087Q-36.156-43.970-36.324-43.970Q-36.476-43.970-36.592-44.081Q-36.707-44.192-36.707-44.349Q-37.082-44.349-37.396-44.148Q-37.711-43.946-37.885-43.612Q-38.058-43.278-38.058-42.899L-38.058-41.978L-37.113-41.978Q-36.906-41.954-36.867-41.747L-36.867-41.657Q-36.906-41.442-37.113-41.419L-39.410-41.419Q-39.601-41.442-39.660-41.657M-34.894-42.274L-34.894-44.306L-35.316-44.306Q-35.523-44.329-35.566-44.548L-35.566-44.634Q-35.519-44.845-35.316-44.868L-34.500-44.868Q-34.304-44.845-34.254-44.634L-34.254-42.306Q-34.254-42.071-34.084-42.005Q-33.914-41.939-33.629-41.939Q-33.422-41.939-33.226-42.015Q-33.031-42.091-32.906-42.241Q-32.781-42.392-32.781-42.603L-32.781-44.306L-33.203-44.306Q-33.414-44.329-33.453-44.548L-33.453-44.634Q-33.414-44.845-33.203-44.868L-32.390-44.868Q-32.191-44.845-32.140-44.634L-32.140-41.978L-31.715-41.978Q-31.508-41.954-31.469-41.747L-31.469-41.657Q-31.508-41.442-31.715-41.419L-32.531-41.419Q-32.730-41.442-32.781-41.642Q-33.183-41.380-33.691-41.380Q-33.926-41.380-34.140-41.421Q-34.355-41.462-34.521-41.564Q-34.687-41.665-34.791-41.843Q-34.894-42.021-34.894-42.274M-30.832-43.146Q-30.832-43.626-30.588-44.040Q-30.344-44.454-29.928-44.692Q-29.512-44.931-29.031-44.931Q-28.476-44.931-28.097-44.821Q-27.719-44.712-27.719-44.306Q-27.719-44.138-27.832-44.015Q-27.945-43.892-28.117-43.892Q-28.289-43.892-28.408-44.007Q-28.527-44.122-28.527-44.290L-28.527-44.349Q-28.687-44.372-29.023-44.372Q-29.351-44.372-29.619-44.202Q-29.887-44.032-30.039-43.749Q-30.191-43.466-30.191-43.146Q-30.191-42.825-30.019-42.544Q-29.847-42.263-29.562-42.101Q-29.277-41.939-28.949-41.939Q-28.637-41.939-28.510-42.042Q-28.383-42.146-28.265-42.335Q-28.148-42.524-28.031-42.540L-27.863-42.540Q-27.758-42.528-27.693-42.460Q-27.629-42.392-27.629-42.290Q-27.629-42.243-27.648-42.204Q-27.758-41.911-27.961-41.731Q-28.164-41.552-28.439-41.466Q-28.715-41.380-29.031-41.380Q-29.515-41.380-29.931-41.618Q-30.347-41.856-30.590-42.259Q-30.832-42.661-30.832-43.146M-25.945-42.524L-25.945-44.306L-26.695-44.306Q-26.894-44.329-26.945-44.548L-26.945-44.634Q-26.894-44.845-26.695-44.868L-25.945-44.868L-25.945-45.618Q-25.894-45.825-25.695-45.853L-25.551-45.853Q-25.355-45.825-25.304-45.618L-25.304-44.868L-23.945-44.868Q-23.754-44.849-23.695-44.634L-23.695-44.548Q-23.750-44.329-23.945-44.306L-25.304-44.306L-25.304-42.556Q-25.304-41.939-24.730-41.939Q-24.480-41.939-24.316-42.124Q-24.152-42.310-24.152-42.556Q-24.152-42.649-24.080-42.720Q-24.008-42.790-23.906-42.802L-23.762-42.802Q-23.562-42.778-23.512-42.571L-23.512-42.524Q-23.512-42.200-23.695-41.937Q-23.879-41.673-24.172-41.526Q-24.465-41.380-24.785-41.380Q-25.297-41.380-25.621-41.690Q-25.945-42.001-25.945-42.524M-22.281-41.657L-22.281-41.747Q-22.230-41.954-22.035-41.978L-20.996-41.978L-20.996-44.306L-21.969-44.306Q-22.168-44.329-22.219-44.548L-22.219-44.634Q-22.168-44.845-21.969-44.868L-20.601-44.868Q-20.406-44.849-20.355-44.634L-20.355-41.978L-19.441-41.978Q-19.246-41.954-19.195-41.747L-19.195-41.657Q-19.246-41.442-19.441-41.419L-22.035-41.419Q-22.230-41.442-22.281-41.657M-21.250-45.845L-21.250-45.899Q-21.250-46.071-21.113-46.192Q-20.976-46.314-20.801-46.314Q-20.629-46.314-20.492-46.192Q-20.355-46.071-20.355-45.899L-20.355-45.845Q-20.355-45.669-20.492-45.548Q-20.629-45.427-20.801-45.427Q-20.976-45.427-21.113-45.548Q-21.250-45.669-21.250-45.845M-16.531-41.380Q-17.004-41.380-17.388-41.624Q-17.773-41.868-17.996-42.278Q-18.219-42.689-18.219-43.146Q-18.219-43.489-18.094-43.812Q-17.969-44.134-17.738-44.388Q-17.508-44.642-17.201-44.786Q-16.894-44.931-16.531-44.931Q-16.168-44.931-15.855-44.784Q-15.543-44.638-15.320-44.392Q-15.097-44.146-14.971-43.825Q-14.844-43.505-14.844-43.146Q-14.844-42.689-15.068-42.276Q-15.293-41.864-15.678-41.622Q-16.062-41.380-16.531-41.380M-16.531-41.939Q-16.066-41.939-15.775-42.333Q-15.484-42.728-15.484-43.212Q-15.484-43.505-15.619-43.773Q-15.754-44.040-15.994-44.206Q-16.234-44.372-16.531-44.372Q-16.836-44.372-17.074-44.206Q-17.312-44.040-17.447-43.773Q-17.582-43.505-17.582-43.212Q-17.582-42.731-17.289-42.335Q-16.996-41.939-16.531-41.939M-14.336-41.657L-14.336-41.747Q-14.293-41.954-14.086-41.978L-13.664-41.978L-13.664-44.306L-14.086-44.306Q-14.293-44.329-14.336-44.548L-14.336-44.634Q-14.289-44.845-14.086-44.868L-13.269-44.868Q-13.074-44.845-13.023-44.634L-13.023-44.548L-13.031-44.524Q-12.804-44.704-12.531-44.806Q-12.258-44.907-11.965-44.907Q-11.617-44.907-11.379-44.767Q-11.140-44.626-11.025-44.368Q-10.910-44.110-10.910-43.755L-10.910-41.978L-10.484-41.978Q-10.277-41.954-10.238-41.747L-10.238-41.657Q-10.277-41.442-10.484-41.419L-11.879-41.419Q-12.074-41.442-12.125-41.657L-12.125-41.747Q-12.074-41.958-11.879-41.978L-11.551-41.978L-11.551-43.724Q-11.551-44.032-11.640-44.190Q-11.730-44.349-12.023-44.349Q-12.293-44.349-12.521-44.218Q-12.750-44.087-12.887-43.858Q-13.023-43.630-13.023-43.364L-13.023-41.978L-12.597-41.978Q-12.390-41.954-12.351-41.747L-12.351-41.657Q-12.390-41.442-12.597-41.419L-14.086-41.419Q-14.293-41.442-14.336-41.657\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 -22.63)\">\u003Cpath d=\"M-55.859-41.642L-56.324-44.306L-56.484-44.306Q-56.691-44.329-56.730-44.548L-56.730-44.634Q-56.691-44.845-56.484-44.868L-55.316-44.868Q-55.105-44.845-55.066-44.634L-55.066-44.548Q-55.105-44.329-55.316-44.306L-55.789-44.306Q-55.676-43.661-55.597-43.216Q-55.519-42.771-55.469-42.452Q-55.418-42.134-55.418-42.060Q-55.410-42.231-55.125-43.228Q-55.086-43.341-54.988-43.415Q-54.890-43.489-54.769-43.489L-54.691-43.489Q-54.570-43.489-54.472-43.415Q-54.375-43.341-54.340-43.228Q-54.230-42.845-54.148-42.521Q-54.066-42.196-54.066-42.060Q-54.054-42.349-53.707-44.306L-54.179-44.306Q-54.387-44.329-54.426-44.548L-54.426-44.634Q-54.387-44.845-54.179-44.868L-53.004-44.868Q-52.812-44.845-52.754-44.634L-52.754-44.548Q-52.808-44.329-53.004-44.306L-53.172-44.306L-53.637-41.642Q-53.660-41.524-53.748-41.452Q-53.836-41.380-53.957-41.380L-54.097-41.380Q-54.219-41.380-54.314-41.452Q-54.410-41.524-54.453-41.642Q-54.500-41.821-54.572-42.077Q-54.644-42.333-54.687-42.542Q-54.730-42.751-54.730-42.853Q-54.738-42.571-55.019-41.642Q-55.047-41.532-55.144-41.456Q-55.242-41.380-55.363-41.380L-55.539-41.380Q-55.660-41.380-55.748-41.452Q-55.836-41.524-55.859-41.642M-52.551-41.657L-52.551-41.747Q-52.508-41.954-52.301-41.978L-51.879-41.978L-51.879-45.747L-52.301-45.747Q-52.508-45.771-52.551-45.985L-52.551-46.075Q-52.508-46.282-52.301-46.306L-51.484-46.306Q-51.289-46.282-51.238-46.075L-51.238-44.524Q-50.777-44.907-50.179-44.907Q-49.832-44.907-49.594-44.767Q-49.355-44.626-49.240-44.368Q-49.125-44.110-49.125-43.755L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-50.094-41.419Q-50.289-41.442-50.340-41.657L-50.340-41.747Q-50.289-41.958-50.094-41.978L-49.765-41.978L-49.765-43.724Q-49.765-44.032-49.855-44.190Q-49.945-44.349-50.238-44.349Q-50.508-44.349-50.736-44.218Q-50.965-44.087-51.101-43.858Q-51.238-43.630-51.238-43.364L-51.238-41.978L-50.812-41.978Q-50.605-41.954-50.566-41.747L-50.566-41.657Q-50.605-41.442-50.812-41.419L-52.301-41.419Q-52.508-41.442-52.551-41.657M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-42.929-42.524L-42.929-44.306L-43.679-44.306Q-43.879-44.329-43.929-44.548L-43.929-44.634Q-43.879-44.845-43.679-44.868L-42.929-44.868L-42.929-45.618Q-42.879-45.825-42.679-45.853L-42.535-45.853Q-42.340-45.825-42.289-45.618L-42.289-44.868L-40.929-44.868Q-40.738-44.849-40.679-44.634L-40.679-44.548Q-40.734-44.329-40.929-44.306L-42.289-44.306L-42.289-42.556Q-42.289-41.939-41.715-41.939Q-41.465-41.939-41.301-42.124Q-41.137-42.310-41.137-42.556Q-41.137-42.649-41.064-42.720Q-40.992-42.790-40.890-42.802L-40.746-42.802Q-40.547-42.778-40.496-42.571L-40.496-42.524Q-40.496-42.200-40.679-41.937Q-40.863-41.673-41.156-41.526Q-41.449-41.380-41.769-41.380Q-42.281-41.380-42.605-41.690Q-42.929-42.001-42.929-42.524\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 -22.63)\">\u003Cpath d=\"M-35.547-41.657L-35.547-41.747Q-35.504-41.954-35.297-41.978L-34.875-41.978L-34.875-45.747L-35.297-45.747Q-35.504-45.771-35.547-45.985L-35.547-46.075Q-35.504-46.282-35.297-46.306L-34.480-46.306Q-34.285-46.282-34.234-46.075L-34.234-44.524Q-33.773-44.907-33.176-44.907Q-32.828-44.907-32.590-44.767Q-32.351-44.626-32.236-44.368Q-32.121-44.110-32.121-43.755L-32.121-41.978L-31.695-41.978Q-31.488-41.954-31.449-41.747L-31.449-41.657Q-31.488-41.442-31.695-41.419L-33.090-41.419Q-33.285-41.442-33.336-41.657L-33.336-41.747Q-33.285-41.958-33.090-41.978L-32.762-41.978L-32.762-43.724Q-32.762-44.032-32.851-44.190Q-32.941-44.349-33.234-44.349Q-33.504-44.349-33.732-44.218Q-33.961-44.087-34.097-43.858Q-34.234-43.630-34.234-43.364L-34.234-41.978L-33.808-41.978Q-33.601-41.954-33.562-41.747L-33.562-41.657Q-33.601-41.442-33.808-41.419L-35.297-41.419Q-35.504-41.442-35.547-41.657M-30.965-42.532Q-30.965-42.978-30.551-43.235Q-30.137-43.493-29.596-43.593Q-29.054-43.692-28.547-43.700Q-28.547-43.915-28.681-44.067Q-28.816-44.220-29.023-44.296Q-29.230-44.372-29.441-44.372Q-29.785-44.372-29.945-44.349L-29.945-44.290Q-29.945-44.122-30.064-44.007Q-30.183-43.892-30.347-43.892Q-30.523-43.892-30.638-44.015Q-30.754-44.138-30.754-44.306Q-30.754-44.712-30.373-44.821Q-29.992-44.931-29.433-44.931Q-29.164-44.931-28.896-44.853Q-28.629-44.774-28.404-44.624Q-28.179-44.474-28.043-44.253Q-27.906-44.032-27.906-43.755L-27.906-42.036Q-27.906-41.978-27.379-41.978Q-27.183-41.958-27.133-41.747L-27.133-41.657Q-27.183-41.442-27.379-41.419L-27.523-41.419Q-27.867-41.419-28.096-41.466Q-28.324-41.513-28.469-41.700Q-28.929-41.380-29.637-41.380Q-29.972-41.380-30.277-41.521Q-30.582-41.661-30.773-41.923Q-30.965-42.185-30.965-42.532M-30.324-42.524Q-30.324-42.251-30.082-42.095Q-29.840-41.939-29.554-41.939Q-29.336-41.939-29.103-41.997Q-28.871-42.056-28.709-42.194Q-28.547-42.333-28.547-42.556L-28.547-43.146Q-28.828-43.146-29.244-43.089Q-29.660-43.032-29.992-42.894Q-30.324-42.755-30.324-42.524M-27.054-39.876L-27.054-39.962Q-27.012-40.181-26.804-40.204L-26.383-40.204L-26.383-44.306L-26.804-44.306Q-27.012-44.329-27.054-44.548L-27.054-44.634Q-27.008-44.845-26.804-44.868L-25.988-44.868Q-25.793-44.849-25.742-44.634L-25.742-44.564Q-25.531-44.731-25.267-44.819Q-25.004-44.907-24.734-44.907Q-24.394-44.907-24.097-44.763Q-23.801-44.618-23.586-44.366Q-23.371-44.114-23.256-43.802Q-23.140-43.489-23.140-43.146Q-23.140-42.681-23.367-42.271Q-23.594-41.860-23.980-41.620Q-24.367-41.380-24.836-41.380Q-25.355-41.380-25.742-41.747L-25.742-40.204L-25.316-40.204Q-25.109-40.181-25.070-39.962L-25.070-39.876Q-25.109-39.665-25.316-39.642L-26.804-39.642Q-27.008-39.665-27.054-39.876M-24.879-41.939Q-24.570-41.939-24.320-42.108Q-24.070-42.278-23.926-42.560Q-23.781-42.841-23.781-43.146Q-23.781-43.435-23.906-43.714Q-24.031-43.993-24.263-44.171Q-24.496-44.349-24.797-44.349Q-25.117-44.349-25.379-44.163Q-25.640-43.978-25.742-43.677L-25.742-42.825Q-25.652-42.458-25.431-42.198Q-25.211-41.939-24.879-41.939M-22.808-39.876L-22.808-39.962Q-22.765-40.181-22.558-40.204L-22.137-40.204L-22.137-44.306L-22.558-44.306Q-22.765-44.329-22.808-44.548L-22.808-44.634Q-22.762-44.845-22.558-44.868L-21.742-44.868Q-21.547-44.849-21.496-44.634L-21.496-44.564Q-21.285-44.731-21.021-44.819Q-20.758-44.907-20.488-44.907Q-20.148-44.907-19.851-44.763Q-19.554-44.618-19.340-44.366Q-19.125-44.114-19.010-43.802Q-18.894-43.489-18.894-43.146Q-18.894-42.681-19.121-42.271Q-19.347-41.860-19.734-41.620Q-20.121-41.380-20.590-41.380Q-21.109-41.380-21.496-41.747L-21.496-40.204L-21.070-40.204Q-20.863-40.181-20.824-39.962L-20.824-39.876Q-20.863-39.665-21.070-39.642L-22.558-39.642Q-22.762-39.665-22.808-39.876M-20.633-41.939Q-20.324-41.939-20.074-42.108Q-19.824-42.278-19.679-42.560Q-19.535-42.841-19.535-43.146Q-19.535-43.435-19.660-43.714Q-19.785-43.993-20.017-44.171Q-20.250-44.349-20.551-44.349Q-20.871-44.349-21.133-44.163Q-21.394-43.978-21.496-43.677L-21.496-42.825Q-21.406-42.458-21.185-42.198Q-20.965-41.939-20.633-41.939M-15.121-42.907L-17.562-42.907Q-17.508-42.630-17.310-42.407Q-17.113-42.185-16.836-42.062Q-16.558-41.939-16.273-41.939Q-15.801-41.939-15.578-42.228Q-15.570-42.239-15.513-42.345Q-15.457-42.450-15.408-42.493Q-15.359-42.536-15.265-42.548L-15.121-42.548Q-14.929-42.528-14.871-42.314L-14.871-42.259Q-14.937-41.958-15.168-41.761Q-15.398-41.564-15.711-41.472Q-16.023-41.380-16.328-41.380Q-16.812-41.380-17.252-41.608Q-17.691-41.837-17.959-42.237Q-18.226-42.638-18.226-43.130L-18.226-43.189Q-18.226-43.657-17.980-44.060Q-17.734-44.462-17.326-44.696Q-16.918-44.931-16.449-44.931Q-15.945-44.931-15.592-44.708Q-15.238-44.485-15.054-44.097Q-14.871-43.708-14.871-43.204L-14.871-43.146Q-14.929-42.931-15.121-42.907M-17.554-43.458L-15.527-43.458Q-15.574-43.868-15.812-44.120Q-16.051-44.372-16.449-44.372Q-16.844-44.372-17.150-44.110Q-17.457-43.849-17.554-43.458M-14.316-41.657L-14.316-41.747Q-14.273-41.954-14.066-41.978L-13.644-41.978L-13.644-44.306L-14.066-44.306Q-14.273-44.329-14.316-44.548L-14.316-44.634Q-14.269-44.845-14.066-44.868L-13.250-44.868Q-13.054-44.845-13.004-44.634L-13.004-44.548L-13.012-44.524Q-12.785-44.704-12.512-44.806Q-12.238-44.907-11.945-44.907Q-11.597-44.907-11.359-44.767Q-11.121-44.626-11.006-44.368Q-10.890-44.110-10.890-43.755L-10.890-41.978L-10.465-41.978Q-10.258-41.954-10.219-41.747L-10.219-41.657Q-10.258-41.442-10.465-41.419L-11.859-41.419Q-12.054-41.442-12.105-41.657L-12.105-41.747Q-12.054-41.958-11.859-41.978L-11.531-41.978L-11.531-43.724Q-11.531-44.032-11.621-44.190Q-11.711-44.349-12.004-44.349Q-12.273-44.349-12.502-44.218Q-12.730-44.087-12.867-43.858Q-13.004-43.630-13.004-43.364L-13.004-41.978L-12.578-41.978Q-12.371-41.954-12.332-41.747L-12.332-41.657Q-12.371-41.442-12.578-41.419L-14.066-41.419Q-14.273-41.442-14.316-41.657M-9.554-41.618L-9.554-42.532Q-9.527-42.739-9.316-42.763L-9.148-42.763Q-8.984-42.739-8.926-42.579Q-8.722-41.939-7.996-41.939Q-7.789-41.939-7.560-41.974Q-7.332-42.009-7.164-42.124Q-6.996-42.239-6.996-42.442Q-6.996-42.653-7.219-42.767Q-7.441-42.880-7.715-42.923L-8.414-43.036Q-9.554-43.247-9.554-43.970Q-9.554-44.259-9.410-44.448Q-9.265-44.638-9.025-44.745Q-8.785-44.853-8.529-44.892Q-8.273-44.931-7.996-44.931Q-7.746-44.931-7.553-44.901Q-7.359-44.872-7.195-44.794Q-7.117-44.911-6.988-44.931L-6.910-44.931Q-6.812-44.919-6.750-44.856Q-6.687-44.794-6.676-44.700L-6.676-43.993Q-6.687-43.899-6.750-43.833Q-6.812-43.767-6.910-43.755L-7.078-43.755Q-7.172-43.767-7.238-43.833Q-7.304-43.899-7.316-43.993Q-7.316-44.372-8.012-44.372Q-8.359-44.372-8.678-44.290Q-8.996-44.208-8.996-43.962Q-8.996-43.696-8.324-43.587L-7.621-43.466Q-7.137-43.384-6.787-43.136Q-6.437-42.888-6.437-42.442Q-6.437-42.052-6.674-41.810Q-6.910-41.567-7.260-41.474Q-7.609-41.380-7.996-41.380Q-8.574-41.380-8.972-41.634Q-9.043-41.509-9.092-41.452Q-9.140-41.396-9.246-41.380L-9.316-41.380Q-9.531-41.403-9.554-41.618\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 -21.74)\">\u003Cpath d=\"M-56.281-41.618L-56.281-42.532Q-56.254-42.739-56.043-42.763L-55.875-42.763Q-55.711-42.739-55.652-42.579Q-55.449-41.939-54.722-41.939Q-54.515-41.939-54.287-41.974Q-54.058-42.009-53.890-42.124Q-53.722-42.239-53.722-42.442Q-53.722-42.653-53.945-42.767Q-54.168-42.880-54.441-42.923L-55.140-43.036Q-56.281-43.247-56.281-43.970Q-56.281-44.259-56.137-44.448Q-55.992-44.638-55.752-44.745Q-55.512-44.853-55.256-44.892Q-55-44.931-54.722-44.931Q-54.472-44.931-54.279-44.901Q-54.086-44.872-53.922-44.794Q-53.844-44.911-53.715-44.931L-53.637-44.931Q-53.539-44.919-53.476-44.856Q-53.414-44.794-53.402-44.700L-53.402-43.993Q-53.414-43.899-53.476-43.833Q-53.539-43.767-53.637-43.755L-53.804-43.755Q-53.898-43.767-53.965-43.833Q-54.031-43.899-54.043-43.993Q-54.043-44.372-54.738-44.372Q-55.086-44.372-55.404-44.290Q-55.722-44.208-55.722-43.962Q-55.722-43.696-55.051-43.587L-54.347-43.466Q-53.863-43.384-53.513-43.136Q-53.164-42.888-53.164-42.442Q-53.164-42.052-53.400-41.810Q-53.637-41.567-53.986-41.474Q-54.336-41.380-54.722-41.380Q-55.301-41.380-55.699-41.634Q-55.769-41.509-55.818-41.452Q-55.867-41.396-55.972-41.380L-56.043-41.380Q-56.258-41.403-56.281-41.618M-51.422-42.524L-51.422-44.306L-52.172-44.306Q-52.371-44.329-52.422-44.548L-52.422-44.634Q-52.371-44.845-52.172-44.868L-51.422-44.868L-51.422-45.618Q-51.371-45.825-51.172-45.853L-51.027-45.853Q-50.832-45.825-50.781-45.618L-50.781-44.868L-49.422-44.868Q-49.230-44.849-49.172-44.634L-49.172-44.548Q-49.226-44.329-49.422-44.306L-50.781-44.306L-50.781-42.556Q-50.781-41.939-50.207-41.939Q-49.957-41.939-49.793-42.124Q-49.629-42.310-49.629-42.556Q-49.629-42.649-49.556-42.720Q-49.484-42.790-49.383-42.802L-49.238-42.802Q-49.039-42.778-48.988-42.571L-48.988-42.524Q-48.988-42.200-49.172-41.937Q-49.355-41.673-49.648-41.526Q-49.941-41.380-50.262-41.380Q-50.773-41.380-51.097-41.690Q-51.422-42.001-51.422-42.524M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-42.929-42.524L-42.929-44.306L-43.679-44.306Q-43.879-44.329-43.929-44.548L-43.929-44.634Q-43.879-44.845-43.679-44.868L-42.929-44.868L-42.929-45.618Q-42.879-45.825-42.679-45.853L-42.535-45.853Q-42.340-45.825-42.289-45.618L-42.289-44.868L-40.929-44.868Q-40.738-44.849-40.679-44.634L-40.679-44.548Q-40.734-44.329-40.929-44.306L-42.289-44.306L-42.289-42.556Q-42.289-41.939-41.715-41.939Q-41.465-41.939-41.301-42.124Q-41.137-42.310-41.137-42.556Q-41.137-42.649-41.064-42.720Q-40.992-42.790-40.890-42.802L-40.746-42.802Q-40.547-42.778-40.496-42.571L-40.496-42.524Q-40.496-42.200-40.679-41.937Q-40.863-41.673-41.156-41.526Q-41.449-41.380-41.769-41.380Q-42.281-41.380-42.605-41.690Q-42.929-42.001-42.929-42.524M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 -21.74)\">\u003Cpath d=\"M-30.808-43.146Q-30.808-43.626-30.564-44.040Q-30.320-44.454-29.904-44.692Q-29.488-44.931-29.008-44.931Q-28.453-44.931-28.074-44.821Q-27.695-44.712-27.695-44.306Q-27.695-44.138-27.808-44.015Q-27.922-43.892-28.094-43.892Q-28.265-43.892-28.385-44.007Q-28.504-44.122-28.504-44.290L-28.504-44.349Q-28.664-44.372-29-44.372Q-29.328-44.372-29.596-44.202Q-29.863-44.032-30.015-43.749Q-30.168-43.466-30.168-43.146Q-30.168-42.825-29.996-42.544Q-29.824-42.263-29.539-42.101Q-29.254-41.939-28.926-41.939Q-28.613-41.939-28.486-42.042Q-28.359-42.146-28.242-42.335Q-28.125-42.524-28.008-42.540L-27.840-42.540Q-27.734-42.528-27.670-42.460Q-27.605-42.392-27.605-42.290Q-27.605-42.243-27.625-42.204Q-27.734-41.911-27.937-41.731Q-28.140-41.552-28.416-41.466Q-28.691-41.380-29.008-41.380Q-29.492-41.380-29.908-41.618Q-30.324-41.856-30.566-42.259Q-30.808-42.661-30.808-43.146M-26.672-41.657L-26.672-41.747Q-26.621-41.954-26.426-41.978L-25.320-41.978L-25.320-45.747L-26.426-45.747Q-26.621-45.771-26.672-45.985L-26.672-46.075Q-26.621-46.282-26.426-46.306L-24.930-46.306Q-24.738-46.282-24.680-46.075L-24.680-41.978L-23.578-41.978Q-23.379-41.954-23.328-41.747L-23.328-41.657Q-23.379-41.442-23.578-41.419L-26.426-41.419Q-26.621-41.442-26.672-41.657M-20.754-41.380Q-21.226-41.380-21.611-41.624Q-21.996-41.868-22.219-42.278Q-22.441-42.689-22.441-43.146Q-22.441-43.489-22.316-43.812Q-22.191-44.134-21.961-44.388Q-21.730-44.642-21.424-44.786Q-21.117-44.931-20.754-44.931Q-20.390-44.931-20.078-44.784Q-19.765-44.638-19.543-44.392Q-19.320-44.146-19.193-43.825Q-19.066-43.505-19.066-43.146Q-19.066-42.689-19.291-42.276Q-19.515-41.864-19.900-41.622Q-20.285-41.380-20.754-41.380M-20.754-41.939Q-20.289-41.939-19.998-42.333Q-19.707-42.728-19.707-43.212Q-19.707-43.505-19.842-43.773Q-19.976-44.040-20.217-44.206Q-20.457-44.372-20.754-44.372Q-21.058-44.372-21.297-44.206Q-21.535-44.040-21.670-43.773Q-21.805-43.505-21.805-43.212Q-21.805-42.731-21.512-42.335Q-21.219-41.939-20.754-41.939M-18.070-43.146Q-18.070-43.626-17.826-44.040Q-17.582-44.454-17.166-44.692Q-16.750-44.931-16.269-44.931Q-15.715-44.931-15.336-44.821Q-14.957-44.712-14.957-44.306Q-14.957-44.138-15.070-44.015Q-15.183-43.892-15.355-43.892Q-15.527-43.892-15.646-44.007Q-15.765-44.122-15.765-44.290L-15.765-44.349Q-15.926-44.372-16.262-44.372Q-16.590-44.372-16.857-44.202Q-17.125-44.032-17.277-43.749Q-17.430-43.466-17.430-43.146Q-17.430-42.825-17.258-42.544Q-17.086-42.263-16.801-42.101Q-16.515-41.939-16.187-41.939Q-15.875-41.939-15.748-42.042Q-15.621-42.146-15.504-42.335Q-15.387-42.524-15.269-42.540L-15.101-42.540Q-14.996-42.528-14.931-42.460Q-14.867-42.392-14.867-42.290Q-14.867-42.243-14.887-42.204Q-14.996-41.911-15.199-41.731Q-15.402-41.552-15.678-41.466Q-15.953-41.380-16.269-41.380Q-16.754-41.380-17.170-41.618Q-17.586-41.856-17.828-42.259Q-18.070-42.661-18.070-43.146M-14.238-41.657L-14.238-41.747Q-14.187-41.954-13.992-41.978L-13.527-41.978L-13.527-45.747L-13.992-45.747Q-14.187-45.771-14.238-45.985L-14.238-46.075Q-14.187-46.282-13.992-46.306L-13.246-46.306Q-13.051-46.286-13-46.075L-13-43.251L-11.855-44.306L-12.152-44.306Q-12.359-44.329-12.398-44.548L-12.398-44.634Q-12.359-44.845-12.152-44.868L-10.703-44.868Q-10.500-44.845-10.453-44.634L-10.453-44.548Q-10.496-44.329-10.703-44.306L-11.070-44.306L-12.015-43.442L-10.863-41.978L-10.527-41.978Q-10.320-41.954-10.277-41.747L-10.277-41.657Q-10.320-41.442-10.527-41.419L-11.695-41.419Q-11.890-41.442-11.941-41.657L-11.941-41.747Q-11.890-41.954-11.695-41.978L-11.535-41.978L-12.398-43.083L-13-42.532L-13-41.978L-12.535-41.978Q-12.344-41.954-12.285-41.747L-12.285-41.657Q-12.344-41.442-12.535-41.419L-13.992-41.419Q-14.187-41.442-14.238-41.657M-6.625-42.907L-9.066-42.907Q-9.012-42.630-8.814-42.407Q-8.617-42.185-8.340-42.062Q-8.062-41.939-7.777-41.939Q-7.305-41.939-7.082-42.228Q-7.074-42.239-7.017-42.345Q-6.961-42.450-6.912-42.493Q-6.863-42.536-6.769-42.548L-6.625-42.548Q-6.433-42.528-6.375-42.314L-6.375-42.259Q-6.441-41.958-6.672-41.761Q-6.902-41.564-7.215-41.472Q-7.527-41.380-7.832-41.380Q-8.316-41.380-8.756-41.608Q-9.195-41.837-9.463-42.237Q-9.730-42.638-9.730-43.130L-9.730-43.189Q-9.730-43.657-9.484-44.060Q-9.238-44.462-8.830-44.696Q-8.422-44.931-7.953-44.931Q-7.449-44.931-7.096-44.708Q-6.742-44.485-6.558-44.097Q-6.375-43.708-6.375-43.204L-6.375-43.146Q-6.433-42.931-6.625-42.907M-9.058-43.458L-7.031-43.458Q-7.078-43.868-7.316-44.120Q-7.555-44.372-7.953-44.372Q-8.347-44.372-8.654-44.110Q-8.961-43.849-9.058-43.458M-4.027-41.380Q-4.492-41.380-4.857-41.630Q-5.222-41.880-5.428-42.284Q-5.633-42.689-5.633-43.146Q-5.633-43.489-5.508-43.810Q-5.383-44.130-5.150-44.380Q-4.918-44.630-4.613-44.769Q-4.308-44.907-3.953-44.907Q-3.441-44.907-3.035-44.587L-3.035-45.747L-3.457-45.747Q-3.668-45.771-3.707-45.985L-3.707-46.075Q-3.668-46.282-3.457-46.306L-2.644-46.306Q-2.445-46.282-2.394-46.075L-2.394-41.978L-1.969-41.978Q-1.762-41.954-1.722-41.747L-1.722-41.657Q-1.762-41.442-1.969-41.419L-2.785-41.419Q-2.984-41.442-3.035-41.657L-3.035-41.786Q-3.230-41.595-3.492-41.487Q-3.754-41.380-4.027-41.380M-3.988-41.939Q-3.629-41.939-3.377-42.208Q-3.125-42.478-3.035-42.853L-3.035-43.685Q-3.094-43.872-3.221-44.023Q-3.347-44.173-3.525-44.261Q-3.703-44.349-3.898-44.349Q-4.207-44.349-4.457-44.179Q-4.707-44.009-4.851-43.724Q-4.996-43.439-4.996-43.138Q-4.996-42.689-4.711-42.314Q-4.426-41.939-3.988-41.939\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 -21.74)\">\u003Cpath d=\"M3.250-41.657L3.250-41.747Q3.301-41.954 3.496-41.978L4.535-41.978L4.535-44.306L3.563-44.306Q3.363-44.329 3.313-44.548L3.313-44.634Q3.363-44.845 3.563-44.868L4.930-44.868Q5.125-44.849 5.176-44.634L5.176-41.978L6.090-41.978Q6.285-41.954 6.336-41.747L6.336-41.657Q6.285-41.442 6.090-41.419L3.496-41.419Q3.301-41.442 3.250-41.657M4.281-45.845L4.281-45.899Q4.281-46.071 4.418-46.192Q4.555-46.314 4.731-46.314Q4.903-46.314 5.039-46.192Q5.176-46.071 5.176-45.899L5.176-45.845Q5.176-45.669 5.039-45.548Q4.903-45.427 4.731-45.427Q4.555-45.427 4.418-45.548Q4.281-45.669 4.281-45.845M6.949-41.657L6.949-41.747Q6.992-41.954 7.199-41.978L7.621-41.978L7.621-44.306L7.199-44.306Q6.992-44.329 6.949-44.548L6.949-44.634Q6.996-44.845 7.199-44.868L8.016-44.868Q8.211-44.845 8.262-44.634L8.262-44.548L8.254-44.524Q8.481-44.704 8.754-44.806Q9.028-44.907 9.320-44.907Q9.668-44.907 9.906-44.767Q10.145-44.626 10.260-44.368Q10.375-44.110 10.375-43.755L10.375-41.978L10.801-41.978Q11.008-41.954 11.047-41.747L11.047-41.657Q11.008-41.442 10.801-41.419L9.406-41.419Q9.211-41.442 9.160-41.657L9.160-41.747Q9.211-41.958 9.406-41.978L9.735-41.978L9.735-43.724Q9.735-44.032 9.645-44.190Q9.555-44.349 9.262-44.349Q8.992-44.349 8.764-44.218Q8.535-44.087 8.399-43.858Q8.262-43.630 8.262-43.364L8.262-41.978L8.688-41.978Q8.895-41.954 8.934-41.747L8.934-41.657Q8.895-41.442 8.688-41.419L7.199-41.419Q6.992-41.442 6.949-41.657\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg transform=\"translate(-2.157 2.444)\">\u003Cpath d=\"M-56.012-41.657L-56.012-41.747Q-55.961-41.954-55.762-41.978L-54.945-41.978L-54.945-45.161Q-55.324-44.853-55.777-44.853Q-56.008-44.853-56.058-45.083L-56.058-45.173Q-56.008-45.388-55.812-45.411Q-55.484-45.411-55.230-45.649Q-54.976-45.888-54.836-46.235Q-54.765-46.364-54.609-46.388L-54.554-46.388Q-54.359-46.368-54.308-46.153L-54.308-41.978L-53.492-41.978Q-53.293-41.954-53.242-41.747L-53.242-41.657Q-53.293-41.442-53.492-41.419L-55.762-41.419Q-55.961-41.442-56.012-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 2.444)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-42.008-41.341Q-42.441-41.341-42.773-41.579Q-43.105-41.817-43.326-42.206Q-43.547-42.595-43.654-43.032Q-43.762-43.470-43.762-43.868Q-43.762-44.259-43.652-44.702Q-43.543-45.146-43.326-45.526Q-43.109-45.907-42.775-46.148Q-42.441-46.388-42.008-46.388Q-41.453-46.388-41.053-45.989Q-40.652-45.591-40.455-45.005Q-40.258-44.419-40.258-43.868Q-40.258-43.314-40.455-42.726Q-40.652-42.138-41.053-41.739Q-41.453-41.341-42.008-41.341M-42.008-41.899Q-41.707-41.899-41.490-42.116Q-41.273-42.333-41.146-42.661Q-41.019-42.989-40.959-43.335Q-40.898-43.681-40.898-43.962Q-40.898-44.212-40.961-44.538Q-41.023-44.864-41.154-45.155Q-41.285-45.446-41.498-45.636Q-41.711-45.825-42.008-45.825Q-42.383-45.825-42.635-45.513Q-42.887-45.200-43.004-44.767Q-43.121-44.333-43.121-43.962Q-43.121-43.564-43.008-43.083Q-42.894-42.603-42.646-42.251Q-42.398-41.899-42.008-41.899M-37.762-41.341Q-38.195-41.341-38.527-41.579Q-38.859-41.817-39.080-42.206Q-39.301-42.595-39.408-43.032Q-39.515-43.470-39.515-43.868Q-39.515-44.259-39.406-44.702Q-39.297-45.146-39.080-45.526Q-38.863-45.907-38.529-46.148Q-38.195-46.388-37.762-46.388Q-37.207-46.388-36.806-45.989Q-36.406-45.591-36.209-45.005Q-36.012-44.419-36.012-43.868Q-36.012-43.314-36.209-42.726Q-36.406-42.138-36.806-41.739Q-37.207-41.341-37.762-41.341M-37.762-41.899Q-37.461-41.899-37.244-42.116Q-37.027-42.333-36.900-42.661Q-36.773-42.989-36.713-43.335Q-36.652-43.681-36.652-43.962Q-36.652-44.212-36.715-44.538Q-36.777-44.864-36.908-45.155Q-37.039-45.446-37.252-45.636Q-37.465-45.825-37.762-45.825Q-38.137-45.825-38.388-45.513Q-38.640-45.200-38.758-44.767Q-38.875-44.333-38.875-43.962Q-38.875-43.564-38.762-43.083Q-38.648-42.603-38.400-42.251Q-38.152-41.899-37.762-41.899\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 1.889)\">\u003Cpath d=\"M-56.250-41.657L-56.250-41.747Q-56.199-41.954-56.004-41.978L-54.965-41.978L-54.965-44.306L-55.937-44.306Q-56.137-44.329-56.187-44.548L-56.187-44.634Q-56.137-44.845-55.937-44.868L-54.570-44.868Q-54.375-44.849-54.324-44.634L-54.324-41.978L-53.410-41.978Q-53.215-41.954-53.164-41.747L-53.164-41.657Q-53.215-41.442-53.410-41.419L-56.004-41.419Q-56.199-41.442-56.250-41.657M-55.219-45.845L-55.219-45.899Q-55.219-46.071-55.082-46.192Q-54.945-46.314-54.769-46.314Q-54.597-46.314-54.461-46.192Q-54.324-46.071-54.324-45.899L-54.324-45.845Q-54.324-45.669-54.461-45.548Q-54.597-45.427-54.769-45.427Q-54.945-45.427-55.082-45.548Q-55.219-45.669-55.219-45.845M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-48.429-41.657L-48.429-41.747Q-48.379-41.958-48.183-41.978L-47.984-41.978L-47.984-44.306L-48.183-44.306Q-48.390-44.329-48.429-44.548L-48.429-44.634Q-48.379-44.849-48.183-44.868L-47.703-44.868Q-47.512-44.845-47.453-44.634Q-47.133-44.907-46.719-44.907Q-46.527-44.907-46.359-44.798Q-46.191-44.689-46.117-44.517Q-45.941-44.708-45.719-44.808Q-45.496-44.907-45.254-44.907Q-44.836-44.907-44.681-44.565Q-44.527-44.224-44.527-43.755L-44.527-41.978L-44.328-41.978Q-44.117-41.954-44.078-41.747L-44.078-41.657Q-44.129-41.442-44.328-41.419L-45.144-41.419Q-45.340-41.442-45.390-41.657L-45.390-41.747Q-45.340-41.954-45.144-41.978L-45.054-41.978L-45.054-43.724Q-45.054-44.349-45.304-44.349Q-45.637-44.349-45.814-44.038Q-45.992-43.728-45.992-43.364L-45.992-41.978L-45.789-41.978Q-45.582-41.954-45.543-41.747L-45.543-41.657Q-45.594-41.442-45.789-41.419L-46.605-41.419Q-46.804-41.442-46.855-41.657L-46.855-41.747Q-46.804-41.954-46.605-41.978L-46.519-41.978L-46.519-43.724Q-46.519-44.349-46.765-44.349Q-47.097-44.349-47.275-44.036Q-47.453-43.724-47.453-43.364L-47.453-41.978L-47.254-41.978Q-47.047-41.954-47.008-41.747L-47.008-41.657Q-47.058-41.439-47.254-41.419L-48.183-41.419Q-48.390-41.442-48.429-41.657M-42.008-41.380Q-42.480-41.380-42.865-41.624Q-43.250-41.868-43.472-42.278Q-43.695-42.689-43.695-43.146Q-43.695-43.489-43.570-43.812Q-43.445-44.134-43.215-44.388Q-42.984-44.642-42.678-44.786Q-42.371-44.931-42.008-44.931Q-41.644-44.931-41.332-44.784Q-41.019-44.638-40.797-44.392Q-40.574-44.146-40.447-43.825Q-40.320-43.505-40.320-43.146Q-40.320-42.689-40.545-42.276Q-40.769-41.864-41.154-41.622Q-41.539-41.380-42.008-41.380M-42.008-41.939Q-41.543-41.939-41.252-42.333Q-40.961-42.728-40.961-43.212Q-40.961-43.505-41.096-43.773Q-41.230-44.040-41.471-44.206Q-41.711-44.372-42.008-44.372Q-42.312-44.372-42.551-44.206Q-42.789-44.040-42.924-43.773Q-43.058-43.505-43.058-43.212Q-43.058-42.731-42.765-42.335Q-42.472-41.939-42.008-41.939M-38.226-41.642L-39.113-44.306L-39.433-44.306Q-39.633-44.329-39.683-44.548L-39.683-44.634Q-39.633-44.845-39.433-44.868L-38.273-44.868Q-38.078-44.849-38.027-44.634L-38.027-44.548Q-38.078-44.329-38.273-44.306L-38.554-44.306L-37.762-41.931L-36.972-44.306L-37.250-44.306Q-37.449-44.329-37.500-44.548L-37.500-44.634Q-37.449-44.845-37.250-44.868L-36.090-44.868Q-35.894-44.845-35.844-44.634L-35.844-44.548Q-35.894-44.329-36.090-44.306L-36.410-44.306L-37.297-41.642Q-37.340-41.528-37.441-41.454Q-37.543-41.380-37.668-41.380L-37.859-41.380Q-37.976-41.380-38.080-41.452Q-38.183-41.524-38.226-41.642M-33.324-39.876L-33.324-39.962Q-33.273-40.181-33.078-40.204L-32.613-40.204L-32.613-41.802Q-33.066-41.380-33.676-41.380Q-34.031-41.380-34.336-41.523Q-34.640-41.665-34.873-41.915Q-35.105-42.165-35.230-42.487Q-35.355-42.810-35.355-43.146Q-35.355-43.630-35.117-44.030Q-34.879-44.431-34.472-44.669Q-34.066-44.907-33.590-44.907Q-33.027-44.907-32.613-44.517L-32.613-44.677Q-32.562-44.888-32.363-44.907L-32.222-44.907Q-32.023-44.884-31.972-44.677L-31.972-40.204L-31.508-40.204Q-31.312-40.181-31.262-39.962L-31.262-39.876Q-31.312-39.665-31.508-39.642L-33.078-39.642Q-33.273-39.665-33.324-39.876M-33.629-41.939Q-33.258-41.939-32.982-42.192Q-32.707-42.446-32.613-42.810L-32.613-43.427Q-32.656-43.665-32.779-43.878Q-32.902-44.091-33.099-44.220Q-33.297-44.349-33.539-44.349Q-33.855-44.349-34.127-44.183Q-34.398-44.017-34.556-43.735Q-34.715-43.454-34.715-43.138Q-34.715-42.673-34.400-42.306Q-34.086-41.939-33.629-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 1.889)\">\u003Cpath d=\"M-25.277-40.985L-25.277-41.396Q-25.879-41.462-26.262-41.831Q-26.644-42.200-26.644-42.794Q-26.644-42.970-26.527-43.091Q-26.410-43.212-26.238-43.212Q-26.160-43.212-26.080-43.181Q-26-43.149-25.949-43.099Q-25.898-43.048-25.867-42.968Q-25.836-42.888-25.836-42.810Q-25.836-42.610-25.965-42.517Q-25.898-42.290-25.715-42.151Q-25.531-42.013-25.277-41.962L-25.277-43.692Q-25.855-43.814-26.250-44.140Q-26.644-44.466-26.644-45.013Q-26.644-45.532-26.232-45.894Q-25.820-46.255-25.277-46.329L-25.277-46.739Q-25.226-46.946-25.027-46.970L-24.965-46.970Q-24.769-46.950-24.719-46.739L-24.719-46.329Q-24.340-46.294-24.029-46.136Q-23.719-45.978-23.533-45.696Q-23.347-45.415-23.347-45.028Q-23.347-44.856-23.461-44.733Q-23.574-44.610-23.750-44.610Q-23.918-44.610-24.037-44.726Q-24.156-44.841-24.156-45.013Q-24.156-45.189-24.039-45.306Q-24.113-45.505-24.297-45.618Q-24.480-45.731-24.719-45.763L-24.719-44.228Q-24.351-44.153-24.035-43.968Q-23.719-43.782-23.533-43.491Q-23.347-43.200-23.347-42.810Q-23.347-42.532-23.457-42.294Q-23.566-42.056-23.765-41.862Q-23.965-41.669-24.215-41.554Q-24.465-41.439-24.719-41.403L-24.719-40.985Q-24.769-40.778-24.965-40.755L-25.027-40.755Q-25.226-40.774-25.277-40.985M-24.719-43.579L-24.719-41.970Q-24.406-42.040-24.174-42.257Q-23.941-42.474-23.941-42.771Q-23.941-42.978-24.049-43.142Q-24.156-43.306-24.334-43.417Q-24.512-43.528-24.719-43.579M-26.055-45.052Q-26.055-44.774-25.824-44.597Q-25.594-44.419-25.277-44.349L-25.277-45.763Q-25.574-45.708-25.814-45.519Q-26.055-45.329-26.055-45.052M-20.750-41.341Q-21.183-41.341-21.515-41.579Q-21.847-41.817-22.068-42.206Q-22.289-42.595-22.396-43.032Q-22.504-43.470-22.504-43.868Q-22.504-44.259-22.394-44.702Q-22.285-45.146-22.068-45.526Q-21.851-45.907-21.517-46.148Q-21.183-46.388-20.750-46.388Q-20.195-46.388-19.795-45.989Q-19.394-45.591-19.197-45.005Q-19-44.419-19-43.868Q-19-43.314-19.197-42.726Q-19.394-42.138-19.795-41.739Q-20.195-41.341-20.750-41.341M-20.750-41.899Q-20.449-41.899-20.232-42.116Q-20.015-42.333-19.888-42.661Q-19.762-42.989-19.701-43.335Q-19.640-43.681-19.640-43.962Q-19.640-44.212-19.703-44.538Q-19.765-44.864-19.896-45.155Q-20.027-45.446-20.240-45.636Q-20.453-45.825-20.750-45.825Q-21.125-45.825-21.377-45.513Q-21.629-45.200-21.746-44.767Q-21.863-44.333-21.863-43.962Q-21.863-43.564-21.750-43.083Q-21.637-42.603-21.388-42.251Q-21.140-41.899-20.750-41.899M-18.367-41.657L-18.367-41.747Q-18.328-41.954-18.121-41.978L-17.715-41.978L-16.785-43.196L-17.656-44.306L-18.074-44.306Q-18.269-44.325-18.320-44.548L-18.320-44.634Q-18.269-44.845-18.074-44.868L-16.914-44.868Q-16.715-44.845-16.664-44.634L-16.664-44.548Q-16.715-44.329-16.914-44.306L-17.023-44.306L-16.527-43.649L-16.051-44.306L-16.168-44.306Q-16.367-44.329-16.418-44.548L-16.418-44.634Q-16.367-44.845-16.168-44.868L-15.008-44.868Q-14.812-44.849-14.762-44.634L-14.762-44.548Q-14.812-44.329-15.008-44.306L-15.418-44.306L-16.265-43.196L-15.305-41.978L-14.898-41.978Q-14.699-41.954-14.648-41.747L-14.648-41.657Q-14.687-41.442-14.898-41.419L-16.051-41.419Q-16.258-41.442-16.297-41.657L-16.297-41.747Q-16.258-41.954-16.051-41.978L-15.922-41.978L-16.527-42.833L-17.113-41.978L-16.969-41.978Q-16.762-41.954-16.722-41.747L-16.722-41.657Q-16.762-41.442-16.969-41.419L-18.121-41.419Q-18.316-41.439-18.367-41.657M-13.953-41.657L-13.953-41.731Q-13.922-41.899-13.820-41.946L-12.531-43.013Q-12.199-43.290-12.017-43.442Q-11.836-43.595-11.640-43.815Q-11.445-44.036-11.324-44.286Q-11.203-44.536-11.203-44.802Q-11.203-45.126-11.379-45.360Q-11.555-45.595-11.834-45.710Q-12.113-45.825-12.433-45.825Q-12.691-45.825-12.920-45.702Q-13.148-45.579-13.250-45.364Q-13.148-45.231-13.148-45.083Q-13.148-44.923-13.267-44.800Q-13.387-44.677-13.547-44.677Q-13.722-44.677-13.838-44.802Q-13.953-44.927-13.953-45.099Q-13.953-45.392-13.818-45.634Q-13.683-45.876-13.445-46.048Q-13.207-46.220-12.939-46.304Q-12.672-46.388-12.379-46.388Q-11.898-46.388-11.482-46.198Q-11.066-46.009-10.814-45.648Q-10.562-45.286-10.562-44.802Q-10.562-44.458-10.695-44.155Q-10.828-43.853-11.053-43.593Q-11.277-43.333-11.586-43.071Q-11.894-42.810-12.105-42.634L-12.914-41.978L-11.203-41.978L-11.203-42.122Q-11.152-42.333-10.953-42.356L-10.812-42.356Q-10.613-42.337-10.562-42.122L-10.562-41.657Q-10.613-41.442-10.812-41.419L-13.707-41.419Q-13.902-41.439-13.953-41.657M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899M-3.765-41.341Q-4.199-41.341-4.531-41.579Q-4.863-41.817-5.084-42.206Q-5.305-42.595-5.412-43.032Q-5.519-43.470-5.519-43.868Q-5.519-44.259-5.410-44.702Q-5.301-45.146-5.084-45.526Q-4.867-45.907-4.533-46.148Q-4.199-46.388-3.765-46.388Q-3.211-46.388-2.810-45.989Q-2.410-45.591-2.213-45.005Q-2.015-44.419-2.015-43.868Q-2.015-43.314-2.213-42.726Q-2.410-42.138-2.810-41.739Q-3.211-41.341-3.765-41.341M-3.765-41.899Q-3.465-41.899-3.248-42.116Q-3.031-42.333-2.904-42.661Q-2.777-42.989-2.717-43.335Q-2.656-43.681-2.656-43.962Q-2.656-44.212-2.719-44.538Q-2.781-44.864-2.912-45.155Q-3.043-45.446-3.256-45.636Q-3.469-45.825-3.765-45.825Q-4.140-45.825-4.392-45.513Q-4.644-45.200-4.762-44.767Q-4.879-44.333-4.879-43.962Q-4.879-43.564-4.765-43.083Q-4.652-42.603-4.404-42.251Q-4.156-41.899-3.765-41.899M0.078-40.306Q-0.035-40.306-0.125-40.396Q-0.215-40.485-0.215-40.595Q-0.215-40.771-0.023-40.845Q0.195-40.896 0.367-41.054Q0.539-41.212 0.606-41.435Q0.582-41.435 0.551-41.419L0.488-41.419Q0.258-41.419 0.092-41.581Q-0.074-41.743-0.074-41.978Q-0.074-42.212 0.090-42.372Q0.254-42.532 0.488-42.532Q0.699-42.532 0.863-42.411Q1.028-42.290 1.117-42.097Q1.207-41.903 1.207-41.692Q1.207-41.216 0.908-40.827Q0.610-40.439 0.145-40.314Q0.121-40.306 0.078-40.306M3.285-41.060Q3.285-41.114 3.309-41.181L5.574-46.786Q5.668-46.970 5.863-46.970Q5.988-46.970 6.076-46.882Q6.164-46.794 6.164-46.665Q6.164-46.606 6.141-46.548L3.879-40.939Q3.778-40.755 3.598-40.755Q3.473-40.755 3.379-40.845Q3.285-40.935 3.285-41.060M5.863-40.755Q5.512-40.755 5.330-41.095Q5.149-41.435 5.149-41.817Q5.149-42.204 5.328-42.544Q5.508-42.884 5.863-42.884Q6.102-42.884 6.260-42.714Q6.418-42.544 6.492-42.300Q6.567-42.056 6.567-41.817Q6.567-41.583 6.492-41.339Q6.418-41.095 6.260-40.925Q6.102-40.755 5.863-40.755M5.863-41.314Q5.945-41.345 5.992-41.513Q6.039-41.681 6.039-41.817Q6.039-41.954 5.992-42.124Q5.945-42.294 5.863-42.321Q5.778-42.294 5.727-42.126Q5.676-41.958 5.676-41.817Q5.676-41.689 5.727-41.517Q5.778-41.345 5.863-41.314M3.598-44.833Q3.356-44.833 3.195-45.003Q3.035-45.173 2.961-45.419Q2.887-45.665 2.887-45.907Q2.887-46.290 3.067-46.630Q3.246-46.970 3.598-46.970Q3.836-46.970 3.994-46.800Q4.153-46.630 4.227-46.386Q4.301-46.142 4.301-45.907Q4.301-45.665 4.227-45.419Q4.153-45.173 3.994-45.003Q3.836-44.833 3.598-44.833M3.598-45.396Q3.688-45.439 3.731-45.595Q3.774-45.751 3.774-45.907Q3.774-46.036 3.727-46.212Q3.680-46.388 3.590-46.411Q3.574-46.411 3.545-46.376Q3.516-46.341 3.508-46.321Q3.414-46.134 3.414-45.907Q3.414-45.771 3.463-45.599Q3.512-45.427 3.598-45.396M7.074-41.657L7.074-41.747Q7.133-41.954 7.324-41.978L8.035-41.978L8.035-44.306L7.324-44.306Q7.129-44.329 7.074-44.548L7.074-44.634Q7.133-44.845 7.324-44.868L8.426-44.868Q8.625-44.849 8.676-44.634L8.676-44.306Q8.938-44.591 9.293-44.749Q9.649-44.907 10.035-44.907Q10.328-44.907 10.563-44.773Q10.797-44.638 10.797-44.372Q10.797-44.204 10.688-44.087Q10.578-43.970 10.410-43.970Q10.258-43.970 10.143-44.081Q10.028-44.192 10.028-44.349Q9.653-44.349 9.338-44.148Q9.024-43.946 8.850-43.612Q8.676-43.278 8.676-42.899L8.676-41.978L9.621-41.978Q9.828-41.954 9.867-41.747L9.867-41.657Q9.828-41.442 9.621-41.419L7.324-41.419Q7.133-41.442 7.074-41.657M11.684-41.618L11.684-42.532Q11.711-42.739 11.922-42.763L12.090-42.763Q12.254-42.739 12.313-42.579Q12.516-41.939 13.242-41.939Q13.449-41.939 13.678-41.974Q13.906-42.009 14.074-42.124Q14.242-42.239 14.242-42.442Q14.242-42.653 14.020-42.767Q13.797-42.880 13.524-42.923L12.824-43.036Q11.684-43.247 11.684-43.970Q11.684-44.259 11.828-44.448Q11.973-44.638 12.213-44.745Q12.453-44.853 12.709-44.892Q12.965-44.931 13.242-44.931Q13.492-44.931 13.686-44.901Q13.879-44.872 14.043-44.794Q14.121-44.911 14.250-44.931L14.328-44.931Q14.426-44.919 14.488-44.856Q14.551-44.794 14.563-44.700L14.563-43.993Q14.551-43.899 14.488-43.833Q14.426-43.767 14.328-43.755L14.160-43.755Q14.067-43.767 14-43.833Q13.934-43.899 13.922-43.993Q13.922-44.372 13.227-44.372Q12.879-44.372 12.561-44.290Q12.242-44.208 12.242-43.962Q12.242-43.696 12.914-43.587L13.617-43.466Q14.102-43.384 14.451-43.136Q14.801-42.888 14.801-42.442Q14.801-42.052 14.565-41.810Q14.328-41.567 13.979-41.474Q13.629-41.380 13.242-41.380Q12.664-41.380 12.266-41.634Q12.195-41.509 12.147-41.452Q12.098-41.396 11.992-41.380L11.922-41.380Q11.707-41.403 11.684-41.618M15.414-39.876L15.414-39.962Q15.457-40.181 15.664-40.204L16.086-40.204L16.086-44.306L15.664-44.306Q15.457-44.329 15.414-44.548L15.414-44.634Q15.461-44.845 15.664-44.868L16.481-44.868Q16.676-44.849 16.727-44.634L16.727-44.564Q16.938-44.731 17.201-44.819Q17.465-44.907 17.735-44.907Q18.074-44.907 18.371-44.763Q18.668-44.618 18.883-44.366Q19.098-44.114 19.213-43.802Q19.328-43.489 19.328-43.146Q19.328-42.681 19.102-42.271Q18.875-41.860 18.488-41.620Q18.102-41.380 17.633-41.380Q17.113-41.380 16.727-41.747L16.727-40.204L17.153-40.204Q17.360-40.181 17.399-39.962L17.399-39.876Q17.360-39.665 17.153-39.642L15.664-39.642Q15.461-39.665 15.414-39.876M17.590-41.939Q17.899-41.939 18.149-42.108Q18.399-42.278 18.543-42.560Q18.688-42.841 18.688-43.146Q18.688-43.435 18.563-43.714Q18.438-43.993 18.205-44.171Q17.973-44.349 17.672-44.349Q17.352-44.349 17.090-44.163Q16.828-43.978 16.727-43.677L16.727-42.825Q16.817-42.458 17.037-42.198Q17.258-41.939 17.590-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 2.444)\">\u003Cpath d=\"M-55.211-41.642L-56.097-44.306L-56.418-44.306Q-56.617-44.329-56.668-44.548L-56.668-44.634Q-56.617-44.845-56.418-44.868L-55.258-44.868Q-55.062-44.849-55.012-44.634L-55.012-44.548Q-55.062-44.329-55.258-44.306L-55.539-44.306L-54.746-41.931L-53.957-44.306L-54.234-44.306Q-54.433-44.329-54.484-44.548L-54.484-44.634Q-54.433-44.845-54.234-44.868L-53.074-44.868Q-52.879-44.845-52.828-44.634L-52.828-44.548Q-52.879-44.329-53.074-44.306L-53.394-44.306L-54.281-41.642Q-54.324-41.528-54.426-41.454Q-54.527-41.380-54.652-41.380L-54.844-41.380Q-54.961-41.380-55.064-41.452Q-55.168-41.524-55.211-41.642M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-43.945-41.657L-43.945-41.747Q-43.906-41.954-43.695-41.978L-43.387-41.978L-43.387-45.747L-43.695-45.747Q-43.906-45.771-43.945-45.985L-43.945-46.075Q-43.906-46.282-43.695-46.306L-40.488-46.306Q-40.293-46.282-40.242-46.075L-40.242-45.235Q-40.293-45.021-40.488-44.993L-40.633-44.993Q-40.828-45.021-40.883-45.235L-40.883-45.747L-42.746-45.747L-42.746-44.228L-41.769-44.228L-41.769-44.442Q-41.719-44.649-41.519-44.677L-41.375-44.677Q-41.179-44.649-41.129-44.442L-41.129-43.458Q-41.179-43.243-41.375-43.220L-41.519-43.220Q-41.719-43.243-41.769-43.458L-41.769-43.665L-42.746-43.665L-42.746-41.978L-40.703-41.978L-40.703-42.618Q-40.652-42.825-40.457-42.853L-40.312-42.853Q-40.117-42.825-40.066-42.618L-40.066-41.657Q-40.117-41.439-40.312-41.419L-43.695-41.419Q-43.906-41.442-43.945-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 2.444)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 2.444)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 2.444)\">\u003Cpath d=\"M-16.801-42.341L-16.801-43.556L-18.015-43.556Q-18.140-43.567-18.226-43.653Q-18.312-43.739-18.312-43.868Q-18.312-43.997-18.226-44.079Q-18.140-44.161-18.015-44.173L-16.801-44.173L-16.801-45.396Q-16.789-45.521-16.703-45.603Q-16.617-45.685-16.488-45.685Q-16.359-45.685-16.277-45.603Q-16.195-45.521-16.183-45.396L-16.183-44.173L-14.969-44.173Q-14.844-44.161-14.762-44.079Q-14.680-43.997-14.680-43.868Q-14.680-43.739-14.762-43.653Q-14.844-43.567-14.969-43.556L-16.183-43.556L-16.183-42.341Q-16.195-42.216-16.277-42.130Q-16.359-42.044-16.488-42.044Q-16.617-42.044-16.703-42.130Q-16.789-42.216-16.801-42.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 2.444)\">\u003Cpath d=\"M-7.996-41.341Q-8.430-41.341-8.762-41.579Q-9.094-41.817-9.314-42.206Q-9.535-42.595-9.642-43.032Q-9.750-43.470-9.750-43.868Q-9.750-44.259-9.640-44.702Q-9.531-45.146-9.314-45.526Q-9.097-45.907-8.763-46.148Q-8.430-46.388-7.996-46.388Q-7.441-46.388-7.041-45.989Q-6.640-45.591-6.443-45.005Q-6.246-44.419-6.246-43.868Q-6.246-43.314-6.443-42.726Q-6.640-42.138-7.041-41.739Q-7.441-41.341-7.996-41.341M-7.996-41.899Q-7.695-41.899-7.478-42.116Q-7.262-42.333-7.135-42.661Q-7.008-42.989-6.947-43.335Q-6.887-43.681-6.887-43.962Q-6.887-44.212-6.949-44.538Q-7.012-44.864-7.142-45.155Q-7.273-45.446-7.486-45.636Q-7.699-45.825-7.996-45.825Q-8.371-45.825-8.623-45.513Q-8.875-45.200-8.992-44.767Q-9.109-44.333-9.109-43.962Q-9.109-43.564-8.996-43.083Q-8.883-42.603-8.635-42.251Q-8.387-41.899-7.996-41.899M-5.613-41.657L-5.613-41.747Q-5.574-41.954-5.367-41.978L-4.961-41.978L-4.031-43.196L-4.902-44.306L-5.320-44.306Q-5.515-44.325-5.566-44.548L-5.566-44.634Q-5.515-44.845-5.320-44.868L-4.160-44.868Q-3.961-44.845-3.910-44.634L-3.910-44.548Q-3.961-44.329-4.160-44.306L-4.269-44.306L-3.773-43.649L-3.297-44.306L-3.414-44.306Q-3.613-44.329-3.664-44.548L-3.664-44.634Q-3.613-44.845-3.414-44.868L-2.254-44.868Q-2.058-44.849-2.008-44.634L-2.008-44.548Q-2.058-44.329-2.254-44.306L-2.664-44.306L-3.512-43.196L-2.551-41.978L-2.144-41.978Q-1.945-41.954-1.894-41.747L-1.894-41.657Q-1.933-41.442-2.144-41.419L-3.297-41.419Q-3.504-41.442-3.543-41.657L-3.543-41.747Q-3.504-41.954-3.297-41.978L-3.168-41.978L-3.773-42.833L-4.359-41.978L-4.215-41.978Q-4.008-41.954-3.969-41.747L-3.969-41.657Q-4.008-41.442-4.215-41.419L-5.367-41.419Q-5.562-41.439-5.613-41.657M-1.199-41.657L-1.199-41.731Q-1.168-41.899-1.066-41.946L0.223-43.013Q0.555-43.290 0.737-43.442Q0.918-43.595 1.113-43.815Q1.309-44.036 1.430-44.286Q1.551-44.536 1.551-44.802Q1.551-45.126 1.375-45.360Q1.199-45.595 0.920-45.710Q0.641-45.825 0.320-45.825Q0.063-45.825-0.166-45.702Q-0.394-45.579-0.496-45.364Q-0.394-45.231-0.394-45.083Q-0.394-44.923-0.513-44.800Q-0.633-44.677-0.793-44.677Q-0.969-44.677-1.084-44.802Q-1.199-44.927-1.199-45.099Q-1.199-45.392-1.064-45.634Q-0.930-45.876-0.691-46.048Q-0.453-46.220-0.185-46.304Q0.082-46.388 0.375-46.388Q0.856-46.388 1.272-46.198Q1.688-46.009 1.940-45.648Q2.192-45.286 2.192-44.802Q2.192-44.458 2.059-44.155Q1.926-43.853 1.701-43.593Q1.477-43.333 1.168-43.071Q0.860-42.810 0.649-42.634L-0.160-41.978L1.551-41.978L1.551-42.122Q1.602-42.333 1.801-42.356L1.942-42.356Q2.141-42.337 2.192-42.122L2.192-41.657Q2.141-41.442 1.942-41.419L-0.953-41.419Q-1.148-41.439-1.199-41.657M4.742-41.341Q4.309-41.341 3.977-41.579Q3.645-41.817 3.424-42.206Q3.203-42.595 3.096-43.032Q2.988-43.470 2.988-43.868Q2.988-44.259 3.098-44.702Q3.207-45.146 3.424-45.526Q3.641-45.907 3.975-46.148Q4.309-46.388 4.742-46.388Q5.297-46.388 5.697-45.989Q6.098-45.591 6.295-45.005Q6.492-44.419 6.492-43.868Q6.492-43.314 6.295-42.726Q6.098-42.138 5.697-41.739Q5.297-41.341 4.742-41.341M4.742-41.899Q5.043-41.899 5.260-42.116Q5.477-42.333 5.604-42.661Q5.731-42.989 5.791-43.335Q5.852-43.681 5.852-43.962Q5.852-44.212 5.789-44.538Q5.727-44.864 5.596-45.155Q5.465-45.446 5.252-45.636Q5.039-45.825 4.742-45.825Q4.367-45.825 4.115-45.513Q3.863-45.200 3.746-44.767Q3.629-44.333 3.629-43.962Q3.629-43.564 3.742-43.083Q3.856-42.603 4.104-42.251Q4.352-41.899 4.742-41.899M8.988-41.341Q8.555-41.341 8.223-41.579Q7.891-41.817 7.670-42.206Q7.449-42.595 7.342-43.032Q7.235-43.470 7.235-43.868Q7.235-44.259 7.344-44.702Q7.453-45.146 7.670-45.526Q7.887-45.907 8.221-46.148Q8.555-46.388 8.988-46.388Q9.543-46.388 9.944-45.989Q10.344-45.591 10.541-45.005Q10.738-44.419 10.738-43.868Q10.738-43.314 10.541-42.726Q10.344-42.138 9.944-41.739Q9.543-41.341 8.988-41.341M8.988-41.899Q9.289-41.899 9.506-42.116Q9.723-42.333 9.850-42.661Q9.977-42.989 10.037-43.335Q10.098-43.681 10.098-43.962Q10.098-44.212 10.035-44.538Q9.973-44.864 9.842-45.155Q9.711-45.446 9.498-45.636Q9.285-45.825 8.988-45.825Q8.613-45.825 8.362-45.513Q8.110-45.200 7.992-44.767Q7.875-44.333 7.875-43.962Q7.875-43.564 7.988-43.083Q8.102-42.603 8.350-42.251Q8.598-41.899 8.988-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 1.889)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-44.058-39.876L-44.058-39.962Q-44.015-40.181-43.808-40.204L-43.387-40.204L-43.387-44.306L-43.808-44.306Q-44.015-44.329-44.058-44.548L-44.058-44.634Q-44.012-44.845-43.808-44.868L-42.992-44.868Q-42.797-44.849-42.746-44.634L-42.746-44.564Q-42.535-44.731-42.271-44.819Q-42.008-44.907-41.738-44.907Q-41.398-44.907-41.101-44.763Q-40.804-44.618-40.590-44.366Q-40.375-44.114-40.260-43.802Q-40.144-43.489-40.144-43.146Q-40.144-42.681-40.371-42.271Q-40.597-41.860-40.984-41.620Q-41.371-41.380-41.840-41.380Q-42.359-41.380-42.746-41.747L-42.746-40.204L-42.320-40.204Q-42.113-40.181-42.074-39.962L-42.074-39.876Q-42.113-39.665-42.320-39.642L-43.808-39.642Q-44.012-39.665-44.058-39.876M-41.883-41.939Q-41.574-41.939-41.324-42.108Q-41.074-42.278-40.929-42.560Q-40.785-42.841-40.785-43.146Q-40.785-43.435-40.910-43.714Q-41.035-43.993-41.267-44.171Q-41.500-44.349-41.801-44.349Q-42.121-44.349-42.383-44.163Q-42.644-43.978-42.746-43.677L-42.746-42.825Q-42.656-42.458-42.435-42.198Q-42.215-41.939-41.883-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 1.889)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 1.889)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-18.199-41.657L-18.199-41.731Q-18.168-41.899-18.066-41.946L-16.777-43.013Q-16.445-43.290-16.263-43.442Q-16.082-43.595-15.887-43.815Q-15.691-44.036-15.570-44.286Q-15.449-44.536-15.449-44.802Q-15.449-45.126-15.625-45.360Q-15.801-45.595-16.080-45.710Q-16.359-45.825-16.680-45.825Q-16.937-45.825-17.166-45.702Q-17.394-45.579-17.496-45.364Q-17.394-45.231-17.394-45.083Q-17.394-44.923-17.513-44.800Q-17.633-44.677-17.793-44.677Q-17.969-44.677-18.084-44.802Q-18.199-44.927-18.199-45.099Q-18.199-45.392-18.064-45.634Q-17.930-45.876-17.691-46.048Q-17.453-46.220-17.185-46.304Q-16.918-46.388-16.625-46.388Q-16.144-46.388-15.728-46.198Q-15.312-46.009-15.060-45.648Q-14.808-45.286-14.808-44.802Q-14.808-44.458-14.941-44.155Q-15.074-43.853-15.299-43.593Q-15.523-43.333-15.832-43.071Q-16.140-42.810-16.351-42.634L-17.160-41.978L-15.449-41.978L-15.449-42.122Q-15.398-42.333-15.199-42.356L-15.058-42.356Q-14.859-42.337-14.808-42.122L-14.808-41.657Q-14.859-41.442-15.058-41.419L-17.953-41.419Q-18.148-41.439-18.199-41.657M-12.258-41.341Q-12.691-41.341-13.023-41.579Q-13.355-41.817-13.576-42.206Q-13.797-42.595-13.904-43.032Q-14.012-43.470-14.012-43.868Q-14.012-44.259-13.902-44.702Q-13.793-45.146-13.576-45.526Q-13.359-45.907-13.025-46.148Q-12.691-46.388-12.258-46.388Q-11.703-46.388-11.303-45.989Q-10.902-45.591-10.705-45.005Q-10.508-44.419-10.508-43.868Q-10.508-43.314-10.705-42.726Q-10.902-42.138-11.303-41.739Q-11.703-41.341-12.258-41.341M-12.258-41.899Q-11.957-41.899-11.740-42.116Q-11.523-42.333-11.396-42.661Q-11.269-42.989-11.209-43.335Q-11.148-43.681-11.148-43.962Q-11.148-44.212-11.211-44.538Q-11.273-44.864-11.404-45.155Q-11.535-45.446-11.748-45.636Q-11.961-45.825-12.258-45.825Q-12.633-45.825-12.885-45.513Q-13.137-45.200-13.254-44.767Q-13.371-44.333-13.371-43.962Q-13.371-43.564-13.258-43.083Q-13.144-42.603-12.896-42.251Q-12.648-41.899-12.258-41.899M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899\" 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-32.03h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 20.939)\">\u003Cpath d=\"M-56.441-41.657L-56.441-41.731Q-56.410-41.899-56.308-41.946L-55.019-43.013Q-54.687-43.290-54.506-43.442Q-54.324-43.595-54.129-43.815Q-53.933-44.036-53.812-44.286Q-53.691-44.536-53.691-44.802Q-53.691-45.126-53.867-45.360Q-54.043-45.595-54.322-45.710Q-54.601-45.825-54.922-45.825Q-55.179-45.825-55.408-45.702Q-55.637-45.579-55.738-45.364Q-55.637-45.231-55.637-45.083Q-55.637-44.923-55.756-44.800Q-55.875-44.677-56.035-44.677Q-56.211-44.677-56.326-44.802Q-56.441-44.927-56.441-45.099Q-56.441-45.392-56.306-45.634Q-56.172-45.876-55.933-46.048Q-55.695-46.220-55.428-46.304Q-55.160-46.388-54.867-46.388Q-54.387-46.388-53.971-46.198Q-53.554-46.009-53.303-45.648Q-53.051-45.286-53.051-44.802Q-53.051-44.458-53.183-44.155Q-53.316-43.853-53.541-43.593Q-53.765-43.333-54.074-43.071Q-54.383-42.810-54.594-42.634L-55.402-41.978L-53.691-41.978L-53.691-42.122Q-53.640-42.333-53.441-42.356L-53.301-42.356Q-53.101-42.337-53.051-42.122L-53.051-41.657Q-53.101-41.442-53.301-41.419L-56.195-41.419Q-56.390-41.439-56.441-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 20.939)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-42.008-41.341Q-42.441-41.341-42.773-41.579Q-43.105-41.817-43.326-42.206Q-43.547-42.595-43.654-43.032Q-43.762-43.470-43.762-43.868Q-43.762-44.259-43.652-44.702Q-43.543-45.146-43.326-45.526Q-43.109-45.907-42.775-46.148Q-42.441-46.388-42.008-46.388Q-41.453-46.388-41.053-45.989Q-40.652-45.591-40.455-45.005Q-40.258-44.419-40.258-43.868Q-40.258-43.314-40.455-42.726Q-40.652-42.138-41.053-41.739Q-41.453-41.341-42.008-41.341M-42.008-41.899Q-41.707-41.899-41.490-42.116Q-41.273-42.333-41.146-42.661Q-41.019-42.989-40.959-43.335Q-40.898-43.681-40.898-43.962Q-40.898-44.212-40.961-44.538Q-41.023-44.864-41.154-45.155Q-41.285-45.446-41.498-45.636Q-41.711-45.825-42.008-45.825Q-42.383-45.825-42.635-45.513Q-42.887-45.200-43.004-44.767Q-43.121-44.333-43.121-43.962Q-43.121-43.564-43.008-43.083Q-42.894-42.603-42.646-42.251Q-42.398-41.899-42.008-41.899M-39.476-42.532Q-39.476-42.978-39.062-43.235Q-38.648-43.493-38.107-43.593Q-37.566-43.692-37.058-43.700Q-37.058-43.915-37.193-44.067Q-37.328-44.220-37.535-44.296Q-37.742-44.372-37.953-44.372Q-38.297-44.372-38.457-44.349L-38.457-44.290Q-38.457-44.122-38.576-44.007Q-38.695-43.892-38.859-43.892Q-39.035-43.892-39.150-44.015Q-39.265-44.138-39.265-44.306Q-39.265-44.712-38.885-44.821Q-38.504-44.931-37.945-44.931Q-37.676-44.931-37.408-44.853Q-37.140-44.774-36.916-44.624Q-36.691-44.474-36.554-44.253Q-36.418-44.032-36.418-43.755L-36.418-42.036Q-36.418-41.978-35.890-41.978Q-35.695-41.958-35.644-41.747L-35.644-41.657Q-35.695-41.442-35.890-41.419L-36.035-41.419Q-36.379-41.419-36.607-41.466Q-36.836-41.513-36.980-41.700Q-37.441-41.380-38.148-41.380Q-38.484-41.380-38.789-41.521Q-39.094-41.661-39.285-41.923Q-39.476-42.185-39.476-42.532M-38.836-42.524Q-38.836-42.251-38.594-42.095Q-38.351-41.939-38.066-41.939Q-37.847-41.939-37.615-41.997Q-37.383-42.056-37.221-42.194Q-37.058-42.333-37.058-42.556L-37.058-43.146Q-37.340-43.146-37.756-43.089Q-38.172-43.032-38.504-42.894Q-38.836-42.755-38.836-42.524\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 20.383)\">\u003Cpath d=\"M-56.250-41.657L-56.250-41.747Q-56.199-41.954-56.004-41.978L-54.965-41.978L-54.965-44.306L-55.937-44.306Q-56.137-44.329-56.187-44.548L-56.187-44.634Q-56.137-44.845-55.937-44.868L-54.570-44.868Q-54.375-44.849-54.324-44.634L-54.324-41.978L-53.410-41.978Q-53.215-41.954-53.164-41.747L-53.164-41.657Q-53.215-41.442-53.410-41.419L-56.004-41.419Q-56.199-41.442-56.250-41.657M-55.219-45.845L-55.219-45.899Q-55.219-46.071-55.082-46.192Q-54.945-46.314-54.769-46.314Q-54.597-46.314-54.461-46.192Q-54.324-46.071-54.324-45.899L-54.324-45.845Q-54.324-45.669-54.461-45.548Q-54.597-45.427-54.769-45.427Q-54.945-45.427-55.082-45.548Q-55.219-45.669-55.219-45.845M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-48.429-41.657L-48.429-41.747Q-48.379-41.958-48.183-41.978L-47.984-41.978L-47.984-44.306L-48.183-44.306Q-48.390-44.329-48.429-44.548L-48.429-44.634Q-48.379-44.849-48.183-44.868L-47.703-44.868Q-47.512-44.845-47.453-44.634Q-47.133-44.907-46.719-44.907Q-46.527-44.907-46.359-44.798Q-46.191-44.689-46.117-44.517Q-45.941-44.708-45.719-44.808Q-45.496-44.907-45.254-44.907Q-44.836-44.907-44.681-44.565Q-44.527-44.224-44.527-43.755L-44.527-41.978L-44.328-41.978Q-44.117-41.954-44.078-41.747L-44.078-41.657Q-44.129-41.442-44.328-41.419L-45.144-41.419Q-45.340-41.442-45.390-41.657L-45.390-41.747Q-45.340-41.954-45.144-41.978L-45.054-41.978L-45.054-43.724Q-45.054-44.349-45.304-44.349Q-45.637-44.349-45.814-44.038Q-45.992-43.728-45.992-43.364L-45.992-41.978L-45.789-41.978Q-45.582-41.954-45.543-41.747L-45.543-41.657Q-45.594-41.442-45.789-41.419L-46.605-41.419Q-46.804-41.442-46.855-41.657L-46.855-41.747Q-46.804-41.954-46.605-41.978L-46.519-41.978L-46.519-43.724Q-46.519-44.349-46.765-44.349Q-47.097-44.349-47.275-44.036Q-47.453-43.724-47.453-43.364L-47.453-41.978L-47.254-41.978Q-47.047-41.954-47.008-41.747L-47.008-41.657Q-47.058-41.439-47.254-41.419L-48.183-41.419Q-48.390-41.442-48.429-41.657M-42.008-41.380Q-42.480-41.380-42.865-41.624Q-43.250-41.868-43.472-42.278Q-43.695-42.689-43.695-43.146Q-43.695-43.489-43.570-43.812Q-43.445-44.134-43.215-44.388Q-42.984-44.642-42.678-44.786Q-42.371-44.931-42.008-44.931Q-41.644-44.931-41.332-44.784Q-41.019-44.638-40.797-44.392Q-40.574-44.146-40.447-43.825Q-40.320-43.505-40.320-43.146Q-40.320-42.689-40.545-42.276Q-40.769-41.864-41.154-41.622Q-41.539-41.380-42.008-41.380M-42.008-41.939Q-41.543-41.939-41.252-42.333Q-40.961-42.728-40.961-43.212Q-40.961-43.505-41.096-43.773Q-41.230-44.040-41.471-44.206Q-41.711-44.372-42.008-44.372Q-42.312-44.372-42.551-44.206Q-42.789-44.040-42.924-43.773Q-43.058-43.505-43.058-43.212Q-43.058-42.731-42.765-42.335Q-42.472-41.939-42.008-41.939M-38.226-41.642L-39.113-44.306L-39.433-44.306Q-39.633-44.329-39.683-44.548L-39.683-44.634Q-39.633-44.845-39.433-44.868L-38.273-44.868Q-38.078-44.849-38.027-44.634L-38.027-44.548Q-38.078-44.329-38.273-44.306L-38.554-44.306L-37.762-41.931L-36.972-44.306L-37.250-44.306Q-37.449-44.329-37.500-44.548L-37.500-44.634Q-37.449-44.845-37.250-44.868L-36.090-44.868Q-35.894-44.845-35.844-44.634L-35.844-44.548Q-35.894-44.329-36.090-44.306L-36.410-44.306L-37.297-41.642Q-37.340-41.528-37.441-41.454Q-37.543-41.380-37.668-41.380L-37.859-41.380Q-37.976-41.380-38.080-41.452Q-38.183-41.524-38.226-41.642M-33.324-39.876L-33.324-39.962Q-33.273-40.181-33.078-40.204L-32.613-40.204L-32.613-41.802Q-33.066-41.380-33.676-41.380Q-34.031-41.380-34.336-41.523Q-34.640-41.665-34.873-41.915Q-35.105-42.165-35.230-42.487Q-35.355-42.810-35.355-43.146Q-35.355-43.630-35.117-44.030Q-34.879-44.431-34.472-44.669Q-34.066-44.907-33.590-44.907Q-33.027-44.907-32.613-44.517L-32.613-44.677Q-32.562-44.888-32.363-44.907L-32.222-44.907Q-32.023-44.884-31.972-44.677L-31.972-40.204L-31.508-40.204Q-31.312-40.181-31.262-39.962L-31.262-39.876Q-31.312-39.665-31.508-39.642L-33.078-39.642Q-33.273-39.665-33.324-39.876M-33.629-41.939Q-33.258-41.939-32.982-42.192Q-32.707-42.446-32.613-42.810L-32.613-43.427Q-32.656-43.665-32.779-43.878Q-32.902-44.091-33.099-44.220Q-33.297-44.349-33.539-44.349Q-33.855-44.349-34.127-44.183Q-34.398-44.017-34.556-43.735Q-34.715-43.454-34.715-43.138Q-34.715-42.673-34.400-42.306Q-34.086-41.939-33.629-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 20.383)\">\u003Cpath d=\"M-25.277-40.985L-25.277-41.396Q-25.879-41.462-26.262-41.831Q-26.644-42.200-26.644-42.794Q-26.644-42.970-26.527-43.091Q-26.410-43.212-26.238-43.212Q-26.160-43.212-26.080-43.181Q-26-43.149-25.949-43.099Q-25.898-43.048-25.867-42.968Q-25.836-42.888-25.836-42.810Q-25.836-42.610-25.965-42.517Q-25.898-42.290-25.715-42.151Q-25.531-42.013-25.277-41.962L-25.277-43.692Q-25.855-43.814-26.250-44.140Q-26.644-44.466-26.644-45.013Q-26.644-45.532-26.232-45.894Q-25.820-46.255-25.277-46.329L-25.277-46.739Q-25.226-46.946-25.027-46.970L-24.965-46.970Q-24.769-46.950-24.719-46.739L-24.719-46.329Q-24.340-46.294-24.029-46.136Q-23.719-45.978-23.533-45.696Q-23.347-45.415-23.347-45.028Q-23.347-44.856-23.461-44.733Q-23.574-44.610-23.750-44.610Q-23.918-44.610-24.037-44.726Q-24.156-44.841-24.156-45.013Q-24.156-45.189-24.039-45.306Q-24.113-45.505-24.297-45.618Q-24.480-45.731-24.719-45.763L-24.719-44.228Q-24.351-44.153-24.035-43.968Q-23.719-43.782-23.533-43.491Q-23.347-43.200-23.347-42.810Q-23.347-42.532-23.457-42.294Q-23.566-42.056-23.765-41.862Q-23.965-41.669-24.215-41.554Q-24.465-41.439-24.719-41.403L-24.719-40.985Q-24.769-40.778-24.965-40.755L-25.027-40.755Q-25.226-40.774-25.277-40.985M-24.719-43.579L-24.719-41.970Q-24.406-42.040-24.174-42.257Q-23.941-42.474-23.941-42.771Q-23.941-42.978-24.049-43.142Q-24.156-43.306-24.334-43.417Q-24.512-43.528-24.719-43.579M-26.055-45.052Q-26.055-44.774-25.824-44.597Q-25.594-44.419-25.277-44.349L-25.277-45.763Q-25.574-45.708-25.814-45.519Q-26.055-45.329-26.055-45.052M-22.465-42.532Q-22.465-42.978-22.051-43.235Q-21.637-43.493-21.096-43.593Q-20.555-43.692-20.047-43.700Q-20.047-43.915-20.181-44.067Q-20.316-44.220-20.523-44.296Q-20.730-44.372-20.941-44.372Q-21.285-44.372-21.445-44.349L-21.445-44.290Q-21.445-44.122-21.564-44.007Q-21.683-43.892-21.847-43.892Q-22.023-43.892-22.138-44.015Q-22.254-44.138-22.254-44.306Q-22.254-44.712-21.873-44.821Q-21.492-44.931-20.933-44.931Q-20.664-44.931-20.396-44.853Q-20.129-44.774-19.904-44.624Q-19.680-44.474-19.543-44.253Q-19.406-44.032-19.406-43.755L-19.406-42.036Q-19.406-41.978-18.879-41.978Q-18.683-41.958-18.633-41.747L-18.633-41.657Q-18.683-41.442-18.879-41.419L-19.023-41.419Q-19.367-41.419-19.596-41.466Q-19.824-41.513-19.969-41.700Q-20.430-41.380-21.137-41.380Q-21.472-41.380-21.777-41.521Q-22.082-41.661-22.273-41.923Q-22.465-42.185-22.465-42.532M-21.824-42.524Q-21.824-42.251-21.582-42.095Q-21.340-41.939-21.055-41.939Q-20.836-41.939-20.603-41.997Q-20.371-42.056-20.209-42.194Q-20.047-42.333-20.047-42.556L-20.047-43.146Q-20.328-43.146-20.744-43.089Q-21.160-43.032-21.492-42.894Q-21.824-42.755-21.824-42.524M-18.402-41.657L-18.402-41.747Q-18.344-41.954-18.152-41.978L-17.441-41.978L-17.441-44.306L-18.152-44.306Q-18.347-44.329-18.402-44.548L-18.402-44.634Q-18.344-44.845-18.152-44.868L-17.051-44.868Q-16.851-44.849-16.801-44.634L-16.801-44.306Q-16.539-44.591-16.183-44.749Q-15.828-44.907-15.441-44.907Q-15.148-44.907-14.914-44.773Q-14.680-44.638-14.680-44.372Q-14.680-44.204-14.789-44.087Q-14.898-43.970-15.066-43.970Q-15.219-43.970-15.334-44.081Q-15.449-44.192-15.449-44.349Q-15.824-44.349-16.138-44.148Q-16.453-43.946-16.627-43.612Q-16.801-43.278-16.801-42.899L-16.801-41.978L-15.855-41.978Q-15.648-41.954-15.609-41.747L-15.609-41.657Q-15.648-41.442-15.855-41.419L-18.152-41.419Q-18.344-41.442-18.402-41.657M-14.156-41.657L-14.156-41.747Q-14.097-41.954-13.906-41.978L-13.195-41.978L-13.195-44.306L-13.906-44.306Q-14.101-44.329-14.156-44.548L-14.156-44.634Q-14.097-44.845-13.906-44.868L-12.805-44.868Q-12.605-44.849-12.555-44.634L-12.555-44.306Q-12.293-44.591-11.937-44.749Q-11.582-44.907-11.195-44.907Q-10.902-44.907-10.668-44.773Q-10.433-44.638-10.433-44.372Q-10.433-44.204-10.543-44.087Q-10.652-43.970-10.820-43.970Q-10.972-43.970-11.088-44.081Q-11.203-44.192-11.203-44.349Q-11.578-44.349-11.892-44.148Q-12.207-43.946-12.381-43.612Q-12.555-43.278-12.555-42.899L-12.555-41.978L-11.609-41.978Q-11.402-41.954-11.363-41.747L-11.363-41.657Q-11.402-41.442-11.609-41.419L-13.906-41.419Q-14.097-41.442-14.156-41.657M-9.726-42.532Q-9.726-42.978-9.312-43.235Q-8.898-43.493-8.357-43.593Q-7.816-43.692-7.308-43.700Q-7.308-43.915-7.443-44.067Q-7.578-44.220-7.785-44.296Q-7.992-44.372-8.203-44.372Q-8.547-44.372-8.707-44.349L-8.707-44.290Q-8.707-44.122-8.826-44.007Q-8.945-43.892-9.109-43.892Q-9.285-43.892-9.400-44.015Q-9.515-44.138-9.515-44.306Q-9.515-44.712-9.135-44.821Q-8.754-44.931-8.195-44.931Q-7.926-44.931-7.658-44.853Q-7.390-44.774-7.166-44.624Q-6.941-44.474-6.805-44.253Q-6.668-44.032-6.668-43.755L-6.668-42.036Q-6.668-41.978-6.140-41.978Q-5.945-41.958-5.894-41.747L-5.894-41.657Q-5.945-41.442-6.140-41.419L-6.285-41.419Q-6.629-41.419-6.857-41.466Q-7.086-41.513-7.230-41.700Q-7.691-41.380-8.398-41.380Q-8.734-41.380-9.039-41.521Q-9.344-41.661-9.535-41.923Q-9.726-42.185-9.726-42.532M-9.086-42.524Q-9.086-42.251-8.844-42.095Q-8.601-41.939-8.316-41.939Q-8.097-41.939-7.865-41.997Q-7.633-42.056-7.471-42.194Q-7.308-42.333-7.308-42.556L-7.308-43.146Q-7.590-43.146-8.006-43.089Q-8.422-43.032-8.754-42.894Q-9.086-42.755-9.086-42.524M-5.543-40.298Q-5.543-40.407-5.492-40.499Q-5.441-40.591-5.349-40.642Q-5.258-40.692-5.152-40.692Q-5.043-40.692-4.951-40.642Q-4.859-40.591-4.808-40.499Q-4.758-40.407-4.758-40.298L-4.902-40.298Q-4.902-40.161-4.879-40.161Q-4.621-40.161-4.433-40.353Q-4.246-40.544-4.160-40.810L-3.949-41.419L-5.086-44.306L-5.414-44.306Q-5.609-44.329-5.664-44.548L-5.664-44.634Q-5.605-44.845-5.414-44.868L-4.254-44.868Q-4.058-44.845-4.008-44.634L-4.008-44.548Q-4.058-44.329-4.254-44.306L-4.519-44.306Q-4.183-43.458-3.939-42.804Q-3.695-42.149-3.695-42.060L-3.687-42.060Q-3.687-42.118-3.596-42.411Q-3.504-42.704-3.310-43.288Q-3.117-43.872-2.976-44.306L-3.254-44.306Q-3.465-44.329-3.504-44.548L-3.504-44.634Q-3.453-44.849-3.254-44.868L-2.101-44.868Q-1.894-44.845-1.855-44.634L-1.855-44.548Q-1.894-44.329-2.101-44.306L-2.422-44.306L-3.597-40.810Q-3.765-40.310-4.092-39.956Q-4.418-39.603-4.879-39.603Q-5.152-39.603-5.347-39.814Q-5.543-40.024-5.543-40.298M0.078-40.306Q-0.035-40.306-0.125-40.396Q-0.215-40.485-0.215-40.595Q-0.215-40.771-0.023-40.845Q0.195-40.896 0.367-41.054Q0.539-41.212 0.606-41.435Q0.582-41.435 0.551-41.419L0.488-41.419Q0.258-41.419 0.092-41.581Q-0.074-41.743-0.074-41.978Q-0.074-42.212 0.090-42.372Q0.254-42.532 0.488-42.532Q0.699-42.532 0.863-42.411Q1.028-42.290 1.117-42.097Q1.207-41.903 1.207-41.692Q1.207-41.216 0.908-40.827Q0.610-40.439 0.145-40.314Q0.121-40.306 0.078-40.306M3.285-41.060Q3.285-41.114 3.309-41.181L5.574-46.786Q5.668-46.970 5.863-46.970Q5.988-46.970 6.076-46.882Q6.164-46.794 6.164-46.665Q6.164-46.606 6.141-46.548L3.879-40.939Q3.778-40.755 3.598-40.755Q3.473-40.755 3.379-40.845Q3.285-40.935 3.285-41.060M5.863-40.755Q5.512-40.755 5.330-41.095Q5.149-41.435 5.149-41.817Q5.149-42.204 5.328-42.544Q5.508-42.884 5.863-42.884Q6.102-42.884 6.260-42.714Q6.418-42.544 6.492-42.300Q6.567-42.056 6.567-41.817Q6.567-41.583 6.492-41.339Q6.418-41.095 6.260-40.925Q6.102-40.755 5.863-40.755M5.863-41.314Q5.945-41.345 5.992-41.513Q6.039-41.681 6.039-41.817Q6.039-41.954 5.992-42.124Q5.945-42.294 5.863-42.321Q5.778-42.294 5.727-42.126Q5.676-41.958 5.676-41.817Q5.676-41.689 5.727-41.517Q5.778-41.345 5.863-41.314M3.598-44.833Q3.356-44.833 3.195-45.003Q3.035-45.173 2.961-45.419Q2.887-45.665 2.887-45.907Q2.887-46.290 3.067-46.630Q3.246-46.970 3.598-46.970Q3.836-46.970 3.994-46.800Q4.153-46.630 4.227-46.386Q4.301-46.142 4.301-45.907Q4.301-45.665 4.227-45.419Q4.153-45.173 3.994-45.003Q3.836-44.833 3.598-44.833M3.598-45.396Q3.688-45.439 3.731-45.595Q3.774-45.751 3.774-45.907Q3.774-46.036 3.727-46.212Q3.680-46.388 3.590-46.411Q3.574-46.411 3.545-46.376Q3.516-46.341 3.508-46.321Q3.414-46.134 3.414-45.907Q3.414-45.771 3.463-45.599Q3.512-45.427 3.598-45.396M7.074-41.657L7.074-41.747Q7.133-41.954 7.324-41.978L8.035-41.978L8.035-44.306L7.324-44.306Q7.129-44.329 7.074-44.548L7.074-44.634Q7.133-44.845 7.324-44.868L8.426-44.868Q8.625-44.849 8.676-44.634L8.676-44.306Q8.938-44.591 9.293-44.749Q9.649-44.907 10.035-44.907Q10.328-44.907 10.563-44.773Q10.797-44.638 10.797-44.372Q10.797-44.204 10.688-44.087Q10.578-43.970 10.410-43.970Q10.258-43.970 10.143-44.081Q10.028-44.192 10.028-44.349Q9.653-44.349 9.338-44.148Q9.024-43.946 8.850-43.612Q8.676-43.278 8.676-42.899L8.676-41.978L9.621-41.978Q9.828-41.954 9.867-41.747L9.867-41.657Q9.828-41.442 9.621-41.419L7.324-41.419Q7.133-41.442 7.074-41.657M12.961-41.380Q12.496-41.380 12.131-41.630Q11.766-41.880 11.561-42.284Q11.356-42.689 11.356-43.146Q11.356-43.489 11.481-43.810Q11.606-44.130 11.838-44.380Q12.070-44.630 12.375-44.769Q12.680-44.907 13.035-44.907Q13.547-44.907 13.953-44.587L13.953-45.747L13.531-45.747Q13.320-45.771 13.281-45.985L13.281-46.075Q13.320-46.282 13.531-46.306L14.344-46.306Q14.543-46.282 14.594-46.075L14.594-41.978L15.020-41.978Q15.227-41.954 15.266-41.747L15.266-41.657Q15.227-41.442 15.020-41.419L14.203-41.419Q14.004-41.442 13.953-41.657L13.953-41.786Q13.758-41.595 13.496-41.487Q13.235-41.380 12.961-41.380M13-41.939Q13.360-41.939 13.612-42.208Q13.863-42.478 13.953-42.853L13.953-43.685Q13.895-43.872 13.768-44.023Q13.641-44.173 13.463-44.261Q13.285-44.349 13.090-44.349Q12.781-44.349 12.531-44.179Q12.281-44.009 12.137-43.724Q11.992-43.439 11.992-43.138Q11.992-42.689 12.278-42.314Q12.563-41.939 13-41.939M15.961-41.657L15.961-41.747Q16.012-41.954 16.207-41.978L17.246-41.978L17.246-44.306L16.274-44.306Q16.074-44.329 16.024-44.548L16.024-44.634Q16.074-44.845 16.274-44.868L17.641-44.868Q17.836-44.849 17.887-44.634L17.887-41.978L18.801-41.978Q18.996-41.954 19.047-41.747L19.047-41.657Q18.996-41.442 18.801-41.419L16.207-41.419Q16.012-41.442 15.961-41.657M16.992-45.845L16.992-45.899Q16.992-46.071 17.129-46.192Q17.266-46.314 17.442-46.314Q17.613-46.314 17.750-46.192Q17.887-46.071 17.887-45.899L17.887-45.845Q17.887-45.669 17.750-45.548Q17.613-45.427 17.442-45.427Q17.266-45.427 17.129-45.548Q16.992-45.669 16.992-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 20.939)\">\u003Cpath d=\"M-55.211-41.642L-56.097-44.306L-56.418-44.306Q-56.617-44.329-56.668-44.548L-56.668-44.634Q-56.617-44.845-56.418-44.868L-55.258-44.868Q-55.062-44.849-55.012-44.634L-55.012-44.548Q-55.062-44.329-55.258-44.306L-55.539-44.306L-54.746-41.931L-53.957-44.306L-54.234-44.306Q-54.433-44.329-54.484-44.548L-54.484-44.634Q-54.433-44.845-54.234-44.868L-53.074-44.868Q-52.879-44.845-52.828-44.634L-52.828-44.548Q-52.879-44.329-53.074-44.306L-53.394-44.306L-54.281-41.642Q-54.324-41.528-54.426-41.454Q-54.527-41.380-54.652-41.380L-54.844-41.380Q-54.961-41.380-55.064-41.452Q-55.168-41.524-55.211-41.642M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-43.945-41.657L-43.945-41.747Q-43.906-41.954-43.695-41.978L-43.387-41.978L-43.387-45.747L-43.695-45.747Q-43.906-45.771-43.945-45.985L-43.945-46.075Q-43.906-46.282-43.695-46.306L-40.488-46.306Q-40.293-46.282-40.242-46.075L-40.242-45.235Q-40.293-45.021-40.488-44.993L-40.633-44.993Q-40.828-45.021-40.883-45.235L-40.883-45.747L-42.746-45.747L-42.746-44.228L-41.769-44.228L-41.769-44.442Q-41.719-44.649-41.519-44.677L-41.375-44.677Q-41.179-44.649-41.129-44.442L-41.129-43.458Q-41.179-43.243-41.375-43.220L-41.519-43.220Q-41.719-43.243-41.769-43.458L-41.769-43.665L-42.746-43.665L-42.746-41.978L-40.703-41.978L-40.703-42.618Q-40.652-42.825-40.457-42.853L-40.312-42.853Q-40.117-42.825-40.066-42.618L-40.066-41.657Q-40.117-41.439-40.312-41.419L-43.695-41.419Q-43.906-41.442-43.945-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 20.939)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 20.939)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-13.242-42.298Q-13.125-42.095-12.890-41.997Q-12.656-41.899-12.394-41.899Q-12.097-41.899-11.824-42.028Q-11.551-42.157-11.377-42.394Q-11.203-42.630-11.203-42.931Q-11.203-43.185-11.322-43.427Q-11.441-43.669-11.656-43.815Q-11.871-43.962-12.140-43.962Q-12.746-43.962-13.082-43.642Q-13.160-43.556-13.215-43.509Q-13.269-43.462-13.355-43.450L-13.457-43.450Q-13.656-43.474-13.707-43.692L-13.707-46.075Q-13.656-46.282-13.457-46.306L-11.097-46.306Q-10.902-46.286-10.851-46.075L-10.851-45.985Q-10.902-45.771-11.097-45.747L-13.066-45.747L-13.066-44.321Q-12.660-44.524-12.140-44.524Q-11.711-44.524-11.346-44.308Q-10.980-44.091-10.771-43.722Q-10.562-43.353-10.562-42.931Q-10.562-42.458-10.826-42.099Q-11.090-41.739-11.513-41.540Q-11.937-41.341-12.394-41.341Q-12.648-41.341-12.926-41.415Q-13.203-41.489-13.437-41.646Q-13.672-41.802-13.812-42.036Q-13.953-42.271-13.953-42.556Q-13.953-42.724-13.838-42.847Q-13.722-42.970-13.547-42.970Q-13.465-42.970-13.394-42.940Q-13.324-42.911-13.267-42.856Q-13.211-42.802-13.180-42.726Q-13.148-42.649-13.148-42.571Q-13.148-42.411-13.242-42.298M-9.781-42.833Q-9.781-43.118-9.625-43.372Q-9.469-43.626-9.219-43.800Q-8.969-43.974-8.683-44.060Q-8.922-44.134-9.148-44.276Q-9.375-44.419-9.517-44.628Q-9.660-44.837-9.660-45.083Q-9.660-45.481-9.414-45.776Q-9.168-46.071-8.785-46.230Q-8.402-46.388-8.012-46.388Q-7.621-46.388-7.238-46.230Q-6.855-46.071-6.609-45.773Q-6.363-45.474-6.363-45.083Q-6.363-44.837-6.506-44.630Q-6.648-44.423-6.875-44.278Q-7.101-44.134-7.340-44.060Q-6.887-43.923-6.566-43.597Q-6.246-43.271-6.246-42.833Q-6.246-42.396-6.504-42.052Q-6.762-41.708-7.172-41.524Q-7.582-41.341-8.012-41.341Q-8.441-41.341-8.851-41.523Q-9.262-41.704-9.521-42.048Q-9.781-42.392-9.781-42.833M-9.140-42.833Q-9.140-42.560-8.974-42.345Q-8.808-42.130-8.547-42.015Q-8.285-41.899-8.012-41.899Q-7.738-41.899-7.478-42.015Q-7.219-42.130-7.053-42.347Q-6.887-42.564-6.887-42.833Q-6.887-43.110-7.053-43.327Q-7.219-43.544-7.478-43.661Q-7.738-43.778-8.012-43.778Q-8.285-43.778-8.547-43.661Q-8.808-43.544-8.974-43.329Q-9.140-43.114-9.140-42.833M-9.019-45.083Q-9.019-44.845-8.863-44.677Q-8.707-44.509-8.471-44.425Q-8.234-44.341-8.012-44.341Q-7.793-44.341-7.555-44.425Q-7.316-44.509-7.160-44.679Q-7.004-44.849-7.004-45.083Q-7.004-45.317-7.160-45.487Q-7.316-45.657-7.555-45.741Q-7.793-45.825-8.012-45.825Q-8.234-45.825-8.471-45.741Q-8.707-45.657-8.863-45.489Q-9.019-45.321-9.019-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 20.939)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-46.512-41.380Q-46.976-41.380-47.342-41.630Q-47.707-41.880-47.912-42.284Q-48.117-42.689-48.117-43.146Q-48.117-43.489-47.992-43.810Q-47.867-44.130-47.635-44.380Q-47.402-44.630-47.097-44.769Q-46.793-44.907-46.437-44.907Q-45.926-44.907-45.519-44.587L-45.519-45.747L-45.941-45.747Q-46.152-45.771-46.191-45.985L-46.191-46.075Q-46.152-46.282-45.941-46.306L-45.129-46.306Q-44.929-46.282-44.879-46.075L-44.879-41.978L-44.453-41.978Q-44.246-41.954-44.207-41.747L-44.207-41.657Q-44.246-41.442-44.453-41.419L-45.269-41.419Q-45.469-41.442-45.519-41.657L-45.519-41.786Q-45.715-41.595-45.976-41.487Q-46.238-41.380-46.512-41.380M-46.472-41.939Q-46.113-41.939-45.861-42.208Q-45.609-42.478-45.519-42.853L-45.519-43.685Q-45.578-43.872-45.705-44.023Q-45.832-44.173-46.010-44.261Q-46.187-44.349-46.383-44.349Q-46.691-44.349-46.941-44.179Q-47.191-44.009-47.336-43.724Q-47.480-43.439-47.480-43.138Q-47.480-42.689-47.195-42.314Q-46.910-41.939-46.472-41.939M-43.512-41.657L-43.512-41.747Q-43.461-41.954-43.265-41.978L-42.226-41.978L-42.226-44.306L-43.199-44.306Q-43.398-44.329-43.449-44.548L-43.449-44.634Q-43.398-44.845-43.199-44.868L-41.832-44.868Q-41.637-44.849-41.586-44.634L-41.586-41.978L-40.672-41.978Q-40.476-41.954-40.426-41.747L-40.426-41.657Q-40.476-41.442-40.672-41.419L-43.265-41.419Q-43.461-41.442-43.512-41.657M-42.480-45.845L-42.480-45.899Q-42.480-46.071-42.344-46.192Q-42.207-46.314-42.031-46.314Q-41.859-46.314-41.722-46.192Q-41.586-46.071-41.586-45.899L-41.586-45.845Q-41.586-45.669-41.722-45.548Q-41.859-45.427-42.031-45.427Q-42.207-45.427-42.344-45.548Q-42.480-45.669-42.480-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 20.939)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 20.939)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-13.242-42.298Q-13.125-42.095-12.890-41.997Q-12.656-41.899-12.394-41.899Q-12.097-41.899-11.824-42.028Q-11.551-42.157-11.377-42.394Q-11.203-42.630-11.203-42.931Q-11.203-43.185-11.322-43.427Q-11.441-43.669-11.656-43.815Q-11.871-43.962-12.140-43.962Q-12.746-43.962-13.082-43.642Q-13.160-43.556-13.215-43.509Q-13.269-43.462-13.355-43.450L-13.457-43.450Q-13.656-43.474-13.707-43.692L-13.707-46.075Q-13.656-46.282-13.457-46.306L-11.097-46.306Q-10.902-46.286-10.851-46.075L-10.851-45.985Q-10.902-45.771-11.097-45.747L-13.066-45.747L-13.066-44.321Q-12.660-44.524-12.140-44.524Q-11.711-44.524-11.346-44.308Q-10.980-44.091-10.771-43.722Q-10.562-43.353-10.562-42.931Q-10.562-42.458-10.826-42.099Q-11.090-41.739-11.513-41.540Q-11.937-41.341-12.394-41.341Q-12.648-41.341-12.926-41.415Q-13.203-41.489-13.437-41.646Q-13.672-41.802-13.812-42.036Q-13.953-42.271-13.953-42.556Q-13.953-42.724-13.838-42.847Q-13.722-42.970-13.547-42.970Q-13.465-42.970-13.394-42.940Q-13.324-42.911-13.267-42.856Q-13.211-42.802-13.180-42.726Q-13.148-42.649-13.148-42.571Q-13.148-42.411-13.242-42.298M-9.781-42.833Q-9.781-43.118-9.625-43.372Q-9.469-43.626-9.219-43.800Q-8.969-43.974-8.683-44.060Q-8.922-44.134-9.148-44.276Q-9.375-44.419-9.517-44.628Q-9.660-44.837-9.660-45.083Q-9.660-45.481-9.414-45.776Q-9.168-46.071-8.785-46.230Q-8.402-46.388-8.012-46.388Q-7.621-46.388-7.238-46.230Q-6.855-46.071-6.609-45.773Q-6.363-45.474-6.363-45.083Q-6.363-44.837-6.506-44.630Q-6.648-44.423-6.875-44.278Q-7.101-44.134-7.340-44.060Q-6.887-43.923-6.566-43.597Q-6.246-43.271-6.246-42.833Q-6.246-42.396-6.504-42.052Q-6.762-41.708-7.172-41.524Q-7.582-41.341-8.012-41.341Q-8.441-41.341-8.851-41.523Q-9.262-41.704-9.521-42.048Q-9.781-42.392-9.781-42.833M-9.140-42.833Q-9.140-42.560-8.974-42.345Q-8.808-42.130-8.547-42.015Q-8.285-41.899-8.012-41.899Q-7.738-41.899-7.478-42.015Q-7.219-42.130-7.053-42.347Q-6.887-42.564-6.887-42.833Q-6.887-43.110-7.053-43.327Q-7.219-43.544-7.478-43.661Q-7.738-43.778-8.012-43.778Q-8.285-43.778-8.547-43.661Q-8.808-43.544-8.974-43.329Q-9.140-43.114-9.140-42.833M-9.019-45.083Q-9.019-44.845-8.863-44.677Q-8.707-44.509-8.471-44.425Q-8.234-44.341-8.012-44.341Q-7.793-44.341-7.555-44.425Q-7.316-44.509-7.160-44.679Q-7.004-44.849-7.004-45.083Q-7.004-45.317-7.160-45.487Q-7.316-45.657-7.555-45.741Q-7.793-45.825-8.012-45.825Q-8.234-45.825-8.471-45.741Q-8.707-45.657-8.863-45.489Q-9.019-45.321-9.019-45.083\" 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-13.535h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 39.433)\">\u003Cpath d=\"M-56.515-42.466Q-56.515-42.642-56.398-42.763Q-56.281-42.884-56.105-42.884Q-56.023-42.884-55.947-42.853Q-55.871-42.821-55.820-42.771Q-55.769-42.720-55.738-42.640Q-55.707-42.560-55.707-42.481Q-55.707-42.349-55.789-42.235Q-55.519-41.899-54.730-41.899Q-54.304-41.899-53.963-42.165Q-53.621-42.431-53.621-42.845Q-53.621-43.118-53.787-43.337Q-53.953-43.556-54.213-43.667Q-54.472-43.778-54.746-43.778L-55.211-43.778Q-55.422-43.802-55.453-44.021L-55.453-44.106Q-55.422-44.310-55.211-44.341L-54.683-44.380Q-54.469-44.380-54.277-44.503Q-54.086-44.626-53.972-44.829Q-53.859-45.032-53.859-45.243Q-53.859-45.517-54.142-45.671Q-54.426-45.825-54.730-45.825Q-55.293-45.825-55.531-45.634Q-55.469-45.521-55.469-45.411Q-55.469-45.239-55.582-45.126Q-55.695-45.013-55.867-45.013Q-56.043-45.013-56.158-45.136Q-56.273-45.259-56.273-45.427Q-56.273-45.954-55.801-46.171Q-55.328-46.388-54.730-46.388Q-54.390-46.388-54.035-46.257Q-53.679-46.126-53.449-45.868Q-53.219-45.610-53.219-45.243Q-53.219-44.899-53.387-44.595Q-53.554-44.290-53.851-44.091Q-53.480-43.911-53.230-43.575Q-52.980-43.239-52.980-42.845Q-52.980-42.399-53.234-42.058Q-53.488-41.716-53.890-41.528Q-54.293-41.341-54.730-41.341Q-55.015-41.341-55.320-41.396Q-55.625-41.450-55.900-41.577Q-56.176-41.704-56.346-41.927Q-56.515-42.149-56.515-42.466\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 39.433)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.273-41.657L-43.273-41.747Q-43.222-41.954-43.023-41.978L-42.207-41.978L-42.207-45.161Q-42.586-44.853-43.039-44.853Q-43.269-44.853-43.320-45.083L-43.320-45.173Q-43.269-45.388-43.074-45.411Q-42.746-45.411-42.492-45.649Q-42.238-45.888-42.097-46.235Q-42.027-46.364-41.871-46.388L-41.816-46.388Q-41.621-46.368-41.570-46.153L-41.570-41.978L-40.754-41.978Q-40.554-41.954-40.504-41.747L-40.504-41.657Q-40.554-41.442-40.754-41.419L-43.023-41.419Q-43.222-41.442-43.273-41.657M-37.324-42.763L-39.394-42.763Q-39.590-42.786-39.644-43.005L-39.644-43.243Q-39.644-43.317-39.601-43.388L-37.754-46.259Q-37.668-46.388-37.515-46.388L-37.058-46.388Q-36.949-46.388-36.871-46.310Q-36.793-46.231-36.793-46.122L-36.793-43.321L-36.129-43.321Q-35.933-43.298-35.883-43.091L-35.883-43.005Q-35.933-42.786-36.129-42.763L-36.793-42.763L-36.793-41.978L-36.219-41.978Q-36.012-41.954-35.972-41.747L-35.972-41.657Q-36.012-41.442-36.219-41.419L-37.898-41.419Q-38.105-41.442-38.148-41.657L-38.148-41.747Q-38.105-41.954-37.898-41.978L-37.324-41.978L-37.324-42.763M-37.324-45.915L-38.996-43.321L-37.324-43.321\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 38.878)\">\u003Cpath d=\"M-56.250-41.657L-56.250-41.747Q-56.199-41.954-56.004-41.978L-54.965-41.978L-54.965-44.306L-55.937-44.306Q-56.137-44.329-56.187-44.548L-56.187-44.634Q-56.137-44.845-55.937-44.868L-54.570-44.868Q-54.375-44.849-54.324-44.634L-54.324-41.978L-53.410-41.978Q-53.215-41.954-53.164-41.747L-53.164-41.657Q-53.215-41.442-53.410-41.419L-56.004-41.419Q-56.199-41.442-56.250-41.657M-55.219-45.845L-55.219-45.899Q-55.219-46.071-55.082-46.192Q-54.945-46.314-54.769-46.314Q-54.597-46.314-54.461-46.192Q-54.324-46.071-54.324-45.899L-54.324-45.845Q-54.324-45.669-54.461-45.548Q-54.597-45.427-54.769-45.427Q-54.945-45.427-55.082-45.548Q-55.219-45.669-55.219-45.845M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-48.429-41.657L-48.429-41.747Q-48.379-41.958-48.183-41.978L-47.984-41.978L-47.984-44.306L-48.183-44.306Q-48.390-44.329-48.429-44.548L-48.429-44.634Q-48.379-44.849-48.183-44.868L-47.703-44.868Q-47.512-44.845-47.453-44.634Q-47.133-44.907-46.719-44.907Q-46.527-44.907-46.359-44.798Q-46.191-44.689-46.117-44.517Q-45.941-44.708-45.719-44.808Q-45.496-44.907-45.254-44.907Q-44.836-44.907-44.681-44.565Q-44.527-44.224-44.527-43.755L-44.527-41.978L-44.328-41.978Q-44.117-41.954-44.078-41.747L-44.078-41.657Q-44.129-41.442-44.328-41.419L-45.144-41.419Q-45.340-41.442-45.390-41.657L-45.390-41.747Q-45.340-41.954-45.144-41.978L-45.054-41.978L-45.054-43.724Q-45.054-44.349-45.304-44.349Q-45.637-44.349-45.814-44.038Q-45.992-43.728-45.992-43.364L-45.992-41.978L-45.789-41.978Q-45.582-41.954-45.543-41.747L-45.543-41.657Q-45.594-41.442-45.789-41.419L-46.605-41.419Q-46.804-41.442-46.855-41.657L-46.855-41.747Q-46.804-41.954-46.605-41.978L-46.519-41.978L-46.519-43.724Q-46.519-44.349-46.765-44.349Q-47.097-44.349-47.275-44.036Q-47.453-43.724-47.453-43.364L-47.453-41.978L-47.254-41.978Q-47.047-41.954-47.008-41.747L-47.008-41.657Q-47.058-41.439-47.254-41.419L-48.183-41.419Q-48.390-41.442-48.429-41.657M-42.008-41.380Q-42.480-41.380-42.865-41.624Q-43.250-41.868-43.472-42.278Q-43.695-42.689-43.695-43.146Q-43.695-43.489-43.570-43.812Q-43.445-44.134-43.215-44.388Q-42.984-44.642-42.678-44.786Q-42.371-44.931-42.008-44.931Q-41.644-44.931-41.332-44.784Q-41.019-44.638-40.797-44.392Q-40.574-44.146-40.447-43.825Q-40.320-43.505-40.320-43.146Q-40.320-42.689-40.545-42.276Q-40.769-41.864-41.154-41.622Q-41.539-41.380-42.008-41.380M-42.008-41.939Q-41.543-41.939-41.252-42.333Q-40.961-42.728-40.961-43.212Q-40.961-43.505-41.096-43.773Q-41.230-44.040-41.471-44.206Q-41.711-44.372-42.008-44.372Q-42.312-44.372-42.551-44.206Q-42.789-44.040-42.924-43.773Q-43.058-43.505-43.058-43.212Q-43.058-42.731-42.765-42.335Q-42.472-41.939-42.008-41.939M-38.226-41.642L-39.113-44.306L-39.433-44.306Q-39.633-44.329-39.683-44.548L-39.683-44.634Q-39.633-44.845-39.433-44.868L-38.273-44.868Q-38.078-44.849-38.027-44.634L-38.027-44.548Q-38.078-44.329-38.273-44.306L-38.554-44.306L-37.762-41.931L-36.972-44.306L-37.250-44.306Q-37.449-44.329-37.500-44.548L-37.500-44.634Q-37.449-44.845-37.250-44.868L-36.090-44.868Q-35.894-44.845-35.844-44.634L-35.844-44.548Q-35.894-44.329-36.090-44.306L-36.410-44.306L-37.297-41.642Q-37.340-41.528-37.441-41.454Q-37.543-41.380-37.668-41.380L-37.859-41.380Q-37.976-41.380-38.080-41.452Q-38.183-41.524-38.226-41.642M-33.324-39.876L-33.324-39.962Q-33.273-40.181-33.078-40.204L-32.613-40.204L-32.613-41.802Q-33.066-41.380-33.676-41.380Q-34.031-41.380-34.336-41.523Q-34.640-41.665-34.873-41.915Q-35.105-42.165-35.230-42.487Q-35.355-42.810-35.355-43.146Q-35.355-43.630-35.117-44.030Q-34.879-44.431-34.472-44.669Q-34.066-44.907-33.590-44.907Q-33.027-44.907-32.613-44.517L-32.613-44.677Q-32.562-44.888-32.363-44.907L-32.222-44.907Q-32.023-44.884-31.972-44.677L-31.972-40.204L-31.508-40.204Q-31.312-40.181-31.262-39.962L-31.262-39.876Q-31.312-39.665-31.508-39.642L-33.078-39.642Q-33.273-39.665-33.324-39.876M-33.629-41.939Q-33.258-41.939-32.982-42.192Q-32.707-42.446-32.613-42.810L-32.613-43.427Q-32.656-43.665-32.779-43.878Q-32.902-44.091-33.099-44.220Q-33.297-44.349-33.539-44.349Q-33.855-44.349-34.127-44.183Q-34.398-44.017-34.556-43.735Q-34.715-43.454-34.715-43.138Q-34.715-42.673-34.400-42.306Q-34.086-41.939-33.629-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 38.878)\">\u003Cpath d=\"M-25.277-40.985L-25.277-41.396Q-25.879-41.462-26.262-41.831Q-26.644-42.200-26.644-42.794Q-26.644-42.970-26.527-43.091Q-26.410-43.212-26.238-43.212Q-26.160-43.212-26.080-43.181Q-26-43.149-25.949-43.099Q-25.898-43.048-25.867-42.968Q-25.836-42.888-25.836-42.810Q-25.836-42.610-25.965-42.517Q-25.898-42.290-25.715-42.151Q-25.531-42.013-25.277-41.962L-25.277-43.692Q-25.855-43.814-26.250-44.140Q-26.644-44.466-26.644-45.013Q-26.644-45.532-26.232-45.894Q-25.820-46.255-25.277-46.329L-25.277-46.739Q-25.226-46.946-25.027-46.970L-24.965-46.970Q-24.769-46.950-24.719-46.739L-24.719-46.329Q-24.340-46.294-24.029-46.136Q-23.719-45.978-23.533-45.696Q-23.347-45.415-23.347-45.028Q-23.347-44.856-23.461-44.733Q-23.574-44.610-23.750-44.610Q-23.918-44.610-24.037-44.726Q-24.156-44.841-24.156-45.013Q-24.156-45.189-24.039-45.306Q-24.113-45.505-24.297-45.618Q-24.480-45.731-24.719-45.763L-24.719-44.228Q-24.351-44.153-24.035-43.968Q-23.719-43.782-23.533-43.491Q-23.347-43.200-23.347-42.810Q-23.347-42.532-23.457-42.294Q-23.566-42.056-23.765-41.862Q-23.965-41.669-24.215-41.554Q-24.465-41.439-24.719-41.403L-24.719-40.985Q-24.769-40.778-24.965-40.755L-25.027-40.755Q-25.226-40.774-25.277-40.985M-24.719-43.579L-24.719-41.970Q-24.406-42.040-24.174-42.257Q-23.941-42.474-23.941-42.771Q-23.941-42.978-24.049-43.142Q-24.156-43.306-24.334-43.417Q-24.512-43.528-24.719-43.579M-26.055-45.052Q-26.055-44.774-25.824-44.597Q-25.594-44.419-25.277-44.349L-25.277-45.763Q-25.574-45.708-25.814-45.519Q-26.055-45.329-26.055-45.052M-20.312-42.763L-22.383-42.763Q-22.578-42.786-22.633-43.005L-22.633-43.243Q-22.633-43.317-22.590-43.388L-20.742-46.259Q-20.656-46.388-20.504-46.388L-20.047-46.388Q-19.937-46.388-19.859-46.310Q-19.781-46.231-19.781-46.122L-19.781-43.321L-19.117-43.321Q-18.922-43.298-18.871-43.091L-18.871-43.005Q-18.922-42.786-19.117-42.763L-19.781-42.763L-19.781-41.978L-19.207-41.978Q-19-41.954-18.961-41.747L-18.961-41.657Q-19-41.442-19.207-41.419L-20.887-41.419Q-21.094-41.442-21.137-41.657L-21.137-41.747Q-21.094-41.954-20.887-41.978L-20.312-41.978L-20.312-42.763M-20.312-45.915L-21.984-43.321L-20.312-43.321L-20.312-45.915M-16.906-40.306Q-17.019-40.306-17.109-40.396Q-17.199-40.485-17.199-40.595Q-17.199-40.771-17.008-40.845Q-16.789-40.896-16.617-41.054Q-16.445-41.212-16.379-41.435Q-16.402-41.435-16.433-41.419L-16.496-41.419Q-16.726-41.419-16.892-41.581Q-17.058-41.743-17.058-41.978Q-17.058-42.212-16.894-42.372Q-16.730-42.532-16.496-42.532Q-16.285-42.532-16.121-42.411Q-15.957-42.290-15.867-42.097Q-15.777-41.903-15.777-41.692Q-15.777-41.216-16.076-40.827Q-16.375-40.439-16.840-40.314Q-16.863-40.306-16.906-40.306M-13.699-41.060Q-13.699-41.114-13.676-41.181L-11.410-46.786Q-11.316-46.970-11.121-46.970Q-10.996-46.970-10.908-46.882Q-10.820-46.794-10.820-46.665Q-10.820-46.606-10.844-46.548L-13.105-40.939Q-13.207-40.755-13.387-40.755Q-13.512-40.755-13.605-40.845Q-13.699-40.935-13.699-41.060M-11.121-40.755Q-11.472-40.755-11.654-41.095Q-11.836-41.435-11.836-41.817Q-11.836-42.204-11.656-42.544Q-11.476-42.884-11.121-42.884Q-10.883-42.884-10.724-42.714Q-10.566-42.544-10.492-42.300Q-10.418-42.056-10.418-41.817Q-10.418-41.583-10.492-41.339Q-10.566-41.095-10.724-40.925Q-10.883-40.755-11.121-40.755M-11.121-41.314Q-11.039-41.345-10.992-41.513Q-10.945-41.681-10.945-41.817Q-10.945-41.954-10.992-42.124Q-11.039-42.294-11.121-42.321Q-11.207-42.294-11.258-42.126Q-11.308-41.958-11.308-41.817Q-11.308-41.689-11.258-41.517Q-11.207-41.345-11.121-41.314M-13.387-44.833Q-13.629-44.833-13.789-45.003Q-13.949-45.173-14.023-45.419Q-14.097-45.665-14.097-45.907Q-14.097-46.290-13.918-46.630Q-13.738-46.970-13.387-46.970Q-13.148-46.970-12.990-46.800Q-12.832-46.630-12.758-46.386Q-12.683-46.142-12.683-45.907Q-12.683-45.665-12.758-45.419Q-12.832-45.173-12.990-45.003Q-13.148-44.833-13.387-44.833M-13.387-45.396Q-13.297-45.439-13.254-45.595Q-13.211-45.751-13.211-45.907Q-13.211-46.036-13.258-46.212Q-13.305-46.388-13.394-46.411Q-13.410-46.411-13.439-46.376Q-13.469-46.341-13.476-46.321Q-13.570-46.134-13.570-45.907Q-13.570-45.771-13.521-45.599Q-13.472-45.427-13.387-45.396M-9.910-41.657L-9.910-41.747Q-9.851-41.954-9.660-41.978L-8.949-41.978L-8.949-44.306L-9.660-44.306Q-9.855-44.329-9.910-44.548L-9.910-44.634Q-9.851-44.845-9.660-44.868L-8.558-44.868Q-8.359-44.849-8.308-44.634L-8.308-44.306Q-8.047-44.591-7.691-44.749Q-7.336-44.907-6.949-44.907Q-6.656-44.907-6.422-44.773Q-6.187-44.638-6.187-44.372Q-6.187-44.204-6.297-44.087Q-6.406-43.970-6.574-43.970Q-6.726-43.970-6.842-44.081Q-6.957-44.192-6.957-44.349Q-7.332-44.349-7.646-44.148Q-7.961-43.946-8.135-43.612Q-8.308-43.278-8.308-42.899L-8.308-41.978L-7.363-41.978Q-7.156-41.954-7.117-41.747L-7.117-41.657Q-7.156-41.442-7.363-41.419L-9.660-41.419Q-9.851-41.442-9.910-41.657M-5.301-41.618L-5.301-42.532Q-5.273-42.739-5.062-42.763L-4.894-42.763Q-4.730-42.739-4.672-42.579Q-4.469-41.939-3.742-41.939Q-3.535-41.939-3.306-41.974Q-3.078-42.009-2.910-42.124Q-2.742-42.239-2.742-42.442Q-2.742-42.653-2.965-42.767Q-3.187-42.880-3.461-42.923L-4.160-43.036Q-5.301-43.247-5.301-43.970Q-5.301-44.259-5.156-44.448Q-5.012-44.638-4.771-44.745Q-4.531-44.853-4.275-44.892Q-4.019-44.931-3.742-44.931Q-3.492-44.931-3.299-44.901Q-3.105-44.872-2.941-44.794Q-2.863-44.911-2.734-44.931L-2.656-44.931Q-2.558-44.919-2.496-44.856Q-2.433-44.794-2.422-44.700L-2.422-43.993Q-2.433-43.899-2.496-43.833Q-2.558-43.767-2.656-43.755L-2.824-43.755Q-2.918-43.767-2.984-43.833Q-3.051-43.899-3.062-43.993Q-3.062-44.372-3.758-44.372Q-4.105-44.372-4.424-44.290Q-4.742-44.208-4.742-43.962Q-4.742-43.696-4.070-43.587L-3.367-43.466Q-2.883-43.384-2.533-43.136Q-2.183-42.888-2.183-42.442Q-2.183-42.052-2.420-41.810Q-2.656-41.567-3.006-41.474Q-3.355-41.380-3.742-41.380Q-4.320-41.380-4.719-41.634Q-4.789-41.509-4.838-41.452Q-4.887-41.396-4.992-41.380L-5.062-41.380Q-5.277-41.403-5.301-41.618M-1.023-41.657L-1.023-41.747Q-0.972-41.954-0.777-41.978L0.262-41.978L0.262-44.306L-0.711-44.306Q-0.910-44.329-0.961-44.548L-0.961-44.634Q-0.910-44.845-0.711-44.868L0.656-44.868Q0.852-44.849 0.903-44.634L0.903-41.978L1.817-41.978Q2.012-41.954 2.063-41.747L2.063-41.657Q2.012-41.442 1.817-41.419L-0.777-41.419Q-0.972-41.442-1.023-41.657M0.008-45.845L0.008-45.899Q0.008-46.071 0.145-46.192Q0.281-46.314 0.457-46.314Q0.629-46.314 0.766-46.192Q0.903-46.071 0.903-45.899L0.903-45.845Q0.903-45.669 0.766-45.548Q0.629-45.427 0.457-45.427Q0.281-45.427 0.145-45.548Q0.008-45.669 0.008-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 39.433)\">\u003Cpath d=\"M-55.211-41.642L-56.097-44.306L-56.418-44.306Q-56.617-44.329-56.668-44.548L-56.668-44.634Q-56.617-44.845-56.418-44.868L-55.258-44.868Q-55.062-44.849-55.012-44.634L-55.012-44.548Q-55.062-44.329-55.258-44.306L-55.539-44.306L-54.746-41.931L-53.957-44.306L-54.234-44.306Q-54.433-44.329-54.484-44.548L-54.484-44.634Q-54.433-44.845-54.234-44.868L-53.074-44.868Q-52.879-44.845-52.828-44.634L-52.828-44.548Q-52.879-44.329-53.074-44.306L-53.394-44.306L-54.281-41.642Q-54.324-41.528-54.426-41.454Q-54.527-41.380-54.652-41.380L-54.844-41.380Q-54.961-41.380-55.064-41.452Q-55.168-41.524-55.211-41.642M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-43.945-41.657L-43.945-41.747Q-43.906-41.954-43.695-41.978L-43.387-41.978L-43.387-45.747L-43.695-45.747Q-43.906-45.771-43.945-45.985L-43.945-46.075Q-43.906-46.282-43.695-46.306L-40.488-46.306Q-40.293-46.282-40.242-46.075L-40.242-45.235Q-40.293-45.021-40.488-44.993L-40.633-44.993Q-40.828-45.021-40.883-45.235L-40.883-45.747L-42.746-45.747L-42.746-44.228L-41.769-44.228L-41.769-44.442Q-41.719-44.649-41.519-44.677L-41.375-44.677Q-41.179-44.649-41.129-44.442L-41.129-43.458Q-41.179-43.243-41.375-43.220L-41.519-43.220Q-41.719-43.243-41.769-43.458L-41.769-43.665L-42.746-43.665L-42.746-41.978L-40.703-41.978L-40.703-42.618Q-40.652-42.825-40.457-42.853L-40.312-42.853Q-40.117-42.825-40.066-42.618L-40.066-41.657Q-40.117-41.439-40.312-41.419L-43.695-41.419Q-43.906-41.442-43.945-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 39.433)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 39.433)\">\u003Cpath d=\"M-24.558-42.763L-26.629-42.763Q-26.824-42.786-26.879-43.005L-26.879-43.243Q-26.879-43.317-26.836-43.388L-24.988-46.259Q-24.902-46.388-24.750-46.388L-24.293-46.388Q-24.183-46.388-24.105-46.310Q-24.027-46.231-24.027-46.122L-24.027-43.321L-23.363-43.321Q-23.168-43.298-23.117-43.091L-23.117-43.005Q-23.168-42.786-23.363-42.763L-24.027-42.763L-24.027-41.978L-23.453-41.978Q-23.246-41.954-23.207-41.747L-23.207-41.657Q-23.246-41.442-23.453-41.419L-25.133-41.419Q-25.340-41.442-25.383-41.657L-25.383-41.747Q-25.340-41.954-25.133-41.978L-24.558-41.978L-24.558-42.763M-24.558-45.915L-26.230-43.321L-24.558-43.321\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 39.433)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-43.512-41.657L-43.512-41.747Q-43.461-41.954-43.265-41.978L-42.226-41.978L-42.226-44.306L-43.199-44.306Q-43.398-44.329-43.449-44.548L-43.449-44.634Q-43.398-44.845-43.199-44.868L-41.832-44.868Q-41.637-44.849-41.586-44.634L-41.586-41.978L-40.672-41.978Q-40.476-41.954-40.426-41.747L-40.426-41.657Q-40.476-41.442-40.672-41.419L-43.265-41.419Q-43.461-41.442-43.512-41.657M-42.480-45.845L-42.480-45.899Q-42.480-46.071-42.344-46.192Q-42.207-46.314-42.031-46.314Q-41.859-46.314-41.722-46.192Q-41.586-46.071-41.586-45.899L-41.586-45.845Q-41.586-45.669-41.722-45.548Q-41.859-45.427-42.031-45.427Q-42.207-45.427-42.344-45.548Q-42.480-45.669-42.480-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 39.433)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 39.433)\">\u003Cpath d=\"M-24.558-42.763L-26.629-42.763Q-26.824-42.786-26.879-43.005L-26.879-43.243Q-26.879-43.317-26.836-43.388L-24.988-46.259Q-24.902-46.388-24.750-46.388L-24.293-46.388Q-24.183-46.388-24.105-46.310Q-24.027-46.231-24.027-46.122L-24.027-43.321L-23.363-43.321Q-23.168-43.298-23.117-43.091L-23.117-43.005Q-23.168-42.786-23.363-42.763L-24.027-42.763L-24.027-41.978L-23.453-41.978Q-23.246-41.954-23.207-41.747L-23.207-41.657Q-23.246-41.442-23.453-41.419L-25.133-41.419Q-25.340-41.442-25.383-41.657L-25.383-41.747Q-25.340-41.954-25.133-41.978L-24.558-41.978L-24.558-42.763M-24.558-45.915L-26.230-43.321L-24.558-43.321\" 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 4.96h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 57.927)\">\u003Cpath d=\"M-54.308-42.763L-56.379-42.763Q-56.574-42.786-56.629-43.005L-56.629-43.243Q-56.629-43.317-56.586-43.388L-54.738-46.259Q-54.652-46.388-54.500-46.388L-54.043-46.388Q-53.933-46.388-53.855-46.310Q-53.777-46.231-53.777-46.122L-53.777-43.321L-53.113-43.321Q-52.918-43.298-52.867-43.091L-52.867-43.005Q-52.918-42.786-53.113-42.763L-53.777-42.763L-53.777-41.978L-53.203-41.978Q-52.996-41.954-52.957-41.747L-52.957-41.657Q-52.996-41.442-53.203-41.419L-54.883-41.419Q-55.090-41.442-55.133-41.657L-55.133-41.747Q-55.090-41.954-54.883-41.978L-54.308-41.978L-54.308-42.763M-54.308-45.915L-55.980-43.321L-54.308-43.321\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 57.927)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.273-41.657L-43.273-41.747Q-43.222-41.954-43.023-41.978L-42.207-41.978L-42.207-45.161Q-42.586-44.853-43.039-44.853Q-43.269-44.853-43.320-45.083L-43.320-45.173Q-43.269-45.388-43.074-45.411Q-42.746-45.411-42.492-45.649Q-42.238-45.888-42.097-46.235Q-42.027-46.364-41.871-46.388L-41.816-46.388Q-41.621-46.368-41.570-46.153L-41.570-41.978L-40.754-41.978Q-40.554-41.954-40.504-41.747L-40.504-41.657Q-40.554-41.442-40.754-41.419L-43.023-41.419Q-43.222-41.442-43.273-41.657M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 57.927)\">\u003Cpath d=\"M-56.308-43.146Q-56.308-43.626-56.064-44.040Q-55.820-44.454-55.404-44.692Q-54.988-44.931-54.508-44.931Q-53.953-44.931-53.574-44.821Q-53.195-44.712-53.195-44.306Q-53.195-44.138-53.308-44.015Q-53.422-43.892-53.594-43.892Q-53.765-43.892-53.885-44.007Q-54.004-44.122-54.004-44.290L-54.004-44.349Q-54.164-44.372-54.500-44.372Q-54.828-44.372-55.096-44.202Q-55.363-44.032-55.515-43.749Q-55.668-43.466-55.668-43.146Q-55.668-42.825-55.496-42.544Q-55.324-42.263-55.039-42.101Q-54.754-41.939-54.426-41.939Q-54.113-41.939-53.986-42.042Q-53.859-42.146-53.742-42.335Q-53.625-42.524-53.508-42.540L-53.340-42.540Q-53.234-42.528-53.170-42.460Q-53.105-42.392-53.105-42.290Q-53.105-42.243-53.125-42.204Q-53.234-41.911-53.437-41.731Q-53.640-41.552-53.916-41.466Q-54.191-41.380-54.508-41.380Q-54.992-41.380-55.408-41.618Q-55.824-41.856-56.066-42.259Q-56.308-42.661-56.308-43.146M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-43.679-41.657L-43.679-41.747Q-43.629-41.954-43.433-41.978L-42.328-41.978L-42.328-45.747L-43.433-45.747Q-43.629-45.771-43.679-45.985L-43.679-46.075Q-43.629-46.282-43.433-46.306L-41.937-46.306Q-41.746-46.282-41.687-46.075L-41.687-41.978L-40.586-41.978Q-40.387-41.954-40.336-41.747L-40.336-41.657Q-40.387-41.442-40.586-41.419L-43.433-41.419Q-43.629-41.442-43.679-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 57.927)\">\u003Cpath d=\"M-35.031-41.618L-35.031-42.532Q-35.004-42.739-34.793-42.763L-34.625-42.763Q-34.461-42.739-34.402-42.579Q-34.199-41.939-33.472-41.939Q-33.265-41.939-33.037-41.974Q-32.808-42.009-32.640-42.124Q-32.472-42.239-32.472-42.442Q-32.472-42.653-32.695-42.767Q-32.918-42.880-33.191-42.923L-33.890-43.036Q-35.031-43.247-35.031-43.970Q-35.031-44.259-34.887-44.448Q-34.742-44.638-34.502-44.745Q-34.262-44.853-34.006-44.892Q-33.750-44.931-33.472-44.931Q-33.222-44.931-33.029-44.901Q-32.836-44.872-32.672-44.794Q-32.594-44.911-32.465-44.931L-32.387-44.931Q-32.289-44.919-32.226-44.856Q-32.164-44.794-32.152-44.700L-32.152-43.993Q-32.164-43.899-32.226-43.833Q-32.289-43.767-32.387-43.755L-32.554-43.755Q-32.648-43.767-32.715-43.833Q-32.781-43.899-32.793-43.993Q-32.793-44.372-33.488-44.372Q-33.836-44.372-34.154-44.290Q-34.472-44.208-34.472-43.962Q-34.472-43.696-33.801-43.587L-33.097-43.466Q-32.613-43.384-32.263-43.136Q-31.914-42.888-31.914-42.442Q-31.914-42.052-32.150-41.810Q-32.387-41.567-32.736-41.474Q-33.086-41.380-33.472-41.380Q-34.051-41.380-34.449-41.634Q-34.519-41.509-34.568-41.452Q-34.617-41.396-34.722-41.380L-34.793-41.380Q-35.008-41.403-35.031-41.618M-30.629-42.274L-30.629-44.306L-31.051-44.306Q-31.258-44.329-31.301-44.548L-31.301-44.634Q-31.254-44.845-31.051-44.868L-30.234-44.868Q-30.039-44.845-29.988-44.634L-29.988-42.306Q-29.988-42.071-29.818-42.005Q-29.648-41.939-29.363-41.939Q-29.156-41.939-28.961-42.015Q-28.765-42.091-28.640-42.241Q-28.515-42.392-28.515-42.603L-28.515-44.306L-28.937-44.306Q-29.148-44.329-29.187-44.548L-29.187-44.634Q-29.148-44.845-28.937-44.868L-28.125-44.868Q-27.926-44.845-27.875-44.634L-27.875-41.978L-27.449-41.978Q-27.242-41.954-27.203-41.747L-27.203-41.657Q-27.242-41.442-27.449-41.419L-28.265-41.419Q-28.465-41.442-28.515-41.642Q-28.918-41.380-29.426-41.380Q-29.660-41.380-29.875-41.421Q-30.090-41.462-30.256-41.564Q-30.422-41.665-30.525-41.843Q-30.629-42.021-30.629-42.274M-27.179-41.657L-27.179-41.747Q-27.129-41.958-26.933-41.978L-26.734-41.978L-26.734-44.306L-26.933-44.306Q-27.140-44.329-27.179-44.548L-27.179-44.634Q-27.129-44.849-26.933-44.868L-26.453-44.868Q-26.262-44.845-26.203-44.634Q-25.883-44.907-25.469-44.907Q-25.277-44.907-25.109-44.798Q-24.941-44.689-24.867-44.517Q-24.691-44.708-24.469-44.808Q-24.246-44.907-24.004-44.907Q-23.586-44.907-23.431-44.565Q-23.277-44.224-23.277-43.755L-23.277-41.978L-23.078-41.978Q-22.867-41.954-22.828-41.747L-22.828-41.657Q-22.879-41.442-23.078-41.419L-23.894-41.419Q-24.090-41.442-24.140-41.657L-24.140-41.747Q-24.090-41.954-23.894-41.978L-23.804-41.978L-23.804-43.724Q-23.804-44.349-24.054-44.349Q-24.387-44.349-24.564-44.038Q-24.742-43.728-24.742-43.364L-24.742-41.978L-24.539-41.978Q-24.332-41.954-24.293-41.747L-24.293-41.657Q-24.344-41.442-24.539-41.419L-25.355-41.419Q-25.554-41.442-25.605-41.657L-25.605-41.747Q-25.554-41.954-25.355-41.978L-25.269-41.978L-25.269-43.724Q-25.269-44.349-25.515-44.349Q-25.847-44.349-26.025-44.036Q-26.203-43.724-26.203-43.364L-26.203-41.978L-26.004-41.978Q-25.797-41.954-25.758-41.747L-25.758-41.657Q-25.808-41.439-26.004-41.419L-26.933-41.419Q-27.140-41.442-27.179-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 57.927)\">\u003Cpath d=\"M-56.754-41.657L-56.754-41.747Q-56.703-41.954-56.508-41.978L-56.332-41.978L-56.332-45.747L-56.508-45.747Q-56.703-45.771-56.754-45.985L-56.754-46.075Q-56.703-46.282-56.508-46.306L-55.820-46.306Q-55.691-46.306-55.592-46.230Q-55.492-46.153-55.453-46.044Q-55.422-45.939-55.199-45.249Q-54.976-44.560-54.861-44.163Q-54.746-43.767-54.746-43.692Q-54.738-43.771-54.683-43.968Q-54.629-44.165-54.515-44.536Q-54.402-44.907-54.256-45.370Q-54.109-45.833-54.043-46.044Q-54.004-46.153-53.900-46.230Q-53.797-46.306-53.676-46.306L-52.988-46.306Q-52.789-46.282-52.738-46.075L-52.738-45.985Q-52.789-45.771-52.988-45.747L-53.164-45.747L-53.164-41.978L-52.988-41.978Q-52.789-41.954-52.738-41.747L-52.738-41.657Q-52.789-41.442-52.988-41.419L-53.867-41.419Q-54.062-41.442-54.113-41.657L-54.113-41.747Q-54.062-41.954-53.867-41.978L-53.691-41.978L-53.691-45.665Q-53.691-45.606-53.775-45.308Q-53.859-45.009-53.963-44.677Q-54.066-44.345-54.197-43.937Q-54.328-43.528-54.394-43.314Q-54.433-43.200-54.533-43.126Q-54.633-43.052-54.746-43.052Q-54.859-43.052-54.959-43.126Q-55.058-43.200-55.097-43.314Q-55.164-43.528-55.299-43.946Q-55.433-44.364-55.570-44.808Q-55.707-45.251-55.752-45.415Q-55.797-45.579-55.804-45.665L-55.804-41.978L-55.629-41.978Q-55.429-41.954-55.379-41.747L-55.379-41.657Q-55.429-41.442-55.629-41.419L-56.508-41.419Q-56.703-41.442-56.754-41.657M-50.887-40.985L-50.887-46.739Q-50.828-46.946-50.637-46.970L-48.957-46.970Q-48.762-46.950-48.711-46.739L-48.711-46.649Q-48.762-46.435-48.957-46.411L-50.246-46.411L-50.246-41.314L-48.957-41.314Q-48.762-41.294-48.711-41.075L-48.711-40.985Q-48.762-40.778-48.957-40.755L-50.637-40.755Q-50.828-40.774-50.887-40.985M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.871-41.657L-43.871-41.747Q-43.832-41.954-43.625-41.978L-43.219-41.978L-42.289-43.196L-43.160-44.306L-43.578-44.306Q-43.773-44.325-43.824-44.548L-43.824-44.634Q-43.773-44.845-43.578-44.868L-42.418-44.868Q-42.219-44.845-42.168-44.634L-42.168-44.548Q-42.219-44.329-42.418-44.306L-42.527-44.306L-42.031-43.649L-41.554-44.306L-41.672-44.306Q-41.871-44.329-41.922-44.548L-41.922-44.634Q-41.871-44.845-41.672-44.868L-40.512-44.868Q-40.316-44.849-40.265-44.634L-40.265-44.548Q-40.316-44.329-40.512-44.306L-40.922-44.306L-41.769-43.196L-40.808-41.978L-40.402-41.978Q-40.203-41.954-40.152-41.747L-40.152-41.657Q-40.191-41.442-40.402-41.419L-41.554-41.419Q-41.762-41.442-41.801-41.657L-41.801-41.747Q-41.762-41.954-41.554-41.978L-41.426-41.978L-42.031-42.833L-42.617-41.978L-42.472-41.978Q-42.265-41.954-42.226-41.747L-42.226-41.657Q-42.265-41.442-42.472-41.419L-43.625-41.419Q-43.820-41.439-43.871-41.657M-39.027-41.657L-39.027-41.747Q-38.976-41.954-38.777-41.978L-37.961-41.978L-37.961-45.161Q-38.340-44.853-38.793-44.853Q-39.023-44.853-39.074-45.083L-39.074-45.173Q-39.023-45.388-38.828-45.411Q-38.500-45.411-38.246-45.649Q-37.992-45.888-37.851-46.235Q-37.781-46.364-37.625-46.388L-37.570-46.388Q-37.375-46.368-37.324-46.153L-37.324-41.978L-36.508-41.978Q-36.308-41.954-36.258-41.747L-36.258-41.657Q-36.308-41.442-36.508-41.419L-38.777-41.419Q-38.976-41.442-39.027-41.657M-35.316-41.657L-35.316-41.747Q-35.265-41.954-35.070-41.978L-34.187-41.978L-34.187-44.306L-35.043-44.306Q-35.242-44.329-35.293-44.548L-35.293-44.634Q-35.242-44.845-35.043-44.868L-34.187-44.868L-34.187-45.321Q-34.187-45.786-33.781-46.067Q-33.375-46.349-32.894-46.349Q-32.582-46.349-32.338-46.228Q-32.094-46.106-32.094-45.825Q-32.094-45.661-32.203-45.544Q-32.312-45.427-32.476-45.427Q-32.625-45.427-32.746-45.532Q-32.867-45.638-32.867-45.786L-32.949-45.786Q-33.101-45.786-33.238-45.726Q-33.375-45.665-33.461-45.550Q-33.547-45.435-33.547-45.290L-33.547-44.868L-32.515-44.868Q-32.320-44.849-32.269-44.634L-32.269-44.548Q-32.320-44.329-32.515-44.306L-33.547-44.306L-33.547-41.978L-32.668-41.978Q-32.472-41.954-32.422-41.747L-32.422-41.657Q-32.472-41.442-32.668-41.419L-35.070-41.419Q-35.265-41.442-35.316-41.657M-31.039-42.833Q-31.039-43.118-30.883-43.372Q-30.726-43.626-30.476-43.800Q-30.226-43.974-29.941-44.060Q-30.179-44.134-30.406-44.276Q-30.633-44.419-30.775-44.628Q-30.918-44.837-30.918-45.083Q-30.918-45.481-30.672-45.776Q-30.426-46.071-30.043-46.230Q-29.660-46.388-29.269-46.388Q-28.879-46.388-28.496-46.230Q-28.113-46.071-27.867-45.773Q-27.621-45.474-27.621-45.083Q-27.621-44.837-27.763-44.630Q-27.906-44.423-28.133-44.278Q-28.359-44.134-28.597-44.060Q-28.144-43.923-27.824-43.597Q-27.504-43.271-27.504-42.833Q-27.504-42.396-27.762-42.052Q-28.019-41.708-28.429-41.524Q-28.840-41.341-29.269-41.341Q-29.699-41.341-30.109-41.523Q-30.519-41.704-30.779-42.048Q-31.039-42.392-31.039-42.833M-30.398-42.833Q-30.398-42.560-30.232-42.345Q-30.066-42.130-29.804-42.015Q-29.543-41.899-29.269-41.899Q-28.996-41.899-28.736-42.015Q-28.476-42.130-28.310-42.347Q-28.144-42.564-28.144-42.833Q-28.144-43.110-28.310-43.327Q-28.476-43.544-28.736-43.661Q-28.996-43.778-29.269-43.778Q-29.543-43.778-29.804-43.661Q-30.066-43.544-30.232-43.329Q-30.398-43.114-30.398-42.833M-30.277-45.083Q-30.277-44.845-30.121-44.677Q-29.965-44.509-29.728-44.425Q-29.492-44.341-29.269-44.341Q-29.051-44.341-28.812-44.425Q-28.574-44.509-28.418-44.679Q-28.262-44.849-28.262-45.083Q-28.262-45.317-28.418-45.487Q-28.574-45.657-28.812-45.741Q-29.051-45.825-29.269-45.825Q-29.492-45.825-29.728-45.741Q-29.965-45.657-30.121-45.489Q-30.277-45.321-30.277-45.083M-26.816-40.985L-26.816-41.075Q-26.765-41.290-26.570-41.314L-25.281-41.314L-25.281-46.411L-26.570-46.411Q-26.765-46.435-26.816-46.649L-26.816-46.739Q-26.765-46.946-26.570-46.970L-24.887-46.970Q-24.691-46.946-24.640-46.739L-24.640-40.985Q-24.691-40.778-24.887-40.755L-26.570-40.755Q-26.765-40.778-26.816-40.985\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 57.927)\">\u003Cpath d=\"M-14.969-42.954L-18.015-42.954Q-18.137-42.966-18.224-43.050Q-18.312-43.134-18.312-43.259Q-18.312-43.384-18.228-43.468Q-18.144-43.552-18.015-43.571L-14.969-43.571Q-14.844-43.552-14.762-43.468Q-14.680-43.384-14.680-43.259Q-14.680-43.134-14.763-43.050Q-14.847-42.966-14.969-42.954M-14.969-44.161L-18.015-44.161Q-18.148-44.181-18.230-44.259Q-18.312-44.337-18.312-44.466Q-18.312-44.591-18.228-44.675Q-18.144-44.759-18.015-44.778L-14.969-44.778Q-14.844-44.759-14.762-44.675Q-14.680-44.591-14.680-44.466Q-14.680-44.337-14.760-44.259Q-14.840-44.181-14.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 57.927)\">\u003Cpath d=\"M-7.996-41.341Q-8.430-41.341-8.762-41.579Q-9.094-41.817-9.314-42.206Q-9.535-42.595-9.642-43.032Q-9.750-43.470-9.750-43.868Q-9.750-44.259-9.640-44.702Q-9.531-45.146-9.314-45.526Q-9.097-45.907-8.763-46.148Q-8.430-46.388-7.996-46.388Q-7.441-46.388-7.041-45.989Q-6.640-45.591-6.443-45.005Q-6.246-44.419-6.246-43.868Q-6.246-43.314-6.443-42.726Q-6.640-42.138-7.041-41.739Q-7.441-41.341-7.996-41.341M-7.996-41.899Q-7.695-41.899-7.478-42.116Q-7.262-42.333-7.135-42.661Q-7.008-42.989-6.947-43.335Q-6.887-43.681-6.887-43.962Q-6.887-44.212-6.949-44.538Q-7.012-44.864-7.142-45.155Q-7.273-45.446-7.486-45.636Q-7.699-45.825-7.996-45.825Q-8.371-45.825-8.623-45.513Q-8.875-45.200-8.992-44.767Q-9.109-44.333-9.109-43.962Q-9.109-43.564-8.996-43.083Q-8.883-42.603-8.635-42.251Q-8.387-41.899-7.996-41.899M-5.613-41.657L-5.613-41.747Q-5.574-41.954-5.367-41.978L-4.961-41.978L-4.031-43.196L-4.902-44.306L-5.320-44.306Q-5.515-44.325-5.566-44.548L-5.566-44.634Q-5.515-44.845-5.320-44.868L-4.160-44.868Q-3.961-44.845-3.910-44.634L-3.910-44.548Q-3.961-44.329-4.160-44.306L-4.269-44.306L-3.773-43.649L-3.297-44.306L-3.414-44.306Q-3.613-44.329-3.664-44.548L-3.664-44.634Q-3.613-44.845-3.414-44.868L-2.254-44.868Q-2.058-44.849-2.008-44.634L-2.008-44.548Q-2.058-44.329-2.254-44.306L-2.664-44.306L-3.512-43.196L-2.551-41.978L-2.144-41.978Q-1.945-41.954-1.894-41.747L-1.894-41.657Q-1.933-41.442-2.144-41.419L-3.297-41.419Q-3.504-41.442-3.543-41.657L-3.543-41.747Q-3.504-41.954-3.297-41.978L-3.168-41.978L-3.773-42.833L-4.359-41.978L-4.215-41.978Q-4.008-41.954-3.969-41.747L-3.969-41.657Q-4.008-41.442-4.215-41.419L-5.367-41.419Q-5.562-41.439-5.613-41.657M0.496-41.341Q0.063-41.341-0.269-41.579Q-0.601-41.817-0.822-42.206Q-1.043-42.595-1.150-43.032Q-1.258-43.470-1.258-43.868Q-1.258-44.259-1.148-44.702Q-1.039-45.146-0.822-45.526Q-0.605-45.907-0.271-46.148Q0.063-46.388 0.496-46.388Q1.051-46.388 1.451-45.989Q1.852-45.591 2.049-45.005Q2.246-44.419 2.246-43.868Q2.246-43.314 2.049-42.726Q1.852-42.138 1.451-41.739Q1.051-41.341 0.496-41.341M0.496-41.899Q0.797-41.899 1.014-42.116Q1.231-42.333 1.358-42.661Q1.485-42.989 1.545-43.335Q1.606-43.681 1.606-43.962Q1.606-44.212 1.543-44.538Q1.481-44.864 1.350-45.155Q1.219-45.446 1.006-45.636Q0.793-45.825 0.496-45.825Q0.121-45.825-0.131-45.513Q-0.383-45.200-0.500-44.767Q-0.617-44.333-0.617-43.962Q-0.617-43.564-0.504-43.083Q-0.390-42.603-0.142-42.251Q0.106-41.899 0.496-41.899M3.047-41.657L3.047-41.731Q3.078-41.899 3.180-41.946L4.469-43.013Q4.801-43.290 4.983-43.442Q5.164-43.595 5.360-43.815Q5.555-44.036 5.676-44.286Q5.797-44.536 5.797-44.802Q5.797-45.126 5.621-45.360Q5.445-45.595 5.166-45.710Q4.887-45.825 4.567-45.825Q4.309-45.825 4.080-45.702Q3.852-45.579 3.750-45.364Q3.852-45.231 3.852-45.083Q3.852-44.923 3.733-44.800Q3.613-44.677 3.453-44.677Q3.278-44.677 3.162-44.802Q3.047-44.927 3.047-45.099Q3.047-45.392 3.182-45.634Q3.317-45.876 3.555-46.048Q3.793-46.220 4.061-46.304Q4.328-46.388 4.621-46.388Q5.102-46.388 5.518-46.198Q5.934-46.009 6.186-45.648Q6.438-45.286 6.438-44.802Q6.438-44.458 6.305-44.155Q6.172-43.853 5.947-43.593Q5.723-43.333 5.414-43.071Q5.106-42.810 4.895-42.634L4.086-41.978L5.797-41.978L5.797-42.122Q5.848-42.333 6.047-42.356L6.188-42.356Q6.387-42.337 6.438-42.122L6.438-41.657Q6.387-41.442 6.188-41.419L3.293-41.419Q3.098-41.439 3.047-41.657M8.203-41.634L8.203-41.692Q8.203-42.235 8.309-42.782Q8.414-43.329 8.619-43.853Q8.824-44.376 9.121-44.855Q9.418-45.333 9.797-45.747L7.860-45.747L7.860-45.610Q7.809-45.396 7.610-45.372L7.469-45.372Q7.270-45.396 7.219-45.610L7.219-46.204Q7.270-46.415 7.469-46.435L7.610-46.435Q7.746-46.423 7.820-46.306L10.508-46.306Q10.703-46.282 10.754-46.075L10.754-45.985Q10.742-45.896 10.699-45.845Q10.438-45.587 10.207-45.321Q9.977-45.056 9.815-44.823Q9.653-44.591 9.494-44.292Q9.336-43.993 9.203-43.642Q9.028-43.169 8.936-42.653Q8.844-42.138 8.844-41.634Q8.832-41.509 8.746-41.431Q8.660-41.353 8.539-41.341Q8.403-41.341 8.309-41.419Q8.215-41.497 8.203-41.634\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 57.927)\">\u003Cpath d=\"M18.497-40.778Q17.966-41.087 17.566-41.575Q17.165-42.064 16.954-42.657Q16.743-43.251 16.743-43.868Q16.743-44.485 16.952-45.073Q17.161-45.661 17.558-46.142Q17.954-46.622 18.489-46.946Q18.560-46.970 18.591-46.970L18.681-46.970Q18.779-46.958 18.845-46.892Q18.911-46.825 18.911-46.724Q18.911-46.579 18.810-46.517Q18.361-46.228 18.034-45.812Q17.708-45.396 17.546-44.903Q17.384-44.411 17.384-43.868Q17.384-43.462 17.480-43.075Q17.575-42.689 17.753-42.353Q17.931-42.017 18.191-41.733Q18.450-41.450 18.798-41.220Q18.911-41.142 18.911-41.005Q18.911-40.907 18.845-40.837Q18.779-40.767 18.681-40.755L18.591-40.755Q18.532-40.755 18.497-40.778M21.286-41.642L20.400-44.306L20.079-44.306Q19.880-44.329 19.829-44.548L19.829-44.634Q19.880-44.845 20.079-44.868L21.239-44.868Q21.435-44.849 21.486-44.634L21.486-44.548Q21.435-44.329 21.239-44.306L20.958-44.306L21.751-41.931L22.540-44.306L22.263-44.306Q22.064-44.329 22.013-44.548L22.013-44.634Q22.064-44.845 22.263-44.868L23.423-44.868Q23.618-44.845 23.669-44.634L23.669-44.548Q23.618-44.329 23.423-44.306L23.103-44.306L22.216-41.642Q22.173-41.528 22.072-41.454Q21.970-41.380 21.845-41.380L21.654-41.380Q21.536-41.380 21.433-41.452Q21.329-41.524 21.286-41.642M24.282-42.532Q24.282-42.978 24.697-43.235Q25.111-43.493 25.652-43.593Q26.193-43.692 26.700-43.700Q26.700-43.915 26.566-44.067Q26.431-44.220 26.224-44.296Q26.017-44.372 25.806-44.372Q25.462-44.372 25.302-44.349L25.302-44.290Q25.302-44.122 25.183-44.007Q25.064-43.892 24.900-43.892Q24.724-43.892 24.609-44.015Q24.493-44.138 24.493-44.306Q24.493-44.712 24.874-44.821Q25.255-44.931 25.814-44.931Q26.083-44.931 26.351-44.853Q26.618-44.774 26.843-44.624Q27.068-44.474 27.204-44.253Q27.341-44.032 27.341-43.755L27.341-42.036Q27.341-41.978 27.868-41.978Q28.064-41.958 28.114-41.747L28.114-41.657Q28.064-41.442 27.868-41.419L27.724-41.419Q27.380-41.419 27.152-41.466Q26.923-41.513 26.779-41.700Q26.318-41.380 25.611-41.380Q25.275-41.380 24.970-41.521Q24.665-41.661 24.474-41.923Q24.282-42.185 24.282-42.532M24.923-42.524Q24.923-42.251 25.165-42.095Q25.407-41.939 25.693-41.939Q25.911-41.939 26.144-41.997Q26.376-42.056 26.538-42.194Q26.700-42.333 26.700-42.556L26.700-43.146Q26.419-43.146 26.003-43.089Q25.587-43.032 25.255-42.894Q24.923-42.755 24.923-42.524M28.572-41.657L28.572-41.747Q28.622-41.954 28.818-41.978L29.923-41.978L29.923-45.747L28.818-45.747Q28.622-45.771 28.572-45.985L28.572-46.075Q28.622-46.282 28.818-46.306L30.314-46.306Q30.505-46.282 30.564-46.075L30.564-41.978L31.665-41.978Q31.864-41.954 31.915-41.747L31.915-41.657Q31.864-41.442 31.665-41.419L28.818-41.419Q28.622-41.442 28.572-41.657M32.552-41.657L32.552-41.747Q32.591-41.954 32.802-41.978L33.111-41.978L33.111-45.747L32.802-45.747Q32.591-45.771 32.552-45.985L32.552-46.075Q32.591-46.282 32.802-46.306L34.751-46.306Q35.150-46.306 35.495-46.105Q35.841-45.903 36.048-45.558Q36.255-45.212 36.255-44.810Q36.255-44.403 36.050-44.060Q35.845-43.716 35.499-43.511Q35.154-43.306 34.751-43.306L33.751-43.306L33.751-41.978L34.064-41.978Q34.275-41.954 34.314-41.747L34.314-41.657Q34.275-41.442 34.064-41.419L32.802-41.419Q32.591-41.442 32.552-41.657M33.751-45.747L33.751-43.868L34.591-43.868Q34.853-43.868 35.089-43.991Q35.325-44.114 35.470-44.329Q35.614-44.544 35.614-44.810Q35.614-45.079 35.470-45.290Q35.325-45.501 35.089-45.624Q34.853-45.747 34.591-45.747L33.751-45.747M37.654-40.755L37.568-40.755Q37.462-40.767 37.394-40.839Q37.325-40.911 37.325-41.005Q37.325-41.146 37.431-41.212Q37.767-41.427 38.036-41.716Q38.306-42.005 38.489-42.353Q38.673-42.700 38.763-43.079Q38.853-43.458 38.853-43.868Q38.853-44.407 38.689-44.899Q38.525-45.392 38.206-45.806Q37.888-46.220 37.447-46.509Q37.325-46.591 37.325-46.724Q37.325-46.821 37.394-46.890Q37.462-46.958 37.568-46.970L37.654-46.970Q37.708-46.970 37.743-46.946Q38.130-46.724 38.470-46.376Q38.810-46.028 39.030-45.634Q39.251-45.239 39.372-44.794Q39.493-44.349 39.493-43.868Q39.493-43.384 39.372-42.933Q39.251-42.481 39.027-42.085Q38.802-41.689 38.478-41.355Q38.154-41.021 37.751-40.778Q37.681-40.755 37.654-40.755\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-44.058-39.876L-44.058-39.962Q-44.015-40.181-43.808-40.204L-43.387-40.204L-43.387-44.306L-43.808-44.306Q-44.015-44.329-44.058-44.548L-44.058-44.634Q-44.012-44.845-43.808-44.868L-42.992-44.868Q-42.797-44.849-42.746-44.634L-42.746-44.564Q-42.535-44.731-42.271-44.819Q-42.008-44.907-41.738-44.907Q-41.398-44.907-41.101-44.763Q-40.804-44.618-40.590-44.366Q-40.375-44.114-40.260-43.802Q-40.144-43.489-40.144-43.146Q-40.144-42.681-40.371-42.271Q-40.597-41.860-40.984-41.620Q-41.371-41.380-41.840-41.380Q-42.359-41.380-42.746-41.747L-42.746-40.204L-42.320-40.204Q-42.113-40.181-42.074-39.962L-42.074-39.876Q-42.113-39.665-42.320-39.642L-43.808-39.642Q-44.012-39.665-44.058-39.876M-41.883-41.939Q-41.574-41.939-41.324-42.108Q-41.074-42.278-40.929-42.560Q-40.785-42.841-40.785-43.146Q-40.785-43.435-40.910-43.714Q-41.035-43.993-41.267-44.171Q-41.500-44.349-41.801-44.349Q-42.121-44.349-42.383-44.163Q-42.644-43.978-42.746-43.677L-42.746-42.825Q-42.656-42.458-42.435-42.198Q-42.215-41.939-41.883-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-17.769-41.657L-17.769-41.747Q-17.719-41.954-17.519-41.978L-16.703-41.978L-16.703-45.161Q-17.082-44.853-17.535-44.853Q-17.765-44.853-17.816-45.083L-17.816-45.173Q-17.765-45.388-17.570-45.411Q-17.242-45.411-16.988-45.649Q-16.734-45.888-16.594-46.235Q-16.523-46.364-16.367-46.388L-16.312-46.388Q-16.117-46.368-16.066-46.153L-16.066-41.978L-15.250-41.978Q-15.051-41.954-15-41.747L-15-41.657Q-15.051-41.442-15.250-41.419L-17.519-41.419Q-17.719-41.442-17.769-41.657M-14.058-41.657L-14.058-41.747Q-14.008-41.954-13.812-41.978L-12.930-41.978L-12.930-44.306L-13.785-44.306Q-13.984-44.329-14.035-44.548L-14.035-44.634Q-13.984-44.845-13.785-44.868L-12.930-44.868L-12.930-45.321Q-12.930-45.786-12.523-46.067Q-12.117-46.349-11.637-46.349Q-11.324-46.349-11.080-46.228Q-10.836-46.106-10.836-45.825Q-10.836-45.661-10.945-45.544Q-11.055-45.427-11.219-45.427Q-11.367-45.427-11.488-45.532Q-11.609-45.638-11.609-45.786L-11.691-45.786Q-11.844-45.786-11.980-45.726Q-12.117-45.665-12.203-45.550Q-12.289-45.435-12.289-45.290L-12.289-44.868L-11.258-44.868Q-11.062-44.849-11.012-44.634L-11.012-44.548Q-11.062-44.329-11.258-44.306L-12.289-44.306L-12.289-41.978L-11.410-41.978Q-11.215-41.954-11.164-41.747L-11.164-41.657Q-11.215-41.442-11.410-41.419L-13.812-41.419Q-14.008-41.442-14.058-41.657M-9.781-42.833Q-9.781-43.118-9.625-43.372Q-9.469-43.626-9.219-43.800Q-8.969-43.974-8.683-44.060Q-8.922-44.134-9.148-44.276Q-9.375-44.419-9.517-44.628Q-9.660-44.837-9.660-45.083Q-9.660-45.481-9.414-45.776Q-9.168-46.071-8.785-46.230Q-8.402-46.388-8.012-46.388Q-7.621-46.388-7.238-46.230Q-6.855-46.071-6.609-45.773Q-6.363-45.474-6.363-45.083Q-6.363-44.837-6.506-44.630Q-6.648-44.423-6.875-44.278Q-7.101-44.134-7.340-44.060Q-6.887-43.923-6.566-43.597Q-6.246-43.271-6.246-42.833Q-6.246-42.396-6.504-42.052Q-6.762-41.708-7.172-41.524Q-7.582-41.341-8.012-41.341Q-8.441-41.341-8.851-41.523Q-9.262-41.704-9.521-42.048Q-9.781-42.392-9.781-42.833M-9.140-42.833Q-9.140-42.560-8.974-42.345Q-8.808-42.130-8.547-42.015Q-8.285-41.899-8.012-41.899Q-7.738-41.899-7.478-42.015Q-7.219-42.130-7.053-42.347Q-6.887-42.564-6.887-42.833Q-6.887-43.110-7.053-43.327Q-7.219-43.544-7.478-43.661Q-7.738-43.778-8.012-43.778Q-8.285-43.778-8.547-43.661Q-8.808-43.544-8.974-43.329Q-9.140-43.114-9.140-42.833M-9.019-45.083Q-9.019-44.845-8.863-44.677Q-8.707-44.509-8.471-44.425Q-8.234-44.341-8.012-44.341Q-7.793-44.341-7.555-44.425Q-7.316-44.509-7.160-44.679Q-7.004-44.849-7.004-45.083Q-7.004-45.317-7.160-45.487Q-7.316-45.657-7.555-45.741Q-7.793-45.825-8.012-45.825Q-8.234-45.825-8.471-45.741Q-8.707-45.657-8.863-45.489Q-9.019-45.321-9.019-45.083M-4.168-40.306Q-4.281-40.306-4.371-40.396Q-4.461-40.485-4.461-40.595Q-4.461-40.771-4.269-40.845Q-4.051-40.896-3.879-41.054Q-3.707-41.212-3.640-41.435Q-3.664-41.435-3.695-41.419L-3.758-41.419Q-3.988-41.419-4.154-41.581Q-4.320-41.743-4.320-41.978Q-4.320-42.212-4.156-42.372Q-3.992-42.532-3.758-42.532Q-3.547-42.532-3.383-42.411Q-3.219-42.290-3.129-42.097Q-3.039-41.903-3.039-41.692Q-3.039-41.216-3.338-40.827Q-3.637-40.439-4.101-40.314Q-4.125-40.306-4.168-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M2.817-41.657L2.817-41.747Q2.856-41.954 3.067-41.978L3.375-41.978L3.375-45.747L3.067-45.747Q2.856-45.771 2.817-45.985L2.817-46.075Q2.856-46.282 3.067-46.306L5.016-46.306Q5.414-46.306 5.760-46.105Q6.106-45.903 6.313-45.558Q6.520-45.212 6.520-44.810Q6.520-44.403 6.315-44.060Q6.110-43.716 5.764-43.511Q5.418-43.306 5.016-43.306L4.016-43.306L4.016-41.978L4.328-41.978Q4.539-41.954 4.578-41.747L4.578-41.657Q4.539-41.442 4.328-41.419L3.067-41.419Q2.856-41.442 2.817-41.657M4.016-45.747L4.016-43.868L4.856-43.868Q5.117-43.868 5.354-43.991Q5.590-44.114 5.735-44.329Q5.879-44.544 5.879-44.810Q5.879-45.079 5.735-45.290Q5.590-45.501 5.354-45.624Q5.117-45.747 4.856-45.747L4.016-45.747M9.145-41.341Q8.695-41.341 8.330-41.565Q7.965-41.790 7.711-42.173Q7.457-42.556 7.332-42.999Q7.207-43.442 7.207-43.868Q7.207-44.294 7.332-44.733Q7.457-45.173 7.711-45.556Q7.965-45.939 8.324-46.163Q8.684-46.388 9.145-46.388Q9.422-46.388 9.680-46.296Q9.938-46.204 10.153-46.036L10.285-46.274Q10.313-46.325 10.367-46.356Q10.422-46.388 10.481-46.388L10.559-46.388Q10.653-46.376 10.715-46.317Q10.778-46.259 10.789-46.153L10.789-44.825Q10.778-44.724 10.715-44.661Q10.653-44.599 10.559-44.587L10.391-44.587Q10.289-44.599 10.227-44.665Q10.164-44.731 10.153-44.825Q10.113-45.091 9.990-45.315Q9.867-45.540 9.664-45.683Q9.461-45.825 9.199-45.825Q8.867-45.825 8.615-45.642Q8.363-45.458 8.192-45.157Q8.020-44.856 7.934-44.515Q7.848-44.173 7.848-43.868Q7.848-43.564 7.932-43.222Q8.016-42.880 8.188-42.577Q8.360-42.274 8.617-42.087Q8.875-41.899 9.207-41.899Q9.590-41.899 9.871-42.173Q10.153-42.446 10.153-42.833Q10.180-43.044 10.391-43.067L10.559-43.067Q10.789-43.028 10.789-42.802Q10.789-42.485 10.653-42.214Q10.516-41.942 10.281-41.745Q10.047-41.548 9.756-41.444Q9.465-41.341 9.145-41.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M19.032-42.954L15.986-42.954Q15.864-42.966 15.777-43.050Q15.689-43.134 15.689-43.259Q15.689-43.384 15.773-43.468Q15.857-43.552 15.986-43.571L19.032-43.571Q19.157-43.552 19.239-43.468Q19.322-43.384 19.322-43.259Q19.322-43.134 19.238-43.050Q19.154-42.966 19.032-42.954M19.032-44.161L15.986-44.161Q15.853-44.181 15.771-44.259Q15.689-44.337 15.689-44.466Q15.689-44.591 15.773-44.675Q15.857-44.759 15.986-44.778L19.032-44.778Q19.157-44.759 19.239-44.675Q19.322-44.591 19.322-44.466Q19.322-44.337 19.241-44.259Q19.161-44.181 19.032-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 57.372)\">\u003Cpath d=\"M26.005-41.341Q25.572-41.341 25.239-41.579Q24.907-41.817 24.687-42.206Q24.466-42.595 24.359-43.032Q24.251-43.470 24.251-43.868Q24.251-44.259 24.361-44.702Q24.470-45.146 24.687-45.526Q24.904-45.907 25.238-46.148Q25.572-46.388 26.005-46.388Q26.560-46.388 26.960-45.989Q27.361-45.591 27.558-45.005Q27.755-44.419 27.755-43.868Q27.755-43.314 27.558-42.726Q27.361-42.138 26.960-41.739Q26.560-41.341 26.005-41.341M26.005-41.899Q26.306-41.899 26.523-42.116Q26.739-42.333 26.866-42.661Q26.993-42.989 27.054-43.335Q27.114-43.681 27.114-43.962Q27.114-44.212 27.052-44.538Q26.989-44.864 26.859-45.155Q26.728-45.446 26.515-45.636Q26.302-45.825 26.005-45.825Q25.630-45.825 25.378-45.513Q25.126-45.200 25.009-44.767Q24.892-44.333 24.892-43.962Q24.892-43.564 25.005-43.083Q25.118-42.603 25.366-42.251Q25.614-41.899 26.005-41.899M28.388-41.657L28.388-41.747Q28.427-41.954 28.634-41.978L29.040-41.978L29.970-43.196L29.099-44.306L28.681-44.306Q28.486-44.325 28.435-44.548L28.435-44.634Q28.486-44.845 28.681-44.868L29.841-44.868Q30.040-44.845 30.091-44.634L30.091-44.548Q30.040-44.329 29.841-44.306L29.732-44.306L30.228-43.649L30.704-44.306L30.587-44.306Q30.388-44.329 30.337-44.548L30.337-44.634Q30.388-44.845 30.587-44.868L31.747-44.868Q31.943-44.849 31.993-44.634L31.993-44.548Q31.943-44.329 31.747-44.306L31.337-44.306L30.489-43.196L31.450-41.978L31.857-41.978Q32.056-41.954 32.107-41.747L32.107-41.657Q32.068-41.442 31.857-41.419L30.704-41.419Q30.497-41.442 30.458-41.657L30.458-41.747Q30.497-41.954 30.704-41.978L30.833-41.978L30.228-42.833L29.642-41.978L29.786-41.978Q29.993-41.954 30.032-41.747L30.032-41.657Q29.993-41.442 29.786-41.419L28.634-41.419Q28.439-41.439 28.388-41.657M34.497-41.341Q34.064-41.341 33.732-41.579Q33.400-41.817 33.179-42.206Q32.958-42.595 32.851-43.032Q32.743-43.470 32.743-43.868Q32.743-44.259 32.853-44.702Q32.962-45.146 33.179-45.526Q33.396-45.907 33.730-46.148Q34.064-46.388 34.497-46.388Q35.052-46.388 35.452-45.989Q35.853-45.591 36.050-45.005Q36.247-44.419 36.247-43.868Q36.247-43.314 36.050-42.726Q35.853-42.138 35.452-41.739Q35.052-41.341 34.497-41.341M34.497-41.899Q34.798-41.899 35.015-42.116Q35.232-42.333 35.359-42.661Q35.486-42.989 35.546-43.335Q35.607-43.681 35.607-43.962Q35.607-44.212 35.544-44.538Q35.482-44.864 35.351-45.155Q35.220-45.446 35.007-45.636Q34.794-45.825 34.497-45.825Q34.122-45.825 33.870-45.513Q33.618-45.200 33.501-44.767Q33.384-44.333 33.384-43.962Q33.384-43.564 33.497-43.083Q33.611-42.603 33.859-42.251Q34.107-41.899 34.497-41.899M37.048-41.657L37.048-41.731Q37.079-41.899 37.181-41.946L38.470-43.013Q38.802-43.290 38.984-43.442Q39.165-43.595 39.361-43.815Q39.556-44.036 39.677-44.286Q39.798-44.536 39.798-44.802Q39.798-45.126 39.622-45.360Q39.447-45.595 39.167-45.710Q38.888-45.825 38.568-45.825Q38.310-45.825 38.081-45.702Q37.853-45.579 37.751-45.364Q37.853-45.231 37.853-45.083Q37.853-44.923 37.734-44.800Q37.614-44.677 37.454-44.677Q37.279-44.677 37.163-44.802Q37.048-44.927 37.048-45.099Q37.048-45.392 37.183-45.634Q37.318-45.876 37.556-46.048Q37.794-46.220 38.062-46.304Q38.329-46.388 38.622-46.388Q39.103-46.388 39.519-46.198Q39.935-46.009 40.187-45.648Q40.439-45.286 40.439-44.802Q40.439-44.458 40.306-44.155Q40.173-43.853 39.948-43.593Q39.724-43.333 39.415-43.071Q39.107-42.810 38.896-42.634L38.087-41.978L39.798-41.978L39.798-42.122Q39.849-42.333 40.048-42.356L40.189-42.356Q40.388-42.337 40.439-42.122L40.439-41.657Q40.388-41.442 40.189-41.419L37.294-41.419Q37.099-41.439 37.048-41.657M41.220-42.833Q41.220-43.118 41.376-43.372Q41.532-43.626 41.782-43.800Q42.032-43.974 42.318-44.060Q42.079-44.134 41.853-44.276Q41.626-44.419 41.484-44.628Q41.341-44.837 41.341-45.083Q41.341-45.481 41.587-45.776Q41.833-46.071 42.216-46.230Q42.599-46.388 42.989-46.388Q43.380-46.388 43.763-46.230Q44.146-46.071 44.392-45.773Q44.638-45.474 44.638-45.083Q44.638-44.837 44.495-44.630Q44.353-44.423 44.126-44.278Q43.900-44.134 43.661-44.060Q44.114-43.923 44.435-43.597Q44.755-43.271 44.755-42.833Q44.755-42.396 44.497-42.052Q44.239-41.708 43.829-41.524Q43.419-41.341 42.989-41.341Q42.560-41.341 42.150-41.523Q41.739-41.704 41.480-42.048Q41.220-42.392 41.220-42.833M41.861-42.833Q41.861-42.560 42.027-42.345Q42.193-42.130 42.454-42.015Q42.716-41.899 42.989-41.899Q43.263-41.899 43.523-42.015Q43.782-42.130 43.948-42.347Q44.114-42.564 44.114-42.833Q44.114-43.110 43.948-43.327Q43.782-43.544 43.523-43.661Q43.263-43.778 42.989-43.778Q42.716-43.778 42.454-43.661Q42.193-43.544 42.027-43.329Q41.861-43.114 41.861-42.833M41.982-45.083Q41.982-44.845 42.138-44.677Q42.294-44.509 42.530-44.425Q42.767-44.341 42.989-44.341Q43.208-44.341 43.447-44.425Q43.685-44.509 43.841-44.679Q43.997-44.849 43.997-45.083Q43.997-45.317 43.841-45.487Q43.685-45.657 43.447-45.741Q43.208-45.825 42.989-45.825Q42.767-45.825 42.530-45.741Q42.294-45.657 42.138-45.489Q41.982-45.321 41.982-45.083\" 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.454h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 83.535)\">\u003Cpath d=\"M-55.730-42.298Q-55.613-42.095-55.379-41.997Q-55.144-41.899-54.883-41.899Q-54.586-41.899-54.312-42.028Q-54.039-42.157-53.865-42.394Q-53.691-42.630-53.691-42.931Q-53.691-43.185-53.810-43.427Q-53.929-43.669-54.144-43.815Q-54.359-43.962-54.629-43.962Q-55.234-43.962-55.570-43.642Q-55.648-43.556-55.703-43.509Q-55.758-43.462-55.844-43.450L-55.945-43.450Q-56.144-43.474-56.195-43.692L-56.195-46.075Q-56.144-46.282-55.945-46.306L-53.586-46.306Q-53.390-46.286-53.340-46.075L-53.340-45.985Q-53.390-45.771-53.586-45.747L-55.554-45.747L-55.554-44.321Q-55.148-44.524-54.629-44.524Q-54.199-44.524-53.834-44.308Q-53.469-44.091-53.260-43.722Q-53.051-43.353-53.051-42.931Q-53.051-42.458-53.314-42.099Q-53.578-41.739-54.002-41.540Q-54.426-41.341-54.883-41.341Q-55.137-41.341-55.414-41.415Q-55.691-41.489-55.926-41.646Q-56.160-41.802-56.301-42.036Q-56.441-42.271-56.441-42.556Q-56.441-42.724-56.326-42.847Q-56.211-42.970-56.035-42.970Q-55.953-42.970-55.883-42.940Q-55.812-42.911-55.756-42.856Q-55.699-42.802-55.668-42.726Q-55.637-42.649-55.637-42.571Q-55.637-42.411-55.730-42.298M-49.125-43.556L-51.867-43.556Q-51.992-43.567-52.078-43.653Q-52.164-43.739-52.164-43.868Q-52.164-43.997-52.078-44.079Q-51.992-44.161-51.867-44.173L-49.125-44.173Q-49-44.161-48.918-44.079Q-48.836-43.997-48.836-43.868Q-48.836-43.739-48.918-43.653Q-49-43.567-49.125-43.556M-47.039-41.634L-47.039-41.692Q-47.039-42.235-46.933-42.782Q-46.828-43.329-46.623-43.853Q-46.418-44.376-46.121-44.855Q-45.824-45.333-45.445-45.747L-47.383-45.747L-47.383-45.610Q-47.433-45.396-47.633-45.372L-47.773-45.372Q-47.972-45.396-48.023-45.610L-48.023-46.204Q-47.972-46.415-47.773-46.435L-47.633-46.435Q-47.496-46.423-47.422-46.306L-44.734-46.306Q-44.539-46.282-44.488-46.075L-44.488-45.985Q-44.500-45.896-44.543-45.845Q-44.804-45.587-45.035-45.321Q-45.265-45.056-45.428-44.823Q-45.590-44.591-45.748-44.292Q-45.906-43.993-46.039-43.642Q-46.215-43.169-46.306-42.653Q-46.398-42.138-46.398-41.634Q-46.410-41.509-46.496-41.431Q-46.582-41.353-46.703-41.341Q-46.840-41.341-46.933-41.419Q-47.027-41.497-47.039-41.634\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 83.535)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.703-41.657L-43.703-41.731Q-43.672-41.899-43.570-41.946L-42.281-43.013Q-41.949-43.290-41.767-43.442Q-41.586-43.595-41.390-43.815Q-41.195-44.036-41.074-44.286Q-40.953-44.536-40.953-44.802Q-40.953-45.126-41.129-45.360Q-41.304-45.595-41.584-45.710Q-41.863-45.825-42.183-45.825Q-42.441-45.825-42.670-45.702Q-42.898-45.579-43-45.364Q-42.898-45.231-42.898-45.083Q-42.898-44.923-43.017-44.800Q-43.137-44.677-43.297-44.677Q-43.472-44.677-43.588-44.802Q-43.703-44.927-43.703-45.099Q-43.703-45.392-43.568-45.634Q-43.433-45.876-43.195-46.048Q-42.957-46.220-42.689-46.304Q-42.422-46.388-42.129-46.388Q-41.648-46.388-41.232-46.198Q-40.816-46.009-40.564-45.648Q-40.312-45.286-40.312-44.802Q-40.312-44.458-40.445-44.155Q-40.578-43.853-40.803-43.593Q-41.027-43.333-41.336-43.071Q-41.644-42.810-41.855-42.634L-42.664-41.978L-40.953-41.978L-40.953-42.122Q-40.902-42.333-40.703-42.356L-40.562-42.356Q-40.363-42.337-40.312-42.122L-40.312-41.657Q-40.363-41.442-40.562-41.419L-43.457-41.419Q-43.652-41.439-43.703-41.657M-39.531-42.833Q-39.531-43.118-39.375-43.372Q-39.219-43.626-38.969-43.800Q-38.719-43.974-38.433-44.060Q-38.672-44.134-38.898-44.276Q-39.125-44.419-39.267-44.628Q-39.410-44.837-39.410-45.083Q-39.410-45.481-39.164-45.776Q-38.918-46.071-38.535-46.230Q-38.152-46.388-37.762-46.388Q-37.371-46.388-36.988-46.230Q-36.605-46.071-36.359-45.773Q-36.113-45.474-36.113-45.083Q-36.113-44.837-36.256-44.630Q-36.398-44.423-36.625-44.278Q-36.851-44.134-37.090-44.060Q-36.637-43.923-36.316-43.597Q-35.996-43.271-35.996-42.833Q-35.996-42.396-36.254-42.052Q-36.512-41.708-36.922-41.524Q-37.332-41.341-37.762-41.341Q-38.191-41.341-38.601-41.523Q-39.012-41.704-39.271-42.048Q-39.531-42.392-39.531-42.833M-38.890-42.833Q-38.890-42.560-38.724-42.345Q-38.558-42.130-38.297-42.015Q-38.035-41.899-37.762-41.899Q-37.488-41.899-37.228-42.015Q-36.969-42.130-36.803-42.347Q-36.637-42.564-36.637-42.833Q-36.637-43.110-36.803-43.327Q-36.969-43.544-37.228-43.661Q-37.488-43.778-37.762-43.778Q-38.035-43.778-38.297-43.661Q-38.558-43.544-38.724-43.329Q-38.890-43.114-38.890-42.833M-38.769-45.083Q-38.769-44.845-38.613-44.677Q-38.457-44.509-38.221-44.425Q-37.984-44.341-37.762-44.341Q-37.543-44.341-37.304-44.425Q-37.066-44.509-36.910-44.679Q-36.754-44.849-36.754-45.083Q-36.754-45.317-36.910-45.487Q-37.066-45.657-37.304-45.741Q-37.543-45.825-37.762-45.825Q-37.984-45.825-38.221-45.741Q-38.457-45.657-38.613-45.489Q-38.769-45.321-38.769-45.083M-34.070-41.978Q-34.070-42.200-33.904-42.366Q-33.738-42.532-33.508-42.532Q-33.359-42.532-33.232-42.454Q-33.105-42.376-33.031-42.251Q-32.957-42.126-32.957-41.978Q-32.957-41.751-33.123-41.585Q-33.289-41.419-33.508-41.419Q-33.734-41.419-33.902-41.587Q-34.070-41.755-34.070-41.978M-29.824-41.978Q-29.824-42.200-29.658-42.366Q-29.492-42.532-29.262-42.532Q-29.113-42.532-28.986-42.454Q-28.859-42.376-28.785-42.251Q-28.711-42.126-28.711-41.978Q-28.711-41.751-28.877-41.585Q-29.043-41.419-29.262-41.419Q-29.488-41.419-29.656-41.587Q-29.824-41.755-29.824-41.978\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 82.646)\">\u003Cpath d=\"M-56.281-41.618L-56.281-42.532Q-56.254-42.739-56.043-42.763L-55.875-42.763Q-55.711-42.739-55.652-42.579Q-55.449-41.939-54.722-41.939Q-54.515-41.939-54.287-41.974Q-54.058-42.009-53.890-42.124Q-53.722-42.239-53.722-42.442Q-53.722-42.653-53.945-42.767Q-54.168-42.880-54.441-42.923L-55.140-43.036Q-56.281-43.247-56.281-43.970Q-56.281-44.259-56.137-44.448Q-55.992-44.638-55.752-44.745Q-55.512-44.853-55.256-44.892Q-55-44.931-54.722-44.931Q-54.472-44.931-54.279-44.901Q-54.086-44.872-53.922-44.794Q-53.844-44.911-53.715-44.931L-53.637-44.931Q-53.539-44.919-53.476-44.856Q-53.414-44.794-53.402-44.700L-53.402-43.993Q-53.414-43.899-53.476-43.833Q-53.539-43.767-53.637-43.755L-53.804-43.755Q-53.898-43.767-53.965-43.833Q-54.031-43.899-54.043-43.993Q-54.043-44.372-54.738-44.372Q-55.086-44.372-55.404-44.290Q-55.722-44.208-55.722-43.962Q-55.722-43.696-55.051-43.587L-54.347-43.466Q-53.863-43.384-53.513-43.136Q-53.164-42.888-53.164-42.442Q-53.164-42.052-53.400-41.810Q-53.637-41.567-53.986-41.474Q-54.336-41.380-54.722-41.380Q-55.301-41.380-55.699-41.634Q-55.769-41.509-55.818-41.452Q-55.867-41.396-55.972-41.380L-56.043-41.380Q-56.258-41.403-56.281-41.618M-51.879-42.274L-51.879-44.306L-52.301-44.306Q-52.508-44.329-52.551-44.548L-52.551-44.634Q-52.504-44.845-52.301-44.868L-51.484-44.868Q-51.289-44.845-51.238-44.634L-51.238-42.306Q-51.238-42.071-51.068-42.005Q-50.898-41.939-50.613-41.939Q-50.406-41.939-50.211-42.015Q-50.015-42.091-49.890-42.241Q-49.765-42.392-49.765-42.603L-49.765-44.306L-50.187-44.306Q-50.398-44.329-50.437-44.548L-50.437-44.634Q-50.398-44.845-50.187-44.868L-49.375-44.868Q-49.176-44.845-49.125-44.634L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-49.515-41.419Q-49.715-41.442-49.765-41.642Q-50.168-41.380-50.676-41.380Q-50.910-41.380-51.125-41.421Q-51.340-41.462-51.506-41.564Q-51.672-41.665-51.775-41.843Q-51.879-42.021-51.879-42.274M-48.429-41.657L-48.429-41.747Q-48.379-41.958-48.183-41.978L-47.984-41.978L-47.984-44.306L-48.183-44.306Q-48.390-44.329-48.429-44.548L-48.429-44.634Q-48.379-44.849-48.183-44.868L-47.703-44.868Q-47.512-44.845-47.453-44.634Q-47.133-44.907-46.719-44.907Q-46.527-44.907-46.359-44.798Q-46.191-44.689-46.117-44.517Q-45.941-44.708-45.719-44.808Q-45.496-44.907-45.254-44.907Q-44.836-44.907-44.681-44.565Q-44.527-44.224-44.527-43.755L-44.527-41.978L-44.328-41.978Q-44.117-41.954-44.078-41.747L-44.078-41.657Q-44.129-41.442-44.328-41.419L-45.144-41.419Q-45.340-41.442-45.390-41.657L-45.390-41.747Q-45.340-41.954-45.144-41.978L-45.054-41.978L-45.054-43.724Q-45.054-44.349-45.304-44.349Q-45.637-44.349-45.814-44.038Q-45.992-43.728-45.992-43.364L-45.992-41.978L-45.789-41.978Q-45.582-41.954-45.543-41.747L-45.543-41.657Q-45.594-41.442-45.789-41.419L-46.605-41.419Q-46.804-41.442-46.855-41.657L-46.855-41.747Q-46.804-41.954-46.605-41.978L-46.519-41.978L-46.519-43.724Q-46.519-44.349-46.765-44.349Q-47.097-44.349-47.275-44.036Q-47.453-43.724-47.453-43.364L-47.453-41.978L-47.254-41.978Q-47.047-41.954-47.008-41.747L-47.008-41.657Q-47.058-41.439-47.254-41.419L-48.183-41.419Q-48.390-41.442-48.429-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 82.646)\">\u003Cpath d=\"M-39.797-39.876L-39.797-39.962Q-39.754-40.181-39.547-40.204L-39.125-40.204L-39.125-44.306L-39.547-44.306Q-39.754-44.329-39.797-44.548L-39.797-44.634Q-39.750-44.845-39.547-44.868L-38.730-44.868Q-38.535-44.849-38.484-44.634L-38.484-44.564Q-38.273-44.731-38.010-44.819Q-37.746-44.907-37.476-44.907Q-37.137-44.907-36.840-44.763Q-36.543-44.618-36.328-44.366Q-36.113-44.114-35.998-43.802Q-35.883-43.489-35.883-43.146Q-35.883-42.681-36.109-42.271Q-36.336-41.860-36.722-41.620Q-37.109-41.380-37.578-41.380Q-38.097-41.380-38.484-41.747L-38.484-40.204L-38.058-40.204Q-37.851-40.181-37.812-39.962L-37.812-39.876Q-37.851-39.665-38.058-39.642L-39.547-39.642Q-39.750-39.665-39.797-39.876M-37.621-41.939Q-37.312-41.939-37.062-42.108Q-36.812-42.278-36.668-42.560Q-36.523-42.841-36.523-43.146Q-36.523-43.435-36.648-43.714Q-36.773-43.993-37.006-44.171Q-37.238-44.349-37.539-44.349Q-37.859-44.349-38.121-44.163Q-38.383-43.978-38.484-43.677L-38.484-42.825Q-38.394-42.458-38.174-42.198Q-37.953-41.939-37.621-41.939M-35.398-41.657L-35.398-41.747Q-35.340-41.954-35.148-41.978L-34.437-41.978L-34.437-44.306L-35.148-44.306Q-35.344-44.329-35.398-44.548L-35.398-44.634Q-35.340-44.845-35.148-44.868L-34.047-44.868Q-33.847-44.849-33.797-44.634L-33.797-44.306Q-33.535-44.591-33.179-44.749Q-32.824-44.907-32.437-44.907Q-32.144-44.907-31.910-44.773Q-31.676-44.638-31.676-44.372Q-31.676-44.204-31.785-44.087Q-31.894-43.970-32.062-43.970Q-32.215-43.970-32.330-44.081Q-32.445-44.192-32.445-44.349Q-32.820-44.349-33.135-44.148Q-33.449-43.946-33.623-43.612Q-33.797-43.278-33.797-42.899L-33.797-41.978L-32.851-41.978Q-32.644-41.954-32.605-41.747L-32.605-41.657Q-32.644-41.442-32.851-41.419L-35.148-41.419Q-35.340-41.442-35.398-41.657M-29.254-41.380Q-29.726-41.380-30.111-41.624Q-30.496-41.868-30.719-42.278Q-30.941-42.689-30.941-43.146Q-30.941-43.489-30.816-43.812Q-30.691-44.134-30.461-44.388Q-30.230-44.642-29.924-44.786Q-29.617-44.931-29.254-44.931Q-28.890-44.931-28.578-44.784Q-28.265-44.638-28.043-44.392Q-27.820-44.146-27.693-43.825Q-27.566-43.505-27.566-43.146Q-27.566-42.689-27.791-42.276Q-28.015-41.864-28.400-41.622Q-28.785-41.380-29.254-41.380M-29.254-41.939Q-28.789-41.939-28.498-42.333Q-28.207-42.728-28.207-43.212Q-28.207-43.505-28.342-43.773Q-28.476-44.040-28.717-44.206Q-28.957-44.372-29.254-44.372Q-29.558-44.372-29.797-44.206Q-30.035-44.040-30.170-43.773Q-30.304-43.505-30.304-43.212Q-30.304-42.731-30.012-42.335Q-29.719-41.939-29.254-41.939M-26.679-41.657L-26.679-41.747Q-26.629-41.954-26.433-41.978L-25.328-41.978L-25.328-45.747L-26.433-45.747Q-26.629-45.771-26.679-45.985L-26.679-46.075Q-26.629-46.282-26.433-46.306L-24.937-46.306Q-24.746-46.282-24.687-46.075L-24.687-41.978L-23.586-41.978Q-23.387-41.954-23.336-41.747L-23.336-41.657Q-23.387-41.442-23.586-41.419L-26.433-41.419Q-26.629-41.442-26.679-41.657M-20.762-41.380Q-21.234-41.380-21.619-41.624Q-22.004-41.868-22.226-42.278Q-22.449-42.689-22.449-43.146Q-22.449-43.489-22.324-43.812Q-22.199-44.134-21.969-44.388Q-21.738-44.642-21.431-44.786Q-21.125-44.931-20.762-44.931Q-20.398-44.931-20.086-44.784Q-19.773-44.638-19.551-44.392Q-19.328-44.146-19.201-43.825Q-19.074-43.505-19.074-43.146Q-19.074-42.689-19.299-42.276Q-19.523-41.864-19.908-41.622Q-20.293-41.380-20.762-41.380M-20.762-41.939Q-20.297-41.939-20.006-42.333Q-19.715-42.728-19.715-43.212Q-19.715-43.505-19.849-43.773Q-19.984-44.040-20.224-44.206Q-20.465-44.372-20.762-44.372Q-21.066-44.372-21.304-44.206Q-21.543-44.040-21.678-43.773Q-21.812-43.505-21.812-43.212Q-21.812-42.731-21.519-42.335Q-21.226-41.939-20.762-41.939M-18.398-40.771Q-18.398-41.071-18.250-41.333Q-18.101-41.595-17.851-41.755Q-18.035-42.009-18.035-42.329Q-18.035-42.614-17.883-42.876Q-18.133-43.200-18.133-43.618Q-18.133-43.978-17.941-44.274Q-17.750-44.571-17.431-44.739Q-17.113-44.907-16.750-44.907Q-16.543-44.907-16.340-44.847Q-16.137-44.786-15.972-44.685Q-15.590-44.946-15.117-44.946Q-14.879-44.946-14.697-44.815Q-14.515-44.685-14.515-44.458Q-14.515-44.310-14.617-44.204Q-14.719-44.099-14.875-44.099Q-15.008-44.099-15.103-44.177Q-15.199-44.255-15.230-44.380Q-15.375-44.372-15.574-44.282Q-15.371-43.970-15.371-43.618Q-15.371-43.337-15.482-43.105Q-15.594-42.872-15.789-42.694Q-15.984-42.517-16.236-42.419Q-16.488-42.321-16.750-42.321Q-17.137-42.321-17.469-42.509Q-17.480-42.509-17.490-42.437Q-17.500-42.364-17.500-42.329Q-17.500-42.208-17.433-42.101Q-17.367-41.993-17.246-41.954Q-17.230-41.958-17.217-41.960Q-17.203-41.962-17.179-41.962Q-17.164-41.962-17.133-41.954Q-17.101-41.946-17.094-41.946L-16.500-41.946Q-15.719-41.946-15.178-41.704Q-14.637-41.462-14.637-40.771Q-14.637-40.470-14.816-40.243Q-14.996-40.017-15.293-39.872Q-15.590-39.728-15.910-39.661Q-16.230-39.595-16.515-39.595Q-16.906-39.595-17.347-39.718Q-17.789-39.841-18.094-40.108Q-18.398-40.376-18.398-40.771M-17.859-40.778Q-17.859-40.560-17.619-40.419Q-17.379-40.278-17.054-40.212Q-16.730-40.146-16.515-40.146Q-16.301-40.146-15.976-40.212Q-15.652-40.278-15.412-40.419Q-15.172-40.560-15.172-40.778Q-15.172-41.067-15.396-41.206Q-15.621-41.345-15.902-41.378Q-16.183-41.411-16.531-41.411L-17.148-41.411Q-17.332-41.411-17.494-41.331Q-17.656-41.251-17.758-41.105Q-17.859-40.958-17.859-40.778M-16.750-42.876Q-16.449-42.876-16.230-43.095Q-16.012-43.314-16.012-43.618Q-16.012-43.774-16.066-43.905Q-16.121-44.036-16.226-44.142Q-16.332-44.247-16.463-44.302Q-16.594-44.356-16.750-44.356Q-17.054-44.356-17.273-44.138Q-17.492-43.919-17.492-43.618Q-17.492-43.321-17.269-43.099Q-17.047-42.876-16.750-42.876M-13.648-42.274L-13.648-44.306L-14.070-44.306Q-14.277-44.329-14.320-44.548L-14.320-44.634Q-14.273-44.845-14.070-44.868L-13.254-44.868Q-13.058-44.845-13.008-44.634L-13.008-42.306Q-13.008-42.071-12.838-42.005Q-12.668-41.939-12.383-41.939Q-12.176-41.939-11.980-42.015Q-11.785-42.091-11.660-42.241Q-11.535-42.392-11.535-42.603L-11.535-44.306L-11.957-44.306Q-12.168-44.329-12.207-44.548L-12.207-44.634Q-12.168-44.845-11.957-44.868L-11.144-44.868Q-10.945-44.845-10.894-44.634L-10.894-41.978L-10.469-41.978Q-10.262-41.954-10.222-41.747L-10.222-41.657Q-10.262-41.442-10.469-41.419L-11.285-41.419Q-11.484-41.442-11.535-41.642Q-11.937-41.380-12.445-41.380Q-12.679-41.380-12.894-41.421Q-13.109-41.462-13.275-41.564Q-13.441-41.665-13.545-41.843Q-13.648-42.021-13.648-42.274M-6.633-42.907L-9.074-42.907Q-9.019-42.630-8.822-42.407Q-8.625-42.185-8.347-42.062Q-8.070-41.939-7.785-41.939Q-7.312-41.939-7.090-42.228Q-7.082-42.239-7.025-42.345Q-6.969-42.450-6.920-42.493Q-6.871-42.536-6.777-42.548L-6.633-42.548Q-6.441-42.528-6.383-42.314L-6.383-42.259Q-6.449-41.958-6.679-41.761Q-6.910-41.564-7.222-41.472Q-7.535-41.380-7.840-41.380Q-8.324-41.380-8.763-41.608Q-9.203-41.837-9.471-42.237Q-9.738-42.638-9.738-43.130L-9.738-43.189Q-9.738-43.657-9.492-44.060Q-9.246-44.462-8.838-44.696Q-8.429-44.931-7.961-44.931Q-7.457-44.931-7.103-44.708Q-6.750-44.485-6.566-44.097Q-6.383-43.708-6.383-43.204L-6.383-43.146Q-6.441-42.931-6.633-42.907M-9.066-43.458L-7.039-43.458Q-7.086-43.868-7.324-44.120Q-7.562-44.372-7.961-44.372Q-8.355-44.372-8.662-44.110Q-8.969-43.849-9.066-43.458\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-56.644-41.657L-56.644-41.747Q-56.586-41.954-56.394-41.978L-55.683-41.978L-55.683-44.306L-56.394-44.306Q-56.590-44.329-56.644-44.548L-56.644-44.634Q-56.586-44.845-56.394-44.868L-55.293-44.868Q-55.094-44.849-55.043-44.634L-55.043-44.306Q-54.781-44.591-54.426-44.749Q-54.070-44.907-53.683-44.907Q-53.390-44.907-53.156-44.773Q-52.922-44.638-52.922-44.372Q-52.922-44.204-53.031-44.087Q-53.140-43.970-53.308-43.970Q-53.461-43.970-53.576-44.081Q-53.691-44.192-53.691-44.349Q-54.066-44.349-54.381-44.148Q-54.695-43.946-54.869-43.612Q-55.043-43.278-55.043-42.899L-55.043-41.978L-54.097-41.978Q-53.890-41.954-53.851-41.747L-53.851-41.657Q-53.890-41.442-54.097-41.419L-56.394-41.419Q-56.586-41.442-56.644-41.657M-52.269-42.833Q-52.269-43.118-52.113-43.372Q-51.957-43.626-51.707-43.800Q-51.457-43.974-51.172-44.060Q-51.410-44.134-51.637-44.276Q-51.863-44.419-52.006-44.628Q-52.148-44.837-52.148-45.083Q-52.148-45.481-51.902-45.776Q-51.656-46.071-51.273-46.230Q-50.890-46.388-50.500-46.388Q-50.109-46.388-49.726-46.230Q-49.344-46.071-49.097-45.773Q-48.851-45.474-48.851-45.083Q-48.851-44.837-48.994-44.630Q-49.137-44.423-49.363-44.278Q-49.590-44.134-49.828-44.060Q-49.375-43.923-49.054-43.597Q-48.734-43.271-48.734-42.833Q-48.734-42.396-48.992-42.052Q-49.250-41.708-49.660-41.524Q-50.070-41.341-50.500-41.341Q-50.929-41.341-51.340-41.523Q-51.750-41.704-52.010-42.048Q-52.269-42.392-52.269-42.833M-51.629-42.833Q-51.629-42.560-51.463-42.345Q-51.297-42.130-51.035-42.015Q-50.773-41.899-50.500-41.899Q-50.226-41.899-49.967-42.015Q-49.707-42.130-49.541-42.347Q-49.375-42.564-49.375-42.833Q-49.375-43.110-49.541-43.327Q-49.707-43.544-49.967-43.661Q-50.226-43.778-50.500-43.778Q-50.773-43.778-51.035-43.661Q-51.297-43.544-51.463-43.329Q-51.629-43.114-51.629-42.833M-51.508-45.083Q-51.508-44.845-51.351-44.677Q-51.195-44.509-50.959-44.425Q-50.722-44.341-50.500-44.341Q-50.281-44.341-50.043-44.425Q-49.804-44.509-49.648-44.679Q-49.492-44.849-49.492-45.083Q-49.492-45.317-49.648-45.487Q-49.804-45.657-50.043-45.741Q-50.281-45.825-50.500-45.825Q-50.722-45.825-50.959-45.741Q-51.195-45.657-51.351-45.489Q-51.508-45.321-51.508-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-40.469-42.954L-43.515-42.954Q-43.637-42.966-43.724-43.050Q-43.812-43.134-43.812-43.259Q-43.812-43.384-43.728-43.468Q-43.644-43.552-43.515-43.571L-40.469-43.571Q-40.344-43.552-40.262-43.468Q-40.179-43.384-40.179-43.259Q-40.179-43.134-40.263-43.050Q-40.347-42.966-40.469-42.954M-40.469-44.161L-43.515-44.161Q-43.648-44.181-43.730-44.259Q-43.812-44.337-43.812-44.466Q-43.812-44.591-43.728-44.675Q-43.644-44.759-43.515-44.778L-40.469-44.778Q-40.344-44.759-40.262-44.675Q-40.179-44.591-40.179-44.466Q-40.179-44.337-40.260-44.259Q-40.340-44.181-40.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-35.265-42.833Q-35.265-43.118-35.109-43.372Q-34.953-43.626-34.703-43.800Q-34.453-43.974-34.168-44.060Q-34.406-44.134-34.633-44.276Q-34.859-44.419-35.002-44.628Q-35.144-44.837-35.144-45.083Q-35.144-45.481-34.898-45.776Q-34.652-46.071-34.269-46.230Q-33.887-46.388-33.496-46.388Q-33.105-46.388-32.722-46.230Q-32.340-46.071-32.094-45.773Q-31.847-45.474-31.847-45.083Q-31.847-44.837-31.990-44.630Q-32.133-44.423-32.359-44.278Q-32.586-44.134-32.824-44.060Q-32.371-43.923-32.051-43.597Q-31.730-43.271-31.730-42.833Q-31.730-42.396-31.988-42.052Q-32.246-41.708-32.656-41.524Q-33.066-41.341-33.496-41.341Q-33.926-41.341-34.336-41.523Q-34.746-41.704-35.006-42.048Q-35.265-42.392-35.265-42.833M-34.625-42.833Q-34.625-42.560-34.459-42.345Q-34.293-42.130-34.031-42.015Q-33.769-41.899-33.496-41.899Q-33.222-41.899-32.963-42.015Q-32.703-42.130-32.537-42.347Q-32.371-42.564-32.371-42.833Q-32.371-43.110-32.537-43.327Q-32.703-43.544-32.963-43.661Q-33.222-43.778-33.496-43.778Q-33.769-43.778-34.031-43.661Q-34.293-43.544-34.459-43.329Q-34.625-43.114-34.625-42.833M-34.504-45.083Q-34.504-44.845-34.347-44.677Q-34.191-44.509-33.955-44.425Q-33.719-44.341-33.496-44.341Q-33.277-44.341-33.039-44.425Q-32.801-44.509-32.644-44.679Q-32.488-44.849-32.488-45.083Q-32.488-45.317-32.644-45.487Q-32.801-45.657-33.039-45.741Q-33.277-45.825-33.496-45.825Q-33.719-45.825-33.955-45.741Q-34.191-45.657-34.347-45.489Q-34.504-45.321-34.504-45.083M-29.652-40.306Q-29.765-40.306-29.855-40.396Q-29.945-40.485-29.945-40.595Q-29.945-40.771-29.754-40.845Q-29.535-40.896-29.363-41.054Q-29.191-41.212-29.125-41.435Q-29.148-41.435-29.179-41.419L-29.242-41.419Q-29.472-41.419-29.638-41.581Q-29.804-41.743-29.804-41.978Q-29.804-42.212-29.640-42.372Q-29.476-42.532-29.242-42.532Q-29.031-42.532-28.867-42.411Q-28.703-42.290-28.613-42.097Q-28.523-41.903-28.523-41.692Q-28.523-41.216-28.822-40.827Q-29.121-40.439-29.586-40.314Q-29.609-40.306-29.652-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-22.644-41.657L-22.644-41.747Q-22.586-41.954-22.394-41.978L-21.683-41.978L-21.683-44.306L-22.394-44.306Q-22.590-44.329-22.644-44.548L-22.644-44.634Q-22.586-44.845-22.394-44.868L-21.293-44.868Q-21.094-44.849-21.043-44.634L-21.043-44.306Q-20.781-44.591-20.426-44.749Q-20.070-44.907-19.683-44.907Q-19.390-44.907-19.156-44.773Q-18.922-44.638-18.922-44.372Q-18.922-44.204-19.031-44.087Q-19.140-43.970-19.308-43.970Q-19.461-43.970-19.576-44.081Q-19.691-44.192-19.691-44.349Q-20.066-44.349-20.381-44.148Q-20.695-43.946-20.869-43.612Q-21.043-43.278-21.043-42.899L-21.043-41.978L-20.097-41.978Q-19.890-41.954-19.851-41.747L-19.851-41.657Q-19.890-41.442-20.097-41.419L-22.394-41.419Q-22.586-41.442-22.644-41.657M-18.055-42.220Q-18.055-42.396-17.939-42.519Q-17.824-42.642-17.644-42.642Q-17.476-42.642-17.361-42.526Q-17.246-42.411-17.246-42.235Q-17.246-42.114-17.308-42.013Q-17.160-41.899-16.851-41.899Q-16.547-41.899-16.293-42.050Q-16.039-42.200-15.857-42.446Q-15.676-42.692-15.568-42.985Q-15.461-43.278-15.430-43.556Q-15.668-43.356-15.976-43.251Q-16.285-43.146-16.605-43.146Q-17.051-43.146-17.424-43.362Q-17.797-43.579-18.013-43.948Q-18.230-44.317-18.230-44.763Q-18.230-45.235-17.984-45.606Q-17.738-45.978-17.332-46.183Q-16.926-46.388-16.453-46.388Q-15.969-46.388-15.637-46.159Q-15.305-45.931-15.117-45.558Q-14.930-45.185-14.851-44.755Q-14.773-44.325-14.773-43.868Q-14.773-43.259-15.027-42.671Q-15.281-42.083-15.758-41.712Q-16.234-41.341-16.851-41.341Q-17.347-41.341-17.701-41.550Q-18.055-41.759-18.055-42.220M-16.551-43.708Q-16.164-43.708-15.828-43.937Q-15.492-44.165-15.492-44.532Q-15.492-44.571-15.508-44.649Q-15.523-44.728-15.523-44.763Q-15.523-44.774-15.515-44.806Q-15.508-44.837-15.508-44.845Q-15.570-45.095-15.689-45.315Q-15.808-45.536-16.002-45.681Q-16.195-45.825-16.453-45.825Q-16.926-45.825-17.258-45.524Q-17.590-45.224-17.590-44.763Q-17.590-44.481-17.453-44.235Q-17.316-43.989-17.078-43.849Q-16.840-43.708-16.551-43.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-6.469-42.954L-9.515-42.954Q-9.637-42.966-9.724-43.050Q-9.812-43.134-9.812-43.259Q-9.812-43.384-9.728-43.468Q-9.644-43.552-9.515-43.571L-6.469-43.571Q-6.344-43.552-6.262-43.468Q-6.180-43.384-6.180-43.259Q-6.180-43.134-6.263-43.050Q-6.347-42.966-6.469-42.954M-6.469-44.161L-9.515-44.161Q-9.648-44.181-9.730-44.259Q-9.812-44.337-9.812-44.466Q-9.812-44.591-9.728-44.675Q-9.644-44.759-9.515-44.778L-6.469-44.778Q-6.344-44.759-6.262-44.675Q-6.180-44.591-6.180-44.466Q-6.180-44.337-6.260-44.259Q-6.340-44.181-6.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M-0.762-41.657L-0.762-41.747Q-0.711-41.954-0.512-41.978L0.305-41.978L0.305-45.161Q-0.074-44.853-0.527-44.853Q-0.758-44.853-0.808-45.083L-0.808-45.173Q-0.758-45.388-0.562-45.411Q-0.234-45.411 0.020-45.649Q0.274-45.888 0.414-46.235Q0.485-46.364 0.641-46.388L0.696-46.388Q0.891-46.368 0.942-46.153L0.942-41.978L1.758-41.978Q1.957-41.954 2.008-41.747L2.008-41.657Q1.957-41.442 1.758-41.419L-0.512-41.419Q-0.711-41.442-0.762-41.657M4.348-40.306Q4.235-40.306 4.145-40.396Q4.055-40.485 4.055-40.595Q4.055-40.771 4.246-40.845Q4.465-40.896 4.637-41.054Q4.809-41.212 4.875-41.435Q4.852-41.435 4.821-41.419L4.758-41.419Q4.528-41.419 4.362-41.581Q4.196-41.743 4.196-41.978Q4.196-42.212 4.360-42.372Q4.524-42.532 4.758-42.532Q4.969-42.532 5.133-42.411Q5.297-42.290 5.387-42.097Q5.477-41.903 5.477-41.692Q5.477-41.216 5.178-40.827Q4.879-40.439 4.414-40.314Q4.391-40.306 4.348-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 82.646)\">\u003Cpath d=\"M11.392-41.657L11.392-41.747Q11.431-41.954 11.638-41.978L12.044-41.978L12.974-43.196L12.103-44.306L11.685-44.306Q11.489-44.325 11.439-44.548L11.439-44.634Q11.489-44.845 11.685-44.868L12.845-44.868Q13.044-44.845 13.095-44.634L13.095-44.548Q13.044-44.329 12.845-44.306L12.736-44.306L13.232-43.649L13.708-44.306L13.591-44.306Q13.392-44.329 13.341-44.548L13.341-44.634Q13.392-44.845 13.591-44.868L14.751-44.868Q14.947-44.849 14.997-44.634L14.997-44.548Q14.947-44.329 14.751-44.306L14.341-44.306L13.493-43.196L14.454-41.978L14.861-41.978Q15.060-41.954 15.111-41.747L15.111-41.657Q15.072-41.442 14.861-41.419L13.708-41.419Q13.501-41.442 13.462-41.657L13.462-41.747Q13.501-41.954 13.708-41.978L13.837-41.978L13.232-42.833L12.646-41.978L12.790-41.978Q12.997-41.954 13.036-41.747L13.036-41.657Q12.997-41.442 12.790-41.419L11.638-41.419Q11.443-41.439 11.392-41.657M17.501-41.380Q17.029-41.380 16.644-41.624Q16.259-41.868 16.036-42.278Q15.814-42.689 15.814-43.146Q15.814-43.489 15.939-43.812Q16.064-44.134 16.294-44.388Q16.525-44.642 16.831-44.786Q17.138-44.931 17.501-44.931Q17.864-44.931 18.177-44.784Q18.489-44.638 18.712-44.392Q18.935-44.146 19.062-43.825Q19.189-43.505 19.189-43.146Q19.189-42.689 18.964-42.276Q18.739-41.864 18.355-41.622Q17.970-41.380 17.501-41.380M17.501-41.939Q17.966-41.939 18.257-42.333Q18.548-42.728 18.548-43.212Q18.548-43.505 18.413-43.773Q18.279-44.040 18.038-44.206Q17.798-44.372 17.501-44.372Q17.197-44.372 16.958-44.206Q16.720-44.040 16.585-43.773Q16.450-43.505 16.450-43.212Q16.450-42.731 16.743-42.335Q17.036-41.939 17.501-41.939M19.849-41.657L19.849-41.747Q19.907-41.954 20.099-41.978L20.810-41.978L20.810-44.306L20.099-44.306Q19.904-44.329 19.849-44.548L19.849-44.634Q19.907-44.845 20.099-44.868L21.200-44.868Q21.400-44.849 21.450-44.634L21.450-44.306Q21.712-44.591 22.068-44.749Q22.423-44.907 22.810-44.907Q23.103-44.907 23.337-44.773Q23.572-44.638 23.572-44.372Q23.572-44.204 23.462-44.087Q23.353-43.970 23.185-43.970Q23.032-43.970 22.917-44.081Q22.802-44.192 22.802-44.349Q22.427-44.349 22.113-44.148Q21.798-43.946 21.624-43.612Q21.450-43.278 21.450-42.899L21.450-41.978L22.396-41.978Q22.603-41.954 22.642-41.747L22.642-41.657Q22.603-41.442 22.396-41.419L20.099-41.419Q19.907-41.442 19.849-41.657M26.185-39.876L26.185-39.962Q26.236-40.181 26.431-40.204L26.896-40.204L26.896-41.802Q26.443-41.380 25.833-41.380Q25.478-41.380 25.173-41.523Q24.868-41.665 24.636-41.915Q24.404-42.165 24.279-42.487Q24.154-42.810 24.154-43.146Q24.154-43.630 24.392-44.030Q24.630-44.431 25.036-44.669Q25.443-44.907 25.919-44.907Q26.482-44.907 26.896-44.517L26.896-44.677Q26.947-44.888 27.146-44.907L27.286-44.907Q27.486-44.884 27.536-44.677L27.536-40.204L28.001-40.204Q28.197-40.181 28.247-39.962L28.247-39.876Q28.197-39.665 28.001-39.642L26.431-39.642Q26.236-39.665 26.185-39.876M25.880-41.939Q26.251-41.939 26.527-42.192Q26.802-42.446 26.896-42.810L26.896-43.427Q26.853-43.665 26.730-43.878Q26.607-44.091 26.409-44.220Q26.212-44.349 25.970-44.349Q25.654-44.349 25.382-44.183Q25.111-44.017 24.952-43.735Q24.794-43.454 24.794-43.138Q24.794-42.673 25.109-42.306Q25.423-41.939 25.880-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-43.871-41.657L-43.871-41.747Q-43.832-41.954-43.625-41.978L-43.219-41.978L-42.289-43.196L-43.160-44.306L-43.578-44.306Q-43.773-44.325-43.824-44.548L-43.824-44.634Q-43.773-44.845-43.578-44.868L-42.418-44.868Q-42.219-44.845-42.168-44.634L-42.168-44.548Q-42.219-44.329-42.418-44.306L-42.527-44.306L-42.031-43.649L-41.554-44.306L-41.672-44.306Q-41.871-44.329-41.922-44.548L-41.922-44.634Q-41.871-44.845-41.672-44.868L-40.512-44.868Q-40.316-44.849-40.265-44.634L-40.265-44.548Q-40.316-44.329-40.512-44.306L-40.922-44.306L-41.769-43.196L-40.808-41.978L-40.402-41.978Q-40.203-41.954-40.152-41.747L-40.152-41.657Q-40.191-41.442-40.402-41.419L-41.554-41.419Q-41.762-41.442-41.801-41.657L-41.801-41.747Q-41.762-41.954-41.554-41.978L-41.426-41.978L-42.031-42.833L-42.617-41.978L-42.472-41.978Q-42.265-41.954-42.226-41.747L-42.226-41.657Q-42.265-41.442-42.472-41.419L-43.625-41.419Q-43.820-41.439-43.871-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-21.152-40.306Q-21.265-40.306-21.355-40.396Q-21.445-40.485-21.445-40.595Q-21.445-40.771-21.254-40.845Q-21.035-40.896-20.863-41.054Q-20.691-41.212-20.625-41.435Q-20.648-41.435-20.680-41.419L-20.742-41.419Q-20.972-41.419-21.138-41.581Q-21.305-41.743-21.305-41.978Q-21.305-42.212-21.140-42.372Q-20.976-42.532-20.742-42.532Q-20.531-42.532-20.367-42.411Q-20.203-42.290-20.113-42.097Q-20.023-41.903-20.023-41.692Q-20.023-41.216-20.322-40.827Q-20.621-40.439-21.086-40.314Q-21.109-40.306-21.152-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M-10.719-41.419L-13.719-41.419Q-13.820-41.419-13.902-41.501Q-13.984-41.583-13.984-41.685L-13.984-41.794Q-13.984-41.880-13.933-41.946L-11.336-45.747L-13.246-45.747L-13.246-45.235Q-13.293-45.021-13.496-44.993L-13.640-44.993Q-13.836-45.021-13.887-45.235L-13.887-46.075Q-13.836-46.282-13.640-46.306L-10.773-46.306Q-10.660-46.306-10.586-46.228Q-10.512-46.149-10.512-46.044L-10.512-45.931Q-10.512-45.849-10.558-45.778L-13.160-41.978L-11.109-41.978L-11.109-42.649Q-11.058-42.860-10.863-42.884L-10.719-42.884Q-10.523-42.864-10.472-42.649L-10.472-41.657Q-10.523-41.442-10.719-41.419M-9.914-41.657L-9.914-41.747Q-9.875-41.954-9.664-41.978L-9.328-41.978L-9.328-45.747L-9.664-45.747Q-9.875-45.771-9.914-45.985L-9.914-46.075Q-9.875-46.282-9.664-46.306L-6.410-46.306Q-6.211-46.282-6.160-46.075L-6.160-45.235Q-6.207-45.021-6.410-44.993L-6.555-44.993Q-6.750-45.021-6.801-45.235L-6.801-45.747L-8.687-45.747L-8.687-44.146L-7.680-44.146L-7.680-44.364Q-7.629-44.571-7.433-44.595L-7.289-44.595Q-7.094-44.575-7.043-44.364L-7.043-43.380Q-7.094-43.161-7.289-43.138L-7.433-43.138Q-7.629-43.157-7.680-43.380L-7.680-43.587L-8.687-43.587L-8.687-41.978L-8.199-41.978Q-8.004-41.954-7.953-41.747L-7.953-41.657Q-8.004-41.442-8.199-41.419L-9.664-41.419Q-9.875-41.442-9.914-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M2.031-42.954L-1.015-42.954Q-1.137-42.966-1.224-43.050Q-1.312-43.134-1.312-43.259Q-1.312-43.384-1.228-43.468Q-1.144-43.552-1.015-43.571L2.031-43.571Q2.156-43.552 2.238-43.468Q2.321-43.384 2.321-43.259Q2.321-43.134 2.237-43.050Q2.153-42.966 2.031-42.954M2.031-44.161L-1.015-44.161Q-1.148-44.181-1.230-44.259Q-1.312-44.337-1.312-44.466Q-1.312-44.591-1.228-44.675Q-1.144-44.759-1.015-44.778L2.031-44.778Q2.156-44.759 2.238-44.675Q2.321-44.591 2.321-44.466Q2.321-44.337 2.240-44.259Q2.160-44.181 2.031-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 83.313)\">\u003Cpath d=\"M7.738-41.657L7.738-41.747Q7.789-41.954 7.988-41.978L8.805-41.978L8.805-45.161Q8.426-44.853 7.973-44.853Q7.742-44.853 7.692-45.083L7.692-45.173Q7.742-45.388 7.938-45.411Q8.266-45.411 8.520-45.649Q8.774-45.888 8.914-46.235Q8.985-46.364 9.141-46.388L9.195-46.388Q9.391-46.368 9.442-46.153L9.442-41.978L10.258-41.978Q10.457-41.954 10.508-41.747L10.508-41.657Q10.457-41.442 10.258-41.419L7.988-41.419Q7.789-41.442 7.738-41.657\" 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.061h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 109.142)\">\u003Cpath d=\"M-56.515-42.833Q-56.515-43.118-56.359-43.372Q-56.203-43.626-55.953-43.800Q-55.703-43.974-55.418-44.060Q-55.656-44.134-55.883-44.276Q-56.109-44.419-56.252-44.628Q-56.394-44.837-56.394-45.083Q-56.394-45.481-56.148-45.776Q-55.902-46.071-55.519-46.230Q-55.137-46.388-54.746-46.388Q-54.355-46.388-53.972-46.230Q-53.590-46.071-53.344-45.773Q-53.097-45.474-53.097-45.083Q-53.097-44.837-53.240-44.630Q-53.383-44.423-53.609-44.278Q-53.836-44.134-54.074-44.060Q-53.621-43.923-53.301-43.597Q-52.980-43.271-52.980-42.833Q-52.980-42.396-53.238-42.052Q-53.496-41.708-53.906-41.524Q-54.316-41.341-54.746-41.341Q-55.176-41.341-55.586-41.523Q-55.996-41.704-56.256-42.048Q-56.515-42.392-56.515-42.833M-55.875-42.833Q-55.875-42.560-55.709-42.345Q-55.543-42.130-55.281-42.015Q-55.019-41.899-54.746-41.899Q-54.472-41.899-54.213-42.015Q-53.953-42.130-53.787-42.347Q-53.621-42.564-53.621-42.833Q-53.621-43.110-53.787-43.327Q-53.953-43.544-54.213-43.661Q-54.472-43.778-54.746-43.778Q-55.019-43.778-55.281-43.661Q-55.543-43.544-55.709-43.329Q-55.875-43.114-55.875-42.833M-55.754-45.083Q-55.754-44.845-55.597-44.677Q-55.441-44.509-55.205-44.425Q-54.969-44.341-54.746-44.341Q-54.527-44.341-54.289-44.425Q-54.051-44.509-53.894-44.679Q-53.738-44.849-53.738-45.083Q-53.738-45.317-53.894-45.487Q-54.051-45.657-54.289-45.741Q-54.527-45.825-54.746-45.825Q-54.969-45.825-55.205-45.741Q-55.441-45.657-55.597-45.489Q-55.754-45.321-55.754-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 109.142)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.777-42.466Q-43.777-42.642-43.660-42.763Q-43.543-42.884-43.367-42.884Q-43.285-42.884-43.209-42.853Q-43.133-42.821-43.082-42.771Q-43.031-42.720-43-42.640Q-42.969-42.560-42.969-42.481Q-42.969-42.349-43.051-42.235Q-42.781-41.899-41.992-41.899Q-41.566-41.899-41.224-42.165Q-40.883-42.431-40.883-42.845Q-40.883-43.118-41.049-43.337Q-41.215-43.556-41.474-43.667Q-41.734-43.778-42.008-43.778L-42.472-43.778Q-42.683-43.802-42.715-44.021L-42.715-44.106Q-42.683-44.310-42.472-44.341L-41.945-44.380Q-41.730-44.380-41.539-44.503Q-41.347-44.626-41.234-44.829Q-41.121-45.032-41.121-45.243Q-41.121-45.517-41.404-45.671Q-41.687-45.825-41.992-45.825Q-42.554-45.825-42.793-45.634Q-42.730-45.521-42.730-45.411Q-42.730-45.239-42.844-45.126Q-42.957-45.013-43.129-45.013Q-43.304-45.013-43.420-45.136Q-43.535-45.259-43.535-45.427Q-43.535-45.954-43.062-46.171Q-42.590-46.388-41.992-46.388Q-41.652-46.388-41.297-46.257Q-40.941-46.126-40.711-45.868Q-40.480-45.610-40.480-45.243Q-40.480-44.899-40.648-44.595Q-40.816-44.290-41.113-44.091Q-40.742-43.911-40.492-43.575Q-40.242-43.239-40.242-42.845Q-40.242-42.399-40.496-42.058Q-40.750-41.716-41.152-41.528Q-41.554-41.341-41.992-41.341Q-42.277-41.341-42.582-41.396Q-42.887-41.450-43.162-41.577Q-43.437-41.704-43.607-41.927Q-43.777-42.149-43.777-42.466M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 108.587)\">\u003Cpath d=\"M-56.922-41.657L-56.922-41.747Q-56.871-41.958-56.676-41.978L-56.476-41.978L-56.476-44.306L-56.676-44.306Q-56.883-44.329-56.922-44.548L-56.922-44.634Q-56.871-44.849-56.676-44.868L-56.195-44.868Q-56.004-44.845-55.945-44.634Q-55.625-44.907-55.211-44.907Q-55.019-44.907-54.851-44.798Q-54.683-44.689-54.609-44.517Q-54.433-44.708-54.211-44.808Q-53.988-44.907-53.746-44.907Q-53.328-44.907-53.174-44.565Q-53.019-44.224-53.019-43.755L-53.019-41.978L-52.820-41.978Q-52.609-41.954-52.570-41.747L-52.570-41.657Q-52.621-41.442-52.820-41.419L-53.637-41.419Q-53.832-41.442-53.883-41.657L-53.883-41.747Q-53.832-41.954-53.637-41.978L-53.547-41.978L-53.547-43.724Q-53.547-44.349-53.797-44.349Q-54.129-44.349-54.306-44.038Q-54.484-43.728-54.484-43.364L-54.484-41.978L-54.281-41.978Q-54.074-41.954-54.035-41.747L-54.035-41.657Q-54.086-41.442-54.281-41.419L-55.097-41.419Q-55.297-41.442-55.347-41.657L-55.347-41.747Q-55.297-41.954-55.097-41.978L-55.012-41.978L-55.012-43.724Q-55.012-44.349-55.258-44.349Q-55.590-44.349-55.767-44.036Q-55.945-43.724-55.945-43.364L-55.945-41.978L-55.746-41.978Q-55.539-41.954-55.500-41.747L-55.500-41.657Q-55.551-41.439-55.746-41.419L-56.676-41.419Q-56.883-41.442-56.922-41.657M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-48.429-41.657L-48.429-41.747Q-48.379-41.958-48.183-41.978L-47.984-41.978L-47.984-44.306L-48.183-44.306Q-48.390-44.329-48.429-44.548L-48.429-44.634Q-48.379-44.849-48.183-44.868L-47.703-44.868Q-47.512-44.845-47.453-44.634Q-47.133-44.907-46.719-44.907Q-46.527-44.907-46.359-44.798Q-46.191-44.689-46.117-44.517Q-45.941-44.708-45.719-44.808Q-45.496-44.907-45.254-44.907Q-44.836-44.907-44.681-44.565Q-44.527-44.224-44.527-43.755L-44.527-41.978L-44.328-41.978Q-44.117-41.954-44.078-41.747L-44.078-41.657Q-44.129-41.442-44.328-41.419L-45.144-41.419Q-45.340-41.442-45.390-41.657L-45.390-41.747Q-45.340-41.954-45.144-41.978L-45.054-41.978L-45.054-43.724Q-45.054-44.349-45.304-44.349Q-45.637-44.349-45.814-44.038Q-45.992-43.728-45.992-43.364L-45.992-41.978L-45.789-41.978Q-45.582-41.954-45.543-41.747L-45.543-41.657Q-45.594-41.442-45.789-41.419L-46.605-41.419Q-46.804-41.442-46.855-41.657L-46.855-41.747Q-46.804-41.954-46.605-41.978L-46.519-41.978L-46.519-43.724Q-46.519-44.349-46.765-44.349Q-47.097-44.349-47.275-44.036Q-47.453-43.724-47.453-43.364L-47.453-41.978L-47.254-41.978Q-47.047-41.954-47.008-41.747L-47.008-41.657Q-47.058-41.439-47.254-41.419L-48.183-41.419Q-48.390-41.442-48.429-41.657M-42.008-41.380Q-42.480-41.380-42.865-41.624Q-43.250-41.868-43.472-42.278Q-43.695-42.689-43.695-43.146Q-43.695-43.489-43.570-43.812Q-43.445-44.134-43.215-44.388Q-42.984-44.642-42.678-44.786Q-42.371-44.931-42.008-44.931Q-41.644-44.931-41.332-44.784Q-41.019-44.638-40.797-44.392Q-40.574-44.146-40.447-43.825Q-40.320-43.505-40.320-43.146Q-40.320-42.689-40.545-42.276Q-40.769-41.864-41.154-41.622Q-41.539-41.380-42.008-41.380M-42.008-41.939Q-41.543-41.939-41.252-42.333Q-40.961-42.728-40.961-43.212Q-40.961-43.505-41.096-43.773Q-41.230-44.040-41.471-44.206Q-41.711-44.372-42.008-44.372Q-42.312-44.372-42.551-44.206Q-42.789-44.040-42.924-43.773Q-43.058-43.505-43.058-43.212Q-43.058-42.731-42.765-42.335Q-42.472-41.939-42.008-41.939M-38.226-41.642L-39.113-44.306L-39.433-44.306Q-39.633-44.329-39.683-44.548L-39.683-44.634Q-39.633-44.845-39.433-44.868L-38.273-44.868Q-38.078-44.849-38.027-44.634L-38.027-44.548Q-38.078-44.329-38.273-44.306L-38.554-44.306L-37.762-41.931L-36.972-44.306L-37.250-44.306Q-37.449-44.329-37.500-44.548L-37.500-44.634Q-37.449-44.845-37.250-44.868L-36.090-44.868Q-35.894-44.845-35.844-44.634L-35.844-44.548Q-35.894-44.329-36.090-44.306L-36.410-44.306L-37.297-41.642Q-37.340-41.528-37.441-41.454Q-37.543-41.380-37.668-41.380L-37.859-41.380Q-37.976-41.380-38.080-41.452Q-38.183-41.524-38.226-41.642M-33.324-39.876L-33.324-39.962Q-33.273-40.181-33.078-40.204L-32.613-40.204L-32.613-41.802Q-33.066-41.380-33.676-41.380Q-34.031-41.380-34.336-41.523Q-34.640-41.665-34.873-41.915Q-35.105-42.165-35.230-42.487Q-35.355-42.810-35.355-43.146Q-35.355-43.630-35.117-44.030Q-34.879-44.431-34.472-44.669Q-34.066-44.907-33.590-44.907Q-33.027-44.907-32.613-44.517L-32.613-44.677Q-32.562-44.888-32.363-44.907L-32.222-44.907Q-32.023-44.884-31.972-44.677L-31.972-40.204L-31.508-40.204Q-31.312-40.181-31.262-39.962L-31.262-39.876Q-31.312-39.665-31.508-39.642L-33.078-39.642Q-33.273-39.665-33.324-39.876M-33.629-41.939Q-33.258-41.939-32.982-42.192Q-32.707-42.446-32.613-42.810L-32.613-43.427Q-32.656-43.665-32.779-43.878Q-32.902-44.091-33.099-44.220Q-33.297-44.349-33.539-44.349Q-33.855-44.349-34.127-44.183Q-34.398-44.017-34.556-43.735Q-34.715-43.454-34.715-43.138Q-34.715-42.673-34.400-42.306Q-34.086-41.939-33.629-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 108.587)\">\u003Cpath d=\"M-24.004-40.778Q-24.535-41.087-24.935-41.575Q-25.336-42.064-25.547-42.657Q-25.758-43.251-25.758-43.868Q-25.758-44.485-25.549-45.073Q-25.340-45.661-24.943-46.142Q-24.547-46.622-24.012-46.946Q-23.941-46.970-23.910-46.970L-23.820-46.970Q-23.722-46.958-23.656-46.892Q-23.590-46.825-23.590-46.724Q-23.590-46.579-23.691-46.517Q-24.140-46.228-24.467-45.812Q-24.793-45.396-24.955-44.903Q-25.117-44.411-25.117-43.868Q-25.117-43.462-25.021-43.075Q-24.926-42.689-24.748-42.353Q-24.570-42.017-24.310-41.733Q-24.051-41.450-23.703-41.220Q-23.590-41.142-23.590-41.005Q-23.590-40.907-23.656-40.837Q-23.722-40.767-23.820-40.755L-23.910-40.755Q-23.969-40.755-24.004-40.778M-22.191-41.060Q-22.191-41.114-22.168-41.181L-19.902-46.786Q-19.808-46.970-19.613-46.970Q-19.488-46.970-19.400-46.882Q-19.312-46.794-19.312-46.665Q-19.312-46.606-19.336-46.548L-21.597-40.939Q-21.699-40.755-21.879-40.755Q-22.004-40.755-22.097-40.845Q-22.191-40.935-22.191-41.060M-19.613-40.755Q-19.965-40.755-20.146-41.095Q-20.328-41.435-20.328-41.817Q-20.328-42.204-20.148-42.544Q-19.969-42.884-19.613-42.884Q-19.375-42.884-19.217-42.714Q-19.058-42.544-18.984-42.300Q-18.910-42.056-18.910-41.817Q-18.910-41.583-18.984-41.339Q-19.058-41.095-19.217-40.925Q-19.375-40.755-19.613-40.755M-19.613-41.314Q-19.531-41.345-19.484-41.513Q-19.437-41.681-19.437-41.817Q-19.437-41.954-19.484-42.124Q-19.531-42.294-19.613-42.321Q-19.699-42.294-19.750-42.126Q-19.801-41.958-19.801-41.817Q-19.801-41.689-19.750-41.517Q-19.699-41.345-19.613-41.314M-21.879-44.833Q-22.121-44.833-22.281-45.003Q-22.441-45.173-22.515-45.419Q-22.590-45.665-22.590-45.907Q-22.590-46.290-22.410-46.630Q-22.230-46.970-21.879-46.970Q-21.640-46.970-21.482-46.800Q-21.324-46.630-21.250-46.386Q-21.176-46.142-21.176-45.907Q-21.176-45.665-21.250-45.419Q-21.324-45.173-21.482-45.003Q-21.640-44.833-21.879-44.833M-21.879-45.396Q-21.789-45.439-21.746-45.595Q-21.703-45.751-21.703-45.907Q-21.703-46.036-21.750-46.212Q-21.797-46.388-21.887-46.411Q-21.902-46.411-21.931-46.376Q-21.961-46.341-21.969-46.321Q-22.062-46.134-22.062-45.907Q-22.062-45.771-22.013-45.599Q-21.965-45.427-21.879-45.396M-18.402-41.657L-18.402-41.747Q-18.344-41.954-18.152-41.978L-17.441-41.978L-17.441-44.306L-18.152-44.306Q-18.347-44.329-18.402-44.548L-18.402-44.634Q-18.344-44.845-18.152-44.868L-17.051-44.868Q-16.851-44.849-16.801-44.634L-16.801-44.306Q-16.539-44.591-16.183-44.749Q-15.828-44.907-15.441-44.907Q-15.148-44.907-14.914-44.773Q-14.680-44.638-14.680-44.372Q-14.680-44.204-14.789-44.087Q-14.898-43.970-15.066-43.970Q-15.219-43.970-15.334-44.081Q-15.449-44.192-15.449-44.349Q-15.824-44.349-16.138-44.148Q-16.453-43.946-16.627-43.612Q-16.801-43.278-16.801-42.899L-16.801-41.978L-15.855-41.978Q-15.648-41.954-15.609-41.747L-15.609-41.657Q-15.648-41.442-15.855-41.419L-18.152-41.419Q-18.344-41.442-18.402-41.657M-12.515-41.380Q-12.980-41.380-13.346-41.630Q-13.711-41.880-13.916-42.284Q-14.121-42.689-14.121-43.146Q-14.121-43.489-13.996-43.810Q-13.871-44.130-13.638-44.380Q-13.406-44.630-13.101-44.769Q-12.797-44.907-12.441-44.907Q-11.930-44.907-11.523-44.587L-11.523-45.747L-11.945-45.747Q-12.156-45.771-12.195-45.985L-12.195-46.075Q-12.156-46.282-11.945-46.306L-11.133-46.306Q-10.933-46.282-10.883-46.075L-10.883-41.978L-10.457-41.978Q-10.250-41.954-10.211-41.747L-10.211-41.657Q-10.250-41.442-10.457-41.419L-11.273-41.419Q-11.472-41.442-11.523-41.657L-11.523-41.786Q-11.719-41.595-11.980-41.487Q-12.242-41.380-12.515-41.380M-12.476-41.939Q-12.117-41.939-11.865-42.208Q-11.613-42.478-11.523-42.853L-11.523-43.685Q-11.582-43.872-11.709-44.023Q-11.836-44.173-12.013-44.261Q-12.191-44.349-12.387-44.349Q-12.695-44.349-12.945-44.179Q-13.195-44.009-13.340-43.724Q-13.484-43.439-13.484-43.138Q-13.484-42.689-13.199-42.314Q-12.914-41.939-12.476-41.939M-9.515-41.657L-9.515-41.747Q-9.465-41.954-9.269-41.978L-8.230-41.978L-8.230-44.306L-9.203-44.306Q-9.402-44.329-9.453-44.548L-9.453-44.634Q-9.402-44.845-9.203-44.868L-7.836-44.868Q-7.640-44.849-7.590-44.634L-7.590-41.978L-6.676-41.978Q-6.480-41.954-6.430-41.747L-6.430-41.657Q-6.480-41.442-6.676-41.419L-9.269-41.419Q-9.465-41.442-9.515-41.657M-8.484-45.845L-8.484-45.899Q-8.484-46.071-8.347-46.192Q-8.211-46.314-8.035-46.314Q-7.863-46.314-7.726-46.192Q-7.590-46.071-7.590-45.899L-7.590-45.845Q-7.590-45.669-7.726-45.548Q-7.863-45.427-8.035-45.427Q-8.211-45.427-8.347-45.548Q-8.484-45.669-8.484-45.845M-4.847-40.755L-4.933-40.755Q-5.039-40.767-5.107-40.839Q-5.176-40.911-5.176-41.005Q-5.176-41.146-5.070-41.212Q-4.734-41.427-4.465-41.716Q-4.195-42.005-4.012-42.353Q-3.828-42.700-3.738-43.079Q-3.648-43.458-3.648-43.868Q-3.648-44.407-3.812-44.899Q-3.976-45.392-4.295-45.806Q-4.613-46.220-5.055-46.509Q-5.176-46.591-5.176-46.724Q-5.176-46.821-5.107-46.890Q-5.039-46.958-4.933-46.970L-4.847-46.970Q-4.793-46.970-4.758-46.946Q-4.371-46.724-4.031-46.376Q-3.691-46.028-3.471-45.634Q-3.250-45.239-3.129-44.794Q-3.008-44.349-3.008-43.868Q-3.008-43.384-3.129-42.933Q-3.250-42.481-3.474-42.085Q-3.699-41.689-4.023-41.355Q-4.347-41.021-4.750-40.778Q-4.820-40.755-4.847-40.755M0.078-40.306Q-0.035-40.306-0.125-40.396Q-0.215-40.485-0.215-40.595Q-0.215-40.771-0.023-40.845Q0.195-40.896 0.367-41.054Q0.539-41.212 0.606-41.435Q0.582-41.435 0.551-41.419L0.488-41.419Q0.258-41.419 0.092-41.581Q-0.074-41.743-0.074-41.978Q-0.074-42.212 0.090-42.372Q0.254-42.532 0.488-42.532Q0.699-42.532 0.863-42.411Q1.028-42.290 1.117-42.097Q1.207-41.903 1.207-41.692Q1.207-41.216 0.908-40.827Q0.610-40.439 0.145-40.314Q0.121-40.306 0.078-40.306M3.285-41.060Q3.285-41.114 3.309-41.181L5.574-46.786Q5.668-46.970 5.863-46.970Q5.988-46.970 6.076-46.882Q6.164-46.794 6.164-46.665Q6.164-46.606 6.141-46.548L3.879-40.939Q3.778-40.755 3.598-40.755Q3.473-40.755 3.379-40.845Q3.285-40.935 3.285-41.060M5.863-40.755Q5.512-40.755 5.330-41.095Q5.149-41.435 5.149-41.817Q5.149-42.204 5.328-42.544Q5.508-42.884 5.863-42.884Q6.102-42.884 6.260-42.714Q6.418-42.544 6.492-42.300Q6.567-42.056 6.567-41.817Q6.567-41.583 6.492-41.339Q6.418-41.095 6.260-40.925Q6.102-40.755 5.863-40.755M5.863-41.314Q5.945-41.345 5.992-41.513Q6.039-41.681 6.039-41.817Q6.039-41.954 5.992-42.124Q5.945-42.294 5.863-42.321Q5.778-42.294 5.727-42.126Q5.676-41.958 5.676-41.817Q5.676-41.689 5.727-41.517Q5.778-41.345 5.863-41.314M3.598-44.833Q3.356-44.833 3.195-45.003Q3.035-45.173 2.961-45.419Q2.887-45.665 2.887-45.907Q2.887-46.290 3.067-46.630Q3.246-46.970 3.598-46.970Q3.836-46.970 3.994-46.800Q4.153-46.630 4.227-46.386Q4.301-46.142 4.301-45.907Q4.301-45.665 4.227-45.419Q4.153-45.173 3.994-45.003Q3.836-44.833 3.598-44.833M3.598-45.396Q3.688-45.439 3.731-45.595Q3.774-45.751 3.774-45.907Q3.774-46.036 3.727-46.212Q3.680-46.388 3.590-46.411Q3.574-46.411 3.545-46.376Q3.516-46.341 3.508-46.321Q3.414-46.134 3.414-45.907Q3.414-45.771 3.463-45.599Q3.512-45.427 3.598-45.396M7.074-41.657L7.074-41.747Q7.133-41.954 7.324-41.978L8.035-41.978L8.035-44.306L7.324-44.306Q7.129-44.329 7.074-44.548L7.074-44.634Q7.133-44.845 7.324-44.868L8.426-44.868Q8.625-44.849 8.676-44.634L8.676-44.306Q8.938-44.591 9.293-44.749Q9.649-44.907 10.035-44.907Q10.328-44.907 10.563-44.773Q10.797-44.638 10.797-44.372Q10.797-44.204 10.688-44.087Q10.578-43.970 10.410-43.970Q10.258-43.970 10.143-44.081Q10.028-44.192 10.028-44.349Q9.653-44.349 9.338-44.148Q9.024-43.946 8.850-43.612Q8.676-43.278 8.676-42.899L8.676-41.978L9.621-41.978Q9.828-41.954 9.867-41.747L9.867-41.657Q9.828-41.442 9.621-41.419L7.324-41.419Q7.133-41.442 7.074-41.657M11.953-41.657L11.953-41.747Q12.004-41.954 12.203-41.978L13.020-41.978L13.020-45.161Q12.641-44.853 12.188-44.853Q11.957-44.853 11.906-45.083L11.906-45.173Q11.957-45.388 12.153-45.411Q12.481-45.411 12.735-45.649Q12.988-45.888 13.129-46.235Q13.199-46.364 13.356-46.388L13.410-46.388Q13.606-46.368 13.656-46.153L13.656-41.978L14.473-41.978Q14.672-41.954 14.723-41.747L14.723-41.657Q14.672-41.442 14.473-41.419L12.203-41.419Q12.004-41.442 11.953-41.657M17.465-41.341Q17.031-41.341 16.699-41.579Q16.367-41.817 16.147-42.206Q15.926-42.595 15.819-43.032Q15.711-43.470 15.711-43.868Q15.711-44.259 15.820-44.702Q15.930-45.146 16.147-45.526Q16.363-45.907 16.697-46.148Q17.031-46.388 17.465-46.388Q18.020-46.388 18.420-45.989Q18.820-45.591 19.018-45.005Q19.215-44.419 19.215-43.868Q19.215-43.314 19.018-42.726Q18.820-42.138 18.420-41.739Q18.020-41.341 17.465-41.341M17.465-41.899Q17.766-41.899 17.983-42.116Q18.199-42.333 18.326-42.661Q18.453-42.989 18.514-43.335Q18.574-43.681 18.574-43.962Q18.574-44.212 18.512-44.538Q18.449-44.864 18.319-45.155Q18.188-45.446 17.975-45.636Q17.762-45.825 17.465-45.825Q17.090-45.825 16.838-45.513Q16.586-45.200 16.469-44.767Q16.352-44.333 16.352-43.962Q16.352-43.564 16.465-43.083Q16.578-42.603 16.826-42.251Q17.074-41.899 17.465-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 109.142)\">\u003Cpath d=\"M-55.211-41.642L-56.097-44.306L-56.418-44.306Q-56.617-44.329-56.668-44.548L-56.668-44.634Q-56.617-44.845-56.418-44.868L-55.258-44.868Q-55.062-44.849-55.012-44.634L-55.012-44.548Q-55.062-44.329-55.258-44.306L-55.539-44.306L-54.746-41.931L-53.957-44.306L-54.234-44.306Q-54.433-44.329-54.484-44.548L-54.484-44.634Q-54.433-44.845-54.234-44.868L-53.074-44.868Q-52.879-44.845-52.828-44.634L-52.828-44.548Q-52.879-44.329-53.074-44.306L-53.394-44.306L-54.281-41.642Q-54.324-41.528-54.426-41.454Q-54.527-41.380-54.652-41.380L-54.844-41.380Q-54.961-41.380-55.064-41.452Q-55.168-41.524-55.211-41.642M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-44.015-41.657L-44.015-41.747Q-43.965-41.954-43.769-41.978L-43.594-41.978L-43.594-45.747L-43.769-45.747Q-43.965-45.771-44.015-45.985L-44.015-46.075Q-43.965-46.282-43.769-46.306L-43.082-46.306Q-42.953-46.306-42.853-46.230Q-42.754-46.153-42.715-46.044Q-42.683-45.939-42.461-45.249Q-42.238-44.560-42.123-44.163Q-42.008-43.767-42.008-43.692Q-42-43.771-41.945-43.968Q-41.890-44.165-41.777-44.536Q-41.664-44.907-41.517-45.370Q-41.371-45.833-41.304-46.044Q-41.265-46.153-41.162-46.230Q-41.058-46.306-40.937-46.306L-40.250-46.306Q-40.051-46.282-40-46.075L-40-45.985Q-40.051-45.771-40.250-45.747L-40.426-45.747L-40.426-41.978L-40.250-41.978Q-40.051-41.954-40-41.747L-40-41.657Q-40.051-41.442-40.250-41.419L-41.129-41.419Q-41.324-41.442-41.375-41.657L-41.375-41.747Q-41.324-41.954-41.129-41.978L-40.953-41.978L-40.953-45.665Q-40.953-45.606-41.037-45.308Q-41.121-45.009-41.224-44.677Q-41.328-44.345-41.459-43.937Q-41.590-43.528-41.656-43.314Q-41.695-43.200-41.795-43.126Q-41.894-43.052-42.008-43.052Q-42.121-43.052-42.221-43.126Q-42.320-43.200-42.359-43.314Q-42.426-43.528-42.560-43.946Q-42.695-44.364-42.832-44.808Q-42.969-45.251-43.013-45.415Q-43.058-45.579-43.066-45.665L-43.066-41.978L-42.890-41.978Q-42.691-41.954-42.640-41.747L-42.640-41.657Q-42.691-41.442-42.890-41.419L-43.769-41.419Q-43.965-41.442-44.015-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 109.142)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 109.142)\">\u003Cpath d=\"M-27.004-41.657L-27.004-41.747Q-26.953-41.954-26.758-41.978L-26.582-41.978L-26.582-45.747L-26.758-45.747Q-26.953-45.771-27.004-45.985L-27.004-46.075Q-26.953-46.282-26.758-46.306L-26.070-46.306Q-25.941-46.306-25.842-46.230Q-25.742-46.153-25.703-46.044Q-25.672-45.939-25.449-45.249Q-25.226-44.560-25.111-44.163Q-24.996-43.767-24.996-43.692Q-24.988-43.771-24.933-43.968Q-24.879-44.165-24.765-44.536Q-24.652-44.907-24.506-45.370Q-24.359-45.833-24.293-46.044Q-24.254-46.153-24.150-46.230Q-24.047-46.306-23.926-46.306L-23.238-46.306Q-23.039-46.282-22.988-46.075L-22.988-45.985Q-23.039-45.771-23.238-45.747L-23.414-45.747L-23.414-41.978L-23.238-41.978Q-23.039-41.954-22.988-41.747L-22.988-41.657Q-23.039-41.442-23.238-41.419L-24.117-41.419Q-24.312-41.442-24.363-41.657L-24.363-41.747Q-24.312-41.954-24.117-41.978L-23.941-41.978L-23.941-45.665Q-23.941-45.606-24.025-45.308Q-24.109-45.009-24.213-44.677Q-24.316-44.345-24.447-43.937Q-24.578-43.528-24.644-43.314Q-24.683-43.200-24.783-43.126Q-24.883-43.052-24.996-43.052Q-25.109-43.052-25.209-43.126Q-25.308-43.200-25.347-43.314Q-25.414-43.528-25.549-43.946Q-25.683-44.364-25.820-44.808Q-25.957-45.251-26.002-45.415Q-26.047-45.579-26.055-45.665L-26.055-41.978L-25.879-41.978Q-25.680-41.954-25.629-41.747L-25.629-41.657Q-25.680-41.442-25.879-41.419L-26.758-41.419Q-26.953-41.442-27.004-41.657M-21.137-40.985L-21.137-46.739Q-21.078-46.946-20.887-46.970L-19.207-46.970Q-19.012-46.950-18.961-46.739L-18.961-46.649Q-19.012-46.435-19.207-46.411L-20.496-46.411L-20.496-41.314L-19.207-41.314Q-19.012-41.294-18.961-41.075L-18.961-40.985Q-19.012-40.778-19.207-40.755L-20.887-40.755Q-21.078-40.774-21.137-40.985M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-14.121-41.657L-14.121-41.747Q-14.082-41.954-13.875-41.978L-13.469-41.978L-12.539-43.196L-13.410-44.306L-13.828-44.306Q-14.023-44.325-14.074-44.548L-14.074-44.634Q-14.023-44.845-13.828-44.868L-12.668-44.868Q-12.469-44.845-12.418-44.634L-12.418-44.548Q-12.469-44.329-12.668-44.306L-12.777-44.306L-12.281-43.649L-11.805-44.306L-11.922-44.306Q-12.121-44.329-12.172-44.548L-12.172-44.634Q-12.121-44.845-11.922-44.868L-10.762-44.868Q-10.566-44.849-10.515-44.634L-10.515-44.548Q-10.566-44.329-10.762-44.306L-11.172-44.306L-12.019-43.196L-11.058-41.978L-10.652-41.978Q-10.453-41.954-10.402-41.747L-10.402-41.657Q-10.441-41.442-10.652-41.419L-11.805-41.419Q-12.012-41.442-12.051-41.657L-12.051-41.747Q-12.012-41.954-11.805-41.978L-11.676-41.978L-12.281-42.833L-12.867-41.978L-12.722-41.978Q-12.515-41.954-12.476-41.747L-12.476-41.657Q-12.515-41.442-12.722-41.419L-13.875-41.419Q-14.070-41.439-14.121-41.657M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899M-4.750-42.298Q-4.633-42.095-4.398-41.997Q-4.164-41.899-3.902-41.899Q-3.605-41.899-3.332-42.028Q-3.058-42.157-2.885-42.394Q-2.711-42.630-2.711-42.931Q-2.711-43.185-2.830-43.427Q-2.949-43.669-3.164-43.815Q-3.379-43.962-3.648-43.962Q-4.254-43.962-4.590-43.642Q-4.668-43.556-4.722-43.509Q-4.777-43.462-4.863-43.450L-4.965-43.450Q-5.164-43.474-5.215-43.692L-5.215-46.075Q-5.164-46.282-4.965-46.306L-2.605-46.306Q-2.410-46.286-2.359-46.075L-2.359-45.985Q-2.410-45.771-2.605-45.747L-4.574-45.747L-4.574-44.321Q-4.168-44.524-3.648-44.524Q-3.219-44.524-2.853-44.308Q-2.488-44.091-2.279-43.722Q-2.070-43.353-2.070-42.931Q-2.070-42.458-2.334-42.099Q-2.597-41.739-3.021-41.540Q-3.445-41.341-3.902-41.341Q-4.156-41.341-4.433-41.415Q-4.711-41.489-4.945-41.646Q-5.180-41.802-5.320-42.036Q-5.461-42.271-5.461-42.556Q-5.461-42.724-5.346-42.847Q-5.230-42.970-5.055-42.970Q-4.972-42.970-4.902-42.940Q-4.832-42.911-4.775-42.856Q-4.719-42.802-4.687-42.726Q-4.656-42.649-4.656-42.571Q-4.656-42.411-4.750-42.298M-1.289-42.833Q-1.289-43.118-1.133-43.372Q-0.976-43.626-0.726-43.800Q-0.476-43.974-0.191-44.060Q-0.430-44.134-0.656-44.276Q-0.883-44.419-1.025-44.628Q-1.168-44.837-1.168-45.083Q-1.168-45.481-0.922-45.776Q-0.676-46.071-0.293-46.230Q0.090-46.388 0.481-46.388Q0.871-46.388 1.254-46.230Q1.637-46.071 1.883-45.773Q2.129-45.474 2.129-45.083Q2.129-44.837 1.987-44.630Q1.844-44.423 1.617-44.278Q1.391-44.134 1.153-44.060Q1.606-43.923 1.926-43.597Q2.246-43.271 2.246-42.833Q2.246-42.396 1.988-42.052Q1.731-41.708 1.320-41.524Q0.910-41.341 0.481-41.341Q0.051-41.341-0.359-41.523Q-0.769-41.704-1.029-42.048Q-1.289-42.392-1.289-42.833M-0.648-42.833Q-0.648-42.560-0.482-42.345Q-0.316-42.130-0.055-42.015Q0.207-41.899 0.481-41.899Q0.754-41.899 1.014-42.015Q1.274-42.130 1.440-42.347Q1.606-42.564 1.606-42.833Q1.606-43.110 1.440-43.327Q1.274-43.544 1.014-43.661Q0.754-43.778 0.481-43.778Q0.207-43.778-0.055-43.661Q-0.316-43.544-0.482-43.329Q-0.648-43.114-0.648-42.833M-0.527-45.083Q-0.527-44.845-0.371-44.677Q-0.215-44.509 0.022-44.425Q0.258-44.341 0.481-44.341Q0.699-44.341 0.938-44.425Q1.176-44.509 1.332-44.679Q1.488-44.849 1.488-45.083Q1.488-45.317 1.332-45.487Q1.176-45.657 0.938-45.741Q0.699-45.825 0.481-45.825Q0.258-45.825 0.022-45.741Q-0.215-45.657-0.371-45.489Q-0.527-45.321-0.527-45.083M2.934-40.985L2.934-41.075Q2.985-41.290 3.180-41.314L4.469-41.314L4.469-46.411L3.180-46.411Q2.985-46.435 2.934-46.649L2.934-46.739Q2.985-46.946 3.180-46.970L4.863-46.970Q5.059-46.946 5.110-46.739L5.110-40.985Q5.059-40.778 4.863-40.755L3.180-40.755Q2.985-40.778 2.934-40.985\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 109.142)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.519-41.657L-47.519-41.747Q-47.469-41.954-47.269-41.978L-46.453-41.978L-46.453-45.161Q-46.832-44.853-47.285-44.853Q-47.515-44.853-47.566-45.083L-47.566-45.173Q-47.515-45.388-47.320-45.411Q-46.992-45.411-46.738-45.649Q-46.484-45.888-46.344-46.235Q-46.273-46.364-46.117-46.388L-46.062-46.388Q-45.867-46.368-45.816-46.153L-45.816-41.978L-45-41.978Q-44.801-41.954-44.750-41.747L-44.750-41.657Q-44.801-41.442-45-41.419L-47.269-41.419Q-47.469-41.442-47.519-41.657M-42.008-41.341Q-42.441-41.341-42.773-41.579Q-43.105-41.817-43.326-42.206Q-43.547-42.595-43.654-43.032Q-43.762-43.470-43.762-43.868Q-43.762-44.259-43.652-44.702Q-43.543-45.146-43.326-45.526Q-43.109-45.907-42.775-46.148Q-42.441-46.388-42.008-46.388Q-41.453-46.388-41.053-45.989Q-40.652-45.591-40.455-45.005Q-40.258-44.419-40.258-43.868Q-40.258-43.314-40.455-42.726Q-40.652-42.138-41.053-41.739Q-41.453-41.341-42.008-41.341M-42.008-41.899Q-41.707-41.899-41.490-42.116Q-41.273-42.333-41.146-42.661Q-41.019-42.989-40.959-43.335Q-40.898-43.681-40.898-43.962Q-40.898-44.212-40.961-44.538Q-41.023-44.864-41.154-45.155Q-41.285-45.446-41.498-45.636Q-41.711-45.825-42.008-45.825Q-42.383-45.825-42.635-45.513Q-42.887-45.200-43.004-44.767Q-43.121-44.333-43.121-43.962Q-43.121-43.564-43.008-43.083Q-42.894-42.603-42.646-42.251Q-42.398-41.899-42.008-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 109.142)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 109.142)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-12.258-41.341Q-12.691-41.341-13.023-41.579Q-13.355-41.817-13.576-42.206Q-13.797-42.595-13.904-43.032Q-14.012-43.470-14.012-43.868Q-14.012-44.259-13.902-44.702Q-13.793-45.146-13.576-45.526Q-13.359-45.907-13.025-46.148Q-12.691-46.388-12.258-46.388Q-11.703-46.388-11.303-45.989Q-10.902-45.591-10.705-45.005Q-10.508-44.419-10.508-43.868Q-10.508-43.314-10.705-42.726Q-10.902-42.138-11.303-41.739Q-11.703-41.341-12.258-41.341M-12.258-41.899Q-11.957-41.899-11.740-42.116Q-11.523-42.333-11.396-42.661Q-11.269-42.989-11.209-43.335Q-11.148-43.681-11.148-43.962Q-11.148-44.212-11.211-44.538Q-11.273-44.864-11.404-45.155Q-11.535-45.446-11.748-45.636Q-11.961-45.825-12.258-45.825Q-12.633-45.825-12.885-45.513Q-13.137-45.200-13.254-44.767Q-13.371-44.333-13.371-43.962Q-13.371-43.564-13.258-43.083Q-13.144-42.603-12.896-42.251Q-12.648-41.899-12.258-41.899M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899M-4.023-41.380Q-4.488-41.380-4.853-41.630Q-5.219-41.880-5.424-42.284Q-5.629-42.689-5.629-43.146Q-5.629-43.489-5.504-43.810Q-5.379-44.130-5.146-44.380Q-4.914-44.630-4.609-44.769Q-4.305-44.907-3.949-44.907Q-3.437-44.907-3.031-44.587L-3.031-45.747L-3.453-45.747Q-3.664-45.771-3.703-45.985L-3.703-46.075Q-3.664-46.282-3.453-46.306L-2.640-46.306Q-2.441-46.282-2.390-46.075L-2.390-41.978L-1.965-41.978Q-1.758-41.954-1.719-41.747L-1.719-41.657Q-1.758-41.442-1.965-41.419L-2.781-41.419Q-2.980-41.442-3.031-41.657L-3.031-41.786Q-3.226-41.595-3.488-41.487Q-3.750-41.380-4.023-41.380M-3.984-41.939Q-3.625-41.939-3.373-42.208Q-3.121-42.478-3.031-42.853L-3.031-43.685Q-3.090-43.872-3.217-44.023Q-3.344-44.173-3.521-44.261Q-3.699-44.349-3.894-44.349Q-4.203-44.349-4.453-44.179Q-4.703-44.009-4.847-43.724Q-4.992-43.439-4.992-43.138Q-4.992-42.689-4.707-42.314Q-4.422-41.939-3.984-41.939M0.481-41.341Q0.047-41.341-0.285-41.579Q-0.617-41.817-0.838-42.206Q-1.058-42.595-1.166-43.032Q-1.273-43.470-1.273-43.868Q-1.273-44.259-1.164-44.702Q-1.055-45.146-0.838-45.526Q-0.621-45.907-0.287-46.148Q0.047-46.388 0.481-46.388Q1.035-46.388 1.436-45.989Q1.836-45.591 2.033-45.005Q2.231-44.419 2.231-43.868Q2.231-43.314 2.033-42.726Q1.836-42.138 1.436-41.739Q1.035-41.341 0.481-41.341M0.481-41.899Q0.781-41.899 0.998-42.116Q1.215-42.333 1.342-42.661Q1.469-42.989 1.529-43.335Q1.590-43.681 1.590-43.962Q1.590-44.212 1.528-44.538Q1.465-44.864 1.334-45.155Q1.203-45.446 0.990-45.636Q0.778-45.825 0.481-45.825Q0.106-45.825-0.146-45.513Q-0.398-45.200-0.515-44.767Q-0.633-44.333-0.633-43.962Q-0.633-43.564-0.519-43.083Q-0.406-42.603-0.158-42.251Q0.090-41.899 0.481-41.899M4.727-41.341Q4.293-41.341 3.961-41.579Q3.629-41.817 3.408-42.206Q3.188-42.595 3.080-43.032Q2.973-43.470 2.973-43.868Q2.973-44.259 3.082-44.702Q3.192-45.146 3.408-45.526Q3.625-45.907 3.959-46.148Q4.293-46.388 4.727-46.388Q5.281-46.388 5.682-45.989Q6.082-45.591 6.279-45.005Q6.477-44.419 6.477-43.868Q6.477-43.314 6.279-42.726Q6.082-42.138 5.682-41.739Q5.281-41.341 4.727-41.341M4.727-41.899Q5.028-41.899 5.244-42.116Q5.461-42.333 5.588-42.661Q5.715-42.989 5.776-43.335Q5.836-43.681 5.836-43.962Q5.836-44.212 5.774-44.538Q5.711-44.864 5.580-45.155Q5.449-45.446 5.237-45.636Q5.024-45.825 4.727-45.825Q4.352-45.825 4.100-45.513Q3.848-45.200 3.731-44.767Q3.613-44.333 3.613-43.962Q3.613-43.564 3.727-43.083Q3.840-42.603 4.088-42.251Q4.336-41.899 4.727-41.899M8.973-41.341Q8.539-41.341 8.207-41.579Q7.875-41.817 7.654-42.206Q7.434-42.595 7.326-43.032Q7.219-43.470 7.219-43.868Q7.219-44.259 7.328-44.702Q7.438-45.146 7.654-45.526Q7.871-45.907 8.205-46.148Q8.539-46.388 8.973-46.388Q9.528-46.388 9.928-45.989Q10.328-45.591 10.526-45.005Q10.723-44.419 10.723-43.868Q10.723-43.314 10.526-42.726Q10.328-42.138 9.928-41.739Q9.528-41.341 8.973-41.341M8.973-41.899Q9.274-41.899 9.490-42.116Q9.707-42.333 9.834-42.661Q9.961-42.989 10.022-43.335Q10.082-43.681 10.082-43.962Q10.082-44.212 10.020-44.538Q9.957-44.864 9.826-45.155Q9.695-45.446 9.483-45.636Q9.270-45.825 8.973-45.825Q8.598-45.825 8.346-45.513Q8.094-45.200 7.977-44.767Q7.860-44.333 7.860-43.962Q7.860-43.564 7.973-43.083Q8.086-42.603 8.334-42.251Q8.582-41.899 8.973-41.899M12.961-41.380Q12.496-41.380 12.131-41.630Q11.766-41.880 11.561-42.284Q11.356-42.689 11.356-43.146Q11.356-43.489 11.481-43.810Q11.606-44.130 11.838-44.380Q12.070-44.630 12.375-44.769Q12.680-44.907 13.035-44.907Q13.547-44.907 13.953-44.587L13.953-45.747L13.531-45.747Q13.320-45.771 13.281-45.985L13.281-46.075Q13.320-46.282 13.531-46.306L14.344-46.306Q14.543-46.282 14.594-46.075L14.594-41.978L15.020-41.978Q15.227-41.954 15.266-41.747L15.266-41.657Q15.227-41.442 15.020-41.419L14.203-41.419Q14.004-41.442 13.953-41.657L13.953-41.786Q13.758-41.595 13.496-41.487Q13.235-41.380 12.961-41.380M13-41.939Q13.360-41.939 13.612-42.208Q13.863-42.478 13.953-42.853L13.953-43.685Q13.895-43.872 13.768-44.023Q13.641-44.173 13.463-44.261Q13.285-44.349 13.090-44.349Q12.781-44.349 12.531-44.179Q12.281-44.009 12.137-43.724Q11.992-43.439 11.992-43.138Q11.992-42.689 12.278-42.314Q12.563-41.939 13-41.939M17.465-41.341Q17.031-41.341 16.699-41.579Q16.367-41.817 16.147-42.206Q15.926-42.595 15.819-43.032Q15.711-43.470 15.711-43.868Q15.711-44.259 15.820-44.702Q15.930-45.146 16.147-45.526Q16.363-45.907 16.697-46.148Q17.031-46.388 17.465-46.388Q18.020-46.388 18.420-45.989Q18.820-45.591 19.018-45.005Q19.215-44.419 19.215-43.868Q19.215-43.314 19.018-42.726Q18.820-42.138 18.420-41.739Q18.020-41.341 17.465-41.341M17.465-41.899Q17.766-41.899 17.983-42.116Q18.199-42.333 18.326-42.661Q18.453-42.989 18.514-43.335Q18.574-43.681 18.574-43.962Q18.574-44.212 18.512-44.538Q18.449-44.864 18.319-45.155Q18.188-45.446 17.975-45.636Q17.762-45.825 17.465-45.825Q17.090-45.825 16.838-45.513Q16.586-45.200 16.469-44.767Q16.352-44.333 16.352-43.962Q16.352-43.564 16.465-43.083Q16.578-42.603 16.826-42.251Q17.074-41.899 17.465-41.899M21.711-41.341Q21.278-41.341 20.945-41.579Q20.613-41.817 20.393-42.206Q20.172-42.595 20.065-43.032Q19.957-43.470 19.957-43.868Q19.957-44.259 20.067-44.702Q20.176-45.146 20.393-45.526Q20.610-45.907 20.944-46.148Q21.278-46.388 21.711-46.388Q22.266-46.388 22.666-45.989Q23.067-45.591 23.264-45.005Q23.461-44.419 23.461-43.868Q23.461-43.314 23.264-42.726Q23.067-42.138 22.666-41.739Q22.266-41.341 21.711-41.341M21.711-41.899Q22.012-41.899 22.229-42.116Q22.445-42.333 22.572-42.661Q22.699-42.989 22.760-43.335Q22.820-43.681 22.820-43.962Q22.820-44.212 22.758-44.538Q22.695-44.864 22.565-45.155Q22.434-45.446 22.221-45.636Q22.008-45.825 21.711-45.825Q21.336-45.825 21.084-45.513Q20.832-45.200 20.715-44.767Q20.598-44.333 20.598-43.962Q20.598-43.564 20.711-43.083Q20.824-42.603 21.072-42.251Q21.320-41.899 21.711-41.899M25.957-41.341Q25.524-41.341 25.192-41.579Q24.860-41.817 24.639-42.206Q24.418-42.595 24.311-43.032Q24.203-43.470 24.203-43.868Q24.203-44.259 24.313-44.702Q24.422-45.146 24.639-45.526Q24.856-45.907 25.190-46.148Q25.524-46.388 25.957-46.388Q26.512-46.388 26.912-45.989Q27.313-45.591 27.510-45.005Q27.707-44.419 27.707-43.868Q27.707-43.314 27.510-42.726Q27.313-42.138 26.912-41.739Q26.512-41.341 25.957-41.341M25.957-41.899Q26.258-41.899 26.475-42.116Q26.692-42.333 26.819-42.661Q26.945-42.989 27.006-43.335Q27.067-43.681 27.067-43.962Q27.067-44.212 27.004-44.538Q26.942-44.864 26.811-45.155Q26.680-45.446 26.467-45.636Q26.254-45.825 25.957-45.825Q25.582-45.825 25.330-45.513Q25.078-45.200 24.961-44.767Q24.844-44.333 24.844-43.962Q24.844-43.564 24.957-43.083Q25.070-42.603 25.319-42.251Q25.567-41.899 25.957-41.899M29.945-41.380Q29.481-41.380 29.115-41.630Q28.750-41.880 28.545-42.284Q28.340-42.689 28.340-43.146Q28.340-43.489 28.465-43.810Q28.590-44.130 28.822-44.380Q29.055-44.630 29.360-44.769Q29.664-44.907 30.020-44.907Q30.531-44.907 30.938-44.587L30.938-45.747L30.516-45.747Q30.305-45.771 30.266-45.985L30.266-46.075Q30.305-46.282 30.516-46.306L31.328-46.306Q31.528-46.282 31.578-46.075L31.578-41.978L32.004-41.978Q32.211-41.954 32.250-41.747L32.250-41.657Q32.211-41.442 32.004-41.419L31.188-41.419Q30.988-41.442 30.938-41.657L30.938-41.786Q30.742-41.595 30.481-41.487Q30.219-41.380 29.945-41.380M29.985-41.939Q30.344-41.939 30.596-42.208Q30.848-42.478 30.938-42.853L30.938-43.685Q30.879-43.872 30.752-44.023Q30.625-44.173 30.447-44.261Q30.270-44.349 30.074-44.349Q29.766-44.349 29.516-44.179Q29.266-44.009 29.121-43.724Q28.977-43.439 28.977-43.138Q28.977-42.689 29.262-42.314Q29.547-41.939 29.985-41.939\" 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 74.669h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 127.636)\">\u003Cpath d=\"M-56.301-42.220Q-56.301-42.396-56.185-42.519Q-56.070-42.642-55.890-42.642Q-55.722-42.642-55.607-42.526Q-55.492-42.411-55.492-42.235Q-55.492-42.114-55.554-42.013Q-55.406-41.899-55.097-41.899Q-54.793-41.899-54.539-42.050Q-54.285-42.200-54.103-42.446Q-53.922-42.692-53.814-42.985Q-53.707-43.278-53.676-43.556Q-53.914-43.356-54.222-43.251Q-54.531-43.146-54.851-43.146Q-55.297-43.146-55.670-43.362Q-56.043-43.579-56.260-43.948Q-56.476-44.317-56.476-44.763Q-56.476-45.235-56.230-45.606Q-55.984-45.978-55.578-46.183Q-55.172-46.388-54.699-46.388Q-54.215-46.388-53.883-46.159Q-53.551-45.931-53.363-45.558Q-53.176-45.185-53.097-44.755Q-53.019-44.325-53.019-43.868Q-53.019-43.259-53.273-42.671Q-53.527-42.083-54.004-41.712Q-54.480-41.341-55.097-41.341Q-55.594-41.341-55.947-41.550Q-56.301-41.759-56.301-42.220M-54.797-43.708Q-54.410-43.708-54.074-43.937Q-53.738-44.165-53.738-44.532Q-53.738-44.571-53.754-44.649Q-53.769-44.728-53.769-44.763Q-53.769-44.774-53.762-44.806Q-53.754-44.837-53.754-44.845Q-53.816-45.095-53.935-45.315Q-54.054-45.536-54.248-45.681Q-54.441-45.825-54.699-45.825Q-55.172-45.825-55.504-45.524Q-55.836-45.224-55.836-44.763Q-55.836-44.481-55.699-44.235Q-55.562-43.989-55.324-43.849Q-55.086-43.708-54.797-43.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 127.636)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-41.570-42.763L-43.640-42.763Q-43.836-42.786-43.890-43.005L-43.890-43.243Q-43.890-43.317-43.847-43.388L-42-46.259Q-41.914-46.388-41.762-46.388L-41.304-46.388Q-41.195-46.388-41.117-46.310Q-41.039-46.231-41.039-46.122L-41.039-43.321L-40.375-43.321Q-40.179-43.298-40.129-43.091L-40.129-43.005Q-40.179-42.786-40.375-42.763L-41.039-42.763L-41.039-41.978L-40.465-41.978Q-40.258-41.954-40.219-41.747L-40.219-41.657Q-40.258-41.442-40.465-41.419L-42.144-41.419Q-42.351-41.442-42.394-41.657L-42.394-41.747Q-42.351-41.954-42.144-41.978L-41.570-41.978L-41.570-42.763M-41.570-45.915L-43.242-43.321L-41.570-43.321L-41.570-45.915M-39.531-42.833Q-39.531-43.118-39.375-43.372Q-39.219-43.626-38.969-43.800Q-38.719-43.974-38.433-44.060Q-38.672-44.134-38.898-44.276Q-39.125-44.419-39.267-44.628Q-39.410-44.837-39.410-45.083Q-39.410-45.481-39.164-45.776Q-38.918-46.071-38.535-46.230Q-38.152-46.388-37.762-46.388Q-37.371-46.388-36.988-46.230Q-36.605-46.071-36.359-45.773Q-36.113-45.474-36.113-45.083Q-36.113-44.837-36.256-44.630Q-36.398-44.423-36.625-44.278Q-36.851-44.134-37.090-44.060Q-36.637-43.923-36.316-43.597Q-35.996-43.271-35.996-42.833Q-35.996-42.396-36.254-42.052Q-36.512-41.708-36.922-41.524Q-37.332-41.341-37.762-41.341Q-38.191-41.341-38.601-41.523Q-39.012-41.704-39.271-42.048Q-39.531-42.392-39.531-42.833M-38.890-42.833Q-38.890-42.560-38.724-42.345Q-38.558-42.130-38.297-42.015Q-38.035-41.899-37.762-41.899Q-37.488-41.899-37.228-42.015Q-36.969-42.130-36.803-42.347Q-36.637-42.564-36.637-42.833Q-36.637-43.110-36.803-43.327Q-36.969-43.544-37.228-43.661Q-37.488-43.778-37.762-43.778Q-38.035-43.778-38.297-43.661Q-38.558-43.544-38.724-43.329Q-38.890-43.114-38.890-42.833M-38.769-45.083Q-38.769-44.845-38.613-44.677Q-38.457-44.509-38.221-44.425Q-37.984-44.341-37.762-44.341Q-37.543-44.341-37.304-44.425Q-37.066-44.509-36.910-44.679Q-36.754-44.849-36.754-45.083Q-36.754-45.317-36.910-45.487Q-37.066-45.657-37.304-45.741Q-37.543-45.825-37.762-45.825Q-37.984-45.825-38.221-45.741Q-38.457-45.657-38.613-45.489Q-38.769-45.321-38.769-45.083\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 127.08)\">\u003Cpath d=\"M-56.461-42.532Q-56.461-42.978-56.047-43.235Q-55.633-43.493-55.092-43.593Q-54.551-43.692-54.043-43.700Q-54.043-43.915-54.178-44.067Q-54.312-44.220-54.519-44.296Q-54.726-44.372-54.937-44.372Q-55.281-44.372-55.441-44.349L-55.441-44.290Q-55.441-44.122-55.560-44.007Q-55.679-43.892-55.844-43.892Q-56.019-43.892-56.135-44.015Q-56.250-44.138-56.250-44.306Q-56.250-44.712-55.869-44.821Q-55.488-44.931-54.929-44.931Q-54.660-44.931-54.392-44.853Q-54.125-44.774-53.900-44.624Q-53.676-44.474-53.539-44.253Q-53.402-44.032-53.402-43.755L-53.402-42.036Q-53.402-41.978-52.875-41.978Q-52.679-41.958-52.629-41.747L-52.629-41.657Q-52.679-41.442-52.875-41.419L-53.019-41.419Q-53.363-41.419-53.592-41.466Q-53.820-41.513-53.965-41.700Q-54.426-41.380-55.133-41.380Q-55.469-41.380-55.773-41.521Q-56.078-41.661-56.269-41.923Q-56.461-42.185-56.461-42.532M-55.820-42.524Q-55.820-42.251-55.578-42.095Q-55.336-41.939-55.051-41.939Q-54.832-41.939-54.599-41.997Q-54.367-42.056-54.205-42.194Q-54.043-42.333-54.043-42.556L-54.043-43.146Q-54.324-43.146-54.740-43.089Q-55.156-43.032-55.488-42.894Q-55.820-42.755-55.820-42.524M-50.758-41.380Q-51.222-41.380-51.588-41.630Q-51.953-41.880-52.158-42.284Q-52.363-42.689-52.363-43.146Q-52.363-43.489-52.238-43.810Q-52.113-44.130-51.881-44.380Q-51.648-44.630-51.344-44.769Q-51.039-44.907-50.683-44.907Q-50.172-44.907-49.765-44.587L-49.765-45.747L-50.187-45.747Q-50.398-45.771-50.437-45.985L-50.437-46.075Q-50.398-46.282-50.187-46.306L-49.375-46.306Q-49.176-46.282-49.125-46.075L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-49.515-41.419Q-49.715-41.442-49.765-41.657L-49.765-41.786Q-49.961-41.595-50.222-41.487Q-50.484-41.380-50.758-41.380M-50.719-41.939Q-50.359-41.939-50.107-42.208Q-49.855-42.478-49.765-42.853L-49.765-43.685Q-49.824-43.872-49.951-44.023Q-50.078-44.173-50.256-44.261Q-50.433-44.349-50.629-44.349Q-50.937-44.349-51.187-44.179Q-51.437-44.009-51.582-43.724Q-51.726-43.439-51.726-43.138Q-51.726-42.689-51.441-42.314Q-51.156-41.939-50.719-41.939M-46.512-41.380Q-46.976-41.380-47.342-41.630Q-47.707-41.880-47.912-42.284Q-48.117-42.689-48.117-43.146Q-48.117-43.489-47.992-43.810Q-47.867-44.130-47.635-44.380Q-47.402-44.630-47.097-44.769Q-46.793-44.907-46.437-44.907Q-45.926-44.907-45.519-44.587L-45.519-45.747L-45.941-45.747Q-46.152-45.771-46.191-45.985L-46.191-46.075Q-46.152-46.282-45.941-46.306L-45.129-46.306Q-44.929-46.282-44.879-46.075L-44.879-41.978L-44.453-41.978Q-44.246-41.954-44.207-41.747L-44.207-41.657Q-44.246-41.442-44.453-41.419L-45.269-41.419Q-45.469-41.442-45.519-41.657L-45.519-41.786Q-45.715-41.595-45.976-41.487Q-46.238-41.380-46.512-41.380M-46.472-41.939Q-46.113-41.939-45.861-42.208Q-45.609-42.478-45.519-42.853L-45.519-43.685Q-45.578-43.872-45.705-44.023Q-45.832-44.173-46.010-44.261Q-46.187-44.349-46.383-44.349Q-46.691-44.349-46.941-44.179Q-47.191-44.009-47.336-43.724Q-47.480-43.439-47.480-43.138Q-47.480-42.689-47.195-42.314Q-46.910-41.939-46.472-41.939M-41.816-39.876L-41.816-39.962Q-41.765-40.181-41.570-40.204L-41.105-40.204L-41.105-41.802Q-41.558-41.380-42.168-41.380Q-42.523-41.380-42.828-41.523Q-43.133-41.665-43.365-41.915Q-43.597-42.165-43.722-42.487Q-43.847-42.810-43.847-43.146Q-43.847-43.630-43.609-44.030Q-43.371-44.431-42.965-44.669Q-42.558-44.907-42.082-44.907Q-41.519-44.907-41.105-44.517L-41.105-44.677Q-41.054-44.888-40.855-44.907L-40.715-44.907Q-40.515-44.884-40.465-44.677L-40.465-40.204L-40-40.204Q-39.804-40.181-39.754-39.962L-39.754-39.876Q-39.804-39.665-40-39.642L-41.570-39.642Q-41.765-39.665-41.816-39.876M-42.121-41.939Q-41.750-41.939-41.474-42.192Q-41.199-42.446-41.105-42.810L-41.105-43.427Q-41.148-43.665-41.271-43.878Q-41.394-44.091-41.592-44.220Q-41.789-44.349-42.031-44.349Q-42.347-44.349-42.619-44.183Q-42.890-44.017-43.049-43.735Q-43.207-43.454-43.207-43.138Q-43.207-42.673-42.892-42.306Q-42.578-41.939-42.121-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 127.08)\">\u003Cpath d=\"M-34.937-41.060Q-34.937-41.114-34.914-41.181L-32.648-46.786Q-32.554-46.970-32.359-46.970Q-32.234-46.970-32.146-46.882Q-32.058-46.794-32.058-46.665Q-32.058-46.606-32.082-46.548L-34.344-40.939Q-34.445-40.755-34.625-40.755Q-34.750-40.755-34.844-40.845Q-34.937-40.935-34.937-41.060M-32.359-40.755Q-32.711-40.755-32.892-41.095Q-33.074-41.435-33.074-41.817Q-33.074-42.204-32.894-42.544Q-32.715-42.884-32.359-42.884Q-32.121-42.884-31.963-42.714Q-31.804-42.544-31.730-42.300Q-31.656-42.056-31.656-41.817Q-31.656-41.583-31.730-41.339Q-31.804-41.095-31.963-40.925Q-32.121-40.755-32.359-40.755M-32.359-41.314Q-32.277-41.345-32.230-41.513Q-32.183-41.681-32.183-41.817Q-32.183-41.954-32.230-42.124Q-32.277-42.294-32.359-42.321Q-32.445-42.294-32.496-42.126Q-32.547-41.958-32.547-41.817Q-32.547-41.689-32.496-41.517Q-32.445-41.345-32.359-41.314M-34.625-44.833Q-34.867-44.833-35.027-45.003Q-35.187-45.173-35.262-45.419Q-35.336-45.665-35.336-45.907Q-35.336-46.290-35.156-46.630Q-34.976-46.970-34.625-46.970Q-34.387-46.970-34.228-46.800Q-34.070-46.630-33.996-46.386Q-33.922-46.142-33.922-45.907Q-33.922-45.665-33.996-45.419Q-34.070-45.173-34.228-45.003Q-34.387-44.833-34.625-44.833M-34.625-45.396Q-34.535-45.439-34.492-45.595Q-34.449-45.751-34.449-45.907Q-34.449-46.036-34.496-46.212Q-34.543-46.388-34.633-46.411Q-34.648-46.411-34.678-46.376Q-34.707-46.341-34.715-46.321Q-34.808-46.134-34.808-45.907Q-34.808-45.771-34.760-45.599Q-34.711-45.427-34.625-45.396M-31.148-41.657L-31.148-41.747Q-31.090-41.954-30.898-41.978L-30.187-41.978L-30.187-44.306L-30.898-44.306Q-31.094-44.329-31.148-44.548L-31.148-44.634Q-31.090-44.845-30.898-44.868L-29.797-44.868Q-29.597-44.849-29.547-44.634L-29.547-44.306Q-29.285-44.591-28.929-44.749Q-28.574-44.907-28.187-44.907Q-27.894-44.907-27.660-44.773Q-27.426-44.638-27.426-44.372Q-27.426-44.204-27.535-44.087Q-27.644-43.970-27.812-43.970Q-27.965-43.970-28.080-44.081Q-28.195-44.192-28.195-44.349Q-28.570-44.349-28.885-44.148Q-29.199-43.946-29.373-43.612Q-29.547-43.278-29.547-42.899L-29.547-41.978L-28.601-41.978Q-28.394-41.954-28.355-41.747L-28.355-41.657Q-28.394-41.442-28.601-41.419L-30.898-41.419Q-31.090-41.442-31.148-41.657M-26.269-41.657L-26.269-41.747Q-26.219-41.954-26.019-41.978L-25.203-41.978L-25.203-45.161Q-25.582-44.853-26.035-44.853Q-26.265-44.853-26.316-45.083L-26.316-45.173Q-26.265-45.388-26.070-45.411Q-25.742-45.411-25.488-45.649Q-25.234-45.888-25.094-46.235Q-25.023-46.364-24.867-46.388L-24.812-46.388Q-24.617-46.368-24.566-46.153L-24.566-41.978L-23.750-41.978Q-23.551-41.954-23.500-41.747L-23.500-41.657Q-23.551-41.442-23.750-41.419L-26.019-41.419Q-26.219-41.442-26.269-41.657M-20.758-41.341Q-21.191-41.341-21.523-41.579Q-21.855-41.817-22.076-42.206Q-22.297-42.595-22.404-43.032Q-22.512-43.470-22.512-43.868Q-22.512-44.259-22.402-44.702Q-22.293-45.146-22.076-45.526Q-21.859-45.907-21.525-46.148Q-21.191-46.388-20.758-46.388Q-20.203-46.388-19.803-45.989Q-19.402-45.591-19.205-45.005Q-19.008-44.419-19.008-43.868Q-19.008-43.314-19.205-42.726Q-19.402-42.138-19.803-41.739Q-20.203-41.341-20.758-41.341M-20.758-41.899Q-20.457-41.899-20.240-42.116Q-20.023-42.333-19.896-42.661Q-19.769-42.989-19.709-43.335Q-19.648-43.681-19.648-43.962Q-19.648-44.212-19.711-44.538Q-19.773-44.864-19.904-45.155Q-20.035-45.446-20.248-45.636Q-20.461-45.825-20.758-45.825Q-21.133-45.825-21.385-45.513Q-21.637-45.200-21.754-44.767Q-21.871-44.333-21.871-43.962Q-21.871-43.564-21.758-43.083Q-21.644-42.603-21.396-42.251Q-21.148-41.899-20.758-41.899M-16.914-40.306Q-17.027-40.306-17.117-40.396Q-17.207-40.485-17.207-40.595Q-17.207-40.771-17.015-40.845Q-16.797-40.896-16.625-41.054Q-16.453-41.212-16.387-41.435Q-16.410-41.435-16.441-41.419L-16.504-41.419Q-16.734-41.419-16.900-41.581Q-17.066-41.743-17.066-41.978Q-17.066-42.212-16.902-42.372Q-16.738-42.532-16.504-42.532Q-16.293-42.532-16.129-42.411Q-15.965-42.290-15.875-42.097Q-15.785-41.903-15.785-41.692Q-15.785-41.216-16.084-40.827Q-16.383-40.439-16.847-40.314Q-16.871-40.306-16.914-40.306M-13.707-41.060Q-13.707-41.114-13.683-41.181L-11.418-46.786Q-11.324-46.970-11.129-46.970Q-11.004-46.970-10.916-46.882Q-10.828-46.794-10.828-46.665Q-10.828-46.606-10.851-46.548L-13.113-40.939Q-13.215-40.755-13.394-40.755Q-13.519-40.755-13.613-40.845Q-13.707-40.935-13.707-41.060M-11.129-40.755Q-11.480-40.755-11.662-41.095Q-11.844-41.435-11.844-41.817Q-11.844-42.204-11.664-42.544Q-11.484-42.884-11.129-42.884Q-10.890-42.884-10.732-42.714Q-10.574-42.544-10.500-42.300Q-10.426-42.056-10.426-41.817Q-10.426-41.583-10.500-41.339Q-10.574-41.095-10.732-40.925Q-10.890-40.755-11.129-40.755M-11.129-41.314Q-11.047-41.345-11-41.513Q-10.953-41.681-10.953-41.817Q-10.953-41.954-11-42.124Q-11.047-42.294-11.129-42.321Q-11.215-42.294-11.265-42.126Q-11.316-41.958-11.316-41.817Q-11.316-41.689-11.265-41.517Q-11.215-41.345-11.129-41.314M-13.394-44.833Q-13.637-44.833-13.797-45.003Q-13.957-45.173-14.031-45.419Q-14.105-45.665-14.105-45.907Q-14.105-46.290-13.926-46.630Q-13.746-46.970-13.394-46.970Q-13.156-46.970-12.998-46.800Q-12.840-46.630-12.765-46.386Q-12.691-46.142-12.691-45.907Q-12.691-45.665-12.765-45.419Q-12.840-45.173-12.998-45.003Q-13.156-44.833-13.394-44.833M-13.394-45.396Q-13.304-45.439-13.262-45.595Q-13.219-45.751-13.219-45.907Q-13.219-46.036-13.265-46.212Q-13.312-46.388-13.402-46.411Q-13.418-46.411-13.447-46.376Q-13.476-46.341-13.484-46.321Q-13.578-46.134-13.578-45.907Q-13.578-45.771-13.529-45.599Q-13.480-45.427-13.394-45.396M-9.918-41.657L-9.918-41.747Q-9.859-41.954-9.668-41.978L-8.957-41.978L-8.957-44.306L-9.668-44.306Q-9.863-44.329-9.918-44.548L-9.918-44.634Q-9.859-44.845-9.668-44.868L-8.566-44.868Q-8.367-44.849-8.316-44.634L-8.316-44.306Q-8.054-44.591-7.699-44.749Q-7.344-44.907-6.957-44.907Q-6.664-44.907-6.429-44.773Q-6.195-44.638-6.195-44.372Q-6.195-44.204-6.304-44.087Q-6.414-43.970-6.582-43.970Q-6.734-43.970-6.849-44.081Q-6.965-44.192-6.965-44.349Q-7.340-44.349-7.654-44.148Q-7.969-43.946-8.142-43.612Q-8.316-43.278-8.316-42.899L-8.316-41.978L-7.371-41.978Q-7.164-41.954-7.125-41.747L-7.125-41.657Q-7.164-41.442-7.371-41.419L-9.668-41.419Q-9.859-41.442-9.918-41.657M-5.488-42.532Q-5.488-42.978-5.074-43.235Q-4.660-43.493-4.119-43.593Q-3.578-43.692-3.070-43.700Q-3.070-43.915-3.205-44.067Q-3.340-44.220-3.547-44.296Q-3.754-44.372-3.965-44.372Q-4.308-44.372-4.469-44.349L-4.469-44.290Q-4.469-44.122-4.588-44.007Q-4.707-43.892-4.871-43.892Q-5.047-43.892-5.162-44.015Q-5.277-44.138-5.277-44.306Q-5.277-44.712-4.896-44.821Q-4.515-44.931-3.957-44.931Q-3.687-44.931-3.420-44.853Q-3.152-44.774-2.928-44.624Q-2.703-44.474-2.566-44.253Q-2.429-44.032-2.429-43.755L-2.429-42.036Q-2.429-41.978-1.902-41.978Q-1.707-41.958-1.656-41.747L-1.656-41.657Q-1.707-41.442-1.902-41.419L-2.047-41.419Q-2.390-41.419-2.619-41.466Q-2.847-41.513-2.992-41.700Q-3.453-41.380-4.160-41.380Q-4.496-41.380-4.801-41.521Q-5.105-41.661-5.297-41.923Q-5.488-42.185-5.488-42.532M-4.847-42.524Q-4.847-42.251-4.605-42.095Q-4.363-41.939-4.078-41.939Q-3.859-41.939-3.627-41.997Q-3.394-42.056-3.232-42.194Q-3.070-42.333-3.070-42.556L-3.070-43.146Q-3.351-43.146-3.767-43.089Q-4.183-43.032-4.515-42.894Q-4.847-42.755-4.847-42.524M-1.390-41.657L-1.390-41.747Q-1.351-41.954-1.144-41.978L-0.738-41.978L0.192-43.196L-0.679-44.306L-1.097-44.306Q-1.293-44.325-1.344-44.548L-1.344-44.634Q-1.293-44.845-1.097-44.868L0.063-44.868Q0.262-44.845 0.313-44.634L0.313-44.548Q0.262-44.329 0.063-44.306L-0.047-44.306L0.449-43.649L0.926-44.306L0.809-44.306Q0.610-44.329 0.559-44.548L0.559-44.634Q0.610-44.845 0.809-44.868L1.969-44.868Q2.164-44.849 2.215-44.634L2.215-44.548Q2.164-44.329 1.969-44.306L1.559-44.306L0.711-43.196L1.672-41.978L2.078-41.978Q2.278-41.954 2.328-41.747L2.328-41.657Q2.289-41.442 2.078-41.419L0.926-41.419Q0.719-41.442 0.680-41.657L0.680-41.747Q0.719-41.954 0.926-41.978L1.055-41.978L0.449-42.833L-0.137-41.978L0.008-41.978Q0.215-41.954 0.254-41.747L0.254-41.657Q0.215-41.442 0.008-41.419L-1.144-41.419Q-1.340-41.439-1.390-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 127.636)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 127.636)\">\u003Cpath d=\"M-46.551-42.341L-46.551-43.556L-47.765-43.556Q-47.890-43.567-47.976-43.653Q-48.062-43.739-48.062-43.868Q-48.062-43.997-47.976-44.079Q-47.890-44.161-47.765-44.173L-46.551-44.173L-46.551-45.396Q-46.539-45.521-46.453-45.603Q-46.367-45.685-46.238-45.685Q-46.109-45.685-46.027-45.603Q-45.945-45.521-45.933-45.396L-45.933-44.173L-44.719-44.173Q-44.594-44.161-44.512-44.079Q-44.429-43.997-44.429-43.868Q-44.429-43.739-44.512-43.653Q-44.594-43.567-44.719-43.556L-45.933-43.556L-45.933-42.341Q-45.945-42.216-46.027-42.130Q-46.109-42.044-46.238-42.044Q-46.367-42.044-46.453-42.130Q-46.539-42.216-46.551-42.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 127.636)\">\u003Cpath d=\"M-37.746-41.341Q-38.179-41.341-38.512-41.579Q-38.844-41.817-39.064-42.206Q-39.285-42.595-39.392-43.032Q-39.500-43.470-39.500-43.868Q-39.500-44.259-39.390-44.702Q-39.281-45.146-39.064-45.526Q-38.847-45.907-38.513-46.148Q-38.179-46.388-37.746-46.388Q-37.191-46.388-36.791-45.989Q-36.390-45.591-36.193-45.005Q-35.996-44.419-35.996-43.868Q-35.996-43.314-36.193-42.726Q-36.390-42.138-36.791-41.739Q-37.191-41.341-37.746-41.341M-37.746-41.899Q-37.445-41.899-37.228-42.116Q-37.012-42.333-36.885-42.661Q-36.758-42.989-36.697-43.335Q-36.637-43.681-36.637-43.962Q-36.637-44.212-36.699-44.538Q-36.762-44.864-36.892-45.155Q-37.023-45.446-37.236-45.636Q-37.449-45.825-37.746-45.825Q-38.121-45.825-38.373-45.513Q-38.625-45.200-38.742-44.767Q-38.859-44.333-38.859-43.962Q-38.859-43.564-38.746-43.083Q-38.633-42.603-38.385-42.251Q-38.137-41.899-37.746-41.899M-35.363-41.657L-35.363-41.747Q-35.324-41.954-35.117-41.978L-34.711-41.978L-33.781-43.196L-34.652-44.306L-35.070-44.306Q-35.265-44.325-35.316-44.548L-35.316-44.634Q-35.265-44.845-35.070-44.868L-33.910-44.868Q-33.711-44.845-33.660-44.634L-33.660-44.548Q-33.711-44.329-33.910-44.306L-34.019-44.306L-33.523-43.649L-33.047-44.306L-33.164-44.306Q-33.363-44.329-33.414-44.548L-33.414-44.634Q-33.363-44.845-33.164-44.868L-32.004-44.868Q-31.808-44.849-31.758-44.634L-31.758-44.548Q-31.808-44.329-32.004-44.306L-32.414-44.306L-33.262-43.196L-32.301-41.978L-31.894-41.978Q-31.695-41.954-31.644-41.747L-31.644-41.657Q-31.683-41.442-31.894-41.419L-33.047-41.419Q-33.254-41.442-33.293-41.657L-33.293-41.747Q-33.254-41.954-33.047-41.978L-32.918-41.978L-33.523-42.833L-34.109-41.978L-33.965-41.978Q-33.758-41.954-33.719-41.747L-33.719-41.657Q-33.758-41.442-33.965-41.419L-35.117-41.419Q-35.312-41.439-35.363-41.657M-29.254-41.341Q-29.687-41.341-30.019-41.579Q-30.351-41.817-30.572-42.206Q-30.793-42.595-30.900-43.032Q-31.008-43.470-31.008-43.868Q-31.008-44.259-30.898-44.702Q-30.789-45.146-30.572-45.526Q-30.355-45.907-30.021-46.148Q-29.687-46.388-29.254-46.388Q-28.699-46.388-28.299-45.989Q-27.898-45.591-27.701-45.005Q-27.504-44.419-27.504-43.868Q-27.504-43.314-27.701-42.726Q-27.898-42.138-28.299-41.739Q-28.699-41.341-29.254-41.341M-29.254-41.899Q-28.953-41.899-28.736-42.116Q-28.519-42.333-28.392-42.661Q-28.265-42.989-28.205-43.335Q-28.144-43.681-28.144-43.962Q-28.144-44.212-28.207-44.538Q-28.269-44.864-28.400-45.155Q-28.531-45.446-28.744-45.636Q-28.957-45.825-29.254-45.825Q-29.629-45.825-29.881-45.513Q-30.133-45.200-30.250-44.767Q-30.367-44.333-30.367-43.962Q-30.367-43.564-30.254-43.083Q-30.140-42.603-29.892-42.251Q-29.644-41.899-29.254-41.899M-25.008-41.341Q-25.441-41.341-25.773-41.579Q-26.105-41.817-26.326-42.206Q-26.547-42.595-26.654-43.032Q-26.762-43.470-26.762-43.868Q-26.762-44.259-26.652-44.702Q-26.543-45.146-26.326-45.526Q-26.109-45.907-25.775-46.148Q-25.441-46.388-25.008-46.388Q-24.453-46.388-24.053-45.989Q-23.652-45.591-23.455-45.005Q-23.258-44.419-23.258-43.868Q-23.258-43.314-23.455-42.726Q-23.652-42.138-24.053-41.739Q-24.453-41.341-25.008-41.341M-25.008-41.899Q-24.707-41.899-24.490-42.116Q-24.273-42.333-24.146-42.661Q-24.019-42.989-23.959-43.335Q-23.898-43.681-23.898-43.962Q-23.898-44.212-23.961-44.538Q-24.023-44.864-24.154-45.155Q-24.285-45.446-24.498-45.636Q-24.711-45.825-25.008-45.825Q-25.383-45.825-25.635-45.513Q-25.887-45.200-26.004-44.767Q-26.121-44.333-26.121-43.962Q-26.121-43.564-26.008-43.083Q-25.894-42.603-25.646-42.251Q-25.398-41.899-25.008-41.899M-20.762-41.341Q-21.195-41.341-21.527-41.579Q-21.859-41.817-22.080-42.206Q-22.301-42.595-22.408-43.032Q-22.515-43.470-22.515-43.868Q-22.515-44.259-22.406-44.702Q-22.297-45.146-22.080-45.526Q-21.863-45.907-21.529-46.148Q-21.195-46.388-20.762-46.388Q-20.207-46.388-19.806-45.989Q-19.406-45.591-19.209-45.005Q-19.012-44.419-19.012-43.868Q-19.012-43.314-19.209-42.726Q-19.406-42.138-19.806-41.739Q-20.207-41.341-20.762-41.341M-20.762-41.899Q-20.461-41.899-20.244-42.116Q-20.027-42.333-19.900-42.661Q-19.773-42.989-19.713-43.335Q-19.652-43.681-19.652-43.962Q-19.652-44.212-19.715-44.538Q-19.777-44.864-19.908-45.155Q-20.039-45.446-20.252-45.636Q-20.465-45.825-20.762-45.825Q-21.137-45.825-21.388-45.513Q-21.640-45.200-21.758-44.767Q-21.875-44.333-21.875-43.962Q-21.875-43.564-21.762-43.083Q-21.648-42.603-21.400-42.251Q-21.152-41.899-20.762-41.899M-16.773-41.380Q-17.238-41.380-17.603-41.630Q-17.969-41.880-18.174-42.284Q-18.379-42.689-18.379-43.146Q-18.379-43.489-18.254-43.810Q-18.129-44.130-17.896-44.380Q-17.664-44.630-17.359-44.769Q-17.054-44.907-16.699-44.907Q-16.187-44.907-15.781-44.587L-15.781-45.747L-16.203-45.747Q-16.414-45.771-16.453-45.985L-16.453-46.075Q-16.414-46.282-16.203-46.306L-15.390-46.306Q-15.191-46.282-15.140-46.075L-15.140-41.978L-14.715-41.978Q-14.508-41.954-14.469-41.747L-14.469-41.657Q-14.508-41.442-14.715-41.419L-15.531-41.419Q-15.730-41.442-15.781-41.657L-15.781-41.786Q-15.976-41.595-16.238-41.487Q-16.500-41.380-16.773-41.380M-16.734-41.939Q-16.375-41.939-16.123-42.208Q-15.871-42.478-15.781-42.853L-15.781-43.685Q-15.840-43.872-15.967-44.023Q-16.094-44.173-16.271-44.261Q-16.449-44.349-16.644-44.349Q-16.953-44.349-17.203-44.179Q-17.453-44.009-17.597-43.724Q-17.742-43.439-17.742-43.138Q-17.742-42.689-17.457-42.314Q-17.172-41.939-16.734-41.939M-12.269-41.341Q-12.703-41.341-13.035-41.579Q-13.367-41.817-13.588-42.206Q-13.808-42.595-13.916-43.032Q-14.023-43.470-14.023-43.868Q-14.023-44.259-13.914-44.702Q-13.804-45.146-13.588-45.526Q-13.371-45.907-13.037-46.148Q-12.703-46.388-12.269-46.388Q-11.715-46.388-11.314-45.989Q-10.914-45.591-10.717-45.005Q-10.519-44.419-10.519-43.868Q-10.519-43.314-10.717-42.726Q-10.914-42.138-11.314-41.739Q-11.715-41.341-12.269-41.341M-12.269-41.899Q-11.969-41.899-11.752-42.116Q-11.535-42.333-11.408-42.661Q-11.281-42.989-11.221-43.335Q-11.160-43.681-11.160-43.962Q-11.160-44.212-11.222-44.538Q-11.285-44.864-11.416-45.155Q-11.547-45.446-11.760-45.636Q-11.972-45.825-12.269-45.825Q-12.644-45.825-12.896-45.513Q-13.148-45.200-13.265-44.767Q-13.383-44.333-13.383-43.962Q-13.383-43.564-13.269-43.083Q-13.156-42.603-12.908-42.251Q-12.660-41.899-12.269-41.899M-8.023-41.341Q-8.457-41.341-8.789-41.579Q-9.121-41.817-9.342-42.206Q-9.562-42.595-9.670-43.032Q-9.777-43.470-9.777-43.868Q-9.777-44.259-9.668-44.702Q-9.558-45.146-9.342-45.526Q-9.125-45.907-8.791-46.148Q-8.457-46.388-8.023-46.388Q-7.469-46.388-7.068-45.989Q-6.668-45.591-6.471-45.005Q-6.273-44.419-6.273-43.868Q-6.273-43.314-6.471-42.726Q-6.668-42.138-7.068-41.739Q-7.469-41.341-8.023-41.341M-8.023-41.899Q-7.722-41.899-7.506-42.116Q-7.289-42.333-7.162-42.661Q-7.035-42.989-6.974-43.335Q-6.914-43.681-6.914-43.962Q-6.914-44.212-6.976-44.538Q-7.039-44.864-7.170-45.155Q-7.301-45.446-7.513-45.636Q-7.726-45.825-8.023-45.825Q-8.398-45.825-8.650-45.513Q-8.902-45.200-9.019-44.767Q-9.137-44.333-9.137-43.962Q-9.137-43.564-9.023-43.083Q-8.910-42.603-8.662-42.251Q-8.414-41.899-8.023-41.899M-3.777-41.341Q-4.211-41.341-4.543-41.579Q-4.875-41.817-5.096-42.206Q-5.316-42.595-5.424-43.032Q-5.531-43.470-5.531-43.868Q-5.531-44.259-5.422-44.702Q-5.312-45.146-5.096-45.526Q-4.879-45.907-4.545-46.148Q-4.211-46.388-3.777-46.388Q-3.222-46.388-2.822-45.989Q-2.422-45.591-2.224-45.005Q-2.027-44.419-2.027-43.868Q-2.027-43.314-2.224-42.726Q-2.422-42.138-2.822-41.739Q-3.222-41.341-3.777-41.341M-3.777-41.899Q-3.476-41.899-3.260-42.116Q-3.043-42.333-2.916-42.661Q-2.789-42.989-2.728-43.335Q-2.668-43.681-2.668-43.962Q-2.668-44.212-2.730-44.538Q-2.793-44.864-2.924-45.155Q-3.054-45.446-3.267-45.636Q-3.480-45.825-3.777-45.825Q-4.152-45.825-4.404-45.513Q-4.656-45.200-4.773-44.767Q-4.890-44.333-4.890-43.962Q-4.890-43.564-4.777-43.083Q-4.664-42.603-4.416-42.251Q-4.168-41.899-3.777-41.899M0.211-41.380Q-0.254-41.380-0.619-41.630Q-0.984-41.880-1.189-42.284Q-1.394-42.689-1.394-43.146Q-1.394-43.489-1.269-43.810Q-1.144-44.130-0.912-44.380Q-0.679-44.630-0.375-44.769Q-0.070-44.907 0.285-44.907Q0.797-44.907 1.203-44.587L1.203-45.747L0.781-45.747Q0.571-45.771 0.531-45.985L0.531-46.075Q0.571-46.282 0.781-46.306L1.594-46.306Q1.793-46.282 1.844-46.075L1.844-41.978L2.270-41.978Q2.477-41.954 2.516-41.747L2.516-41.657Q2.477-41.442 2.270-41.419L1.453-41.419Q1.254-41.442 1.203-41.657L1.203-41.786Q1.008-41.595 0.746-41.487Q0.485-41.380 0.211-41.380M0.250-41.939Q0.610-41.939 0.862-42.208Q1.113-42.478 1.203-42.853L1.203-43.685Q1.145-43.872 1.018-44.023Q0.891-44.173 0.713-44.261Q0.535-44.349 0.340-44.349Q0.031-44.349-0.219-44.179Q-0.469-44.009-0.613-43.724Q-0.758-43.439-0.758-43.138Q-0.758-42.689-0.472-42.314Q-0.187-41.939 0.250-41.939M4.715-41.341Q4.281-41.341 3.949-41.579Q3.617-41.817 3.397-42.206Q3.176-42.595 3.069-43.032Q2.961-43.470 2.961-43.868Q2.961-44.259 3.071-44.702Q3.180-45.146 3.397-45.526Q3.613-45.907 3.947-46.148Q4.281-46.388 4.715-46.388Q5.270-46.388 5.670-45.989Q6.071-45.591 6.268-45.005Q6.465-44.419 6.465-43.868Q6.465-43.314 6.268-42.726Q6.071-42.138 5.670-41.739Q5.270-41.341 4.715-41.341M4.715-41.899Q5.016-41.899 5.233-42.116Q5.449-42.333 5.576-42.661Q5.703-42.989 5.764-43.335Q5.824-43.681 5.824-43.962Q5.824-44.212 5.762-44.538Q5.699-44.864 5.569-45.155Q5.438-45.446 5.225-45.636Q5.012-45.825 4.715-45.825Q4.340-45.825 4.088-45.513Q3.836-45.200 3.719-44.767Q3.602-44.333 3.602-43.962Q3.602-43.564 3.715-43.083Q3.828-42.603 4.076-42.251Q4.324-41.899 4.715-41.899M8.961-41.341Q8.528-41.341 8.196-41.579Q7.863-41.817 7.643-42.206Q7.422-42.595 7.315-43.032Q7.207-43.470 7.207-43.868Q7.207-44.259 7.317-44.702Q7.426-45.146 7.643-45.526Q7.860-45.907 8.194-46.148Q8.528-46.388 8.961-46.388Q9.516-46.388 9.916-45.989Q10.317-45.591 10.514-45.005Q10.711-44.419 10.711-43.868Q10.711-43.314 10.514-42.726Q10.317-42.138 9.916-41.739Q9.516-41.341 8.961-41.341M8.961-41.899Q9.262-41.899 9.479-42.116Q9.696-42.333 9.822-42.661Q9.949-42.989 10.010-43.335Q10.071-43.681 10.071-43.962Q10.071-44.212 10.008-44.538Q9.946-44.864 9.815-45.155Q9.684-45.446 9.471-45.636Q9.258-45.825 8.961-45.825Q8.586-45.825 8.334-45.513Q8.082-45.200 7.965-44.767Q7.848-44.333 7.848-43.962Q7.848-43.564 7.961-43.083Q8.074-42.603 8.322-42.251Q8.571-41.899 8.961-41.899M13.207-41.341Q12.774-41.341 12.442-41.579Q12.110-41.817 11.889-42.206Q11.668-42.595 11.561-43.032Q11.453-43.470 11.453-43.868Q11.453-44.259 11.563-44.702Q11.672-45.146 11.889-45.526Q12.106-45.907 12.440-46.148Q12.774-46.388 13.207-46.388Q13.762-46.388 14.162-45.989Q14.563-45.591 14.760-45.005Q14.957-44.419 14.957-43.868Q14.957-43.314 14.760-42.726Q14.563-42.138 14.162-41.739Q13.762-41.341 13.207-41.341M13.207-41.899Q13.508-41.899 13.725-42.116Q13.942-42.333 14.069-42.661Q14.196-42.989 14.256-43.335Q14.317-43.681 14.317-43.962Q14.317-44.212 14.254-44.538Q14.192-44.864 14.061-45.155Q13.930-45.446 13.717-45.636Q13.504-45.825 13.207-45.825Q12.832-45.825 12.580-45.513Q12.328-45.200 12.211-44.767Q12.094-44.333 12.094-43.962Q12.094-43.564 12.207-43.083Q12.321-42.603 12.569-42.251Q12.817-41.899 13.207-41.899M17.196-41.380Q16.731-41.380 16.365-41.630Q16-41.880 15.795-42.284Q15.590-42.689 15.590-43.146Q15.590-43.489 15.715-43.810Q15.840-44.130 16.072-44.380Q16.305-44.630 16.610-44.769Q16.914-44.907 17.270-44.907Q17.781-44.907 18.188-44.587L18.188-45.747L17.766-45.747Q17.555-45.771 17.516-45.985L17.516-46.075Q17.555-46.282 17.766-46.306L18.578-46.306Q18.778-46.282 18.828-46.075L18.828-41.978L19.254-41.978Q19.461-41.954 19.500-41.747L19.500-41.657Q19.461-41.442 19.254-41.419L18.438-41.419Q18.238-41.442 18.188-41.657L18.188-41.786Q17.992-41.595 17.731-41.487Q17.469-41.380 17.196-41.380M17.235-41.939Q17.594-41.939 17.846-42.208Q18.098-42.478 18.188-42.853L18.188-43.685Q18.129-43.872 18.002-44.023Q17.875-44.173 17.697-44.261Q17.520-44.349 17.324-44.349Q17.016-44.349 16.766-44.179Q16.516-44.009 16.371-43.724Q16.227-43.439 16.227-43.138Q16.227-42.689 16.512-42.314Q16.797-41.939 17.235-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 127.636)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-43.871-41.657L-43.871-41.747Q-43.832-41.954-43.625-41.978L-43.219-41.978L-42.289-43.196L-43.160-44.306L-43.578-44.306Q-43.773-44.325-43.824-44.548L-43.824-44.634Q-43.773-44.845-43.578-44.868L-42.418-44.868Q-42.219-44.845-42.168-44.634L-42.168-44.548Q-42.219-44.329-42.418-44.306L-42.527-44.306L-42.031-43.649L-41.554-44.306L-41.672-44.306Q-41.871-44.329-41.922-44.548L-41.922-44.634Q-41.871-44.845-41.672-44.868L-40.512-44.868Q-40.316-44.849-40.265-44.634L-40.265-44.548Q-40.316-44.329-40.512-44.306L-40.922-44.306L-41.769-43.196L-40.808-41.978L-40.402-41.978Q-40.203-41.954-40.152-41.747L-40.152-41.657Q-40.191-41.442-40.402-41.419L-41.554-41.419Q-41.762-41.442-41.801-41.657L-41.801-41.747Q-41.762-41.954-41.554-41.978L-41.426-41.978L-42.031-42.833L-42.617-41.978L-42.472-41.978Q-42.265-41.954-42.226-41.747L-42.226-41.657Q-42.265-41.442-42.472-41.419L-43.625-41.419Q-43.820-41.439-43.871-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 127.636)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 127.636)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-12.258-41.341Q-12.691-41.341-13.023-41.579Q-13.355-41.817-13.576-42.206Q-13.797-42.595-13.904-43.032Q-14.012-43.470-14.012-43.868Q-14.012-44.259-13.902-44.702Q-13.793-45.146-13.576-45.526Q-13.359-45.907-13.025-46.148Q-12.691-46.388-12.258-46.388Q-11.703-46.388-11.303-45.989Q-10.902-45.591-10.705-45.005Q-10.508-44.419-10.508-43.868Q-10.508-43.314-10.705-42.726Q-10.902-42.138-11.303-41.739Q-11.703-41.341-12.258-41.341M-12.258-41.899Q-11.957-41.899-11.740-42.116Q-11.523-42.333-11.396-42.661Q-11.269-42.989-11.209-43.335Q-11.148-43.681-11.148-43.962Q-11.148-44.212-11.211-44.538Q-11.273-44.864-11.404-45.155Q-11.535-45.446-11.748-45.636Q-11.961-45.825-12.258-45.825Q-12.633-45.825-12.885-45.513Q-13.137-45.200-13.254-44.767Q-13.371-44.333-13.371-43.962Q-13.371-43.564-13.258-43.083Q-13.144-42.603-12.896-42.251Q-12.648-41.899-12.258-41.899M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899M-4.023-41.380Q-4.488-41.380-4.853-41.630Q-5.219-41.880-5.424-42.284Q-5.629-42.689-5.629-43.146Q-5.629-43.489-5.504-43.810Q-5.379-44.130-5.146-44.380Q-4.914-44.630-4.609-44.769Q-4.305-44.907-3.949-44.907Q-3.437-44.907-3.031-44.587L-3.031-45.747L-3.453-45.747Q-3.664-45.771-3.703-45.985L-3.703-46.075Q-3.664-46.282-3.453-46.306L-2.640-46.306Q-2.441-46.282-2.390-46.075L-2.390-41.978L-1.965-41.978Q-1.758-41.954-1.719-41.747L-1.719-41.657Q-1.758-41.442-1.965-41.419L-2.781-41.419Q-2.980-41.442-3.031-41.657L-3.031-41.786Q-3.226-41.595-3.488-41.487Q-3.750-41.380-4.023-41.380M-3.984-41.939Q-3.625-41.939-3.373-42.208Q-3.121-42.478-3.031-42.853L-3.031-43.685Q-3.090-43.872-3.217-44.023Q-3.344-44.173-3.521-44.261Q-3.699-44.349-3.894-44.349Q-4.203-44.349-4.453-44.179Q-4.703-44.009-4.847-43.724Q-4.992-43.439-4.992-43.138Q-4.992-42.689-4.707-42.314Q-4.422-41.939-3.984-41.939M0.481-41.341Q0.047-41.341-0.285-41.579Q-0.617-41.817-0.838-42.206Q-1.058-42.595-1.166-43.032Q-1.273-43.470-1.273-43.868Q-1.273-44.259-1.164-44.702Q-1.055-45.146-0.838-45.526Q-0.621-45.907-0.287-46.148Q0.047-46.388 0.481-46.388Q1.035-46.388 1.436-45.989Q1.836-45.591 2.033-45.005Q2.231-44.419 2.231-43.868Q2.231-43.314 2.033-42.726Q1.836-42.138 1.436-41.739Q1.035-41.341 0.481-41.341M0.481-41.899Q0.781-41.899 0.998-42.116Q1.215-42.333 1.342-42.661Q1.469-42.989 1.529-43.335Q1.590-43.681 1.590-43.962Q1.590-44.212 1.528-44.538Q1.465-44.864 1.334-45.155Q1.203-45.446 0.990-45.636Q0.778-45.825 0.481-45.825Q0.106-45.825-0.146-45.513Q-0.398-45.200-0.515-44.767Q-0.633-44.333-0.633-43.962Q-0.633-43.564-0.519-43.083Q-0.406-42.603-0.158-42.251Q0.090-41.899 0.481-41.899M4.727-41.341Q4.293-41.341 3.961-41.579Q3.629-41.817 3.408-42.206Q3.188-42.595 3.080-43.032Q2.973-43.470 2.973-43.868Q2.973-44.259 3.082-44.702Q3.192-45.146 3.408-45.526Q3.625-45.907 3.959-46.148Q4.293-46.388 4.727-46.388Q5.281-46.388 5.682-45.989Q6.082-45.591 6.279-45.005Q6.477-44.419 6.477-43.868Q6.477-43.314 6.279-42.726Q6.082-42.138 5.682-41.739Q5.281-41.341 4.727-41.341M4.727-41.899Q5.028-41.899 5.244-42.116Q5.461-42.333 5.588-42.661Q5.715-42.989 5.776-43.335Q5.836-43.681 5.836-43.962Q5.836-44.212 5.774-44.538Q5.711-44.864 5.580-45.155Q5.449-45.446 5.237-45.636Q5.024-45.825 4.727-45.825Q4.352-45.825 4.100-45.513Q3.848-45.200 3.731-44.767Q3.613-44.333 3.613-43.962Q3.613-43.564 3.727-43.083Q3.840-42.603 4.088-42.251Q4.336-41.899 4.727-41.899M8.973-41.341Q8.539-41.341 8.207-41.579Q7.875-41.817 7.654-42.206Q7.434-42.595 7.326-43.032Q7.219-43.470 7.219-43.868Q7.219-44.259 7.328-44.702Q7.438-45.146 7.654-45.526Q7.871-45.907 8.205-46.148Q8.539-46.388 8.973-46.388Q9.528-46.388 9.928-45.989Q10.328-45.591 10.526-45.005Q10.723-44.419 10.723-43.868Q10.723-43.314 10.526-42.726Q10.328-42.138 9.928-41.739Q9.528-41.341 8.973-41.341M8.973-41.899Q9.274-41.899 9.490-42.116Q9.707-42.333 9.834-42.661Q9.961-42.989 10.022-43.335Q10.082-43.681 10.082-43.962Q10.082-44.212 10.020-44.538Q9.957-44.864 9.826-45.155Q9.695-45.446 9.483-45.636Q9.270-45.825 8.973-45.825Q8.598-45.825 8.346-45.513Q8.094-45.200 7.977-44.767Q7.860-44.333 7.860-43.962Q7.860-43.564 7.973-43.083Q8.086-42.603 8.334-42.251Q8.582-41.899 8.973-41.899M12.961-41.380Q12.496-41.380 12.131-41.630Q11.766-41.880 11.561-42.284Q11.356-42.689 11.356-43.146Q11.356-43.489 11.481-43.810Q11.606-44.130 11.838-44.380Q12.070-44.630 12.375-44.769Q12.680-44.907 13.035-44.907Q13.547-44.907 13.953-44.587L13.953-45.747L13.531-45.747Q13.320-45.771 13.281-45.985L13.281-46.075Q13.320-46.282 13.531-46.306L14.344-46.306Q14.543-46.282 14.594-46.075L14.594-41.978L15.020-41.978Q15.227-41.954 15.266-41.747L15.266-41.657Q15.227-41.442 15.020-41.419L14.203-41.419Q14.004-41.442 13.953-41.657L13.953-41.786Q13.758-41.595 13.496-41.487Q13.235-41.380 12.961-41.380M13-41.939Q13.360-41.939 13.612-42.208Q13.863-42.478 13.953-42.853L13.953-43.685Q13.895-43.872 13.768-44.023Q13.641-44.173 13.463-44.261Q13.285-44.349 13.090-44.349Q12.781-44.349 12.531-44.179Q12.281-44.009 12.137-43.724Q11.992-43.439 11.992-43.138Q11.992-42.689 12.278-42.314Q12.563-41.939 13-41.939M17.465-41.341Q17.031-41.341 16.699-41.579Q16.367-41.817 16.147-42.206Q15.926-42.595 15.819-43.032Q15.711-43.470 15.711-43.868Q15.711-44.259 15.820-44.702Q15.930-45.146 16.147-45.526Q16.363-45.907 16.697-46.148Q17.031-46.388 17.465-46.388Q18.020-46.388 18.420-45.989Q18.820-45.591 19.018-45.005Q19.215-44.419 19.215-43.868Q19.215-43.314 19.018-42.726Q18.820-42.138 18.420-41.739Q18.020-41.341 17.465-41.341M17.465-41.899Q17.766-41.899 17.983-42.116Q18.199-42.333 18.326-42.661Q18.453-42.989 18.514-43.335Q18.574-43.681 18.574-43.962Q18.574-44.212 18.512-44.538Q18.449-44.864 18.319-45.155Q18.188-45.446 17.975-45.636Q17.762-45.825 17.465-45.825Q17.090-45.825 16.838-45.513Q16.586-45.200 16.469-44.767Q16.352-44.333 16.352-43.962Q16.352-43.564 16.465-43.083Q16.578-42.603 16.826-42.251Q17.074-41.899 17.465-41.899M21.711-41.341Q21.278-41.341 20.945-41.579Q20.613-41.817 20.393-42.206Q20.172-42.595 20.065-43.032Q19.957-43.470 19.957-43.868Q19.957-44.259 20.067-44.702Q20.176-45.146 20.393-45.526Q20.610-45.907 20.944-46.148Q21.278-46.388 21.711-46.388Q22.266-46.388 22.666-45.989Q23.067-45.591 23.264-45.005Q23.461-44.419 23.461-43.868Q23.461-43.314 23.264-42.726Q23.067-42.138 22.666-41.739Q22.266-41.341 21.711-41.341M21.711-41.899Q22.012-41.899 22.229-42.116Q22.445-42.333 22.572-42.661Q22.699-42.989 22.760-43.335Q22.820-43.681 22.820-43.962Q22.820-44.212 22.758-44.538Q22.695-44.864 22.565-45.155Q22.434-45.446 22.221-45.636Q22.008-45.825 21.711-45.825Q21.336-45.825 21.084-45.513Q20.832-45.200 20.715-44.767Q20.598-44.333 20.598-43.962Q20.598-43.564 20.711-43.083Q20.824-42.603 21.072-42.251Q21.320-41.899 21.711-41.899M25.957-41.341Q25.524-41.341 25.192-41.579Q24.860-41.817 24.639-42.206Q24.418-42.595 24.311-43.032Q24.203-43.470 24.203-43.868Q24.203-44.259 24.313-44.702Q24.422-45.146 24.639-45.526Q24.856-45.907 25.190-46.148Q25.524-46.388 25.957-46.388Q26.512-46.388 26.912-45.989Q27.313-45.591 27.510-45.005Q27.707-44.419 27.707-43.868Q27.707-43.314 27.510-42.726Q27.313-42.138 26.912-41.739Q26.512-41.341 25.957-41.341M25.957-41.899Q26.258-41.899 26.475-42.116Q26.692-42.333 26.819-42.661Q26.945-42.989 27.006-43.335Q27.067-43.681 27.067-43.962Q27.067-44.212 27.004-44.538Q26.942-44.864 26.811-45.155Q26.680-45.446 26.467-45.636Q26.254-45.825 25.957-45.825Q25.582-45.825 25.330-45.513Q25.078-45.200 24.961-44.767Q24.844-44.333 24.844-43.962Q24.844-43.564 24.957-43.083Q25.070-42.603 25.319-42.251Q25.567-41.899 25.957-41.899M29.945-41.380Q29.481-41.380 29.115-41.630Q28.750-41.880 28.545-42.284Q28.340-42.689 28.340-43.146Q28.340-43.489 28.465-43.810Q28.590-44.130 28.822-44.380Q29.055-44.630 29.360-44.769Q29.664-44.907 30.020-44.907Q30.531-44.907 30.938-44.587L30.938-45.747L30.516-45.747Q30.305-45.771 30.266-45.985L30.266-46.075Q30.305-46.282 30.516-46.306L31.328-46.306Q31.528-46.282 31.578-46.075L31.578-41.978L32.004-41.978Q32.211-41.954 32.250-41.747L32.250-41.657Q32.211-41.442 32.004-41.419L31.188-41.419Q30.988-41.442 30.938-41.657L30.938-41.786Q30.742-41.595 30.481-41.487Q30.219-41.380 29.945-41.380M29.985-41.939Q30.344-41.939 30.596-42.208Q30.848-42.478 30.938-42.853L30.938-43.685Q30.879-43.872 30.752-44.023Q30.625-44.173 30.447-44.261Q30.270-44.349 30.074-44.349Q29.766-44.349 29.516-44.179Q29.266-44.009 29.121-43.724Q28.977-43.439 28.977-43.138Q28.977-42.689 29.262-42.314Q29.547-41.939 29.985-41.939\" 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.163h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 146.13)\">\u003Cpath d=\"M-56.012-41.657L-56.012-41.747Q-55.961-41.954-55.762-41.978L-54.945-41.978L-54.945-45.161Q-55.324-44.853-55.777-44.853Q-56.008-44.853-56.058-45.083L-56.058-45.173Q-56.008-45.388-55.812-45.411Q-55.484-45.411-55.230-45.649Q-54.976-45.888-54.836-46.235Q-54.765-46.364-54.609-46.388L-54.554-46.388Q-54.359-46.368-54.308-46.153L-54.308-41.978L-53.492-41.978Q-53.293-41.954-53.242-41.747L-53.242-41.657Q-53.293-41.442-53.492-41.419L-55.762-41.419Q-55.961-41.442-56.012-41.657M-50.500-41.341Q-50.933-41.341-51.265-41.579Q-51.597-41.817-51.818-42.206Q-52.039-42.595-52.146-43.032Q-52.254-43.470-52.254-43.868Q-52.254-44.259-52.144-44.702Q-52.035-45.146-51.818-45.526Q-51.601-45.907-51.267-46.148Q-50.933-46.388-50.500-46.388Q-49.945-46.388-49.545-45.989Q-49.144-45.591-48.947-45.005Q-48.750-44.419-48.750-43.868Q-48.750-43.314-48.947-42.726Q-49.144-42.138-49.545-41.739Q-49.945-41.341-50.500-41.341M-50.500-41.899Q-50.199-41.899-49.982-42.116Q-49.765-42.333-49.638-42.661Q-49.512-42.989-49.451-43.335Q-49.390-43.681-49.390-43.962Q-49.390-44.212-49.453-44.538Q-49.515-44.864-49.646-45.155Q-49.777-45.446-49.990-45.636Q-50.203-45.825-50.500-45.825Q-50.875-45.825-51.127-45.513Q-51.379-45.200-51.496-44.767Q-51.613-44.333-51.613-43.962Q-51.613-43.564-51.500-43.083Q-51.387-42.603-51.138-42.251Q-50.890-41.899-50.500-41.899\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 146.13)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-41.570-42.763L-43.640-42.763Q-43.836-42.786-43.890-43.005L-43.890-43.243Q-43.890-43.317-43.847-43.388L-42-46.259Q-41.914-46.388-41.762-46.388L-41.304-46.388Q-41.195-46.388-41.117-46.310Q-41.039-46.231-41.039-46.122L-41.039-43.321L-40.375-43.321Q-40.179-43.298-40.129-43.091L-40.129-43.005Q-40.179-42.786-40.375-42.763L-41.039-42.763L-41.039-41.978L-40.465-41.978Q-40.258-41.954-40.219-41.747L-40.219-41.657Q-40.258-41.442-40.465-41.419L-42.144-41.419Q-42.351-41.442-42.394-41.657L-42.394-41.747Q-42.351-41.954-42.144-41.978L-41.570-41.978L-41.570-42.763M-41.570-45.915L-43.242-43.321L-41.570-43.321L-41.570-45.915M-39.476-42.532Q-39.476-42.978-39.062-43.235Q-38.648-43.493-38.107-43.593Q-37.566-43.692-37.058-43.700Q-37.058-43.915-37.193-44.067Q-37.328-44.220-37.535-44.296Q-37.742-44.372-37.953-44.372Q-38.297-44.372-38.457-44.349L-38.457-44.290Q-38.457-44.122-38.576-44.007Q-38.695-43.892-38.859-43.892Q-39.035-43.892-39.150-44.015Q-39.265-44.138-39.265-44.306Q-39.265-44.712-38.885-44.821Q-38.504-44.931-37.945-44.931Q-37.676-44.931-37.408-44.853Q-37.140-44.774-36.916-44.624Q-36.691-44.474-36.554-44.253Q-36.418-44.032-36.418-43.755L-36.418-42.036Q-36.418-41.978-35.890-41.978Q-35.695-41.958-35.644-41.747L-35.644-41.657Q-35.695-41.442-35.890-41.419L-36.035-41.419Q-36.379-41.419-36.607-41.466Q-36.836-41.513-36.980-41.700Q-37.441-41.380-38.148-41.380Q-38.484-41.380-38.789-41.521Q-39.094-41.661-39.285-41.923Q-39.476-42.185-39.476-42.532M-38.836-42.524Q-38.836-42.251-38.594-42.095Q-38.351-41.939-38.066-41.939Q-37.847-41.939-37.615-41.997Q-37.383-42.056-37.221-42.194Q-37.058-42.333-37.058-42.556L-37.058-43.146Q-37.340-43.146-37.756-43.089Q-38.172-43.032-38.504-42.894Q-38.836-42.755-38.836-42.524\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 145.575)\">\u003Cpath d=\"M-56.461-42.532Q-56.461-42.978-56.047-43.235Q-55.633-43.493-55.092-43.593Q-54.551-43.692-54.043-43.700Q-54.043-43.915-54.178-44.067Q-54.312-44.220-54.519-44.296Q-54.726-44.372-54.937-44.372Q-55.281-44.372-55.441-44.349L-55.441-44.290Q-55.441-44.122-55.560-44.007Q-55.679-43.892-55.844-43.892Q-56.019-43.892-56.135-44.015Q-56.250-44.138-56.250-44.306Q-56.250-44.712-55.869-44.821Q-55.488-44.931-54.929-44.931Q-54.660-44.931-54.392-44.853Q-54.125-44.774-53.900-44.624Q-53.676-44.474-53.539-44.253Q-53.402-44.032-53.402-43.755L-53.402-42.036Q-53.402-41.978-52.875-41.978Q-52.679-41.958-52.629-41.747L-52.629-41.657Q-52.679-41.442-52.875-41.419L-53.019-41.419Q-53.363-41.419-53.592-41.466Q-53.820-41.513-53.965-41.700Q-54.426-41.380-55.133-41.380Q-55.469-41.380-55.773-41.521Q-56.078-41.661-56.269-41.923Q-56.461-42.185-56.461-42.532M-55.820-42.524Q-55.820-42.251-55.578-42.095Q-55.336-41.939-55.051-41.939Q-54.832-41.939-54.599-41.997Q-54.367-42.056-54.205-42.194Q-54.043-42.333-54.043-42.556L-54.043-43.146Q-54.324-43.146-54.740-43.089Q-55.156-43.032-55.488-42.894Q-55.820-42.755-55.820-42.524M-50.758-41.380Q-51.222-41.380-51.588-41.630Q-51.953-41.880-52.158-42.284Q-52.363-42.689-52.363-43.146Q-52.363-43.489-52.238-43.810Q-52.113-44.130-51.881-44.380Q-51.648-44.630-51.344-44.769Q-51.039-44.907-50.683-44.907Q-50.172-44.907-49.765-44.587L-49.765-45.747L-50.187-45.747Q-50.398-45.771-50.437-45.985L-50.437-46.075Q-50.398-46.282-50.187-46.306L-49.375-46.306Q-49.176-46.282-49.125-46.075L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-49.515-41.419Q-49.715-41.442-49.765-41.657L-49.765-41.786Q-49.961-41.595-50.222-41.487Q-50.484-41.380-50.758-41.380M-50.719-41.939Q-50.359-41.939-50.107-42.208Q-49.855-42.478-49.765-42.853L-49.765-43.685Q-49.824-43.872-49.951-44.023Q-50.078-44.173-50.256-44.261Q-50.433-44.349-50.629-44.349Q-50.937-44.349-51.187-44.179Q-51.437-44.009-51.582-43.724Q-51.726-43.439-51.726-43.138Q-51.726-42.689-51.441-42.314Q-51.156-41.939-50.719-41.939M-46.512-41.380Q-46.976-41.380-47.342-41.630Q-47.707-41.880-47.912-42.284Q-48.117-42.689-48.117-43.146Q-48.117-43.489-47.992-43.810Q-47.867-44.130-47.635-44.380Q-47.402-44.630-47.097-44.769Q-46.793-44.907-46.437-44.907Q-45.926-44.907-45.519-44.587L-45.519-45.747L-45.941-45.747Q-46.152-45.771-46.191-45.985L-46.191-46.075Q-46.152-46.282-45.941-46.306L-45.129-46.306Q-44.929-46.282-44.879-46.075L-44.879-41.978L-44.453-41.978Q-44.246-41.954-44.207-41.747L-44.207-41.657Q-44.246-41.442-44.453-41.419L-45.269-41.419Q-45.469-41.442-45.519-41.657L-45.519-41.786Q-45.715-41.595-45.976-41.487Q-46.238-41.380-46.512-41.380M-46.472-41.939Q-46.113-41.939-45.861-42.208Q-45.609-42.478-45.519-42.853L-45.519-43.685Q-45.578-43.872-45.705-44.023Q-45.832-44.173-46.010-44.261Q-46.187-44.349-46.383-44.349Q-46.691-44.349-46.941-44.179Q-47.191-44.009-47.336-43.724Q-47.480-43.439-47.480-43.138Q-47.480-42.689-47.195-42.314Q-46.910-41.939-46.472-41.939M-41.816-39.876L-41.816-39.962Q-41.765-40.181-41.570-40.204L-41.105-40.204L-41.105-41.802Q-41.558-41.380-42.168-41.380Q-42.523-41.380-42.828-41.523Q-43.133-41.665-43.365-41.915Q-43.597-42.165-43.722-42.487Q-43.847-42.810-43.847-43.146Q-43.847-43.630-43.609-44.030Q-43.371-44.431-42.965-44.669Q-42.558-44.907-42.082-44.907Q-41.519-44.907-41.105-44.517L-41.105-44.677Q-41.054-44.888-40.855-44.907L-40.715-44.907Q-40.515-44.884-40.465-44.677L-40.465-40.204L-40-40.204Q-39.804-40.181-39.754-39.962L-39.754-39.876Q-39.804-39.665-40-39.642L-41.570-39.642Q-41.765-39.665-41.816-39.876M-42.121-41.939Q-41.750-41.939-41.474-42.192Q-41.199-42.446-41.105-42.810L-41.105-43.427Q-41.148-43.665-41.271-43.878Q-41.394-44.091-41.592-44.220Q-41.789-44.349-42.031-44.349Q-42.347-44.349-42.619-44.183Q-42.890-44.017-43.049-43.735Q-43.207-43.454-43.207-43.138Q-43.207-42.673-42.892-42.306Q-42.578-41.939-42.121-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 145.575)\">\u003Cpath d=\"M-34.937-41.060Q-34.937-41.114-34.914-41.181L-32.648-46.786Q-32.554-46.970-32.359-46.970Q-32.234-46.970-32.146-46.882Q-32.058-46.794-32.058-46.665Q-32.058-46.606-32.082-46.548L-34.344-40.939Q-34.445-40.755-34.625-40.755Q-34.750-40.755-34.844-40.845Q-34.937-40.935-34.937-41.060M-32.359-40.755Q-32.711-40.755-32.892-41.095Q-33.074-41.435-33.074-41.817Q-33.074-42.204-32.894-42.544Q-32.715-42.884-32.359-42.884Q-32.121-42.884-31.963-42.714Q-31.804-42.544-31.730-42.300Q-31.656-42.056-31.656-41.817Q-31.656-41.583-31.730-41.339Q-31.804-41.095-31.963-40.925Q-32.121-40.755-32.359-40.755M-32.359-41.314Q-32.277-41.345-32.230-41.513Q-32.183-41.681-32.183-41.817Q-32.183-41.954-32.230-42.124Q-32.277-42.294-32.359-42.321Q-32.445-42.294-32.496-42.126Q-32.547-41.958-32.547-41.817Q-32.547-41.689-32.496-41.517Q-32.445-41.345-32.359-41.314M-34.625-44.833Q-34.867-44.833-35.027-45.003Q-35.187-45.173-35.262-45.419Q-35.336-45.665-35.336-45.907Q-35.336-46.290-35.156-46.630Q-34.976-46.970-34.625-46.970Q-34.387-46.970-34.228-46.800Q-34.070-46.630-33.996-46.386Q-33.922-46.142-33.922-45.907Q-33.922-45.665-33.996-45.419Q-34.070-45.173-34.228-45.003Q-34.387-44.833-34.625-44.833M-34.625-45.396Q-34.535-45.439-34.492-45.595Q-34.449-45.751-34.449-45.907Q-34.449-46.036-34.496-46.212Q-34.543-46.388-34.633-46.411Q-34.648-46.411-34.678-46.376Q-34.707-46.341-34.715-46.321Q-34.808-46.134-34.808-45.907Q-34.808-45.771-34.760-45.599Q-34.711-45.427-34.625-45.396M-31.148-41.657L-31.148-41.747Q-31.090-41.954-30.898-41.978L-30.187-41.978L-30.187-44.306L-30.898-44.306Q-31.094-44.329-31.148-44.548L-31.148-44.634Q-31.090-44.845-30.898-44.868L-29.797-44.868Q-29.597-44.849-29.547-44.634L-29.547-44.306Q-29.285-44.591-28.929-44.749Q-28.574-44.907-28.187-44.907Q-27.894-44.907-27.660-44.773Q-27.426-44.638-27.426-44.372Q-27.426-44.204-27.535-44.087Q-27.644-43.970-27.812-43.970Q-27.965-43.970-28.080-44.081Q-28.195-44.192-28.195-44.349Q-28.570-44.349-28.885-44.148Q-29.199-43.946-29.373-43.612Q-29.547-43.278-29.547-42.899L-29.547-41.978L-28.601-41.978Q-28.394-41.954-28.355-41.747L-28.355-41.657Q-28.394-41.442-28.601-41.419L-30.898-41.419Q-31.090-41.442-31.148-41.657M-26.773-42.833Q-26.773-43.118-26.617-43.372Q-26.461-43.626-26.211-43.800Q-25.961-43.974-25.676-44.060Q-25.914-44.134-26.140-44.276Q-26.367-44.419-26.510-44.628Q-26.652-44.837-26.652-45.083Q-26.652-45.481-26.406-45.776Q-26.160-46.071-25.777-46.230Q-25.394-46.388-25.004-46.388Q-24.613-46.388-24.230-46.230Q-23.847-46.071-23.601-45.773Q-23.355-45.474-23.355-45.083Q-23.355-44.837-23.498-44.630Q-23.640-44.423-23.867-44.278Q-24.094-44.134-24.332-44.060Q-23.879-43.923-23.558-43.597Q-23.238-43.271-23.238-42.833Q-23.238-42.396-23.496-42.052Q-23.754-41.708-24.164-41.524Q-24.574-41.341-25.004-41.341Q-25.433-41.341-25.844-41.523Q-26.254-41.704-26.513-42.048Q-26.773-42.392-26.773-42.833M-26.133-42.833Q-26.133-42.560-25.967-42.345Q-25.801-42.130-25.539-42.015Q-25.277-41.899-25.004-41.899Q-24.730-41.899-24.471-42.015Q-24.211-42.130-24.045-42.347Q-23.879-42.564-23.879-42.833Q-23.879-43.110-24.045-43.327Q-24.211-43.544-24.471-43.661Q-24.730-43.778-25.004-43.778Q-25.277-43.778-25.539-43.661Q-25.801-43.544-25.967-43.329Q-26.133-43.114-26.133-42.833M-26.012-45.083Q-26.012-44.845-25.855-44.677Q-25.699-44.509-25.463-44.425Q-25.226-44.341-25.004-44.341Q-24.785-44.341-24.547-44.425Q-24.308-44.509-24.152-44.679Q-23.996-44.849-23.996-45.083Q-23.996-45.317-24.152-45.487Q-24.308-45.657-24.547-45.741Q-24.785-45.825-25.004-45.825Q-25.226-45.825-25.463-45.741Q-25.699-45.657-25.855-45.489Q-26.012-45.321-26.012-45.083M-21.160-40.306Q-21.273-40.306-21.363-40.396Q-21.453-40.485-21.453-40.595Q-21.453-40.771-21.262-40.845Q-21.043-40.896-20.871-41.054Q-20.699-41.212-20.633-41.435Q-20.656-41.435-20.687-41.419L-20.750-41.419Q-20.980-41.419-21.146-41.581Q-21.312-41.743-21.312-41.978Q-21.312-42.212-21.148-42.372Q-20.984-42.532-20.750-42.532Q-20.539-42.532-20.375-42.411Q-20.211-42.290-20.121-42.097Q-20.031-41.903-20.031-41.692Q-20.031-41.216-20.330-40.827Q-20.629-40.439-21.094-40.314Q-21.117-40.306-21.160-40.306M-17.953-41.060Q-17.953-41.114-17.929-41.181L-15.664-46.786Q-15.570-46.970-15.375-46.970Q-15.250-46.970-15.162-46.882Q-15.074-46.794-15.074-46.665Q-15.074-46.606-15.097-46.548L-17.359-40.939Q-17.461-40.755-17.640-40.755Q-17.765-40.755-17.859-40.845Q-17.953-40.935-17.953-41.060M-15.375-40.755Q-15.726-40.755-15.908-41.095Q-16.090-41.435-16.090-41.817Q-16.090-42.204-15.910-42.544Q-15.730-42.884-15.375-42.884Q-15.137-42.884-14.978-42.714Q-14.820-42.544-14.746-42.300Q-14.672-42.056-14.672-41.817Q-14.672-41.583-14.746-41.339Q-14.820-41.095-14.978-40.925Q-15.137-40.755-15.375-40.755M-15.375-41.314Q-15.293-41.345-15.246-41.513Q-15.199-41.681-15.199-41.817Q-15.199-41.954-15.246-42.124Q-15.293-42.294-15.375-42.321Q-15.461-42.294-15.512-42.126Q-15.562-41.958-15.562-41.817Q-15.562-41.689-15.512-41.517Q-15.461-41.345-15.375-41.314M-17.640-44.833Q-17.883-44.833-18.043-45.003Q-18.203-45.173-18.277-45.419Q-18.351-45.665-18.351-45.907Q-18.351-46.290-18.172-46.630Q-17.992-46.970-17.640-46.970Q-17.402-46.970-17.244-46.800Q-17.086-46.630-17.012-46.386Q-16.937-46.142-16.937-45.907Q-16.937-45.665-17.012-45.419Q-17.086-45.173-17.244-45.003Q-17.402-44.833-17.640-44.833M-17.640-45.396Q-17.551-45.439-17.508-45.595Q-17.465-45.751-17.465-45.907Q-17.465-46.036-17.512-46.212Q-17.558-46.388-17.648-46.411Q-17.664-46.411-17.693-46.376Q-17.722-46.341-17.730-46.321Q-17.824-46.134-17.824-45.907Q-17.824-45.771-17.775-45.599Q-17.726-45.427-17.640-45.396M-14.164-41.657L-14.164-41.747Q-14.105-41.954-13.914-41.978L-13.203-41.978L-13.203-44.306L-13.914-44.306Q-14.109-44.329-14.164-44.548L-14.164-44.634Q-14.105-44.845-13.914-44.868L-12.812-44.868Q-12.613-44.849-12.562-44.634L-12.562-44.306Q-12.301-44.591-11.945-44.749Q-11.590-44.907-11.203-44.907Q-10.910-44.907-10.676-44.773Q-10.441-44.638-10.441-44.372Q-10.441-44.204-10.551-44.087Q-10.660-43.970-10.828-43.970Q-10.980-43.970-11.096-44.081Q-11.211-44.192-11.211-44.349Q-11.586-44.349-11.900-44.148Q-12.215-43.946-12.388-43.612Q-12.562-43.278-12.562-42.899L-12.562-41.978L-11.617-41.978Q-11.410-41.954-11.371-41.747L-11.371-41.657Q-11.410-41.442-11.617-41.419L-13.914-41.419Q-14.105-41.442-14.164-41.657M-8.277-41.380Q-8.742-41.380-9.107-41.630Q-9.472-41.880-9.678-42.284Q-9.883-42.689-9.883-43.146Q-9.883-43.489-9.758-43.810Q-9.633-44.130-9.400-44.380Q-9.168-44.630-8.863-44.769Q-8.558-44.907-8.203-44.907Q-7.691-44.907-7.285-44.587L-7.285-45.747L-7.707-45.747Q-7.918-45.771-7.957-45.985L-7.957-46.075Q-7.918-46.282-7.707-46.306L-6.894-46.306Q-6.695-46.282-6.644-46.075L-6.644-41.978L-6.219-41.978Q-6.012-41.954-5.972-41.747L-5.972-41.657Q-6.012-41.442-6.219-41.419L-7.035-41.419Q-7.234-41.442-7.285-41.657L-7.285-41.786Q-7.480-41.595-7.742-41.487Q-8.004-41.380-8.277-41.380M-8.238-41.939Q-7.879-41.939-7.627-42.208Q-7.375-42.478-7.285-42.853L-7.285-43.685Q-7.344-43.872-7.471-44.023Q-7.597-44.173-7.775-44.261Q-7.953-44.349-8.148-44.349Q-8.457-44.349-8.707-44.179Q-8.957-44.009-9.101-43.724Q-9.246-43.439-9.246-43.138Q-9.246-42.689-8.961-42.314Q-8.676-41.939-8.238-41.939M-5.277-41.657L-5.277-41.747Q-5.226-41.954-5.031-41.978L-3.992-41.978L-3.992-44.306L-4.965-44.306Q-5.164-44.329-5.215-44.548L-5.215-44.634Q-5.164-44.845-4.965-44.868L-3.597-44.868Q-3.402-44.849-3.351-44.634L-3.351-41.978L-2.437-41.978Q-2.242-41.954-2.191-41.747L-2.191-41.657Q-2.242-41.442-2.437-41.419L-5.031-41.419Q-5.226-41.442-5.277-41.657M-4.246-45.845L-4.246-45.899Q-4.246-46.071-4.109-46.192Q-3.972-46.314-3.797-46.314Q-3.625-46.314-3.488-46.192Q-3.351-46.071-3.351-45.899L-3.351-45.845Q-3.351-45.669-3.488-45.548Q-3.625-45.427-3.797-45.427Q-3.972-45.427-4.109-45.548Q-4.246-45.669-4.246-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 146.13)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-42.992-42.298Q-42.875-42.095-42.640-41.997Q-42.406-41.899-42.144-41.899Q-41.847-41.899-41.574-42.028Q-41.301-42.157-41.127-42.394Q-40.953-42.630-40.953-42.931Q-40.953-43.185-41.072-43.427Q-41.191-43.669-41.406-43.815Q-41.621-43.962-41.890-43.962Q-42.496-43.962-42.832-43.642Q-42.910-43.556-42.965-43.509Q-43.019-43.462-43.105-43.450L-43.207-43.450Q-43.406-43.474-43.457-43.692L-43.457-46.075Q-43.406-46.282-43.207-46.306L-40.847-46.306Q-40.652-46.286-40.601-46.075L-40.601-45.985Q-40.652-45.771-40.847-45.747L-42.816-45.747L-42.816-44.321Q-42.410-44.524-41.890-44.524Q-41.461-44.524-41.096-44.308Q-40.730-44.091-40.521-43.722Q-40.312-43.353-40.312-42.931Q-40.312-42.458-40.576-42.099Q-40.840-41.739-41.263-41.540Q-41.687-41.341-42.144-41.341Q-42.398-41.341-42.676-41.415Q-42.953-41.489-43.187-41.646Q-43.422-41.802-43.562-42.036Q-43.703-42.271-43.703-42.556Q-43.703-42.724-43.588-42.847Q-43.472-42.970-43.297-42.970Q-43.215-42.970-43.144-42.940Q-43.074-42.911-43.017-42.856Q-42.961-42.802-42.929-42.726Q-42.898-42.649-42.898-42.571Q-42.898-42.411-42.992-42.298M-39.531-42.833Q-39.531-43.118-39.375-43.372Q-39.219-43.626-38.969-43.800Q-38.719-43.974-38.433-44.060Q-38.672-44.134-38.898-44.276Q-39.125-44.419-39.267-44.628Q-39.410-44.837-39.410-45.083Q-39.410-45.481-39.164-45.776Q-38.918-46.071-38.535-46.230Q-38.152-46.388-37.762-46.388Q-37.371-46.388-36.988-46.230Q-36.605-46.071-36.359-45.773Q-36.113-45.474-36.113-45.083Q-36.113-44.837-36.256-44.630Q-36.398-44.423-36.625-44.278Q-36.851-44.134-37.090-44.060Q-36.637-43.923-36.316-43.597Q-35.996-43.271-35.996-42.833Q-35.996-42.396-36.254-42.052Q-36.512-41.708-36.922-41.524Q-37.332-41.341-37.762-41.341Q-38.191-41.341-38.601-41.523Q-39.012-41.704-39.271-42.048Q-39.531-42.392-39.531-42.833M-38.890-42.833Q-38.890-42.560-38.724-42.345Q-38.558-42.130-38.297-42.015Q-38.035-41.899-37.762-41.899Q-37.488-41.899-37.228-42.015Q-36.969-42.130-36.803-42.347Q-36.637-42.564-36.637-42.833Q-36.637-43.110-36.803-43.327Q-36.969-43.544-37.228-43.661Q-37.488-43.778-37.762-43.778Q-38.035-43.778-38.297-43.661Q-38.558-43.544-38.724-43.329Q-38.890-43.114-38.890-42.833M-38.769-45.083Q-38.769-44.845-38.613-44.677Q-38.457-44.509-38.221-44.425Q-37.984-44.341-37.762-44.341Q-37.543-44.341-37.304-44.425Q-37.066-44.509-36.910-44.679Q-36.754-44.849-36.754-45.083Q-36.754-45.317-36.910-45.487Q-37.066-45.657-37.304-45.741Q-37.543-45.825-37.762-45.825Q-37.984-45.825-38.221-45.741Q-38.457-45.657-38.613-45.489Q-38.769-45.321-38.769-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 146.13)\">\u003Cpath d=\"M-29.551-42.341L-29.551-43.556L-30.765-43.556Q-30.890-43.567-30.976-43.653Q-31.062-43.739-31.062-43.868Q-31.062-43.997-30.976-44.079Q-30.890-44.161-30.765-44.173L-29.551-44.173L-29.551-45.396Q-29.539-45.521-29.453-45.603Q-29.367-45.685-29.238-45.685Q-29.109-45.685-29.027-45.603Q-28.945-45.521-28.933-45.396L-28.933-44.173L-27.719-44.173Q-27.594-44.161-27.512-44.079Q-27.430-43.997-27.430-43.868Q-27.430-43.739-27.512-43.653Q-27.594-43.567-27.719-43.556L-28.933-43.556L-28.933-42.341Q-28.945-42.216-29.027-42.130Q-29.109-42.044-29.238-42.044Q-29.367-42.044-29.453-42.130Q-29.539-42.216-29.551-42.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 146.13)\">\u003Cpath d=\"M-22.515-42.833Q-22.515-43.118-22.359-43.372Q-22.203-43.626-21.953-43.800Q-21.703-43.974-21.418-44.060Q-21.656-44.134-21.883-44.276Q-22.109-44.419-22.252-44.628Q-22.394-44.837-22.394-45.083Q-22.394-45.481-22.148-45.776Q-21.902-46.071-21.519-46.230Q-21.137-46.388-20.746-46.388Q-20.355-46.388-19.972-46.230Q-19.590-46.071-19.344-45.773Q-19.097-45.474-19.097-45.083Q-19.097-44.837-19.240-44.630Q-19.383-44.423-19.609-44.278Q-19.836-44.134-20.074-44.060Q-19.621-43.923-19.301-43.597Q-18.980-43.271-18.980-42.833Q-18.980-42.396-19.238-42.052Q-19.496-41.708-19.906-41.524Q-20.316-41.341-20.746-41.341Q-21.176-41.341-21.586-41.523Q-21.996-41.704-22.256-42.048Q-22.515-42.392-22.515-42.833M-21.875-42.833Q-21.875-42.560-21.709-42.345Q-21.543-42.130-21.281-42.015Q-21.019-41.899-20.746-41.899Q-20.472-41.899-20.213-42.015Q-19.953-42.130-19.787-42.347Q-19.621-42.564-19.621-42.833Q-19.621-43.110-19.787-43.327Q-19.953-43.544-20.213-43.661Q-20.472-43.778-20.746-43.778Q-21.019-43.778-21.281-43.661Q-21.543-43.544-21.709-43.329Q-21.875-43.114-21.875-42.833M-21.754-45.083Q-21.754-44.845-21.597-44.677Q-21.441-44.509-21.205-44.425Q-20.969-44.341-20.746-44.341Q-20.527-44.341-20.289-44.425Q-20.051-44.509-19.894-44.679Q-19.738-44.849-19.738-45.083Q-19.738-45.317-19.894-45.487Q-20.051-45.657-20.289-45.741Q-20.527-45.825-20.746-45.825Q-20.969-45.825-21.205-45.741Q-21.441-45.657-21.597-45.489Q-21.754-45.321-21.754-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 146.13)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-46.512-41.380Q-46.976-41.380-47.342-41.630Q-47.707-41.880-47.912-42.284Q-48.117-42.689-48.117-43.146Q-48.117-43.489-47.992-43.810Q-47.867-44.130-47.635-44.380Q-47.402-44.630-47.097-44.769Q-46.793-44.907-46.437-44.907Q-45.926-44.907-45.519-44.587L-45.519-45.747L-45.941-45.747Q-46.152-45.771-46.191-45.985L-46.191-46.075Q-46.152-46.282-45.941-46.306L-45.129-46.306Q-44.929-46.282-44.879-46.075L-44.879-41.978L-44.453-41.978Q-44.246-41.954-44.207-41.747L-44.207-41.657Q-44.246-41.442-44.453-41.419L-45.269-41.419Q-45.469-41.442-45.519-41.657L-45.519-41.786Q-45.715-41.595-45.976-41.487Q-46.238-41.380-46.512-41.380M-46.472-41.939Q-46.113-41.939-45.861-42.208Q-45.609-42.478-45.519-42.853L-45.519-43.685Q-45.578-43.872-45.705-44.023Q-45.832-44.173-46.010-44.261Q-46.187-44.349-46.383-44.349Q-46.691-44.349-46.941-44.179Q-47.191-44.009-47.336-43.724Q-47.480-43.439-47.480-43.138Q-47.480-42.689-47.195-42.314Q-46.910-41.939-46.472-41.939M-43.512-41.657L-43.512-41.747Q-43.461-41.954-43.265-41.978L-42.226-41.978L-42.226-44.306L-43.199-44.306Q-43.398-44.329-43.449-44.548L-43.449-44.634Q-43.398-44.845-43.199-44.868L-41.832-44.868Q-41.637-44.849-41.586-44.634L-41.586-41.978L-40.672-41.978Q-40.476-41.954-40.426-41.747L-40.426-41.657Q-40.476-41.442-40.672-41.419L-43.265-41.419Q-43.461-41.442-43.512-41.657M-42.480-45.845L-42.480-45.899Q-42.480-46.071-42.344-46.192Q-42.207-46.314-42.031-46.314Q-41.859-46.314-41.722-46.192Q-41.586-46.071-41.586-45.899L-41.586-45.845Q-41.586-45.669-41.722-45.548Q-41.859-45.427-42.031-45.427Q-42.207-45.427-42.344-45.548Q-42.480-45.669-42.480-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 146.13)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 146.13)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-12.258-41.341Q-12.898-41.341-13.285-41.718Q-13.672-42.095-13.830-42.667Q-13.988-43.239-13.988-43.868Q-13.988-44.333-13.828-44.788Q-13.668-45.243-13.379-45.603Q-13.090-45.962-12.681-46.175Q-12.273-46.388-11.785-46.388Q-11.512-46.388-11.262-46.290Q-11.012-46.192-10.859-45.997Q-10.707-45.802-10.707-45.509Q-10.707-45.333-10.820-45.212Q-10.933-45.091-11.105-45.091Q-11.281-45.091-11.398-45.204Q-11.515-45.317-11.515-45.489Q-11.515-45.610-11.441-45.731Q-11.551-45.825-11.785-45.825Q-12.203-45.825-12.539-45.585Q-12.875-45.345-13.080-44.958Q-13.285-44.571-13.332-44.173Q-13.094-44.372-12.785-44.480Q-12.476-44.587-12.156-44.587Q-11.816-44.587-11.517-44.462Q-11.219-44.337-11-44.118Q-10.781-43.899-10.656-43.601Q-10.531-43.302-10.531-42.962Q-10.531-42.614-10.670-42.314Q-10.808-42.013-11.049-41.796Q-11.289-41.579-11.603-41.460Q-11.918-41.341-12.258-41.341M-13.242-42.884Q-13.180-42.622-13.051-42.398Q-12.922-42.173-12.722-42.036Q-12.523-41.899-12.258-41.899Q-11.805-41.899-11.488-42.206Q-11.172-42.513-11.172-42.962Q-11.172-43.243-11.306-43.489Q-11.441-43.735-11.678-43.878Q-11.914-44.021-12.211-44.021Q-12.601-44.021-12.933-43.794Q-13.265-43.567-13.265-43.196Q-13.265-43.157-13.250-43.079Q-13.234-43.001-13.234-42.962Q-13.234-42.935-13.236-42.919Q-13.238-42.903-13.242-42.884M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899\" 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 111.657h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 164.625)\">\u003Cpath d=\"M-56.012-41.657L-56.012-41.747Q-55.961-41.954-55.762-41.978L-54.945-41.978L-54.945-45.161Q-55.324-44.853-55.777-44.853Q-56.008-44.853-56.058-45.083L-56.058-45.173Q-56.008-45.388-55.812-45.411Q-55.484-45.411-55.230-45.649Q-54.976-45.888-54.836-46.235Q-54.765-46.364-54.609-46.388L-54.554-46.388Q-54.359-46.368-54.308-46.153L-54.308-41.978L-53.492-41.978Q-53.293-41.954-53.242-41.747L-53.242-41.657Q-53.293-41.442-53.492-41.419L-55.762-41.419Q-55.961-41.442-56.012-41.657M-51.765-41.657L-51.765-41.747Q-51.715-41.954-51.515-41.978L-50.699-41.978L-50.699-45.161Q-51.078-44.853-51.531-44.853Q-51.762-44.853-51.812-45.083L-51.812-45.173Q-51.762-45.388-51.566-45.411Q-51.238-45.411-50.984-45.649Q-50.730-45.888-50.590-46.235Q-50.519-46.364-50.363-46.388L-50.308-46.388Q-50.113-46.368-50.062-46.153L-50.062-41.978L-49.246-41.978Q-49.047-41.954-48.996-41.747L-48.996-41.657Q-49.047-41.442-49.246-41.419L-51.515-41.419Q-51.715-41.442-51.765-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 164.625)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-41.570-42.763L-43.640-42.763Q-43.836-42.786-43.890-43.005L-43.890-43.243Q-43.890-43.317-43.847-43.388L-42-46.259Q-41.914-46.388-41.762-46.388L-41.304-46.388Q-41.195-46.388-41.117-46.310Q-41.039-46.231-41.039-46.122L-41.039-43.321L-40.375-43.321Q-40.179-43.298-40.129-43.091L-40.129-43.005Q-40.179-42.786-40.375-42.763L-41.039-42.763L-41.039-41.978L-40.465-41.978Q-40.258-41.954-40.219-41.747L-40.219-41.657Q-40.258-41.442-40.465-41.419L-42.144-41.419Q-42.351-41.442-42.394-41.657L-42.394-41.747Q-42.351-41.954-42.144-41.978L-41.570-41.978L-41.570-42.763M-41.570-45.915L-43.242-43.321L-41.570-43.321L-41.570-45.915M-39.324-43.146Q-39.324-43.626-39.080-44.040Q-38.836-44.454-38.420-44.692Q-38.004-44.931-37.523-44.931Q-36.969-44.931-36.590-44.821Q-36.211-44.712-36.211-44.306Q-36.211-44.138-36.324-44.015Q-36.437-43.892-36.609-43.892Q-36.781-43.892-36.900-44.007Q-37.019-44.122-37.019-44.290L-37.019-44.349Q-37.179-44.372-37.515-44.372Q-37.844-44.372-38.111-44.202Q-38.379-44.032-38.531-43.749Q-38.683-43.466-38.683-43.146Q-38.683-42.825-38.512-42.544Q-38.340-42.263-38.054-42.101Q-37.769-41.939-37.441-41.939Q-37.129-41.939-37.002-42.042Q-36.875-42.146-36.758-42.335Q-36.640-42.524-36.523-42.540L-36.355-42.540Q-36.250-42.528-36.185-42.460Q-36.121-42.392-36.121-42.290Q-36.121-42.243-36.140-42.204Q-36.250-41.911-36.453-41.731Q-36.656-41.552-36.931-41.466Q-37.207-41.380-37.523-41.380Q-38.008-41.380-38.424-41.618Q-38.840-41.856-39.082-42.259Q-39.324-42.661-39.324-43.146\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 164.07)\">\u003Cpath d=\"M-56.281-41.618L-56.281-42.532Q-56.254-42.739-56.043-42.763L-55.875-42.763Q-55.711-42.739-55.652-42.579Q-55.449-41.939-54.722-41.939Q-54.515-41.939-54.287-41.974Q-54.058-42.009-53.890-42.124Q-53.722-42.239-53.722-42.442Q-53.722-42.653-53.945-42.767Q-54.168-42.880-54.441-42.923L-55.140-43.036Q-56.281-43.247-56.281-43.970Q-56.281-44.259-56.137-44.448Q-55.992-44.638-55.752-44.745Q-55.512-44.853-55.256-44.892Q-55-44.931-54.722-44.931Q-54.472-44.931-54.279-44.901Q-54.086-44.872-53.922-44.794Q-53.844-44.911-53.715-44.931L-53.637-44.931Q-53.539-44.919-53.476-44.856Q-53.414-44.794-53.402-44.700L-53.402-43.993Q-53.414-43.899-53.476-43.833Q-53.539-43.767-53.637-43.755L-53.804-43.755Q-53.898-43.767-53.965-43.833Q-54.031-43.899-54.043-43.993Q-54.043-44.372-54.738-44.372Q-55.086-44.372-55.404-44.290Q-55.722-44.208-55.722-43.962Q-55.722-43.696-55.051-43.587L-54.347-43.466Q-53.863-43.384-53.513-43.136Q-53.164-42.888-53.164-42.442Q-53.164-42.052-53.400-41.810Q-53.637-41.567-53.986-41.474Q-54.336-41.380-54.722-41.380Q-55.301-41.380-55.699-41.634Q-55.769-41.509-55.818-41.452Q-55.867-41.396-55.972-41.380L-56.043-41.380Q-56.258-41.403-56.281-41.618M-51.879-42.274L-51.879-44.306L-52.301-44.306Q-52.508-44.329-52.551-44.548L-52.551-44.634Q-52.504-44.845-52.301-44.868L-51.484-44.868Q-51.289-44.845-51.238-44.634L-51.238-42.306Q-51.238-42.071-51.068-42.005Q-50.898-41.939-50.613-41.939Q-50.406-41.939-50.211-42.015Q-50.015-42.091-49.890-42.241Q-49.765-42.392-49.765-42.603L-49.765-44.306L-50.187-44.306Q-50.398-44.329-50.437-44.548L-50.437-44.634Q-50.398-44.845-50.187-44.868L-49.375-44.868Q-49.176-44.845-49.125-44.634L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-49.515-41.419Q-49.715-41.442-49.765-41.642Q-50.168-41.380-50.676-41.380Q-50.910-41.380-51.125-41.421Q-51.340-41.462-51.506-41.564Q-51.672-41.665-51.775-41.843Q-51.879-42.021-51.879-42.274M-47.633-41.657L-47.633-45.747L-48.054-45.747Q-48.262-45.771-48.304-45.985L-48.304-46.075Q-48.262-46.282-48.054-46.306L-47.238-46.306Q-47.043-46.282-46.992-46.075L-46.992-44.564Q-46.781-44.731-46.517-44.819Q-46.254-44.907-45.984-44.907Q-45.644-44.907-45.347-44.763Q-45.051-44.618-44.836-44.366Q-44.621-44.114-44.506-43.802Q-44.390-43.489-44.390-43.146Q-44.390-42.681-44.617-42.271Q-44.844-41.860-45.230-41.620Q-45.617-41.380-46.086-41.380Q-46.605-41.380-46.992-41.747L-46.992-41.657Q-47.043-41.439-47.238-41.419L-47.383-41.419Q-47.574-41.442-47.633-41.657M-46.129-41.939Q-45.820-41.939-45.570-42.108Q-45.320-42.278-45.176-42.560Q-45.031-42.841-45.031-43.146Q-45.031-43.435-45.156-43.714Q-45.281-43.993-45.513-44.171Q-45.746-44.349-46.047-44.349Q-46.367-44.349-46.629-44.163Q-46.890-43.978-46.992-43.677L-46.992-42.825Q-46.902-42.458-46.681-42.198Q-46.461-41.939-46.129-41.939M-41.816-39.876L-41.816-39.962Q-41.765-40.181-41.570-40.204L-41.105-40.204L-41.105-41.802Q-41.558-41.380-42.168-41.380Q-42.523-41.380-42.828-41.523Q-43.133-41.665-43.365-41.915Q-43.597-42.165-43.722-42.487Q-43.847-42.810-43.847-43.146Q-43.847-43.630-43.609-44.030Q-43.371-44.431-42.965-44.669Q-42.558-44.907-42.082-44.907Q-41.519-44.907-41.105-44.517L-41.105-44.677Q-41.054-44.888-40.855-44.907L-40.715-44.907Q-40.515-44.884-40.465-44.677L-40.465-40.204L-40-40.204Q-39.804-40.181-39.754-39.962L-39.754-39.876Q-39.804-39.665-40-39.642L-41.570-39.642Q-41.765-39.665-41.816-39.876M-42.121-41.939Q-41.750-41.939-41.474-42.192Q-41.199-42.446-41.105-42.810L-41.105-43.427Q-41.148-43.665-41.271-43.878Q-41.394-44.091-41.592-44.220Q-41.789-44.349-42.031-44.349Q-42.347-44.349-42.619-44.183Q-42.890-44.017-43.049-43.735Q-43.207-43.454-43.207-43.138Q-43.207-42.673-42.892-42.306Q-42.578-41.939-42.121-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 164.07)\">\u003Cpath d=\"M-34.937-41.060Q-34.937-41.114-34.914-41.181L-32.648-46.786Q-32.554-46.970-32.359-46.970Q-32.234-46.970-32.146-46.882Q-32.058-46.794-32.058-46.665Q-32.058-46.606-32.082-46.548L-34.344-40.939Q-34.445-40.755-34.625-40.755Q-34.750-40.755-34.844-40.845Q-34.937-40.935-34.937-41.060M-32.359-40.755Q-32.711-40.755-32.892-41.095Q-33.074-41.435-33.074-41.817Q-33.074-42.204-32.894-42.544Q-32.715-42.884-32.359-42.884Q-32.121-42.884-31.963-42.714Q-31.804-42.544-31.730-42.300Q-31.656-42.056-31.656-41.817Q-31.656-41.583-31.730-41.339Q-31.804-41.095-31.963-40.925Q-32.121-40.755-32.359-40.755M-32.359-41.314Q-32.277-41.345-32.230-41.513Q-32.183-41.681-32.183-41.817Q-32.183-41.954-32.230-42.124Q-32.277-42.294-32.359-42.321Q-32.445-42.294-32.496-42.126Q-32.547-41.958-32.547-41.817Q-32.547-41.689-32.496-41.517Q-32.445-41.345-32.359-41.314M-34.625-44.833Q-34.867-44.833-35.027-45.003Q-35.187-45.173-35.262-45.419Q-35.336-45.665-35.336-45.907Q-35.336-46.290-35.156-46.630Q-34.976-46.970-34.625-46.970Q-34.387-46.970-34.228-46.800Q-34.070-46.630-33.996-46.386Q-33.922-46.142-33.922-45.907Q-33.922-45.665-33.996-45.419Q-34.070-45.173-34.228-45.003Q-34.387-44.833-34.625-44.833M-34.625-45.396Q-34.535-45.439-34.492-45.595Q-34.449-45.751-34.449-45.907Q-34.449-46.036-34.496-46.212Q-34.543-46.388-34.633-46.411Q-34.648-46.411-34.678-46.376Q-34.707-46.341-34.715-46.321Q-34.808-46.134-34.808-45.907Q-34.808-45.771-34.760-45.599Q-34.711-45.427-34.625-45.396M-31.148-41.657L-31.148-41.747Q-31.090-41.954-30.898-41.978L-30.187-41.978L-30.187-44.306L-30.898-44.306Q-31.094-44.329-31.148-44.548L-31.148-44.634Q-31.090-44.845-30.898-44.868L-29.797-44.868Q-29.597-44.849-29.547-44.634L-29.547-44.306Q-29.285-44.591-28.929-44.749Q-28.574-44.907-28.187-44.907Q-27.894-44.907-27.660-44.773Q-27.426-44.638-27.426-44.372Q-27.426-44.204-27.535-44.087Q-27.644-43.970-27.812-43.970Q-27.965-43.970-28.080-44.081Q-28.195-44.192-28.195-44.349Q-28.570-44.349-28.885-44.148Q-29.199-43.946-29.373-43.612Q-29.547-43.278-29.547-42.899L-29.547-41.978L-28.601-41.978Q-28.394-41.954-28.355-41.747L-28.355-41.657Q-28.394-41.442-28.601-41.419L-30.898-41.419Q-31.090-41.442-31.148-41.657M-26.558-42.220Q-26.558-42.396-26.443-42.519Q-26.328-42.642-26.148-42.642Q-25.980-42.642-25.865-42.526Q-25.750-42.411-25.750-42.235Q-25.750-42.114-25.812-42.013Q-25.664-41.899-25.355-41.899Q-25.051-41.899-24.797-42.050Q-24.543-42.200-24.361-42.446Q-24.179-42.692-24.072-42.985Q-23.965-43.278-23.933-43.556Q-24.172-43.356-24.480-43.251Q-24.789-43.146-25.109-43.146Q-25.554-43.146-25.928-43.362Q-26.301-43.579-26.517-43.948Q-26.734-44.317-26.734-44.763Q-26.734-45.235-26.488-45.606Q-26.242-45.978-25.836-46.183Q-25.429-46.388-24.957-46.388Q-24.472-46.388-24.140-46.159Q-23.808-45.931-23.621-45.558Q-23.433-45.185-23.355-44.755Q-23.277-44.325-23.277-43.868Q-23.277-43.259-23.531-42.671Q-23.785-42.083-24.262-41.712Q-24.738-41.341-25.355-41.341Q-25.851-41.341-26.205-41.550Q-26.558-41.759-26.558-42.220M-25.054-43.708Q-24.668-43.708-24.332-43.937Q-23.996-44.165-23.996-44.532Q-23.996-44.571-24.012-44.649Q-24.027-44.728-24.027-44.763Q-24.027-44.774-24.019-44.806Q-24.012-44.837-24.012-44.845Q-24.074-45.095-24.193-45.315Q-24.312-45.536-24.506-45.681Q-24.699-45.825-24.957-45.825Q-25.429-45.825-25.762-45.524Q-26.094-45.224-26.094-44.763Q-26.094-44.481-25.957-44.235Q-25.820-43.989-25.582-43.849Q-25.344-43.708-25.054-43.708M-21.160-40.306Q-21.273-40.306-21.363-40.396Q-21.453-40.485-21.453-40.595Q-21.453-40.771-21.262-40.845Q-21.043-40.896-20.871-41.054Q-20.699-41.212-20.633-41.435Q-20.656-41.435-20.687-41.419L-20.750-41.419Q-20.980-41.419-21.146-41.581Q-21.312-41.743-21.312-41.978Q-21.312-42.212-21.148-42.372Q-20.984-42.532-20.750-42.532Q-20.539-42.532-20.375-42.411Q-20.211-42.290-20.121-42.097Q-20.031-41.903-20.031-41.692Q-20.031-41.216-20.330-40.827Q-20.629-40.439-21.094-40.314Q-21.117-40.306-21.160-40.306M-17.953-41.060Q-17.953-41.114-17.929-41.181L-15.664-46.786Q-15.570-46.970-15.375-46.970Q-15.250-46.970-15.162-46.882Q-15.074-46.794-15.074-46.665Q-15.074-46.606-15.097-46.548L-17.359-40.939Q-17.461-40.755-17.640-40.755Q-17.765-40.755-17.859-40.845Q-17.953-40.935-17.953-41.060M-15.375-40.755Q-15.726-40.755-15.908-41.095Q-16.090-41.435-16.090-41.817Q-16.090-42.204-15.910-42.544Q-15.730-42.884-15.375-42.884Q-15.137-42.884-14.978-42.714Q-14.820-42.544-14.746-42.300Q-14.672-42.056-14.672-41.817Q-14.672-41.583-14.746-41.339Q-14.820-41.095-14.978-40.925Q-15.137-40.755-15.375-40.755M-15.375-41.314Q-15.293-41.345-15.246-41.513Q-15.199-41.681-15.199-41.817Q-15.199-41.954-15.246-42.124Q-15.293-42.294-15.375-42.321Q-15.461-42.294-15.512-42.126Q-15.562-41.958-15.562-41.817Q-15.562-41.689-15.512-41.517Q-15.461-41.345-15.375-41.314M-17.640-44.833Q-17.883-44.833-18.043-45.003Q-18.203-45.173-18.277-45.419Q-18.351-45.665-18.351-45.907Q-18.351-46.290-18.172-46.630Q-17.992-46.970-17.640-46.970Q-17.402-46.970-17.244-46.800Q-17.086-46.630-17.012-46.386Q-16.937-46.142-16.937-45.907Q-16.937-45.665-17.012-45.419Q-17.086-45.173-17.244-45.003Q-17.402-44.833-17.640-44.833M-17.640-45.396Q-17.551-45.439-17.508-45.595Q-17.465-45.751-17.465-45.907Q-17.465-46.036-17.512-46.212Q-17.558-46.388-17.648-46.411Q-17.664-46.411-17.693-46.376Q-17.722-46.341-17.730-46.321Q-17.824-46.134-17.824-45.907Q-17.824-45.771-17.775-45.599Q-17.726-45.427-17.640-45.396M-14.164-41.657L-14.164-41.747Q-14.105-41.954-13.914-41.978L-13.203-41.978L-13.203-44.306L-13.914-44.306Q-14.109-44.329-14.164-44.548L-14.164-44.634Q-14.105-44.845-13.914-44.868L-12.812-44.868Q-12.613-44.849-12.562-44.634L-12.562-44.306Q-12.301-44.591-11.945-44.749Q-11.590-44.907-11.203-44.907Q-10.910-44.907-10.676-44.773Q-10.441-44.638-10.441-44.372Q-10.441-44.204-10.551-44.087Q-10.660-43.970-10.828-43.970Q-10.980-43.970-11.096-44.081Q-11.211-44.192-11.211-44.349Q-11.586-44.349-11.900-44.148Q-12.215-43.946-12.388-43.612Q-12.562-43.278-12.562-42.899L-12.562-41.978L-11.617-41.978Q-11.410-41.954-11.371-41.747L-11.371-41.657Q-11.410-41.442-11.617-41.419L-13.914-41.419Q-14.105-41.442-14.164-41.657M-9.554-41.618L-9.554-42.532Q-9.527-42.739-9.316-42.763L-9.148-42.763Q-8.984-42.739-8.926-42.579Q-8.722-41.939-7.996-41.939Q-7.789-41.939-7.560-41.974Q-7.332-42.009-7.164-42.124Q-6.996-42.239-6.996-42.442Q-6.996-42.653-7.219-42.767Q-7.441-42.880-7.715-42.923L-8.414-43.036Q-9.554-43.247-9.554-43.970Q-9.554-44.259-9.410-44.448Q-9.265-44.638-9.025-44.745Q-8.785-44.853-8.529-44.892Q-8.273-44.931-7.996-44.931Q-7.746-44.931-7.553-44.901Q-7.359-44.872-7.195-44.794Q-7.117-44.911-6.988-44.931L-6.910-44.931Q-6.812-44.919-6.750-44.856Q-6.687-44.794-6.676-44.700L-6.676-43.993Q-6.687-43.899-6.750-43.833Q-6.812-43.767-6.910-43.755L-7.078-43.755Q-7.172-43.767-7.238-43.833Q-7.304-43.899-7.316-43.993Q-7.316-44.372-8.012-44.372Q-8.359-44.372-8.678-44.290Q-8.996-44.208-8.996-43.962Q-8.996-43.696-8.324-43.587L-7.621-43.466Q-7.137-43.384-6.787-43.136Q-6.437-42.888-6.437-42.442Q-6.437-42.052-6.674-41.810Q-6.910-41.567-7.260-41.474Q-7.609-41.380-7.996-41.380Q-8.574-41.380-8.972-41.634Q-9.043-41.509-9.092-41.452Q-9.140-41.396-9.246-41.380L-9.316-41.380Q-9.531-41.403-9.554-41.618M-5.277-41.657L-5.277-41.747Q-5.226-41.954-5.031-41.978L-3.992-41.978L-3.992-44.306L-4.965-44.306Q-5.164-44.329-5.215-44.548L-5.215-44.634Q-5.164-44.845-4.965-44.868L-3.597-44.868Q-3.402-44.849-3.351-44.634L-3.351-41.978L-2.437-41.978Q-2.242-41.954-2.191-41.747L-2.191-41.657Q-2.242-41.442-2.437-41.419L-5.031-41.419Q-5.226-41.442-5.277-41.657M-4.246-45.845L-4.246-45.899Q-4.246-46.071-4.109-46.192Q-3.972-46.314-3.797-46.314Q-3.625-46.314-3.488-46.192Q-3.351-46.071-3.351-45.899L-3.351-45.845Q-3.351-45.669-3.488-45.548Q-3.625-45.427-3.797-45.427Q-3.972-45.427-4.109-45.548Q-4.246-45.669-4.246-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 163.736)\">\u003Cpath d=\"M-54.308-42.763L-56.379-42.763Q-56.574-42.786-56.629-43.005L-56.629-43.243Q-56.629-43.317-56.586-43.388L-54.738-46.259Q-54.652-46.388-54.500-46.388L-54.043-46.388Q-53.933-46.388-53.855-46.310Q-53.777-46.231-53.777-46.122L-53.777-43.321L-53.113-43.321Q-52.918-43.298-52.867-43.091L-52.867-43.005Q-52.918-42.786-53.113-42.763L-53.777-42.763L-53.777-41.978L-53.203-41.978Q-52.996-41.954-52.957-41.747L-52.957-41.657Q-52.996-41.442-53.203-41.419L-54.883-41.419Q-55.090-41.442-55.133-41.657L-55.133-41.747Q-55.090-41.954-54.883-41.978L-54.308-41.978L-54.308-42.763M-54.308-45.915L-55.980-43.321L-54.308-43.321\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 163.736)\">\u003Cpath d=\"M-44.871-43.556L-47.613-43.556Q-47.738-43.567-47.824-43.653Q-47.910-43.739-47.910-43.868Q-47.910-43.997-47.824-44.079Q-47.738-44.161-47.613-44.173L-44.871-44.173Q-44.746-44.161-44.664-44.079Q-44.582-43.997-44.582-43.868Q-44.582-43.739-44.664-43.653Q-44.746-43.567-44.871-43.556\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 163.736)\">\u003Cpath d=\"M-39.012-41.657L-39.012-41.747Q-38.961-41.954-38.762-41.978L-37.945-41.978L-37.945-45.161Q-38.324-44.853-38.777-44.853Q-39.008-44.853-39.058-45.083L-39.058-45.173Q-39.008-45.388-38.812-45.411Q-38.484-45.411-38.230-45.649Q-37.976-45.888-37.836-46.235Q-37.765-46.364-37.609-46.388L-37.554-46.388Q-37.359-46.368-37.308-46.153L-37.308-41.978L-36.492-41.978Q-36.293-41.954-36.242-41.747L-36.242-41.657Q-36.293-41.442-36.492-41.419L-38.762-41.419Q-38.961-41.442-39.012-41.657M-33.902-40.306Q-34.015-40.306-34.105-40.396Q-34.195-40.485-34.195-40.595Q-34.195-40.771-34.004-40.845Q-33.785-40.896-33.613-41.054Q-33.441-41.212-33.375-41.435Q-33.398-41.435-33.429-41.419L-33.492-41.419Q-33.722-41.419-33.888-41.581Q-34.054-41.743-34.054-41.978Q-34.054-42.212-33.890-42.372Q-33.726-42.532-33.492-42.532Q-33.281-42.532-33.117-42.411Q-32.953-42.290-32.863-42.097Q-32.773-41.903-32.773-41.692Q-32.773-41.216-33.072-40.827Q-33.371-40.439-33.836-40.314Q-33.859-40.306-33.902-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 163.736)\">\u003Cpath d=\"M-26.797-41.657L-26.797-41.747Q-26.746-41.954-26.551-41.978L-25.668-41.978L-25.668-44.306L-26.523-44.306Q-26.722-44.329-26.773-44.548L-26.773-44.634Q-26.722-44.845-26.523-44.868L-25.668-44.868L-25.668-45.321Q-25.668-45.786-25.262-46.067Q-24.855-46.349-24.375-46.349Q-24.062-46.349-23.818-46.228Q-23.574-46.106-23.574-45.825Q-23.574-45.661-23.683-45.544Q-23.793-45.427-23.957-45.427Q-24.105-45.427-24.226-45.532Q-24.347-45.638-24.347-45.786L-24.430-45.786Q-24.582-45.786-24.719-45.726Q-24.855-45.665-24.941-45.550Q-25.027-45.435-25.027-45.290L-25.027-44.868L-23.996-44.868Q-23.801-44.849-23.750-44.634L-23.750-44.548Q-23.801-44.329-23.996-44.306L-25.027-44.306L-25.027-41.978L-24.148-41.978Q-23.953-41.954-23.902-41.747L-23.902-41.657Q-23.953-41.442-24.148-41.419L-26.551-41.419Q-26.746-41.442-26.797-41.657M-22.422-41.657L-22.422-41.747Q-22.371-41.954-22.176-41.978L-21.070-41.978L-21.070-45.747L-22.176-45.747Q-22.371-45.771-22.422-45.985L-22.422-46.075Q-22.371-46.282-22.176-46.306L-20.680-46.306Q-20.488-46.282-20.430-46.075L-20.430-41.978L-19.328-41.978Q-19.129-41.954-19.078-41.747L-19.078-41.657Q-19.129-41.442-19.328-41.419L-22.176-41.419Q-22.371-41.442-22.422-41.657M-18.219-42.532Q-18.219-42.978-17.805-43.235Q-17.390-43.493-16.849-43.593Q-16.308-43.692-15.801-43.700Q-15.801-43.915-15.935-44.067Q-16.070-44.220-16.277-44.296Q-16.484-44.372-16.695-44.372Q-17.039-44.372-17.199-44.349L-17.199-44.290Q-17.199-44.122-17.318-44.007Q-17.437-43.892-17.601-43.892Q-17.777-43.892-17.892-44.015Q-18.008-44.138-18.008-44.306Q-18.008-44.712-17.627-44.821Q-17.246-44.931-16.687-44.931Q-16.418-44.931-16.150-44.853Q-15.883-44.774-15.658-44.624Q-15.433-44.474-15.297-44.253Q-15.160-44.032-15.160-43.755L-15.160-42.036Q-15.160-41.978-14.633-41.978Q-14.437-41.958-14.387-41.747L-14.387-41.657Q-14.437-41.442-14.633-41.419L-14.777-41.419Q-15.121-41.419-15.349-41.466Q-15.578-41.513-15.722-41.700Q-16.183-41.380-16.890-41.380Q-17.226-41.380-17.531-41.521Q-17.836-41.661-18.027-41.923Q-18.219-42.185-18.219-42.532M-17.578-42.524Q-17.578-42.251-17.336-42.095Q-17.094-41.939-16.808-41.939Q-16.590-41.939-16.357-41.997Q-16.125-42.056-15.963-42.194Q-15.801-42.333-15.801-42.556L-15.801-43.146Q-16.082-43.146-16.498-43.089Q-16.914-43.032-17.246-42.894Q-17.578-42.755-17.578-42.524M-14.140-40.771Q-14.140-41.071-13.992-41.333Q-13.844-41.595-13.594-41.755Q-13.777-42.009-13.777-42.329Q-13.777-42.614-13.625-42.876Q-13.875-43.200-13.875-43.618Q-13.875-43.978-13.683-44.274Q-13.492-44.571-13.174-44.739Q-12.855-44.907-12.492-44.907Q-12.285-44.907-12.082-44.847Q-11.879-44.786-11.715-44.685Q-11.332-44.946-10.859-44.946Q-10.621-44.946-10.439-44.815Q-10.258-44.685-10.258-44.458Q-10.258-44.310-10.359-44.204Q-10.461-44.099-10.617-44.099Q-10.750-44.099-10.846-44.177Q-10.941-44.255-10.972-44.380Q-11.117-44.372-11.316-44.282Q-11.113-43.970-11.113-43.618Q-11.113-43.337-11.224-43.105Q-11.336-42.872-11.531-42.694Q-11.726-42.517-11.978-42.419Q-12.230-42.321-12.492-42.321Q-12.879-42.321-13.211-42.509Q-13.222-42.509-13.232-42.437Q-13.242-42.364-13.242-42.329Q-13.242-42.208-13.176-42.101Q-13.109-41.993-12.988-41.954Q-12.972-41.958-12.959-41.960Q-12.945-41.962-12.922-41.962Q-12.906-41.962-12.875-41.954Q-12.844-41.946-12.836-41.946L-12.242-41.946Q-11.461-41.946-10.920-41.704Q-10.379-41.462-10.379-40.771Q-10.379-40.470-10.558-40.243Q-10.738-40.017-11.035-39.872Q-11.332-39.728-11.652-39.661Q-11.972-39.595-12.258-39.595Q-12.648-39.595-13.090-39.718Q-13.531-39.841-13.836-40.108Q-14.140-40.376-14.140-40.771M-13.601-40.778Q-13.601-40.560-13.361-40.419Q-13.121-40.278-12.797-40.212Q-12.472-40.146-12.258-40.146Q-12.043-40.146-11.719-40.212Q-11.394-40.278-11.154-40.419Q-10.914-40.560-10.914-40.778Q-10.914-41.067-11.138-41.206Q-11.363-41.345-11.644-41.378Q-11.926-41.411-12.273-41.411L-12.890-41.411Q-13.074-41.411-13.236-41.331Q-13.398-41.251-13.500-41.105Q-13.601-40.958-13.601-40.778M-12.492-42.876Q-12.191-42.876-11.972-43.095Q-11.754-43.314-11.754-43.618Q-11.754-43.774-11.808-43.905Q-11.863-44.036-11.969-44.142Q-12.074-44.247-12.205-44.302Q-12.336-44.356-12.492-44.356Q-12.797-44.356-13.015-44.138Q-13.234-43.919-13.234-43.618Q-13.234-43.321-13.012-43.099Q-12.789-42.876-12.492-42.876M-9.547-41.618L-9.547-42.532Q-9.519-42.739-9.308-42.763L-9.140-42.763Q-8.976-42.739-8.918-42.579Q-8.715-41.939-7.988-41.939Q-7.781-41.939-7.553-41.974Q-7.324-42.009-7.156-42.124Q-6.988-42.239-6.988-42.442Q-6.988-42.653-7.211-42.767Q-7.433-42.880-7.707-42.923L-8.406-43.036Q-9.547-43.247-9.547-43.970Q-9.547-44.259-9.402-44.448Q-9.258-44.638-9.017-44.745Q-8.777-44.853-8.521-44.892Q-8.265-44.931-7.988-44.931Q-7.738-44.931-7.545-44.901Q-7.351-44.872-7.187-44.794Q-7.109-44.911-6.980-44.931L-6.902-44.931Q-6.805-44.919-6.742-44.856Q-6.680-44.794-6.668-44.700L-6.668-43.993Q-6.680-43.899-6.742-43.833Q-6.805-43.767-6.902-43.755L-7.070-43.755Q-7.164-43.767-7.230-43.833Q-7.297-43.899-7.308-43.993Q-7.308-44.372-8.004-44.372Q-8.351-44.372-8.670-44.290Q-8.988-44.208-8.988-43.962Q-8.988-43.696-8.316-43.587L-7.613-43.466Q-7.129-43.384-6.779-43.136Q-6.430-42.888-6.430-42.442Q-6.430-42.052-6.666-41.810Q-6.902-41.567-7.252-41.474Q-7.601-41.380-7.988-41.380Q-8.566-41.380-8.965-41.634Q-9.035-41.509-9.084-41.452Q-9.133-41.396-9.238-41.380L-9.308-41.380Q-9.523-41.403-9.547-41.618\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 163.736)\">\u003Cpath d=\"M-1.031-41.618L-1.031-42.532Q-1.004-42.739-0.793-42.763L-0.625-42.763Q-0.461-42.739-0.402-42.579Q-0.199-41.939 0.528-41.939Q0.735-41.939 0.963-41.974Q1.192-42.009 1.360-42.124Q1.528-42.239 1.528-42.442Q1.528-42.653 1.305-42.767Q1.082-42.880 0.809-42.923L0.110-43.036Q-1.031-43.247-1.031-43.970Q-1.031-44.259-0.887-44.448Q-0.742-44.638-0.502-44.745Q-0.262-44.853-0.006-44.892Q0.250-44.931 0.528-44.931Q0.778-44.931 0.971-44.901Q1.164-44.872 1.328-44.794Q1.406-44.911 1.535-44.931L1.613-44.931Q1.711-44.919 1.774-44.856Q1.836-44.794 1.848-44.700L1.848-43.993Q1.836-43.899 1.774-43.833Q1.711-43.767 1.613-43.755L1.446-43.755Q1.352-43.767 1.285-43.833Q1.219-43.899 1.207-43.993Q1.207-44.372 0.512-44.372Q0.164-44.372-0.154-44.290Q-0.472-44.208-0.472-43.962Q-0.472-43.696 0.199-43.587L0.903-43.466Q1.387-43.384 1.737-43.136Q2.086-42.888 2.086-42.442Q2.086-42.052 1.850-41.810Q1.613-41.567 1.264-41.474Q0.914-41.380 0.528-41.380Q-0.051-41.380-0.449-41.634Q-0.519-41.509-0.568-41.452Q-0.617-41.396-0.722-41.380L-0.793-41.380Q-1.008-41.403-1.031-41.618M6.141-42.907L3.699-42.907Q3.754-42.630 3.951-42.407Q4.149-42.185 4.426-42.062Q4.703-41.939 4.988-41.939Q5.461-41.939 5.684-42.228Q5.692-42.239 5.748-42.345Q5.805-42.450 5.854-42.493Q5.903-42.536 5.996-42.548L6.141-42.548Q6.332-42.528 6.391-42.314L6.391-42.259Q6.324-41.958 6.094-41.761Q5.863-41.564 5.551-41.472Q5.238-41.380 4.934-41.380Q4.449-41.380 4.010-41.608Q3.571-41.837 3.303-42.237Q3.035-42.638 3.035-43.130L3.035-43.189Q3.035-43.657 3.281-44.060Q3.528-44.462 3.936-44.696Q4.344-44.931 4.813-44.931Q5.317-44.931 5.670-44.708Q6.024-44.485 6.207-44.097Q6.391-43.708 6.391-43.204L6.391-43.146Q6.332-42.931 6.141-42.907M3.707-43.458L5.735-43.458Q5.688-43.868 5.449-44.120Q5.211-44.372 4.813-44.372Q4.418-44.372 4.112-44.110Q3.805-43.849 3.707-43.458M8.074-42.524L8.074-44.306L7.324-44.306Q7.125-44.329 7.074-44.548L7.074-44.634Q7.125-44.845 7.324-44.868L8.074-44.868L8.074-45.618Q8.125-45.825 8.324-45.853L8.469-45.853Q8.664-45.825 8.715-45.618L8.715-44.868L10.074-44.868Q10.266-44.849 10.324-44.634L10.324-44.548Q10.270-44.329 10.074-44.306L8.715-44.306L8.715-42.556Q8.715-41.939 9.289-41.939Q9.539-41.939 9.703-42.124Q9.867-42.310 9.867-42.556Q9.867-42.649 9.940-42.720Q10.012-42.790 10.113-42.802L10.258-42.802Q10.457-42.778 10.508-42.571L10.508-42.524Q10.508-42.200 10.324-41.937Q10.141-41.673 9.848-41.526Q9.555-41.380 9.235-41.380Q8.723-41.380 8.399-41.690Q8.074-42.001 8.074-42.524\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-43.512-41.657L-43.512-41.747Q-43.461-41.954-43.265-41.978L-42.226-41.978L-42.226-44.306L-43.199-44.306Q-43.398-44.329-43.449-44.548L-43.449-44.634Q-43.398-44.845-43.199-44.868L-41.832-44.868Q-41.637-44.849-41.586-44.634L-41.586-41.978L-40.672-41.978Q-40.476-41.954-40.426-41.747L-40.426-41.657Q-40.476-41.442-40.672-41.419L-43.265-41.419Q-43.461-41.442-43.512-41.657M-42.480-45.845L-42.480-45.899Q-42.480-46.071-42.344-46.192Q-42.207-46.314-42.031-46.314Q-41.859-46.314-41.722-46.192Q-41.586-46.071-41.586-45.899L-41.586-45.845Q-41.586-45.669-41.722-45.548Q-41.859-45.427-42.031-45.427Q-42.207-45.427-42.344-45.548Q-42.480-45.669-42.480-45.845\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M-26.765-42.466Q-26.765-42.642-26.648-42.763Q-26.531-42.884-26.355-42.884Q-26.273-42.884-26.197-42.853Q-26.121-42.821-26.070-42.771Q-26.019-42.720-25.988-42.640Q-25.957-42.560-25.957-42.481Q-25.957-42.349-26.039-42.235Q-25.769-41.899-24.980-41.899Q-24.555-41.899-24.213-42.165Q-23.871-42.431-23.871-42.845Q-23.871-43.118-24.037-43.337Q-24.203-43.556-24.463-43.667Q-24.722-43.778-24.996-43.778L-25.461-43.778Q-25.672-43.802-25.703-44.021L-25.703-44.106Q-25.672-44.310-25.461-44.341L-24.933-44.380Q-24.719-44.380-24.527-44.503Q-24.336-44.626-24.222-44.829Q-24.109-45.032-24.109-45.243Q-24.109-45.517-24.392-45.671Q-24.676-45.825-24.980-45.825Q-25.543-45.825-25.781-45.634Q-25.719-45.521-25.719-45.411Q-25.719-45.239-25.832-45.126Q-25.945-45.013-26.117-45.013Q-26.293-45.013-26.408-45.136Q-26.523-45.259-26.523-45.427Q-26.523-45.954-26.051-46.171Q-25.578-46.388-24.980-46.388Q-24.640-46.388-24.285-46.257Q-23.930-46.126-23.699-45.868Q-23.469-45.610-23.469-45.243Q-23.469-44.899-23.637-44.595Q-23.805-44.290-24.101-44.091Q-23.730-43.911-23.480-43.575Q-23.230-43.239-23.230-42.845Q-23.230-42.399-23.484-42.058Q-23.738-41.716-24.140-41.528Q-24.543-41.341-24.980-41.341Q-25.265-41.341-25.570-41.396Q-25.875-41.450-26.150-41.577Q-26.426-41.704-26.596-41.927Q-26.765-42.149-26.765-42.466M-21.152-40.306Q-21.265-40.306-21.355-40.396Q-21.445-40.485-21.445-40.595Q-21.445-40.771-21.254-40.845Q-21.035-40.896-20.863-41.054Q-20.691-41.212-20.625-41.435Q-20.648-41.435-20.680-41.419L-20.742-41.419Q-20.972-41.419-21.138-41.581Q-21.305-41.743-21.305-41.978Q-21.305-42.212-21.140-42.372Q-20.976-42.532-20.742-42.532Q-20.531-42.532-20.367-42.411Q-20.203-42.290-20.113-42.097Q-20.023-41.903-20.023-41.692Q-20.023-41.216-20.322-40.827Q-20.621-40.439-21.086-40.314Q-21.109-40.306-21.152-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M-10.719-41.419L-13.719-41.419Q-13.820-41.419-13.902-41.501Q-13.984-41.583-13.984-41.685L-13.984-41.794Q-13.984-41.880-13.933-41.946L-11.336-45.747L-13.246-45.747L-13.246-45.235Q-13.293-45.021-13.496-44.993L-13.640-44.993Q-13.836-45.021-13.887-45.235L-13.887-46.075Q-13.836-46.282-13.640-46.306L-10.773-46.306Q-10.660-46.306-10.586-46.228Q-10.512-46.149-10.512-46.044L-10.512-45.931Q-10.512-45.849-10.558-45.778L-13.160-41.978L-11.109-41.978L-11.109-42.649Q-11.058-42.860-10.863-42.884L-10.719-42.884Q-10.523-42.864-10.472-42.649L-10.472-41.657Q-10.523-41.442-10.719-41.419M-9.914-41.657L-9.914-41.747Q-9.875-41.954-9.664-41.978L-9.328-41.978L-9.328-45.747L-9.664-45.747Q-9.875-45.771-9.914-45.985L-9.914-46.075Q-9.875-46.282-9.664-46.306L-6.410-46.306Q-6.211-46.282-6.160-46.075L-6.160-45.235Q-6.207-45.021-6.410-44.993L-6.555-44.993Q-6.750-45.021-6.801-45.235L-6.801-45.747L-8.687-45.747L-8.687-44.146L-7.680-44.146L-7.680-44.364Q-7.629-44.571-7.433-44.595L-7.289-44.595Q-7.094-44.575-7.043-44.364L-7.043-43.380Q-7.094-43.161-7.289-43.138L-7.433-43.138Q-7.629-43.157-7.680-43.380L-7.680-43.587L-8.687-43.587L-8.687-41.978L-8.199-41.978Q-8.004-41.954-7.953-41.747L-7.953-41.657Q-8.004-41.442-8.199-41.419L-9.664-41.419Q-9.875-41.442-9.914-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M2.031-42.954L-1.015-42.954Q-1.137-42.966-1.224-43.050Q-1.312-43.134-1.312-43.259Q-1.312-43.384-1.228-43.468Q-1.144-43.552-1.015-43.571L2.031-43.571Q2.156-43.552 2.238-43.468Q2.321-43.384 2.321-43.259Q2.321-43.134 2.237-43.050Q2.153-42.966 2.031-42.954M2.031-44.161L-1.015-44.161Q-1.148-44.181-1.230-44.259Q-1.312-44.337-1.312-44.466Q-1.312-44.591-1.228-44.675Q-1.144-44.759-1.015-44.778L2.031-44.778Q2.156-44.759 2.238-44.675Q2.321-44.591 2.321-44.466Q2.321-44.337 2.240-44.259Q2.160-44.181 2.031-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 164.403)\">\u003Cpath d=\"M9.004-41.341Q8.570-41.341 8.238-41.579Q7.906-41.817 7.686-42.206Q7.465-42.595 7.358-43.032Q7.250-43.470 7.250-43.868Q7.250-44.259 7.360-44.702Q7.469-45.146 7.686-45.526Q7.903-45.907 8.237-46.148Q8.570-46.388 9.004-46.388Q9.559-46.388 9.959-45.989Q10.360-45.591 10.557-45.005Q10.754-44.419 10.754-43.868Q10.754-43.314 10.557-42.726Q10.360-42.138 9.959-41.739Q9.559-41.341 9.004-41.341M9.004-41.899Q9.305-41.899 9.522-42.116Q9.738-42.333 9.865-42.661Q9.992-42.989 10.053-43.335Q10.113-43.681 10.113-43.962Q10.113-44.212 10.051-44.538Q9.988-44.864 9.858-45.155Q9.727-45.446 9.514-45.636Q9.301-45.825 9.004-45.825Q8.629-45.825 8.377-45.513Q8.125-45.200 8.008-44.767Q7.891-44.333 7.891-43.962Q7.891-43.564 8.004-43.083Q8.117-42.603 8.365-42.251Q8.613-41.899 9.004-41.899\" 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 130.151h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 183.12)\">\u003Cpath d=\"M-56.012-41.657L-56.012-41.747Q-55.961-41.954-55.762-41.978L-54.945-41.978L-54.945-45.161Q-55.324-44.853-55.777-44.853Q-56.008-44.853-56.058-45.083L-56.058-45.173Q-56.008-45.388-55.812-45.411Q-55.484-45.411-55.230-45.649Q-54.976-45.888-54.836-46.235Q-54.765-46.364-54.609-46.388L-54.554-46.388Q-54.359-46.368-54.308-46.153L-54.308-41.978L-53.492-41.978Q-53.293-41.954-53.242-41.747L-53.242-41.657Q-53.293-41.442-53.492-41.419L-55.762-41.419Q-55.961-41.442-56.012-41.657M-52.195-41.657L-52.195-41.731Q-52.164-41.899-52.062-41.946L-50.773-43.013Q-50.441-43.290-50.260-43.442Q-50.078-43.595-49.883-43.815Q-49.687-44.036-49.566-44.286Q-49.445-44.536-49.445-44.802Q-49.445-45.126-49.621-45.360Q-49.797-45.595-50.076-45.710Q-50.355-45.825-50.676-45.825Q-50.933-45.825-51.162-45.702Q-51.390-45.579-51.492-45.364Q-51.390-45.231-51.390-45.083Q-51.390-44.923-51.510-44.800Q-51.629-44.677-51.789-44.677Q-51.965-44.677-52.080-44.802Q-52.195-44.927-52.195-45.099Q-52.195-45.392-52.060-45.634Q-51.926-45.876-51.687-46.048Q-51.449-46.220-51.181-46.304Q-50.914-46.388-50.621-46.388Q-50.140-46.388-49.724-46.198Q-49.308-46.009-49.056-45.648Q-48.804-45.286-48.804-44.802Q-48.804-44.458-48.937-44.155Q-49.070-43.853-49.295-43.593Q-49.519-43.333-49.828-43.071Q-50.137-42.810-50.347-42.634L-51.156-41.978L-49.445-41.978L-49.445-42.122Q-49.394-42.333-49.195-42.356L-49.054-42.356Q-48.855-42.337-48.804-42.122L-48.804-41.657Q-48.855-41.442-49.054-41.419L-51.949-41.419Q-52.144-41.439-52.195-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 183.12)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-41.570-42.763L-43.640-42.763Q-43.836-42.786-43.890-43.005L-43.890-43.243Q-43.890-43.317-43.847-43.388L-42-46.259Q-41.914-46.388-41.762-46.388L-41.304-46.388Q-41.195-46.388-41.117-46.310Q-41.039-46.231-41.039-46.122L-41.039-43.321L-40.375-43.321Q-40.179-43.298-40.129-43.091L-40.129-43.005Q-40.179-42.786-40.375-42.763L-41.039-42.763L-41.039-41.978L-40.465-41.978Q-40.258-41.954-40.219-41.747L-40.219-41.657Q-40.258-41.442-40.465-41.419L-42.144-41.419Q-42.351-41.442-42.394-41.657L-42.394-41.747Q-42.351-41.954-42.144-41.978L-41.570-41.978L-41.570-42.763M-41.570-45.915L-43.242-43.321L-41.570-43.321L-41.570-45.915M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 182.23)\">\u003Cpath d=\"M-56.484-40.235L-56.484-40.290Q-56.484-40.446-56.359-40.556Q-56.234-40.665-56.074-40.665Q-55.922-40.665-55.799-40.554Q-55.676-40.442-55.676-40.290L-55.676-40.235Q-55.676-40.212-55.678-40.204Q-55.679-40.196-55.683-40.189Q-55.523-40.161-55.211-40.161Q-54.859-40.161-54.676-40.456Q-54.492-40.751-54.492-41.114L-54.492-44.306L-55.594-44.306Q-55.793-44.329-55.844-44.548L-55.844-44.634Q-55.793-44.845-55.594-44.868L-54.097-44.868Q-53.902-44.845-53.851-44.634L-53.851-41.060Q-53.851-40.689-54.033-40.349Q-54.215-40.009-54.531-39.806Q-54.847-39.603-55.219-39.603Q-55.465-39.603-55.652-39.614Q-55.840-39.626-56.037-39.689Q-56.234-39.751-56.359-39.882Q-56.484-40.013-56.484-40.235M-54.746-45.845L-54.746-45.899Q-54.746-46.071-54.609-46.192Q-54.472-46.314-54.301-46.314Q-54.125-46.314-53.988-46.192Q-53.851-46.071-53.851-45.899L-53.851-45.845Q-53.851-45.669-53.988-45.548Q-54.125-45.427-54.301-45.427Q-54.472-45.427-54.609-45.548Q-54.746-45.669-54.746-45.845M-52.551-41.657L-52.551-41.747Q-52.508-41.954-52.301-41.978L-51.879-41.978L-51.879-44.306L-52.301-44.306Q-52.508-44.329-52.551-44.548L-52.551-44.634Q-52.504-44.845-52.301-44.868L-51.484-44.868Q-51.289-44.845-51.238-44.634L-51.238-44.548L-51.246-44.524Q-51.019-44.704-50.746-44.806Q-50.472-44.907-50.179-44.907Q-49.832-44.907-49.594-44.767Q-49.355-44.626-49.240-44.368Q-49.125-44.110-49.125-43.755L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-50.094-41.419Q-50.289-41.442-50.340-41.657L-50.340-41.747Q-50.289-41.958-50.094-41.978L-49.765-41.978L-49.765-43.724Q-49.765-44.032-49.855-44.190Q-49.945-44.349-50.238-44.349Q-50.508-44.349-50.736-44.218Q-50.965-44.087-51.101-43.858Q-51.238-43.630-51.238-43.364L-51.238-41.978L-50.812-41.978Q-50.605-41.954-50.566-41.747L-50.566-41.657Q-50.605-41.442-50.812-41.419L-52.301-41.419Q-52.508-41.442-52.551-41.657M-44.863-42.907L-47.304-42.907Q-47.250-42.630-47.053-42.407Q-46.855-42.185-46.578-42.062Q-46.301-41.939-46.015-41.939Q-45.543-41.939-45.320-42.228Q-45.312-42.239-45.256-42.345Q-45.199-42.450-45.150-42.493Q-45.101-42.536-45.008-42.548L-44.863-42.548Q-44.672-42.528-44.613-42.314L-44.613-42.259Q-44.679-41.958-44.910-41.761Q-45.140-41.564-45.453-41.472Q-45.765-41.380-46.070-41.380Q-46.554-41.380-46.994-41.608Q-47.433-41.837-47.701-42.237Q-47.969-42.638-47.969-43.130L-47.969-43.189Q-47.969-43.657-47.722-44.060Q-47.476-44.462-47.068-44.696Q-46.660-44.931-46.191-44.931Q-45.687-44.931-45.334-44.708Q-44.980-44.485-44.797-44.097Q-44.613-43.708-44.613-43.204L-44.613-43.146Q-44.672-42.931-44.863-42.907M-47.297-43.458L-45.269-43.458Q-45.316-43.868-45.554-44.120Q-45.793-44.372-46.191-44.372Q-46.586-44.372-46.892-44.110Q-47.199-43.849-47.297-43.458\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 182.23)\">\u003Cpath d=\"M-39.418-41.657L-39.418-41.747Q-39.367-41.954-39.172-41.978L-38.066-41.978L-38.066-45.747L-39.172-45.747Q-39.367-45.771-39.418-45.985L-39.418-46.075Q-39.367-46.282-39.172-46.306L-37.676-46.306Q-37.484-46.282-37.426-46.075L-37.426-41.978L-36.324-41.978Q-36.125-41.954-36.074-41.747L-36.074-41.657Q-36.125-41.442-36.324-41.419L-39.172-41.419Q-39.367-41.442-39.418-41.657M-33.500-41.380Q-33.972-41.380-34.357-41.624Q-34.742-41.868-34.965-42.278Q-35.187-42.689-35.187-43.146Q-35.187-43.489-35.062-43.812Q-34.937-44.134-34.707-44.388Q-34.476-44.642-34.170-44.786Q-33.863-44.931-33.500-44.931Q-33.137-44.931-32.824-44.784Q-32.512-44.638-32.289-44.392Q-32.066-44.146-31.939-43.825Q-31.812-43.505-31.812-43.146Q-31.812-42.689-32.037-42.276Q-32.262-41.864-32.646-41.622Q-33.031-41.380-33.500-41.380M-33.500-41.939Q-33.035-41.939-32.744-42.333Q-32.453-42.728-32.453-43.212Q-32.453-43.505-32.588-43.773Q-32.722-44.040-32.963-44.206Q-33.203-44.372-33.500-44.372Q-33.804-44.372-34.043-44.206Q-34.281-44.040-34.416-43.773Q-34.551-43.505-34.551-43.212Q-34.551-42.731-34.258-42.335Q-33.965-41.939-33.500-41.939M-29.254-41.380Q-29.726-41.380-30.111-41.624Q-30.496-41.868-30.719-42.278Q-30.941-42.689-30.941-43.146Q-30.941-43.489-30.816-43.812Q-30.691-44.134-30.461-44.388Q-30.230-44.642-29.924-44.786Q-29.617-44.931-29.254-44.931Q-28.890-44.931-28.578-44.784Q-28.265-44.638-28.043-44.392Q-27.820-44.146-27.693-43.825Q-27.566-43.505-27.566-43.146Q-27.566-42.689-27.791-42.276Q-28.015-41.864-28.400-41.622Q-28.785-41.380-29.254-41.380M-29.254-41.939Q-28.789-41.939-28.498-42.333Q-28.207-42.728-28.207-43.212Q-28.207-43.505-28.342-43.773Q-28.476-44.040-28.717-44.206Q-28.957-44.372-29.254-44.372Q-29.558-44.372-29.797-44.206Q-30.035-44.040-30.170-43.773Q-30.304-43.505-30.304-43.212Q-30.304-42.731-30.012-42.335Q-29.719-41.939-29.254-41.939M-27.058-39.876L-27.058-39.962Q-27.015-40.181-26.808-40.204L-26.387-40.204L-26.387-44.306L-26.808-44.306Q-27.015-44.329-27.058-44.548L-27.058-44.634Q-27.012-44.845-26.808-44.868L-25.992-44.868Q-25.797-44.849-25.746-44.634L-25.746-44.564Q-25.535-44.731-25.271-44.819Q-25.008-44.907-24.738-44.907Q-24.398-44.907-24.101-44.763Q-23.804-44.618-23.590-44.366Q-23.375-44.114-23.260-43.802Q-23.144-43.489-23.144-43.146Q-23.144-42.681-23.371-42.271Q-23.597-41.860-23.984-41.620Q-24.371-41.380-24.840-41.380Q-25.359-41.380-25.746-41.747L-25.746-40.204L-25.320-40.204Q-25.113-40.181-25.074-39.962L-25.074-39.876Q-25.113-39.665-25.320-39.642L-26.808-39.642Q-27.012-39.665-27.058-39.876M-24.883-41.939Q-24.574-41.939-24.324-42.108Q-24.074-42.278-23.929-42.560Q-23.785-42.841-23.785-43.146Q-23.785-43.435-23.910-43.714Q-24.035-43.993-24.267-44.171Q-24.500-44.349-24.801-44.349Q-25.121-44.349-25.383-44.163Q-25.644-43.978-25.746-43.677L-25.746-42.825Q-25.656-42.458-25.435-42.198Q-25.215-41.939-24.883-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 183.12)\">\u003Cpath d=\"M-53.219-41.419L-56.219-41.419Q-56.320-41.419-56.402-41.501Q-56.484-41.583-56.484-41.685L-56.484-41.794Q-56.484-41.880-56.433-41.946L-53.836-45.747L-55.746-45.747L-55.746-45.235Q-55.793-45.021-55.996-44.993L-56.140-44.993Q-56.336-45.021-56.387-45.235L-56.387-46.075Q-56.336-46.282-56.140-46.306L-53.273-46.306Q-53.160-46.306-53.086-46.228Q-53.012-46.149-53.012-46.044L-53.012-45.931Q-53.012-45.849-53.058-45.778L-55.660-41.978L-53.609-41.978L-53.609-42.649Q-53.558-42.860-53.363-42.884L-53.219-42.884Q-53.023-42.864-52.972-42.649L-52.972-41.657Q-53.023-41.442-53.219-41.419M-52.414-41.657L-52.414-41.747Q-52.375-41.954-52.164-41.978L-51.828-41.978L-51.828-45.747L-52.164-45.747Q-52.375-45.771-52.414-45.985L-52.414-46.075Q-52.375-46.282-52.164-46.306L-48.910-46.306Q-48.711-46.282-48.660-46.075L-48.660-45.235Q-48.707-45.021-48.910-44.993L-49.054-44.993Q-49.250-45.021-49.301-45.235L-49.301-45.747L-51.187-45.747L-51.187-44.146L-50.179-44.146L-50.179-44.364Q-50.129-44.571-49.933-44.595L-49.789-44.595Q-49.594-44.575-49.543-44.364L-49.543-43.380Q-49.594-43.161-49.789-43.138L-49.933-43.138Q-50.129-43.157-50.179-43.380L-50.179-43.587L-51.187-43.587L-51.187-41.978L-50.699-41.978Q-50.504-41.954-50.453-41.747L-50.453-41.657Q-50.504-41.442-50.699-41.419L-52.164-41.419Q-52.375-41.442-52.414-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 183.12)\">\u003Cpath d=\"M-40.469-42.954L-43.515-42.954Q-43.637-42.966-43.724-43.050Q-43.812-43.134-43.812-43.259Q-43.812-43.384-43.728-43.468Q-43.644-43.552-43.515-43.571L-40.469-43.571Q-40.344-43.552-40.262-43.468Q-40.179-43.384-40.179-43.259Q-40.179-43.134-40.263-43.050Q-40.347-42.966-40.469-42.954M-40.469-44.161L-43.515-44.161Q-43.648-44.181-43.730-44.259Q-43.812-44.337-43.812-44.466Q-43.812-44.591-43.728-44.675Q-43.644-44.759-43.515-44.778L-40.469-44.778Q-40.344-44.759-40.262-44.675Q-40.179-44.591-40.179-44.466Q-40.179-44.337-40.260-44.259Q-40.340-44.181-40.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 183.12)\">\u003Cpath d=\"M-33.496-41.341Q-33.929-41.341-34.262-41.579Q-34.594-41.817-34.814-42.206Q-35.035-42.595-35.142-43.032Q-35.250-43.470-35.250-43.868Q-35.250-44.259-35.140-44.702Q-35.031-45.146-34.814-45.526Q-34.597-45.907-34.263-46.148Q-33.929-46.388-33.496-46.388Q-32.941-46.388-32.541-45.989Q-32.140-45.591-31.943-45.005Q-31.746-44.419-31.746-43.868Q-31.746-43.314-31.943-42.726Q-32.140-42.138-32.541-41.739Q-32.941-41.341-33.496-41.341M-33.496-41.899Q-33.195-41.899-32.978-42.116Q-32.762-42.333-32.635-42.661Q-32.508-42.989-32.447-43.335Q-32.387-43.681-32.387-43.962Q-32.387-44.212-32.449-44.538Q-32.512-44.864-32.642-45.155Q-32.773-45.446-32.986-45.636Q-33.199-45.825-33.496-45.825Q-33.871-45.825-34.123-45.513Q-34.375-45.200-34.492-44.767Q-34.609-44.333-34.609-43.962Q-34.609-43.564-34.496-43.083Q-34.383-42.603-34.135-42.251Q-33.887-41.899-33.496-41.899M-29.804-41.978Q-29.804-42.200-29.638-42.366Q-29.472-42.532-29.242-42.532Q-29.094-42.532-28.967-42.454Q-28.840-42.376-28.765-42.251Q-28.691-42.126-28.691-41.978Q-28.691-41.751-28.857-41.585Q-29.023-41.419-29.242-41.419Q-29.469-41.419-29.637-41.587Q-29.804-41.755-29.804-41.978M-29.804-44.314Q-29.804-44.536-29.638-44.702Q-29.472-44.868-29.242-44.868Q-29.094-44.868-28.967-44.790Q-28.840-44.712-28.765-44.587Q-28.691-44.462-28.691-44.314Q-28.691-44.087-28.857-43.921Q-29.023-43.755-29.242-43.755Q-29.469-43.755-29.637-43.923Q-29.804-44.091-29.804-44.314\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 183.12)\">\u003Cpath d=\"M-17.875-41.657L-17.875-45.747L-18.297-45.747Q-18.504-45.771-18.547-45.985L-18.547-46.075Q-18.504-46.282-18.297-46.306L-17.480-46.306Q-17.285-46.282-17.234-46.075L-17.234-44.564Q-17.023-44.731-16.760-44.819Q-16.496-44.907-16.226-44.907Q-15.887-44.907-15.590-44.763Q-15.293-44.618-15.078-44.366Q-14.863-44.114-14.748-43.802Q-14.633-43.489-14.633-43.146Q-14.633-42.681-14.859-42.271Q-15.086-41.860-15.472-41.620Q-15.859-41.380-16.328-41.380Q-16.847-41.380-17.234-41.747L-17.234-41.657Q-17.285-41.439-17.480-41.419L-17.625-41.419Q-17.816-41.442-17.875-41.657M-16.371-41.939Q-16.062-41.939-15.812-42.108Q-15.562-42.278-15.418-42.560Q-15.273-42.841-15.273-43.146Q-15.273-43.435-15.398-43.714Q-15.523-43.993-15.756-44.171Q-15.988-44.349-16.289-44.349Q-16.609-44.349-16.871-44.163Q-17.133-43.978-17.234-43.677L-17.234-42.825Q-17.144-42.458-16.924-42.198Q-16.703-41.939-16.371-41.939M-14.148-41.657L-14.148-41.747Q-14.090-41.954-13.898-41.978L-13.187-41.978L-13.187-44.306L-13.898-44.306Q-14.094-44.329-14.148-44.548L-14.148-44.634Q-14.090-44.845-13.898-44.868L-12.797-44.868Q-12.597-44.849-12.547-44.634L-12.547-44.306Q-12.285-44.591-11.930-44.749Q-11.574-44.907-11.187-44.907Q-10.894-44.907-10.660-44.773Q-10.426-44.638-10.426-44.372Q-10.426-44.204-10.535-44.087Q-10.644-43.970-10.812-43.970Q-10.965-43.970-11.080-44.081Q-11.195-44.192-11.195-44.349Q-11.570-44.349-11.885-44.148Q-12.199-43.946-12.373-43.612Q-12.547-43.278-12.547-42.899L-12.547-41.978L-11.601-41.978Q-11.394-41.954-11.355-41.747L-11.355-41.657Q-11.394-41.442-11.601-41.419L-13.898-41.419Q-14.090-41.442-14.148-41.657M-9.719-42.532Q-9.719-42.978-9.305-43.235Q-8.890-43.493-8.349-43.593Q-7.808-43.692-7.301-43.700Q-7.301-43.915-7.435-44.067Q-7.570-44.220-7.777-44.296Q-7.984-44.372-8.195-44.372Q-8.539-44.372-8.699-44.349L-8.699-44.290Q-8.699-44.122-8.818-44.007Q-8.937-43.892-9.101-43.892Q-9.277-43.892-9.392-44.015Q-9.508-44.138-9.508-44.306Q-9.508-44.712-9.127-44.821Q-8.746-44.931-8.187-44.931Q-7.918-44.931-7.650-44.853Q-7.383-44.774-7.158-44.624Q-6.933-44.474-6.797-44.253Q-6.660-44.032-6.660-43.755L-6.660-42.036Q-6.660-41.978-6.133-41.978Q-5.937-41.958-5.887-41.747L-5.887-41.657Q-5.937-41.442-6.133-41.419L-6.277-41.419Q-6.621-41.419-6.849-41.466Q-7.078-41.513-7.222-41.700Q-7.683-41.380-8.390-41.380Q-8.726-41.380-9.031-41.521Q-9.336-41.661-9.527-41.923Q-9.719-42.185-9.719-42.532M-9.078-42.524Q-9.078-42.251-8.836-42.095Q-8.594-41.939-8.308-41.939Q-8.090-41.939-7.857-41.997Q-7.625-42.056-7.463-42.194Q-7.301-42.333-7.301-42.556L-7.301-43.146Q-7.582-43.146-7.998-43.089Q-8.414-43.032-8.746-42.894Q-9.078-42.755-9.078-42.524M-5.808-41.657L-5.808-41.747Q-5.765-41.954-5.558-41.978L-5.137-41.978L-5.137-44.306L-5.558-44.306Q-5.765-44.329-5.808-44.548L-5.808-44.634Q-5.762-44.845-5.558-44.868L-4.742-44.868Q-4.547-44.845-4.496-44.634L-4.496-44.548L-4.504-44.524Q-4.277-44.704-4.004-44.806Q-3.730-44.907-3.437-44.907Q-3.090-44.907-2.851-44.767Q-2.613-44.626-2.498-44.368Q-2.383-44.110-2.383-43.755L-2.383-41.978L-1.957-41.978Q-1.750-41.954-1.711-41.747L-1.711-41.657Q-1.750-41.442-1.957-41.419L-3.351-41.419Q-3.547-41.442-3.597-41.657L-3.597-41.747Q-3.547-41.958-3.351-41.978L-3.023-41.978L-3.023-43.724Q-3.023-44.032-3.113-44.190Q-3.203-44.349-3.496-44.349Q-3.765-44.349-3.994-44.218Q-4.222-44.087-4.359-43.858Q-4.496-43.630-4.496-43.364L-4.496-41.978L-4.070-41.978Q-3.863-41.954-3.824-41.747L-3.824-41.657Q-3.863-41.442-4.070-41.419L-5.558-41.419Q-5.765-41.442-5.808-41.657M-1.074-43.146Q-1.074-43.626-0.830-44.040Q-0.586-44.454-0.170-44.692Q0.246-44.931 0.727-44.931Q1.281-44.931 1.660-44.821Q2.039-44.712 2.039-44.306Q2.039-44.138 1.926-44.015Q1.813-43.892 1.641-43.892Q1.469-43.892 1.350-44.007Q1.231-44.122 1.231-44.290L1.231-44.349Q1.070-44.372 0.735-44.372Q0.406-44.372 0.139-44.202Q-0.129-44.032-0.281-43.749Q-0.433-43.466-0.433-43.146Q-0.433-42.825-0.262-42.544Q-0.090-42.263 0.195-42.101Q0.481-41.939 0.809-41.939Q1.121-41.939 1.248-42.042Q1.375-42.146 1.492-42.335Q1.610-42.524 1.727-42.540L1.895-42.540Q2-42.528 2.065-42.460Q2.129-42.392 2.129-42.290Q2.129-42.243 2.110-42.204Q2-41.911 1.797-41.731Q1.594-41.552 1.319-41.466Q1.043-41.380 0.727-41.380Q0.242-41.380-0.174-41.618Q-0.590-41.856-0.832-42.259Q-1.074-42.661-1.074-43.146M2.684-41.657L2.684-41.747Q2.727-41.954 2.934-41.978L3.356-41.978L3.356-45.747L2.934-45.747Q2.727-45.771 2.684-45.985L2.684-46.075Q2.727-46.282 2.934-46.306L3.750-46.306Q3.945-46.282 3.996-46.075L3.996-44.524Q4.457-44.907 5.055-44.907Q5.403-44.907 5.641-44.767Q5.879-44.626 5.994-44.368Q6.110-44.110 6.110-43.755L6.110-41.978L6.535-41.978Q6.742-41.954 6.781-41.747L6.781-41.657Q6.742-41.442 6.535-41.419L5.141-41.419Q4.945-41.442 4.895-41.657L4.895-41.747Q4.945-41.958 5.141-41.978L5.469-41.978L5.469-43.724Q5.469-44.032 5.379-44.190Q5.289-44.349 4.996-44.349Q4.727-44.349 4.498-44.218Q4.270-44.087 4.133-43.858Q3.996-43.630 3.996-43.364L3.996-41.978L4.422-41.978Q4.629-41.954 4.668-41.747L4.668-41.657Q4.629-41.442 4.422-41.419L2.934-41.419Q2.727-41.442 2.684-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 183.12)\">\u003Cpath d=\"M-56.683-41.657L-56.683-41.747Q-56.644-41.954-56.433-41.978L-56.125-41.978L-56.125-45.747L-56.433-45.747Q-56.644-45.771-56.683-45.985L-56.683-46.075Q-56.644-46.282-56.433-46.306L-54.484-46.306Q-54.086-46.306-53.740-46.105Q-53.394-45.903-53.187-45.558Q-52.980-45.212-52.980-44.810Q-52.980-44.403-53.185-44.060Q-53.390-43.716-53.736-43.511Q-54.082-43.306-54.484-43.306L-55.484-43.306L-55.484-41.978L-55.172-41.978Q-54.961-41.954-54.922-41.747L-54.922-41.657Q-54.961-41.442-55.172-41.419L-56.433-41.419Q-56.644-41.442-56.683-41.657M-55.484-45.747L-55.484-43.868L-54.644-43.868Q-54.383-43.868-54.146-43.991Q-53.910-44.114-53.765-44.329Q-53.621-44.544-53.621-44.810Q-53.621-45.079-53.765-45.290Q-53.910-45.501-54.146-45.624Q-54.383-45.747-54.644-45.747L-55.484-45.747M-50.355-41.341Q-50.804-41.341-51.170-41.565Q-51.535-41.790-51.789-42.173Q-52.043-42.556-52.168-42.999Q-52.293-43.442-52.293-43.868Q-52.293-44.294-52.168-44.733Q-52.043-45.173-51.789-45.556Q-51.535-45.939-51.176-46.163Q-50.816-46.388-50.355-46.388Q-50.078-46.388-49.820-46.296Q-49.562-46.204-49.347-46.036L-49.215-46.274Q-49.187-46.325-49.133-46.356Q-49.078-46.388-49.019-46.388L-48.941-46.388Q-48.847-46.376-48.785-46.317Q-48.722-46.259-48.711-46.153L-48.711-44.825Q-48.722-44.724-48.785-44.661Q-48.847-44.599-48.941-44.587L-49.109-44.587Q-49.211-44.599-49.273-44.665Q-49.336-44.731-49.347-44.825Q-49.387-45.091-49.510-45.315Q-49.633-45.540-49.836-45.683Q-50.039-45.825-50.301-45.825Q-50.633-45.825-50.885-45.642Q-51.137-45.458-51.308-45.157Q-51.480-44.856-51.566-44.515Q-51.652-44.173-51.652-43.868Q-51.652-43.564-51.568-43.222Q-51.484-42.880-51.312-42.577Q-51.140-42.274-50.883-42.087Q-50.625-41.899-50.293-41.899Q-49.910-41.899-49.629-42.173Q-49.347-42.446-49.347-42.833Q-49.320-43.044-49.109-43.067L-48.941-43.067Q-48.711-43.028-48.711-42.802Q-48.711-42.485-48.847-42.214Q-48.984-41.942-49.219-41.745Q-49.453-41.548-49.744-41.444Q-50.035-41.341-50.355-41.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 183.12)\">\u003Cpath d=\"M-40.469-42.954L-43.515-42.954Q-43.637-42.966-43.724-43.050Q-43.812-43.134-43.812-43.259Q-43.812-43.384-43.728-43.468Q-43.644-43.552-43.515-43.571L-40.469-43.571Q-40.344-43.552-40.262-43.468Q-40.179-43.384-40.179-43.259Q-40.179-43.134-40.263-43.050Q-40.347-42.966-40.469-42.954M-40.469-44.161L-43.515-44.161Q-43.648-44.181-43.730-44.259Q-43.812-44.337-43.812-44.466Q-43.812-44.591-43.728-44.675Q-43.644-44.759-43.515-44.778L-40.469-44.778Q-40.344-44.759-40.262-44.675Q-40.179-44.591-40.179-44.466Q-40.179-44.337-40.260-44.259Q-40.340-44.181-40.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 183.12)\">\u003Cpath d=\"M-33.496-41.341Q-33.929-41.341-34.262-41.579Q-34.594-41.817-34.814-42.206Q-35.035-42.595-35.142-43.032Q-35.250-43.470-35.250-43.868Q-35.250-44.259-35.140-44.702Q-35.031-45.146-34.814-45.526Q-34.597-45.907-34.263-46.148Q-33.929-46.388-33.496-46.388Q-32.941-46.388-32.541-45.989Q-32.140-45.591-31.943-45.005Q-31.746-44.419-31.746-43.868Q-31.746-43.314-31.943-42.726Q-32.140-42.138-32.541-41.739Q-32.941-41.341-33.496-41.341M-33.496-41.899Q-33.195-41.899-32.978-42.116Q-32.762-42.333-32.635-42.661Q-32.508-42.989-32.447-43.335Q-32.387-43.681-32.387-43.962Q-32.387-44.212-32.449-44.538Q-32.512-44.864-32.642-45.155Q-32.773-45.446-32.986-45.636Q-33.199-45.825-33.496-45.825Q-33.871-45.825-34.123-45.513Q-34.375-45.200-34.492-44.767Q-34.609-44.333-34.609-43.962Q-34.609-43.564-34.496-43.083Q-34.383-42.603-34.135-42.251Q-33.887-41.899-33.496-41.899M-31.113-41.657L-31.113-41.747Q-31.074-41.954-30.867-41.978L-30.461-41.978L-29.531-43.196L-30.402-44.306L-30.820-44.306Q-31.015-44.325-31.066-44.548L-31.066-44.634Q-31.015-44.845-30.820-44.868L-29.660-44.868Q-29.461-44.845-29.410-44.634L-29.410-44.548Q-29.461-44.329-29.660-44.306L-29.769-44.306L-29.273-43.649L-28.797-44.306L-28.914-44.306Q-29.113-44.329-29.164-44.548L-29.164-44.634Q-29.113-44.845-28.914-44.868L-27.754-44.868Q-27.558-44.849-27.508-44.634L-27.508-44.548Q-27.558-44.329-27.754-44.306L-28.164-44.306L-29.012-43.196L-28.051-41.978L-27.644-41.978Q-27.445-41.954-27.394-41.747L-27.394-41.657Q-27.433-41.442-27.644-41.419L-28.797-41.419Q-29.004-41.442-29.043-41.657L-29.043-41.747Q-29.004-41.954-28.797-41.978L-28.668-41.978L-29.273-42.833L-29.859-41.978L-29.715-41.978Q-29.508-41.954-29.469-41.747L-29.469-41.657Q-29.508-41.442-29.715-41.419L-30.867-41.419Q-31.062-41.439-31.113-41.657M-25.004-41.341Q-25.437-41.341-25.769-41.579Q-26.101-41.817-26.322-42.206Q-26.543-42.595-26.650-43.032Q-26.758-43.470-26.758-43.868Q-26.758-44.259-26.648-44.702Q-26.539-45.146-26.322-45.526Q-26.105-45.907-25.771-46.148Q-25.437-46.388-25.004-46.388Q-24.449-46.388-24.049-45.989Q-23.648-45.591-23.451-45.005Q-23.254-44.419-23.254-43.868Q-23.254-43.314-23.451-42.726Q-23.648-42.138-24.049-41.739Q-24.449-41.341-25.004-41.341M-25.004-41.899Q-24.703-41.899-24.486-42.116Q-24.269-42.333-24.142-42.661Q-24.015-42.989-23.955-43.335Q-23.894-43.681-23.894-43.962Q-23.894-44.212-23.957-44.538Q-24.019-44.864-24.150-45.155Q-24.281-45.446-24.494-45.636Q-24.707-45.825-25.004-45.825Q-25.379-45.825-25.631-45.513Q-25.883-45.200-26-44.767Q-26.117-44.333-26.117-43.962Q-26.117-43.564-26.004-43.083Q-25.890-42.603-25.642-42.251Q-25.394-41.899-25.004-41.899M-22.527-42.466Q-22.527-42.642-22.410-42.763Q-22.293-42.884-22.117-42.884Q-22.035-42.884-21.959-42.853Q-21.883-42.821-21.832-42.771Q-21.781-42.720-21.750-42.640Q-21.719-42.560-21.719-42.481Q-21.719-42.349-21.801-42.235Q-21.531-41.899-20.742-41.899Q-20.316-41.899-19.974-42.165Q-19.633-42.431-19.633-42.845Q-19.633-43.118-19.799-43.337Q-19.965-43.556-20.224-43.667Q-20.484-43.778-20.758-43.778L-21.222-43.778Q-21.433-43.802-21.465-44.021L-21.465-44.106Q-21.433-44.310-21.222-44.341L-20.695-44.380Q-20.480-44.380-20.289-44.503Q-20.097-44.626-19.984-44.829Q-19.871-45.032-19.871-45.243Q-19.871-45.517-20.154-45.671Q-20.437-45.825-20.742-45.825Q-21.304-45.825-21.543-45.634Q-21.480-45.521-21.480-45.411Q-21.480-45.239-21.594-45.126Q-21.707-45.013-21.879-45.013Q-22.054-45.013-22.170-45.136Q-22.285-45.259-22.285-45.427Q-22.285-45.954-21.812-46.171Q-21.340-46.388-20.742-46.388Q-20.402-46.388-20.047-46.257Q-19.691-46.126-19.461-45.868Q-19.230-45.610-19.230-45.243Q-19.230-44.899-19.398-44.595Q-19.566-44.290-19.863-44.091Q-19.492-43.911-19.242-43.575Q-18.992-43.239-18.992-42.845Q-18.992-42.399-19.246-42.058Q-19.500-41.716-19.902-41.528Q-20.304-41.341-20.742-41.341Q-21.027-41.341-21.332-41.396Q-21.637-41.450-21.912-41.577Q-22.187-41.704-22.357-41.927Q-22.527-42.149-22.527-42.466M-15.121-42.907L-17.562-42.907Q-17.508-42.630-17.310-42.407Q-17.113-42.185-16.836-42.062Q-16.558-41.939-16.273-41.939Q-15.801-41.939-15.578-42.228Q-15.570-42.239-15.513-42.345Q-15.457-42.450-15.408-42.493Q-15.359-42.536-15.265-42.548L-15.121-42.548Q-14.929-42.528-14.871-42.314L-14.871-42.259Q-14.937-41.958-15.168-41.761Q-15.398-41.564-15.711-41.472Q-16.023-41.380-16.328-41.380Q-16.812-41.380-17.252-41.608Q-17.691-41.837-17.959-42.237Q-18.226-42.638-18.226-43.130L-18.226-43.189Q-18.226-43.657-17.980-44.060Q-17.734-44.462-17.326-44.696Q-16.918-44.931-16.449-44.931Q-15.945-44.931-15.592-44.708Q-15.238-44.485-15.054-44.097Q-14.871-43.708-14.871-43.204L-14.871-43.146Q-14.929-42.931-15.121-42.907M-17.554-43.458L-15.527-43.458Q-15.574-43.868-15.812-44.120Q-16.051-44.372-16.449-44.372Q-16.844-44.372-17.150-44.110Q-17.457-43.849-17.554-43.458\" 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 148.646h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 206.82)\">\u003Cpath d=\"M-55.301-41.978Q-55.301-42.200-55.135-42.366Q-54.969-42.532-54.738-42.532Q-54.590-42.532-54.463-42.454Q-54.336-42.376-54.262-42.251Q-54.187-42.126-54.187-41.978Q-54.187-41.751-54.353-41.585Q-54.519-41.419-54.738-41.419Q-54.965-41.419-55.133-41.587Q-55.301-41.755-55.301-41.978M-51.054-41.978Q-51.054-42.200-50.888-42.366Q-50.722-42.532-50.492-42.532Q-50.344-42.532-50.217-42.454Q-50.090-42.376-50.015-42.251Q-49.941-42.126-49.941-41.978Q-49.941-41.751-50.107-41.585Q-50.273-41.419-50.492-41.419Q-50.719-41.419-50.887-41.587Q-51.054-41.755-51.054-41.978\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M-56.308-43.146Q-56.308-43.626-56.064-44.040Q-55.820-44.454-55.404-44.692Q-54.988-44.931-54.508-44.931Q-53.953-44.931-53.574-44.821Q-53.195-44.712-53.195-44.306Q-53.195-44.138-53.308-44.015Q-53.422-43.892-53.594-43.892Q-53.765-43.892-53.885-44.007Q-54.004-44.122-54.004-44.290L-54.004-44.349Q-54.164-44.372-54.500-44.372Q-54.828-44.372-55.096-44.202Q-55.363-44.032-55.515-43.749Q-55.668-43.466-55.668-43.146Q-55.668-42.825-55.496-42.544Q-55.324-42.263-55.039-42.101Q-54.754-41.939-54.426-41.939Q-54.113-41.939-53.986-42.042Q-53.859-42.146-53.742-42.335Q-53.625-42.524-53.508-42.540L-53.340-42.540Q-53.234-42.528-53.170-42.460Q-53.105-42.392-53.105-42.290Q-53.105-42.243-53.125-42.204Q-53.234-41.911-53.437-41.731Q-53.640-41.552-53.916-41.466Q-54.191-41.380-54.508-41.380Q-54.992-41.380-55.408-41.618Q-55.824-41.856-56.066-42.259Q-56.308-42.661-56.308-43.146M-52.277-40.298Q-52.277-40.407-52.226-40.499Q-52.176-40.591-52.084-40.642Q-51.992-40.692-51.887-40.692Q-51.777-40.692-51.685-40.642Q-51.594-40.591-51.543-40.499Q-51.492-40.407-51.492-40.298L-51.637-40.298Q-51.637-40.161-51.613-40.161Q-51.355-40.161-51.168-40.353Q-50.980-40.544-50.894-40.810L-50.683-41.419L-51.820-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-50.988-44.868Q-50.793-44.845-50.742-44.634L-50.742-44.548Q-50.793-44.329-50.988-44.306L-51.254-44.306Q-50.918-43.458-50.674-42.804Q-50.429-42.149-50.429-42.060L-50.422-42.060Q-50.422-42.118-50.330-42.411Q-50.238-42.704-50.045-43.288Q-49.851-43.872-49.711-44.306L-49.988-44.306Q-50.199-44.329-50.238-44.548L-50.238-44.634Q-50.187-44.849-49.988-44.868L-48.836-44.868Q-48.629-44.845-48.590-44.634L-48.590-44.548Q-48.629-44.329-48.836-44.306L-49.156-44.306L-50.332-40.810Q-50.500-40.310-50.826-39.956Q-51.152-39.603-51.613-39.603Q-51.887-39.603-52.082-39.814Q-52.277-40.024-52.277-40.298M-47.816-43.146Q-47.816-43.626-47.572-44.040Q-47.328-44.454-46.912-44.692Q-46.496-44.931-46.015-44.931Q-45.461-44.931-45.082-44.821Q-44.703-44.712-44.703-44.306Q-44.703-44.138-44.816-44.015Q-44.929-43.892-45.101-43.892Q-45.273-43.892-45.392-44.007Q-45.512-44.122-45.512-44.290L-45.512-44.349Q-45.672-44.372-46.008-44.372Q-46.336-44.372-46.603-44.202Q-46.871-44.032-47.023-43.749Q-47.176-43.466-47.176-43.146Q-47.176-42.825-47.004-42.544Q-46.832-42.263-46.547-42.101Q-46.262-41.939-45.933-41.939Q-45.621-41.939-45.494-42.042Q-45.367-42.146-45.250-42.335Q-45.133-42.524-45.015-42.540L-44.847-42.540Q-44.742-42.528-44.678-42.460Q-44.613-42.392-44.613-42.290Q-44.613-42.243-44.633-42.204Q-44.742-41.911-44.945-41.731Q-45.148-41.552-45.424-41.466Q-45.699-41.380-46.015-41.380Q-46.500-41.380-46.916-41.618Q-47.332-41.856-47.574-42.259Q-47.816-42.661-47.816-43.146M-43.679-41.657L-43.679-41.747Q-43.629-41.954-43.433-41.978L-42.328-41.978L-42.328-45.747L-43.433-45.747Q-43.629-45.771-43.679-45.985L-43.679-46.075Q-43.629-46.282-43.433-46.306L-41.937-46.306Q-41.746-46.282-41.687-46.075L-41.687-41.978L-40.586-41.978Q-40.387-41.954-40.336-41.747L-40.336-41.657Q-40.387-41.442-40.586-41.419L-43.433-41.419Q-43.629-41.442-43.679-41.657M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458M-35.051-41.618L-35.051-42.532Q-35.023-42.739-34.812-42.763L-34.644-42.763Q-34.480-42.739-34.422-42.579Q-34.219-41.939-33.492-41.939Q-33.285-41.939-33.056-41.974Q-32.828-42.009-32.660-42.124Q-32.492-42.239-32.492-42.442Q-32.492-42.653-32.715-42.767Q-32.937-42.880-33.211-42.923L-33.910-43.036Q-35.051-43.247-35.051-43.970Q-35.051-44.259-34.906-44.448Q-34.762-44.638-34.521-44.745Q-34.281-44.853-34.025-44.892Q-33.769-44.931-33.492-44.931Q-33.242-44.931-33.049-44.901Q-32.855-44.872-32.691-44.794Q-32.613-44.911-32.484-44.931L-32.406-44.931Q-32.308-44.919-32.246-44.856Q-32.183-44.794-32.172-44.700L-32.172-43.993Q-32.183-43.899-32.246-43.833Q-32.308-43.767-32.406-43.755L-32.574-43.755Q-32.668-43.767-32.734-43.833Q-32.801-43.899-32.812-43.993Q-32.812-44.372-33.508-44.372Q-33.855-44.372-34.174-44.290Q-34.492-44.208-34.492-43.962Q-34.492-43.696-33.820-43.587L-33.117-43.466Q-32.633-43.384-32.283-43.136Q-31.933-42.888-31.933-42.442Q-31.933-42.052-32.170-41.810Q-32.406-41.567-32.756-41.474Q-33.105-41.380-33.492-41.380Q-34.070-41.380-34.469-41.634Q-34.539-41.509-34.588-41.452Q-34.637-41.396-34.742-41.380L-34.812-41.380Q-35.027-41.403-35.051-41.618\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M-26.262-41.657L-26.262-41.747Q-26.211-41.954-26.012-41.978L-25.195-41.978L-25.195-45.161Q-25.574-44.853-26.027-44.853Q-26.258-44.853-26.308-45.083L-26.308-45.173Q-26.258-45.388-26.062-45.411Q-25.734-45.411-25.480-45.649Q-25.226-45.888-25.086-46.235Q-25.015-46.364-24.859-46.388L-24.805-46.388Q-24.609-46.368-24.558-46.153L-24.558-41.978L-23.742-41.978Q-23.543-41.954-23.492-41.747L-23.492-41.657Q-23.543-41.442-23.742-41.419L-26.012-41.419Q-26.211-41.442-26.262-41.657M-22.519-42.466Q-22.519-42.642-22.402-42.763Q-22.285-42.884-22.109-42.884Q-22.027-42.884-21.951-42.853Q-21.875-42.821-21.824-42.771Q-21.773-42.720-21.742-42.640Q-21.711-42.560-21.711-42.481Q-21.711-42.349-21.793-42.235Q-21.523-41.899-20.734-41.899Q-20.308-41.899-19.967-42.165Q-19.625-42.431-19.625-42.845Q-19.625-43.118-19.791-43.337Q-19.957-43.556-20.217-43.667Q-20.476-43.778-20.750-43.778L-21.215-43.778Q-21.426-43.802-21.457-44.021L-21.457-44.106Q-21.426-44.310-21.215-44.341L-20.687-44.380Q-20.472-44.380-20.281-44.503Q-20.090-44.626-19.976-44.829Q-19.863-45.032-19.863-45.243Q-19.863-45.517-20.146-45.671Q-20.430-45.825-20.734-45.825Q-21.297-45.825-21.535-45.634Q-21.472-45.521-21.472-45.411Q-21.472-45.239-21.586-45.126Q-21.699-45.013-21.871-45.013Q-22.047-45.013-22.162-45.136Q-22.277-45.259-22.277-45.427Q-22.277-45.954-21.805-46.171Q-21.332-46.388-20.734-46.388Q-20.394-46.388-20.039-46.257Q-19.683-46.126-19.453-45.868Q-19.222-45.610-19.222-45.243Q-19.222-44.899-19.390-44.595Q-19.558-44.290-19.855-44.091Q-19.484-43.911-19.234-43.575Q-18.984-43.239-18.984-42.845Q-18.984-42.399-19.238-42.058Q-19.492-41.716-19.894-41.528Q-20.297-41.341-20.734-41.341Q-21.019-41.341-21.324-41.396Q-21.629-41.450-21.904-41.577Q-22.180-41.704-22.349-41.927Q-22.519-42.149-22.519-42.466M-15.129-43.556L-17.871-43.556Q-17.996-43.567-18.082-43.653Q-18.168-43.739-18.168-43.868Q-18.168-43.997-18.082-44.079Q-17.996-44.161-17.871-44.173L-15.129-44.173Q-15.004-44.161-14.922-44.079Q-14.840-43.997-14.840-43.868Q-14.840-43.739-14.922-43.653Q-15.004-43.567-15.129-43.556M-13.953-41.657L-13.953-41.731Q-13.922-41.899-13.820-41.946L-12.531-43.013Q-12.199-43.290-12.017-43.442Q-11.836-43.595-11.640-43.815Q-11.445-44.036-11.324-44.286Q-11.203-44.536-11.203-44.802Q-11.203-45.126-11.379-45.360Q-11.555-45.595-11.834-45.710Q-12.113-45.825-12.433-45.825Q-12.691-45.825-12.920-45.702Q-13.148-45.579-13.250-45.364Q-13.148-45.231-13.148-45.083Q-13.148-44.923-13.267-44.800Q-13.387-44.677-13.547-44.677Q-13.722-44.677-13.838-44.802Q-13.953-44.927-13.953-45.099Q-13.953-45.392-13.818-45.634Q-13.683-45.876-13.445-46.048Q-13.207-46.220-12.939-46.304Q-12.672-46.388-12.379-46.388Q-11.898-46.388-11.482-46.198Q-11.066-46.009-10.814-45.648Q-10.562-45.286-10.562-44.802Q-10.562-44.458-10.695-44.155Q-10.828-43.853-11.053-43.593Q-11.277-43.333-11.586-43.071Q-11.894-42.810-12.105-42.634L-12.914-41.978L-11.203-41.978L-11.203-42.122Q-11.152-42.333-10.953-42.356L-10.812-42.356Q-10.613-42.337-10.562-42.122L-10.562-41.657Q-10.613-41.442-10.812-41.419L-13.707-41.419Q-13.902-41.439-13.953-41.657M-8.012-41.341Q-8.652-41.341-9.039-41.718Q-9.426-42.095-9.584-42.667Q-9.742-43.239-9.742-43.868Q-9.742-44.333-9.582-44.788Q-9.422-45.243-9.133-45.603Q-8.844-45.962-8.435-46.175Q-8.027-46.388-7.539-46.388Q-7.265-46.388-7.015-46.290Q-6.765-46.192-6.613-45.997Q-6.461-45.802-6.461-45.509Q-6.461-45.333-6.574-45.212Q-6.687-45.091-6.859-45.091Q-7.035-45.091-7.152-45.204Q-7.269-45.317-7.269-45.489Q-7.269-45.610-7.195-45.731Q-7.305-45.825-7.539-45.825Q-7.957-45.825-8.293-45.585Q-8.629-45.345-8.834-44.958Q-9.039-44.571-9.086-44.173Q-8.847-44.372-8.539-44.480Q-8.230-44.587-7.910-44.587Q-7.570-44.587-7.271-44.462Q-6.972-44.337-6.754-44.118Q-6.535-43.899-6.410-43.601Q-6.285-43.302-6.285-42.962Q-6.285-42.614-6.424-42.314Q-6.562-42.013-6.803-41.796Q-7.043-41.579-7.357-41.460Q-7.672-41.341-8.012-41.341M-8.996-42.884Q-8.933-42.622-8.805-42.398Q-8.676-42.173-8.476-42.036Q-8.277-41.899-8.012-41.899Q-7.558-41.899-7.242-42.206Q-6.926-42.513-6.926-42.962Q-6.926-43.243-7.060-43.489Q-7.195-43.735-7.431-43.878Q-7.668-44.021-7.965-44.021Q-8.355-44.021-8.687-43.794Q-9.019-43.567-9.019-43.196Q-9.019-43.157-9.004-43.079Q-8.988-43.001-8.988-42.962Q-8.988-42.935-8.990-42.919Q-8.992-42.903-8.996-42.884M-4.320-41.978Q-4.320-42.200-4.154-42.366Q-3.988-42.532-3.758-42.532Q-3.609-42.532-3.482-42.454Q-3.355-42.376-3.281-42.251Q-3.207-42.126-3.207-41.978Q-3.207-41.751-3.373-41.585Q-3.539-41.419-3.758-41.419Q-3.984-41.419-4.152-41.587Q-4.320-41.755-4.320-41.978M-4.320-44.314Q-4.320-44.536-4.154-44.702Q-3.988-44.868-3.758-44.868Q-3.609-44.868-3.482-44.790Q-3.355-44.712-3.281-44.587Q-3.207-44.462-3.207-44.314Q-3.207-44.087-3.373-43.921Q-3.539-43.755-3.758-43.755Q-3.984-43.755-4.152-43.923Q-4.320-44.091-4.320-44.314\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M7.500-41.657L7.500-41.747Q7.551-41.954 7.746-41.978L8.785-41.978L8.785-44.306L7.813-44.306Q7.613-44.329 7.563-44.548L7.563-44.634Q7.613-44.845 7.813-44.868L9.180-44.868Q9.375-44.849 9.426-44.634L9.426-41.978L10.340-41.978Q10.535-41.954 10.586-41.747L10.586-41.657Q10.535-41.442 10.340-41.419L7.746-41.419Q7.551-41.442 7.500-41.657M8.531-45.845L8.531-45.899Q8.531-46.071 8.668-46.192Q8.805-46.314 8.981-46.314Q9.153-46.314 9.289-46.192Q9.426-46.071 9.426-45.899L9.426-45.845Q9.426-45.669 9.289-45.548Q9.153-45.427 8.981-45.427Q8.805-45.427 8.668-45.548Q8.531-45.669 8.531-45.845M12.328-42.524L12.328-44.306L11.578-44.306Q11.379-44.329 11.328-44.548L11.328-44.634Q11.379-44.845 11.578-44.868L12.328-44.868L12.328-45.618Q12.379-45.825 12.578-45.853L12.723-45.853Q12.918-45.825 12.969-45.618L12.969-44.868L14.328-44.868Q14.520-44.849 14.578-44.634L14.578-44.548Q14.524-44.329 14.328-44.306L12.969-44.306L12.969-42.556Q12.969-41.939 13.543-41.939Q13.793-41.939 13.957-42.124Q14.121-42.310 14.121-42.556Q14.121-42.649 14.194-42.720Q14.266-42.790 14.367-42.802L14.512-42.802Q14.711-42.778 14.762-42.571L14.762-42.524Q14.762-42.200 14.578-41.937Q14.395-41.673 14.102-41.526Q13.809-41.380 13.488-41.380Q12.977-41.380 12.653-41.690Q12.328-42.001 12.328-42.524M18.887-42.907L16.445-42.907Q16.500-42.630 16.697-42.407Q16.895-42.185 17.172-42.062Q17.449-41.939 17.735-41.939Q18.207-41.939 18.430-42.228Q18.438-42.239 18.494-42.345Q18.551-42.450 18.600-42.493Q18.649-42.536 18.742-42.548L18.887-42.548Q19.078-42.528 19.137-42.314L19.137-42.259Q19.070-41.958 18.840-41.761Q18.610-41.564 18.297-41.472Q17.985-41.380 17.680-41.380Q17.195-41.380 16.756-41.608Q16.317-41.837 16.049-42.237Q15.781-42.638 15.781-43.130L15.781-43.189Q15.781-43.657 16.028-44.060Q16.274-44.462 16.682-44.696Q17.090-44.931 17.559-44.931Q18.063-44.931 18.416-44.708Q18.770-44.485 18.953-44.097Q19.137-43.708 19.137-43.204L19.137-43.146Q19.078-42.931 18.887-42.907M16.453-43.458L18.481-43.458Q18.434-43.868 18.195-44.120Q17.957-44.372 17.559-44.372Q17.164-44.372 16.858-44.110Q16.551-43.849 16.453-43.458M19.844-41.657L19.844-41.747Q19.903-41.954 20.094-41.978L20.805-41.978L20.805-44.306L20.094-44.306Q19.899-44.329 19.844-44.548L19.844-44.634Q19.903-44.845 20.094-44.868L21.195-44.868Q21.395-44.849 21.445-44.634L21.445-44.306Q21.707-44.591 22.063-44.749Q22.418-44.907 22.805-44.907Q23.098-44.907 23.332-44.773Q23.567-44.638 23.567-44.372Q23.567-44.204 23.457-44.087Q23.348-43.970 23.180-43.970Q23.028-43.970 22.912-44.081Q22.797-44.192 22.797-44.349Q22.422-44.349 22.108-44.148Q21.793-43.946 21.619-43.612Q21.445-43.278 21.445-42.899L21.445-41.978L22.391-41.978Q22.598-41.954 22.637-41.747L22.637-41.657Q22.598-41.442 22.391-41.419L20.094-41.419Q19.903-41.442 19.844-41.657M24.274-42.532Q24.274-42.978 24.688-43.235Q25.102-43.493 25.643-43.593Q26.184-43.692 26.692-43.700Q26.692-43.915 26.557-44.067Q26.422-44.220 26.215-44.296Q26.008-44.372 25.797-44.372Q25.453-44.372 25.293-44.349L25.293-44.290Q25.293-44.122 25.174-44.007Q25.055-43.892 24.891-43.892Q24.715-43.892 24.600-44.015Q24.485-44.138 24.485-44.306Q24.485-44.712 24.865-44.821Q25.246-44.931 25.805-44.931Q26.074-44.931 26.342-44.853Q26.610-44.774 26.834-44.624Q27.059-44.474 27.195-44.253Q27.332-44.032 27.332-43.755L27.332-42.036Q27.332-41.978 27.860-41.978Q28.055-41.958 28.106-41.747L28.106-41.657Q28.055-41.442 27.860-41.419L27.715-41.419Q27.371-41.419 27.143-41.466Q26.914-41.513 26.770-41.700Q26.309-41.380 25.602-41.380Q25.266-41.380 24.961-41.521Q24.656-41.661 24.465-41.923Q24.274-42.185 24.274-42.532M24.914-42.524Q24.914-42.251 25.156-42.095Q25.399-41.939 25.684-41.939Q25.903-41.939 26.135-41.997Q26.367-42.056 26.529-42.194Q26.692-42.333 26.692-42.556L26.692-43.146Q26.410-43.146 25.994-43.089Q25.578-43.032 25.246-42.894Q24.914-42.755 24.914-42.524M29.313-42.524L29.313-44.306L28.563-44.306Q28.363-44.329 28.313-44.548L28.313-44.634Q28.363-44.845 28.563-44.868L29.313-44.868L29.313-45.618Q29.363-45.825 29.563-45.853L29.707-45.853Q29.903-45.825 29.953-45.618L29.953-44.868L31.313-44.868Q31.504-44.849 31.563-44.634L31.563-44.548Q31.508-44.329 31.313-44.306L29.953-44.306L29.953-42.556Q29.953-41.939 30.528-41.939Q30.778-41.939 30.942-42.124Q31.106-42.310 31.106-42.556Q31.106-42.649 31.178-42.720Q31.250-42.790 31.352-42.802L31.496-42.802Q31.695-42.778 31.746-42.571L31.746-42.524Q31.746-42.200 31.563-41.937Q31.379-41.673 31.086-41.526Q30.793-41.380 30.473-41.380Q29.961-41.380 29.637-41.690Q29.313-42.001 29.313-42.524M32.977-41.657L32.977-41.747Q33.028-41.954 33.223-41.978L34.262-41.978L34.262-44.306L33.289-44.306Q33.090-44.329 33.039-44.548L33.039-44.634Q33.090-44.845 33.289-44.868L34.656-44.868Q34.852-44.849 34.903-44.634L34.903-41.978L35.817-41.978Q36.012-41.954 36.063-41.747L36.063-41.657Q36.012-41.442 35.817-41.419L33.223-41.419Q33.028-41.442 32.977-41.657M34.008-45.845L34.008-45.899Q34.008-46.071 34.145-46.192Q34.281-46.314 34.457-46.314Q34.629-46.314 34.766-46.192Q34.903-46.071 34.903-45.899L34.903-45.845Q34.903-45.669 34.766-45.548Q34.629-45.427 34.457-45.427Q34.281-45.427 34.145-45.548Q34.008-45.669 34.008-45.845M38.727-41.380Q38.254-41.380 37.869-41.624Q37.485-41.868 37.262-42.278Q37.039-42.689 37.039-43.146Q37.039-43.489 37.164-43.812Q37.289-44.134 37.520-44.388Q37.750-44.642 38.057-44.786Q38.363-44.931 38.727-44.931Q39.090-44.931 39.403-44.784Q39.715-44.638 39.938-44.392Q40.160-44.146 40.287-43.825Q40.414-43.505 40.414-43.146Q40.414-42.689 40.190-42.276Q39.965-41.864 39.580-41.622Q39.195-41.380 38.727-41.380M38.727-41.939Q39.192-41.939 39.483-42.333Q39.774-42.728 39.774-43.212Q39.774-43.505 39.639-43.773Q39.504-44.040 39.264-44.206Q39.024-44.372 38.727-44.372Q38.422-44.372 38.184-44.206Q37.945-44.040 37.811-43.773Q37.676-43.505 37.676-43.212Q37.676-42.731 37.969-42.335Q38.262-41.939 38.727-41.939M40.922-41.657L40.922-41.747Q40.965-41.954 41.172-41.978L41.594-41.978L41.594-44.306L41.172-44.306Q40.965-44.329 40.922-44.548L40.922-44.634Q40.969-44.845 41.172-44.868L41.988-44.868Q42.184-44.845 42.235-44.634L42.235-44.548L42.227-44.524Q42.453-44.704 42.727-44.806Q43-44.907 43.293-44.907Q43.641-44.907 43.879-44.767Q44.117-44.626 44.233-44.368Q44.348-44.110 44.348-43.755L44.348-41.978L44.774-41.978Q44.981-41.954 45.020-41.747L45.020-41.657Q44.981-41.442 44.774-41.419L43.379-41.419Q43.184-41.442 43.133-41.657L43.133-41.747Q43.184-41.958 43.379-41.978L43.707-41.978L43.707-43.724Q43.707-44.032 43.617-44.190Q43.528-44.349 43.235-44.349Q42.965-44.349 42.737-44.218Q42.508-44.087 42.371-43.858Q42.235-43.630 42.235-43.364L42.235-41.978L42.660-41.978Q42.867-41.954 42.906-41.747L42.906-41.657Q42.867-41.442 42.660-41.419L41.172-41.419Q40.965-41.442 40.922-41.657M45.684-41.618L45.684-42.532Q45.711-42.739 45.922-42.763L46.090-42.763Q46.254-42.739 46.313-42.579Q46.516-41.939 47.242-41.939Q47.449-41.939 47.678-41.974Q47.906-42.009 48.074-42.124Q48.242-42.239 48.242-42.442Q48.242-42.653 48.020-42.767Q47.797-42.880 47.524-42.923L46.824-43.036Q45.684-43.247 45.684-43.970Q45.684-44.259 45.828-44.448Q45.973-44.638 46.213-44.745Q46.453-44.853 46.709-44.892Q46.965-44.931 47.242-44.931Q47.492-44.931 47.686-44.901Q47.879-44.872 48.043-44.794Q48.121-44.911 48.250-44.931L48.328-44.931Q48.426-44.919 48.488-44.856Q48.551-44.794 48.563-44.700L48.563-43.993Q48.551-43.899 48.488-43.833Q48.426-43.767 48.328-43.755L48.160-43.755Q48.067-43.767 48-43.833Q47.934-43.899 47.922-43.993Q47.922-44.372 47.227-44.372Q46.879-44.372 46.561-44.290Q46.242-44.208 46.242-43.962Q46.242-43.696 46.914-43.587L47.617-43.466Q48.102-43.384 48.451-43.136Q48.801-42.888 48.801-42.442Q48.801-42.052 48.565-41.810Q48.328-41.567 47.979-41.474Q47.629-41.380 47.242-41.380Q46.664-41.380 46.266-41.634Q46.195-41.509 46.147-41.452Q46.098-41.396 45.992-41.380L45.922-41.380Q45.707-41.403 45.684-41.618\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M54.060-41.657L54.060-41.731Q54.091-41.899 54.193-41.946L55.482-43.013Q55.814-43.290 55.995-43.442Q56.177-43.595 56.372-43.815Q56.568-44.036 56.689-44.286Q56.810-44.536 56.810-44.802Q56.810-45.126 56.634-45.360Q56.458-45.595 56.179-45.710Q55.900-45.825 55.579-45.825Q55.322-45.825 55.093-45.702Q54.864-45.579 54.763-45.364Q54.864-45.231 54.864-45.083Q54.864-44.923 54.745-44.800Q54.626-44.677 54.466-44.677Q54.290-44.677 54.175-44.802Q54.060-44.927 54.060-45.099Q54.060-45.392 54.195-45.634Q54.329-45.876 54.568-46.048Q54.806-46.220 55.073-46.304Q55.341-46.388 55.634-46.388Q56.114-46.388 56.530-46.198Q56.947-46.009 57.198-45.648Q57.450-45.286 57.450-44.802Q57.450-44.458 57.318-44.155Q57.185-43.853 56.960-43.593Q56.736-43.333 56.427-43.071Q56.118-42.810 55.907-42.634L55.099-41.978L56.810-41.978L56.810-42.122Q56.861-42.333 57.060-42.356L57.200-42.356Q57.400-42.337 57.450-42.122L57.450-41.657Q57.400-41.442 57.200-41.419L54.306-41.419Q54.111-41.439 54.060-41.657M61.376-43.556L58.634-43.556Q58.509-43.567 58.423-43.653Q58.337-43.739 58.337-43.868Q58.337-43.997 58.423-44.079Q58.509-44.161 58.634-44.173L61.376-44.173Q61.501-44.161 61.583-44.079Q61.665-43.997 61.665-43.868Q61.665-43.739 61.583-43.653Q61.501-43.567 61.376-43.556M64.685-42.763L62.614-42.763Q62.419-42.786 62.364-43.005L62.364-43.243Q62.364-43.317 62.407-43.388L64.255-46.259Q64.341-46.388 64.493-46.388L64.950-46.388Q65.060-46.388 65.138-46.310Q65.216-46.231 65.216-46.122L65.216-43.321L65.880-43.321Q66.075-43.298 66.126-43.091L66.126-43.005Q66.075-42.786 65.880-42.763L65.216-42.763L65.216-41.978L65.790-41.978Q65.997-41.954 66.036-41.747L66.036-41.657Q65.997-41.442 65.790-41.419L64.111-41.419Q63.904-41.442 63.861-41.657L63.861-41.747Q63.904-41.954 64.111-41.978L64.685-41.978L64.685-42.763M64.685-45.915L63.013-43.321L64.685-43.321\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M73.747-40.778Q73.216-41.087 72.816-41.575Q72.415-42.064 72.204-42.657Q71.993-43.251 71.993-43.868Q71.993-44.485 72.202-45.073Q72.411-45.661 72.808-46.142Q73.204-46.622 73.739-46.946Q73.810-46.970 73.841-46.970L73.931-46.970Q74.029-46.958 74.095-46.892Q74.161-46.825 74.161-46.724Q74.161-46.579 74.060-46.517Q73.611-46.228 73.284-45.812Q72.958-45.396 72.796-44.903Q72.634-44.411 72.634-43.868Q72.634-43.462 72.730-43.075Q72.825-42.689 73.003-42.353Q73.181-42.017 73.441-41.733Q73.700-41.450 74.048-41.220Q74.161-41.142 74.161-41.005Q74.161-40.907 74.095-40.837Q74.029-40.767 73.931-40.755L73.841-40.755Q73.782-40.755 73.747-40.778M75.466-41.618L75.466-42.532Q75.493-42.739 75.704-42.763L75.872-42.763Q76.036-42.739 76.095-42.579Q76.298-41.939 77.025-41.939Q77.232-41.939 77.460-41.974Q77.689-42.009 77.857-42.124Q78.025-42.239 78.025-42.442Q78.025-42.653 77.802-42.767Q77.579-42.880 77.306-42.923L76.607-43.036Q75.466-43.247 75.466-43.970Q75.466-44.259 75.611-44.448Q75.755-44.638 75.995-44.745Q76.236-44.853 76.491-44.892Q76.747-44.931 77.025-44.931Q77.275-44.931 77.468-44.901Q77.661-44.872 77.825-44.794Q77.904-44.911 78.032-44.931L78.111-44.931Q78.208-44.919 78.271-44.856Q78.333-44.794 78.345-44.700L78.345-43.993Q78.333-43.899 78.271-43.833Q78.208-43.767 78.111-43.755L77.943-43.755Q77.849-43.767 77.782-43.833Q77.716-43.899 77.704-43.993Q77.704-44.372 77.009-44.372Q76.661-44.372 76.343-44.290Q76.025-44.208 76.025-43.962Q76.025-43.696 76.697-43.587L77.400-43.466Q77.884-43.384 78.234-43.136Q78.583-42.888 78.583-42.442Q78.583-42.052 78.347-41.810Q78.111-41.567 77.761-41.474Q77.411-41.380 77.025-41.380Q76.447-41.380 76.048-41.634Q75.978-41.509 75.929-41.452Q75.880-41.396 75.775-41.380L75.704-41.380Q75.489-41.403 75.466-41.618M82.638-42.907L80.197-42.907Q80.251-42.630 80.448-42.407Q80.646-42.185 80.923-42.062Q81.200-41.939 81.486-41.939Q81.958-41.939 82.181-42.228Q82.189-42.239 82.245-42.345Q82.302-42.450 82.351-42.493Q82.400-42.536 82.493-42.548L82.638-42.548Q82.829-42.528 82.888-42.314L82.888-42.259Q82.822-41.958 82.591-41.761Q82.361-41.564 82.048-41.472Q81.736-41.380 81.431-41.380Q80.947-41.380 80.507-41.608Q80.068-41.837 79.800-42.237Q79.532-42.638 79.532-43.130L79.532-43.189Q79.532-43.657 79.779-44.060Q80.025-44.462 80.433-44.696Q80.841-44.931 81.310-44.931Q81.814-44.931 82.167-44.708Q82.521-44.485 82.704-44.097Q82.888-43.708 82.888-43.204L82.888-43.146Q82.829-42.931 82.638-42.907M80.204-43.458L82.232-43.458Q82.185-43.868 81.947-44.120Q81.708-44.372 81.310-44.372Q80.915-44.372 80.609-44.110Q80.302-43.849 80.204-43.458M86.884-42.907L84.443-42.907Q84.497-42.630 84.695-42.407Q84.892-42.185 85.169-42.062Q85.447-41.939 85.732-41.939Q86.204-41.939 86.427-42.228Q86.435-42.239 86.491-42.345Q86.548-42.450 86.597-42.493Q86.646-42.536 86.739-42.548L86.884-42.548Q87.075-42.528 87.134-42.314L87.134-42.259Q87.068-41.958 86.837-41.761Q86.607-41.564 86.294-41.472Q85.982-41.380 85.677-41.380Q85.193-41.380 84.753-41.608Q84.314-41.837 84.046-42.237Q83.779-42.638 83.779-43.130L83.779-43.189Q83.779-43.657 84.025-44.060Q84.271-44.462 84.679-44.696Q85.087-44.931 85.556-44.931Q86.060-44.931 86.413-44.708Q86.767-44.485 86.950-44.097Q87.134-43.708 87.134-43.204L87.134-43.146Q87.075-42.931 86.884-42.907M84.450-43.458L86.478-43.458Q86.431-43.868 86.193-44.120Q85.954-44.372 85.556-44.372Q85.161-44.372 84.855-44.110Q84.548-43.849 84.450-43.458\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M93.084-42.524L93.084-44.306L92.334-44.306Q92.135-44.329 92.084-44.548L92.084-44.634Q92.135-44.845 92.334-44.868L93.084-44.868L93.084-45.618Q93.135-45.825 93.334-45.853L93.479-45.853Q93.674-45.825 93.725-45.618L93.725-44.868L95.084-44.868Q95.276-44.849 95.334-44.634L95.334-44.548Q95.280-44.329 95.084-44.306L93.725-44.306L93.725-42.556Q93.725-41.939 94.299-41.939Q94.549-41.939 94.713-42.124Q94.877-42.310 94.877-42.556Q94.877-42.649 94.949-42.720Q95.022-42.790 95.123-42.802L95.268-42.802Q95.467-42.778 95.518-42.571L95.518-42.524Q95.518-42.200 95.334-41.937Q95.151-41.673 94.858-41.526Q94.565-41.380 94.244-41.380Q93.733-41.380 93.408-41.690Q93.084-42.001 93.084-42.524M96.201-41.657L96.201-41.747Q96.244-41.954 96.451-41.978L96.873-41.978L96.873-45.747L96.451-45.747Q96.244-45.771 96.201-45.985L96.201-46.075Q96.244-46.282 96.451-46.306L97.268-46.306Q97.463-46.282 97.514-46.075L97.514-44.524Q97.975-44.907 98.573-44.907Q98.920-44.907 99.158-44.767Q99.397-44.626 99.512-44.368Q99.627-44.110 99.627-43.755L99.627-41.978L100.053-41.978Q100.260-41.954 100.299-41.747L100.299-41.657Q100.260-41.442 100.053-41.419L98.658-41.419Q98.463-41.442 98.412-41.657L98.412-41.747Q98.463-41.958 98.658-41.978L98.987-41.978L98.987-43.724Q98.987-44.032 98.897-44.190Q98.807-44.349 98.514-44.349Q98.244-44.349 98.016-44.218Q97.787-44.087 97.651-43.858Q97.514-43.630 97.514-43.364L97.514-41.978L97.940-41.978Q98.147-41.954 98.186-41.747L98.186-41.657Q98.147-41.442 97.940-41.419L96.451-41.419Q96.244-41.442 96.201-41.657M103.889-42.907L101.448-42.907Q101.502-42.630 101.699-42.407Q101.897-42.185 102.174-42.062Q102.451-41.939 102.737-41.939Q103.209-41.939 103.432-42.228Q103.440-42.239 103.496-42.345Q103.553-42.450 103.602-42.493Q103.651-42.536 103.744-42.548L103.889-42.548Q104.080-42.528 104.139-42.314L104.139-42.259Q104.073-41.958 103.842-41.761Q103.612-41.564 103.299-41.472Q102.987-41.380 102.682-41.380Q102.198-41.380 101.758-41.608Q101.319-41.837 101.051-42.237Q100.783-42.638 100.783-43.130L100.783-43.189Q100.783-43.657 101.030-44.060Q101.276-44.462 101.684-44.696Q102.092-44.931 102.561-44.931Q103.065-44.931 103.418-44.708Q103.772-44.485 103.955-44.097Q104.139-43.708 104.139-43.204L104.139-43.146Q104.080-42.931 103.889-42.907M101.455-43.458L103.483-43.458Q103.436-43.868 103.198-44.120Q102.959-44.372 102.561-44.372Q102.166-44.372 101.860-44.110Q101.553-43.849 101.455-43.458\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M109.893-41.642L109.428-44.306L109.268-44.306Q109.061-44.329 109.022-44.548L109.022-44.634Q109.061-44.845 109.268-44.868L110.436-44.868Q110.647-44.845 110.686-44.634L110.686-44.548Q110.647-44.329 110.436-44.306L109.963-44.306Q110.076-43.661 110.155-43.216Q110.233-42.771 110.283-42.452Q110.334-42.134 110.334-42.060Q110.342-42.231 110.627-43.228Q110.666-43.341 110.764-43.415Q110.862-43.489 110.983-43.489L111.061-43.489Q111.182-43.489 111.280-43.415Q111.377-43.341 111.412-43.228Q111.522-42.845 111.604-42.521Q111.686-42.196 111.686-42.060Q111.698-42.349 112.045-44.306L111.573-44.306Q111.365-44.329 111.326-44.548L111.326-44.634Q111.365-44.845 111.573-44.868L112.748-44.868Q112.940-44.845 112.998-44.634L112.998-44.548Q112.944-44.329 112.748-44.306L112.580-44.306L112.115-41.642Q112.092-41.524 112.004-41.452Q111.916-41.380 111.795-41.380L111.655-41.380Q111.533-41.380 111.438-41.452Q111.342-41.524 111.299-41.642Q111.252-41.821 111.180-42.077Q111.108-42.333 111.065-42.542Q111.022-42.751 111.022-42.853Q111.014-42.571 110.733-41.642Q110.705-41.532 110.608-41.456Q110.510-41.380 110.389-41.380L110.213-41.380Q110.092-41.380 110.004-41.452Q109.916-41.524 109.893-41.642M113.537-42.532Q113.537-42.978 113.951-43.235Q114.365-43.493 114.906-43.593Q115.448-43.692 115.955-43.700Q115.955-43.915 115.821-44.067Q115.686-44.220 115.479-44.296Q115.272-44.372 115.061-44.372Q114.717-44.372 114.557-44.349L114.557-44.290Q114.557-44.122 114.438-44.007Q114.319-43.892 114.155-43.892Q113.979-43.892 113.864-44.015Q113.748-44.138 113.748-44.306Q113.748-44.712 114.129-44.821Q114.510-44.931 115.069-44.931Q115.338-44.931 115.606-44.853Q115.873-44.774 116.098-44.624Q116.323-44.474 116.459-44.253Q116.596-44.032 116.596-43.755L116.596-42.036Q116.596-41.978 117.123-41.978Q117.319-41.958 117.369-41.747L117.369-41.657Q117.319-41.442 117.123-41.419L116.979-41.419Q116.635-41.419 116.406-41.466Q116.178-41.513 116.033-41.700Q115.573-41.380 114.865-41.380Q114.530-41.380 114.225-41.521Q113.920-41.661 113.729-41.923Q113.537-42.185 113.537-42.532M114.178-42.524Q114.178-42.251 114.420-42.095Q114.662-41.939 114.948-41.939Q115.166-41.939 115.399-41.997Q115.631-42.056 115.793-42.194Q115.955-42.333 115.955-42.556L115.955-43.146Q115.674-43.146 115.258-43.089Q114.842-43.032 114.510-42.894Q114.178-42.755 114.178-42.524M117.826-41.657L117.826-41.747Q117.877-41.954 118.073-41.978L119.178-41.978L119.178-45.747L118.073-45.747Q117.877-45.771 117.826-45.985L117.826-46.075Q117.877-46.282 118.073-46.306L119.569-46.306Q119.760-46.282 119.819-46.075L119.819-41.978L120.920-41.978Q121.119-41.954 121.170-41.747L121.170-41.657Q121.119-41.442 120.920-41.419L118.073-41.419Q117.877-41.442 117.826-41.657M121.768-41.657L121.768-41.747Q121.819-41.954 122.014-41.978L122.479-41.978L122.479-45.747L122.014-45.747Q121.819-45.771 121.768-45.985L121.768-46.075Q121.819-46.282 122.014-46.306L122.760-46.306Q122.955-46.286 123.006-46.075L123.006-43.251L124.151-44.306L123.854-44.306Q123.647-44.329 123.608-44.548L123.608-44.634Q123.647-44.845 123.854-44.868L125.303-44.868Q125.506-44.845 125.553-44.634L125.553-44.548Q125.510-44.329 125.303-44.306L124.936-44.306L123.990-43.442L125.143-41.978L125.479-41.978Q125.686-41.954 125.729-41.747L125.729-41.657Q125.686-41.442 125.479-41.419L124.311-41.419Q124.115-41.442 124.065-41.657L124.065-41.747Q124.115-41.954 124.311-41.978L124.471-41.978L123.608-43.083L123.006-42.532L123.006-41.978L123.471-41.978Q123.662-41.954 123.721-41.747L123.721-41.657Q123.662-41.442 123.471-41.419L122.014-41.419Q121.819-41.442 121.768-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 208.171)\">\u003Cpath d=\"M130.877-41.657L130.877-45.747L130.455-45.747Q130.248-45.771 130.205-45.985L130.205-46.075Q130.248-46.282 130.455-46.306L131.272-46.306Q131.467-46.282 131.518-46.075L131.518-44.564Q131.729-44.731 131.992-44.819Q132.256-44.907 132.526-44.907Q132.865-44.907 133.162-44.763Q133.459-44.618 133.674-44.366Q133.889-44.114 134.004-43.802Q134.119-43.489 134.119-43.146Q134.119-42.681 133.893-42.271Q133.666-41.860 133.280-41.620Q132.893-41.380 132.424-41.380Q131.905-41.380 131.518-41.747L131.518-41.657Q131.467-41.439 131.272-41.419L131.127-41.419Q130.936-41.442 130.877-41.657M132.381-41.939Q132.690-41.939 132.940-42.108Q133.190-42.278 133.334-42.560Q133.479-42.841 133.479-43.146Q133.479-43.435 133.354-43.714Q133.229-43.993 132.996-44.171Q132.764-44.349 132.463-44.349Q132.143-44.349 131.881-44.163Q131.619-43.978 131.518-43.677L131.518-42.825Q131.608-42.458 131.828-42.198Q132.049-41.939 132.381-41.939M137.893-42.907L135.451-42.907Q135.506-42.630 135.703-42.407Q135.901-42.185 136.178-42.062Q136.455-41.939 136.740-41.939Q137.213-41.939 137.436-42.228Q137.444-42.239 137.500-42.345Q137.557-42.450 137.606-42.493Q137.655-42.536 137.748-42.548L137.893-42.548Q138.084-42.528 138.143-42.314L138.143-42.259Q138.076-41.958 137.846-41.761Q137.615-41.564 137.303-41.472Q136.990-41.380 136.686-41.380Q136.201-41.380 135.762-41.608Q135.322-41.837 135.055-42.237Q134.787-42.638 134.787-43.130L134.787-43.189Q134.787-43.657 135.033-44.060Q135.280-44.462 135.688-44.696Q136.096-44.931 136.565-44.931Q137.069-44.931 137.422-44.708Q137.776-44.485 137.959-44.097Q138.143-43.708 138.143-43.204L138.143-43.146Q138.084-42.931 137.893-42.907M135.459-43.458L137.487-43.458Q137.440-43.868 137.201-44.120Q136.963-44.372 136.565-44.372Q136.170-44.372 135.864-44.110Q135.557-43.849 135.459-43.458M139.076-41.657L139.076-41.747Q139.127-41.954 139.322-41.978L140.428-41.978L140.428-45.747L139.322-45.747Q139.127-45.771 139.076-45.985L139.076-46.075Q139.127-46.282 139.322-46.306L140.819-46.306Q141.010-46.282 141.069-46.075L141.069-41.978L142.170-41.978Q142.369-41.954 142.420-41.747L142.420-41.657Q142.369-41.442 142.170-41.419L139.322-41.419Q139.127-41.442 139.076-41.657M144.994-41.380Q144.522-41.380 144.137-41.624Q143.752-41.868 143.530-42.278Q143.307-42.689 143.307-43.146Q143.307-43.489 143.432-43.812Q143.557-44.134 143.787-44.388Q144.018-44.642 144.324-44.786Q144.631-44.931 144.994-44.931Q145.358-44.931 145.670-44.784Q145.983-44.638 146.205-44.392Q146.428-44.146 146.555-43.825Q146.682-43.505 146.682-43.146Q146.682-42.689 146.457-42.276Q146.233-41.864 145.848-41.622Q145.463-41.380 144.994-41.380M144.994-41.939Q145.459-41.939 145.750-42.333Q146.041-42.728 146.041-43.212Q146.041-43.505 145.906-43.773Q145.772-44.040 145.531-44.206Q145.291-44.372 144.994-44.372Q144.690-44.372 144.451-44.206Q144.213-44.040 144.078-43.773Q143.944-43.505 143.944-43.212Q143.944-42.731 144.237-42.335Q144.530-41.939 144.994-41.939M148.127-41.642L147.662-44.306L147.502-44.306Q147.295-44.329 147.256-44.548L147.256-44.634Q147.295-44.845 147.502-44.868L148.670-44.868Q148.881-44.845 148.920-44.634L148.920-44.548Q148.881-44.329 148.670-44.306L148.197-44.306Q148.311-43.661 148.389-43.216Q148.467-42.771 148.518-42.452Q148.569-42.134 148.569-42.060Q148.576-42.231 148.862-43.228Q148.901-43.341 148.998-43.415Q149.096-43.489 149.217-43.489L149.295-43.489Q149.416-43.489 149.514-43.415Q149.612-43.341 149.647-43.228Q149.756-42.845 149.838-42.521Q149.920-42.196 149.920-42.060Q149.932-42.349 150.280-44.306L149.807-44.306Q149.600-44.329 149.561-44.548L149.561-44.634Q149.600-44.845 149.807-44.868L150.983-44.868Q151.174-44.845 151.233-44.634L151.233-44.548Q151.178-44.329 150.983-44.306L150.815-44.306L150.350-41.642Q150.326-41.524 150.239-41.452Q150.151-41.380 150.030-41.380L149.889-41.380Q149.768-41.380 149.672-41.452Q149.576-41.524 149.533-41.642Q149.487-41.821 149.414-42.077Q149.342-42.333 149.299-42.542Q149.256-42.751 149.256-42.853Q149.248-42.571 148.967-41.642Q148.940-41.532 148.842-41.456Q148.744-41.380 148.623-41.380L148.447-41.380Q148.326-41.380 148.239-41.452Q148.151-41.524 148.127-41.642M152.405-40.755L152.319-40.755Q152.213-40.767 152.145-40.839Q152.076-40.911 152.076-41.005Q152.076-41.146 152.182-41.212Q152.518-41.427 152.787-41.716Q153.057-42.005 153.240-42.353Q153.424-42.700 153.514-43.079Q153.604-43.458 153.604-43.868Q153.604-44.407 153.440-44.899Q153.276-45.392 152.957-45.806Q152.639-46.220 152.197-46.509Q152.076-46.591 152.076-46.724Q152.076-46.821 152.145-46.890Q152.213-46.958 152.319-46.970L152.405-46.970Q152.459-46.970 152.494-46.946Q152.881-46.724 153.221-46.376Q153.561-46.028 153.781-45.634Q154.002-45.239 154.123-44.794Q154.244-44.349 154.244-43.868Q154.244-43.384 154.123-42.933Q154.002-42.481 153.778-42.085Q153.553-41.689 153.229-41.355Q152.905-41.021 152.502-40.778Q152.432-40.755 152.405-40.755\" 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 174.253h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 234.334)\">\u003Cpath d=\"M-56.441-41.657L-56.441-41.731Q-56.410-41.899-56.308-41.946L-55.019-43.013Q-54.687-43.290-54.506-43.442Q-54.324-43.595-54.129-43.815Q-53.933-44.036-53.812-44.286Q-53.691-44.536-53.691-44.802Q-53.691-45.126-53.867-45.360Q-54.043-45.595-54.322-45.710Q-54.601-45.825-54.922-45.825Q-55.179-45.825-55.408-45.702Q-55.637-45.579-55.738-45.364Q-55.637-45.231-55.637-45.083Q-55.637-44.923-55.756-44.800Q-55.875-44.677-56.035-44.677Q-56.211-44.677-56.326-44.802Q-56.441-44.927-56.441-45.099Q-56.441-45.392-56.306-45.634Q-56.172-45.876-55.933-46.048Q-55.695-46.220-55.428-46.304Q-55.160-46.388-54.867-46.388Q-54.387-46.388-53.971-46.198Q-53.554-46.009-53.303-45.648Q-53.051-45.286-53.051-44.802Q-53.051-44.458-53.183-44.155Q-53.316-43.853-53.541-43.593Q-53.765-43.333-54.074-43.071Q-54.383-42.810-54.594-42.634L-55.402-41.978L-53.691-41.978L-53.691-42.122Q-53.640-42.333-53.441-42.356L-53.301-42.356Q-53.101-42.337-53.051-42.122L-53.051-41.657Q-53.101-41.442-53.301-41.419L-56.195-41.419Q-56.390-41.439-56.441-41.657M-51.285-41.634L-51.285-41.692Q-51.285-42.235-51.179-42.782Q-51.074-43.329-50.869-43.853Q-50.664-44.376-50.367-44.855Q-50.070-45.333-49.691-45.747L-51.629-45.747L-51.629-45.610Q-51.679-45.396-51.879-45.372L-52.019-45.372Q-52.219-45.396-52.269-45.610L-52.269-46.204Q-52.219-46.415-52.019-46.435L-51.879-46.435Q-51.742-46.423-51.668-46.306L-48.980-46.306Q-48.785-46.282-48.734-46.075L-48.734-45.985Q-48.746-45.896-48.789-45.845Q-49.051-45.587-49.281-45.321Q-49.512-45.056-49.674-44.823Q-49.836-44.591-49.994-44.292Q-50.152-43.993-50.285-43.642Q-50.461-43.169-50.553-42.653Q-50.644-42.138-50.644-41.634Q-50.656-41.509-50.742-41.431Q-50.828-41.353-50.949-41.341Q-51.086-41.341-51.179-41.419Q-51.273-41.497-51.285-41.634\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 234.334)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-41.570-42.763L-43.640-42.763Q-43.836-42.786-43.890-43.005L-43.890-43.243Q-43.890-43.317-43.847-43.388L-42-46.259Q-41.914-46.388-41.762-46.388L-41.304-46.388Q-41.195-46.388-41.117-46.310Q-41.039-46.231-41.039-46.122L-41.039-43.321L-40.375-43.321Q-40.179-43.298-40.129-43.091L-40.129-43.005Q-40.179-42.786-40.375-42.763L-41.039-42.763L-41.039-41.978L-40.465-41.978Q-40.258-41.954-40.219-41.747L-40.219-41.657Q-40.258-41.442-40.465-41.419L-42.144-41.419Q-42.351-41.442-42.394-41.657L-42.394-41.747Q-42.351-41.954-42.144-41.978L-41.570-41.978L-41.570-42.763M-41.570-45.915L-43.242-43.321L-41.570-43.321L-41.570-45.915M-36.371-42.907L-38.812-42.907Q-38.758-42.630-38.560-42.407Q-38.363-42.185-38.086-42.062Q-37.808-41.939-37.523-41.939Q-37.051-41.939-36.828-42.228Q-36.820-42.239-36.763-42.345Q-36.707-42.450-36.658-42.493Q-36.609-42.536-36.515-42.548L-36.371-42.548Q-36.179-42.528-36.121-42.314L-36.121-42.259Q-36.187-41.958-36.418-41.761Q-36.648-41.564-36.961-41.472Q-37.273-41.380-37.578-41.380Q-38.062-41.380-38.502-41.608Q-38.941-41.837-39.209-42.237Q-39.476-42.638-39.476-43.130L-39.476-43.189Q-39.476-43.657-39.230-44.060Q-38.984-44.462-38.576-44.696Q-38.168-44.931-37.699-44.931Q-37.195-44.931-36.842-44.708Q-36.488-44.485-36.304-44.097Q-36.121-43.708-36.121-43.204L-36.121-43.146Q-36.179-42.931-36.371-42.907M-38.804-43.458L-36.777-43.458Q-36.824-43.868-37.062-44.120Q-37.301-44.372-37.699-44.372Q-38.094-44.372-38.400-44.110Q-38.707-43.849-38.804-43.458\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(61.861 233.445)\">\u003Cpath d=\"M-56.484-40.235L-56.484-40.290Q-56.484-40.446-56.359-40.556Q-56.234-40.665-56.074-40.665Q-55.922-40.665-55.799-40.554Q-55.676-40.442-55.676-40.290L-55.676-40.235Q-55.676-40.212-55.678-40.204Q-55.679-40.196-55.683-40.189Q-55.523-40.161-55.211-40.161Q-54.859-40.161-54.676-40.456Q-54.492-40.751-54.492-41.114L-54.492-44.306L-55.594-44.306Q-55.793-44.329-55.844-44.548L-55.844-44.634Q-55.793-44.845-55.594-44.868L-54.097-44.868Q-53.902-44.845-53.851-44.634L-53.851-41.060Q-53.851-40.689-54.033-40.349Q-54.215-40.009-54.531-39.806Q-54.847-39.603-55.219-39.603Q-55.465-39.603-55.652-39.614Q-55.840-39.626-56.037-39.689Q-56.234-39.751-56.359-39.882Q-56.484-40.013-56.484-40.235M-54.746-45.845L-54.746-45.899Q-54.746-46.071-54.609-46.192Q-54.472-46.314-54.301-46.314Q-54.125-46.314-53.988-46.192Q-53.851-46.071-53.851-45.899L-53.851-45.845Q-53.851-45.669-53.988-45.548Q-54.125-45.427-54.301-45.427Q-54.472-45.427-54.609-45.548Q-54.746-45.669-54.746-45.845M-52.551-41.657L-52.551-41.747Q-52.508-41.954-52.301-41.978L-51.879-41.978L-51.879-44.306L-52.301-44.306Q-52.508-44.329-52.551-44.548L-52.551-44.634Q-52.504-44.845-52.301-44.868L-51.484-44.868Q-51.289-44.845-51.238-44.634L-51.238-44.548L-51.246-44.524Q-51.019-44.704-50.746-44.806Q-50.472-44.907-50.179-44.907Q-49.832-44.907-49.594-44.767Q-49.355-44.626-49.240-44.368Q-49.125-44.110-49.125-43.755L-49.125-41.978L-48.699-41.978Q-48.492-41.954-48.453-41.747L-48.453-41.657Q-48.492-41.442-48.699-41.419L-50.094-41.419Q-50.289-41.442-50.340-41.657L-50.340-41.747Q-50.289-41.958-50.094-41.978L-49.765-41.978L-49.765-43.724Q-49.765-44.032-49.855-44.190Q-49.945-44.349-50.238-44.349Q-50.508-44.349-50.736-44.218Q-50.965-44.087-51.101-43.858Q-51.238-43.630-51.238-43.364L-51.238-41.978L-50.812-41.978Q-50.605-41.954-50.566-41.747L-50.566-41.657Q-50.605-41.442-50.812-41.419L-52.301-41.419Q-52.508-41.442-52.551-41.657M-44.863-42.907L-47.304-42.907Q-47.250-42.630-47.053-42.407Q-46.855-42.185-46.578-42.062Q-46.301-41.939-46.015-41.939Q-45.543-41.939-45.320-42.228Q-45.312-42.239-45.256-42.345Q-45.199-42.450-45.150-42.493Q-45.101-42.536-45.008-42.548L-44.863-42.548Q-44.672-42.528-44.613-42.314L-44.613-42.259Q-44.679-41.958-44.910-41.761Q-45.140-41.564-45.453-41.472Q-45.765-41.380-46.070-41.380Q-46.554-41.380-46.994-41.608Q-47.433-41.837-47.701-42.237Q-47.969-42.638-47.969-43.130L-47.969-43.189Q-47.969-43.657-47.722-44.060Q-47.476-44.462-47.068-44.696Q-46.660-44.931-46.191-44.931Q-45.687-44.931-45.334-44.708Q-44.980-44.485-44.797-44.097Q-44.613-43.708-44.613-43.204L-44.613-43.146Q-44.672-42.931-44.863-42.907M-47.297-43.458L-45.269-43.458Q-45.316-43.868-45.554-44.120Q-45.793-44.372-46.191-44.372Q-46.586-44.372-46.892-44.110Q-47.199-43.849-47.297-43.458\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 233.445)\">\u003Cpath d=\"M-39.418-41.657L-39.418-41.747Q-39.367-41.954-39.172-41.978L-38.066-41.978L-38.066-45.747L-39.172-45.747Q-39.367-45.771-39.418-45.985L-39.418-46.075Q-39.367-46.282-39.172-46.306L-37.676-46.306Q-37.484-46.282-37.426-46.075L-37.426-41.978L-36.324-41.978Q-36.125-41.954-36.074-41.747L-36.074-41.657Q-36.125-41.442-36.324-41.419L-39.172-41.419Q-39.367-41.442-39.418-41.657M-33.500-41.380Q-33.972-41.380-34.357-41.624Q-34.742-41.868-34.965-42.278Q-35.187-42.689-35.187-43.146Q-35.187-43.489-35.062-43.812Q-34.937-44.134-34.707-44.388Q-34.476-44.642-34.170-44.786Q-33.863-44.931-33.500-44.931Q-33.137-44.931-32.824-44.784Q-32.512-44.638-32.289-44.392Q-32.066-44.146-31.939-43.825Q-31.812-43.505-31.812-43.146Q-31.812-42.689-32.037-42.276Q-32.262-41.864-32.646-41.622Q-33.031-41.380-33.500-41.380M-33.500-41.939Q-33.035-41.939-32.744-42.333Q-32.453-42.728-32.453-43.212Q-32.453-43.505-32.588-43.773Q-32.722-44.040-32.963-44.206Q-33.203-44.372-33.500-44.372Q-33.804-44.372-34.043-44.206Q-34.281-44.040-34.416-43.773Q-34.551-43.505-34.551-43.212Q-34.551-42.731-34.258-42.335Q-33.965-41.939-33.500-41.939M-29.254-41.380Q-29.726-41.380-30.111-41.624Q-30.496-41.868-30.719-42.278Q-30.941-42.689-30.941-43.146Q-30.941-43.489-30.816-43.812Q-30.691-44.134-30.461-44.388Q-30.230-44.642-29.924-44.786Q-29.617-44.931-29.254-44.931Q-28.890-44.931-28.578-44.784Q-28.265-44.638-28.043-44.392Q-27.820-44.146-27.693-43.825Q-27.566-43.505-27.566-43.146Q-27.566-42.689-27.791-42.276Q-28.015-41.864-28.400-41.622Q-28.785-41.380-29.254-41.380M-29.254-41.939Q-28.789-41.939-28.498-42.333Q-28.207-42.728-28.207-43.212Q-28.207-43.505-28.342-43.773Q-28.476-44.040-28.717-44.206Q-28.957-44.372-29.254-44.372Q-29.558-44.372-29.797-44.206Q-30.035-44.040-30.170-43.773Q-30.304-43.505-30.304-43.212Q-30.304-42.731-30.012-42.335Q-29.719-41.939-29.254-41.939M-27.058-39.876L-27.058-39.962Q-27.015-40.181-26.808-40.204L-26.387-40.204L-26.387-44.306L-26.808-44.306Q-27.015-44.329-27.058-44.548L-27.058-44.634Q-27.012-44.845-26.808-44.868L-25.992-44.868Q-25.797-44.849-25.746-44.634L-25.746-44.564Q-25.535-44.731-25.271-44.819Q-25.008-44.907-24.738-44.907Q-24.398-44.907-24.101-44.763Q-23.804-44.618-23.590-44.366Q-23.375-44.114-23.260-43.802Q-23.144-43.489-23.144-43.146Q-23.144-42.681-23.371-42.271Q-23.597-41.860-23.984-41.620Q-24.371-41.380-24.840-41.380Q-25.359-41.380-25.746-41.747L-25.746-40.204L-25.320-40.204Q-25.113-40.181-25.074-39.962L-25.074-39.876Q-25.113-39.665-25.320-39.642L-26.808-39.642Q-27.012-39.665-27.058-39.876M-24.883-41.939Q-24.574-41.939-24.324-42.108Q-24.074-42.278-23.929-42.560Q-23.785-42.841-23.785-43.146Q-23.785-43.435-23.910-43.714Q-24.035-43.993-24.267-44.171Q-24.500-44.349-24.801-44.349Q-25.121-44.349-25.383-44.163Q-25.644-43.978-25.746-43.677L-25.746-42.825Q-25.656-42.458-25.435-42.198Q-25.215-41.939-24.883-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 233.445)\">\u003Cpath d=\"M-53.219-41.419L-56.219-41.419Q-56.320-41.419-56.402-41.501Q-56.484-41.583-56.484-41.685L-56.484-41.794Q-56.484-41.880-56.433-41.946L-53.836-45.747L-55.746-45.747L-55.746-45.235Q-55.793-45.021-55.996-44.993L-56.140-44.993Q-56.336-45.021-56.387-45.235L-56.387-46.075Q-56.336-46.282-56.140-46.306L-53.273-46.306Q-53.160-46.306-53.086-46.228Q-53.012-46.149-53.012-46.044L-53.012-45.931Q-53.012-45.849-53.058-45.778L-55.660-41.978L-53.609-41.978L-53.609-42.649Q-53.558-42.860-53.363-42.884L-53.219-42.884Q-53.023-42.864-52.972-42.649L-52.972-41.657Q-53.023-41.442-53.219-41.419M-52.414-41.657L-52.414-41.747Q-52.375-41.954-52.164-41.978L-51.828-41.978L-51.828-45.747L-52.164-45.747Q-52.375-45.771-52.414-45.985L-52.414-46.075Q-52.375-46.282-52.164-46.306L-48.910-46.306Q-48.711-46.282-48.660-46.075L-48.660-45.235Q-48.707-45.021-48.910-44.993L-49.054-44.993Q-49.250-45.021-49.301-45.235L-49.301-45.747L-51.187-45.747L-51.187-44.146L-50.179-44.146L-50.179-44.364Q-50.129-44.571-49.933-44.595L-49.789-44.595Q-49.594-44.575-49.543-44.364L-49.543-43.380Q-49.594-43.161-49.789-43.138L-49.933-43.138Q-50.129-43.157-50.179-43.380L-50.179-43.587L-51.187-43.587L-51.187-41.978L-50.699-41.978Q-50.504-41.954-50.453-41.747L-50.453-41.657Q-50.504-41.442-50.699-41.419L-52.164-41.419Q-52.375-41.442-52.414-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 233.445)\">\u003Cpath d=\"M-40.469-42.954L-43.515-42.954Q-43.637-42.966-43.724-43.050Q-43.812-43.134-43.812-43.259Q-43.812-43.384-43.728-43.468Q-43.644-43.552-43.515-43.571L-40.469-43.571Q-40.344-43.552-40.262-43.468Q-40.179-43.384-40.179-43.259Q-40.179-43.134-40.263-43.050Q-40.347-42.966-40.469-42.954M-40.469-44.161L-43.515-44.161Q-43.648-44.181-43.730-44.259Q-43.812-44.337-43.812-44.466Q-43.812-44.591-43.728-44.675Q-43.644-44.759-43.515-44.778L-40.469-44.778Q-40.344-44.759-40.262-44.675Q-40.179-44.591-40.179-44.466Q-40.179-44.337-40.260-44.259Q-40.340-44.181-40.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 233.445)\">\u003Cpath d=\"M-34.762-41.657L-34.762-41.747Q-34.711-41.954-34.512-41.978L-33.695-41.978L-33.695-45.161Q-34.074-44.853-34.527-44.853Q-34.758-44.853-34.808-45.083L-34.808-45.173Q-34.758-45.388-34.562-45.411Q-34.234-45.411-33.980-45.649Q-33.726-45.888-33.586-46.235Q-33.515-46.364-33.359-46.388L-33.304-46.388Q-33.109-46.368-33.058-46.153L-33.058-41.978L-32.242-41.978Q-32.043-41.954-31.992-41.747L-31.992-41.657Q-32.043-41.442-32.242-41.419L-34.512-41.419Q-34.711-41.442-34.762-41.657M-29.804-41.978Q-29.804-42.200-29.638-42.366Q-29.472-42.532-29.242-42.532Q-29.094-42.532-28.967-42.454Q-28.840-42.376-28.765-42.251Q-28.691-42.126-28.691-41.978Q-28.691-41.751-28.857-41.585Q-29.023-41.419-29.242-41.419Q-29.469-41.419-29.637-41.587Q-29.804-41.755-29.804-41.978M-29.804-44.314Q-29.804-44.536-29.638-44.702Q-29.472-44.868-29.242-44.868Q-29.094-44.868-28.967-44.790Q-28.840-44.712-28.765-44.587Q-28.691-44.462-28.691-44.314Q-28.691-44.087-28.857-43.921Q-29.023-43.755-29.242-43.755Q-29.469-43.755-29.637-43.923Q-29.804-44.091-29.804-44.314\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 233.445)\">\u003Cpath d=\"M-18.297-41.657L-18.297-41.747Q-18.246-41.954-18.051-41.978L-17.168-41.978L-17.168-44.306L-18.023-44.306Q-18.222-44.329-18.273-44.548L-18.273-44.634Q-18.222-44.845-18.023-44.868L-17.168-44.868L-17.168-45.321Q-17.168-45.786-16.762-46.067Q-16.355-46.349-15.875-46.349Q-15.562-46.349-15.318-46.228Q-15.074-46.106-15.074-45.825Q-15.074-45.661-15.183-45.544Q-15.293-45.427-15.457-45.427Q-15.605-45.427-15.726-45.532Q-15.847-45.638-15.847-45.786L-15.930-45.786Q-16.082-45.786-16.219-45.726Q-16.355-45.665-16.441-45.550Q-16.527-45.435-16.527-45.290L-16.527-44.868L-15.496-44.868Q-15.301-44.849-15.250-44.634L-15.250-44.548Q-15.301-44.329-15.496-44.306L-16.527-44.306L-16.527-41.978L-15.648-41.978Q-15.453-41.954-15.402-41.747L-15.402-41.657Q-15.453-41.442-15.648-41.419L-18.051-41.419Q-18.246-41.442-18.297-41.657M-13.965-42.532Q-13.965-42.978-13.551-43.235Q-13.137-43.493-12.596-43.593Q-12.055-43.692-11.547-43.700Q-11.547-43.915-11.681-44.067Q-11.816-44.220-12.023-44.296Q-12.230-44.372-12.441-44.372Q-12.785-44.372-12.945-44.349L-12.945-44.290Q-12.945-44.122-13.064-44.007Q-13.183-43.892-13.347-43.892Q-13.523-43.892-13.638-44.015Q-13.754-44.138-13.754-44.306Q-13.754-44.712-13.373-44.821Q-12.992-44.931-12.433-44.931Q-12.164-44.931-11.896-44.853Q-11.629-44.774-11.404-44.624Q-11.180-44.474-11.043-44.253Q-10.906-44.032-10.906-43.755L-10.906-42.036Q-10.906-41.978-10.379-41.978Q-10.183-41.958-10.133-41.747L-10.133-41.657Q-10.183-41.442-10.379-41.419L-10.523-41.419Q-10.867-41.419-11.096-41.466Q-11.324-41.513-11.469-41.700Q-11.930-41.380-12.637-41.380Q-12.972-41.380-13.277-41.521Q-13.582-41.661-13.773-41.923Q-13.965-42.185-13.965-42.532M-13.324-42.524Q-13.324-42.251-13.082-42.095Q-12.840-41.939-12.555-41.939Q-12.336-41.939-12.103-41.997Q-11.871-42.056-11.709-42.194Q-11.547-42.333-11.547-42.556L-11.547-43.146Q-11.828-43.146-12.244-43.089Q-12.660-43.032-12.992-42.894Q-13.324-42.755-13.324-42.524M-9.676-41.657L-9.676-41.747Q-9.625-41.954-9.430-41.978L-8.324-41.978L-8.324-45.747L-9.430-45.747Q-9.625-45.771-9.676-45.985L-9.676-46.075Q-9.625-46.282-9.430-46.306L-7.933-46.306Q-7.742-46.282-7.683-46.075L-7.683-41.978L-6.582-41.978Q-6.383-41.954-6.332-41.747L-6.332-41.657Q-6.383-41.442-6.582-41.419L-9.430-41.419Q-9.625-41.442-9.676-41.657M-5.430-41.657L-5.430-41.747Q-5.379-41.954-5.183-41.978L-4.078-41.978L-4.078-45.747L-5.183-45.747Q-5.379-45.771-5.430-45.985L-5.430-46.075Q-5.379-46.282-5.183-46.306L-3.687-46.306Q-3.496-46.282-3.437-46.075L-3.437-41.978L-2.336-41.978Q-2.137-41.954-2.086-41.747L-2.086-41.657Q-2.137-41.442-2.336-41.419L-5.183-41.419Q-5.379-41.442-5.430-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 233.445)\">\u003Cpath d=\"M3.832-42.524L3.832-44.306L3.082-44.306Q2.883-44.329 2.832-44.548L2.832-44.634Q2.883-44.845 3.082-44.868L3.832-44.868L3.832-45.618Q3.883-45.825 4.082-45.853L4.227-45.853Q4.422-45.825 4.473-45.618L4.473-44.868L5.832-44.868Q6.024-44.849 6.082-44.634L6.082-44.548Q6.028-44.329 5.832-44.306L4.473-44.306L4.473-42.556Q4.473-41.939 5.047-41.939Q5.297-41.939 5.461-42.124Q5.625-42.310 5.625-42.556Q5.625-42.649 5.697-42.720Q5.770-42.790 5.871-42.802L6.016-42.802Q6.215-42.778 6.266-42.571L6.266-42.524Q6.266-42.200 6.082-41.937Q5.899-41.673 5.606-41.526Q5.313-41.380 4.992-41.380Q4.481-41.380 4.156-41.690Q3.832-42.001 3.832-42.524M6.949-41.657L6.949-41.747Q6.992-41.954 7.199-41.978L7.621-41.978L7.621-45.747L7.199-45.747Q6.992-45.771 6.949-45.985L6.949-46.075Q6.992-46.282 7.199-46.306L8.016-46.306Q8.211-46.282 8.262-46.075L8.262-44.524Q8.723-44.907 9.320-44.907Q9.668-44.907 9.906-44.767Q10.145-44.626 10.260-44.368Q10.375-44.110 10.375-43.755L10.375-41.978L10.801-41.978Q11.008-41.954 11.047-41.747L11.047-41.657Q11.008-41.442 10.801-41.419L9.406-41.419Q9.211-41.442 9.160-41.657L9.160-41.747Q9.211-41.958 9.406-41.978L9.735-41.978L9.735-43.724Q9.735-44.032 9.645-44.190Q9.555-44.349 9.262-44.349Q8.992-44.349 8.764-44.218Q8.535-44.087 8.399-43.858Q8.262-43.630 8.262-43.364L8.262-41.978L8.688-41.978Q8.895-41.954 8.934-41.747L8.934-41.657Q8.895-41.442 8.688-41.419L7.199-41.419Q6.992-41.442 6.949-41.657M11.348-41.657L11.348-41.747Q11.406-41.954 11.598-41.978L12.309-41.978L12.309-44.306L11.598-44.306Q11.403-44.329 11.348-44.548L11.348-44.634Q11.406-44.845 11.598-44.868L12.699-44.868Q12.899-44.849 12.949-44.634L12.949-44.306Q13.211-44.591 13.567-44.749Q13.922-44.907 14.309-44.907Q14.602-44.907 14.836-44.773Q15.070-44.638 15.070-44.372Q15.070-44.204 14.961-44.087Q14.852-43.970 14.684-43.970Q14.531-43.970 14.416-44.081Q14.301-44.192 14.301-44.349Q13.926-44.349 13.612-44.148Q13.297-43.946 13.123-43.612Q12.949-43.278 12.949-42.899L12.949-41.978L13.895-41.978Q14.102-41.954 14.141-41.747L14.141-41.657Q14.102-41.442 13.895-41.419L11.598-41.419Q11.406-41.442 11.348-41.657M17.492-41.380Q17.020-41.380 16.635-41.624Q16.250-41.868 16.028-42.278Q15.805-42.689 15.805-43.146Q15.805-43.489 15.930-43.812Q16.055-44.134 16.285-44.388Q16.516-44.642 16.822-44.786Q17.129-44.931 17.492-44.931Q17.856-44.931 18.168-44.784Q18.481-44.638 18.703-44.392Q18.926-44.146 19.053-43.825Q19.180-43.505 19.180-43.146Q19.180-42.689 18.955-42.276Q18.731-41.864 18.346-41.622Q17.961-41.380 17.492-41.380M17.492-41.939Q17.957-41.939 18.248-42.333Q18.539-42.728 18.539-43.212Q18.539-43.505 18.404-43.773Q18.270-44.040 18.029-44.206Q17.789-44.372 17.492-44.372Q17.188-44.372 16.949-44.206Q16.711-44.040 16.576-43.773Q16.442-43.505 16.442-43.212Q16.442-42.731 16.735-42.335Q17.028-41.939 17.492-41.939M20.360-42.274L20.360-44.306L19.938-44.306Q19.731-44.329 19.688-44.548L19.688-44.634Q19.735-44.845 19.938-44.868L20.754-44.868Q20.949-44.845 21-44.634L21-42.306Q21-42.071 21.170-42.005Q21.340-41.939 21.625-41.939Q21.832-41.939 22.028-42.015Q22.223-42.091 22.348-42.241Q22.473-42.392 22.473-42.603L22.473-44.306L22.051-44.306Q21.840-44.329 21.801-44.548L21.801-44.634Q21.840-44.845 22.051-44.868L22.863-44.868Q23.063-44.845 23.113-44.634L23.113-41.978L23.539-41.978Q23.746-41.954 23.785-41.747L23.785-41.657Q23.746-41.442 23.539-41.419L22.723-41.419Q22.524-41.442 22.473-41.642Q22.070-41.380 21.563-41.380Q21.328-41.380 21.113-41.421Q20.899-41.462 20.733-41.564Q20.567-41.665 20.463-41.843Q20.360-42.021 20.360-42.274M24.102-40.771Q24.102-41.071 24.250-41.333Q24.399-41.595 24.649-41.755Q24.465-42.009 24.465-42.329Q24.465-42.614 24.617-42.876Q24.367-43.200 24.367-43.618Q24.367-43.978 24.559-44.274Q24.750-44.571 25.069-44.739Q25.387-44.907 25.750-44.907Q25.957-44.907 26.160-44.847Q26.363-44.786 26.528-44.685Q26.910-44.946 27.383-44.946Q27.621-44.946 27.803-44.815Q27.985-44.685 27.985-44.458Q27.985-44.310 27.883-44.204Q27.781-44.099 27.625-44.099Q27.492-44.099 27.397-44.177Q27.301-44.255 27.270-44.380Q27.125-44.372 26.926-44.282Q27.129-43.970 27.129-43.618Q27.129-43.337 27.018-43.105Q26.906-42.872 26.711-42.694Q26.516-42.517 26.264-42.419Q26.012-42.321 25.750-42.321Q25.363-42.321 25.031-42.509Q25.020-42.509 25.010-42.437Q25-42.364 25-42.329Q25-42.208 25.067-42.101Q25.133-41.993 25.254-41.954Q25.270-41.958 25.283-41.960Q25.297-41.962 25.320-41.962Q25.336-41.962 25.367-41.954Q25.399-41.946 25.406-41.946L26-41.946Q26.781-41.946 27.322-41.704Q27.863-41.462 27.863-40.771Q27.863-40.470 27.684-40.243Q27.504-40.017 27.207-39.872Q26.910-39.728 26.590-39.661Q26.270-39.595 25.985-39.595Q25.594-39.595 25.153-39.718Q24.711-39.841 24.406-40.108Q24.102-40.376 24.102-40.771M24.641-40.778Q24.641-40.560 24.881-40.419Q25.121-40.278 25.445-40.212Q25.770-40.146 25.985-40.146Q26.199-40.146 26.524-40.212Q26.848-40.278 27.088-40.419Q27.328-40.560 27.328-40.778Q27.328-41.067 27.104-41.206Q26.879-41.345 26.598-41.378Q26.317-41.411 25.969-41.411L25.352-41.411Q25.168-41.411 25.006-41.331Q24.844-41.251 24.742-41.105Q24.641-40.958 24.641-40.778M25.750-42.876Q26.051-42.876 26.270-43.095Q26.488-43.314 26.488-43.618Q26.488-43.774 26.434-43.905Q26.379-44.036 26.274-44.142Q26.168-44.247 26.037-44.302Q25.906-44.356 25.750-44.356Q25.445-44.356 25.227-44.138Q25.008-43.919 25.008-43.618Q25.008-43.321 25.231-43.099Q25.453-42.876 25.750-42.876M28.180-41.657L28.180-41.747Q28.223-41.954 28.430-41.978L28.852-41.978L28.852-45.747L28.430-45.747Q28.223-45.771 28.180-45.985L28.180-46.075Q28.223-46.282 28.430-46.306L29.246-46.306Q29.442-46.282 29.492-46.075L29.492-44.524Q29.953-44.907 30.551-44.907Q30.899-44.907 31.137-44.767Q31.375-44.626 31.490-44.368Q31.606-44.110 31.606-43.755L31.606-41.978L32.031-41.978Q32.238-41.954 32.278-41.747L32.278-41.657Q32.238-41.442 32.031-41.419L30.637-41.419Q30.442-41.442 30.391-41.657L30.391-41.747Q30.442-41.958 30.637-41.978L30.965-41.978L30.965-43.724Q30.965-44.032 30.875-44.190Q30.785-44.349 30.492-44.349Q30.223-44.349 29.994-44.218Q29.766-44.087 29.629-43.858Q29.492-43.630 29.492-43.364L29.492-41.978L29.918-41.978Q30.125-41.954 30.164-41.747L30.164-41.657Q30.125-41.442 29.918-41.419L28.430-41.419Q28.223-41.442 28.180-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 234.334)\">\u003Cpath d=\"M-56.683-41.657L-56.683-41.747Q-56.644-41.954-56.433-41.978L-56.125-41.978L-56.125-45.747L-56.433-45.747Q-56.644-45.771-56.683-45.985L-56.683-46.075Q-56.644-46.282-56.433-46.306L-54.484-46.306Q-54.086-46.306-53.740-46.105Q-53.394-45.903-53.187-45.558Q-52.980-45.212-52.980-44.810Q-52.980-44.403-53.185-44.060Q-53.390-43.716-53.736-43.511Q-54.082-43.306-54.484-43.306L-55.484-43.306L-55.484-41.978L-55.172-41.978Q-54.961-41.954-54.922-41.747L-54.922-41.657Q-54.961-41.442-55.172-41.419L-56.433-41.419Q-56.644-41.442-56.683-41.657M-55.484-45.747L-55.484-43.868L-54.644-43.868Q-54.383-43.868-54.146-43.991Q-53.910-44.114-53.765-44.329Q-53.621-44.544-53.621-44.810Q-53.621-45.079-53.765-45.290Q-53.910-45.501-54.146-45.624Q-54.383-45.747-54.644-45.747L-55.484-45.747M-50.355-41.341Q-50.804-41.341-51.170-41.565Q-51.535-41.790-51.789-42.173Q-52.043-42.556-52.168-42.999Q-52.293-43.442-52.293-43.868Q-52.293-44.294-52.168-44.733Q-52.043-45.173-51.789-45.556Q-51.535-45.939-51.176-46.163Q-50.816-46.388-50.355-46.388Q-50.078-46.388-49.820-46.296Q-49.562-46.204-49.347-46.036L-49.215-46.274Q-49.187-46.325-49.133-46.356Q-49.078-46.388-49.019-46.388L-48.941-46.388Q-48.847-46.376-48.785-46.317Q-48.722-46.259-48.711-46.153L-48.711-44.825Q-48.722-44.724-48.785-44.661Q-48.847-44.599-48.941-44.587L-49.109-44.587Q-49.211-44.599-49.273-44.665Q-49.336-44.731-49.347-44.825Q-49.387-45.091-49.510-45.315Q-49.633-45.540-49.836-45.683Q-50.039-45.825-50.301-45.825Q-50.633-45.825-50.885-45.642Q-51.137-45.458-51.308-45.157Q-51.480-44.856-51.566-44.515Q-51.652-44.173-51.652-43.868Q-51.652-43.564-51.568-43.222Q-51.484-42.880-51.312-42.577Q-51.140-42.274-50.883-42.087Q-50.625-41.899-50.293-41.899Q-49.910-41.899-49.629-42.173Q-49.347-42.446-49.347-42.833Q-49.320-43.044-49.109-43.067L-48.941-43.067Q-48.711-43.028-48.711-42.802Q-48.711-42.485-48.847-42.214Q-48.984-41.942-49.219-41.745Q-49.453-41.548-49.744-41.444Q-50.035-41.341-50.355-41.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 234.334)\">\u003Cpath d=\"M-40.469-42.954L-43.515-42.954Q-43.637-42.966-43.724-43.050Q-43.812-43.134-43.812-43.259Q-43.812-43.384-43.728-43.468Q-43.644-43.552-43.515-43.571L-40.469-43.571Q-40.344-43.552-40.262-43.468Q-40.179-43.384-40.179-43.259Q-40.179-43.134-40.263-43.050Q-40.347-42.966-40.469-42.954M-40.469-44.161L-43.515-44.161Q-43.648-44.181-43.730-44.259Q-43.812-44.337-43.812-44.466Q-43.812-44.591-43.728-44.675Q-43.644-44.759-43.515-44.778L-40.469-44.778Q-40.344-44.759-40.262-44.675Q-40.179-44.591-40.179-44.466Q-40.179-44.337-40.260-44.259Q-40.340-44.181-40.469-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 234.334)\">\u003Cpath d=\"M-33.496-41.341Q-33.929-41.341-34.262-41.579Q-34.594-41.817-34.814-42.206Q-35.035-42.595-35.142-43.032Q-35.250-43.470-35.250-43.868Q-35.250-44.259-35.140-44.702Q-35.031-45.146-34.814-45.526Q-34.597-45.907-34.263-46.148Q-33.929-46.388-33.496-46.388Q-32.941-46.388-32.541-45.989Q-32.140-45.591-31.943-45.005Q-31.746-44.419-31.746-43.868Q-31.746-43.314-31.943-42.726Q-32.140-42.138-32.541-41.739Q-32.941-41.341-33.496-41.341M-33.496-41.899Q-33.195-41.899-32.978-42.116Q-32.762-42.333-32.635-42.661Q-32.508-42.989-32.447-43.335Q-32.387-43.681-32.387-43.962Q-32.387-44.212-32.449-44.538Q-32.512-44.864-32.642-45.155Q-32.773-45.446-32.986-45.636Q-33.199-45.825-33.496-45.825Q-33.871-45.825-34.123-45.513Q-34.375-45.200-34.492-44.767Q-34.609-44.333-34.609-43.962Q-34.609-43.564-34.496-43.083Q-34.383-42.603-34.135-42.251Q-33.887-41.899-33.496-41.899M-31.113-41.657L-31.113-41.747Q-31.074-41.954-30.867-41.978L-30.461-41.978L-29.531-43.196L-30.402-44.306L-30.820-44.306Q-31.015-44.325-31.066-44.548L-31.066-44.634Q-31.015-44.845-30.820-44.868L-29.660-44.868Q-29.461-44.845-29.410-44.634L-29.410-44.548Q-29.461-44.329-29.660-44.306L-29.769-44.306L-29.273-43.649L-28.797-44.306L-28.914-44.306Q-29.113-44.329-29.164-44.548L-29.164-44.634Q-29.113-44.845-28.914-44.868L-27.754-44.868Q-27.558-44.849-27.508-44.634L-27.508-44.548Q-27.558-44.329-27.754-44.306L-28.164-44.306L-29.012-43.196L-28.051-41.978L-27.644-41.978Q-27.445-41.954-27.394-41.747L-27.394-41.657Q-27.433-41.442-27.644-41.419L-28.797-41.419Q-29.004-41.442-29.043-41.657L-29.043-41.747Q-29.004-41.954-28.797-41.978L-28.668-41.978L-29.273-42.833L-29.859-41.978L-29.715-41.978Q-29.508-41.954-29.469-41.747L-29.469-41.657Q-29.508-41.442-29.715-41.419L-30.867-41.419Q-31.062-41.439-31.113-41.657M-25.004-41.341Q-25.437-41.341-25.769-41.579Q-26.101-41.817-26.322-42.206Q-26.543-42.595-26.650-43.032Q-26.758-43.470-26.758-43.868Q-26.758-44.259-26.648-44.702Q-26.539-45.146-26.322-45.526Q-26.105-45.907-25.771-46.148Q-25.437-46.388-25.004-46.388Q-24.449-46.388-24.049-45.989Q-23.648-45.591-23.451-45.005Q-23.254-44.419-23.254-43.868Q-23.254-43.314-23.451-42.726Q-23.648-42.138-24.049-41.739Q-24.449-41.341-25.004-41.341M-25.004-41.899Q-24.703-41.899-24.486-42.116Q-24.269-42.333-24.142-42.661Q-24.015-42.989-23.955-43.335Q-23.894-43.681-23.894-43.962Q-23.894-44.212-23.957-44.538Q-24.019-44.864-24.150-45.155Q-24.281-45.446-24.494-45.636Q-24.707-45.825-25.004-45.825Q-25.379-45.825-25.631-45.513Q-25.883-45.200-26-44.767Q-26.117-44.333-26.117-43.962Q-26.117-43.564-26.004-43.083Q-25.890-42.603-25.642-42.251Q-25.394-41.899-25.004-41.899M-21.742-42.298Q-21.625-42.095-21.390-41.997Q-21.156-41.899-20.894-41.899Q-20.597-41.899-20.324-42.028Q-20.051-42.157-19.877-42.394Q-19.703-42.630-19.703-42.931Q-19.703-43.185-19.822-43.427Q-19.941-43.669-20.156-43.815Q-20.371-43.962-20.640-43.962Q-21.246-43.962-21.582-43.642Q-21.660-43.556-21.715-43.509Q-21.769-43.462-21.855-43.450L-21.957-43.450Q-22.156-43.474-22.207-43.692L-22.207-46.075Q-22.156-46.282-21.957-46.306L-19.597-46.306Q-19.402-46.286-19.351-46.075L-19.351-45.985Q-19.402-45.771-19.597-45.747L-21.566-45.747L-21.566-44.321Q-21.160-44.524-20.640-44.524Q-20.211-44.524-19.846-44.308Q-19.480-44.091-19.271-43.722Q-19.062-43.353-19.062-42.931Q-19.062-42.458-19.326-42.099Q-19.590-41.739-20.013-41.540Q-20.437-41.341-20.894-41.341Q-21.148-41.341-21.426-41.415Q-21.703-41.489-21.937-41.646Q-22.172-41.802-22.312-42.036Q-22.453-42.271-22.453-42.556Q-22.453-42.724-22.338-42.847Q-22.222-42.970-22.047-42.970Q-21.965-42.970-21.894-42.940Q-21.824-42.911-21.767-42.856Q-21.711-42.802-21.679-42.726Q-21.648-42.649-21.648-42.571Q-21.648-42.411-21.742-42.298M-17.297-41.634L-17.297-41.692Q-17.297-42.235-17.191-42.782Q-17.086-43.329-16.881-43.853Q-16.676-44.376-16.379-44.855Q-16.082-45.333-15.703-45.747L-17.640-45.747L-17.640-45.610Q-17.691-45.396-17.890-45.372L-18.031-45.372Q-18.230-45.396-18.281-45.610L-18.281-46.204Q-18.230-46.415-18.031-46.435L-17.890-46.435Q-17.754-46.423-17.679-46.306L-14.992-46.306Q-14.797-46.282-14.746-46.075L-14.746-45.985Q-14.758-45.896-14.801-45.845Q-15.062-45.587-15.293-45.321Q-15.523-45.056-15.685-44.823Q-15.847-44.591-16.006-44.292Q-16.164-43.993-16.297-43.642Q-16.472-43.169-16.564-42.653Q-16.656-42.138-16.656-41.634Q-16.668-41.509-16.754-41.431Q-16.840-41.353-16.961-41.341Q-17.097-41.341-17.191-41.419Q-17.285-41.497-17.297-41.634\" 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 199.86h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 252.829)\">\u003Cpath d=\"M-56.441-41.657L-56.441-41.731Q-56.410-41.899-56.308-41.946L-55.019-43.013Q-54.687-43.290-54.506-43.442Q-54.324-43.595-54.129-43.815Q-53.933-44.036-53.812-44.286Q-53.691-44.536-53.691-44.802Q-53.691-45.126-53.867-45.360Q-54.043-45.595-54.322-45.710Q-54.601-45.825-54.922-45.825Q-55.179-45.825-55.408-45.702Q-55.637-45.579-55.738-45.364Q-55.637-45.231-55.637-45.083Q-55.637-44.923-55.756-44.800Q-55.875-44.677-56.035-44.677Q-56.211-44.677-56.326-44.802Q-56.441-44.927-56.441-45.099Q-56.441-45.392-56.306-45.634Q-56.172-45.876-55.933-46.048Q-55.695-46.220-55.428-46.304Q-55.160-46.388-54.867-46.388Q-54.387-46.388-53.971-46.198Q-53.554-46.009-53.303-45.648Q-53.051-45.286-53.051-44.802Q-53.051-44.458-53.183-44.155Q-53.316-43.853-53.541-43.593Q-53.765-43.333-54.074-43.071Q-54.383-42.810-54.594-42.634L-55.402-41.978L-53.691-41.978L-53.691-42.122Q-53.640-42.333-53.441-42.356L-53.301-42.356Q-53.101-42.337-53.051-42.122L-53.051-41.657Q-53.101-41.442-53.301-41.419L-56.195-41.419Q-56.390-41.439-56.441-41.657M-52.269-42.833Q-52.269-43.118-52.113-43.372Q-51.957-43.626-51.707-43.800Q-51.457-43.974-51.172-44.060Q-51.410-44.134-51.637-44.276Q-51.863-44.419-52.006-44.628Q-52.148-44.837-52.148-45.083Q-52.148-45.481-51.902-45.776Q-51.656-46.071-51.273-46.230Q-50.890-46.388-50.500-46.388Q-50.109-46.388-49.726-46.230Q-49.344-46.071-49.097-45.773Q-48.851-45.474-48.851-45.083Q-48.851-44.837-48.994-44.630Q-49.137-44.423-49.363-44.278Q-49.590-44.134-49.828-44.060Q-49.375-43.923-49.054-43.597Q-48.734-43.271-48.734-42.833Q-48.734-42.396-48.992-42.052Q-49.250-41.708-49.660-41.524Q-50.070-41.341-50.500-41.341Q-50.929-41.341-51.340-41.523Q-51.750-41.704-52.010-42.048Q-52.269-42.392-52.269-42.833M-51.629-42.833Q-51.629-42.560-51.463-42.345Q-51.297-42.130-51.035-42.015Q-50.773-41.899-50.500-41.899Q-50.226-41.899-49.967-42.015Q-49.707-42.130-49.541-42.347Q-49.375-42.564-49.375-42.833Q-49.375-43.110-49.541-43.327Q-49.707-43.544-49.967-43.661Q-50.226-43.778-50.500-43.778Q-50.773-43.778-51.035-43.661Q-51.297-43.544-51.463-43.329Q-51.629-43.114-51.629-42.833M-51.508-45.083Q-51.508-44.845-51.351-44.677Q-51.195-44.509-50.959-44.425Q-50.722-44.341-50.500-44.341Q-50.281-44.341-50.043-44.425Q-49.804-44.509-49.648-44.679Q-49.492-44.849-49.492-45.083Q-49.492-45.317-49.648-45.487Q-49.804-45.657-50.043-45.741Q-50.281-45.825-50.500-45.825Q-50.722-45.825-50.959-45.741Q-51.195-45.657-51.351-45.489Q-51.508-45.321-51.508-45.083\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 252.829)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-42.992-42.298Q-42.875-42.095-42.640-41.997Q-42.406-41.899-42.144-41.899Q-41.847-41.899-41.574-42.028Q-41.301-42.157-41.127-42.394Q-40.953-42.630-40.953-42.931Q-40.953-43.185-41.072-43.427Q-41.191-43.669-41.406-43.815Q-41.621-43.962-41.890-43.962Q-42.496-43.962-42.832-43.642Q-42.910-43.556-42.965-43.509Q-43.019-43.462-43.105-43.450L-43.207-43.450Q-43.406-43.474-43.457-43.692L-43.457-46.075Q-43.406-46.282-43.207-46.306L-40.847-46.306Q-40.652-46.286-40.601-46.075L-40.601-45.985Q-40.652-45.771-40.847-45.747L-42.816-45.747L-42.816-44.321Q-42.410-44.524-41.890-44.524Q-41.461-44.524-41.096-44.308Q-40.730-44.091-40.521-43.722Q-40.312-43.353-40.312-42.931Q-40.312-42.458-40.576-42.099Q-40.840-41.739-41.263-41.540Q-41.687-41.341-42.144-41.341Q-42.398-41.341-42.676-41.415Q-42.953-41.489-43.187-41.646Q-43.422-41.802-43.562-42.036Q-43.703-42.271-43.703-42.556Q-43.703-42.724-43.588-42.847Q-43.472-42.970-43.297-42.970Q-43.215-42.970-43.144-42.940Q-43.074-42.911-43.017-42.856Q-42.961-42.802-42.929-42.726Q-42.898-42.649-42.898-42.571Q-42.898-42.411-42.992-42.298M-38.547-41.634L-38.547-41.692Q-38.547-42.235-38.441-42.782Q-38.336-43.329-38.131-43.853Q-37.926-44.376-37.629-44.855Q-37.332-45.333-36.953-45.747L-38.890-45.747L-38.890-45.610Q-38.941-45.396-39.140-45.372L-39.281-45.372Q-39.480-45.396-39.531-45.610L-39.531-46.204Q-39.480-46.415-39.281-46.435L-39.140-46.435Q-39.004-46.423-38.929-46.306L-36.242-46.306Q-36.047-46.282-35.996-46.075L-35.996-45.985Q-36.008-45.896-36.051-45.845Q-36.312-45.587-36.543-45.321Q-36.773-45.056-36.935-44.823Q-37.097-44.591-37.256-44.292Q-37.414-43.993-37.547-43.642Q-37.722-43.169-37.814-42.653Q-37.906-42.138-37.906-41.634Q-37.918-41.509-38.004-41.431Q-38.090-41.353-38.211-41.341Q-38.347-41.341-38.441-41.419Q-38.535-41.497-38.547-41.634\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 252.599)\">\u003Cpath d=\"M-56.644-41.657L-56.644-41.747Q-56.586-41.954-56.394-41.978L-55.683-41.978L-55.683-44.306L-56.394-44.306Q-56.590-44.329-56.644-44.548L-56.644-44.634Q-56.586-44.845-56.394-44.868L-55.293-44.868Q-55.094-44.849-55.043-44.634L-55.043-44.306Q-54.781-44.591-54.426-44.749Q-54.070-44.907-53.683-44.907Q-53.390-44.907-53.156-44.773Q-52.922-44.638-52.922-44.372Q-52.922-44.204-53.031-44.087Q-53.140-43.970-53.308-43.970Q-53.461-43.970-53.576-44.081Q-53.691-44.192-53.691-44.349Q-54.066-44.349-54.381-44.148Q-54.695-43.946-54.869-43.612Q-55.043-43.278-55.043-42.899L-55.043-41.978L-54.097-41.978Q-53.890-41.954-53.851-41.747L-53.851-41.657Q-53.890-41.442-54.097-41.419L-56.394-41.419Q-56.586-41.442-56.644-41.657M-49.109-42.907L-51.551-42.907Q-51.496-42.630-51.299-42.407Q-51.101-42.185-50.824-42.062Q-50.547-41.939-50.262-41.939Q-49.789-41.939-49.566-42.228Q-49.558-42.239-49.502-42.345Q-49.445-42.450-49.396-42.493Q-49.347-42.536-49.254-42.548L-49.109-42.548Q-48.918-42.528-48.859-42.314L-48.859-42.259Q-48.926-41.958-49.156-41.761Q-49.387-41.564-49.699-41.472Q-50.012-41.380-50.316-41.380Q-50.801-41.380-51.240-41.608Q-51.679-41.837-51.947-42.237Q-52.215-42.638-52.215-43.130L-52.215-43.189Q-52.215-43.657-51.969-44.060Q-51.722-44.462-51.314-44.696Q-50.906-44.931-50.437-44.931Q-49.933-44.931-49.580-44.708Q-49.226-44.485-49.043-44.097Q-48.859-43.708-48.859-43.204L-48.859-43.146Q-48.918-42.931-49.109-42.907M-51.543-43.458L-49.515-43.458Q-49.562-43.868-49.801-44.120Q-50.039-44.372-50.437-44.372Q-50.832-44.372-51.138-44.110Q-51.445-43.849-51.543-43.458M-47.176-42.524L-47.176-44.306L-47.926-44.306Q-48.125-44.329-48.176-44.548L-48.176-44.634Q-48.125-44.845-47.926-44.868L-47.176-44.868L-47.176-45.618Q-47.125-45.825-46.926-45.853L-46.781-45.853Q-46.586-45.825-46.535-45.618L-46.535-44.868L-45.176-44.868Q-44.984-44.849-44.926-44.634L-44.926-44.548Q-44.980-44.329-45.176-44.306L-46.535-44.306L-46.535-42.556Q-46.535-41.939-45.961-41.939Q-45.711-41.939-45.547-42.124Q-45.383-42.310-45.383-42.556Q-45.383-42.649-45.310-42.720Q-45.238-42.790-45.137-42.802L-44.992-42.802Q-44.793-42.778-44.742-42.571L-44.742-42.524Q-44.742-42.200-44.926-41.937Q-45.109-41.673-45.402-41.526Q-45.695-41.380-46.015-41.380Q-46.527-41.380-46.851-41.690Q-47.176-42.001-47.176-42.524\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 252.829)\">\u003Cpath d=\"M-55.211-41.642L-56.097-44.306L-56.418-44.306Q-56.617-44.329-56.668-44.548L-56.668-44.634Q-56.617-44.845-56.418-44.868L-55.258-44.868Q-55.062-44.849-55.012-44.634L-55.012-44.548Q-55.062-44.329-55.258-44.306L-55.539-44.306L-54.746-41.931L-53.957-44.306L-54.234-44.306Q-54.433-44.329-54.484-44.548L-54.484-44.634Q-54.433-44.845-54.234-44.868L-53.074-44.868Q-52.879-44.845-52.828-44.634L-52.828-44.548Q-52.879-44.329-53.074-44.306L-53.394-44.306L-54.281-41.642Q-54.324-41.528-54.426-41.454Q-54.527-41.380-54.652-41.380L-54.844-41.380Q-54.961-41.380-55.064-41.452Q-55.168-41.524-55.211-41.642M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-44.015-41.657L-44.015-41.747Q-43.965-41.954-43.769-41.978L-43.594-41.978L-43.594-45.747L-43.769-45.747Q-43.965-45.771-44.015-45.985L-44.015-46.075Q-43.965-46.282-43.769-46.306L-43.082-46.306Q-42.953-46.306-42.853-46.230Q-42.754-46.153-42.715-46.044Q-42.683-45.939-42.461-45.249Q-42.238-44.560-42.123-44.163Q-42.008-43.767-42.008-43.692Q-42-43.771-41.945-43.968Q-41.890-44.165-41.777-44.536Q-41.664-44.907-41.517-45.370Q-41.371-45.833-41.304-46.044Q-41.265-46.153-41.162-46.230Q-41.058-46.306-40.937-46.306L-40.250-46.306Q-40.051-46.282-40-46.075L-40-45.985Q-40.051-45.771-40.250-45.747L-40.426-45.747L-40.426-41.978L-40.250-41.978Q-40.051-41.954-40-41.747L-40-41.657Q-40.051-41.442-40.250-41.419L-41.129-41.419Q-41.324-41.442-41.375-41.657L-41.375-41.747Q-41.324-41.954-41.129-41.978L-40.953-41.978L-40.953-45.665Q-40.953-45.606-41.037-45.308Q-41.121-45.009-41.224-44.677Q-41.328-44.345-41.459-43.937Q-41.590-43.528-41.656-43.314Q-41.695-43.200-41.795-43.126Q-41.894-43.052-42.008-43.052Q-42.121-43.052-42.221-43.126Q-42.320-43.200-42.359-43.314Q-42.426-43.528-42.560-43.946Q-42.695-44.364-42.832-44.808Q-42.969-45.251-43.013-45.415Q-43.058-45.579-43.066-45.665L-43.066-41.978L-42.890-41.978Q-42.691-41.954-42.640-41.747L-42.640-41.657Q-42.691-41.442-42.890-41.419L-43.769-41.419Q-43.965-41.442-44.015-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 252.829)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 252.829)\">\u003Cpath d=\"M-27.004-41.657L-27.004-41.747Q-26.953-41.954-26.758-41.978L-26.582-41.978L-26.582-45.747L-26.758-45.747Q-26.953-45.771-27.004-45.985L-27.004-46.075Q-26.953-46.282-26.758-46.306L-26.070-46.306Q-25.941-46.306-25.842-46.230Q-25.742-46.153-25.703-46.044Q-25.672-45.939-25.449-45.249Q-25.226-44.560-25.111-44.163Q-24.996-43.767-24.996-43.692Q-24.988-43.771-24.933-43.968Q-24.879-44.165-24.765-44.536Q-24.652-44.907-24.506-45.370Q-24.359-45.833-24.293-46.044Q-24.254-46.153-24.150-46.230Q-24.047-46.306-23.926-46.306L-23.238-46.306Q-23.039-46.282-22.988-46.075L-22.988-45.985Q-23.039-45.771-23.238-45.747L-23.414-45.747L-23.414-41.978L-23.238-41.978Q-23.039-41.954-22.988-41.747L-22.988-41.657Q-23.039-41.442-23.238-41.419L-24.117-41.419Q-24.312-41.442-24.363-41.657L-24.363-41.747Q-24.312-41.954-24.117-41.978L-23.941-41.978L-23.941-45.665Q-23.941-45.606-24.025-45.308Q-24.109-45.009-24.213-44.677Q-24.316-44.345-24.447-43.937Q-24.578-43.528-24.644-43.314Q-24.683-43.200-24.783-43.126Q-24.883-43.052-24.996-43.052Q-25.109-43.052-25.209-43.126Q-25.308-43.200-25.347-43.314Q-25.414-43.528-25.549-43.946Q-25.683-44.364-25.820-44.808Q-25.957-45.251-26.002-45.415Q-26.047-45.579-26.055-45.665L-26.055-41.978L-25.879-41.978Q-25.680-41.954-25.629-41.747L-25.629-41.657Q-25.680-41.442-25.879-41.419L-26.758-41.419Q-26.953-41.442-27.004-41.657M-21.137-40.985L-21.137-46.739Q-21.078-46.946-20.887-46.970L-19.207-46.970Q-19.012-46.950-18.961-46.739L-18.961-46.649Q-19.012-46.435-19.207-46.411L-20.496-46.411L-20.496-41.314L-19.207-41.314Q-19.012-41.294-18.961-41.075L-18.961-40.985Q-19.012-40.778-19.207-40.755L-20.887-40.755Q-21.078-40.774-21.137-40.985M-16.504-41.341Q-16.937-41.341-17.269-41.579Q-17.601-41.817-17.822-42.206Q-18.043-42.595-18.150-43.032Q-18.258-43.470-18.258-43.868Q-18.258-44.259-18.148-44.702Q-18.039-45.146-17.822-45.526Q-17.605-45.907-17.271-46.148Q-16.937-46.388-16.504-46.388Q-15.949-46.388-15.549-45.989Q-15.148-45.591-14.951-45.005Q-14.754-44.419-14.754-43.868Q-14.754-43.314-14.951-42.726Q-15.148-42.138-15.549-41.739Q-15.949-41.341-16.504-41.341M-16.504-41.899Q-16.203-41.899-15.986-42.116Q-15.769-42.333-15.642-42.661Q-15.515-42.989-15.455-43.335Q-15.394-43.681-15.394-43.962Q-15.394-44.212-15.457-44.538Q-15.519-44.864-15.650-45.155Q-15.781-45.446-15.994-45.636Q-16.207-45.825-16.504-45.825Q-16.879-45.825-17.131-45.513Q-17.383-45.200-17.500-44.767Q-17.617-44.333-17.617-43.962Q-17.617-43.564-17.504-43.083Q-17.390-42.603-17.142-42.251Q-16.894-41.899-16.504-41.899M-14.121-41.657L-14.121-41.747Q-14.082-41.954-13.875-41.978L-13.469-41.978L-12.539-43.196L-13.410-44.306L-13.828-44.306Q-14.023-44.325-14.074-44.548L-14.074-44.634Q-14.023-44.845-13.828-44.868L-12.668-44.868Q-12.469-44.845-12.418-44.634L-12.418-44.548Q-12.469-44.329-12.668-44.306L-12.777-44.306L-12.281-43.649L-11.805-44.306L-11.922-44.306Q-12.121-44.329-12.172-44.548L-12.172-44.634Q-12.121-44.845-11.922-44.868L-10.762-44.868Q-10.566-44.849-10.515-44.634L-10.515-44.548Q-10.566-44.329-10.762-44.306L-11.172-44.306L-12.019-43.196L-11.058-41.978L-10.652-41.978Q-10.453-41.954-10.402-41.747L-10.402-41.657Q-10.441-41.442-10.652-41.419L-11.805-41.419Q-12.012-41.442-12.051-41.657L-12.051-41.747Q-12.012-41.954-11.805-41.978L-11.676-41.978L-12.281-42.833L-12.867-41.978L-12.722-41.978Q-12.515-41.954-12.476-41.747L-12.476-41.657Q-12.515-41.442-12.722-41.419L-13.875-41.419Q-14.070-41.439-14.121-41.657M-9.277-41.657L-9.277-41.747Q-9.226-41.954-9.027-41.978L-8.211-41.978L-8.211-45.161Q-8.590-44.853-9.043-44.853Q-9.273-44.853-9.324-45.083L-9.324-45.173Q-9.273-45.388-9.078-45.411Q-8.750-45.411-8.496-45.649Q-8.242-45.888-8.101-46.235Q-8.031-46.364-7.875-46.388L-7.820-46.388Q-7.625-46.368-7.574-46.153L-7.574-41.978L-6.758-41.978Q-6.558-41.954-6.508-41.747L-6.508-41.657Q-6.558-41.442-6.758-41.419L-9.027-41.419Q-9.226-41.442-9.277-41.657M-5.566-41.657L-5.566-41.747Q-5.515-41.954-5.320-41.978L-4.437-41.978L-4.437-44.306L-5.293-44.306Q-5.492-44.329-5.543-44.548L-5.543-44.634Q-5.492-44.845-5.293-44.868L-4.437-44.868L-4.437-45.321Q-4.437-45.786-4.031-46.067Q-3.625-46.349-3.144-46.349Q-2.832-46.349-2.588-46.228Q-2.344-46.106-2.344-45.825Q-2.344-45.661-2.453-45.544Q-2.562-45.427-2.726-45.427Q-2.875-45.427-2.996-45.532Q-3.117-45.638-3.117-45.786L-3.199-45.786Q-3.351-45.786-3.488-45.726Q-3.625-45.665-3.711-45.550Q-3.797-45.435-3.797-45.290L-3.797-44.868L-2.765-44.868Q-2.570-44.849-2.519-44.634L-2.519-44.548Q-2.570-44.329-2.765-44.306L-3.797-44.306L-3.797-41.978L-2.918-41.978Q-2.722-41.954-2.672-41.747L-2.672-41.657Q-2.722-41.442-2.918-41.419L-5.320-41.419Q-5.515-41.442-5.566-41.657M-1.289-42.833Q-1.289-43.118-1.133-43.372Q-0.976-43.626-0.726-43.800Q-0.476-43.974-0.191-44.060Q-0.430-44.134-0.656-44.276Q-0.883-44.419-1.025-44.628Q-1.168-44.837-1.168-45.083Q-1.168-45.481-0.922-45.776Q-0.676-46.071-0.293-46.230Q0.090-46.388 0.481-46.388Q0.871-46.388 1.254-46.230Q1.637-46.071 1.883-45.773Q2.129-45.474 2.129-45.083Q2.129-44.837 1.987-44.630Q1.844-44.423 1.617-44.278Q1.391-44.134 1.153-44.060Q1.606-43.923 1.926-43.597Q2.246-43.271 2.246-42.833Q2.246-42.396 1.988-42.052Q1.731-41.708 1.320-41.524Q0.910-41.341 0.481-41.341Q0.051-41.341-0.359-41.523Q-0.769-41.704-1.029-42.048Q-1.289-42.392-1.289-42.833M-0.648-42.833Q-0.648-42.560-0.482-42.345Q-0.316-42.130-0.055-42.015Q0.207-41.899 0.481-41.899Q0.754-41.899 1.014-42.015Q1.274-42.130 1.440-42.347Q1.606-42.564 1.606-42.833Q1.606-43.110 1.440-43.327Q1.274-43.544 1.014-43.661Q0.754-43.778 0.481-43.778Q0.207-43.778-0.055-43.661Q-0.316-43.544-0.482-43.329Q-0.648-43.114-0.648-42.833M-0.527-45.083Q-0.527-44.845-0.371-44.677Q-0.215-44.509 0.022-44.425Q0.258-44.341 0.481-44.341Q0.699-44.341 0.938-44.425Q1.176-44.509 1.332-44.679Q1.488-44.849 1.488-45.083Q1.488-45.317 1.332-45.487Q1.176-45.657 0.938-45.741Q0.699-45.825 0.481-45.825Q0.258-45.825 0.022-45.741Q-0.215-45.657-0.371-45.489Q-0.527-45.321-0.527-45.083M2.934-40.985L2.934-41.075Q2.985-41.290 3.180-41.314L4.469-41.314L4.469-46.411L3.180-46.411Q2.985-46.435 2.934-46.649L2.934-46.739Q2.985-46.946 3.180-46.970L4.863-46.970Q5.059-46.946 5.110-46.739L5.110-40.985Q5.059-40.778 4.863-40.755L3.180-40.755Q2.985-40.778 2.934-40.985\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 252.829)\">\u003Cpath d=\"M14.782-42.954L11.736-42.954Q11.614-42.966 11.527-43.050Q11.439-43.134 11.439-43.259Q11.439-43.384 11.523-43.468Q11.607-43.552 11.736-43.571L14.782-43.571Q14.907-43.552 14.989-43.468Q15.072-43.384 15.072-43.259Q15.072-43.134 14.988-43.050Q14.904-42.966 14.782-42.954M14.782-44.161L11.736-44.161Q11.603-44.181 11.521-44.259Q11.439-44.337 11.439-44.466Q11.439-44.591 11.523-44.675Q11.607-44.759 11.736-44.778L14.782-44.778Q14.907-44.759 14.989-44.675Q15.072-44.591 15.072-44.466Q15.072-44.337 14.991-44.259Q14.911-44.181 14.782-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 252.829)\">\u003Cpath d=\"M21.755-41.341Q21.322-41.341 20.989-41.579Q20.657-41.817 20.437-42.206Q20.216-42.595 20.109-43.032Q20.001-43.470 20.001-43.868Q20.001-44.259 20.111-44.702Q20.220-45.146 20.437-45.526Q20.654-45.907 20.988-46.148Q21.322-46.388 21.755-46.388Q22.310-46.388 22.710-45.989Q23.111-45.591 23.308-45.005Q23.505-44.419 23.505-43.868Q23.505-43.314 23.308-42.726Q23.111-42.138 22.710-41.739Q22.310-41.341 21.755-41.341M21.755-41.899Q22.056-41.899 22.273-42.116Q22.489-42.333 22.616-42.661Q22.743-42.989 22.804-43.335Q22.864-43.681 22.864-43.962Q22.864-44.212 22.802-44.538Q22.739-44.864 22.609-45.155Q22.478-45.446 22.265-45.636Q22.052-45.825 21.755-45.825Q21.380-45.825 21.128-45.513Q20.876-45.200 20.759-44.767Q20.642-44.333 20.642-43.962Q20.642-43.564 20.755-43.083Q20.868-42.603 21.116-42.251Q21.364-41.899 21.755-41.899M24.138-41.657L24.138-41.747Q24.177-41.954 24.384-41.978L24.790-41.978L25.720-43.196L24.849-44.306L24.431-44.306Q24.236-44.325 24.185-44.548L24.185-44.634Q24.236-44.845 24.431-44.868L25.591-44.868Q25.790-44.845 25.841-44.634L25.841-44.548Q25.790-44.329 25.591-44.306L25.482-44.306L25.978-43.649L26.454-44.306L26.337-44.306Q26.138-44.329 26.087-44.548L26.087-44.634Q26.138-44.845 26.337-44.868L27.497-44.868Q27.693-44.849 27.743-44.634L27.743-44.548Q27.693-44.329 27.497-44.306L27.087-44.306L26.239-43.196L27.200-41.978L27.607-41.978Q27.806-41.954 27.857-41.747L27.857-41.657Q27.818-41.442 27.607-41.419L26.454-41.419Q26.247-41.442 26.208-41.657L26.208-41.747Q26.247-41.954 26.454-41.978L26.583-41.978L25.978-42.833L25.392-41.978L25.536-41.978Q25.743-41.954 25.782-41.747L25.782-41.657Q25.743-41.442 25.536-41.419L24.384-41.419Q24.189-41.439 24.138-41.657M30.247-41.341Q29.814-41.341 29.482-41.579Q29.150-41.817 28.929-42.206Q28.708-42.595 28.601-43.032Q28.493-43.470 28.493-43.868Q28.493-44.259 28.603-44.702Q28.712-45.146 28.929-45.526Q29.146-45.907 29.480-46.148Q29.814-46.388 30.247-46.388Q30.802-46.388 31.202-45.989Q31.603-45.591 31.800-45.005Q31.997-44.419 31.997-43.868Q31.997-43.314 31.800-42.726Q31.603-42.138 31.202-41.739Q30.802-41.341 30.247-41.341M30.247-41.899Q30.548-41.899 30.765-42.116Q30.982-42.333 31.109-42.661Q31.236-42.989 31.296-43.335Q31.357-43.681 31.357-43.962Q31.357-44.212 31.294-44.538Q31.232-44.864 31.101-45.155Q30.970-45.446 30.757-45.636Q30.544-45.825 30.247-45.825Q29.872-45.825 29.620-45.513Q29.368-45.200 29.251-44.767Q29.134-44.333 29.134-43.962Q29.134-43.564 29.247-43.083Q29.361-42.603 29.609-42.251Q29.857-41.899 30.247-41.899M32.798-41.657L32.798-41.731Q32.829-41.899 32.931-41.946L34.220-43.013Q34.552-43.290 34.734-43.442Q34.915-43.595 35.111-43.815Q35.306-44.036 35.427-44.286Q35.548-44.536 35.548-44.802Q35.548-45.126 35.372-45.360Q35.197-45.595 34.917-45.710Q34.638-45.825 34.318-45.825Q34.060-45.825 33.831-45.702Q33.603-45.579 33.501-45.364Q33.603-45.231 33.603-45.083Q33.603-44.923 33.484-44.800Q33.364-44.677 33.204-44.677Q33.029-44.677 32.913-44.802Q32.798-44.927 32.798-45.099Q32.798-45.392 32.933-45.634Q33.068-45.876 33.306-46.048Q33.544-46.220 33.812-46.304Q34.079-46.388 34.372-46.388Q34.853-46.388 35.269-46.198Q35.685-46.009 35.937-45.648Q36.189-45.286 36.189-44.802Q36.189-44.458 36.056-44.155Q35.923-43.853 35.698-43.593Q35.474-43.333 35.165-43.071Q34.857-42.810 34.646-42.634L33.837-41.978L35.548-41.978L35.548-42.122Q35.599-42.333 35.798-42.356L35.939-42.356Q36.138-42.337 36.189-42.122L36.189-41.657Q36.138-41.442 35.939-41.419L33.044-41.419Q32.849-41.439 32.798-41.657M37.954-41.634L37.954-41.692Q37.954-42.235 38.060-42.782Q38.165-43.329 38.370-43.853Q38.575-44.376 38.872-44.855Q39.169-45.333 39.548-45.747L37.611-45.747L37.611-45.610Q37.560-45.396 37.361-45.372L37.220-45.372Q37.021-45.396 36.970-45.610L36.970-46.204Q37.021-46.415 37.220-46.435L37.361-46.435Q37.497-46.423 37.572-46.306L40.259-46.306Q40.454-46.282 40.505-46.075L40.505-45.985Q40.493-45.896 40.450-45.845Q40.189-45.587 39.958-45.321Q39.728-45.056 39.566-44.823Q39.404-44.591 39.245-44.292Q39.087-43.993 38.954-43.642Q38.779-43.169 38.687-42.653Q38.595-42.138 38.595-41.634Q38.583-41.509 38.497-41.431Q38.411-41.353 38.290-41.341Q38.154-41.341 38.060-41.419Q37.966-41.497 37.954-41.634\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.789-41.618L-47.789-42.532Q-47.762-42.739-47.551-42.763L-47.383-42.763Q-47.219-42.739-47.160-42.579Q-46.957-41.939-46.230-41.939Q-46.023-41.939-45.795-41.974Q-45.566-42.009-45.398-42.124Q-45.230-42.239-45.230-42.442Q-45.230-42.653-45.453-42.767Q-45.676-42.880-45.949-42.923L-46.648-43.036Q-47.789-43.247-47.789-43.970Q-47.789-44.259-47.644-44.448Q-47.500-44.638-47.260-44.745Q-47.019-44.853-46.763-44.892Q-46.508-44.931-46.230-44.931Q-45.980-44.931-45.787-44.901Q-45.594-44.872-45.429-44.794Q-45.351-44.911-45.222-44.931L-45.144-44.931Q-45.047-44.919-44.984-44.856Q-44.922-44.794-44.910-44.700L-44.910-43.993Q-44.922-43.899-44.984-43.833Q-45.047-43.767-45.144-43.755L-45.312-43.755Q-45.406-43.767-45.472-43.833Q-45.539-43.899-45.551-43.993Q-45.551-44.372-46.246-44.372Q-46.594-44.372-46.912-44.290Q-47.230-44.208-47.230-43.962Q-47.230-43.696-46.558-43.587L-45.855-43.466Q-45.371-43.384-45.021-43.136Q-44.672-42.888-44.672-42.442Q-44.672-42.052-44.908-41.810Q-45.144-41.567-45.494-41.474Q-45.844-41.380-46.230-41.380Q-46.808-41.380-47.207-41.634Q-47.277-41.509-47.326-41.452Q-47.375-41.396-47.480-41.380L-47.551-41.380Q-47.765-41.403-47.789-41.618M-44.058-39.876L-44.058-39.962Q-44.015-40.181-43.808-40.204L-43.387-40.204L-43.387-44.306L-43.808-44.306Q-44.015-44.329-44.058-44.548L-44.058-44.634Q-44.012-44.845-43.808-44.868L-42.992-44.868Q-42.797-44.849-42.746-44.634L-42.746-44.564Q-42.535-44.731-42.271-44.819Q-42.008-44.907-41.738-44.907Q-41.398-44.907-41.101-44.763Q-40.804-44.618-40.590-44.366Q-40.375-44.114-40.260-43.802Q-40.144-43.489-40.144-43.146Q-40.144-42.681-40.371-42.271Q-40.597-41.860-40.984-41.620Q-41.371-41.380-41.840-41.380Q-42.359-41.380-42.746-41.747L-42.746-40.204L-42.320-40.204Q-42.113-40.181-42.074-39.962L-42.074-39.876Q-42.113-39.665-42.320-39.642L-43.808-39.642Q-44.012-39.665-44.058-39.876M-41.883-41.939Q-41.574-41.939-41.324-42.108Q-41.074-42.278-40.929-42.560Q-40.785-42.841-40.785-43.146Q-40.785-43.435-40.910-43.714Q-41.035-43.993-41.267-44.171Q-41.500-44.349-41.801-44.349Q-42.121-44.349-42.383-44.163Q-42.644-43.978-42.746-43.677L-42.746-42.825Q-42.656-42.458-42.435-42.198Q-42.215-41.939-41.883-41.939\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-18.199-41.657L-18.199-41.731Q-18.168-41.899-18.066-41.946L-16.777-43.013Q-16.445-43.290-16.263-43.442Q-16.082-43.595-15.887-43.815Q-15.691-44.036-15.570-44.286Q-15.449-44.536-15.449-44.802Q-15.449-45.126-15.625-45.360Q-15.801-45.595-16.080-45.710Q-16.359-45.825-16.680-45.825Q-16.937-45.825-17.166-45.702Q-17.394-45.579-17.496-45.364Q-17.394-45.231-17.394-45.083Q-17.394-44.923-17.513-44.800Q-17.633-44.677-17.793-44.677Q-17.969-44.677-18.084-44.802Q-18.199-44.927-18.199-45.099Q-18.199-45.392-18.064-45.634Q-17.930-45.876-17.691-46.048Q-17.453-46.220-17.185-46.304Q-16.918-46.388-16.625-46.388Q-16.144-46.388-15.728-46.198Q-15.312-46.009-15.060-45.648Q-14.808-45.286-14.808-44.802Q-14.808-44.458-14.941-44.155Q-15.074-43.853-15.299-43.593Q-15.523-43.333-15.832-43.071Q-16.140-42.810-16.351-42.634L-17.160-41.978L-15.449-41.978L-15.449-42.122Q-15.398-42.333-15.199-42.356L-15.058-42.356Q-14.859-42.337-14.808-42.122L-14.808-41.657Q-14.859-41.442-15.058-41.419L-17.953-41.419Q-18.148-41.439-18.199-41.657M-12.258-41.341Q-12.691-41.341-13.023-41.579Q-13.355-41.817-13.576-42.206Q-13.797-42.595-13.904-43.032Q-14.012-43.470-14.012-43.868Q-14.012-44.259-13.902-44.702Q-13.793-45.146-13.576-45.526Q-13.359-45.907-13.025-46.148Q-12.691-46.388-12.258-46.388Q-11.703-46.388-11.303-45.989Q-10.902-45.591-10.705-45.005Q-10.508-44.419-10.508-43.868Q-10.508-43.314-10.705-42.726Q-10.902-42.138-11.303-41.739Q-11.703-41.341-12.258-41.341M-12.258-41.899Q-11.957-41.899-11.740-42.116Q-11.523-42.333-11.396-42.661Q-11.269-42.989-11.209-43.335Q-11.148-43.681-11.148-43.962Q-11.148-44.212-11.211-44.538Q-11.273-44.864-11.404-45.155Q-11.535-45.446-11.748-45.636Q-11.961-45.825-12.258-45.825Q-12.633-45.825-12.885-45.513Q-13.137-45.200-13.254-44.767Q-13.371-44.333-13.371-43.962Q-13.371-43.564-13.258-43.083Q-13.144-42.603-12.896-42.251Q-12.648-41.899-12.258-41.899M-8.012-41.341Q-8.445-41.341-8.777-41.579Q-9.109-41.817-9.330-42.206Q-9.551-42.595-9.658-43.032Q-9.765-43.470-9.765-43.868Q-9.765-44.259-9.656-44.702Q-9.547-45.146-9.330-45.526Q-9.113-45.907-8.779-46.148Q-8.445-46.388-8.012-46.388Q-7.457-46.388-7.056-45.989Q-6.656-45.591-6.459-45.005Q-6.262-44.419-6.262-43.868Q-6.262-43.314-6.459-42.726Q-6.656-42.138-7.056-41.739Q-7.457-41.341-8.012-41.341M-8.012-41.899Q-7.711-41.899-7.494-42.116Q-7.277-42.333-7.150-42.661Q-7.023-42.989-6.963-43.335Q-6.902-43.681-6.902-43.962Q-6.902-44.212-6.965-44.538Q-7.027-44.864-7.158-45.155Q-7.289-45.446-7.502-45.636Q-7.715-45.825-8.012-45.825Q-8.387-45.825-8.638-45.513Q-8.890-45.200-9.008-44.767Q-9.125-44.333-9.125-43.962Q-9.125-43.564-9.012-43.083Q-8.898-42.603-8.650-42.251Q-8.402-41.899-8.012-41.899M-4.168-40.306Q-4.281-40.306-4.371-40.396Q-4.461-40.485-4.461-40.595Q-4.461-40.771-4.269-40.845Q-4.051-40.896-3.879-41.054Q-3.707-41.212-3.640-41.435Q-3.664-41.435-3.695-41.419L-3.758-41.419Q-3.988-41.419-4.154-41.581Q-4.320-41.743-4.320-41.978Q-4.320-42.212-4.156-42.372Q-3.992-42.532-3.758-42.532Q-3.547-42.532-3.383-42.411Q-3.219-42.290-3.129-42.097Q-3.039-41.903-3.039-41.692Q-3.039-41.216-3.338-40.827Q-3.637-40.439-4.101-40.314Q-4.125-40.306-4.168-40.306\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M2.817-41.657L2.817-41.747Q2.856-41.954 3.067-41.978L3.375-41.978L3.375-45.747L3.067-45.747Q2.856-45.771 2.817-45.985L2.817-46.075Q2.856-46.282 3.067-46.306L5.016-46.306Q5.414-46.306 5.760-46.105Q6.106-45.903 6.313-45.558Q6.520-45.212 6.520-44.810Q6.520-44.403 6.315-44.060Q6.110-43.716 5.764-43.511Q5.418-43.306 5.016-43.306L4.016-43.306L4.016-41.978L4.328-41.978Q4.539-41.954 4.578-41.747L4.578-41.657Q4.539-41.442 4.328-41.419L3.067-41.419Q2.856-41.442 2.817-41.657M4.016-45.747L4.016-43.868L4.856-43.868Q5.117-43.868 5.354-43.991Q5.590-44.114 5.735-44.329Q5.879-44.544 5.879-44.810Q5.879-45.079 5.735-45.290Q5.590-45.501 5.354-45.624Q5.117-45.747 4.856-45.747L4.016-45.747M9.145-41.341Q8.695-41.341 8.330-41.565Q7.965-41.790 7.711-42.173Q7.457-42.556 7.332-42.999Q7.207-43.442 7.207-43.868Q7.207-44.294 7.332-44.733Q7.457-45.173 7.711-45.556Q7.965-45.939 8.324-46.163Q8.684-46.388 9.145-46.388Q9.422-46.388 9.680-46.296Q9.938-46.204 10.153-46.036L10.285-46.274Q10.313-46.325 10.367-46.356Q10.422-46.388 10.481-46.388L10.559-46.388Q10.653-46.376 10.715-46.317Q10.778-46.259 10.789-46.153L10.789-44.825Q10.778-44.724 10.715-44.661Q10.653-44.599 10.559-44.587L10.391-44.587Q10.289-44.599 10.227-44.665Q10.164-44.731 10.153-44.825Q10.113-45.091 9.990-45.315Q9.867-45.540 9.664-45.683Q9.461-45.825 9.199-45.825Q8.867-45.825 8.615-45.642Q8.363-45.458 8.192-45.157Q8.020-44.856 7.934-44.515Q7.848-44.173 7.848-43.868Q7.848-43.564 7.932-43.222Q8.016-42.880 8.188-42.577Q8.360-42.274 8.617-42.087Q8.875-41.899 9.207-41.899Q9.590-41.899 9.871-42.173Q10.153-42.446 10.153-42.833Q10.180-43.044 10.391-43.067L10.559-43.067Q10.789-43.028 10.789-42.802Q10.789-42.485 10.653-42.214Q10.516-41.942 10.281-41.745Q10.047-41.548 9.756-41.444Q9.465-41.341 9.145-41.341\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M19.032-42.954L15.986-42.954Q15.864-42.966 15.777-43.050Q15.689-43.134 15.689-43.259Q15.689-43.384 15.773-43.468Q15.857-43.552 15.986-43.571L19.032-43.571Q19.157-43.552 19.239-43.468Q19.322-43.384 19.322-43.259Q19.322-43.134 19.238-43.050Q19.154-42.966 19.032-42.954M19.032-44.161L15.986-44.161Q15.853-44.181 15.771-44.259Q15.689-44.337 15.689-44.466Q15.689-44.591 15.773-44.675Q15.857-44.759 15.986-44.778L19.032-44.778Q19.157-44.759 19.239-44.675Q19.322-44.591 19.322-44.466Q19.322-44.337 19.241-44.259Q19.161-44.181 19.032-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 252.273)\">\u003Cpath d=\"M26.005-41.341Q25.572-41.341 25.239-41.579Q24.907-41.817 24.687-42.206Q24.466-42.595 24.359-43.032Q24.251-43.470 24.251-43.868Q24.251-44.259 24.361-44.702Q24.470-45.146 24.687-45.526Q24.904-45.907 25.238-46.148Q25.572-46.388 26.005-46.388Q26.560-46.388 26.960-45.989Q27.361-45.591 27.558-45.005Q27.755-44.419 27.755-43.868Q27.755-43.314 27.558-42.726Q27.361-42.138 26.960-41.739Q26.560-41.341 26.005-41.341M26.005-41.899Q26.306-41.899 26.523-42.116Q26.739-42.333 26.866-42.661Q26.993-42.989 27.054-43.335Q27.114-43.681 27.114-43.962Q27.114-44.212 27.052-44.538Q26.989-44.864 26.859-45.155Q26.728-45.446 26.515-45.636Q26.302-45.825 26.005-45.825Q25.630-45.825 25.378-45.513Q25.126-45.200 25.009-44.767Q24.892-44.333 24.892-43.962Q24.892-43.564 25.005-43.083Q25.118-42.603 25.366-42.251Q25.614-41.899 26.005-41.899M28.388-41.657L28.388-41.747Q28.427-41.954 28.634-41.978L29.040-41.978L29.970-43.196L29.099-44.306L28.681-44.306Q28.486-44.325 28.435-44.548L28.435-44.634Q28.486-44.845 28.681-44.868L29.841-44.868Q30.040-44.845 30.091-44.634L30.091-44.548Q30.040-44.329 29.841-44.306L29.732-44.306L30.228-43.649L30.704-44.306L30.587-44.306Q30.388-44.329 30.337-44.548L30.337-44.634Q30.388-44.845 30.587-44.868L31.747-44.868Q31.943-44.849 31.993-44.634L31.993-44.548Q31.943-44.329 31.747-44.306L31.337-44.306L30.489-43.196L31.450-41.978L31.857-41.978Q32.056-41.954 32.107-41.747L32.107-41.657Q32.068-41.442 31.857-41.419L30.704-41.419Q30.497-41.442 30.458-41.657L30.458-41.747Q30.497-41.954 30.704-41.978L30.833-41.978L30.228-42.833L29.642-41.978L29.786-41.978Q29.993-41.954 30.032-41.747L30.032-41.657Q29.993-41.442 29.786-41.419L28.634-41.419Q28.439-41.439 28.388-41.657M34.497-41.341Q34.064-41.341 33.732-41.579Q33.400-41.817 33.179-42.206Q32.958-42.595 32.851-43.032Q32.743-43.470 32.743-43.868Q32.743-44.259 32.853-44.702Q32.962-45.146 33.179-45.526Q33.396-45.907 33.730-46.148Q34.064-46.388 34.497-46.388Q35.052-46.388 35.452-45.989Q35.853-45.591 36.050-45.005Q36.247-44.419 36.247-43.868Q36.247-43.314 36.050-42.726Q35.853-42.138 35.452-41.739Q35.052-41.341 34.497-41.341M34.497-41.899Q34.798-41.899 35.015-42.116Q35.232-42.333 35.359-42.661Q35.486-42.989 35.546-43.335Q35.607-43.681 35.607-43.962Q35.607-44.212 35.544-44.538Q35.482-44.864 35.351-45.155Q35.220-45.446 35.007-45.636Q34.794-45.825 34.497-45.825Q34.122-45.825 33.870-45.513Q33.618-45.200 33.501-44.767Q33.384-44.333 33.384-43.962Q33.384-43.564 33.497-43.083Q33.611-42.603 33.859-42.251Q34.107-41.899 34.497-41.899M37.048-41.657L37.048-41.731Q37.079-41.899 37.181-41.946L38.470-43.013Q38.802-43.290 38.984-43.442Q39.165-43.595 39.361-43.815Q39.556-44.036 39.677-44.286Q39.798-44.536 39.798-44.802Q39.798-45.126 39.622-45.360Q39.447-45.595 39.167-45.710Q38.888-45.825 38.568-45.825Q38.310-45.825 38.081-45.702Q37.853-45.579 37.751-45.364Q37.853-45.231 37.853-45.083Q37.853-44.923 37.734-44.800Q37.614-44.677 37.454-44.677Q37.279-44.677 37.163-44.802Q37.048-44.927 37.048-45.099Q37.048-45.392 37.183-45.634Q37.318-45.876 37.556-46.048Q37.794-46.220 38.062-46.304Q38.329-46.388 38.622-46.388Q39.103-46.388 39.519-46.198Q39.935-46.009 40.187-45.648Q40.439-45.286 40.439-44.802Q40.439-44.458 40.306-44.155Q40.173-43.853 39.948-43.593Q39.724-43.333 39.415-43.071Q39.107-42.810 38.896-42.634L38.087-41.978L39.798-41.978L39.798-42.122Q39.849-42.333 40.048-42.356L40.189-42.356Q40.388-42.337 40.439-42.122L40.439-41.657Q40.388-41.442 40.189-41.419L37.294-41.419Q37.099-41.439 37.048-41.657M42.204-41.634L42.204-41.692Q42.204-42.235 42.310-42.782Q42.415-43.329 42.620-43.853Q42.825-44.376 43.122-44.855Q43.419-45.333 43.798-45.747L41.861-45.747L41.861-45.610Q41.810-45.396 41.611-45.372L41.470-45.372Q41.271-45.396 41.220-45.610L41.220-46.204Q41.271-46.415 41.470-46.435L41.611-46.435Q41.747-46.423 41.822-46.306L44.509-46.306Q44.704-46.282 44.755-46.075L44.755-45.985Q44.743-45.896 44.700-45.845Q44.439-45.587 44.208-45.321Q43.978-45.056 43.816-44.823Q43.654-44.591 43.495-44.292Q43.337-43.993 43.204-43.642Q43.029-43.169 42.937-42.653Q42.845-42.138 42.845-41.634Q42.833-41.509 42.747-41.431Q42.661-41.353 42.540-41.341Q42.404-41.341 42.310-41.419Q42.216-41.497 42.204-41.634\" 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 218.355h432.481\"\u002F>\u003Cg transform=\"translate(-2.157 271.323)\">\u003Cpath d=\"M-56.441-41.657L-56.441-41.731Q-56.410-41.899-56.308-41.946L-55.019-43.013Q-54.687-43.290-54.506-43.442Q-54.324-43.595-54.129-43.815Q-53.933-44.036-53.812-44.286Q-53.691-44.536-53.691-44.802Q-53.691-45.126-53.867-45.360Q-54.043-45.595-54.322-45.710Q-54.601-45.825-54.922-45.825Q-55.179-45.825-55.408-45.702Q-55.637-45.579-55.738-45.364Q-55.637-45.231-55.637-45.083Q-55.637-44.923-55.756-44.800Q-55.875-44.677-56.035-44.677Q-56.211-44.677-56.326-44.802Q-56.441-44.927-56.441-45.099Q-56.441-45.392-56.306-45.634Q-56.172-45.876-55.933-46.048Q-55.695-46.220-55.428-46.304Q-55.160-46.388-54.867-46.388Q-54.387-46.388-53.971-46.198Q-53.554-46.009-53.303-45.648Q-53.051-45.286-53.051-44.802Q-53.051-44.458-53.183-44.155Q-53.316-43.853-53.541-43.593Q-53.765-43.333-54.074-43.071Q-54.383-42.810-54.594-42.634L-55.402-41.978L-53.691-41.978L-53.691-42.122Q-53.640-42.333-53.441-42.356L-53.301-42.356Q-53.101-42.337-53.051-42.122L-53.051-41.657Q-53.101-41.442-53.301-41.419L-56.195-41.419Q-56.390-41.439-56.441-41.657M-52.054-42.220Q-52.054-42.396-51.939-42.519Q-51.824-42.642-51.644-42.642Q-51.476-42.642-51.361-42.526Q-51.246-42.411-51.246-42.235Q-51.246-42.114-51.308-42.013Q-51.160-41.899-50.851-41.899Q-50.547-41.899-50.293-42.050Q-50.039-42.200-49.857-42.446Q-49.676-42.692-49.568-42.985Q-49.461-43.278-49.429-43.556Q-49.668-43.356-49.976-43.251Q-50.285-43.146-50.605-43.146Q-51.051-43.146-51.424-43.362Q-51.797-43.579-52.013-43.948Q-52.230-44.317-52.230-44.763Q-52.230-45.235-51.984-45.606Q-51.738-45.978-51.332-46.183Q-50.926-46.388-50.453-46.388Q-49.969-46.388-49.637-46.159Q-49.304-45.931-49.117-45.558Q-48.929-45.185-48.851-44.755Q-48.773-44.325-48.773-43.868Q-48.773-43.259-49.027-42.671Q-49.281-42.083-49.758-41.712Q-50.234-41.341-50.851-41.341Q-51.347-41.341-51.701-41.550Q-52.054-41.759-52.054-42.220M-50.551-43.708Q-50.164-43.708-49.828-43.937Q-49.492-44.165-49.492-44.532Q-49.492-44.571-49.508-44.649Q-49.523-44.728-49.523-44.763Q-49.523-44.774-49.515-44.806Q-49.508-44.837-49.508-44.845Q-49.570-45.095-49.689-45.315Q-49.808-45.536-50.002-45.681Q-50.195-45.825-50.453-45.825Q-50.926-45.825-51.258-45.524Q-51.590-45.224-51.590-44.763Q-51.590-44.481-51.453-44.235Q-51.316-43.989-51.078-43.849Q-50.840-43.708-50.551-43.708\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(24.873 271.323)\">\u003Cpath d=\"M-54.746-41.341Q-55.179-41.341-55.512-41.579Q-55.844-41.817-56.064-42.206Q-56.285-42.595-56.392-43.032Q-56.500-43.470-56.500-43.868Q-56.500-44.259-56.390-44.702Q-56.281-45.146-56.064-45.526Q-55.847-45.907-55.513-46.148Q-55.179-46.388-54.746-46.388Q-54.191-46.388-53.791-45.989Q-53.390-45.591-53.193-45.005Q-52.996-44.419-52.996-43.868Q-52.996-43.314-53.193-42.726Q-53.390-42.138-53.791-41.739Q-54.191-41.341-54.746-41.341M-54.746-41.899Q-54.445-41.899-54.228-42.116Q-54.012-42.333-53.885-42.661Q-53.758-42.989-53.697-43.335Q-53.637-43.681-53.637-43.962Q-53.637-44.212-53.699-44.538Q-53.762-44.864-53.892-45.155Q-54.023-45.446-54.236-45.636Q-54.449-45.825-54.746-45.825Q-55.121-45.825-55.373-45.513Q-55.625-45.200-55.742-44.767Q-55.859-44.333-55.859-43.962Q-55.859-43.564-55.746-43.083Q-55.633-42.603-55.385-42.251Q-55.137-41.899-54.746-41.899M-52.363-41.657L-52.363-41.747Q-52.324-41.954-52.117-41.978L-51.711-41.978L-50.781-43.196L-51.652-44.306L-52.070-44.306Q-52.265-44.325-52.316-44.548L-52.316-44.634Q-52.265-44.845-52.070-44.868L-50.910-44.868Q-50.711-44.845-50.660-44.634L-50.660-44.548Q-50.711-44.329-50.910-44.306L-51.019-44.306L-50.523-43.649L-50.047-44.306L-50.164-44.306Q-50.363-44.329-50.414-44.548L-50.414-44.634Q-50.363-44.845-50.164-44.868L-49.004-44.868Q-48.808-44.849-48.758-44.634L-48.758-44.548Q-48.808-44.329-49.004-44.306L-49.414-44.306L-50.262-43.196L-49.301-41.978L-48.894-41.978Q-48.695-41.954-48.644-41.747L-48.644-41.657Q-48.683-41.442-48.894-41.419L-50.047-41.419Q-50.254-41.442-50.293-41.657L-50.293-41.747Q-50.254-41.954-50.047-41.978L-49.918-41.978L-50.523-42.833L-51.109-41.978L-50.965-41.978Q-50.758-41.954-50.719-41.747L-50.719-41.657Q-50.758-41.442-50.965-41.419L-52.117-41.419Q-52.312-41.439-52.363-41.657M-46.254-41.341Q-46.687-41.341-47.019-41.579Q-47.351-41.817-47.572-42.206Q-47.793-42.595-47.900-43.032Q-48.008-43.470-48.008-43.868Q-48.008-44.259-47.898-44.702Q-47.789-45.146-47.572-45.526Q-47.355-45.907-47.021-46.148Q-46.687-46.388-46.254-46.388Q-45.699-46.388-45.299-45.989Q-44.898-45.591-44.701-45.005Q-44.504-44.419-44.504-43.868Q-44.504-43.314-44.701-42.726Q-44.898-42.138-45.299-41.739Q-45.699-41.341-46.254-41.341M-46.254-41.899Q-45.953-41.899-45.736-42.116Q-45.519-42.333-45.392-42.661Q-45.265-42.989-45.205-43.335Q-45.144-43.681-45.144-43.962Q-45.144-44.212-45.207-44.538Q-45.269-44.864-45.400-45.155Q-45.531-45.446-45.744-45.636Q-45.957-45.825-46.254-45.825Q-46.629-45.825-46.881-45.513Q-47.133-45.200-47.250-44.767Q-47.367-44.333-47.367-43.962Q-47.367-43.564-47.254-43.083Q-47.140-42.603-46.892-42.251Q-46.644-41.899-46.254-41.899M-43.703-41.657L-43.703-41.731Q-43.672-41.899-43.570-41.946L-42.281-43.013Q-41.949-43.290-41.767-43.442Q-41.586-43.595-41.390-43.815Q-41.195-44.036-41.074-44.286Q-40.953-44.536-40.953-44.802Q-40.953-45.126-41.129-45.360Q-41.304-45.595-41.584-45.710Q-41.863-45.825-42.183-45.825Q-42.441-45.825-42.670-45.702Q-42.898-45.579-43-45.364Q-42.898-45.231-42.898-45.083Q-42.898-44.923-43.017-44.800Q-43.137-44.677-43.297-44.677Q-43.472-44.677-43.588-44.802Q-43.703-44.927-43.703-45.099Q-43.703-45.392-43.568-45.634Q-43.433-45.876-43.195-46.048Q-42.957-46.220-42.689-46.304Q-42.422-46.388-42.129-46.388Q-41.648-46.388-41.232-46.198Q-40.816-46.009-40.564-45.648Q-40.312-45.286-40.312-44.802Q-40.312-44.458-40.445-44.155Q-40.578-43.853-40.803-43.593Q-41.027-43.333-41.336-43.071Q-41.644-42.810-41.855-42.634L-42.664-41.978L-40.953-41.978L-40.953-42.122Q-40.902-42.333-40.703-42.356L-40.562-42.356Q-40.363-42.337-40.312-42.122L-40.312-41.657Q-40.363-41.442-40.562-41.419L-43.457-41.419Q-43.652-41.439-43.703-41.657M-38.547-41.634L-38.547-41.692Q-38.547-42.235-38.441-42.782Q-38.336-43.329-38.131-43.853Q-37.926-44.376-37.629-44.855Q-37.332-45.333-36.953-45.747L-38.890-45.747L-38.890-45.610Q-38.941-45.396-39.140-45.372L-39.281-45.372Q-39.480-45.396-39.531-45.610L-39.531-46.204Q-39.480-46.415-39.281-46.435L-39.140-46.435Q-39.004-46.423-38.929-46.306L-36.242-46.306Q-36.047-46.282-35.996-46.075L-35.996-45.985Q-36.008-45.896-36.051-45.845Q-36.312-45.587-36.543-45.321Q-36.773-45.056-36.935-44.823Q-37.097-44.591-37.256-44.292Q-37.414-43.993-37.547-43.642Q-37.722-43.169-37.814-42.653Q-37.906-42.138-37.906-41.634Q-37.918-41.509-38.004-41.431Q-38.090-41.353-38.211-41.341Q-38.347-41.341-38.441-41.419Q-38.535-41.497-38.547-41.634\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(61.861 271.323)\">\u003Cpath d=\"M-56.797-41.657L-56.797-41.747Q-56.754-41.954-56.547-41.978L-56.125-41.978L-56.125-45.747L-56.547-45.747Q-56.754-45.771-56.797-45.985L-56.797-46.075Q-56.754-46.282-56.547-46.306L-55.730-46.306Q-55.535-46.282-55.484-46.075L-55.484-44.524Q-55.023-44.907-54.426-44.907Q-54.078-44.907-53.840-44.767Q-53.601-44.626-53.486-44.368Q-53.371-44.110-53.371-43.755L-53.371-41.978L-52.945-41.978Q-52.738-41.954-52.699-41.747L-52.699-41.657Q-52.738-41.442-52.945-41.419L-54.340-41.419Q-54.535-41.442-54.586-41.657L-54.586-41.747Q-54.535-41.958-54.340-41.978L-54.012-41.978L-54.012-43.724Q-54.012-44.032-54.101-44.190Q-54.191-44.349-54.484-44.349Q-54.754-44.349-54.982-44.218Q-55.211-44.087-55.347-43.858Q-55.484-43.630-55.484-43.364L-55.484-41.978L-55.058-41.978Q-54.851-41.954-54.812-41.747L-54.812-41.657Q-54.851-41.442-55.058-41.419L-56.547-41.419Q-56.754-41.442-56.797-41.657M-52.215-42.532Q-52.215-42.978-51.801-43.235Q-51.387-43.493-50.846-43.593Q-50.304-43.692-49.797-43.700Q-49.797-43.915-49.931-44.067Q-50.066-44.220-50.273-44.296Q-50.480-44.372-50.691-44.372Q-51.035-44.372-51.195-44.349L-51.195-44.290Q-51.195-44.122-51.314-44.007Q-51.433-43.892-51.597-43.892Q-51.773-43.892-51.888-44.015Q-52.004-44.138-52.004-44.306Q-52.004-44.712-51.623-44.821Q-51.242-44.931-50.683-44.931Q-50.414-44.931-50.146-44.853Q-49.879-44.774-49.654-44.624Q-49.429-44.474-49.293-44.253Q-49.156-44.032-49.156-43.755L-49.156-42.036Q-49.156-41.978-48.629-41.978Q-48.433-41.958-48.383-41.747L-48.383-41.657Q-48.433-41.442-48.629-41.419L-48.773-41.419Q-49.117-41.419-49.346-41.466Q-49.574-41.513-49.719-41.700Q-50.179-41.380-50.887-41.380Q-51.222-41.380-51.527-41.521Q-51.832-41.661-52.023-41.923Q-52.215-42.185-52.215-42.532M-51.574-42.524Q-51.574-42.251-51.332-42.095Q-51.090-41.939-50.804-41.939Q-50.586-41.939-50.353-41.997Q-50.121-42.056-49.959-42.194Q-49.797-42.333-49.797-42.556L-49.797-43.146Q-50.078-43.146-50.494-43.089Q-50.910-43.032-51.242-42.894Q-51.574-42.755-51.574-42.524M-47.926-41.657L-47.926-41.747Q-47.875-41.954-47.679-41.978L-46.574-41.978L-46.574-45.747L-47.679-45.747Q-47.875-45.771-47.926-45.985L-47.926-46.075Q-47.875-46.282-47.679-46.306L-46.183-46.306Q-45.992-46.282-45.933-46.075L-45.933-41.978L-44.832-41.978Q-44.633-41.954-44.582-41.747L-44.582-41.657Q-44.633-41.442-44.832-41.419L-47.679-41.419Q-47.875-41.442-47.926-41.657M-42.929-42.524L-42.929-44.306L-43.679-44.306Q-43.879-44.329-43.929-44.548L-43.929-44.634Q-43.879-44.845-43.679-44.868L-42.929-44.868L-42.929-45.618Q-42.879-45.825-42.679-45.853L-42.535-45.853Q-42.340-45.825-42.289-45.618L-42.289-44.868L-40.929-44.868Q-40.738-44.849-40.679-44.634L-40.679-44.548Q-40.734-44.329-40.929-44.306L-42.289-44.306L-42.289-42.556Q-42.289-41.939-41.715-41.939Q-41.465-41.939-41.301-42.124Q-41.137-42.310-41.137-42.556Q-41.137-42.649-41.064-42.720Q-40.992-42.790-40.890-42.802L-40.746-42.802Q-40.547-42.778-40.496-42.571L-40.496-42.524Q-40.496-42.200-40.679-41.937Q-40.863-41.673-41.156-41.526Q-41.449-41.380-41.769-41.380Q-42.281-41.380-42.605-41.690Q-42.929-42.001-42.929-42.524\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(158.6 271.323)\">\u003Cpath d=\"M-56.441-41.579L-56.441-42.810Q-56.414-43.021-56.203-43.044L-56.035-43.044Q-55.941-43.032-55.879-42.974Q-55.816-42.915-55.804-42.810Q-55.804-42.317-55.439-42.108Q-55.074-41.899-54.539-41.899Q-54.304-41.899-54.101-42.007Q-53.898-42.114-53.775-42.308Q-53.652-42.501-53.652-42.731Q-53.652-43.028-53.847-43.251Q-54.043-43.474-54.332-43.540L-55.340-43.771Q-55.640-43.841-55.892-44.026Q-56.144-44.212-56.293-44.480Q-56.441-44.747-56.441-45.060Q-56.441-45.439-56.232-45.743Q-56.023-46.048-55.681-46.218Q-55.340-46.388-54.965-46.388Q-54.289-46.388-53.859-46.060L-53.789-46.243Q-53.715-46.364-53.578-46.388L-53.500-46.388Q-53.402-46.376-53.340-46.314Q-53.277-46.251-53.265-46.153L-53.265-44.923Q-53.289-44.712-53.500-44.685L-53.668-44.685Q-53.863-44.708-53.898-44.892Q-53.961-45.345-54.228-45.585Q-54.496-45.825-54.957-45.825Q-55.164-45.825-55.371-45.737Q-55.578-45.649-55.711-45.481Q-55.844-45.314-55.844-45.099Q-55.844-44.845-55.650-44.648Q-55.457-44.450-55.187-44.388L-54.179-44.161Q-53.851-44.083-53.597-43.880Q-53.344-43.677-53.197-43.382Q-53.051-43.087-53.051-42.771Q-53.051-42.372-53.254-42.046Q-53.457-41.720-53.801-41.530Q-54.144-41.341-54.531-41.341Q-55.332-41.341-55.851-41.657L-55.922-41.481Q-55.992-41.364-56.133-41.341L-56.203-41.341Q-56.418-41.364-56.441-41.579M-51.422-42.524L-51.422-44.306L-52.172-44.306Q-52.371-44.329-52.422-44.548L-52.422-44.634Q-52.371-44.845-52.172-44.868L-51.422-44.868L-51.422-45.618Q-51.371-45.825-51.172-45.853L-51.027-45.853Q-50.832-45.825-50.781-45.618L-50.781-44.868L-49.422-44.868Q-49.230-44.849-49.172-44.634L-49.172-44.548Q-49.226-44.329-49.422-44.306L-50.781-44.306L-50.781-42.556Q-50.781-41.939-50.207-41.939Q-49.957-41.939-49.793-42.124Q-49.629-42.310-49.629-42.556Q-49.629-42.649-49.556-42.720Q-49.484-42.790-49.383-42.802L-49.238-42.802Q-49.039-42.778-48.988-42.571L-48.988-42.524Q-48.988-42.200-49.172-41.937Q-49.355-41.673-49.648-41.526Q-49.941-41.380-50.262-41.380Q-50.773-41.380-51.097-41.690Q-51.422-42.001-51.422-42.524M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-42.929-42.524L-42.929-44.306L-43.679-44.306Q-43.879-44.329-43.929-44.548L-43.929-44.634Q-43.879-44.845-43.679-44.868L-42.929-44.868L-42.929-45.618Q-42.879-45.825-42.679-45.853L-42.535-45.853Q-42.340-45.825-42.289-45.618L-42.289-44.868L-40.929-44.868Q-40.738-44.849-40.679-44.634L-40.679-44.548Q-40.734-44.329-40.929-44.306L-42.289-44.306L-42.289-42.556Q-42.289-41.939-41.715-41.939Q-41.465-41.939-41.301-42.124Q-41.137-42.310-41.137-42.556Q-41.137-42.649-41.064-42.720Q-40.992-42.790-40.890-42.802L-40.746-42.802Q-40.547-42.778-40.496-42.571L-40.496-42.524Q-40.496-42.200-40.679-41.937Q-40.863-41.673-41.156-41.526Q-41.449-41.380-41.769-41.380Q-42.281-41.380-42.605-41.690Q-42.929-42.001-42.929-42.524\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 271.323)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(158.6 271.323)\">\u003Cpath d=\"M-26.972-41.657L-26.972-41.747Q-26.922-41.954-26.726-41.978L-26.453-41.978L-26.453-45.747L-26.726-45.747Q-26.922-45.771-26.972-45.985L-26.972-46.075Q-26.922-46.282-26.726-46.306L-25.543-46.306Q-25.344-46.282-25.293-46.075L-25.293-45.985Q-25.344-45.771-25.543-45.747L-25.812-45.747L-25.812-44.243L-24.180-44.243L-24.180-45.747L-24.453-45.747Q-24.644-45.771-24.703-45.985L-24.703-46.075Q-24.644-46.282-24.453-46.306L-23.269-46.306Q-23.078-46.282-23.019-46.075L-23.019-45.985Q-23.078-45.771-23.269-45.747L-23.543-45.747L-23.543-41.978L-23.269-41.978Q-23.078-41.954-23.019-41.747L-23.019-41.657Q-23.078-41.442-23.269-41.419L-24.453-41.419Q-24.644-41.442-24.703-41.657L-24.703-41.747Q-24.644-41.954-24.453-41.978L-24.180-41.978L-24.180-43.685L-25.812-43.685L-25.812-41.978L-25.543-41.978Q-25.344-41.954-25.293-41.747L-25.293-41.657Q-25.344-41.442-25.543-41.419L-26.726-41.419Q-26.922-41.442-26.972-41.657M-22.648-41.657L-22.648-41.747Q-22.590-41.954-22.398-41.978L-22.031-41.978L-22.031-45.747L-22.398-45.747Q-22.590-45.771-22.648-45.985L-22.648-46.075Q-22.590-46.282-22.398-46.306L-20.871-46.306Q-20.676-46.282-20.625-46.075L-20.625-45.985Q-20.676-45.771-20.871-45.747L-21.390-45.747L-21.390-41.978L-19.558-41.978L-19.558-42.618Q-19.508-42.825-19.312-42.853L-19.168-42.853Q-18.969-42.825-18.918-42.618L-18.918-41.657Q-18.969-41.442-19.168-41.419L-22.398-41.419Q-22.590-41.442-22.648-41.657M-17.562-41.657L-17.562-41.747Q-17.504-41.954-17.312-41.978L-16.824-41.978L-16.824-45.747L-17.769-45.747L-17.769-45.235Q-17.816-45.021-18.015-44.993L-18.160-44.993Q-18.359-45.021-18.410-45.235L-18.410-46.075Q-18.359-46.282-18.160-46.306L-14.847-46.306Q-14.652-46.286-14.601-46.075L-14.601-45.235Q-14.648-45.021-14.847-44.993L-14.992-44.993Q-15.191-45.021-15.242-45.235L-15.242-45.747L-16.183-45.747L-16.183-41.978L-15.695-41.978Q-15.500-41.954-15.449-41.747L-15.449-41.657Q-15.500-41.442-15.695-41.419L-17.312-41.419Q-17.504-41.442-17.562-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(298.019 271.323)\">\u003Cpath d=\"M-56.187-41.060Q-56.187-41.114-56.164-41.181L-53.898-46.786Q-53.804-46.970-53.609-46.970Q-53.484-46.970-53.396-46.882Q-53.308-46.794-53.308-46.665Q-53.308-46.606-53.332-46.548L-55.594-40.939Q-55.695-40.755-55.875-40.755Q-56-40.755-56.094-40.845Q-56.187-40.935-56.187-41.060M-53.609-40.755Q-53.961-40.755-54.142-41.095Q-54.324-41.435-54.324-41.817Q-54.324-42.204-54.144-42.544Q-53.965-42.884-53.609-42.884Q-53.371-42.884-53.213-42.714Q-53.054-42.544-52.980-42.300Q-52.906-42.056-52.906-41.817Q-52.906-41.583-52.980-41.339Q-53.054-41.095-53.213-40.925Q-53.371-40.755-53.609-40.755M-53.609-41.314Q-53.527-41.345-53.480-41.513Q-53.433-41.681-53.433-41.817Q-53.433-41.954-53.480-42.124Q-53.527-42.294-53.609-42.321Q-53.695-42.294-53.746-42.126Q-53.797-41.958-53.797-41.817Q-53.797-41.689-53.746-41.517Q-53.695-41.345-53.609-41.314M-55.875-44.833Q-56.117-44.833-56.277-45.003Q-56.437-45.173-56.512-45.419Q-56.586-45.665-56.586-45.907Q-56.586-46.290-56.406-46.630Q-56.226-46.970-55.875-46.970Q-55.637-46.970-55.478-46.800Q-55.320-46.630-55.246-46.386Q-55.172-46.142-55.172-45.907Q-55.172-45.665-55.246-45.419Q-55.320-45.173-55.478-45.003Q-55.637-44.833-55.875-44.833M-55.875-45.396Q-55.785-45.439-55.742-45.595Q-55.699-45.751-55.699-45.907Q-55.699-46.036-55.746-46.212Q-55.793-46.388-55.883-46.411Q-55.898-46.411-55.928-46.376Q-55.957-46.341-55.965-46.321Q-56.058-46.134-56.058-45.907Q-56.058-45.771-56.010-45.599Q-55.961-45.427-55.875-45.396M-52.398-41.657L-52.398-41.747Q-52.340-41.954-52.148-41.978L-51.437-41.978L-51.437-44.306L-52.148-44.306Q-52.344-44.329-52.398-44.548L-52.398-44.634Q-52.340-44.845-52.148-44.868L-51.047-44.868Q-50.847-44.849-50.797-44.634L-50.797-44.306Q-50.535-44.591-50.179-44.749Q-49.824-44.907-49.437-44.907Q-49.144-44.907-48.910-44.773Q-48.676-44.638-48.676-44.372Q-48.676-44.204-48.785-44.087Q-48.894-43.970-49.062-43.970Q-49.215-43.970-49.330-44.081Q-49.445-44.192-49.445-44.349Q-49.820-44.349-50.135-44.148Q-50.449-43.946-50.623-43.612Q-50.797-43.278-50.797-42.899L-50.797-41.978L-49.851-41.978Q-49.644-41.954-49.605-41.747L-49.605-41.657Q-49.644-41.442-49.851-41.419L-52.148-41.419Q-52.340-41.442-52.398-41.657M-47.969-42.532Q-47.969-42.978-47.554-43.235Q-47.140-43.493-46.599-43.593Q-46.058-43.692-45.551-43.700Q-45.551-43.915-45.685-44.067Q-45.820-44.220-46.027-44.296Q-46.234-44.372-46.445-44.372Q-46.789-44.372-46.949-44.349L-46.949-44.290Q-46.949-44.122-47.068-44.007Q-47.187-43.892-47.351-43.892Q-47.527-43.892-47.642-44.015Q-47.758-44.138-47.758-44.306Q-47.758-44.712-47.377-44.821Q-46.996-44.931-46.437-44.931Q-46.168-44.931-45.900-44.853Q-45.633-44.774-45.408-44.624Q-45.183-44.474-45.047-44.253Q-44.910-44.032-44.910-43.755L-44.910-42.036Q-44.910-41.978-44.383-41.978Q-44.187-41.958-44.137-41.747L-44.137-41.657Q-44.187-41.442-44.383-41.419L-44.527-41.419Q-44.871-41.419-45.099-41.466Q-45.328-41.513-45.472-41.700Q-45.933-41.380-46.640-41.380Q-46.976-41.380-47.281-41.521Q-47.586-41.661-47.777-41.923Q-47.969-42.185-47.969-42.532M-47.328-42.524Q-47.328-42.251-47.086-42.095Q-46.844-41.939-46.558-41.939Q-46.340-41.939-46.107-41.997Q-45.875-42.056-45.713-42.194Q-45.551-42.333-45.551-42.556L-45.551-43.146Q-45.832-43.146-46.248-43.089Q-46.664-43.032-46.996-42.894Q-47.328-42.755-47.328-42.524M-43.871-41.657L-43.871-41.747Q-43.832-41.954-43.625-41.978L-43.219-41.978L-42.289-43.196L-43.160-44.306L-43.578-44.306Q-43.773-44.325-43.824-44.548L-43.824-44.634Q-43.773-44.845-43.578-44.868L-42.418-44.868Q-42.219-44.845-42.168-44.634L-42.168-44.548Q-42.219-44.329-42.418-44.306L-42.527-44.306L-42.031-43.649L-41.554-44.306L-41.672-44.306Q-41.871-44.329-41.922-44.548L-41.922-44.634Q-41.871-44.845-41.672-44.868L-40.512-44.868Q-40.316-44.849-40.265-44.634L-40.265-44.548Q-40.316-44.329-40.512-44.306L-40.922-44.306L-41.769-43.196L-40.808-41.978L-40.402-41.978Q-40.203-41.954-40.152-41.747L-40.152-41.657Q-40.191-41.442-40.402-41.419L-41.554-41.419Q-41.762-41.442-41.801-41.657L-41.801-41.747Q-41.762-41.954-41.554-41.978L-41.426-41.978L-42.031-42.833L-42.617-41.978L-42.472-41.978Q-42.265-41.954-42.226-41.747L-42.226-41.657Q-42.265-41.442-42.472-41.419L-43.625-41.419Q-43.820-41.439-43.871-41.657\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 271.323)\">\u003Cpath d=\"M-31.969-42.954L-35.015-42.954Q-35.137-42.966-35.224-43.050Q-35.312-43.134-35.312-43.259Q-35.312-43.384-35.228-43.468Q-35.144-43.552-35.015-43.571L-31.969-43.571Q-31.844-43.552-31.762-43.468Q-31.679-43.384-31.679-43.259Q-31.679-43.134-31.763-43.050Q-31.847-42.966-31.969-42.954M-31.969-44.161L-35.015-44.161Q-35.148-44.181-35.230-44.259Q-35.312-44.337-35.312-44.466Q-35.312-44.591-35.228-44.675Q-35.144-44.759-35.015-44.778L-31.969-44.778Q-31.844-44.759-31.762-44.675Q-31.679-44.591-31.679-44.466Q-31.679-44.337-31.760-44.259Q-31.840-44.181-31.969-44.161\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(298.019 271.323)\">\u003Cpath d=\"M-24.996-41.341Q-25.430-41.341-25.762-41.579Q-26.094-41.817-26.314-42.206Q-26.535-42.595-26.642-43.032Q-26.750-43.470-26.750-43.868Q-26.750-44.259-26.640-44.702Q-26.531-45.146-26.314-45.526Q-26.097-45.907-25.763-46.148Q-25.430-46.388-24.996-46.388Q-24.441-46.388-24.041-45.989Q-23.640-45.591-23.443-45.005Q-23.246-44.419-23.246-43.868Q-23.246-43.314-23.443-42.726Q-23.640-42.138-24.041-41.739Q-24.441-41.341-24.996-41.341M-24.996-41.899Q-24.695-41.899-24.478-42.116Q-24.262-42.333-24.135-42.661Q-24.008-42.989-23.947-43.335Q-23.887-43.681-23.887-43.962Q-23.887-44.212-23.949-44.538Q-24.012-44.864-24.142-45.155Q-24.273-45.446-24.486-45.636Q-24.699-45.825-24.996-45.825Q-25.371-45.825-25.623-45.513Q-25.875-45.200-25.992-44.767Q-26.109-44.333-26.109-43.962Q-26.109-43.564-25.996-43.083Q-25.883-42.603-25.635-42.251Q-25.387-41.899-24.996-41.899M-22.613-41.657L-22.613-41.747Q-22.574-41.954-22.367-41.978L-21.961-41.978L-21.031-43.196L-21.902-44.306L-22.320-44.306Q-22.515-44.325-22.566-44.548L-22.566-44.634Q-22.515-44.845-22.320-44.868L-21.160-44.868Q-20.961-44.845-20.910-44.634L-20.910-44.548Q-20.961-44.329-21.160-44.306L-21.269-44.306L-20.773-43.649L-20.297-44.306L-20.414-44.306Q-20.613-44.329-20.664-44.548L-20.664-44.634Q-20.613-44.845-20.414-44.868L-19.254-44.868Q-19.058-44.849-19.008-44.634L-19.008-44.548Q-19.058-44.329-19.254-44.306L-19.664-44.306L-20.512-43.196L-19.551-41.978L-19.144-41.978Q-18.945-41.954-18.894-41.747L-18.894-41.657Q-18.933-41.442-19.144-41.419L-20.297-41.419Q-20.504-41.442-20.543-41.657L-20.543-41.747Q-20.504-41.954-20.297-41.978L-20.168-41.978L-20.773-42.833L-21.359-41.978L-21.215-41.978Q-21.008-41.954-20.969-41.747L-20.969-41.657Q-21.008-41.442-21.215-41.419L-22.367-41.419Q-22.562-41.439-22.613-41.657M-18.219-42.532Q-18.219-42.978-17.805-43.235Q-17.390-43.493-16.849-43.593Q-16.308-43.692-15.801-43.700Q-15.801-43.915-15.935-44.067Q-16.070-44.220-16.277-44.296Q-16.484-44.372-16.695-44.372Q-17.039-44.372-17.199-44.349L-17.199-44.290Q-17.199-44.122-17.318-44.007Q-17.437-43.892-17.601-43.892Q-17.777-43.892-17.892-44.015Q-18.008-44.138-18.008-44.306Q-18.008-44.712-17.627-44.821Q-17.246-44.931-16.687-44.931Q-16.418-44.931-16.150-44.853Q-15.883-44.774-15.658-44.624Q-15.433-44.474-15.297-44.253Q-15.160-44.032-15.160-43.755L-15.160-42.036Q-15.160-41.978-14.633-41.978Q-14.437-41.958-14.387-41.747L-14.387-41.657Q-14.437-41.442-14.633-41.419L-14.777-41.419Q-15.121-41.419-15.349-41.466Q-15.578-41.513-15.722-41.700Q-16.183-41.380-16.890-41.380Q-17.226-41.380-17.531-41.521Q-17.836-41.661-18.027-41.923Q-18.219-42.185-18.219-42.532M-17.578-42.524Q-17.578-42.251-17.336-42.095Q-17.094-41.939-16.808-41.939Q-16.590-41.939-16.357-41.997Q-16.125-42.056-15.963-42.194Q-15.801-42.333-15.801-42.556L-15.801-43.146Q-16.082-43.146-16.498-43.089Q-16.914-43.032-17.246-42.894Q-17.578-42.755-17.578-42.524M-13.637-41.657L-13.637-45.747L-14.058-45.747Q-14.265-45.771-14.308-45.985L-14.308-46.075Q-14.265-46.282-14.058-46.306L-13.242-46.306Q-13.047-46.282-12.996-46.075L-12.996-44.564Q-12.785-44.731-12.521-44.819Q-12.258-44.907-11.988-44.907Q-11.648-44.907-11.351-44.763Q-11.055-44.618-10.840-44.366Q-10.625-44.114-10.510-43.802Q-10.394-43.489-10.394-43.146Q-10.394-42.681-10.621-42.271Q-10.847-41.860-11.234-41.620Q-11.621-41.380-12.090-41.380Q-12.609-41.380-12.996-41.747L-12.996-41.657Q-13.047-41.439-13.242-41.419L-13.387-41.419Q-13.578-41.442-13.637-41.657M-12.133-41.939Q-11.824-41.939-11.574-42.108Q-11.324-42.278-11.180-42.560Q-11.035-42.841-11.035-43.146Q-11.035-43.435-11.160-43.714Q-11.285-43.993-11.517-44.171Q-11.750-44.349-12.051-44.349Q-12.371-44.349-12.633-44.163Q-12.894-43.978-12.996-43.677L-12.996-42.825Q-12.906-42.458-12.685-42.198Q-12.465-41.939-12.133-41.939M-9.574-43.146Q-9.574-43.626-9.330-44.040Q-9.086-44.454-8.670-44.692Q-8.254-44.931-7.773-44.931Q-7.219-44.931-6.840-44.821Q-6.461-44.712-6.461-44.306Q-6.461-44.138-6.574-44.015Q-6.687-43.892-6.859-43.892Q-7.031-43.892-7.150-44.007Q-7.269-44.122-7.269-44.290L-7.269-44.349Q-7.430-44.372-7.765-44.372Q-8.094-44.372-8.361-44.202Q-8.629-44.032-8.781-43.749Q-8.933-43.466-8.933-43.146Q-8.933-42.825-8.762-42.544Q-8.590-42.263-8.305-42.101Q-8.019-41.939-7.691-41.939Q-7.379-41.939-7.252-42.042Q-7.125-42.146-7.008-42.335Q-6.890-42.524-6.773-42.540L-6.605-42.540Q-6.500-42.528-6.435-42.460Q-6.371-42.392-6.371-42.290Q-6.371-42.243-6.390-42.204Q-6.500-41.911-6.703-41.731Q-6.906-41.552-7.181-41.466Q-7.457-41.380-7.773-41.380Q-8.258-41.380-8.674-41.618Q-9.090-41.856-9.332-42.259Q-9.574-42.661-9.574-43.146M-4.023-41.380Q-4.488-41.380-4.853-41.630Q-5.219-41.880-5.424-42.284Q-5.629-42.689-5.629-43.146Q-5.629-43.489-5.504-43.810Q-5.379-44.130-5.146-44.380Q-4.914-44.630-4.609-44.769Q-4.305-44.907-3.949-44.907Q-3.437-44.907-3.031-44.587L-3.031-45.747L-3.453-45.747Q-3.664-45.771-3.703-45.985L-3.703-46.075Q-3.664-46.282-3.453-46.306L-2.640-46.306Q-2.441-46.282-2.390-46.075L-2.390-41.978L-1.965-41.978Q-1.758-41.954-1.719-41.747L-1.719-41.657Q-1.758-41.442-1.965-41.419L-2.781-41.419Q-2.980-41.442-3.031-41.657L-3.031-41.786Q-3.226-41.595-3.488-41.487Q-3.750-41.380-4.023-41.380M-3.984-41.939Q-3.625-41.939-3.373-42.208Q-3.121-42.478-3.031-42.853L-3.031-43.685Q-3.090-43.872-3.217-44.023Q-3.344-44.173-3.521-44.261Q-3.699-44.349-3.894-44.349Q-4.203-44.349-4.453-44.179Q-4.703-44.009-4.847-43.724Q-4.992-43.439-4.992-43.138Q-4.992-42.689-4.707-42.314Q-4.422-41.939-3.984-41.939M-1.234-42.532Q-1.234-42.978-0.820-43.235Q-0.406-43.493 0.135-43.593Q0.676-43.692 1.184-43.700Q1.184-43.915 1.049-44.067Q0.914-44.220 0.707-44.296Q0.500-44.372 0.289-44.372Q-0.055-44.372-0.215-44.349L-0.215-44.290Q-0.215-44.122-0.334-44.007Q-0.453-43.892-0.617-43.892Q-0.793-43.892-0.908-44.015Q-1.023-44.138-1.023-44.306Q-1.023-44.712-0.642-44.821Q-0.262-44.931 0.297-44.931Q0.567-44.931 0.834-44.853Q1.102-44.774 1.326-44.624Q1.551-44.474 1.688-44.253Q1.824-44.032 1.824-43.755L1.824-42.036Q1.824-41.978 2.352-41.978Q2.547-41.958 2.598-41.747L2.598-41.657Q2.547-41.442 2.352-41.419L2.207-41.419Q1.863-41.419 1.635-41.466Q1.406-41.513 1.262-41.700Q0.801-41.380 0.094-41.380Q-0.242-41.380-0.547-41.521Q-0.851-41.661-1.043-41.923Q-1.234-42.185-1.234-42.532M-0.594-42.524Q-0.594-42.251-0.351-42.095Q-0.109-41.939 0.176-41.939Q0.395-41.939 0.627-41.997Q0.860-42.056 1.022-42.194Q1.184-42.333 1.184-42.556L1.184-43.146Q0.903-43.146 0.487-43.089Q0.070-43.032-0.262-42.894Q-0.594-42.755-0.594-42.524M3.348-41.657L3.348-45.747L2.926-45.747Q2.719-45.771 2.676-45.985L2.676-46.075Q2.719-46.282 2.926-46.306L3.742-46.306Q3.938-46.282 3.988-46.075L3.988-44.564Q4.199-44.731 4.463-44.819Q4.727-44.907 4.996-44.907Q5.336-44.907 5.633-44.763Q5.930-44.618 6.145-44.366Q6.360-44.114 6.475-43.802Q6.590-43.489 6.590-43.146Q6.590-42.681 6.363-42.271Q6.137-41.860 5.750-41.620Q5.363-41.380 4.895-41.380Q4.375-41.380 3.988-41.747L3.988-41.657Q3.938-41.439 3.742-41.419L3.598-41.419Q3.406-41.442 3.348-41.657M4.852-41.939Q5.160-41.939 5.410-42.108Q5.660-42.278 5.805-42.560Q5.949-42.841 5.949-43.146Q5.949-43.435 5.824-43.714Q5.699-43.993 5.467-44.171Q5.235-44.349 4.934-44.349Q4.613-44.349 4.352-44.163Q4.090-43.978 3.988-43.677L3.988-42.825Q4.078-42.458 4.299-42.198Q4.520-41.939 4.852-41.939M7.410-43.146Q7.410-43.626 7.654-44.040Q7.899-44.454 8.315-44.692Q8.731-44.931 9.211-44.931Q9.766-44.931 10.145-44.821Q10.524-44.712 10.524-44.306Q10.524-44.138 10.410-44.015Q10.297-43.892 10.125-43.892Q9.953-43.892 9.834-44.007Q9.715-44.122 9.715-44.290L9.715-44.349Q9.555-44.372 9.219-44.372Q8.891-44.372 8.623-44.202Q8.356-44.032 8.203-43.749Q8.051-43.466 8.051-43.146Q8.051-42.825 8.223-42.544Q8.395-42.263 8.680-42.101Q8.965-41.939 9.293-41.939Q9.606-41.939 9.733-42.042Q9.860-42.146 9.977-42.335Q10.094-42.524 10.211-42.540L10.379-42.540Q10.485-42.528 10.549-42.460Q10.613-42.392 10.613-42.290Q10.613-42.243 10.594-42.204Q10.485-41.911 10.281-41.731Q10.078-41.552 9.803-41.466Q9.528-41.380 9.211-41.380Q8.727-41.380 8.311-41.618Q7.895-41.856 7.653-42.259Q7.410-42.661 7.410-43.146M12.961-41.380Q12.496-41.380 12.131-41.630Q11.766-41.880 11.561-42.284Q11.356-42.689 11.356-43.146Q11.356-43.489 11.481-43.810Q11.606-44.130 11.838-44.380Q12.070-44.630 12.375-44.769Q12.680-44.907 13.035-44.907Q13.547-44.907 13.953-44.587L13.953-45.747L13.531-45.747Q13.320-45.771 13.281-45.985L13.281-46.075Q13.320-46.282 13.531-46.306L14.344-46.306Q14.543-46.282 14.594-46.075L14.594-41.978L15.020-41.978Q15.227-41.954 15.266-41.747L15.266-41.657Q15.227-41.442 15.020-41.419L14.203-41.419Q14.004-41.442 13.953-41.657L13.953-41.786Q13.758-41.595 13.496-41.487Q13.235-41.380 12.961-41.380M13-41.939Q13.360-41.939 13.612-42.208Q13.863-42.478 13.953-42.853L13.953-43.685Q13.895-43.872 13.768-44.023Q13.641-44.173 13.463-44.261Q13.285-44.349 13.090-44.349Q12.781-44.349 12.531-44.179Q12.281-44.009 12.137-43.724Q11.992-43.439 11.992-43.138Q11.992-42.689 12.278-42.314Q12.563-41.939 13-41.939M15.750-42.532Q15.750-42.978 16.164-43.235Q16.578-43.493 17.119-43.593Q17.660-43.692 18.168-43.700Q18.168-43.915 18.033-44.067Q17.899-44.220 17.692-44.296Q17.485-44.372 17.274-44.372Q16.930-44.372 16.770-44.349L16.770-44.290Q16.770-44.122 16.651-44.007Q16.531-43.892 16.367-43.892Q16.192-43.892 16.076-44.015Q15.961-44.138 15.961-44.306Q15.961-44.712 16.342-44.821Q16.723-44.931 17.281-44.931Q17.551-44.931 17.819-44.853Q18.086-44.774 18.311-44.624Q18.535-44.474 18.672-44.253Q18.809-44.032 18.809-43.755L18.809-42.036Q18.809-41.978 19.336-41.978Q19.531-41.958 19.582-41.747L19.582-41.657Q19.531-41.442 19.336-41.419L19.192-41.419Q18.848-41.419 18.619-41.466Q18.391-41.513 18.246-41.700Q17.785-41.380 17.078-41.380Q16.742-41.380 16.438-41.521Q16.133-41.661 15.942-41.923Q15.750-42.185 15.750-42.532M16.391-42.524Q16.391-42.251 16.633-42.095Q16.875-41.939 17.160-41.939Q17.379-41.939 17.612-41.997Q17.844-42.056 18.006-42.194Q18.168-42.333 18.168-42.556L18.168-43.146Q17.887-43.146 17.471-43.089Q17.055-43.032 16.723-42.894Q16.391-42.755 16.391-42.524M20.332-41.657L20.332-45.747L19.910-45.747Q19.703-45.771 19.660-45.985L19.660-46.075Q19.703-46.282 19.910-46.306L20.727-46.306Q20.922-46.282 20.973-46.075L20.973-44.564Q21.184-44.731 21.447-44.819Q21.711-44.907 21.981-44.907Q22.320-44.907 22.617-44.763Q22.914-44.618 23.129-44.366Q23.344-44.114 23.459-43.802Q23.574-43.489 23.574-43.146Q23.574-42.681 23.348-42.271Q23.121-41.860 22.735-41.620Q22.348-41.380 21.879-41.380Q21.360-41.380 20.973-41.747L20.973-41.657Q20.922-41.439 20.727-41.419L20.582-41.419Q20.391-41.442 20.332-41.657M21.836-41.939Q22.145-41.939 22.395-42.108Q22.645-42.278 22.789-42.560Q22.934-42.841 22.934-43.146Q22.934-43.435 22.809-43.714Q22.684-43.993 22.451-44.171Q22.219-44.349 21.918-44.349Q21.598-44.349 21.336-44.163Q21.074-43.978 20.973-43.677L20.973-42.825Q21.063-42.458 21.283-42.198Q21.504-41.939 21.836-41.939M24.395-43.146Q24.395-43.626 24.639-44.040Q24.883-44.454 25.299-44.692Q25.715-44.931 26.195-44.931Q26.750-44.931 27.129-44.821Q27.508-44.712 27.508-44.306Q27.508-44.138 27.395-44.015Q27.281-43.892 27.110-43.892Q26.938-43.892 26.819-44.007Q26.699-44.122 26.699-44.290L26.699-44.349Q26.539-44.372 26.203-44.372Q25.875-44.372 25.608-44.202Q25.340-44.032 25.188-43.749Q25.035-43.466 25.035-43.146Q25.035-42.825 25.207-42.544Q25.379-42.263 25.664-42.101Q25.949-41.939 26.278-41.939Q26.590-41.939 26.717-42.042Q26.844-42.146 26.961-42.335Q27.078-42.524 27.195-42.540L27.363-42.540Q27.469-42.528 27.533-42.460Q27.598-42.392 27.598-42.290Q27.598-42.243 27.578-42.204Q27.469-41.911 27.266-41.731Q27.063-41.552 26.787-41.466Q26.512-41.380 26.195-41.380Q25.711-41.380 25.295-41.618Q24.879-41.856 24.637-42.259Q24.395-42.661 24.395-43.146M29.945-41.380Q29.481-41.380 29.115-41.630Q28.750-41.880 28.545-42.284Q28.340-42.689 28.340-43.146Q28.340-43.489 28.465-43.810Q28.590-44.130 28.822-44.380Q29.055-44.630 29.360-44.769Q29.664-44.907 30.020-44.907Q30.531-44.907 30.938-44.587L30.938-45.747L30.516-45.747Q30.305-45.771 30.266-45.985L30.266-46.075Q30.305-46.282 30.516-46.306L31.328-46.306Q31.528-46.282 31.578-46.075L31.578-41.978L32.004-41.978Q32.211-41.954 32.250-41.747L32.250-41.657Q32.211-41.442 32.004-41.419L31.188-41.419Q30.988-41.442 30.938-41.657L30.938-41.786Q30.742-41.595 30.481-41.487Q30.219-41.380 29.945-41.380M29.985-41.939Q30.344-41.939 30.596-42.208Q30.848-42.478 30.938-42.853L30.938-43.685Q30.879-43.872 30.752-44.023Q30.625-44.173 30.447-44.261Q30.270-44.349 30.074-44.349Q29.766-44.349 29.516-44.179Q29.266-44.009 29.121-43.724Q28.977-43.439 28.977-43.138Q28.977-42.689 29.262-42.314Q29.547-41.939 29.985-41.939\" 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 236.85h432.481\"\u002F>\u003Cpath fill=\"none\" stroke=\"var(--tk-soft-accent)\" d=\"M-65.403 29.713h432.481M-65.403 55.32h432.481M-65.403 153.483h432.481M-65.403 179.09h432.481\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">Key cycles of the 29-cycle run. Cycles 1-4 set up the stack and arguments and execute the call, whose memory write is the pushed return address; cycles 5-7 are the sum prologue (xorq zeroing rax sets ZF = 1); cycles 8-12 are the first loop iteration in full, including the mrmovq that reads the first array element; cycles 27-29 exit the loop, pop the return address, and halt with the answer in rax.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:358.696px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 269.022 134.437\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-68.737-52.153h96.74V-72.07h-96.74Z\"\u002F>\u003Cg transform=\"translate(-29.75 2.444)\">\u003Cpath d=\"M-18.246-62.034Q-18.680-62.034-19.012-62.272Q-19.344-62.510-19.564-62.899Q-19.785-63.288-19.892-63.725Q-20-64.163-20-64.561Q-20-64.952-19.890-65.395Q-19.781-65.839-19.564-66.219Q-19.347-66.600-19.013-66.841Q-18.680-67.081-18.246-67.081Q-17.691-67.081-17.291-66.682Q-16.890-66.284-16.693-65.698Q-16.496-65.112-16.496-64.561Q-16.496-64.007-16.693-63.419Q-16.890-62.831-17.291-62.432Q-17.691-62.034-18.246-62.034M-18.246-62.592Q-17.945-62.592-17.728-62.809Q-17.512-63.026-17.385-63.354Q-17.258-63.682-17.197-64.028Q-17.137-64.374-17.137-64.655Q-17.137-64.905-17.199-65.231Q-17.262-65.557-17.392-65.848Q-17.523-66.139-17.736-66.329Q-17.949-66.518-18.246-66.518Q-18.621-66.518-18.873-66.206Q-19.125-65.893-19.242-65.460Q-19.359-65.026-19.359-64.655Q-19.359-64.257-19.246-63.776Q-19.133-63.296-18.885-62.944Q-18.637-62.592-18.246-62.592M-15.863-62.350L-15.863-62.440Q-15.824-62.647-15.617-62.671L-15.211-62.671L-14.281-63.889L-15.152-64.999L-15.570-64.999Q-15.765-65.018-15.816-65.241L-15.816-65.327Q-15.765-65.538-15.570-65.561L-14.410-65.561Q-14.211-65.538-14.160-65.327L-14.160-65.241Q-14.211-65.022-14.410-64.999L-14.519-64.999L-14.023-64.342L-13.547-64.999L-13.664-64.999Q-13.863-65.022-13.914-65.241L-13.914-65.327Q-13.863-65.538-13.664-65.561L-12.504-65.561Q-12.308-65.542-12.258-65.327L-12.258-65.241Q-12.308-65.022-12.504-64.999L-12.914-64.999L-13.762-63.889L-12.801-62.671L-12.394-62.671Q-12.195-62.647-12.144-62.440L-12.144-62.350Q-12.183-62.135-12.394-62.112L-13.547-62.112Q-13.754-62.135-13.793-62.350L-13.793-62.440Q-13.754-62.647-13.547-62.671L-13.418-62.671L-14.023-63.526L-14.609-62.671L-14.465-62.671Q-14.258-62.647-14.219-62.440L-14.219-62.350Q-14.258-62.135-14.465-62.112L-15.617-62.112Q-15.812-62.132-15.863-62.350M-9.754-62.034Q-10.187-62.034-10.519-62.272Q-10.851-62.510-11.072-62.899Q-11.293-63.288-11.400-63.725Q-11.508-64.163-11.508-64.561Q-11.508-64.952-11.398-65.395Q-11.289-65.839-11.072-66.219Q-10.855-66.600-10.521-66.841Q-10.187-67.081-9.754-67.081Q-9.199-67.081-8.799-66.682Q-8.398-66.284-8.201-65.698Q-8.004-65.112-8.004-64.561Q-8.004-64.007-8.201-63.419Q-8.398-62.831-8.799-62.432Q-9.199-62.034-9.754-62.034M-9.754-62.592Q-9.453-62.592-9.236-62.809Q-9.019-63.026-8.892-63.354Q-8.765-63.682-8.705-64.028Q-8.644-64.374-8.644-64.655Q-8.644-64.905-8.707-65.231Q-8.769-65.557-8.900-65.848Q-9.031-66.139-9.244-66.329Q-9.457-66.518-9.754-66.518Q-10.129-66.518-10.381-66.206Q-10.633-65.893-10.750-65.460Q-10.867-65.026-10.867-64.655Q-10.867-64.257-10.754-63.776Q-10.640-63.296-10.392-62.944Q-10.144-62.592-9.754-62.592M-5.508-62.034Q-5.941-62.034-6.273-62.272Q-6.605-62.510-6.826-62.899Q-7.047-63.288-7.154-63.725Q-7.262-64.163-7.262-64.561Q-7.262-64.952-7.152-65.395Q-7.043-65.839-6.826-66.219Q-6.609-66.600-6.275-66.841Q-5.941-67.081-5.508-67.081Q-4.953-67.081-4.553-66.682Q-4.152-66.284-3.955-65.698Q-3.758-65.112-3.758-64.561Q-3.758-64.007-3.955-63.419Q-4.152-62.831-4.553-62.432Q-4.953-62.034-5.508-62.034M-5.508-62.592Q-5.207-62.592-4.990-62.809Q-4.773-63.026-4.646-63.354Q-4.519-63.682-4.459-64.028Q-4.398-64.374-4.398-64.655Q-4.398-64.905-4.461-65.231Q-4.523-65.557-4.654-65.848Q-4.785-66.139-4.998-66.329Q-5.211-66.518-5.508-66.518Q-5.883-66.518-6.135-66.206Q-6.387-65.893-6.504-65.460Q-6.621-65.026-6.621-64.655Q-6.621-64.257-6.508-63.776Q-6.394-63.296-6.146-62.944Q-5.898-62.592-5.508-62.592M-1.262-62.034Q-1.695-62.034-2.027-62.272Q-2.359-62.510-2.580-62.899Q-2.801-63.288-2.908-63.725Q-3.015-64.163-3.015-64.561Q-3.015-64.952-2.906-65.395Q-2.797-65.839-2.580-66.219Q-2.363-66.600-2.029-66.841Q-1.695-67.081-1.262-67.081Q-0.707-67.081-0.306-66.682Q0.094-66.284 0.291-65.698Q0.488-65.112 0.488-64.561Q0.488-64.007 0.291-63.419Q0.094-62.831-0.306-62.432Q-0.707-62.034-1.262-62.034M-1.262-62.592Q-0.961-62.592-0.744-62.809Q-0.527-63.026-0.400-63.354Q-0.273-63.682-0.213-64.028Q-0.152-64.374-0.152-64.655Q-0.152-64.905-0.215-65.231Q-0.277-65.557-0.408-65.848Q-0.539-66.139-0.752-66.329Q-0.965-66.518-1.262-66.518Q-1.637-66.518-1.888-66.206Q-2.140-65.893-2.258-65.460Q-2.375-65.026-2.375-64.655Q-2.375-64.257-2.262-63.776Q-2.148-63.296-1.900-62.944Q-1.652-62.592-1.262-62.592M2.985-62.034Q2.551-62.034 2.219-62.272Q1.887-62.510 1.666-62.899Q1.445-63.288 1.338-63.725Q1.231-64.163 1.231-64.561Q1.231-64.952 1.340-65.395Q1.449-65.839 1.666-66.219Q1.883-66.600 2.217-66.841Q2.551-67.081 2.985-67.081Q3.539-67.081 3.940-66.682Q4.340-66.284 4.537-65.698Q4.735-65.112 4.735-64.561Q4.735-64.007 4.537-63.419Q4.340-62.831 3.940-62.432Q3.539-62.034 2.985-62.034M2.985-62.592Q3.285-62.592 3.502-62.809Q3.719-63.026 3.846-63.354Q3.973-63.682 4.033-64.028Q4.094-64.374 4.094-64.655Q4.094-64.905 4.031-65.231Q3.969-65.557 3.838-65.848Q3.707-66.139 3.494-66.329Q3.281-66.518 2.985-66.518Q2.610-66.518 2.358-66.206Q2.106-65.893 1.988-65.460Q1.871-65.026 1.871-64.655Q1.871-64.257 1.985-63.776Q2.098-63.296 2.346-62.944Q2.594-62.592 2.985-62.592M7.231-62.034Q6.797-62.034 6.465-62.272Q6.133-62.510 5.912-62.899Q5.692-63.288 5.584-63.725Q5.477-64.163 5.477-64.561Q5.477-64.952 5.586-65.395Q5.695-65.839 5.912-66.219Q6.129-66.600 6.463-66.841Q6.797-67.081 7.231-67.081Q7.785-67.081 8.186-66.682Q8.586-66.284 8.783-65.698Q8.981-65.112 8.981-64.561Q8.981-64.007 8.783-63.419Q8.586-62.831 8.186-62.432Q7.785-62.034 7.231-62.034M7.231-62.592Q7.531-62.592 7.748-62.809Q7.965-63.026 8.092-63.354Q8.219-63.682 8.279-64.028Q8.340-64.374 8.340-64.655Q8.340-64.905 8.278-65.231Q8.215-65.557 8.084-65.848Q7.953-66.139 7.740-66.329Q7.528-66.518 7.231-66.518Q6.856-66.518 6.604-66.206Q6.352-65.893 6.235-65.460Q6.117-65.026 6.117-64.655Q6.117-64.257 6.231-63.776Q6.344-63.296 6.592-62.944Q6.840-62.592 7.231-62.592M11.477-62.034Q11.043-62.034 10.711-62.272Q10.379-62.510 10.158-62.899Q9.938-63.288 9.830-63.725Q9.723-64.163 9.723-64.561Q9.723-64.952 9.832-65.395Q9.942-65.839 10.158-66.219Q10.375-66.600 10.709-66.841Q11.043-67.081 11.477-67.081Q12.031-67.081 12.432-66.682Q12.832-66.284 13.029-65.698Q13.227-65.112 13.227-64.561Q13.227-64.007 13.029-63.419Q12.832-62.831 12.432-62.432Q12.031-62.034 11.477-62.034M11.477-62.592Q11.778-62.592 11.994-62.809Q12.211-63.026 12.338-63.354Q12.465-63.682 12.526-64.028Q12.586-64.374 12.586-64.655Q12.586-64.905 12.524-65.231Q12.461-65.557 12.330-65.848Q12.199-66.139 11.987-66.329Q11.774-66.518 11.477-66.518Q11.102-66.518 10.850-66.206Q10.598-65.893 10.481-65.460Q10.363-65.026 10.363-64.655Q10.363-64.257 10.477-63.776Q10.590-63.296 10.838-62.944Q11.086-62.592 11.477-62.592M15.723-62.034Q15.289-62.034 14.957-62.272Q14.625-62.510 14.404-62.899Q14.184-63.288 14.076-63.725Q13.969-64.163 13.969-64.561Q13.969-64.952 14.078-65.395Q14.188-65.839 14.404-66.219Q14.621-66.600 14.955-66.841Q15.289-67.081 15.723-67.081Q16.278-67.081 16.678-66.682Q17.078-66.284 17.276-65.698Q17.473-65.112 17.473-64.561Q17.473-64.007 17.276-63.419Q17.078-62.831 16.678-62.432Q16.278-62.034 15.723-62.034M15.723-62.592Q16.024-62.592 16.240-62.809Q16.457-63.026 16.584-63.354Q16.711-63.682 16.772-64.028Q16.832-64.374 16.832-64.655Q16.832-64.905 16.770-65.231Q16.707-65.557 16.576-65.848Q16.445-66.139 16.233-66.329Q16.020-66.518 15.723-66.518Q15.348-66.518 15.096-66.206Q14.844-65.893 14.727-65.460Q14.610-65.026 14.610-64.655Q14.610-64.257 14.723-63.776Q14.836-63.296 15.084-62.944Q15.332-62.592 15.723-62.592M19.969-62.034Q19.535-62.034 19.203-62.272Q18.871-62.510 18.651-62.899Q18.430-63.288 18.322-63.725Q18.215-64.163 18.215-64.561Q18.215-64.952 18.324-65.395Q18.434-65.839 18.651-66.219Q18.867-66.600 19.201-66.841Q19.535-67.081 19.969-67.081Q20.524-67.081 20.924-66.682Q21.324-66.284 21.522-65.698Q21.719-65.112 21.719-64.561Q21.719-64.007 21.522-63.419Q21.324-62.831 20.924-62.432Q20.524-62.034 19.969-62.034M19.969-62.592Q20.270-62.592 20.487-62.809Q20.703-63.026 20.830-63.354Q20.957-63.682 21.018-64.028Q21.078-64.374 21.078-64.655Q21.078-64.905 21.016-65.231Q20.953-65.557 20.822-65.848Q20.692-66.139 20.479-66.329Q20.266-66.518 19.969-66.518Q19.594-66.518 19.342-66.206Q19.090-65.893 18.973-65.460Q18.856-65.026 18.856-64.655Q18.856-64.257 18.969-63.776Q19.082-63.296 19.330-62.944Q19.578-62.592 19.969-62.592M24.215-62.034Q23.781-62.034 23.449-62.272Q23.117-62.510 22.897-62.899Q22.676-63.288 22.569-63.725Q22.461-64.163 22.461-64.561Q22.461-64.952 22.570-65.395Q22.680-65.839 22.897-66.219Q23.113-66.600 23.447-66.841Q23.781-67.081 24.215-67.081Q24.770-67.081 25.170-66.682Q25.570-66.284 25.768-65.698Q25.965-65.112 25.965-64.561Q25.965-64.007 25.768-63.419Q25.570-62.831 25.170-62.432Q24.770-62.034 24.215-62.034M24.215-62.592Q24.516-62.592 24.733-62.809Q24.949-63.026 25.076-63.354Q25.203-63.682 25.264-64.028Q25.324-64.374 25.324-64.655Q25.324-64.905 25.262-65.231Q25.199-65.557 25.069-65.848Q24.938-66.139 24.725-66.329Q24.512-66.518 24.215-66.518Q23.840-66.518 23.588-66.206Q23.336-65.893 23.219-65.460Q23.102-65.026 23.102-64.655Q23.102-64.257 23.215-63.776Q23.328-63.296 23.576-62.944Q23.824-62.592 24.215-62.592M28.461-62.034Q28.028-62.034 27.695-62.272Q27.363-62.510 27.143-62.899Q26.922-63.288 26.815-63.725Q26.707-64.163 26.707-64.561Q26.707-64.952 26.817-65.395Q26.926-65.839 27.143-66.219Q27.360-66.600 27.694-66.841Q28.028-67.081 28.461-67.081Q29.016-67.081 29.416-66.682Q29.817-66.284 30.014-65.698Q30.211-65.112 30.211-64.561Q30.211-64.007 30.014-63.419Q29.817-62.831 29.416-62.432Q29.016-62.034 28.461-62.034M28.461-62.592Q28.762-62.592 28.979-62.809Q29.195-63.026 29.322-63.354Q29.449-63.682 29.510-64.028Q29.570-64.374 29.570-64.655Q29.570-64.905 29.508-65.231Q29.445-65.557 29.315-65.848Q29.184-66.139 28.971-66.329Q28.758-66.518 28.461-66.518Q28.086-66.518 27.834-66.206Q27.582-65.893 27.465-65.460Q27.348-65.026 27.348-64.655Q27.348-64.257 27.461-63.776Q27.574-63.296 27.822-62.944Q28.070-62.592 28.461-62.592M32.707-62.034Q32.274-62.034 31.942-62.272Q31.610-62.510 31.389-62.899Q31.168-63.288 31.061-63.725Q30.953-64.163 30.953-64.561Q30.953-64.952 31.063-65.395Q31.172-65.839 31.389-66.219Q31.606-66.600 31.940-66.841Q32.274-67.081 32.707-67.081Q33.262-67.081 33.662-66.682Q34.063-66.284 34.260-65.698Q34.457-65.112 34.457-64.561Q34.457-64.007 34.260-63.419Q34.063-62.831 33.662-62.432Q33.262-62.034 32.707-62.034M32.707-62.592Q33.008-62.592 33.225-62.809Q33.442-63.026 33.569-63.354Q33.695-63.682 33.756-64.028Q33.817-64.374 33.817-64.655Q33.817-64.905 33.754-65.231Q33.692-65.557 33.561-65.848Q33.430-66.139 33.217-66.329Q33.004-66.518 32.707-66.518Q32.332-66.518 32.080-66.206Q31.828-65.893 31.711-65.460Q31.594-65.026 31.594-64.655Q31.594-64.257 31.707-63.776Q31.820-63.296 32.069-62.944Q32.317-62.592 32.707-62.592M36.953-62.034Q36.520-62.034 36.188-62.272Q35.856-62.510 35.635-62.899Q35.414-63.288 35.307-63.725Q35.199-64.163 35.199-64.561Q35.199-64.952 35.309-65.395Q35.418-65.839 35.635-66.219Q35.852-66.600 36.186-66.841Q36.520-67.081 36.953-67.081Q37.508-67.081 37.908-66.682Q38.309-66.284 38.506-65.698Q38.703-65.112 38.703-64.561Q38.703-64.007 38.506-63.419Q38.309-62.831 37.908-62.432Q37.508-62.034 36.953-62.034M36.953-62.592Q37.254-62.592 37.471-62.809Q37.688-63.026 37.815-63.354Q37.942-63.682 38.002-64.028Q38.063-64.374 38.063-64.655Q38.063-64.905 38-65.231Q37.938-65.557 37.807-65.848Q37.676-66.139 37.463-66.329Q37.250-66.518 36.953-66.518Q36.578-66.518 36.326-66.206Q36.074-65.893 35.957-65.460Q35.840-65.026 35.840-64.655Q35.840-64.257 35.953-63.776Q36.067-63.296 36.315-62.944Q36.563-62.592 36.953-62.592\" 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-68.737-25.123h96.74V-45.04h-96.74Z\"\u002F>\u003Cg transform=\"translate(-29.75 29.474)\">\u003Cpath d=\"M-18.246-62.034Q-18.680-62.034-19.012-62.272Q-19.344-62.510-19.564-62.899Q-19.785-63.288-19.892-63.725Q-20-64.163-20-64.561Q-20-64.952-19.890-65.395Q-19.781-65.839-19.564-66.219Q-19.347-66.600-19.013-66.841Q-18.680-67.081-18.246-67.081Q-17.691-67.081-17.291-66.682Q-16.890-66.284-16.693-65.698Q-16.496-65.112-16.496-64.561Q-16.496-64.007-16.693-63.419Q-16.890-62.831-17.291-62.432Q-17.691-62.034-18.246-62.034M-18.246-62.592Q-17.945-62.592-17.728-62.809Q-17.512-63.026-17.385-63.354Q-17.258-63.682-17.197-64.028Q-17.137-64.374-17.137-64.655Q-17.137-64.905-17.199-65.231Q-17.262-65.557-17.392-65.848Q-17.523-66.139-17.736-66.329Q-17.949-66.518-18.246-66.518Q-18.621-66.518-18.873-66.206Q-19.125-65.893-19.242-65.460Q-19.359-65.026-19.359-64.655Q-19.359-64.257-19.246-63.776Q-19.133-63.296-18.885-62.944Q-18.637-62.592-18.246-62.592M-15.863-62.350L-15.863-62.440Q-15.824-62.647-15.617-62.671L-15.211-62.671L-14.281-63.889L-15.152-64.999L-15.570-64.999Q-15.765-65.018-15.816-65.241L-15.816-65.327Q-15.765-65.538-15.570-65.561L-14.410-65.561Q-14.211-65.538-14.160-65.327L-14.160-65.241Q-14.211-65.022-14.410-64.999L-14.519-64.999L-14.023-64.342L-13.547-64.999L-13.664-64.999Q-13.863-65.022-13.914-65.241L-13.914-65.327Q-13.863-65.538-13.664-65.561L-12.504-65.561Q-12.308-65.542-12.258-65.327L-12.258-65.241Q-12.308-65.022-12.504-64.999L-12.914-64.999L-13.762-63.889L-12.801-62.671L-12.394-62.671Q-12.195-62.647-12.144-62.440L-12.144-62.350Q-12.183-62.135-12.394-62.112L-13.547-62.112Q-13.754-62.135-13.793-62.350L-13.793-62.440Q-13.754-62.647-13.547-62.671L-13.418-62.671L-14.023-63.526L-14.609-62.671L-14.465-62.671Q-14.258-62.647-14.219-62.440L-14.219-62.350Q-14.258-62.135-14.465-62.112L-15.617-62.112Q-15.812-62.132-15.863-62.350M-9.754-62.034Q-10.187-62.034-10.519-62.272Q-10.851-62.510-11.072-62.899Q-11.293-63.288-11.400-63.725Q-11.508-64.163-11.508-64.561Q-11.508-64.952-11.398-65.395Q-11.289-65.839-11.072-66.219Q-10.855-66.600-10.521-66.841Q-10.187-67.081-9.754-67.081Q-9.199-67.081-8.799-66.682Q-8.398-66.284-8.201-65.698Q-8.004-65.112-8.004-64.561Q-8.004-64.007-8.201-63.419Q-8.398-62.831-8.799-62.432Q-9.199-62.034-9.754-62.034M-9.754-62.592Q-9.453-62.592-9.236-62.809Q-9.019-63.026-8.892-63.354Q-8.765-63.682-8.705-64.028Q-8.644-64.374-8.644-64.655Q-8.644-64.905-8.707-65.231Q-8.769-65.557-8.900-65.848Q-9.031-66.139-9.244-66.329Q-9.457-66.518-9.754-66.518Q-10.129-66.518-10.381-66.206Q-10.633-65.893-10.750-65.460Q-10.867-65.026-10.867-64.655Q-10.867-64.257-10.754-63.776Q-10.640-63.296-10.392-62.944Q-10.144-62.592-9.754-62.592M-5.508-62.034Q-5.941-62.034-6.273-62.272Q-6.605-62.510-6.826-62.899Q-7.047-63.288-7.154-63.725Q-7.262-64.163-7.262-64.561Q-7.262-64.952-7.152-65.395Q-7.043-65.839-6.826-66.219Q-6.609-66.600-6.275-66.841Q-5.941-67.081-5.508-67.081Q-4.953-67.081-4.553-66.682Q-4.152-66.284-3.955-65.698Q-3.758-65.112-3.758-64.561Q-3.758-64.007-3.955-63.419Q-4.152-62.831-4.553-62.432Q-4.953-62.034-5.508-62.034M-5.508-62.592Q-5.207-62.592-4.990-62.809Q-4.773-63.026-4.646-63.354Q-4.519-63.682-4.459-64.028Q-4.398-64.374-4.398-64.655Q-4.398-64.905-4.461-65.231Q-4.523-65.557-4.654-65.848Q-4.785-66.139-4.998-66.329Q-5.211-66.518-5.508-66.518Q-5.883-66.518-6.135-66.206Q-6.387-65.893-6.504-65.460Q-6.621-65.026-6.621-64.655Q-6.621-64.257-6.508-63.776Q-6.394-63.296-6.146-62.944Q-5.898-62.592-5.508-62.592M-1.262-62.034Q-1.695-62.034-2.027-62.272Q-2.359-62.510-2.580-62.899Q-2.801-63.288-2.908-63.725Q-3.015-64.163-3.015-64.561Q-3.015-64.952-2.906-65.395Q-2.797-65.839-2.580-66.219Q-2.363-66.600-2.029-66.841Q-1.695-67.081-1.262-67.081Q-0.707-67.081-0.306-66.682Q0.094-66.284 0.291-65.698Q0.488-65.112 0.488-64.561Q0.488-64.007 0.291-63.419Q0.094-62.831-0.306-62.432Q-0.707-62.034-1.262-62.034M-1.262-62.592Q-0.961-62.592-0.744-62.809Q-0.527-63.026-0.400-63.354Q-0.273-63.682-0.213-64.028Q-0.152-64.374-0.152-64.655Q-0.152-64.905-0.215-65.231Q-0.277-65.557-0.408-65.848Q-0.539-66.139-0.752-66.329Q-0.965-66.518-1.262-66.518Q-1.637-66.518-1.888-66.206Q-2.140-65.893-2.258-65.460Q-2.375-65.026-2.375-64.655Q-2.375-64.257-2.262-63.776Q-2.148-63.296-1.900-62.944Q-1.652-62.592-1.262-62.592M2.727-62.073Q2.262-62.073 1.897-62.323Q1.531-62.573 1.326-62.977Q1.121-63.382 1.121-63.839Q1.121-64.182 1.246-64.503Q1.371-64.823 1.604-65.073Q1.836-65.323 2.141-65.462Q2.445-65.600 2.801-65.600Q3.313-65.600 3.719-65.280L3.719-66.440L3.297-66.440Q3.086-66.464 3.047-66.678L3.047-66.768Q3.086-66.975 3.297-66.999L4.110-66.999Q4.309-66.975 4.360-66.768L4.360-62.671L4.785-62.671Q4.992-62.647 5.031-62.440L5.031-62.350Q4.992-62.135 4.785-62.112L3.969-62.112Q3.770-62.135 3.719-62.350L3.719-62.479Q3.524-62.288 3.262-62.180Q3-62.073 2.727-62.073M2.766-62.632Q3.125-62.632 3.377-62.901Q3.629-63.171 3.719-63.546L3.719-64.378Q3.660-64.565 3.533-64.716Q3.406-64.866 3.229-64.954Q3.051-65.042 2.856-65.042Q2.547-65.042 2.297-64.872Q2.047-64.702 1.903-64.417Q1.758-64.132 1.758-63.831Q1.758-63.382 2.043-63.007Q2.328-62.632 2.766-62.632M7.231-62.034Q6.797-62.034 6.465-62.272Q6.133-62.510 5.912-62.899Q5.692-63.288 5.584-63.725Q5.477-64.163 5.477-64.561Q5.477-64.952 5.586-65.395Q5.695-65.839 5.912-66.219Q6.129-66.600 6.463-66.841Q6.797-67.081 7.231-67.081Q7.785-67.081 8.186-66.682Q8.586-66.284 8.783-65.698Q8.981-65.112 8.981-64.561Q8.981-64.007 8.783-63.419Q8.586-62.831 8.186-62.432Q7.785-62.034 7.231-62.034M7.231-62.592Q7.531-62.592 7.748-62.809Q7.965-63.026 8.092-63.354Q8.219-63.682 8.279-64.028Q8.340-64.374 8.340-64.655Q8.340-64.905 8.278-65.231Q8.215-65.557 8.084-65.848Q7.953-66.139 7.740-66.329Q7.528-66.518 7.231-66.518Q6.856-66.518 6.604-66.206Q6.352-65.893 6.235-65.460Q6.117-65.026 6.117-64.655Q6.117-64.257 6.231-63.776Q6.344-63.296 6.592-62.944Q6.840-62.592 7.231-62.592M11.477-62.034Q11.043-62.034 10.711-62.272Q10.379-62.510 10.158-62.899Q9.938-63.288 9.830-63.725Q9.723-64.163 9.723-64.561Q9.723-64.952 9.832-65.395Q9.942-65.839 10.158-66.219Q10.375-66.600 10.709-66.841Q11.043-67.081 11.477-67.081Q12.031-67.081 12.432-66.682Q12.832-66.284 13.029-65.698Q13.227-65.112 13.227-64.561Q13.227-64.007 13.029-63.419Q12.832-62.831 12.432-62.432Q12.031-62.034 11.477-62.034M11.477-62.592Q11.778-62.592 11.994-62.809Q12.211-63.026 12.338-63.354Q12.465-63.682 12.526-64.028Q12.586-64.374 12.586-64.655Q12.586-64.905 12.524-65.231Q12.461-65.557 12.330-65.848Q12.199-66.139 11.987-66.329Q11.774-66.518 11.477-66.518Q11.102-66.518 10.850-66.206Q10.598-65.893 10.481-65.460Q10.363-65.026 10.363-64.655Q10.363-64.257 10.477-63.776Q10.590-63.296 10.838-62.944Q11.086-62.592 11.477-62.592M15.723-62.034Q15.289-62.034 14.957-62.272Q14.625-62.510 14.404-62.899Q14.184-63.288 14.076-63.725Q13.969-64.163 13.969-64.561Q13.969-64.952 14.078-65.395Q14.188-65.839 14.404-66.219Q14.621-66.600 14.955-66.841Q15.289-67.081 15.723-67.081Q16.278-67.081 16.678-66.682Q17.078-66.284 17.276-65.698Q17.473-65.112 17.473-64.561Q17.473-64.007 17.276-63.419Q17.078-62.831 16.678-62.432Q16.278-62.034 15.723-62.034M15.723-62.592Q16.024-62.592 16.240-62.809Q16.457-63.026 16.584-63.354Q16.711-63.682 16.772-64.028Q16.832-64.374 16.832-64.655Q16.832-64.905 16.770-65.231Q16.707-65.557 16.576-65.848Q16.445-66.139 16.233-66.329Q16.020-66.518 15.723-66.518Q15.348-66.518 15.096-66.206Q14.844-65.893 14.727-65.460Q14.610-65.026 14.610-64.655Q14.610-64.257 14.723-63.776Q14.836-63.296 15.084-62.944Q15.332-62.592 15.723-62.592M19.711-62.073Q19.246-62.073 18.881-62.323Q18.516-62.573 18.311-62.977Q18.106-63.382 18.106-63.839Q18.106-64.182 18.231-64.503Q18.356-64.823 18.588-65.073Q18.820-65.323 19.125-65.462Q19.430-65.600 19.785-65.600Q20.297-65.600 20.703-65.280L20.703-66.440L20.281-66.440Q20.070-66.464 20.031-66.678L20.031-66.768Q20.070-66.975 20.281-66.999L21.094-66.999Q21.293-66.975 21.344-66.768L21.344-62.671L21.770-62.671Q21.977-62.647 22.016-62.440L22.016-62.350Q21.977-62.135 21.770-62.112L20.953-62.112Q20.754-62.135 20.703-62.350L20.703-62.479Q20.508-62.288 20.246-62.180Q19.985-62.073 19.711-62.073M19.750-62.632Q20.110-62.632 20.362-62.901Q20.613-63.171 20.703-63.546L20.703-64.378Q20.645-64.565 20.518-64.716Q20.391-64.866 20.213-64.954Q20.035-65.042 19.840-65.042Q19.531-65.042 19.281-64.872Q19.031-64.702 18.887-64.417Q18.742-64.132 18.742-63.831Q18.742-63.382 19.028-63.007Q19.313-62.632 19.750-62.632M24.215-62.034Q23.781-62.034 23.449-62.272Q23.117-62.510 22.897-62.899Q22.676-63.288 22.569-63.725Q22.461-64.163 22.461-64.561Q22.461-64.952 22.570-65.395Q22.680-65.839 22.897-66.219Q23.113-66.600 23.447-66.841Q23.781-67.081 24.215-67.081Q24.770-67.081 25.170-66.682Q25.570-66.284 25.768-65.698Q25.965-65.112 25.965-64.561Q25.965-64.007 25.768-63.419Q25.570-62.831 25.170-62.432Q24.770-62.034 24.215-62.034M24.215-62.592Q24.516-62.592 24.733-62.809Q24.949-63.026 25.076-63.354Q25.203-63.682 25.264-64.028Q25.324-64.374 25.324-64.655Q25.324-64.905 25.262-65.231Q25.199-65.557 25.069-65.848Q24.938-66.139 24.725-66.329Q24.512-66.518 24.215-66.518Q23.840-66.518 23.588-66.206Q23.336-65.893 23.219-65.460Q23.102-65.026 23.102-64.655Q23.102-64.257 23.215-63.776Q23.328-63.296 23.576-62.944Q23.824-62.592 24.215-62.592M28.461-62.034Q28.028-62.034 27.695-62.272Q27.363-62.510 27.143-62.899Q26.922-63.288 26.815-63.725Q26.707-64.163 26.707-64.561Q26.707-64.952 26.817-65.395Q26.926-65.839 27.143-66.219Q27.360-66.600 27.694-66.841Q28.028-67.081 28.461-67.081Q29.016-67.081 29.416-66.682Q29.817-66.284 30.014-65.698Q30.211-65.112 30.211-64.561Q30.211-64.007 30.014-63.419Q29.817-62.831 29.416-62.432Q29.016-62.034 28.461-62.034M28.461-62.592Q28.762-62.592 28.979-62.809Q29.195-63.026 29.322-63.354Q29.449-63.682 29.510-64.028Q29.570-64.374 29.570-64.655Q29.570-64.905 29.508-65.231Q29.445-65.557 29.315-65.848Q29.184-66.139 28.971-66.329Q28.758-66.518 28.461-66.518Q28.086-66.518 27.834-66.206Q27.582-65.893 27.465-65.460Q27.348-65.026 27.348-64.655Q27.348-64.257 27.461-63.776Q27.574-63.296 27.822-62.944Q28.070-62.592 28.461-62.592M32.707-62.034Q32.274-62.034 31.942-62.272Q31.610-62.510 31.389-62.899Q31.168-63.288 31.061-63.725Q30.953-64.163 30.953-64.561Q30.953-64.952 31.063-65.395Q31.172-65.839 31.389-66.219Q31.606-66.600 31.940-66.841Q32.274-67.081 32.707-67.081Q33.262-67.081 33.662-66.682Q34.063-66.284 34.260-65.698Q34.457-65.112 34.457-64.561Q34.457-64.007 34.260-63.419Q34.063-62.831 33.662-62.432Q33.262-62.034 32.707-62.034M32.707-62.592Q33.008-62.592 33.225-62.809Q33.442-63.026 33.569-63.354Q33.695-63.682 33.756-64.028Q33.817-64.374 33.817-64.655Q33.817-64.905 33.754-65.231Q33.692-65.557 33.561-65.848Q33.430-66.139 33.217-66.329Q33.004-66.518 32.707-66.518Q32.332-66.518 32.080-66.206Q31.828-65.893 31.711-65.460Q31.594-65.026 31.594-64.655Q31.594-64.257 31.707-63.776Q31.820-63.296 32.069-62.944Q32.317-62.592 32.707-62.592M36.695-62.073Q36.231-62.073 35.865-62.323Q35.500-62.573 35.295-62.977Q35.090-63.382 35.090-63.839Q35.090-64.182 35.215-64.503Q35.340-64.823 35.572-65.073Q35.805-65.323 36.110-65.462Q36.414-65.600 36.770-65.600Q37.281-65.600 37.688-65.280L37.688-66.440L37.266-66.440Q37.055-66.464 37.016-66.678L37.016-66.768Q37.055-66.975 37.266-66.999L38.078-66.999Q38.278-66.975 38.328-66.768L38.328-62.671L38.754-62.671Q38.961-62.647 39-62.440L39-62.350Q38.961-62.135 38.754-62.112L37.938-62.112Q37.738-62.135 37.688-62.350L37.688-62.479Q37.492-62.288 37.231-62.180Q36.969-62.073 36.695-62.073M36.735-62.632Q37.094-62.632 37.346-62.901Q37.598-63.171 37.688-63.546L37.688-64.378Q37.629-64.565 37.502-64.716Q37.375-64.866 37.197-64.954Q37.020-65.042 36.824-65.042Q36.516-65.042 36.266-64.872Q36.016-64.702 35.871-64.417Q35.727-64.132 35.727-63.831Q35.727-63.382 36.012-63.007Q36.297-62.632 36.735-62.632\" 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-68.737 1.907h96.74V-18.01h-96.74Z\"\u002F>\u003Cg transform=\"translate(-29.75 56.504)\">\u003Cpath d=\"M-18.246-62.034Q-18.680-62.034-19.012-62.272Q-19.344-62.510-19.564-62.899Q-19.785-63.288-19.892-63.725Q-20-64.163-20-64.561Q-20-64.952-19.890-65.395Q-19.781-65.839-19.564-66.219Q-19.347-66.600-19.013-66.841Q-18.680-67.081-18.246-67.081Q-17.691-67.081-17.291-66.682Q-16.890-66.284-16.693-65.698Q-16.496-65.112-16.496-64.561Q-16.496-64.007-16.693-63.419Q-16.890-62.831-17.291-62.432Q-17.691-62.034-18.246-62.034M-18.246-62.592Q-17.945-62.592-17.728-62.809Q-17.512-63.026-17.385-63.354Q-17.258-63.682-17.197-64.028Q-17.137-64.374-17.137-64.655Q-17.137-64.905-17.199-65.231Q-17.262-65.557-17.392-65.848Q-17.523-66.139-17.736-66.329Q-17.949-66.518-18.246-66.518Q-18.621-66.518-18.873-66.206Q-19.125-65.893-19.242-65.460Q-19.359-65.026-19.359-64.655Q-19.359-64.257-19.246-63.776Q-19.133-63.296-18.885-62.944Q-18.637-62.592-18.246-62.592M-15.863-62.350L-15.863-62.440Q-15.824-62.647-15.617-62.671L-15.211-62.671L-14.281-63.889L-15.152-64.999L-15.570-64.999Q-15.765-65.018-15.816-65.241L-15.816-65.327Q-15.765-65.538-15.570-65.561L-14.410-65.561Q-14.211-65.538-14.160-65.327L-14.160-65.241Q-14.211-65.022-14.410-64.999L-14.519-64.999L-14.023-64.342L-13.547-64.999L-13.664-64.999Q-13.863-65.022-13.914-65.241L-13.914-65.327Q-13.863-65.538-13.664-65.561L-12.504-65.561Q-12.308-65.542-12.258-65.327L-12.258-65.241Q-12.308-65.022-12.504-64.999L-12.914-64.999L-13.762-63.889L-12.801-62.671L-12.394-62.671Q-12.195-62.647-12.144-62.440L-12.144-62.350Q-12.183-62.135-12.394-62.112L-13.547-62.112Q-13.754-62.135-13.793-62.350L-13.793-62.440Q-13.754-62.647-13.547-62.671L-13.418-62.671L-14.023-63.526L-14.609-62.671L-14.465-62.671Q-14.258-62.647-14.219-62.440L-14.219-62.350Q-14.258-62.135-14.465-62.112L-15.617-62.112Q-15.812-62.132-15.863-62.350M-9.754-62.034Q-10.187-62.034-10.519-62.272Q-10.851-62.510-11.072-62.899Q-11.293-63.288-11.400-63.725Q-11.508-64.163-11.508-64.561Q-11.508-64.952-11.398-65.395Q-11.289-65.839-11.072-66.219Q-10.855-66.600-10.521-66.841Q-10.187-67.081-9.754-67.081Q-9.199-67.081-8.799-66.682Q-8.398-66.284-8.201-65.698Q-8.004-65.112-8.004-64.561Q-8.004-64.007-8.201-63.419Q-8.398-62.831-8.799-62.432Q-9.199-62.034-9.754-62.034M-9.754-62.592Q-9.453-62.592-9.236-62.809Q-9.019-63.026-8.892-63.354Q-8.765-63.682-8.705-64.028Q-8.644-64.374-8.644-64.655Q-8.644-64.905-8.707-65.231Q-8.769-65.557-8.900-65.848Q-9.031-66.139-9.244-66.329Q-9.457-66.518-9.754-66.518Q-10.129-66.518-10.381-66.206Q-10.633-65.893-10.750-65.460Q-10.867-65.026-10.867-64.655Q-10.867-64.257-10.754-63.776Q-10.640-63.296-10.392-62.944Q-10.144-62.592-9.754-62.592M-5.508-62.034Q-5.941-62.034-6.273-62.272Q-6.605-62.510-6.826-62.899Q-7.047-63.288-7.154-63.725Q-7.262-64.163-7.262-64.561Q-7.262-64.952-7.152-65.395Q-7.043-65.839-6.826-66.219Q-6.609-66.600-6.275-66.841Q-5.941-67.081-5.508-67.081Q-4.953-67.081-4.553-66.682Q-4.152-66.284-3.955-65.698Q-3.758-65.112-3.758-64.561Q-3.758-64.007-3.955-63.419Q-4.152-62.831-4.553-62.432Q-4.953-62.034-5.508-62.034M-5.508-62.592Q-5.207-62.592-4.990-62.809Q-4.773-63.026-4.646-63.354Q-4.519-63.682-4.459-64.028Q-4.398-64.374-4.398-64.655Q-4.398-64.905-4.461-65.231Q-4.523-65.557-4.654-65.848Q-4.785-66.139-4.998-66.329Q-5.211-66.518-5.508-66.518Q-5.883-66.518-6.135-66.206Q-6.387-65.893-6.504-65.460Q-6.621-65.026-6.621-64.655Q-6.621-64.257-6.508-63.776Q-6.394-63.296-6.146-62.944Q-5.898-62.592-5.508-62.592M-2.824-63.839Q-2.824-64.319-2.580-64.733Q-2.336-65.147-1.920-65.385Q-1.504-65.624-1.023-65.624Q-0.469-65.624-0.090-65.514Q0.289-65.405 0.289-64.999Q0.289-64.831 0.176-64.708Q0.063-64.585-0.109-64.585Q-0.281-64.585-0.400-64.700Q-0.519-64.815-0.519-64.983L-0.519-65.042Q-0.680-65.065-1.015-65.065Q-1.344-65.065-1.611-64.895Q-1.879-64.725-2.031-64.442Q-2.183-64.159-2.183-63.839Q-2.183-63.518-2.012-63.237Q-1.840-62.956-1.555-62.794Q-1.269-62.632-0.941-62.632Q-0.629-62.632-0.502-62.735Q-0.375-62.839-0.258-63.028Q-0.140-63.217-0.023-63.233L0.145-63.233Q0.250-63.221 0.315-63.153Q0.379-63.085 0.379-62.983Q0.379-62.936 0.360-62.897Q0.250-62.604 0.047-62.425Q-0.156-62.245-0.431-62.159Q-0.707-62.073-1.023-62.073Q-1.508-62.073-1.924-62.311Q-2.340-62.550-2.582-62.952Q-2.824-63.354-2.824-63.839M2.727-62.073Q2.262-62.073 1.897-62.323Q1.531-62.573 1.326-62.977Q1.121-63.382 1.121-63.839Q1.121-64.182 1.246-64.503Q1.371-64.823 1.604-65.073Q1.836-65.323 2.141-65.462Q2.445-65.600 2.801-65.600Q3.313-65.600 3.719-65.280L3.719-66.440L3.297-66.440Q3.086-66.464 3.047-66.678L3.047-66.768Q3.086-66.975 3.297-66.999L4.110-66.999Q4.309-66.975 4.360-66.768L4.360-62.671L4.785-62.671Q4.992-62.647 5.031-62.440L5.031-62.350Q4.992-62.135 4.785-62.112L3.969-62.112Q3.770-62.135 3.719-62.350L3.719-62.479Q3.524-62.288 3.262-62.180Q3-62.073 2.727-62.073M2.766-62.632Q3.125-62.632 3.377-62.901Q3.629-63.171 3.719-63.546L3.719-64.378Q3.660-64.565 3.533-64.716Q3.406-64.866 3.229-64.954Q3.051-65.042 2.856-65.042Q2.547-65.042 2.297-64.872Q2.047-64.702 1.903-64.417Q1.758-64.132 1.758-63.831Q1.758-63.382 2.043-63.007Q2.328-62.632 2.766-62.632M7.231-62.034Q6.797-62.034 6.465-62.272Q6.133-62.510 5.912-62.899Q5.692-63.288 5.584-63.725Q5.477-64.163 5.477-64.561Q5.477-64.952 5.586-65.395Q5.695-65.839 5.912-66.219Q6.129-66.600 6.463-66.841Q6.797-67.081 7.231-67.081Q7.785-67.081 8.186-66.682Q8.586-66.284 8.783-65.698Q8.981-65.112 8.981-64.561Q8.981-64.007 8.783-63.419Q8.586-62.831 8.186-62.432Q7.785-62.034 7.231-62.034M7.231-62.592Q7.531-62.592 7.748-62.809Q7.965-63.026 8.092-63.354Q8.219-63.682 8.279-64.028Q8.340-64.374 8.340-64.655Q8.340-64.905 8.278-65.231Q8.215-65.557 8.084-65.848Q7.953-66.139 7.740-66.329Q7.528-66.518 7.231-66.518Q6.856-66.518 6.604-66.206Q6.352-65.893 6.235-65.460Q6.117-65.026 6.117-64.655Q6.117-64.257 6.231-63.776Q6.344-63.296 6.592-62.944Q6.840-62.592 7.231-62.592M11.477-62.034Q11.043-62.034 10.711-62.272Q10.379-62.510 10.158-62.899Q9.938-63.288 9.830-63.725Q9.723-64.163 9.723-64.561Q9.723-64.952 9.832-65.395Q9.942-65.839 10.158-66.219Q10.375-66.600 10.709-66.841Q11.043-67.081 11.477-67.081Q12.031-67.081 12.432-66.682Q12.832-66.284 13.029-65.698Q13.227-65.112 13.227-64.561Q13.227-64.007 13.029-63.419Q12.832-62.831 12.432-62.432Q12.031-62.034 11.477-62.034M11.477-62.592Q11.778-62.592 11.994-62.809Q12.211-63.026 12.338-63.354Q12.465-63.682 12.526-64.028Q12.586-64.374 12.586-64.655Q12.586-64.905 12.524-65.231Q12.461-65.557 12.330-65.848Q12.199-66.139 11.987-66.329Q11.774-66.518 11.477-66.518Q11.102-66.518 10.850-66.206Q10.598-65.893 10.481-65.460Q10.363-65.026 10.363-64.655Q10.363-64.257 10.477-63.776Q10.590-63.296 10.838-62.944Q11.086-62.592 11.477-62.592M14.160-63.839Q14.160-64.319 14.404-64.733Q14.649-65.147 15.065-65.385Q15.481-65.624 15.961-65.624Q16.516-65.624 16.895-65.514Q17.274-65.405 17.274-64.999Q17.274-64.831 17.160-64.708Q17.047-64.585 16.875-64.585Q16.703-64.585 16.584-64.700Q16.465-64.815 16.465-64.983L16.465-65.042Q16.305-65.065 15.969-65.065Q15.641-65.065 15.373-64.895Q15.106-64.725 14.953-64.442Q14.801-64.159 14.801-63.839Q14.801-63.518 14.973-63.237Q15.145-62.956 15.430-62.794Q15.715-62.632 16.043-62.632Q16.356-62.632 16.483-62.735Q16.610-62.839 16.727-63.028Q16.844-63.217 16.961-63.233L17.129-63.233Q17.235-63.221 17.299-63.153Q17.363-63.085 17.363-62.983Q17.363-62.936 17.344-62.897Q17.235-62.604 17.031-62.425Q16.828-62.245 16.553-62.159Q16.278-62.073 15.961-62.073Q15.477-62.073 15.061-62.311Q14.645-62.550 14.403-62.952Q14.160-63.354 14.160-63.839M19.711-62.073Q19.246-62.073 18.881-62.323Q18.516-62.573 18.311-62.977Q18.106-63.382 18.106-63.839Q18.106-64.182 18.231-64.503Q18.356-64.823 18.588-65.073Q18.820-65.323 19.125-65.462Q19.430-65.600 19.785-65.600Q20.297-65.600 20.703-65.280L20.703-66.440L20.281-66.440Q20.070-66.464 20.031-66.678L20.031-66.768Q20.070-66.975 20.281-66.999L21.094-66.999Q21.293-66.975 21.344-66.768L21.344-62.671L21.770-62.671Q21.977-62.647 22.016-62.440L22.016-62.350Q21.977-62.135 21.770-62.112L20.953-62.112Q20.754-62.135 20.703-62.350L20.703-62.479Q20.508-62.288 20.246-62.180Q19.985-62.073 19.711-62.073M19.750-62.632Q20.110-62.632 20.362-62.901Q20.613-63.171 20.703-63.546L20.703-64.378Q20.645-64.565 20.518-64.716Q20.391-64.866 20.213-64.954Q20.035-65.042 19.840-65.042Q19.531-65.042 19.281-64.872Q19.031-64.702 18.887-64.417Q18.742-64.132 18.742-63.831Q18.742-63.382 19.028-63.007Q19.313-62.632 19.750-62.632M24.215-62.034Q23.781-62.034 23.449-62.272Q23.117-62.510 22.897-62.899Q22.676-63.288 22.569-63.725Q22.461-64.163 22.461-64.561Q22.461-64.952 22.570-65.395Q22.680-65.839 22.897-66.219Q23.113-66.600 23.447-66.841Q23.781-67.081 24.215-67.081Q24.770-67.081 25.170-66.682Q25.570-66.284 25.768-65.698Q25.965-65.112 25.965-64.561Q25.965-64.007 25.768-63.419Q25.570-62.831 25.170-62.432Q24.770-62.034 24.215-62.034M24.215-62.592Q24.516-62.592 24.733-62.809Q24.949-63.026 25.076-63.354Q25.203-63.682 25.264-64.028Q25.324-64.374 25.324-64.655Q25.324-64.905 25.262-65.231Q25.199-65.557 25.069-65.848Q24.938-66.139 24.725-66.329Q24.512-66.518 24.215-66.518Q23.840-66.518 23.588-66.206Q23.336-65.893 23.219-65.460Q23.102-65.026 23.102-64.655Q23.102-64.257 23.215-63.776Q23.328-63.296 23.576-62.944Q23.824-62.592 24.215-62.592M28.461-62.034Q28.028-62.034 27.695-62.272Q27.363-62.510 27.143-62.899Q26.922-63.288 26.815-63.725Q26.707-64.163 26.707-64.561Q26.707-64.952 26.817-65.395Q26.926-65.839 27.143-66.219Q27.360-66.600 27.694-66.841Q28.028-67.081 28.461-67.081Q29.016-67.081 29.416-66.682Q29.817-66.284 30.014-65.698Q30.211-65.112 30.211-64.561Q30.211-64.007 30.014-63.419Q29.817-62.831 29.416-62.432Q29.016-62.034 28.461-62.034M28.461-62.592Q28.762-62.592 28.979-62.809Q29.195-63.026 29.322-63.354Q29.449-63.682 29.510-64.028Q29.570-64.374 29.570-64.655Q29.570-64.905 29.508-65.231Q29.445-65.557 29.315-65.848Q29.184-66.139 28.971-66.329Q28.758-66.518 28.461-66.518Q28.086-66.518 27.834-66.206Q27.582-65.893 27.465-65.460Q27.348-65.026 27.348-64.655Q27.348-64.257 27.461-63.776Q27.574-63.296 27.822-62.944Q28.070-62.592 28.461-62.592M31.145-63.839Q31.145-64.319 31.389-64.733Q31.633-65.147 32.049-65.385Q32.465-65.624 32.945-65.624Q33.500-65.624 33.879-65.514Q34.258-65.405 34.258-64.999Q34.258-64.831 34.145-64.708Q34.031-64.585 33.860-64.585Q33.688-64.585 33.569-64.700Q33.449-64.815 33.449-64.983L33.449-65.042Q33.289-65.065 32.953-65.065Q32.625-65.065 32.358-64.895Q32.090-64.725 31.938-64.442Q31.785-64.159 31.785-63.839Q31.785-63.518 31.957-63.237Q32.129-62.956 32.414-62.794Q32.699-62.632 33.028-62.632Q33.340-62.632 33.467-62.735Q33.594-62.839 33.711-63.028Q33.828-63.217 33.945-63.233L34.113-63.233Q34.219-63.221 34.283-63.153Q34.348-63.085 34.348-62.983Q34.348-62.936 34.328-62.897Q34.219-62.604 34.016-62.425Q33.813-62.245 33.537-62.159Q33.262-62.073 32.945-62.073Q32.461-62.073 32.045-62.311Q31.629-62.550 31.387-62.952Q31.145-63.354 31.145-63.839M36.695-62.073Q36.231-62.073 35.865-62.323Q35.500-62.573 35.295-62.977Q35.090-63.382 35.090-63.839Q35.090-64.182 35.215-64.503Q35.340-64.823 35.572-65.073Q35.805-65.323 36.110-65.462Q36.414-65.600 36.770-65.600Q37.281-65.600 37.688-65.280L37.688-66.440L37.266-66.440Q37.055-66.464 37.016-66.678L37.016-66.768Q37.055-66.975 37.266-66.999L38.078-66.999Q38.278-66.975 38.328-66.768L38.328-62.671L38.754-62.671Q38.961-62.647 39-62.440L39-62.350Q38.961-62.135 38.754-62.112L37.938-62.112Q37.738-62.135 37.688-62.350L37.688-62.479Q37.492-62.288 37.231-62.180Q36.969-62.073 36.695-62.073M36.735-62.632Q37.094-62.632 37.346-62.901Q37.598-63.171 37.688-63.546L37.688-64.378Q37.629-64.565 37.502-64.716Q37.375-64.866 37.197-64.954Q37.020-65.042 36.824-65.042Q36.516-65.042 36.266-64.872Q36.016-64.702 35.871-64.417Q35.727-64.132 35.727-63.831Q35.727-63.382 36.012-63.007Q36.297-62.632 36.735-62.632\" 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-68.737 28.937h96.74V9.02h-96.74Z\"\u002F>\u003Cg transform=\"translate(-29.75 83.535)\">\u003Cpath d=\"M-18.246-62.034Q-18.680-62.034-19.012-62.272Q-19.344-62.510-19.564-62.899Q-19.785-63.288-19.892-63.725Q-20-64.163-20-64.561Q-20-64.952-19.890-65.395Q-19.781-65.839-19.564-66.219Q-19.347-66.600-19.013-66.841Q-18.680-67.081-18.246-67.081Q-17.691-67.081-17.291-66.682Q-16.890-66.284-16.693-65.698Q-16.496-65.112-16.496-64.561Q-16.496-64.007-16.693-63.419Q-16.890-62.831-17.291-62.432Q-17.691-62.034-18.246-62.034M-18.246-62.592Q-17.945-62.592-17.728-62.809Q-17.512-63.026-17.385-63.354Q-17.258-63.682-17.197-64.028Q-17.137-64.374-17.137-64.655Q-17.137-64.905-17.199-65.231Q-17.262-65.557-17.392-65.848Q-17.523-66.139-17.736-66.329Q-17.949-66.518-18.246-66.518Q-18.621-66.518-18.873-66.206Q-19.125-65.893-19.242-65.460Q-19.359-65.026-19.359-64.655Q-19.359-64.257-19.246-63.776Q-19.133-63.296-18.885-62.944Q-18.637-62.592-18.246-62.592M-15.863-62.350L-15.863-62.440Q-15.824-62.647-15.617-62.671L-15.211-62.671L-14.281-63.889L-15.152-64.999L-15.570-64.999Q-15.765-65.018-15.816-65.241L-15.816-65.327Q-15.765-65.538-15.570-65.561L-14.410-65.561Q-14.211-65.538-14.160-65.327L-14.160-65.241Q-14.211-65.022-14.410-64.999L-14.519-64.999L-14.023-64.342L-13.547-64.999L-13.664-64.999Q-13.863-65.022-13.914-65.241L-13.914-65.327Q-13.863-65.538-13.664-65.561L-12.504-65.561Q-12.308-65.542-12.258-65.327L-12.258-65.241Q-12.308-65.022-12.504-64.999L-12.914-64.999L-13.762-63.889L-12.801-62.671L-12.394-62.671Q-12.195-62.647-12.144-62.440L-12.144-62.350Q-12.183-62.135-12.394-62.112L-13.547-62.112Q-13.754-62.135-13.793-62.350L-13.793-62.440Q-13.754-62.647-13.547-62.671L-13.418-62.671L-14.023-63.526L-14.609-62.671L-14.465-62.671Q-14.258-62.647-14.219-62.440L-14.219-62.350Q-14.258-62.135-14.465-62.112L-15.617-62.112Q-15.812-62.132-15.863-62.350M-9.754-62.034Q-10.187-62.034-10.519-62.272Q-10.851-62.510-11.072-62.899Q-11.293-63.288-11.400-63.725Q-11.508-64.163-11.508-64.561Q-11.508-64.952-11.398-65.395Q-11.289-65.839-11.072-66.219Q-10.855-66.600-10.521-66.841Q-10.187-67.081-9.754-67.081Q-9.199-67.081-8.799-66.682Q-8.398-66.284-8.201-65.698Q-8.004-65.112-8.004-64.561Q-8.004-64.007-8.201-63.419Q-8.398-62.831-8.799-62.432Q-9.199-62.034-9.754-62.034M-9.754-62.592Q-9.453-62.592-9.236-62.809Q-9.019-63.026-8.892-63.354Q-8.765-63.682-8.705-64.028Q-8.644-64.374-8.644-64.655Q-8.644-64.905-8.707-65.231Q-8.769-65.557-8.900-65.848Q-9.031-66.139-9.244-66.329Q-9.457-66.518-9.754-66.518Q-10.129-66.518-10.381-66.206Q-10.633-65.893-10.750-65.460Q-10.867-65.026-10.867-64.655Q-10.867-64.257-10.754-63.776Q-10.640-63.296-10.392-62.944Q-10.144-62.592-9.754-62.592M-6.887-62.350L-6.887-66.440L-7.308-66.440Q-7.515-66.464-7.558-66.678L-7.558-66.768Q-7.515-66.975-7.308-66.999L-6.492-66.999Q-6.297-66.975-6.246-66.768L-6.246-65.257Q-6.035-65.424-5.771-65.512Q-5.508-65.600-5.238-65.600Q-4.898-65.600-4.601-65.456Q-4.305-65.311-4.090-65.059Q-3.875-64.807-3.760-64.495Q-3.644-64.182-3.644-63.839Q-3.644-63.374-3.871-62.964Q-4.097-62.553-4.484-62.313Q-4.871-62.073-5.340-62.073Q-5.859-62.073-6.246-62.440L-6.246-62.350Q-6.297-62.132-6.492-62.112L-6.637-62.112Q-6.828-62.135-6.887-62.350M-5.383-62.632Q-5.074-62.632-4.824-62.801Q-4.574-62.971-4.430-63.253Q-4.285-63.534-4.285-63.839Q-4.285-64.128-4.410-64.407Q-4.535-64.686-4.767-64.864Q-5-65.042-5.301-65.042Q-5.621-65.042-5.883-64.856Q-6.144-64.671-6.246-64.370L-6.246-63.518Q-6.156-63.151-5.935-62.891Q-5.715-62.632-5.383-62.632M-2.824-63.839Q-2.824-64.319-2.580-64.733Q-2.336-65.147-1.920-65.385Q-1.504-65.624-1.023-65.624Q-0.469-65.624-0.090-65.514Q0.289-65.405 0.289-64.999Q0.289-64.831 0.176-64.708Q0.063-64.585-0.109-64.585Q-0.281-64.585-0.400-64.700Q-0.519-64.815-0.519-64.983L-0.519-65.042Q-0.680-65.065-1.015-65.065Q-1.344-65.065-1.611-64.895Q-1.879-64.725-2.031-64.442Q-2.183-64.159-2.183-63.839Q-2.183-63.518-2.012-63.237Q-1.840-62.956-1.555-62.794Q-1.269-62.632-0.941-62.632Q-0.629-62.632-0.502-62.735Q-0.375-62.839-0.258-63.028Q-0.140-63.217-0.023-63.233L0.145-63.233Q0.250-63.221 0.315-63.153Q0.379-63.085 0.379-62.983Q0.379-62.936 0.360-62.897Q0.250-62.604 0.047-62.425Q-0.156-62.245-0.431-62.159Q-0.707-62.073-1.023-62.073Q-1.508-62.073-1.924-62.311Q-2.340-62.550-2.582-62.952Q-2.824-63.354-2.824-63.839M2.727-62.073Q2.262-62.073 1.897-62.323Q1.531-62.573 1.326-62.977Q1.121-63.382 1.121-63.839Q1.121-64.182 1.246-64.503Q1.371-64.823 1.604-65.073Q1.836-65.323 2.141-65.462Q2.445-65.600 2.801-65.600Q3.313-65.600 3.719-65.280L3.719-66.440L3.297-66.440Q3.086-66.464 3.047-66.678L3.047-66.768Q3.086-66.975 3.297-66.999L4.110-66.999Q4.309-66.975 4.360-66.768L4.360-62.671L4.785-62.671Q4.992-62.647 5.031-62.440L5.031-62.350Q4.992-62.135 4.785-62.112L3.969-62.112Q3.770-62.135 3.719-62.350L3.719-62.479Q3.524-62.288 3.262-62.180Q3-62.073 2.727-62.073M2.766-62.632Q3.125-62.632 3.377-62.901Q3.629-63.171 3.719-63.546L3.719-64.378Q3.660-64.565 3.533-64.716Q3.406-64.866 3.229-64.954Q3.051-65.042 2.856-65.042Q2.547-65.042 2.297-64.872Q2.047-64.702 1.903-64.417Q1.758-64.132 1.758-63.831Q1.758-63.382 2.043-63.007Q2.328-62.632 2.766-62.632M7.231-62.034Q6.797-62.034 6.465-62.272Q6.133-62.510 5.912-62.899Q5.692-63.288 5.584-63.725Q5.477-64.163 5.477-64.561Q5.477-64.952 5.586-65.395Q5.695-65.839 5.912-66.219Q6.129-66.600 6.463-66.841Q6.797-67.081 7.231-67.081Q7.785-67.081 8.186-66.682Q8.586-66.284 8.783-65.698Q8.981-65.112 8.981-64.561Q8.981-64.007 8.783-63.419Q8.586-62.831 8.186-62.432Q7.785-62.034 7.231-62.034M7.231-62.592Q7.531-62.592 7.748-62.809Q7.965-63.026 8.092-63.354Q8.219-63.682 8.279-64.028Q8.340-64.374 8.340-64.655Q8.340-64.905 8.278-65.231Q8.215-65.557 8.084-65.848Q7.953-66.139 7.740-66.329Q7.528-66.518 7.231-66.518Q6.856-66.518 6.604-66.206Q6.352-65.893 6.235-65.460Q6.117-65.026 6.117-64.655Q6.117-64.257 6.231-63.776Q6.344-63.296 6.592-62.944Q6.840-62.592 7.231-62.592M10.098-62.350L10.098-66.440L9.676-66.440Q9.469-66.464 9.426-66.678L9.426-66.768Q9.469-66.975 9.676-66.999L10.492-66.999Q10.688-66.975 10.738-66.768L10.738-65.257Q10.949-65.424 11.213-65.512Q11.477-65.600 11.746-65.600Q12.086-65.600 12.383-65.456Q12.680-65.311 12.895-65.059Q13.110-64.807 13.225-64.495Q13.340-64.182 13.340-63.839Q13.340-63.374 13.113-62.964Q12.887-62.553 12.500-62.313Q12.113-62.073 11.645-62.073Q11.125-62.073 10.738-62.440L10.738-62.350Q10.688-62.132 10.492-62.112L10.348-62.112Q10.156-62.135 10.098-62.350M11.602-62.632Q11.910-62.632 12.160-62.801Q12.410-62.971 12.555-63.253Q12.699-63.534 12.699-63.839Q12.699-64.128 12.574-64.407Q12.449-64.686 12.217-64.864Q11.985-65.042 11.684-65.042Q11.363-65.042 11.102-64.856Q10.840-64.671 10.738-64.370L10.738-63.518Q10.828-63.151 11.049-62.891Q11.270-62.632 11.602-62.632M14.160-63.839Q14.160-64.319 14.404-64.733Q14.649-65.147 15.065-65.385Q15.481-65.624 15.961-65.624Q16.516-65.624 16.895-65.514Q17.274-65.405 17.274-64.999Q17.274-64.831 17.160-64.708Q17.047-64.585 16.875-64.585Q16.703-64.585 16.584-64.700Q16.465-64.815 16.465-64.983L16.465-65.042Q16.305-65.065 15.969-65.065Q15.641-65.065 15.373-64.895Q15.106-64.725 14.953-64.442Q14.801-64.159 14.801-63.839Q14.801-63.518 14.973-63.237Q15.145-62.956 15.430-62.794Q15.715-62.632 16.043-62.632Q16.356-62.632 16.483-62.735Q16.610-62.839 16.727-63.028Q16.844-63.217 16.961-63.233L17.129-63.233Q17.235-63.221 17.299-63.153Q17.363-63.085 17.363-62.983Q17.363-62.936 17.344-62.897Q17.235-62.604 17.031-62.425Q16.828-62.245 16.553-62.159Q16.278-62.073 15.961-62.073Q15.477-62.073 15.061-62.311Q14.645-62.550 14.403-62.952Q14.160-63.354 14.160-63.839M19.711-62.073Q19.246-62.073 18.881-62.323Q18.516-62.573 18.311-62.977Q18.106-63.382 18.106-63.839Q18.106-64.182 18.231-64.503Q18.356-64.823 18.588-65.073Q18.820-65.323 19.125-65.462Q19.430-65.600 19.785-65.600Q20.297-65.600 20.703-65.280L20.703-66.440L20.281-66.440Q20.070-66.464 20.031-66.678L20.031-66.768Q20.070-66.975 20.281-66.999L21.094-66.999Q21.293-66.975 21.344-66.768L21.344-62.671L21.770-62.671Q21.977-62.647 22.016-62.440L22.016-62.350Q21.977-62.135 21.770-62.112L20.953-62.112Q20.754-62.135 20.703-62.350L20.703-62.479Q20.508-62.288 20.246-62.180Q19.985-62.073 19.711-62.073M19.750-62.632Q20.110-62.632 20.362-62.901Q20.613-63.171 20.703-63.546L20.703-64.378Q20.645-64.565 20.518-64.716Q20.391-64.866 20.213-64.954Q20.035-65.042 19.840-65.042Q19.531-65.042 19.281-64.872Q19.031-64.702 18.887-64.417Q18.742-64.132 18.742-63.831Q18.742-63.382 19.028-63.007Q19.313-62.632 19.750-62.632M24.215-62.034Q23.781-62.034 23.449-62.272Q23.117-62.510 22.897-62.899Q22.676-63.288 22.569-63.725Q22.461-64.163 22.461-64.561Q22.461-64.952 22.570-65.395Q22.680-65.839 22.897-66.219Q23.113-66.600 23.447-66.841Q23.781-67.081 24.215-67.081Q24.770-67.081 25.170-66.682Q25.570-66.284 25.768-65.698Q25.965-65.112 25.965-64.561Q25.965-64.007 25.768-63.419Q25.570-62.831 25.170-62.432Q24.770-62.034 24.215-62.034M24.215-62.592Q24.516-62.592 24.733-62.809Q24.949-63.026 25.076-63.354Q25.203-63.682 25.264-64.028Q25.324-64.374 25.324-64.655Q25.324-64.905 25.262-65.231Q25.199-65.557 25.069-65.848Q24.938-66.139 24.725-66.329Q24.512-66.518 24.215-66.518Q23.840-66.518 23.588-66.206Q23.336-65.893 23.219-65.460Q23.102-65.026 23.102-64.655Q23.102-64.257 23.215-63.776Q23.328-63.296 23.576-62.944Q23.824-62.592 24.215-62.592M27.082-62.350L27.082-66.440L26.660-66.440Q26.453-66.464 26.410-66.678L26.410-66.768Q26.453-66.975 26.660-66.999L27.477-66.999Q27.672-66.975 27.723-66.768L27.723-65.257Q27.934-65.424 28.197-65.512Q28.461-65.600 28.731-65.600Q29.070-65.600 29.367-65.456Q29.664-65.311 29.879-65.059Q30.094-64.807 30.209-64.495Q30.324-64.182 30.324-63.839Q30.324-63.374 30.098-62.964Q29.871-62.553 29.485-62.313Q29.098-62.073 28.629-62.073Q28.110-62.073 27.723-62.440L27.723-62.350Q27.672-62.132 27.477-62.112L27.332-62.112Q27.141-62.135 27.082-62.350M28.586-62.632Q28.895-62.632 29.145-62.801Q29.395-62.971 29.539-63.253Q29.684-63.534 29.684-63.839Q29.684-64.128 29.559-64.407Q29.434-64.686 29.201-64.864Q28.969-65.042 28.668-65.042Q28.348-65.042 28.086-64.856Q27.824-64.671 27.723-64.370L27.723-63.518Q27.813-63.151 28.033-62.891Q28.254-62.632 28.586-62.632M31.145-63.839Q31.145-64.319 31.389-64.733Q31.633-65.147 32.049-65.385Q32.465-65.624 32.945-65.624Q33.500-65.624 33.879-65.514Q34.258-65.405 34.258-64.999Q34.258-64.831 34.145-64.708Q34.031-64.585 33.860-64.585Q33.688-64.585 33.569-64.700Q33.449-64.815 33.449-64.983L33.449-65.042Q33.289-65.065 32.953-65.065Q32.625-65.065 32.358-64.895Q32.090-64.725 31.938-64.442Q31.785-64.159 31.785-63.839Q31.785-63.518 31.957-63.237Q32.129-62.956 32.414-62.794Q32.699-62.632 33.028-62.632Q33.340-62.632 33.467-62.735Q33.594-62.839 33.711-63.028Q33.828-63.217 33.945-63.233L34.113-63.233Q34.219-63.221 34.283-63.153Q34.348-63.085 34.348-62.983Q34.348-62.936 34.328-62.897Q34.219-62.604 34.016-62.425Q33.813-62.245 33.537-62.159Q33.262-62.073 32.945-62.073Q32.461-62.073 32.045-62.311Q31.629-62.550 31.387-62.952Q31.145-63.354 31.145-63.839M36.695-62.073Q36.231-62.073 35.865-62.323Q35.500-62.573 35.295-62.977Q35.090-63.382 35.090-63.839Q35.090-64.182 35.215-64.503Q35.340-64.823 35.572-65.073Q35.805-65.323 36.110-65.462Q36.414-65.600 36.770-65.600Q37.281-65.600 37.688-65.280L37.688-66.440L37.266-66.440Q37.055-66.464 37.016-66.678L37.016-66.768Q37.055-66.975 37.266-66.999L38.078-66.999Q38.278-66.975 38.328-66.768L38.328-62.671L38.754-62.671Q38.961-62.647 39-62.440L39-62.350Q38.961-62.135 38.754-62.112L37.938-62.112Q37.738-62.135 37.688-62.350L37.688-62.479Q37.492-62.288 37.231-62.180Q36.969-62.073 36.695-62.073M36.735-62.632Q37.094-62.632 37.346-62.901Q37.598-63.171 37.688-63.546L37.688-64.378Q37.629-64.565 37.502-64.716Q37.375-64.866 37.197-64.954Q37.020-65.042 36.824-65.042Q36.516-65.042 36.266-64.872Q36.016-64.702 35.871-64.417Q35.727-64.132 35.727-63.831Q35.727-63.382 36.012-63.007Q36.297-62.632 36.735-62.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-68.737 55.967h96.74V36.05h-96.74Z\"\u002F>\u003Cg transform=\"translate(-29.75 110.565)\">\u003Cpath d=\"M-18.246-62.034Q-18.680-62.034-19.012-62.272Q-19.344-62.510-19.564-62.899Q-19.785-63.288-19.892-63.725Q-20-64.163-20-64.561Q-20-64.952-19.890-65.395Q-19.781-65.839-19.564-66.219Q-19.347-66.600-19.013-66.841Q-18.680-67.081-18.246-67.081Q-17.691-67.081-17.291-66.682Q-16.890-66.284-16.693-65.698Q-16.496-65.112-16.496-64.561Q-16.496-64.007-16.693-63.419Q-16.890-62.831-17.291-62.432Q-17.691-62.034-18.246-62.034M-18.246-62.592Q-17.945-62.592-17.728-62.809Q-17.512-63.026-17.385-63.354Q-17.258-63.682-17.197-64.028Q-17.137-64.374-17.137-64.655Q-17.137-64.905-17.199-65.231Q-17.262-65.557-17.392-65.848Q-17.523-66.139-17.736-66.329Q-17.949-66.518-18.246-66.518Q-18.621-66.518-18.873-66.206Q-19.125-65.893-19.242-65.460Q-19.359-65.026-19.359-64.655Q-19.359-64.257-19.246-63.776Q-19.133-63.296-18.885-62.944Q-18.637-62.592-18.246-62.592M-15.863-62.350L-15.863-62.440Q-15.824-62.647-15.617-62.671L-15.211-62.671L-14.281-63.889L-15.152-64.999L-15.570-64.999Q-15.765-65.018-15.816-65.241L-15.816-65.327Q-15.765-65.538-15.570-65.561L-14.410-65.561Q-14.211-65.538-14.160-65.327L-14.160-65.241Q-14.211-65.022-14.410-64.999L-14.519-64.999L-14.023-64.342L-13.547-64.999L-13.664-64.999Q-13.863-65.022-13.914-65.241L-13.914-65.327Q-13.863-65.538-13.664-65.561L-12.504-65.561Q-12.308-65.542-12.258-65.327L-12.258-65.241Q-12.308-65.022-12.504-64.999L-12.914-64.999L-13.762-63.889L-12.801-62.671L-12.394-62.671Q-12.195-62.647-12.144-62.440L-12.144-62.350Q-12.183-62.135-12.394-62.112L-13.547-62.112Q-13.754-62.135-13.793-62.350L-13.793-62.440Q-13.754-62.647-13.547-62.671L-13.418-62.671L-14.023-63.526L-14.609-62.671L-14.465-62.671Q-14.258-62.647-14.219-62.440L-14.219-62.350Q-14.258-62.135-14.465-62.112L-15.617-62.112Q-15.812-62.132-15.863-62.350M-11.469-63.225Q-11.469-63.671-11.055-63.928Q-10.640-64.186-10.099-64.286Q-9.558-64.385-9.051-64.393Q-9.051-64.608-9.185-64.760Q-9.320-64.913-9.527-64.989Q-9.734-65.065-9.945-65.065Q-10.289-65.065-10.449-65.042L-10.449-64.983Q-10.449-64.815-10.568-64.700Q-10.687-64.585-10.851-64.585Q-11.027-64.585-11.142-64.708Q-11.258-64.831-11.258-64.999Q-11.258-65.405-10.877-65.514Q-10.496-65.624-9.937-65.624Q-9.668-65.624-9.400-65.546Q-9.133-65.467-8.908-65.317Q-8.683-65.167-8.547-64.946Q-8.410-64.725-8.410-64.448L-8.410-62.729Q-8.410-62.671-7.883-62.671Q-7.687-62.651-7.637-62.440L-7.637-62.350Q-7.687-62.135-7.883-62.112L-8.027-62.112Q-8.371-62.112-8.599-62.159Q-8.828-62.206-8.972-62.393Q-9.433-62.073-10.140-62.073Q-10.476-62.073-10.781-62.214Q-11.086-62.354-11.277-62.616Q-11.469-62.878-11.469-63.225M-10.828-63.217Q-10.828-62.944-10.586-62.788Q-10.344-62.632-10.058-62.632Q-9.840-62.632-9.607-62.690Q-9.375-62.749-9.213-62.887Q-9.051-63.026-9.051-63.249L-9.051-63.839Q-9.332-63.839-9.748-63.782Q-10.164-63.725-10.496-63.587Q-10.828-63.448-10.828-63.217M-6.887-62.350L-6.887-66.440L-7.308-66.440Q-7.515-66.464-7.558-66.678L-7.558-66.768Q-7.515-66.975-7.308-66.999L-6.492-66.999Q-6.297-66.975-6.246-66.768L-6.246-65.257Q-6.035-65.424-5.771-65.512Q-5.508-65.600-5.238-65.600Q-4.898-65.600-4.601-65.456Q-4.305-65.311-4.090-65.059Q-3.875-64.807-3.760-64.495Q-3.644-64.182-3.644-63.839Q-3.644-63.374-3.871-62.964Q-4.097-62.553-4.484-62.313Q-4.871-62.073-5.340-62.073Q-5.859-62.073-6.246-62.440L-6.246-62.350Q-6.297-62.132-6.492-62.112L-6.637-62.112Q-6.828-62.135-6.887-62.350M-5.383-62.632Q-5.074-62.632-4.824-62.801Q-4.574-62.971-4.430-63.253Q-4.285-63.534-4.285-63.839Q-4.285-64.128-4.410-64.407Q-4.535-64.686-4.767-64.864Q-5-65.042-5.301-65.042Q-5.621-65.042-5.883-64.856Q-6.144-64.671-6.246-64.370L-6.246-63.518Q-6.156-63.151-5.935-62.891Q-5.715-62.632-5.383-62.632M-2.824-63.839Q-2.824-64.319-2.580-64.733Q-2.336-65.147-1.920-65.385Q-1.504-65.624-1.023-65.624Q-0.469-65.624-0.090-65.514Q0.289-65.405 0.289-64.999Q0.289-64.831 0.176-64.708Q0.063-64.585-0.109-64.585Q-0.281-64.585-0.400-64.700Q-0.519-64.815-0.519-64.983L-0.519-65.042Q-0.680-65.065-1.015-65.065Q-1.344-65.065-1.611-64.895Q-1.879-64.725-2.031-64.442Q-2.183-64.159-2.183-63.839Q-2.183-63.518-2.012-63.237Q-1.840-62.956-1.555-62.794Q-1.269-62.632-0.941-62.632Q-0.629-62.632-0.502-62.735Q-0.375-62.839-0.258-63.028Q-0.140-63.217-0.023-63.233L0.145-63.233Q0.250-63.221 0.315-63.153Q0.379-63.085 0.379-62.983Q0.379-62.936 0.360-62.897Q0.250-62.604 0.047-62.425Q-0.156-62.245-0.431-62.159Q-0.707-62.073-1.023-62.073Q-1.508-62.073-1.924-62.311Q-2.340-62.550-2.582-62.952Q-2.824-63.354-2.824-63.839M2.727-62.073Q2.262-62.073 1.897-62.323Q1.531-62.573 1.326-62.977Q1.121-63.382 1.121-63.839Q1.121-64.182 1.246-64.503Q1.371-64.823 1.604-65.073Q1.836-65.323 2.141-65.462Q2.445-65.600 2.801-65.600Q3.313-65.600 3.719-65.280L3.719-66.440L3.297-66.440Q3.086-66.464 3.047-66.678L3.047-66.768Q3.086-66.975 3.297-66.999L4.110-66.999Q4.309-66.975 4.360-66.768L4.360-62.671L4.785-62.671Q4.992-62.647 5.031-62.440L5.031-62.350Q4.992-62.135 4.785-62.112L3.969-62.112Q3.770-62.135 3.719-62.350L3.719-62.479Q3.524-62.288 3.262-62.180Q3-62.073 2.727-62.073M2.766-62.632Q3.125-62.632 3.377-62.901Q3.629-63.171 3.719-63.546L3.719-64.378Q3.660-64.565 3.533-64.716Q3.406-64.866 3.229-64.954Q3.051-65.042 2.856-65.042Q2.547-65.042 2.297-64.872Q2.047-64.702 1.903-64.417Q1.758-64.132 1.758-63.831Q1.758-63.382 2.043-63.007Q2.328-62.632 2.766-62.632M5.516-63.225Q5.516-63.671 5.930-63.928Q6.344-64.186 6.885-64.286Q7.426-64.385 7.934-64.393Q7.934-64.608 7.799-64.760Q7.664-64.913 7.457-64.989Q7.250-65.065 7.039-65.065Q6.695-65.065 6.535-65.042L6.535-64.983Q6.535-64.815 6.416-64.700Q6.297-64.585 6.133-64.585Q5.957-64.585 5.842-64.708Q5.727-64.831 5.727-64.999Q5.727-65.405 6.108-65.514Q6.488-65.624 7.047-65.624Q7.317-65.624 7.584-65.546Q7.852-65.467 8.076-65.317Q8.301-65.167 8.438-64.946Q8.574-64.725 8.574-64.448L8.574-62.729Q8.574-62.671 9.102-62.671Q9.297-62.651 9.348-62.440L9.348-62.350Q9.297-62.135 9.102-62.112L8.957-62.112Q8.613-62.112 8.385-62.159Q8.156-62.206 8.012-62.393Q7.551-62.073 6.844-62.073Q6.508-62.073 6.203-62.214Q5.899-62.354 5.707-62.616Q5.516-62.878 5.516-63.225M6.156-63.217Q6.156-62.944 6.399-62.788Q6.641-62.632 6.926-62.632Q7.145-62.632 7.377-62.690Q7.610-62.749 7.772-62.887Q7.934-63.026 7.934-63.249L7.934-63.839Q7.653-63.839 7.237-63.782Q6.820-63.725 6.488-63.587Q6.156-63.448 6.156-63.217M10.098-62.350L10.098-66.440L9.676-66.440Q9.469-66.464 9.426-66.678L9.426-66.768Q9.469-66.975 9.676-66.999L10.492-66.999Q10.688-66.975 10.738-66.768L10.738-65.257Q10.949-65.424 11.213-65.512Q11.477-65.600 11.746-65.600Q12.086-65.600 12.383-65.456Q12.680-65.311 12.895-65.059Q13.110-64.807 13.225-64.495Q13.340-64.182 13.340-63.839Q13.340-63.374 13.113-62.964Q12.887-62.553 12.500-62.313Q12.113-62.073 11.645-62.073Q11.125-62.073 10.738-62.440L10.738-62.350Q10.688-62.132 10.492-62.112L10.348-62.112Q10.156-62.135 10.098-62.350M11.602-62.632Q11.910-62.632 12.160-62.801Q12.410-62.971 12.555-63.253Q12.699-63.534 12.699-63.839Q12.699-64.128 12.574-64.407Q12.449-64.686 12.217-64.864Q11.985-65.042 11.684-65.042Q11.363-65.042 11.102-64.856Q10.840-64.671 10.738-64.370L10.738-63.518Q10.828-63.151 11.049-62.891Q11.270-62.632 11.602-62.632M14.160-63.839Q14.160-64.319 14.404-64.733Q14.649-65.147 15.065-65.385Q15.481-65.624 15.961-65.624Q16.516-65.624 16.895-65.514Q17.274-65.405 17.274-64.999Q17.274-64.831 17.160-64.708Q17.047-64.585 16.875-64.585Q16.703-64.585 16.584-64.700Q16.465-64.815 16.465-64.983L16.465-65.042Q16.305-65.065 15.969-65.065Q15.641-65.065 15.373-64.895Q15.106-64.725 14.953-64.442Q14.801-64.159 14.801-63.839Q14.801-63.518 14.973-63.237Q15.145-62.956 15.430-62.794Q15.715-62.632 16.043-62.632Q16.356-62.632 16.483-62.735Q16.610-62.839 16.727-63.028Q16.844-63.217 16.961-63.233L17.129-63.233Q17.235-63.221 17.299-63.153Q17.363-63.085 17.363-62.983Q17.363-62.936 17.344-62.897Q17.235-62.604 17.031-62.425Q16.828-62.245 16.553-62.159Q16.278-62.073 15.961-62.073Q15.477-62.073 15.061-62.311Q14.645-62.550 14.403-62.952Q14.160-63.354 14.160-63.839M19.711-62.073Q19.246-62.073 18.881-62.323Q18.516-62.573 18.311-62.977Q18.106-63.382 18.106-63.839Q18.106-64.182 18.231-64.503Q18.356-64.823 18.588-65.073Q18.820-65.323 19.125-65.462Q19.430-65.600 19.785-65.600Q20.297-65.600 20.703-65.280L20.703-66.440L20.281-66.440Q20.070-66.464 20.031-66.678L20.031-66.768Q20.070-66.975 20.281-66.999L21.094-66.999Q21.293-66.975 21.344-66.768L21.344-62.671L21.770-62.671Q21.977-62.647 22.016-62.440L22.016-62.350Q21.977-62.135 21.770-62.112L20.953-62.112Q20.754-62.135 20.703-62.350L20.703-62.479Q20.508-62.288 20.246-62.180Q19.985-62.073 19.711-62.073M19.750-62.632Q20.110-62.632 20.362-62.901Q20.613-63.171 20.703-63.546L20.703-64.378Q20.645-64.565 20.518-64.716Q20.391-64.866 20.213-64.954Q20.035-65.042 19.840-65.042Q19.531-65.042 19.281-64.872Q19.031-64.702 18.887-64.417Q18.742-64.132 18.742-63.831Q18.742-63.382 19.028-63.007Q19.313-62.632 19.750-62.632M22.500-63.225Q22.500-63.671 22.914-63.928Q23.328-64.186 23.869-64.286Q24.410-64.385 24.918-64.393Q24.918-64.608 24.783-64.760Q24.649-64.913 24.442-64.989Q24.235-65.065 24.024-65.065Q23.680-65.065 23.520-65.042L23.520-64.983Q23.520-64.815 23.401-64.700Q23.281-64.585 23.117-64.585Q22.942-64.585 22.826-64.708Q22.711-64.831 22.711-64.999Q22.711-65.405 23.092-65.514Q23.473-65.624 24.031-65.624Q24.301-65.624 24.569-65.546Q24.836-65.467 25.061-65.317Q25.285-65.167 25.422-64.946Q25.559-64.725 25.559-64.448L25.559-62.729Q25.559-62.671 26.086-62.671Q26.281-62.651 26.332-62.440L26.332-62.350Q26.281-62.135 26.086-62.112L25.942-62.112Q25.598-62.112 25.369-62.159Q25.141-62.206 24.996-62.393Q24.535-62.073 23.828-62.073Q23.492-62.073 23.188-62.214Q22.883-62.354 22.692-62.616Q22.500-62.878 22.500-63.225M23.141-63.217Q23.141-62.944 23.383-62.788Q23.625-62.632 23.910-62.632Q24.129-62.632 24.362-62.690Q24.594-62.749 24.756-62.887Q24.918-63.026 24.918-63.249L24.918-63.839Q24.637-63.839 24.221-63.782Q23.805-63.725 23.473-63.587Q23.141-63.448 23.141-63.217M27.082-62.350L27.082-66.440L26.660-66.440Q26.453-66.464 26.410-66.678L26.410-66.768Q26.453-66.975 26.660-66.999L27.477-66.999Q27.672-66.975 27.723-66.768L27.723-65.257Q27.934-65.424 28.197-65.512Q28.461-65.600 28.731-65.600Q29.070-65.600 29.367-65.456Q29.664-65.311 29.879-65.059Q30.094-64.807 30.209-64.495Q30.324-64.182 30.324-63.839Q30.324-63.374 30.098-62.964Q29.871-62.553 29.485-62.313Q29.098-62.073 28.629-62.073Q28.110-62.073 27.723-62.440L27.723-62.350Q27.672-62.132 27.477-62.112L27.332-62.112Q27.141-62.135 27.082-62.350M28.586-62.632Q28.895-62.632 29.145-62.801Q29.395-62.971 29.539-63.253Q29.684-63.534 29.684-63.839Q29.684-64.128 29.559-64.407Q29.434-64.686 29.201-64.864Q28.969-65.042 28.668-65.042Q28.348-65.042 28.086-64.856Q27.824-64.671 27.723-64.370L27.723-63.518Q27.813-63.151 28.033-62.891Q28.254-62.632 28.586-62.632M31.145-63.839Q31.145-64.319 31.389-64.733Q31.633-65.147 32.049-65.385Q32.465-65.624 32.945-65.624Q33.500-65.624 33.879-65.514Q34.258-65.405 34.258-64.999Q34.258-64.831 34.145-64.708Q34.031-64.585 33.860-64.585Q33.688-64.585 33.569-64.700Q33.449-64.815 33.449-64.983L33.449-65.042Q33.289-65.065 32.953-65.065Q32.625-65.065 32.358-64.895Q32.090-64.725 31.938-64.442Q31.785-64.159 31.785-63.839Q31.785-63.518 31.957-63.237Q32.129-62.956 32.414-62.794Q32.699-62.632 33.028-62.632Q33.340-62.632 33.467-62.735Q33.594-62.839 33.711-63.028Q33.828-63.217 33.945-63.233L34.113-63.233Q34.219-63.221 34.283-63.153Q34.348-63.085 34.348-62.983Q34.348-62.936 34.328-62.897Q34.219-62.604 34.016-62.425Q33.813-62.245 33.537-62.159Q33.262-62.073 32.945-62.073Q32.461-62.073 32.045-62.311Q31.629-62.550 31.387-62.952Q31.145-63.354 31.145-63.839M36.695-62.073Q36.231-62.073 35.865-62.323Q35.500-62.573 35.295-62.977Q35.090-63.382 35.090-63.839Q35.090-64.182 35.215-64.503Q35.340-64.823 35.572-65.073Q35.805-65.323 36.110-65.462Q36.414-65.600 36.770-65.600Q37.281-65.600 37.688-65.280L37.688-66.440L37.266-66.440Q37.055-66.464 37.016-66.678L37.016-66.768Q37.055-66.975 37.266-66.999L38.078-66.999Q38.278-66.975 38.328-66.768L38.328-62.671L38.754-62.671Q38.961-62.647 39-62.440L39-62.350Q38.961-62.135 38.754-62.112L37.938-62.112Q37.738-62.135 37.688-62.350L37.688-62.479Q37.492-62.288 37.231-62.180Q36.969-62.073 36.695-62.073M36.735-62.632Q37.094-62.632 37.346-62.901Q37.598-63.171 37.688-63.546L37.688-64.378Q37.629-64.565 37.502-64.716Q37.375-64.866 37.197-64.954Q37.020-65.042 36.824-65.042Q36.516-65.042 36.266-64.872Q36.016-64.702 35.871-64.417Q35.727-64.132 35.727-63.831Q35.727-63.382 36.012-63.007Q36.297-62.632 36.735-62.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-20.367-51.953v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m-20.367-45.24 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-20.367-24.923v4.713\"\u002F>\u003Cpath stroke=\"none\" d=\"m-20.367-18.21 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-20.367 2.107V6.82\"\u002F>\u003Cpath stroke=\"none\" d=\"m-20.367 8.82 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M-20.367 29.137v4.714\"\u002F>\u003Cpath stroke=\"none\" d=\"m-20.367 35.85 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(63.284 1.889)\">\u003Cpath d=\"M-19.961-63.225Q-19.961-63.671-19.547-63.928Q-19.133-64.186-18.592-64.286Q-18.051-64.385-17.543-64.393Q-17.543-64.608-17.678-64.760Q-17.812-64.913-18.019-64.989Q-18.226-65.065-18.437-65.065Q-18.781-65.065-18.941-65.042L-18.941-64.983Q-18.941-64.815-19.060-64.700Q-19.180-64.585-19.344-64.585Q-19.519-64.585-19.635-64.708Q-19.750-64.831-19.750-64.999Q-19.750-65.405-19.369-65.514Q-18.988-65.624-18.430-65.624Q-18.160-65.624-17.892-65.546Q-17.625-65.467-17.400-65.317Q-17.176-65.167-17.039-64.946Q-16.902-64.725-16.902-64.448L-16.902-62.729Q-16.902-62.671-16.375-62.671Q-16.180-62.651-16.129-62.440L-16.129-62.350Q-16.180-62.135-16.375-62.112L-16.519-62.112Q-16.863-62.112-17.092-62.159Q-17.320-62.206-17.465-62.393Q-17.926-62.073-18.633-62.073Q-18.969-62.073-19.273-62.214Q-19.578-62.354-19.769-62.616Q-19.961-62.878-19.961-63.225M-19.320-63.217Q-19.320-62.944-19.078-62.788Q-18.836-62.632-18.551-62.632Q-18.332-62.632-18.099-62.690Q-17.867-62.749-17.705-62.887Q-17.543-63.026-17.543-63.249L-17.543-63.839Q-17.824-63.839-18.240-63.782Q-18.656-63.725-18.988-63.587Q-19.320-63.448-19.320-63.217M-15.801-62.350L-15.801-62.440Q-15.750-62.647-15.555-62.671L-14.672-62.671L-14.672-64.999L-15.527-64.999Q-15.726-65.022-15.777-65.241L-15.777-65.327Q-15.726-65.538-15.527-65.561L-14.672-65.561L-14.672-66.014Q-14.672-66.479-14.265-66.760Q-13.859-67.042-13.379-67.042Q-13.066-67.042-12.822-66.921Q-12.578-66.799-12.578-66.518Q-12.578-66.354-12.687-66.237Q-12.797-66.120-12.961-66.120Q-13.109-66.120-13.230-66.225Q-13.351-66.331-13.351-66.479L-13.433-66.479Q-13.586-66.479-13.722-66.419Q-13.859-66.358-13.945-66.243Q-14.031-66.128-14.031-65.983L-14.031-65.561L-13-65.561Q-12.805-65.542-12.754-65.327L-12.754-65.241Q-12.805-65.022-13-64.999L-14.031-64.999L-14.031-62.671L-13.152-62.671Q-12.957-62.647-12.906-62.440L-12.906-62.350Q-12.957-62.135-13.152-62.112L-15.555-62.112Q-15.750-62.135-15.801-62.350M-10.676-63.217L-10.676-64.999L-11.426-64.999Q-11.625-65.022-11.676-65.241L-11.676-65.327Q-11.625-65.538-11.426-65.561L-10.676-65.561L-10.676-66.311Q-10.625-66.518-10.426-66.546L-10.281-66.546Q-10.086-66.518-10.035-66.311L-10.035-65.561L-8.676-65.561Q-8.484-65.542-8.426-65.327L-8.426-65.241Q-8.480-65.022-8.676-64.999L-10.035-64.999L-10.035-63.249Q-10.035-62.632-9.461-62.632Q-9.211-62.632-9.047-62.817Q-8.883-63.003-8.883-63.249Q-8.883-63.342-8.810-63.413Q-8.738-63.483-8.637-63.495L-8.492-63.495Q-8.293-63.471-8.242-63.264L-8.242-63.217Q-8.242-62.893-8.426-62.630Q-8.609-62.366-8.902-62.219Q-9.195-62.073-9.515-62.073Q-10.027-62.073-10.351-62.383Q-10.676-62.694-10.676-63.217M-4.117-63.600L-6.558-63.600Q-6.504-63.323-6.306-63.100Q-6.109-62.878-5.832-62.755Q-5.555-62.632-5.269-62.632Q-4.797-62.632-4.574-62.921Q-4.566-62.932-4.510-63.038Q-4.453-63.143-4.404-63.186Q-4.355-63.229-4.262-63.241L-4.117-63.241Q-3.926-63.221-3.867-63.007L-3.867-62.952Q-3.933-62.651-4.164-62.454Q-4.394-62.257-4.707-62.165Q-5.019-62.073-5.324-62.073Q-5.808-62.073-6.248-62.301Q-6.687-62.530-6.955-62.930Q-7.222-63.331-7.222-63.823L-7.222-63.882Q-7.222-64.350-6.976-64.753Q-6.730-65.155-6.322-65.389Q-5.914-65.624-5.445-65.624Q-4.941-65.624-4.588-65.401Q-4.234-65.178-4.051-64.790Q-3.867-64.401-3.867-63.897L-3.867-63.839Q-3.926-63.624-4.117-63.600M-6.551-64.151L-4.523-64.151Q-4.570-64.561-4.808-64.813Q-5.047-65.065-5.445-65.065Q-5.840-65.065-6.146-64.803Q-6.453-64.542-6.551-64.151M-3.160-62.350L-3.160-62.440Q-3.101-62.647-2.910-62.671L-2.199-62.671L-2.199-64.999L-2.910-64.999Q-3.105-65.022-3.160-65.241L-3.160-65.327Q-3.101-65.538-2.910-65.561L-1.808-65.561Q-1.609-65.542-1.558-65.327L-1.558-64.999Q-1.297-65.284-0.941-65.442Q-0.586-65.600-0.199-65.600Q0.094-65.600 0.328-65.466Q0.563-65.331 0.563-65.065Q0.563-64.897 0.453-64.780Q0.344-64.663 0.176-64.663Q0.024-64.663-0.092-64.774Q-0.207-64.885-0.207-65.042Q-0.582-65.042-0.896-64.841Q-1.211-64.639-1.385-64.305Q-1.558-63.971-1.558-63.592L-1.558-62.671L-0.613-62.671Q-0.406-62.647-0.367-62.440L-0.367-62.350Q-0.406-62.135-0.613-62.112L-2.910-62.112Q-3.101-62.135-3.160-62.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 1.889)\">\u003Cpath d=\"M5.391-62.350L5.391-62.440Q5.430-62.647 5.637-62.671L6.043-62.671L6.973-63.889L6.102-64.999L5.684-64.999Q5.488-65.018 5.438-65.241L5.438-65.327Q5.488-65.538 5.684-65.561L6.844-65.561Q7.043-65.538 7.094-65.327L7.094-65.241Q7.043-65.022 6.844-64.999L6.735-64.999L7.231-64.342L7.707-64.999L7.590-64.999Q7.391-65.022 7.340-65.241L7.340-65.327Q7.391-65.538 7.590-65.561L8.750-65.561Q8.945-65.542 8.996-65.327L8.996-65.241Q8.945-65.022 8.750-64.999L8.340-64.999L7.492-63.889L8.453-62.671L8.860-62.671Q9.059-62.647 9.110-62.440L9.110-62.350Q9.070-62.135 8.860-62.112L7.707-62.112Q7.500-62.135 7.461-62.350L7.461-62.440Q7.500-62.647 7.707-62.671L7.836-62.671L7.231-63.526L6.645-62.671L6.789-62.671Q6.996-62.647 7.035-62.440L7.035-62.350Q6.996-62.135 6.789-62.112L5.637-62.112Q5.442-62.132 5.391-62.350M11.500-62.073Q11.028-62.073 10.643-62.317Q10.258-62.561 10.035-62.971Q9.813-63.382 9.813-63.839Q9.813-64.182 9.938-64.505Q10.063-64.827 10.293-65.081Q10.524-65.335 10.830-65.479Q11.137-65.624 11.500-65.624Q11.863-65.624 12.176-65.477Q12.488-65.331 12.711-65.085Q12.934-64.839 13.061-64.518Q13.188-64.198 13.188-63.839Q13.188-63.382 12.963-62.969Q12.738-62.557 12.354-62.315Q11.969-62.073 11.500-62.073M11.500-62.632Q11.965-62.632 12.256-63.026Q12.547-63.421 12.547-63.905Q12.547-64.198 12.412-64.466Q12.278-64.733 12.037-64.899Q11.797-65.065 11.500-65.065Q11.195-65.065 10.957-64.899Q10.719-64.733 10.584-64.466Q10.449-64.198 10.449-63.905Q10.449-63.425 10.742-63.028Q11.035-62.632 11.500-62.632M13.848-62.350L13.848-62.440Q13.906-62.647 14.098-62.671L14.809-62.671L14.809-64.999L14.098-64.999Q13.903-65.022 13.848-65.241L13.848-65.327Q13.906-65.538 14.098-65.561L15.199-65.561Q15.399-65.542 15.449-65.327L15.449-64.999Q15.711-65.284 16.067-65.442Q16.422-65.600 16.809-65.600Q17.102-65.600 17.336-65.466Q17.570-65.331 17.570-65.065Q17.570-64.897 17.461-64.780Q17.352-64.663 17.184-64.663Q17.031-64.663 16.916-64.774Q16.801-64.885 16.801-65.042Q16.426-65.042 16.112-64.841Q15.797-64.639 15.623-64.305Q15.449-63.971 15.449-63.592L15.449-62.671L16.395-62.671Q16.602-62.647 16.641-62.440L16.641-62.350Q16.602-62.135 16.395-62.112L14.098-62.112Q13.906-62.135 13.848-62.350M20.184-60.569L20.184-60.655Q20.235-60.874 20.430-60.897L20.895-60.897L20.895-62.495Q20.442-62.073 19.832-62.073Q19.477-62.073 19.172-62.216Q18.867-62.358 18.635-62.608Q18.403-62.858 18.278-63.180Q18.153-63.503 18.153-63.839Q18.153-64.323 18.391-64.723Q18.629-65.124 19.035-65.362Q19.442-65.600 19.918-65.600Q20.481-65.600 20.895-65.210L20.895-65.370Q20.945-65.581 21.145-65.600L21.285-65.600Q21.485-65.577 21.535-65.370L21.535-60.897L22-60.897Q22.195-60.874 22.246-60.655L22.246-60.569Q22.195-60.358 22-60.335L20.430-60.335Q20.235-60.358 20.184-60.569M19.879-62.632Q20.250-62.632 20.526-62.885Q20.801-63.139 20.895-63.503L20.895-64.120Q20.852-64.358 20.729-64.571Q20.606-64.784 20.408-64.913Q20.211-65.042 19.969-65.042Q19.653-65.042 19.381-64.876Q19.110-64.710 18.951-64.428Q18.793-64.147 18.793-63.831Q18.793-63.366 19.108-62.999Q19.422-62.632 19.879-62.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 1.889)\">\u003Cpath d=\"M29.497-61.471Q28.966-61.780 28.566-62.268Q28.165-62.757 27.954-63.350Q27.743-63.944 27.743-64.561Q27.743-65.178 27.952-65.766Q28.161-66.354 28.558-66.835Q28.954-67.315 29.489-67.639Q29.560-67.663 29.591-67.663L29.681-67.663Q29.779-67.651 29.845-67.585Q29.911-67.518 29.911-67.417Q29.911-67.272 29.810-67.210Q29.361-66.921 29.034-66.505Q28.708-66.089 28.546-65.596Q28.384-65.104 28.384-64.561Q28.384-64.155 28.480-63.768Q28.575-63.382 28.753-63.046Q28.931-62.710 29.191-62.426Q29.450-62.143 29.798-61.913Q29.911-61.835 29.911-61.698Q29.911-61.600 29.845-61.530Q29.779-61.460 29.681-61.448L29.591-61.448Q29.532-61.448 29.497-61.471M31.189-63.839Q31.189-64.319 31.433-64.733Q31.677-65.147 32.093-65.385Q32.509-65.624 32.989-65.624Q33.544-65.624 33.923-65.514Q34.302-65.405 34.302-64.999Q34.302-64.831 34.189-64.708Q34.075-64.585 33.904-64.585Q33.732-64.585 33.613-64.700Q33.493-64.815 33.493-64.983L33.493-65.042Q33.333-65.065 32.997-65.065Q32.669-65.065 32.402-64.895Q32.134-64.725 31.982-64.442Q31.829-64.159 31.829-63.839Q31.829-63.518 32.001-63.237Q32.173-62.956 32.458-62.794Q32.743-62.632 33.072-62.632Q33.384-62.632 33.511-62.735Q33.638-62.839 33.755-63.028Q33.872-63.217 33.989-63.233L34.157-63.233Q34.263-63.221 34.327-63.153Q34.392-63.085 34.392-62.983Q34.392-62.936 34.372-62.897Q34.263-62.604 34.060-62.425Q33.857-62.245 33.581-62.159Q33.306-62.073 32.989-62.073Q32.505-62.073 32.089-62.311Q31.673-62.550 31.431-62.952Q31.189-63.354 31.189-63.839M35.220-60.991Q35.220-61.100 35.271-61.192Q35.322-61.284 35.413-61.335Q35.505-61.385 35.611-61.385Q35.720-61.385 35.812-61.335Q35.904-61.284 35.954-61.192Q36.005-61.100 36.005-60.991L35.861-60.991Q35.861-60.854 35.884-60.854Q36.142-60.854 36.329-61.046Q36.517-61.237 36.603-61.503L36.814-62.112L35.677-64.999L35.349-64.999Q35.154-65.022 35.099-65.241L35.099-65.327Q35.157-65.538 35.349-65.561L36.509-65.561Q36.704-65.538 36.755-65.327L36.755-65.241Q36.704-65.022 36.509-64.999L36.243-64.999Q36.579-64.151 36.823-63.497Q37.068-62.842 37.068-62.753L37.075-62.753Q37.075-62.811 37.167-63.104Q37.259-63.397 37.452-63.981Q37.646-64.565 37.786-64.999L37.509-64.999Q37.298-65.022 37.259-65.241L37.259-65.327Q37.310-65.542 37.509-65.561L38.661-65.561Q38.868-65.538 38.907-65.327L38.907-65.241Q38.868-65.022 38.661-64.999L38.341-64.999L37.165-61.503Q36.997-61.003 36.671-60.649Q36.345-60.296 35.884-60.296Q35.611-60.296 35.415-60.507Q35.220-60.717 35.220-60.991M39.681-63.839Q39.681-64.319 39.925-64.733Q40.169-65.147 40.585-65.385Q41.001-65.624 41.482-65.624Q42.036-65.624 42.415-65.514Q42.794-65.405 42.794-64.999Q42.794-64.831 42.681-64.708Q42.568-64.585 42.396-64.585Q42.224-64.585 42.105-64.700Q41.986-64.815 41.986-64.983L41.986-65.042Q41.825-65.065 41.489-65.065Q41.161-65.065 40.894-64.895Q40.626-64.725 40.474-64.442Q40.322-64.159 40.322-63.839Q40.322-63.518 40.493-63.237Q40.665-62.956 40.950-62.794Q41.236-62.632 41.564-62.632Q41.876-62.632 42.003-62.735Q42.130-62.839 42.247-63.028Q42.364-63.217 42.482-63.233L42.650-63.233Q42.755-63.221 42.820-63.153Q42.884-63.085 42.884-62.983Q42.884-62.936 42.864-62.897Q42.755-62.604 42.552-62.425Q42.349-62.245 42.073-62.159Q41.798-62.073 41.482-62.073Q40.997-62.073 40.581-62.311Q40.165-62.550 39.923-62.952Q39.681-63.354 39.681-63.839M43.818-62.350L43.818-62.440Q43.868-62.647 44.064-62.671L45.169-62.671L45.169-66.440L44.064-66.440Q43.868-66.464 43.818-66.678L43.818-66.768Q43.868-66.975 44.064-66.999L45.560-66.999Q45.751-66.975 45.810-66.768L45.810-62.671L46.911-62.671Q47.111-62.647 47.161-62.440L47.161-62.350Q47.111-62.135 46.911-62.112L44.064-62.112Q43.868-62.135 43.818-62.350M51.126-63.600L48.685-63.600Q48.739-63.323 48.937-63.100Q49.134-62.878 49.411-62.755Q49.689-62.632 49.974-62.632Q50.447-62.632 50.669-62.921Q50.677-62.932 50.734-63.038Q50.790-63.143 50.839-63.186Q50.888-63.229 50.982-63.241L51.126-63.241Q51.318-63.221 51.376-63.007L51.376-62.952Q51.310-62.651 51.079-62.454Q50.849-62.257 50.536-62.165Q50.224-62.073 49.919-62.073Q49.435-62.073 48.995-62.301Q48.556-62.530 48.288-62.930Q48.021-63.331 48.021-63.823L48.021-63.882Q48.021-64.350 48.267-64.753Q48.513-65.155 48.921-65.389Q49.329-65.624 49.798-65.624Q50.302-65.624 50.655-65.401Q51.009-65.178 51.193-64.790Q51.376-64.401 51.376-63.897L51.376-63.839Q51.318-63.624 51.126-63.600M48.693-64.151L50.720-64.151Q50.673-64.561 50.435-64.813Q50.197-65.065 49.798-65.065Q49.404-65.065 49.097-64.803Q48.790-64.542 48.693-64.151\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 1.889)\">\u003Cpath d=\"M57.470-62.327L57.470-62.385Q57.470-62.928 57.575-63.475Q57.681-64.022 57.886-64.546Q58.091-65.069 58.388-65.548Q58.685-66.026 59.064-66.440L57.126-66.440L57.126-66.303Q57.075-66.089 56.876-66.065L56.736-66.065Q56.536-66.089 56.486-66.303L56.486-66.897Q56.536-67.108 56.736-67.128L56.876-67.128Q57.013-67.116 57.087-66.999L59.775-66.999Q59.970-66.975 60.021-66.768L60.021-66.678Q60.009-66.589 59.966-66.538Q59.704-66.280 59.474-66.014Q59.243-65.749 59.081-65.516Q58.919-65.284 58.761-64.985Q58.603-64.686 58.470-64.335Q58.294-63.862 58.202-63.346Q58.111-62.831 58.111-62.327Q58.099-62.202 58.013-62.124Q57.927-62.046 57.806-62.034Q57.669-62.034 57.575-62.112Q57.482-62.190 57.470-62.327M61.419-61.448L61.333-61.448Q61.228-61.460 61.159-61.532Q61.091-61.604 61.091-61.698Q61.091-61.839 61.197-61.905Q61.532-62.120 61.802-62.409Q62.072-62.698 62.255-63.046Q62.439-63.393 62.529-63.772Q62.618-64.151 62.618-64.561Q62.618-65.100 62.454-65.592Q62.290-66.085 61.972-66.499Q61.654-66.913 61.212-67.202Q61.091-67.284 61.091-67.417Q61.091-67.514 61.159-67.583Q61.228-67.651 61.333-67.663L61.419-67.663Q61.474-67.663 61.509-67.639Q61.896-67.417 62.236-67.069Q62.575-66.721 62.796-66.327Q63.017-65.932 63.138-65.487Q63.259-65.042 63.259-64.561Q63.259-64.077 63.138-63.626Q63.017-63.175 62.792-62.778Q62.568-62.382 62.243-62.048Q61.919-61.714 61.517-61.471Q61.447-61.448 61.419-61.448\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M-19.750-62.350L-19.750-62.440Q-19.699-62.647-19.504-62.671L-18.465-62.671L-18.465-64.999L-19.437-64.999Q-19.637-65.022-19.687-65.241L-19.687-65.327Q-19.637-65.538-19.437-65.561L-18.070-65.561Q-17.875-65.542-17.824-65.327L-17.824-62.671L-16.910-62.671Q-16.715-62.647-16.664-62.440L-16.664-62.350Q-16.715-62.135-16.910-62.112L-19.504-62.112Q-19.699-62.135-19.750-62.350M-18.719-66.538L-18.719-66.592Q-18.719-66.764-18.582-66.885Q-18.445-67.007-18.269-67.007Q-18.097-67.007-17.961-66.885Q-17.824-66.764-17.824-66.592L-17.824-66.538Q-17.824-66.362-17.961-66.241Q-18.097-66.120-18.269-66.120Q-18.445-66.120-18.582-66.241Q-18.719-66.362-18.719-66.538M-14.922-63.217L-14.922-64.999L-15.672-64.999Q-15.871-65.022-15.922-65.241L-15.922-65.327Q-15.871-65.538-15.672-65.561L-14.922-65.561L-14.922-66.311Q-14.871-66.518-14.672-66.546L-14.527-66.546Q-14.332-66.518-14.281-66.311L-14.281-65.561L-12.922-65.561Q-12.730-65.542-12.672-65.327L-12.672-65.241Q-12.726-65.022-12.922-64.999L-14.281-64.999L-14.281-63.249Q-14.281-62.632-13.707-62.632Q-13.457-62.632-13.293-62.817Q-13.129-63.003-13.129-63.249Q-13.129-63.342-13.056-63.413Q-12.984-63.483-12.883-63.495L-12.738-63.495Q-12.539-63.471-12.488-63.264L-12.488-63.217Q-12.488-62.893-12.672-62.630Q-12.855-62.366-13.148-62.219Q-13.441-62.073-13.762-62.073Q-14.273-62.073-14.597-62.383Q-14.922-62.694-14.922-63.217M-8.363-63.600L-10.805-63.600Q-10.750-63.323-10.553-63.100Q-10.355-62.878-10.078-62.755Q-9.801-62.632-9.515-62.632Q-9.043-62.632-8.820-62.921Q-8.812-62.932-8.756-63.038Q-8.699-63.143-8.650-63.186Q-8.601-63.229-8.508-63.241L-8.363-63.241Q-8.172-63.221-8.113-63.007L-8.113-62.952Q-8.180-62.651-8.410-62.454Q-8.640-62.257-8.953-62.165Q-9.265-62.073-9.570-62.073Q-10.055-62.073-10.494-62.301Q-10.933-62.530-11.201-62.930Q-11.469-63.331-11.469-63.823L-11.469-63.882Q-11.469-64.350-11.222-64.753Q-10.976-65.155-10.568-65.389Q-10.160-65.624-9.691-65.624Q-9.187-65.624-8.834-65.401Q-8.480-65.178-8.297-64.790Q-8.113-64.401-8.113-63.897L-8.113-63.839Q-8.172-63.624-8.363-63.600M-10.797-64.151L-8.769-64.151Q-8.816-64.561-9.055-64.813Q-9.293-65.065-9.691-65.065Q-10.086-65.065-10.392-64.803Q-10.699-64.542-10.797-64.151M-7.406-62.350L-7.406-62.440Q-7.347-62.647-7.156-62.671L-6.445-62.671L-6.445-64.999L-7.156-64.999Q-7.351-65.022-7.406-65.241L-7.406-65.327Q-7.347-65.538-7.156-65.561L-6.055-65.561Q-5.855-65.542-5.805-65.327L-5.805-64.999Q-5.543-65.284-5.187-65.442Q-4.832-65.600-4.445-65.600Q-4.152-65.600-3.918-65.466Q-3.683-65.331-3.683-65.065Q-3.683-64.897-3.793-64.780Q-3.902-64.663-4.070-64.663Q-4.222-64.663-4.338-64.774Q-4.453-64.885-4.453-65.042Q-4.828-65.042-5.142-64.841Q-5.457-64.639-5.631-64.305Q-5.805-63.971-5.805-63.592L-5.805-62.671L-4.859-62.671Q-4.652-62.647-4.613-62.440L-4.613-62.350Q-4.652-62.135-4.859-62.112L-7.156-62.112Q-7.347-62.135-7.406-62.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M1.738-62.350L1.738-62.440Q1.789-62.647 1.988-62.671L2.805-62.671L2.805-65.854Q2.426-65.546 1.973-65.546Q1.742-65.546 1.692-65.776L1.692-65.866Q1.742-66.081 1.938-66.104Q2.266-66.104 2.520-66.342Q2.774-66.581 2.914-66.928Q2.985-67.057 3.141-67.081L3.196-67.081Q3.391-67.061 3.442-66.846L3.442-62.671L4.258-62.671Q4.457-62.647 4.508-62.440L4.508-62.350Q4.457-62.135 4.258-62.112L1.988-62.112Q1.789-62.135 1.738-62.350M6.696-62.671Q6.696-62.893 6.862-63.059Q7.028-63.225 7.258-63.225Q7.406-63.225 7.533-63.147Q7.660-63.069 7.735-62.944Q7.809-62.819 7.809-62.671Q7.809-62.444 7.643-62.278Q7.477-62.112 7.258-62.112Q7.031-62.112 6.863-62.280Q6.696-62.448 6.696-62.671M6.696-65.007Q6.696-65.229 6.862-65.395Q7.028-65.561 7.258-65.561Q7.406-65.561 7.533-65.483Q7.660-65.405 7.735-65.280Q7.809-65.155 7.809-65.007Q7.809-64.780 7.643-64.614Q7.477-64.448 7.258-64.448Q7.031-64.448 6.863-64.616Q6.696-64.784 6.696-65.007\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M19.700-63.034L19.700-64.249L18.486-64.249Q18.361-64.260 18.275-64.346Q18.189-64.432 18.189-64.561Q18.189-64.690 18.275-64.772Q18.361-64.854 18.486-64.866L19.700-64.866L19.700-66.089Q19.712-66.214 19.798-66.296Q19.884-66.378 20.013-66.378Q20.142-66.378 20.224-66.296Q20.306-66.214 20.318-66.089L20.318-64.866L21.532-64.866Q21.657-64.854 21.739-64.772Q21.822-64.690 21.822-64.561Q21.822-64.432 21.739-64.346Q21.657-64.260 21.532-64.249L20.318-64.249L20.318-63.034Q20.306-62.909 20.224-62.823Q20.142-62.737 20.013-62.737Q19.884-62.737 19.798-62.823Q19.712-62.909 19.700-63.034\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M26.497-62.350L26.497-62.440Q26.548-62.647 26.743-62.671L26.919-62.671L26.919-66.440L26.743-66.440Q26.548-66.464 26.497-66.678L26.497-66.768Q26.548-66.975 26.743-66.999L27.431-66.999Q27.560-66.999 27.659-66.923Q27.759-66.846 27.798-66.737Q27.829-66.632 28.052-65.942Q28.275-65.253 28.390-64.856Q28.505-64.460 28.505-64.385Q28.513-64.464 28.568-64.661Q28.622-64.858 28.736-65.229Q28.849-65.600 28.995-66.063Q29.142-66.526 29.208-66.737Q29.247-66.846 29.351-66.923Q29.454-66.999 29.575-66.999L30.263-66.999Q30.462-66.975 30.513-66.768L30.513-66.678Q30.462-66.464 30.263-66.440L30.087-66.440L30.087-62.671L30.263-62.671Q30.462-62.647 30.513-62.440L30.513-62.350Q30.462-62.135 30.263-62.112L29.384-62.112Q29.189-62.135 29.138-62.350L29.138-62.440Q29.189-62.647 29.384-62.671L29.560-62.671L29.560-66.358Q29.560-66.299 29.476-66.001Q29.392-65.702 29.288-65.370Q29.185-65.038 29.054-64.630Q28.923-64.221 28.857-64.007Q28.818-63.893 28.718-63.819Q28.618-63.745 28.505-63.745Q28.392-63.745 28.292-63.819Q28.193-63.893 28.154-64.007Q28.087-64.221 27.952-64.639Q27.818-65.057 27.681-65.501Q27.544-65.944 27.499-66.108Q27.454-66.272 27.447-66.358L27.447-62.671L27.622-62.671Q27.822-62.647 27.872-62.440L27.872-62.350Q27.822-62.135 27.622-62.112L26.743-62.112Q26.548-62.135 26.497-62.350M32.364-61.678L32.364-67.432Q32.423-67.639 32.614-67.663L34.294-67.663Q34.489-67.643 34.540-67.432L34.540-67.342Q34.489-67.128 34.294-67.104L33.005-67.104L33.005-62.007L34.294-62.007Q34.489-61.987 34.540-61.768L34.540-61.678Q34.489-61.471 34.294-61.448L32.614-61.448Q32.423-61.467 32.364-61.678M36.997-62.034Q36.564-62.034 36.232-62.272Q35.900-62.510 35.679-62.899Q35.458-63.288 35.351-63.725Q35.243-64.163 35.243-64.561Q35.243-64.952 35.353-65.395Q35.462-65.839 35.679-66.219Q35.896-66.600 36.230-66.841Q36.564-67.081 36.997-67.081Q37.552-67.081 37.952-66.682Q38.353-66.284 38.550-65.698Q38.747-65.112 38.747-64.561Q38.747-64.007 38.550-63.419Q38.353-62.831 37.952-62.432Q37.552-62.034 36.997-62.034M36.997-62.592Q37.298-62.592 37.515-62.809Q37.732-63.026 37.859-63.354Q37.986-63.682 38.046-64.028Q38.107-64.374 38.107-64.655Q38.107-64.905 38.044-65.231Q37.982-65.557 37.851-65.848Q37.720-66.139 37.507-66.329Q37.294-66.518 36.997-66.518Q36.622-66.518 36.370-66.206Q36.118-65.893 36.001-65.460Q35.884-65.026 35.884-64.655Q35.884-64.257 35.997-63.776Q36.111-63.296 36.359-62.944Q36.607-62.592 36.997-62.592M39.380-62.350L39.380-62.440Q39.419-62.647 39.626-62.671L40.032-62.671L40.962-63.889L40.091-64.999L39.673-64.999Q39.478-65.018 39.427-65.241L39.427-65.327Q39.478-65.538 39.673-65.561L40.833-65.561Q41.032-65.538 41.083-65.327L41.083-65.241Q41.032-65.022 40.833-64.999L40.724-64.999L41.220-64.342L41.697-64.999L41.579-64.999Q41.380-65.022 41.329-65.241L41.329-65.327Q41.380-65.538 41.579-65.561L42.739-65.561Q42.935-65.542 42.986-65.327L42.986-65.241Q42.935-65.022 42.739-64.999L42.329-64.999L41.482-63.889L42.443-62.671L42.849-62.671Q43.048-62.647 43.099-62.440L43.099-62.350Q43.060-62.135 42.849-62.112L41.697-62.112Q41.489-62.135 41.450-62.350L41.450-62.440Q41.489-62.647 41.697-62.671L41.825-62.671L41.220-63.526L40.634-62.671L40.779-62.671Q40.986-62.647 41.025-62.440L41.025-62.350Q40.986-62.135 40.779-62.112L39.626-62.112Q39.431-62.132 39.380-62.350M45.489-62.034Q45.056-62.034 44.724-62.272Q44.392-62.510 44.171-62.899Q43.950-63.288 43.843-63.725Q43.736-64.163 43.736-64.561Q43.736-64.952 43.845-65.395Q43.954-65.839 44.171-66.219Q44.388-66.600 44.722-66.841Q45.056-67.081 45.489-67.081Q46.044-67.081 46.445-66.682Q46.845-66.284 47.042-65.698Q47.239-65.112 47.239-64.561Q47.239-64.007 47.042-63.419Q46.845-62.831 46.445-62.432Q46.044-62.034 45.489-62.034M45.489-62.592Q45.790-62.592 46.007-62.809Q46.224-63.026 46.351-63.354Q46.478-63.682 46.538-64.028Q46.599-64.374 46.599-64.655Q46.599-64.905 46.536-65.231Q46.474-65.557 46.343-65.848Q46.212-66.139 45.999-66.329Q45.786-66.518 45.489-66.518Q45.114-66.518 44.863-66.206Q44.611-65.893 44.493-65.460Q44.376-65.026 44.376-64.655Q44.376-64.257 44.489-63.776Q44.603-63.296 44.851-62.944Q45.099-62.592 45.489-62.592M48.751-62.991Q48.868-62.788 49.103-62.690Q49.337-62.592 49.599-62.592Q49.896-62.592 50.169-62.721Q50.443-62.850 50.616-63.087Q50.790-63.323 50.790-63.624Q50.790-63.878 50.671-64.120Q50.552-64.362 50.337-64.508Q50.122-64.655 49.853-64.655Q49.247-64.655 48.911-64.335Q48.833-64.249 48.779-64.202Q48.724-64.155 48.638-64.143L48.536-64.143Q48.337-64.167 48.286-64.385L48.286-66.768Q48.337-66.975 48.536-66.999L50.896-66.999Q51.091-66.979 51.142-66.768L51.142-66.678Q51.091-66.464 50.896-66.440L48.927-66.440L48.927-65.014Q49.333-65.217 49.853-65.217Q50.282-65.217 50.648-65.001Q51.013-64.784 51.222-64.415Q51.431-64.046 51.431-63.624Q51.431-63.151 51.167-62.792Q50.904-62.432 50.480-62.233Q50.056-62.034 49.599-62.034Q49.345-62.034 49.068-62.108Q48.790-62.182 48.556-62.339Q48.322-62.495 48.181-62.729Q48.040-62.964 48.040-63.249Q48.040-63.417 48.155-63.540Q48.271-63.663 48.447-63.663Q48.529-63.663 48.599-63.633Q48.669-63.604 48.726-63.550Q48.782-63.495 48.814-63.419Q48.845-63.342 48.845-63.264Q48.845-63.104 48.751-62.991M52.212-63.526Q52.212-63.811 52.368-64.065Q52.525-64.319 52.775-64.493Q53.025-64.667 53.310-64.753Q53.072-64.827 52.845-64.969Q52.618-65.112 52.476-65.321Q52.333-65.530 52.333-65.776Q52.333-66.174 52.579-66.469Q52.825-66.764 53.208-66.923Q53.591-67.081 53.982-67.081Q54.372-67.081 54.755-66.923Q55.138-66.764 55.384-66.466Q55.630-66.167 55.630-65.776Q55.630-65.530 55.488-65.323Q55.345-65.116 55.118-64.971Q54.892-64.827 54.654-64.753Q55.107-64.616 55.427-64.290Q55.747-63.964 55.747-63.526Q55.747-63.089 55.489-62.745Q55.232-62.401 54.822-62.217Q54.411-62.034 53.982-62.034Q53.552-62.034 53.142-62.216Q52.732-62.397 52.472-62.741Q52.212-63.085 52.212-63.526M52.853-63.526Q52.853-63.253 53.019-63.038Q53.185-62.823 53.447-62.708Q53.708-62.592 53.982-62.592Q54.255-62.592 54.515-62.708Q54.775-62.823 54.941-63.040Q55.107-63.257 55.107-63.526Q55.107-63.803 54.941-64.020Q54.775-64.237 54.515-64.354Q54.255-64.471 53.982-64.471Q53.708-64.471 53.447-64.354Q53.185-64.237 53.019-64.022Q52.853-63.807 52.853-63.526M52.974-65.776Q52.974-65.538 53.130-65.370Q53.286-65.202 53.523-65.118Q53.759-65.034 53.982-65.034Q54.200-65.034 54.439-65.118Q54.677-65.202 54.833-65.372Q54.989-65.542 54.989-65.776Q54.989-66.010 54.833-66.180Q54.677-66.350 54.439-66.434Q54.200-66.518 53.982-66.518Q53.759-66.518 53.523-66.434Q53.286-66.350 53.130-66.182Q52.974-66.014 52.974-65.776M56.435-61.678L56.435-61.768Q56.486-61.983 56.681-62.007L57.970-62.007L57.970-67.104L56.681-67.104Q56.486-67.128 56.435-67.342L56.435-67.432Q56.486-67.639 56.681-67.663L58.364-67.663Q58.560-67.639 58.611-67.432L58.611-61.678Q58.560-61.471 58.364-61.448L56.681-61.448Q56.486-61.471 56.435-61.678\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M68.282-63.647L65.236-63.647Q65.114-63.659 65.027-63.743Q64.939-63.827 64.939-63.952Q64.939-64.077 65.023-64.161Q65.107-64.245 65.236-64.264L68.282-64.264Q68.407-64.245 68.489-64.161Q68.572-64.077 68.572-63.952Q68.572-63.827 68.488-63.743Q68.404-63.659 68.282-63.647M68.282-64.854L65.236-64.854Q65.103-64.874 65.021-64.952Q64.939-65.030 64.939-65.159Q64.939-65.284 65.023-65.368Q65.107-65.452 65.236-65.471L68.282-65.471Q68.407-65.452 68.489-65.368Q68.572-65.284 68.572-65.159Q68.572-65.030 68.491-64.952Q68.411-64.874 68.282-64.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 29.474)\">\u003Cpath d=\"M75.255-62.034Q74.822-62.034 74.489-62.272Q74.157-62.510 73.937-62.899Q73.716-63.288 73.609-63.725Q73.501-64.163 73.501-64.561Q73.501-64.952 73.611-65.395Q73.720-65.839 73.937-66.219Q74.154-66.600 74.488-66.841Q74.822-67.081 75.255-67.081Q75.810-67.081 76.210-66.682Q76.611-66.284 76.808-65.698Q77.005-65.112 77.005-64.561Q77.005-64.007 76.808-63.419Q76.611-62.831 76.210-62.432Q75.810-62.034 75.255-62.034M75.255-62.592Q75.556-62.592 75.773-62.809Q75.989-63.026 76.116-63.354Q76.243-63.682 76.304-64.028Q76.364-64.374 76.364-64.655Q76.364-64.905 76.302-65.231Q76.239-65.557 76.109-65.848Q75.978-66.139 75.765-66.329Q75.552-66.518 75.255-66.518Q74.880-66.518 74.628-66.206Q74.376-65.893 74.259-65.460Q74.142-65.026 74.142-64.655Q74.142-64.257 74.255-63.776Q74.368-63.296 74.616-62.944Q74.864-62.592 75.255-62.592M79.501-62.034Q79.068-62.034 78.736-62.272Q78.404-62.510 78.183-62.899Q77.962-63.288 77.855-63.725Q77.747-64.163 77.747-64.561Q77.747-64.952 77.857-65.395Q77.966-65.839 78.183-66.219Q78.400-66.600 78.734-66.841Q79.068-67.081 79.501-67.081Q80.056-67.081 80.456-66.682Q80.857-66.284 81.054-65.698Q81.251-65.112 81.251-64.561Q81.251-64.007 81.054-63.419Q80.857-62.831 80.456-62.432Q80.056-62.034 79.501-62.034M79.501-62.592Q79.802-62.592 80.019-62.809Q80.236-63.026 80.363-63.354Q80.489-63.682 80.550-64.028Q80.611-64.374 80.611-64.655Q80.611-64.905 80.548-65.231Q80.486-65.557 80.355-65.848Q80.224-66.139 80.011-66.329Q79.798-66.518 79.501-66.518Q79.126-66.518 78.874-66.206Q78.622-65.893 78.505-65.460Q78.388-65.026 78.388-64.655Q78.388-64.257 78.501-63.776Q78.614-63.296 78.863-62.944Q79.111-62.592 79.501-62.592M83.747-62.034Q83.314-62.034 82.982-62.272Q82.650-62.510 82.429-62.899Q82.208-63.288 82.101-63.725Q81.993-64.163 81.993-64.561Q81.993-64.952 82.103-65.395Q82.212-65.839 82.429-66.219Q82.646-66.600 82.980-66.841Q83.314-67.081 83.747-67.081Q84.302-67.081 84.702-66.682Q85.103-66.284 85.300-65.698Q85.497-65.112 85.497-64.561Q85.497-64.007 85.300-63.419Q85.103-62.831 84.702-62.432Q84.302-62.034 83.747-62.034M83.747-62.592Q84.048-62.592 84.265-62.809Q84.482-63.026 84.609-63.354Q84.736-63.682 84.796-64.028Q84.857-64.374 84.857-64.655Q84.857-64.905 84.794-65.231Q84.732-65.557 84.601-65.848Q84.470-66.139 84.257-66.329Q84.044-66.518 83.747-66.518Q83.372-66.518 83.120-66.206Q82.868-65.893 82.751-65.460Q82.634-65.026 82.634-64.655Q82.634-64.257 82.747-63.776Q82.861-63.296 83.109-62.944Q83.357-62.592 83.747-62.592M87.736-62.073Q87.271-62.073 86.905-62.323Q86.540-62.573 86.335-62.977Q86.130-63.382 86.130-63.839Q86.130-64.182 86.255-64.503Q86.380-64.823 86.613-65.073Q86.845-65.323 87.150-65.462Q87.454-65.600 87.810-65.600Q88.322-65.600 88.728-65.280L88.728-66.440L88.306-66.440Q88.095-66.464 88.056-66.678L88.056-66.768Q88.095-66.975 88.306-66.999L89.118-66.999Q89.318-66.975 89.368-66.768L89.368-62.671L89.794-62.671Q90.001-62.647 90.040-62.440L90.040-62.350Q90.001-62.135 89.794-62.112L88.978-62.112Q88.779-62.135 88.728-62.350L88.728-62.479Q88.532-62.288 88.271-62.180Q88.009-62.073 87.736-62.073M87.775-62.632Q88.134-62.632 88.386-62.901Q88.638-63.171 88.728-63.546L88.728-64.378Q88.669-64.565 88.542-64.716Q88.415-64.866 88.238-64.954Q88.060-65.042 87.864-65.042Q87.556-65.042 87.306-64.872Q87.056-64.702 86.911-64.417Q86.767-64.132 86.767-63.831Q86.767-63.382 87.052-63.007Q87.337-62.632 87.775-62.632M92.239-62.034Q91.806-62.034 91.474-62.272Q91.142-62.510 90.921-62.899Q90.700-63.288 90.593-63.725Q90.486-64.163 90.486-64.561Q90.486-64.952 90.595-65.395Q90.704-65.839 90.921-66.219Q91.138-66.600 91.472-66.841Q91.806-67.081 92.239-67.081Q92.794-67.081 93.195-66.682Q93.595-66.284 93.792-65.698Q93.989-65.112 93.989-64.561Q93.989-64.007 93.792-63.419Q93.595-62.831 93.195-62.432Q92.794-62.034 92.239-62.034M92.239-62.592Q92.540-62.592 92.757-62.809Q92.974-63.026 93.101-63.354Q93.228-63.682 93.288-64.028Q93.349-64.374 93.349-64.655Q93.349-64.905 93.286-65.231Q93.224-65.557 93.093-65.848Q92.962-66.139 92.749-66.329Q92.536-66.518 92.239-66.518Q91.864-66.518 91.613-66.206Q91.361-65.893 91.243-65.460Q91.126-65.026 91.126-64.655Q91.126-64.257 91.239-63.776Q91.353-63.296 91.601-62.944Q91.849-62.592 92.239-62.592M96.486-62.034Q96.052-62.034 95.720-62.272Q95.388-62.510 95.167-62.899Q94.947-63.288 94.839-63.725Q94.732-64.163 94.732-64.561Q94.732-64.952 94.841-65.395Q94.950-65.839 95.167-66.219Q95.384-66.600 95.718-66.841Q96.052-67.081 96.486-67.081Q97.040-67.081 97.441-66.682Q97.841-66.284 98.038-65.698Q98.236-65.112 98.236-64.561Q98.236-64.007 98.038-63.419Q97.841-62.831 97.441-62.432Q97.040-62.034 96.486-62.034M96.486-62.592Q96.786-62.592 97.003-62.809Q97.220-63.026 97.347-63.354Q97.474-63.682 97.534-64.028Q97.595-64.374 97.595-64.655Q97.595-64.905 97.532-65.231Q97.470-65.557 97.339-65.848Q97.208-66.139 96.995-66.329Q96.782-66.518 96.486-66.518Q96.111-66.518 95.859-66.206Q95.607-65.893 95.489-65.460Q95.372-65.026 95.372-64.655Q95.372-64.257 95.486-63.776Q95.599-63.296 95.847-62.944Q96.095-62.592 96.486-62.592M100.732-62.034Q100.298-62.034 99.966-62.272Q99.634-62.510 99.413-62.899Q99.193-63.288 99.085-63.725Q98.978-64.163 98.978-64.561Q98.978-64.952 99.087-65.395Q99.197-65.839 99.413-66.219Q99.630-66.600 99.964-66.841Q100.298-67.081 100.732-67.081Q101.286-67.081 101.687-66.682Q102.087-66.284 102.284-65.698Q102.482-65.112 102.482-64.561Q102.482-64.007 102.284-63.419Q102.087-62.831 101.687-62.432Q101.286-62.034 100.732-62.034M100.732-62.592Q101.032-62.592 101.249-62.809Q101.466-63.026 101.593-63.354Q101.720-63.682 101.780-64.028Q101.841-64.374 101.841-64.655Q101.841-64.905 101.779-65.231Q101.716-65.557 101.585-65.848Q101.454-66.139 101.241-66.329Q101.029-66.518 100.732-66.518Q100.357-66.518 100.105-66.206Q99.853-65.893 99.736-65.460Q99.618-65.026 99.618-64.655Q99.618-64.257 99.732-63.776Q99.845-63.296 100.093-62.944Q100.341-62.592 100.732-62.592M104.720-62.073Q104.255-62.073 103.890-62.323Q103.525-62.573 103.320-62.977Q103.114-63.382 103.114-63.839Q103.114-64.182 103.239-64.503Q103.364-64.823 103.597-65.073Q103.829-65.323 104.134-65.462Q104.439-65.600 104.794-65.600Q105.306-65.600 105.712-65.280L105.712-66.440L105.290-66.440Q105.079-66.464 105.040-66.678L105.040-66.768Q105.079-66.975 105.290-66.999L106.103-66.999Q106.302-66.975 106.353-66.768L106.353-62.671L106.779-62.671Q106.986-62.647 107.025-62.440L107.025-62.350Q106.986-62.135 106.779-62.112L105.962-62.112Q105.763-62.135 105.712-62.350L105.712-62.479Q105.517-62.288 105.255-62.180Q104.993-62.073 104.720-62.073M104.759-62.632Q105.118-62.632 105.370-62.901Q105.622-63.171 105.712-63.546L105.712-64.378Q105.654-64.565 105.527-64.716Q105.400-64.866 105.222-64.954Q105.044-65.042 104.849-65.042Q104.540-65.042 104.290-64.872Q104.040-64.702 103.896-64.417Q103.751-64.132 103.751-63.831Q103.751-63.382 104.036-63.007Q104.322-62.632 104.759-62.632M109.224-62.034Q108.790-62.034 108.458-62.272Q108.126-62.510 107.905-62.899Q107.685-63.288 107.577-63.725Q107.470-64.163 107.470-64.561Q107.470-64.952 107.579-65.395Q107.689-65.839 107.905-66.219Q108.122-66.600 108.456-66.841Q108.790-67.081 109.224-67.081Q109.779-67.081 110.179-66.682Q110.579-66.284 110.777-65.698Q110.974-65.112 110.974-64.561Q110.974-64.007 110.777-63.419Q110.579-62.831 110.179-62.432Q109.779-62.034 109.224-62.034M109.224-62.592Q109.525-62.592 109.741-62.809Q109.958-63.026 110.085-63.354Q110.212-63.682 110.273-64.028Q110.333-64.374 110.333-64.655Q110.333-64.905 110.271-65.231Q110.208-65.557 110.077-65.848Q109.947-66.139 109.734-66.329Q109.521-66.518 109.224-66.518Q108.849-66.518 108.597-66.206Q108.345-65.893 108.228-65.460Q108.111-65.026 108.111-64.655Q108.111-64.257 108.224-63.776Q108.337-63.296 108.585-62.944Q108.833-62.592 109.224-62.592M113.470-62.034Q113.036-62.034 112.704-62.272Q112.372-62.510 112.152-62.899Q111.931-63.288 111.823-63.725Q111.716-64.163 111.716-64.561Q111.716-64.952 111.825-65.395Q111.935-65.839 112.152-66.219Q112.368-66.600 112.702-66.841Q113.036-67.081 113.470-67.081Q114.025-67.081 114.425-66.682Q114.825-66.284 115.023-65.698Q115.220-65.112 115.220-64.561Q115.220-64.007 115.023-63.419Q114.825-62.831 114.425-62.432Q114.025-62.034 113.470-62.034M113.470-62.592Q113.771-62.592 113.988-62.809Q114.204-63.026 114.331-63.354Q114.458-63.682 114.519-64.028Q114.579-64.374 114.579-64.655Q114.579-64.905 114.517-65.231Q114.454-65.557 114.323-65.848Q114.193-66.139 113.980-66.329Q113.767-66.518 113.470-66.518Q113.095-66.518 112.843-66.206Q112.591-65.893 112.474-65.460Q112.357-65.026 112.357-64.655Q112.357-64.257 112.470-63.776Q112.583-63.296 112.831-62.944Q113.079-62.592 113.470-62.592M117.716-62.034Q117.282-62.034 116.950-62.272Q116.618-62.510 116.398-62.899Q116.177-63.288 116.070-63.725Q115.962-64.163 115.962-64.561Q115.962-64.952 116.072-65.395Q116.181-65.839 116.398-66.219Q116.614-66.600 116.948-66.841Q117.282-67.081 117.716-67.081Q118.271-67.081 118.671-66.682Q119.072-66.284 119.269-65.698Q119.466-65.112 119.466-64.561Q119.466-64.007 119.269-63.419Q119.072-62.831 118.671-62.432Q118.271-62.034 117.716-62.034M117.716-62.592Q118.017-62.592 118.234-62.809Q118.450-63.026 118.577-63.354Q118.704-63.682 118.765-64.028Q118.825-64.374 118.825-64.655Q118.825-64.905 118.763-65.231Q118.700-65.557 118.570-65.848Q118.439-66.139 118.226-66.329Q118.013-66.518 117.716-66.518Q117.341-66.518 117.089-66.206Q116.837-65.893 116.720-65.460Q116.603-65.026 116.603-64.655Q116.603-64.257 116.716-63.776Q116.829-63.296 117.077-62.944Q117.325-62.592 117.716-62.592M121.704-62.073Q121.239-62.073 120.874-62.323Q120.509-62.573 120.304-62.977Q120.099-63.382 120.099-63.839Q120.099-64.182 120.224-64.503Q120.349-64.823 120.581-65.073Q120.814-65.323 121.118-65.462Q121.423-65.600 121.779-65.600Q122.290-65.600 122.697-65.280L122.697-66.440L122.275-66.440Q122.064-66.464 122.025-66.678L122.025-66.768Q122.064-66.975 122.275-66.999L123.087-66.999Q123.286-66.975 123.337-66.768L123.337-62.671L123.763-62.671Q123.970-62.647 124.009-62.440L124.009-62.350Q123.970-62.135 123.763-62.112L122.947-62.112Q122.747-62.135 122.697-62.350L122.697-62.479Q122.501-62.288 122.239-62.180Q121.978-62.073 121.704-62.073M121.743-62.632Q122.103-62.632 122.355-62.901Q122.607-63.171 122.697-63.546L122.697-64.378Q122.638-64.565 122.511-64.716Q122.384-64.866 122.206-64.954Q122.029-65.042 121.833-65.042Q121.525-65.042 121.275-64.872Q121.025-64.702 120.880-64.417Q120.736-64.132 120.736-63.831Q120.736-63.382 121.021-63.007Q121.306-62.632 121.743-62.632\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M-19.750-62.350L-19.750-62.440Q-19.699-62.647-19.504-62.671L-18.465-62.671L-18.465-64.999L-19.437-64.999Q-19.637-65.022-19.687-65.241L-19.687-65.327Q-19.637-65.538-19.437-65.561L-18.070-65.561Q-17.875-65.542-17.824-65.327L-17.824-62.671L-16.910-62.671Q-16.715-62.647-16.664-62.440L-16.664-62.350Q-16.715-62.135-16.910-62.112L-19.504-62.112Q-19.699-62.135-19.750-62.350M-18.719-66.538L-18.719-66.592Q-18.719-66.764-18.582-66.885Q-18.445-67.007-18.269-67.007Q-18.097-67.007-17.961-66.885Q-17.824-66.764-17.824-66.592L-17.824-66.538Q-17.824-66.362-17.961-66.241Q-18.097-66.120-18.269-66.120Q-18.445-66.120-18.582-66.241Q-18.719-66.362-18.719-66.538M-14.922-63.217L-14.922-64.999L-15.672-64.999Q-15.871-65.022-15.922-65.241L-15.922-65.327Q-15.871-65.538-15.672-65.561L-14.922-65.561L-14.922-66.311Q-14.871-66.518-14.672-66.546L-14.527-66.546Q-14.332-66.518-14.281-66.311L-14.281-65.561L-12.922-65.561Q-12.730-65.542-12.672-65.327L-12.672-65.241Q-12.726-65.022-12.922-64.999L-14.281-64.999L-14.281-63.249Q-14.281-62.632-13.707-62.632Q-13.457-62.632-13.293-62.817Q-13.129-63.003-13.129-63.249Q-13.129-63.342-13.056-63.413Q-12.984-63.483-12.883-63.495L-12.738-63.495Q-12.539-63.471-12.488-63.264L-12.488-63.217Q-12.488-62.893-12.672-62.630Q-12.855-62.366-13.148-62.219Q-13.441-62.073-13.762-62.073Q-14.273-62.073-14.597-62.383Q-14.922-62.694-14.922-63.217M-8.363-63.600L-10.805-63.600Q-10.750-63.323-10.553-63.100Q-10.355-62.878-10.078-62.755Q-9.801-62.632-9.515-62.632Q-9.043-62.632-8.820-62.921Q-8.812-62.932-8.756-63.038Q-8.699-63.143-8.650-63.186Q-8.601-63.229-8.508-63.241L-8.363-63.241Q-8.172-63.221-8.113-63.007L-8.113-62.952Q-8.180-62.651-8.410-62.454Q-8.640-62.257-8.953-62.165Q-9.265-62.073-9.570-62.073Q-10.055-62.073-10.494-62.301Q-10.933-62.530-11.201-62.930Q-11.469-63.331-11.469-63.823L-11.469-63.882Q-11.469-64.350-11.222-64.753Q-10.976-65.155-10.568-65.389Q-10.160-65.624-9.691-65.624Q-9.187-65.624-8.834-65.401Q-8.480-65.178-8.297-64.790Q-8.113-64.401-8.113-63.897L-8.113-63.839Q-8.172-63.624-8.363-63.600M-10.797-64.151L-8.769-64.151Q-8.816-64.561-9.055-64.813Q-9.293-65.065-9.691-65.065Q-10.086-65.065-10.392-64.803Q-10.699-64.542-10.797-64.151M-7.406-62.350L-7.406-62.440Q-7.347-62.647-7.156-62.671L-6.445-62.671L-6.445-64.999L-7.156-64.999Q-7.351-65.022-7.406-65.241L-7.406-65.327Q-7.347-65.538-7.156-65.561L-6.055-65.561Q-5.855-65.542-5.805-65.327L-5.805-64.999Q-5.543-65.284-5.187-65.442Q-4.832-65.600-4.445-65.600Q-4.152-65.600-3.918-65.466Q-3.683-65.331-3.683-65.065Q-3.683-64.897-3.793-64.780Q-3.902-64.663-4.070-64.663Q-4.222-64.663-4.338-64.774Q-4.453-64.885-4.453-65.042Q-4.828-65.042-5.142-64.841Q-5.457-64.639-5.631-64.305Q-5.805-63.971-5.805-63.592L-5.805-62.671L-4.859-62.671Q-4.652-62.647-4.613-62.440L-4.613-62.350Q-4.652-62.135-4.859-62.112L-7.156-62.112Q-7.347-62.135-7.406-62.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M1.309-62.350L1.309-62.425Q1.340-62.592 1.442-62.639L2.731-63.706Q3.063-63.983 3.244-64.135Q3.426-64.288 3.621-64.508Q3.817-64.729 3.938-64.979Q4.059-65.229 4.059-65.495Q4.059-65.819 3.883-66.053Q3.707-66.288 3.428-66.403Q3.149-66.518 2.828-66.518Q2.571-66.518 2.342-66.395Q2.113-66.272 2.012-66.057Q2.113-65.924 2.113-65.776Q2.113-65.616 1.994-65.493Q1.875-65.370 1.715-65.370Q1.539-65.370 1.424-65.495Q1.309-65.620 1.309-65.792Q1.309-66.085 1.444-66.327Q1.578-66.569 1.817-66.741Q2.055-66.913 2.322-66.997Q2.590-67.081 2.883-67.081Q3.363-67.081 3.779-66.891Q4.196-66.702 4.447-66.341Q4.699-65.979 4.699-65.495Q4.699-65.151 4.567-64.848Q4.434-64.546 4.209-64.286Q3.985-64.026 3.676-63.764Q3.367-63.503 3.156-63.327L2.348-62.671L4.059-62.671L4.059-62.815Q4.110-63.026 4.309-63.050L4.449-63.050Q4.649-63.030 4.699-62.815L4.699-62.350Q4.649-62.135 4.449-62.112L1.555-62.112Q1.360-62.132 1.309-62.350M6.696-62.671Q6.696-62.893 6.862-63.059Q7.028-63.225 7.258-63.225Q7.406-63.225 7.533-63.147Q7.660-63.069 7.735-62.944Q7.809-62.819 7.809-62.671Q7.809-62.444 7.643-62.278Q7.477-62.112 7.258-62.112Q7.031-62.112 6.863-62.280Q6.696-62.448 6.696-62.671M6.696-65.007Q6.696-65.229 6.862-65.395Q7.028-65.561 7.258-65.561Q7.406-65.561 7.533-65.483Q7.660-65.405 7.735-65.280Q7.809-65.155 7.809-65.007Q7.809-64.780 7.643-64.614Q7.477-64.448 7.258-64.448Q7.031-64.448 6.863-64.616Q6.696-64.784 6.696-65.007\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M19.700-63.034L19.700-64.249L18.486-64.249Q18.361-64.260 18.275-64.346Q18.189-64.432 18.189-64.561Q18.189-64.690 18.275-64.772Q18.361-64.854 18.486-64.866L19.700-64.866L19.700-66.089Q19.712-66.214 19.798-66.296Q19.884-66.378 20.013-66.378Q20.142-66.378 20.224-66.296Q20.306-66.214 20.318-66.089L20.318-64.866L21.532-64.866Q21.657-64.854 21.739-64.772Q21.822-64.690 21.822-64.561Q21.822-64.432 21.739-64.346Q21.657-64.260 21.532-64.249L20.318-64.249L20.318-63.034Q20.306-62.909 20.224-62.823Q20.142-62.737 20.013-62.737Q19.884-62.737 19.798-62.823Q19.712-62.909 19.700-63.034\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M26.497-62.350L26.497-62.440Q26.548-62.647 26.743-62.671L26.919-62.671L26.919-66.440L26.743-66.440Q26.548-66.464 26.497-66.678L26.497-66.768Q26.548-66.975 26.743-66.999L27.431-66.999Q27.560-66.999 27.659-66.923Q27.759-66.846 27.798-66.737Q27.829-66.632 28.052-65.942Q28.275-65.253 28.390-64.856Q28.505-64.460 28.505-64.385Q28.513-64.464 28.568-64.661Q28.622-64.858 28.736-65.229Q28.849-65.600 28.995-66.063Q29.142-66.526 29.208-66.737Q29.247-66.846 29.351-66.923Q29.454-66.999 29.575-66.999L30.263-66.999Q30.462-66.975 30.513-66.768L30.513-66.678Q30.462-66.464 30.263-66.440L30.087-66.440L30.087-62.671L30.263-62.671Q30.462-62.647 30.513-62.440L30.513-62.350Q30.462-62.135 30.263-62.112L29.384-62.112Q29.189-62.135 29.138-62.350L29.138-62.440Q29.189-62.647 29.384-62.671L29.560-62.671L29.560-66.358Q29.560-66.299 29.476-66.001Q29.392-65.702 29.288-65.370Q29.185-65.038 29.054-64.630Q28.923-64.221 28.857-64.007Q28.818-63.893 28.718-63.819Q28.618-63.745 28.505-63.745Q28.392-63.745 28.292-63.819Q28.193-63.893 28.154-64.007Q28.087-64.221 27.952-64.639Q27.818-65.057 27.681-65.501Q27.544-65.944 27.499-66.108Q27.454-66.272 27.447-66.358L27.447-62.671L27.622-62.671Q27.822-62.647 27.872-62.440L27.872-62.350Q27.822-62.135 27.622-62.112L26.743-62.112Q26.548-62.135 26.497-62.350M32.364-61.678L32.364-67.432Q32.423-67.639 32.614-67.663L34.294-67.663Q34.489-67.643 34.540-67.432L34.540-67.342Q34.489-67.128 34.294-67.104L33.005-67.104L33.005-62.007L34.294-62.007Q34.489-61.987 34.540-61.768L34.540-61.678Q34.489-61.471 34.294-61.448L32.614-61.448Q32.423-61.467 32.364-61.678M36.997-62.034Q36.564-62.034 36.232-62.272Q35.900-62.510 35.679-62.899Q35.458-63.288 35.351-63.725Q35.243-64.163 35.243-64.561Q35.243-64.952 35.353-65.395Q35.462-65.839 35.679-66.219Q35.896-66.600 36.230-66.841Q36.564-67.081 36.997-67.081Q37.552-67.081 37.952-66.682Q38.353-66.284 38.550-65.698Q38.747-65.112 38.747-64.561Q38.747-64.007 38.550-63.419Q38.353-62.831 37.952-62.432Q37.552-62.034 36.997-62.034M36.997-62.592Q37.298-62.592 37.515-62.809Q37.732-63.026 37.859-63.354Q37.986-63.682 38.046-64.028Q38.107-64.374 38.107-64.655Q38.107-64.905 38.044-65.231Q37.982-65.557 37.851-65.848Q37.720-66.139 37.507-66.329Q37.294-66.518 36.997-66.518Q36.622-66.518 36.370-66.206Q36.118-65.893 36.001-65.460Q35.884-65.026 35.884-64.655Q35.884-64.257 35.997-63.776Q36.111-63.296 36.359-62.944Q36.607-62.592 36.997-62.592M39.380-62.350L39.380-62.440Q39.419-62.647 39.626-62.671L40.032-62.671L40.962-63.889L40.091-64.999L39.673-64.999Q39.478-65.018 39.427-65.241L39.427-65.327Q39.478-65.538 39.673-65.561L40.833-65.561Q41.032-65.538 41.083-65.327L41.083-65.241Q41.032-65.022 40.833-64.999L40.724-64.999L41.220-64.342L41.697-64.999L41.579-64.999Q41.380-65.022 41.329-65.241L41.329-65.327Q41.380-65.538 41.579-65.561L42.739-65.561Q42.935-65.542 42.986-65.327L42.986-65.241Q42.935-65.022 42.739-64.999L42.329-64.999L41.482-63.889L42.443-62.671L42.849-62.671Q43.048-62.647 43.099-62.440L43.099-62.350Q43.060-62.135 42.849-62.112L41.697-62.112Q41.489-62.135 41.450-62.350L41.450-62.440Q41.489-62.647 41.697-62.671L41.825-62.671L41.220-63.526L40.634-62.671L40.779-62.671Q40.986-62.647 41.025-62.440L41.025-62.350Q40.986-62.135 40.779-62.112L39.626-62.112Q39.431-62.132 39.380-62.350M45.489-62.034Q45.056-62.034 44.724-62.272Q44.392-62.510 44.171-62.899Q43.950-63.288 43.843-63.725Q43.736-64.163 43.736-64.561Q43.736-64.952 43.845-65.395Q43.954-65.839 44.171-66.219Q44.388-66.600 44.722-66.841Q45.056-67.081 45.489-67.081Q46.044-67.081 46.445-66.682Q46.845-66.284 47.042-65.698Q47.239-65.112 47.239-64.561Q47.239-64.007 47.042-63.419Q46.845-62.831 46.445-62.432Q46.044-62.034 45.489-62.034M45.489-62.592Q45.790-62.592 46.007-62.809Q46.224-63.026 46.351-63.354Q46.478-63.682 46.538-64.028Q46.599-64.374 46.599-64.655Q46.599-64.905 46.536-65.231Q46.474-65.557 46.343-65.848Q46.212-66.139 45.999-66.329Q45.786-66.518 45.489-66.518Q45.114-66.518 44.863-66.206Q44.611-65.893 44.493-65.460Q44.376-65.026 44.376-64.655Q44.376-64.257 44.489-63.776Q44.603-63.296 44.851-62.944Q45.099-62.592 45.489-62.592M49.736-62.034Q49.095-62.034 48.708-62.411Q48.322-62.788 48.163-63.360Q48.005-63.932 48.005-64.561Q48.005-65.026 48.165-65.481Q48.325-65.936 48.614-66.296Q48.904-66.655 49.312-66.868Q49.720-67.081 50.208-67.081Q50.482-67.081 50.732-66.983Q50.982-66.885 51.134-66.690Q51.286-66.495 51.286-66.202Q51.286-66.026 51.173-65.905Q51.060-65.784 50.888-65.784Q50.712-65.784 50.595-65.897Q50.478-66.010 50.478-66.182Q50.478-66.303 50.552-66.424Q50.443-66.518 50.208-66.518Q49.790-66.518 49.454-66.278Q49.118-66.038 48.913-65.651Q48.708-65.264 48.661-64.866Q48.900-65.065 49.208-65.173Q49.517-65.280 49.837-65.280Q50.177-65.280 50.476-65.155Q50.775-65.030 50.993-64.811Q51.212-64.592 51.337-64.294Q51.462-63.995 51.462-63.655Q51.462-63.307 51.323-63.007Q51.185-62.706 50.945-62.489Q50.704-62.272 50.390-62.153Q50.075-62.034 49.736-62.034M48.751-63.577Q48.814-63.315 48.943-63.091Q49.072-62.866 49.271-62.729Q49.470-62.592 49.736-62.592Q50.189-62.592 50.505-62.899Q50.822-63.206 50.822-63.655Q50.822-63.936 50.687-64.182Q50.552-64.428 50.316-64.571Q50.079-64.714 49.782-64.714Q49.392-64.714 49.060-64.487Q48.728-64.260 48.728-63.889Q48.728-63.850 48.743-63.772Q48.759-63.694 48.759-63.655Q48.759-63.628 48.757-63.612Q48.755-63.596 48.751-63.577M53.982-62.034Q53.548-62.034 53.216-62.272Q52.884-62.510 52.663-62.899Q52.443-63.288 52.335-63.725Q52.228-64.163 52.228-64.561Q52.228-64.952 52.337-65.395Q52.447-65.839 52.663-66.219Q52.880-66.600 53.214-66.841Q53.548-67.081 53.982-67.081Q54.536-67.081 54.937-66.682Q55.337-66.284 55.534-65.698Q55.732-65.112 55.732-64.561Q55.732-64.007 55.534-63.419Q55.337-62.831 54.937-62.432Q54.536-62.034 53.982-62.034M53.982-62.592Q54.282-62.592 54.499-62.809Q54.716-63.026 54.843-63.354Q54.970-63.682 55.030-64.028Q55.091-64.374 55.091-64.655Q55.091-64.905 55.029-65.231Q54.966-65.557 54.835-65.848Q54.704-66.139 54.491-66.329Q54.279-66.518 53.982-66.518Q53.607-66.518 53.355-66.206Q53.103-65.893 52.986-65.460Q52.868-65.026 52.868-64.655Q52.868-64.257 52.982-63.776Q53.095-63.296 53.343-62.944Q53.591-62.592 53.982-62.592M56.435-61.678L56.435-61.768Q56.486-61.983 56.681-62.007L57.970-62.007L57.970-67.104L56.681-67.104Q56.486-67.128 56.435-67.342L56.435-67.432Q56.486-67.639 56.681-67.663L58.364-67.663Q58.560-67.639 58.611-67.432L58.611-61.678Q58.560-61.471 58.364-61.448L56.681-61.448Q56.486-61.471 56.435-61.678\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M68.282-63.647L65.236-63.647Q65.114-63.659 65.027-63.743Q64.939-63.827 64.939-63.952Q64.939-64.077 65.023-64.161Q65.107-64.245 65.236-64.264L68.282-64.264Q68.407-64.245 68.489-64.161Q68.572-64.077 68.572-63.952Q68.572-63.827 68.488-63.743Q68.404-63.659 68.282-63.647M68.282-64.854L65.236-64.854Q65.103-64.874 65.021-64.952Q64.939-65.030 64.939-65.159Q64.939-65.284 65.023-65.368Q65.107-65.452 65.236-65.471L68.282-65.471Q68.407-65.452 68.489-65.368Q68.572-65.284 68.572-65.159Q68.572-65.030 68.491-64.952Q68.411-64.874 68.282-64.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 56.504)\">\u003Cpath d=\"M75.255-62.034Q74.822-62.034 74.489-62.272Q74.157-62.510 73.937-62.899Q73.716-63.288 73.609-63.725Q73.501-64.163 73.501-64.561Q73.501-64.952 73.611-65.395Q73.720-65.839 73.937-66.219Q74.154-66.600 74.488-66.841Q74.822-67.081 75.255-67.081Q75.810-67.081 76.210-66.682Q76.611-66.284 76.808-65.698Q77.005-65.112 77.005-64.561Q77.005-64.007 76.808-63.419Q76.611-62.831 76.210-62.432Q75.810-62.034 75.255-62.034M75.255-62.592Q75.556-62.592 75.773-62.809Q75.989-63.026 76.116-63.354Q76.243-63.682 76.304-64.028Q76.364-64.374 76.364-64.655Q76.364-64.905 76.302-65.231Q76.239-65.557 76.109-65.848Q75.978-66.139 75.765-66.329Q75.552-66.518 75.255-66.518Q74.880-66.518 74.628-66.206Q74.376-65.893 74.259-65.460Q74.142-65.026 74.142-64.655Q74.142-64.257 74.255-63.776Q74.368-63.296 74.616-62.944Q74.864-62.592 75.255-62.592M79.501-62.034Q79.068-62.034 78.736-62.272Q78.404-62.510 78.183-62.899Q77.962-63.288 77.855-63.725Q77.747-64.163 77.747-64.561Q77.747-64.952 77.857-65.395Q77.966-65.839 78.183-66.219Q78.400-66.600 78.734-66.841Q79.068-67.081 79.501-67.081Q80.056-67.081 80.456-66.682Q80.857-66.284 81.054-65.698Q81.251-65.112 81.251-64.561Q81.251-64.007 81.054-63.419Q80.857-62.831 80.456-62.432Q80.056-62.034 79.501-62.034M79.501-62.592Q79.802-62.592 80.019-62.809Q80.236-63.026 80.363-63.354Q80.489-63.682 80.550-64.028Q80.611-64.374 80.611-64.655Q80.611-64.905 80.548-65.231Q80.486-65.557 80.355-65.848Q80.224-66.139 80.011-66.329Q79.798-66.518 79.501-66.518Q79.126-66.518 78.874-66.206Q78.622-65.893 78.505-65.460Q78.388-65.026 78.388-64.655Q78.388-64.257 78.501-63.776Q78.614-63.296 78.863-62.944Q79.111-62.592 79.501-62.592M82.185-63.839Q82.185-64.319 82.429-64.733Q82.673-65.147 83.089-65.385Q83.505-65.624 83.986-65.624Q84.540-65.624 84.919-65.514Q85.298-65.405 85.298-64.999Q85.298-64.831 85.185-64.708Q85.072-64.585 84.900-64.585Q84.728-64.585 84.609-64.700Q84.489-64.815 84.489-64.983L84.489-65.042Q84.329-65.065 83.993-65.065Q83.665-65.065 83.398-64.895Q83.130-64.725 82.978-64.442Q82.825-64.159 82.825-63.839Q82.825-63.518 82.997-63.237Q83.169-62.956 83.454-62.794Q83.739-62.632 84.068-62.632Q84.380-62.632 84.507-62.735Q84.634-62.839 84.751-63.028Q84.868-63.217 84.986-63.233L85.154-63.233Q85.259-63.221 85.323-63.153Q85.388-63.085 85.388-62.983Q85.388-62.936 85.368-62.897Q85.259-62.604 85.056-62.425Q84.853-62.245 84.577-62.159Q84.302-62.073 83.986-62.073Q83.501-62.073 83.085-62.311Q82.669-62.550 82.427-62.952Q82.185-63.354 82.185-63.839M87.993-62.034Q87.560-62.034 87.228-62.272Q86.896-62.510 86.675-62.899Q86.454-63.288 86.347-63.725Q86.239-64.163 86.239-64.561Q86.239-64.952 86.349-65.395Q86.458-65.839 86.675-66.219Q86.892-66.600 87.226-66.841Q87.560-67.081 87.993-67.081Q88.548-67.081 88.948-66.682Q89.349-66.284 89.546-65.698Q89.743-65.112 89.743-64.561Q89.743-64.007 89.546-63.419Q89.349-62.831 88.948-62.432Q88.548-62.034 87.993-62.034M87.993-62.592Q88.294-62.592 88.511-62.809Q88.728-63.026 88.855-63.354Q88.982-63.682 89.042-64.028Q89.103-64.374 89.103-64.655Q89.103-64.905 89.040-65.231Q88.978-65.557 88.847-65.848Q88.716-66.139 88.503-66.329Q88.290-66.518 87.993-66.518Q87.618-66.518 87.366-66.206Q87.114-65.893 86.997-65.460Q86.880-65.026 86.880-64.655Q86.880-64.257 86.993-63.776Q87.107-63.296 87.355-62.944Q87.603-62.592 87.993-62.592M92.239-62.034Q91.806-62.034 91.474-62.272Q91.142-62.510 90.921-62.899Q90.700-63.288 90.593-63.725Q90.486-64.163 90.486-64.561Q90.486-64.952 90.595-65.395Q90.704-65.839 90.921-66.219Q91.138-66.600 91.472-66.841Q91.806-67.081 92.239-67.081Q92.794-67.081 93.195-66.682Q93.595-66.284 93.792-65.698Q93.989-65.112 93.989-64.561Q93.989-64.007 93.792-63.419Q93.595-62.831 93.195-62.432Q92.794-62.034 92.239-62.034M92.239-62.592Q92.540-62.592 92.757-62.809Q92.974-63.026 93.101-63.354Q93.228-63.682 93.288-64.028Q93.349-64.374 93.349-64.655Q93.349-64.905 93.286-65.231Q93.224-65.557 93.093-65.848Q92.962-66.139 92.749-66.329Q92.536-66.518 92.239-66.518Q91.864-66.518 91.613-66.206Q91.361-65.893 91.243-65.460Q91.126-65.026 91.126-64.655Q91.126-64.257 91.239-63.776Q91.353-63.296 91.601-62.944Q91.849-62.592 92.239-62.592M96.486-62.034Q96.052-62.034 95.720-62.272Q95.388-62.510 95.167-62.899Q94.947-63.288 94.839-63.725Q94.732-64.163 94.732-64.561Q94.732-64.952 94.841-65.395Q94.950-65.839 95.167-66.219Q95.384-66.600 95.718-66.841Q96.052-67.081 96.486-67.081Q97.040-67.081 97.441-66.682Q97.841-66.284 98.038-65.698Q98.236-65.112 98.236-64.561Q98.236-64.007 98.038-63.419Q97.841-62.831 97.441-62.432Q97.040-62.034 96.486-62.034M96.486-62.592Q96.786-62.592 97.003-62.809Q97.220-63.026 97.347-63.354Q97.474-63.682 97.534-64.028Q97.595-64.374 97.595-64.655Q97.595-64.905 97.532-65.231Q97.470-65.557 97.339-65.848Q97.208-66.139 96.995-66.329Q96.782-66.518 96.486-66.518Q96.111-66.518 95.859-66.206Q95.607-65.893 95.489-65.460Q95.372-65.026 95.372-64.655Q95.372-64.257 95.486-63.776Q95.599-63.296 95.847-62.944Q96.095-62.592 96.486-62.592M99.169-63.839Q99.169-64.319 99.413-64.733Q99.657-65.147 100.073-65.385Q100.489-65.624 100.970-65.624Q101.525-65.624 101.904-65.514Q102.282-65.405 102.282-64.999Q102.282-64.831 102.169-64.708Q102.056-64.585 101.884-64.585Q101.712-64.585 101.593-64.700Q101.474-64.815 101.474-64.983L101.474-65.042Q101.314-65.065 100.978-65.065Q100.650-65.065 100.382-64.895Q100.114-64.725 99.962-64.442Q99.810-64.159 99.810-63.839Q99.810-63.518 99.982-63.237Q100.154-62.956 100.439-62.794Q100.724-62.632 101.052-62.632Q101.364-62.632 101.491-62.735Q101.618-62.839 101.736-63.028Q101.853-63.217 101.970-63.233L102.138-63.233Q102.243-63.221 102.308-63.153Q102.372-63.085 102.372-62.983Q102.372-62.936 102.353-62.897Q102.243-62.604 102.040-62.425Q101.837-62.245 101.562-62.159Q101.286-62.073 100.970-62.073Q100.486-62.073 100.070-62.311Q99.654-62.550 99.411-62.952Q99.169-63.354 99.169-63.839M104.978-62.034Q104.544-62.034 104.212-62.272Q103.880-62.510 103.659-62.899Q103.439-63.288 103.331-63.725Q103.224-64.163 103.224-64.561Q103.224-64.952 103.333-65.395Q103.443-65.839 103.659-66.219Q103.876-66.600 104.210-66.841Q104.544-67.081 104.978-67.081Q105.532-67.081 105.933-66.682Q106.333-66.284 106.530-65.698Q106.728-65.112 106.728-64.561Q106.728-64.007 106.530-63.419Q106.333-62.831 105.933-62.432Q105.532-62.034 104.978-62.034M104.978-62.592Q105.279-62.592 105.495-62.809Q105.712-63.026 105.839-63.354Q105.966-63.682 106.027-64.028Q106.087-64.374 106.087-64.655Q106.087-64.905 106.025-65.231Q105.962-65.557 105.831-65.848Q105.700-66.139 105.488-66.329Q105.275-66.518 104.978-66.518Q104.603-66.518 104.351-66.206Q104.099-65.893 103.982-65.460Q103.864-65.026 103.864-64.655Q103.864-64.257 103.978-63.776Q104.091-63.296 104.339-62.944Q104.587-62.592 104.978-62.592M109.224-62.034Q108.790-62.034 108.458-62.272Q108.126-62.510 107.905-62.899Q107.685-63.288 107.577-63.725Q107.470-64.163 107.470-64.561Q107.470-64.952 107.579-65.395Q107.689-65.839 107.905-66.219Q108.122-66.600 108.456-66.841Q108.790-67.081 109.224-67.081Q109.779-67.081 110.179-66.682Q110.579-66.284 110.777-65.698Q110.974-65.112 110.974-64.561Q110.974-64.007 110.777-63.419Q110.579-62.831 110.179-62.432Q109.779-62.034 109.224-62.034M109.224-62.592Q109.525-62.592 109.741-62.809Q109.958-63.026 110.085-63.354Q110.212-63.682 110.273-64.028Q110.333-64.374 110.333-64.655Q110.333-64.905 110.271-65.231Q110.208-65.557 110.077-65.848Q109.947-66.139 109.734-66.329Q109.521-66.518 109.224-66.518Q108.849-66.518 108.597-66.206Q108.345-65.893 108.228-65.460Q108.111-65.026 108.111-64.655Q108.111-64.257 108.224-63.776Q108.337-63.296 108.585-62.944Q108.833-62.592 109.224-62.592M113.470-62.034Q113.036-62.034 112.704-62.272Q112.372-62.510 112.152-62.899Q111.931-63.288 111.823-63.725Q111.716-64.163 111.716-64.561Q111.716-64.952 111.825-65.395Q111.935-65.839 112.152-66.219Q112.368-66.600 112.702-66.841Q113.036-67.081 113.470-67.081Q114.025-67.081 114.425-66.682Q114.825-66.284 115.023-65.698Q115.220-65.112 115.220-64.561Q115.220-64.007 115.023-63.419Q114.825-62.831 114.425-62.432Q114.025-62.034 113.470-62.034M113.470-62.592Q113.771-62.592 113.988-62.809Q114.204-63.026 114.331-63.354Q114.458-63.682 114.519-64.028Q114.579-64.374 114.579-64.655Q114.579-64.905 114.517-65.231Q114.454-65.557 114.323-65.848Q114.193-66.139 113.980-66.329Q113.767-66.518 113.470-66.518Q113.095-66.518 112.843-66.206Q112.591-65.893 112.474-65.460Q112.357-65.026 112.357-64.655Q112.357-64.257 112.470-63.776Q112.583-63.296 112.831-62.944Q113.079-62.592 113.470-62.592M116.154-63.839Q116.154-64.319 116.398-64.733Q116.642-65.147 117.058-65.385Q117.474-65.624 117.954-65.624Q118.509-65.624 118.888-65.514Q119.267-65.405 119.267-64.999Q119.267-64.831 119.154-64.708Q119.040-64.585 118.868-64.585Q118.697-64.585 118.577-64.700Q118.458-64.815 118.458-64.983L118.458-65.042Q118.298-65.065 117.962-65.065Q117.634-65.065 117.366-64.895Q117.099-64.725 116.947-64.442Q116.794-64.159 116.794-63.839Q116.794-63.518 116.966-63.237Q117.138-62.956 117.423-62.794Q117.708-62.632 118.036-62.632Q118.349-62.632 118.476-62.735Q118.603-62.839 118.720-63.028Q118.837-63.217 118.954-63.233L119.122-63.233Q119.228-63.221 119.292-63.153Q119.357-63.085 119.357-62.983Q119.357-62.936 119.337-62.897Q119.228-62.604 119.025-62.425Q118.822-62.245 118.546-62.159Q118.271-62.073 117.954-62.073Q117.470-62.073 117.054-62.311Q116.638-62.550 116.396-62.952Q116.154-63.354 116.154-63.839M121.962-62.034Q121.529-62.034 121.197-62.272Q120.864-62.510 120.644-62.899Q120.423-63.288 120.316-63.725Q120.208-64.163 120.208-64.561Q120.208-64.952 120.318-65.395Q120.427-65.839 120.644-66.219Q120.861-66.600 121.195-66.841Q121.529-67.081 121.962-67.081Q122.517-67.081 122.917-66.682Q123.318-66.284 123.515-65.698Q123.712-65.112 123.712-64.561Q123.712-64.007 123.515-63.419Q123.318-62.831 122.917-62.432Q122.517-62.034 121.962-62.034M121.962-62.592Q122.263-62.592 122.480-62.809Q122.697-63.026 122.823-63.354Q122.950-63.682 123.011-64.028Q123.072-64.374 123.072-64.655Q123.072-64.905 123.009-65.231Q122.947-65.557 122.816-65.848Q122.685-66.139 122.472-66.329Q122.259-66.518 121.962-66.518Q121.587-66.518 121.335-66.206Q121.083-65.893 120.966-65.460Q120.849-65.026 120.849-64.655Q120.849-64.257 120.962-63.776Q121.075-63.296 121.323-62.944Q121.572-62.592 121.962-62.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M-19.750-62.350L-19.750-62.440Q-19.699-62.647-19.504-62.671L-18.465-62.671L-18.465-64.999L-19.437-64.999Q-19.637-65.022-19.687-65.241L-19.687-65.327Q-19.637-65.538-19.437-65.561L-18.070-65.561Q-17.875-65.542-17.824-65.327L-17.824-62.671L-16.910-62.671Q-16.715-62.647-16.664-62.440L-16.664-62.350Q-16.715-62.135-16.910-62.112L-19.504-62.112Q-19.699-62.135-19.750-62.350M-18.719-66.538L-18.719-66.592Q-18.719-66.764-18.582-66.885Q-18.445-67.007-18.269-67.007Q-18.097-67.007-17.961-66.885Q-17.824-66.764-17.824-66.592L-17.824-66.538Q-17.824-66.362-17.961-66.241Q-18.097-66.120-18.269-66.120Q-18.445-66.120-18.582-66.241Q-18.719-66.362-18.719-66.538M-14.922-63.217L-14.922-64.999L-15.672-64.999Q-15.871-65.022-15.922-65.241L-15.922-65.327Q-15.871-65.538-15.672-65.561L-14.922-65.561L-14.922-66.311Q-14.871-66.518-14.672-66.546L-14.527-66.546Q-14.332-66.518-14.281-66.311L-14.281-65.561L-12.922-65.561Q-12.730-65.542-12.672-65.327L-12.672-65.241Q-12.726-65.022-12.922-64.999L-14.281-64.999L-14.281-63.249Q-14.281-62.632-13.707-62.632Q-13.457-62.632-13.293-62.817Q-13.129-63.003-13.129-63.249Q-13.129-63.342-13.056-63.413Q-12.984-63.483-12.883-63.495L-12.738-63.495Q-12.539-63.471-12.488-63.264L-12.488-63.217Q-12.488-62.893-12.672-62.630Q-12.855-62.366-13.148-62.219Q-13.441-62.073-13.762-62.073Q-14.273-62.073-14.597-62.383Q-14.922-62.694-14.922-63.217M-8.363-63.600L-10.805-63.600Q-10.750-63.323-10.553-63.100Q-10.355-62.878-10.078-62.755Q-9.801-62.632-9.515-62.632Q-9.043-62.632-8.820-62.921Q-8.812-62.932-8.756-63.038Q-8.699-63.143-8.650-63.186Q-8.601-63.229-8.508-63.241L-8.363-63.241Q-8.172-63.221-8.113-63.007L-8.113-62.952Q-8.180-62.651-8.410-62.454Q-8.640-62.257-8.953-62.165Q-9.265-62.073-9.570-62.073Q-10.055-62.073-10.494-62.301Q-10.933-62.530-11.201-62.930Q-11.469-63.331-11.469-63.823L-11.469-63.882Q-11.469-64.350-11.222-64.753Q-10.976-65.155-10.568-65.389Q-10.160-65.624-9.691-65.624Q-9.187-65.624-8.834-65.401Q-8.480-65.178-8.297-64.790Q-8.113-64.401-8.113-63.897L-8.113-63.839Q-8.172-63.624-8.363-63.600M-10.797-64.151L-8.769-64.151Q-8.816-64.561-9.055-64.813Q-9.293-65.065-9.691-65.065Q-10.086-65.065-10.392-64.803Q-10.699-64.542-10.797-64.151M-7.406-62.350L-7.406-62.440Q-7.347-62.647-7.156-62.671L-6.445-62.671L-6.445-64.999L-7.156-64.999Q-7.351-65.022-7.406-65.241L-7.406-65.327Q-7.347-65.538-7.156-65.561L-6.055-65.561Q-5.855-65.542-5.805-65.327L-5.805-64.999Q-5.543-65.284-5.187-65.442Q-4.832-65.600-4.445-65.600Q-4.152-65.600-3.918-65.466Q-3.683-65.331-3.683-65.065Q-3.683-64.897-3.793-64.780Q-3.902-64.663-4.070-64.663Q-4.222-64.663-4.338-64.774Q-4.453-64.885-4.453-65.042Q-4.828-65.042-5.142-64.841Q-5.457-64.639-5.631-64.305Q-5.805-63.971-5.805-63.592L-5.805-62.671L-4.859-62.671Q-4.652-62.647-4.613-62.440L-4.613-62.350Q-4.652-62.135-4.859-62.112L-7.156-62.112Q-7.347-62.135-7.406-62.350\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M1.235-63.159Q1.235-63.335 1.352-63.456Q1.469-63.577 1.645-63.577Q1.727-63.577 1.803-63.546Q1.879-63.514 1.930-63.464Q1.981-63.413 2.012-63.333Q2.043-63.253 2.043-63.175Q2.043-63.042 1.961-62.928Q2.231-62.592 3.020-62.592Q3.446-62.592 3.787-62.858Q4.129-63.124 4.129-63.538Q4.129-63.811 3.963-64.030Q3.797-64.249 3.537-64.360Q3.278-64.471 3.004-64.471L2.539-64.471Q2.328-64.495 2.297-64.714L2.297-64.799Q2.328-65.003 2.539-65.034L3.067-65.073Q3.281-65.073 3.473-65.196Q3.664-65.319 3.778-65.522Q3.891-65.725 3.891-65.936Q3.891-66.210 3.608-66.364Q3.324-66.518 3.020-66.518Q2.457-66.518 2.219-66.327Q2.281-66.214 2.281-66.104Q2.281-65.932 2.168-65.819Q2.055-65.706 1.883-65.706Q1.707-65.706 1.592-65.829Q1.477-65.952 1.477-66.120Q1.477-66.647 1.949-66.864Q2.422-67.081 3.020-67.081Q3.360-67.081 3.715-66.950Q4.071-66.819 4.301-66.561Q4.531-66.303 4.531-65.936Q4.531-65.592 4.363-65.288Q4.196-64.983 3.899-64.784Q4.270-64.604 4.520-64.268Q4.770-63.932 4.770-63.538Q4.770-63.092 4.516-62.751Q4.262-62.409 3.860-62.221Q3.457-62.034 3.020-62.034Q2.735-62.034 2.430-62.089Q2.125-62.143 1.850-62.270Q1.574-62.397 1.404-62.620Q1.235-62.842 1.235-63.159M6.696-62.671Q6.696-62.893 6.862-63.059Q7.028-63.225 7.258-63.225Q7.406-63.225 7.533-63.147Q7.660-63.069 7.735-62.944Q7.809-62.819 7.809-62.671Q7.809-62.444 7.643-62.278Q7.477-62.112 7.258-62.112Q7.031-62.112 6.863-62.280Q6.696-62.448 6.696-62.671M6.696-65.007Q6.696-65.229 6.862-65.395Q7.028-65.561 7.258-65.561Q7.406-65.561 7.533-65.483Q7.660-65.405 7.735-65.280Q7.809-65.155 7.809-65.007Q7.809-64.780 7.643-64.614Q7.477-64.448 7.258-64.448Q7.031-64.448 6.863-64.616Q6.696-64.784 6.696-65.007\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M19.700-63.034L19.700-64.249L18.486-64.249Q18.361-64.260 18.275-64.346Q18.189-64.432 18.189-64.561Q18.189-64.690 18.275-64.772Q18.361-64.854 18.486-64.866L19.700-64.866L19.700-66.089Q19.712-66.214 19.798-66.296Q19.884-66.378 20.013-66.378Q20.142-66.378 20.224-66.296Q20.306-66.214 20.318-66.089L20.318-64.866L21.532-64.866Q21.657-64.854 21.739-64.772Q21.822-64.690 21.822-64.561Q21.822-64.432 21.739-64.346Q21.657-64.260 21.532-64.249L20.318-64.249L20.318-63.034Q20.306-62.909 20.224-62.823Q20.142-62.737 20.013-62.737Q19.884-62.737 19.798-62.823Q19.712-62.909 19.700-63.034\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M26.497-62.350L26.497-62.440Q26.548-62.647 26.743-62.671L26.919-62.671L26.919-66.440L26.743-66.440Q26.548-66.464 26.497-66.678L26.497-66.768Q26.548-66.975 26.743-66.999L27.431-66.999Q27.560-66.999 27.659-66.923Q27.759-66.846 27.798-66.737Q27.829-66.632 28.052-65.942Q28.275-65.253 28.390-64.856Q28.505-64.460 28.505-64.385Q28.513-64.464 28.568-64.661Q28.622-64.858 28.736-65.229Q28.849-65.600 28.995-66.063Q29.142-66.526 29.208-66.737Q29.247-66.846 29.351-66.923Q29.454-66.999 29.575-66.999L30.263-66.999Q30.462-66.975 30.513-66.768L30.513-66.678Q30.462-66.464 30.263-66.440L30.087-66.440L30.087-62.671L30.263-62.671Q30.462-62.647 30.513-62.440L30.513-62.350Q30.462-62.135 30.263-62.112L29.384-62.112Q29.189-62.135 29.138-62.350L29.138-62.440Q29.189-62.647 29.384-62.671L29.560-62.671L29.560-66.358Q29.560-66.299 29.476-66.001Q29.392-65.702 29.288-65.370Q29.185-65.038 29.054-64.630Q28.923-64.221 28.857-64.007Q28.818-63.893 28.718-63.819Q28.618-63.745 28.505-63.745Q28.392-63.745 28.292-63.819Q28.193-63.893 28.154-64.007Q28.087-64.221 27.952-64.639Q27.818-65.057 27.681-65.501Q27.544-65.944 27.499-66.108Q27.454-66.272 27.447-66.358L27.447-62.671L27.622-62.671Q27.822-62.647 27.872-62.440L27.872-62.350Q27.822-62.135 27.622-62.112L26.743-62.112Q26.548-62.135 26.497-62.350M32.364-61.678L32.364-67.432Q32.423-67.639 32.614-67.663L34.294-67.663Q34.489-67.643 34.540-67.432L34.540-67.342Q34.489-67.128 34.294-67.104L33.005-67.104L33.005-62.007L34.294-62.007Q34.489-61.987 34.540-61.768L34.540-61.678Q34.489-61.471 34.294-61.448L32.614-61.448Q32.423-61.467 32.364-61.678M36.997-62.034Q36.564-62.034 36.232-62.272Q35.900-62.510 35.679-62.899Q35.458-63.288 35.351-63.725Q35.243-64.163 35.243-64.561Q35.243-64.952 35.353-65.395Q35.462-65.839 35.679-66.219Q35.896-66.600 36.230-66.841Q36.564-67.081 36.997-67.081Q37.552-67.081 37.952-66.682Q38.353-66.284 38.550-65.698Q38.747-65.112 38.747-64.561Q38.747-64.007 38.550-63.419Q38.353-62.831 37.952-62.432Q37.552-62.034 36.997-62.034M36.997-62.592Q37.298-62.592 37.515-62.809Q37.732-63.026 37.859-63.354Q37.986-63.682 38.046-64.028Q38.107-64.374 38.107-64.655Q38.107-64.905 38.044-65.231Q37.982-65.557 37.851-65.848Q37.720-66.139 37.507-66.329Q37.294-66.518 36.997-66.518Q36.622-66.518 36.370-66.206Q36.118-65.893 36.001-65.460Q35.884-65.026 35.884-64.655Q35.884-64.257 35.997-63.776Q36.111-63.296 36.359-62.944Q36.607-62.592 36.997-62.592M39.380-62.350L39.380-62.440Q39.419-62.647 39.626-62.671L40.032-62.671L40.962-63.889L40.091-64.999L39.673-64.999Q39.478-65.018 39.427-65.241L39.427-65.327Q39.478-65.538 39.673-65.561L40.833-65.561Q41.032-65.538 41.083-65.327L41.083-65.241Q41.032-65.022 40.833-64.999L40.724-64.999L41.220-64.342L41.697-64.999L41.579-64.999Q41.380-65.022 41.329-65.241L41.329-65.327Q41.380-65.538 41.579-65.561L42.739-65.561Q42.935-65.542 42.986-65.327L42.986-65.241Q42.935-65.022 42.739-64.999L42.329-64.999L41.482-63.889L42.443-62.671L42.849-62.671Q43.048-62.647 43.099-62.440L43.099-62.350Q43.060-62.135 42.849-62.112L41.697-62.112Q41.489-62.135 41.450-62.350L41.450-62.440Q41.489-62.647 41.697-62.671L41.825-62.671L41.220-63.526L40.634-62.671L40.779-62.671Q40.986-62.647 41.025-62.440L41.025-62.350Q40.986-62.135 40.779-62.112L39.626-62.112Q39.431-62.132 39.380-62.350M45.489-62.034Q45.056-62.034 44.724-62.272Q44.392-62.510 44.171-62.899Q43.950-63.288 43.843-63.725Q43.736-64.163 43.736-64.561Q43.736-64.952 43.845-65.395Q43.954-65.839 44.171-66.219Q44.388-66.600 44.722-66.841Q45.056-67.081 45.489-67.081Q46.044-67.081 46.445-66.682Q46.845-66.284 47.042-65.698Q47.239-65.112 47.239-64.561Q47.239-64.007 47.042-63.419Q46.845-62.831 46.445-62.432Q46.044-62.034 45.489-62.034M45.489-62.592Q45.790-62.592 46.007-62.809Q46.224-63.026 46.351-63.354Q46.478-63.682 46.538-64.028Q46.599-64.374 46.599-64.655Q46.599-64.905 46.536-65.231Q46.474-65.557 46.343-65.848Q46.212-66.139 45.999-66.329Q45.786-66.518 45.489-66.518Q45.114-66.518 44.863-66.206Q44.611-65.893 44.493-65.460Q44.376-65.026 44.376-64.655Q44.376-64.257 44.489-63.776Q44.603-63.296 44.851-62.944Q45.099-62.592 45.489-62.592M49.736-62.034Q49.095-62.034 48.708-62.411Q48.322-62.788 48.163-63.360Q48.005-63.932 48.005-64.561Q48.005-65.026 48.165-65.481Q48.325-65.936 48.614-66.296Q48.904-66.655 49.312-66.868Q49.720-67.081 50.208-67.081Q50.482-67.081 50.732-66.983Q50.982-66.885 51.134-66.690Q51.286-66.495 51.286-66.202Q51.286-66.026 51.173-65.905Q51.060-65.784 50.888-65.784Q50.712-65.784 50.595-65.897Q50.478-66.010 50.478-66.182Q50.478-66.303 50.552-66.424Q50.443-66.518 50.208-66.518Q49.790-66.518 49.454-66.278Q49.118-66.038 48.913-65.651Q48.708-65.264 48.661-64.866Q48.900-65.065 49.208-65.173Q49.517-65.280 49.837-65.280Q50.177-65.280 50.476-65.155Q50.775-65.030 50.993-64.811Q51.212-64.592 51.337-64.294Q51.462-63.995 51.462-63.655Q51.462-63.307 51.323-63.007Q51.185-62.706 50.945-62.489Q50.704-62.272 50.390-62.153Q50.075-62.034 49.736-62.034M48.751-63.577Q48.814-63.315 48.943-63.091Q49.072-62.866 49.271-62.729Q49.470-62.592 49.736-62.592Q50.189-62.592 50.505-62.899Q50.822-63.206 50.822-63.655Q50.822-63.936 50.687-64.182Q50.552-64.428 50.316-64.571Q50.079-64.714 49.782-64.714Q49.392-64.714 49.060-64.487Q48.728-64.260 48.728-63.889Q48.728-63.850 48.743-63.772Q48.759-63.694 48.759-63.655Q48.759-63.628 48.757-63.612Q48.755-63.596 48.751-63.577M52.212-63.526Q52.212-63.811 52.368-64.065Q52.525-64.319 52.775-64.493Q53.025-64.667 53.310-64.753Q53.072-64.827 52.845-64.969Q52.618-65.112 52.476-65.321Q52.333-65.530 52.333-65.776Q52.333-66.174 52.579-66.469Q52.825-66.764 53.208-66.923Q53.591-67.081 53.982-67.081Q54.372-67.081 54.755-66.923Q55.138-66.764 55.384-66.466Q55.630-66.167 55.630-65.776Q55.630-65.530 55.488-65.323Q55.345-65.116 55.118-64.971Q54.892-64.827 54.654-64.753Q55.107-64.616 55.427-64.290Q55.747-63.964 55.747-63.526Q55.747-63.089 55.489-62.745Q55.232-62.401 54.822-62.217Q54.411-62.034 53.982-62.034Q53.552-62.034 53.142-62.216Q52.732-62.397 52.472-62.741Q52.212-63.085 52.212-63.526M52.853-63.526Q52.853-63.253 53.019-63.038Q53.185-62.823 53.447-62.708Q53.708-62.592 53.982-62.592Q54.255-62.592 54.515-62.708Q54.775-62.823 54.941-63.040Q55.107-63.257 55.107-63.526Q55.107-63.803 54.941-64.020Q54.775-64.237 54.515-64.354Q54.255-64.471 53.982-64.471Q53.708-64.471 53.447-64.354Q53.185-64.237 53.019-64.022Q52.853-63.807 52.853-63.526M52.974-65.776Q52.974-65.538 53.130-65.370Q53.286-65.202 53.523-65.118Q53.759-65.034 53.982-65.034Q54.200-65.034 54.439-65.118Q54.677-65.202 54.833-65.372Q54.989-65.542 54.989-65.776Q54.989-66.010 54.833-66.180Q54.677-66.350 54.439-66.434Q54.200-66.518 53.982-66.518Q53.759-66.518 53.523-66.434Q53.286-66.350 53.130-66.182Q52.974-66.014 52.974-65.776M56.435-61.678L56.435-61.768Q56.486-61.983 56.681-62.007L57.970-62.007L57.970-67.104L56.681-67.104Q56.486-67.128 56.435-67.342L56.435-67.432Q56.486-67.639 56.681-67.663L58.364-67.663Q58.560-67.639 58.611-67.432L58.611-61.678Q58.560-61.471 58.364-61.448L56.681-61.448Q56.486-61.471 56.435-61.678\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M68.282-63.647L65.236-63.647Q65.114-63.659 65.027-63.743Q64.939-63.827 64.939-63.952Q64.939-64.077 65.023-64.161Q65.107-64.245 65.236-64.264L68.282-64.264Q68.407-64.245 68.489-64.161Q68.572-64.077 68.572-63.952Q68.572-63.827 68.488-63.743Q68.404-63.659 68.282-63.647M68.282-64.854L65.236-64.854Q65.103-64.874 65.021-64.952Q64.939-65.030 64.939-65.159Q64.939-65.284 65.023-65.368Q65.107-65.452 65.236-65.471L68.282-65.471Q68.407-65.452 68.489-65.368Q68.572-65.284 68.572-65.159Q68.572-65.030 68.491-64.952Q68.411-64.874 68.282-64.854\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 83.535)\">\u003Cpath d=\"M75.255-62.034Q74.822-62.034 74.489-62.272Q74.157-62.510 73.937-62.899Q73.716-63.288 73.609-63.725Q73.501-64.163 73.501-64.561Q73.501-64.952 73.611-65.395Q73.720-65.839 73.937-66.219Q74.154-66.600 74.488-66.841Q74.822-67.081 75.255-67.081Q75.810-67.081 76.210-66.682Q76.611-66.284 76.808-65.698Q77.005-65.112 77.005-64.561Q77.005-64.007 76.808-63.419Q76.611-62.831 76.210-62.432Q75.810-62.034 75.255-62.034M75.255-62.592Q75.556-62.592 75.773-62.809Q75.989-63.026 76.116-63.354Q76.243-63.682 76.304-64.028Q76.364-64.374 76.364-64.655Q76.364-64.905 76.302-65.231Q76.239-65.557 76.109-65.848Q75.978-66.139 75.765-66.329Q75.552-66.518 75.255-66.518Q74.880-66.518 74.628-66.206Q74.376-65.893 74.259-65.460Q74.142-65.026 74.142-64.655Q74.142-64.257 74.255-63.776Q74.368-63.296 74.616-62.944Q74.864-62.592 75.255-62.592M78.122-62.350L78.122-66.440L77.700-66.440Q77.493-66.464 77.450-66.678L77.450-66.768Q77.493-66.975 77.700-66.999L78.517-66.999Q78.712-66.975 78.763-66.768L78.763-65.257Q78.974-65.424 79.238-65.512Q79.501-65.600 79.771-65.600Q80.111-65.600 80.407-65.456Q80.704-65.311 80.919-65.059Q81.134-64.807 81.249-64.495Q81.364-64.182 81.364-63.839Q81.364-63.374 81.138-62.964Q80.911-62.553 80.525-62.313Q80.138-62.073 79.669-62.073Q79.150-62.073 78.763-62.440L78.763-62.350Q78.712-62.132 78.517-62.112L78.372-62.112Q78.181-62.135 78.122-62.350M79.626-62.632Q79.935-62.632 80.185-62.801Q80.435-62.971 80.579-63.253Q80.724-63.534 80.724-63.839Q80.724-64.128 80.599-64.407Q80.474-64.686 80.241-64.864Q80.009-65.042 79.708-65.042Q79.388-65.042 79.126-64.856Q78.864-64.671 78.763-64.370L78.763-63.518Q78.853-63.151 79.073-62.891Q79.294-62.632 79.626-62.632M83.747-62.034Q83.314-62.034 82.982-62.272Q82.650-62.510 82.429-62.899Q82.208-63.288 82.101-63.725Q81.993-64.163 81.993-64.561Q81.993-64.952 82.103-65.395Q82.212-65.839 82.429-66.219Q82.646-66.600 82.980-66.841Q83.314-67.081 83.747-67.081Q84.302-67.081 84.702-66.682Q85.103-66.284 85.300-65.698Q85.497-65.112 85.497-64.561Q85.497-64.007 85.300-63.419Q85.103-62.831 84.702-62.432Q84.302-62.034 83.747-62.034M83.747-62.592Q84.048-62.592 84.265-62.809Q84.482-63.026 84.609-63.354Q84.736-63.682 84.796-64.028Q84.857-64.374 84.857-64.655Q84.857-64.905 84.794-65.231Q84.732-65.557 84.601-65.848Q84.470-66.139 84.257-66.329Q84.044-66.518 83.747-66.518Q83.372-66.518 83.120-66.206Q82.868-65.893 82.751-65.460Q82.634-65.026 82.634-64.655Q82.634-64.257 82.747-63.776Q82.861-63.296 83.109-62.944Q83.357-62.592 83.747-62.592M87.993-62.034Q87.560-62.034 87.228-62.272Q86.896-62.510 86.675-62.899Q86.454-63.288 86.347-63.725Q86.239-64.163 86.239-64.561Q86.239-64.952 86.349-65.395Q86.458-65.839 86.675-66.219Q86.892-66.600 87.226-66.841Q87.560-67.081 87.993-67.081Q88.548-67.081 88.948-66.682Q89.349-66.284 89.546-65.698Q89.743-65.112 89.743-64.561Q89.743-64.007 89.546-63.419Q89.349-62.831 88.948-62.432Q88.548-62.034 87.993-62.034M87.993-62.592Q88.294-62.592 88.511-62.809Q88.728-63.026 88.855-63.354Q88.982-63.682 89.042-64.028Q89.103-64.374 89.103-64.655Q89.103-64.905 89.040-65.231Q88.978-65.557 88.847-65.848Q88.716-66.139 88.503-66.329Q88.290-66.518 87.993-66.518Q87.618-66.518 87.366-66.206Q87.114-65.893 86.997-65.460Q86.880-65.026 86.880-64.655Q86.880-64.257 86.993-63.776Q87.107-63.296 87.355-62.944Q87.603-62.592 87.993-62.592M92.239-62.034Q91.806-62.034 91.474-62.272Q91.142-62.510 90.921-62.899Q90.700-63.288 90.593-63.725Q90.486-64.163 90.486-64.561Q90.486-64.952 90.595-65.395Q90.704-65.839 90.921-66.219Q91.138-66.600 91.472-66.841Q91.806-67.081 92.239-67.081Q92.794-67.081 93.195-66.682Q93.595-66.284 93.792-65.698Q93.989-65.112 93.989-64.561Q93.989-64.007 93.792-63.419Q93.595-62.831 93.195-62.432Q92.794-62.034 92.239-62.034M92.239-62.592Q92.540-62.592 92.757-62.809Q92.974-63.026 93.101-63.354Q93.228-63.682 93.288-64.028Q93.349-64.374 93.349-64.655Q93.349-64.905 93.286-65.231Q93.224-65.557 93.093-65.848Q92.962-66.139 92.749-66.329Q92.536-66.518 92.239-66.518Q91.864-66.518 91.613-66.206Q91.361-65.893 91.243-65.460Q91.126-65.026 91.126-64.655Q91.126-64.257 91.239-63.776Q91.353-63.296 91.601-62.944Q91.849-62.592 92.239-62.592M95.107-62.350L95.107-66.440L94.685-66.440Q94.478-66.464 94.435-66.678L94.435-66.768Q94.478-66.975 94.685-66.999L95.501-66.999Q95.697-66.975 95.747-66.768L95.747-65.257Q95.958-65.424 96.222-65.512Q96.486-65.600 96.755-65.600Q97.095-65.600 97.392-65.456Q97.689-65.311 97.904-65.059Q98.118-64.807 98.234-64.495Q98.349-64.182 98.349-63.839Q98.349-63.374 98.122-62.964Q97.896-62.553 97.509-62.313Q97.122-62.073 96.654-62.073Q96.134-62.073 95.747-62.440L95.747-62.350Q95.697-62.132 95.501-62.112L95.357-62.112Q95.165-62.135 95.107-62.350M96.611-62.632Q96.919-62.632 97.169-62.801Q97.419-62.971 97.564-63.253Q97.708-63.534 97.708-63.839Q97.708-64.128 97.583-64.407Q97.458-64.686 97.226-64.864Q96.993-65.042 96.693-65.042Q96.372-65.042 96.111-64.856Q95.849-64.671 95.747-64.370L95.747-63.518Q95.837-63.151 96.058-62.891Q96.279-62.632 96.611-62.632M100.732-62.034Q100.298-62.034 99.966-62.272Q99.634-62.510 99.413-62.899Q99.193-63.288 99.085-63.725Q98.978-64.163 98.978-64.561Q98.978-64.952 99.087-65.395Q99.197-65.839 99.413-66.219Q99.630-66.600 99.964-66.841Q100.298-67.081 100.732-67.081Q101.286-67.081 101.687-66.682Q102.087-66.284 102.284-65.698Q102.482-65.112 102.482-64.561Q102.482-64.007 102.284-63.419Q102.087-62.831 101.687-62.432Q101.286-62.034 100.732-62.034M100.732-62.592Q101.032-62.592 101.249-62.809Q101.466-63.026 101.593-63.354Q101.720-63.682 101.780-64.028Q101.841-64.374 101.841-64.655Q101.841-64.905 101.779-65.231Q101.716-65.557 101.585-65.848Q101.454-66.139 101.241-66.329Q101.029-66.518 100.732-66.518Q100.357-66.518 100.105-66.206Q99.853-65.893 99.736-65.460Q99.618-65.026 99.618-64.655Q99.618-64.257 99.732-63.776Q99.845-63.296 100.093-62.944Q100.341-62.592 100.732-62.592M104.978-62.034Q104.544-62.034 104.212-62.272Q103.880-62.510 103.659-62.899Q103.439-63.288 103.331-63.725Q103.224-64.163 103.224-64.561Q103.224-64.952 103.333-65.395Q103.443-65.839 103.659-66.219Q103.876-66.600 104.210-66.841Q104.544-67.081 104.978-67.081Q105.532-67.081 105.933-66.682Q106.333-66.284 106.530-65.698Q106.728-65.112 106.728-64.561Q106.728-64.007 106.530-63.419Q106.333-62.831 105.933-62.432Q105.532-62.034 104.978-62.034M104.978-62.592Q105.279-62.592 105.495-62.809Q105.712-63.026 105.839-63.354Q105.966-63.682 106.027-64.028Q106.087-64.374 106.087-64.655Q106.087-64.905 106.025-65.231Q105.962-65.557 105.831-65.848Q105.700-66.139 105.488-66.329Q105.275-66.518 104.978-66.518Q104.603-66.518 104.351-66.206Q104.099-65.893 103.982-65.460Q103.864-65.026 103.864-64.655Q103.864-64.257 103.978-63.776Q104.091-63.296 104.339-62.944Q104.587-62.592 104.978-62.592M109.224-62.034Q108.790-62.034 108.458-62.272Q108.126-62.510 107.905-62.899Q107.685-63.288 107.577-63.725Q107.470-64.163 107.470-64.561Q107.470-64.952 107.579-65.395Q107.689-65.839 107.905-66.219Q108.122-66.600 108.456-66.841Q108.790-67.081 109.224-67.081Q109.779-67.081 110.179-66.682Q110.579-66.284 110.777-65.698Q110.974-65.112 110.974-64.561Q110.974-64.007 110.777-63.419Q110.579-62.831 110.179-62.432Q109.779-62.034 109.224-62.034M109.224-62.592Q109.525-62.592 109.741-62.809Q109.958-63.026 110.085-63.354Q110.212-63.682 110.273-64.028Q110.333-64.374 110.333-64.655Q110.333-64.905 110.271-65.231Q110.208-65.557 110.077-65.848Q109.947-66.139 109.734-66.329Q109.521-66.518 109.224-66.518Q108.849-66.518 108.597-66.206Q108.345-65.893 108.228-65.460Q108.111-65.026 108.111-64.655Q108.111-64.257 108.224-63.776Q108.337-63.296 108.585-62.944Q108.833-62.592 109.224-62.592M112.091-62.350L112.091-66.440L111.669-66.440Q111.462-66.464 111.419-66.678L111.419-66.768Q111.462-66.975 111.669-66.999L112.486-66.999Q112.681-66.975 112.732-66.768L112.732-65.257Q112.943-65.424 113.206-65.512Q113.470-65.600 113.739-65.600Q114.079-65.600 114.376-65.456Q114.673-65.311 114.888-65.059Q115.103-64.807 115.218-64.495Q115.333-64.182 115.333-63.839Q115.333-63.374 115.107-62.964Q114.880-62.553 114.493-62.313Q114.107-62.073 113.638-62.073Q113.118-62.073 112.732-62.440L112.732-62.350Q112.681-62.132 112.486-62.112L112.341-62.112Q112.150-62.135 112.091-62.350M113.595-62.632Q113.904-62.632 114.154-62.801Q114.404-62.971 114.548-63.253Q114.693-63.534 114.693-63.839Q114.693-64.128 114.568-64.407Q114.443-64.686 114.210-64.864Q113.978-65.042 113.677-65.042Q113.357-65.042 113.095-64.856Q112.833-64.671 112.732-64.370L112.732-63.518Q112.822-63.151 113.042-62.891Q113.263-62.632 113.595-62.632M117.716-62.034Q117.282-62.034 116.950-62.272Q116.618-62.510 116.398-62.899Q116.177-63.288 116.070-63.725Q115.962-64.163 115.962-64.561Q115.962-64.952 116.072-65.395Q116.181-65.839 116.398-66.219Q116.614-66.600 116.948-66.841Q117.282-67.081 117.716-67.081Q118.271-67.081 118.671-66.682Q119.072-66.284 119.269-65.698Q119.466-65.112 119.466-64.561Q119.466-64.007 119.269-63.419Q119.072-62.831 118.671-62.432Q118.271-62.034 117.716-62.034M117.716-62.592Q118.017-62.592 118.234-62.809Q118.450-63.026 118.577-63.354Q118.704-63.682 118.765-64.028Q118.825-64.374 118.825-64.655Q118.825-64.905 118.763-65.231Q118.700-65.557 118.570-65.848Q118.439-66.139 118.226-66.329Q118.013-66.518 117.716-66.518Q117.341-66.518 117.089-66.206Q116.837-65.893 116.720-65.460Q116.603-65.026 116.603-64.655Q116.603-64.257 116.716-63.776Q116.829-63.296 117.077-62.944Q117.325-62.592 117.716-62.592M121.962-62.034Q121.529-62.034 121.197-62.272Q120.864-62.510 120.644-62.899Q120.423-63.288 120.316-63.725Q120.208-64.163 120.208-64.561Q120.208-64.952 120.318-65.395Q120.427-65.839 120.644-66.219Q120.861-66.600 121.195-66.841Q121.529-67.081 121.962-67.081Q122.517-67.081 122.917-66.682Q123.318-66.284 123.515-65.698Q123.712-65.112 123.712-64.561Q123.712-64.007 123.515-63.419Q123.318-62.831 122.917-62.432Q122.517-62.034 121.962-62.034M121.962-62.592Q122.263-62.592 122.480-62.809Q122.697-63.026 122.823-63.354Q122.950-63.682 123.011-64.028Q123.072-64.374 123.072-64.655Q123.072-64.905 123.009-65.231Q122.947-65.557 122.816-65.848Q122.685-66.139 122.472-66.329Q122.259-66.518 121.962-66.518Q121.587-66.518 121.335-66.206Q121.083-65.893 120.966-65.460Q120.849-65.026 120.849-64.655Q120.849-64.257 120.962-63.776Q121.075-63.296 121.323-62.944Q121.572-62.592 121.962-62.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M-19.750-62.350L-19.750-62.440Q-19.699-62.647-19.504-62.671L-18.465-62.671L-18.465-64.999L-19.437-64.999Q-19.637-65.022-19.687-65.241L-19.687-65.327Q-19.637-65.538-19.437-65.561L-18.070-65.561Q-17.875-65.542-17.824-65.327L-17.824-62.671L-16.910-62.671Q-16.715-62.647-16.664-62.440L-16.664-62.350Q-16.715-62.135-16.910-62.112L-19.504-62.112Q-19.699-62.135-19.750-62.350M-18.719-66.538L-18.719-66.592Q-18.719-66.764-18.582-66.885Q-18.445-67.007-18.269-67.007Q-18.097-67.007-17.961-66.885Q-17.824-66.764-17.824-66.592L-17.824-66.538Q-17.824-66.362-17.961-66.241Q-18.097-66.120-18.269-66.120Q-18.445-66.120-18.582-66.241Q-18.719-66.362-18.719-66.538M-14.922-63.217L-14.922-64.999L-15.672-64.999Q-15.871-65.022-15.922-65.241L-15.922-65.327Q-15.871-65.538-15.672-65.561L-14.922-65.561L-14.922-66.311Q-14.871-66.518-14.672-66.546L-14.527-66.546Q-14.332-66.518-14.281-66.311L-14.281-65.561L-12.922-65.561Q-12.730-65.542-12.672-65.327L-12.672-65.241Q-12.726-65.022-12.922-64.999L-14.281-64.999L-14.281-63.249Q-14.281-62.632-13.707-62.632Q-13.457-62.632-13.293-62.817Q-13.129-63.003-13.129-63.249Q-13.129-63.342-13.056-63.413Q-12.984-63.483-12.883-63.495L-12.738-63.495Q-12.539-63.471-12.488-63.264L-12.488-63.217Q-12.488-62.893-12.672-62.630Q-12.855-62.366-13.148-62.219Q-13.441-62.073-13.762-62.073Q-14.273-62.073-14.597-62.383Q-14.922-62.694-14.922-63.217M-8.363-63.600L-10.805-63.600Q-10.750-63.323-10.553-63.100Q-10.355-62.878-10.078-62.755Q-9.801-62.632-9.515-62.632Q-9.043-62.632-8.820-62.921Q-8.812-62.932-8.756-63.038Q-8.699-63.143-8.650-63.186Q-8.601-63.229-8.508-63.241L-8.363-63.241Q-8.172-63.221-8.113-63.007L-8.113-62.952Q-8.180-62.651-8.410-62.454Q-8.640-62.257-8.953-62.165Q-9.265-62.073-9.570-62.073Q-10.055-62.073-10.494-62.301Q-10.933-62.530-11.201-62.930Q-11.469-63.331-11.469-63.823L-11.469-63.882Q-11.469-64.350-11.222-64.753Q-10.976-65.155-10.568-65.389Q-10.160-65.624-9.691-65.624Q-9.187-65.624-8.834-65.401Q-8.480-65.178-8.297-64.790Q-8.113-64.401-8.113-63.897L-8.113-63.839Q-8.172-63.624-8.363-63.600M-10.797-64.151L-8.769-64.151Q-8.816-64.561-9.055-64.813Q-9.293-65.065-9.691-65.065Q-10.086-65.065-10.392-64.803Q-10.699-64.542-10.797-64.151M-7.406-62.350L-7.406-62.440Q-7.347-62.647-7.156-62.671L-6.445-62.671L-6.445-64.999L-7.156-64.999Q-7.351-65.022-7.406-65.241L-7.406-65.327Q-7.347-65.538-7.156-65.561L-6.055-65.561Q-5.855-65.542-5.805-65.327L-5.805-64.999Q-5.543-65.284-5.187-65.442Q-4.832-65.600-4.445-65.600Q-4.152-65.600-3.918-65.466Q-3.683-65.331-3.683-65.065Q-3.683-64.897-3.793-64.780Q-3.902-64.663-4.070-64.663Q-4.222-64.663-4.338-64.774Q-4.453-64.885-4.453-65.042Q-4.828-65.042-5.142-64.841Q-5.457-64.639-5.631-64.305Q-5.805-63.971-5.805-63.592L-5.805-62.671L-4.859-62.671Q-4.652-62.647-4.613-62.440L-4.613-62.350Q-4.652-62.135-4.859-62.112L-7.156-62.112Q-7.347-62.135-7.406-62.350\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M3.442-63.456L1.371-63.456Q1.176-63.479 1.121-63.698L1.121-63.936Q1.121-64.010 1.164-64.081L3.012-66.952Q3.098-67.081 3.250-67.081L3.707-67.081Q3.817-67.081 3.895-67.003Q3.973-66.924 3.973-66.815L3.973-64.014L4.637-64.014Q4.832-63.991 4.883-63.784L4.883-63.698Q4.832-63.479 4.637-63.456L3.973-63.456L3.973-62.671L4.547-62.671Q4.754-62.647 4.793-62.440L4.793-62.350Q4.754-62.135 4.547-62.112L2.867-62.112Q2.660-62.135 2.617-62.350L2.617-62.440Q2.660-62.647 2.867-62.671L3.442-62.671L3.442-63.456M3.442-66.608L1.770-64.014L3.442-64.014L3.442-66.608M6.696-62.671Q6.696-62.893 6.862-63.059Q7.028-63.225 7.258-63.225Q7.406-63.225 7.533-63.147Q7.660-63.069 7.735-62.944Q7.809-62.819 7.809-62.671Q7.809-62.444 7.643-62.278Q7.477-62.112 7.258-62.112Q7.031-62.112 6.863-62.280Q6.696-62.448 6.696-62.671M6.696-65.007Q6.696-65.229 6.862-65.395Q7.028-65.561 7.258-65.561Q7.406-65.561 7.533-65.483Q7.660-65.405 7.735-65.280Q7.809-65.155 7.809-65.007Q7.809-64.780 7.643-64.614Q7.477-64.448 7.258-64.448Q7.031-64.448 6.863-64.616Q6.696-64.784 6.696-65.007\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M19.700-63.034L19.700-64.249L18.486-64.249Q18.361-64.260 18.275-64.346Q18.189-64.432 18.189-64.561Q18.189-64.690 18.275-64.772Q18.361-64.854 18.486-64.866L19.700-64.866L19.700-66.089Q19.712-66.214 19.798-66.296Q19.884-66.378 20.013-66.378Q20.142-66.378 20.224-66.296Q20.306-66.214 20.318-66.089L20.318-64.866L21.532-64.866Q21.657-64.854 21.739-64.772Q21.822-64.690 21.822-64.561Q21.822-64.432 21.739-64.346Q21.657-64.260 21.532-64.249L20.318-64.249L20.318-63.034Q20.306-62.909 20.224-62.823Q20.142-62.737 20.013-62.737Q19.884-62.737 19.798-62.823Q19.712-62.909 19.700-63.034\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M26.497-62.350L26.497-62.440Q26.548-62.647 26.743-62.671L26.919-62.671L26.919-66.440L26.743-66.440Q26.548-66.464 26.497-66.678L26.497-66.768Q26.548-66.975 26.743-66.999L27.431-66.999Q27.560-66.999 27.659-66.923Q27.759-66.846 27.798-66.737Q27.829-66.632 28.052-65.942Q28.275-65.253 28.390-64.856Q28.505-64.460 28.505-64.385Q28.513-64.464 28.568-64.661Q28.622-64.858 28.736-65.229Q28.849-65.600 28.995-66.063Q29.142-66.526 29.208-66.737Q29.247-66.846 29.351-66.923Q29.454-66.999 29.575-66.999L30.263-66.999Q30.462-66.975 30.513-66.768L30.513-66.678Q30.462-66.464 30.263-66.440L30.087-66.440L30.087-62.671L30.263-62.671Q30.462-62.647 30.513-62.440L30.513-62.350Q30.462-62.135 30.263-62.112L29.384-62.112Q29.189-62.135 29.138-62.350L29.138-62.440Q29.189-62.647 29.384-62.671L29.560-62.671L29.560-66.358Q29.560-66.299 29.476-66.001Q29.392-65.702 29.288-65.370Q29.185-65.038 29.054-64.630Q28.923-64.221 28.857-64.007Q28.818-63.893 28.718-63.819Q28.618-63.745 28.505-63.745Q28.392-63.745 28.292-63.819Q28.193-63.893 28.154-64.007Q28.087-64.221 27.952-64.639Q27.818-65.057 27.681-65.501Q27.544-65.944 27.499-66.108Q27.454-66.272 27.447-66.358L27.447-62.671L27.622-62.671Q27.822-62.647 27.872-62.440L27.872-62.350Q27.822-62.135 27.622-62.112L26.743-62.112Q26.548-62.135 26.497-62.350M32.364-61.678L32.364-67.432Q32.423-67.639 32.614-67.663L34.294-67.663Q34.489-67.643 34.540-67.432L34.540-67.342Q34.489-67.128 34.294-67.104L33.005-67.104L33.005-62.007L34.294-62.007Q34.489-61.987 34.540-61.768L34.540-61.678Q34.489-61.471 34.294-61.448L32.614-61.448Q32.423-61.467 32.364-61.678M36.997-62.034Q36.564-62.034 36.232-62.272Q35.900-62.510 35.679-62.899Q35.458-63.288 35.351-63.725Q35.243-64.163 35.243-64.561Q35.243-64.952 35.353-65.395Q35.462-65.839 35.679-66.219Q35.896-66.600 36.230-66.841Q36.564-67.081 36.997-67.081Q37.552-67.081 37.952-66.682Q38.353-66.284 38.550-65.698Q38.747-65.112 38.747-64.561Q38.747-64.007 38.550-63.419Q38.353-62.831 37.952-62.432Q37.552-62.034 36.997-62.034M36.997-62.592Q37.298-62.592 37.515-62.809Q37.732-63.026 37.859-63.354Q37.986-63.682 38.046-64.028Q38.107-64.374 38.107-64.655Q38.107-64.905 38.044-65.231Q37.982-65.557 37.851-65.848Q37.720-66.139 37.507-66.329Q37.294-66.518 36.997-66.518Q36.622-66.518 36.370-66.206Q36.118-65.893 36.001-65.460Q35.884-65.026 35.884-64.655Q35.884-64.257 35.997-63.776Q36.111-63.296 36.359-62.944Q36.607-62.592 36.997-62.592M39.380-62.350L39.380-62.440Q39.419-62.647 39.626-62.671L40.032-62.671L40.962-63.889L40.091-64.999L39.673-64.999Q39.478-65.018 39.427-65.241L39.427-65.327Q39.478-65.538 39.673-65.561L40.833-65.561Q41.032-65.538 41.083-65.327L41.083-65.241Q41.032-65.022 40.833-64.999L40.724-64.999L41.220-64.342L41.697-64.999L41.579-64.999Q41.380-65.022 41.329-65.241L41.329-65.327Q41.380-65.538 41.579-65.561L42.739-65.561Q42.935-65.542 42.986-65.327L42.986-65.241Q42.935-65.022 42.739-64.999L42.329-64.999L41.482-63.889L42.443-62.671L42.849-62.671Q43.048-62.647 43.099-62.440L43.099-62.350Q43.060-62.135 42.849-62.112L41.697-62.112Q41.489-62.135 41.450-62.350L41.450-62.440Q41.489-62.647 41.697-62.671L41.825-62.671L41.220-63.526L40.634-62.671L40.779-62.671Q40.986-62.647 41.025-62.440L41.025-62.350Q40.986-62.135 40.779-62.112L39.626-62.112Q39.431-62.132 39.380-62.350M45.489-62.034Q45.056-62.034 44.724-62.272Q44.392-62.510 44.171-62.899Q43.950-63.288 43.843-63.725Q43.736-64.163 43.736-64.561Q43.736-64.952 43.845-65.395Q43.954-65.839 44.171-66.219Q44.388-66.600 44.722-66.841Q45.056-67.081 45.489-67.081Q46.044-67.081 46.445-66.682Q46.845-66.284 47.042-65.698Q47.239-65.112 47.239-64.561Q47.239-64.007 47.042-63.419Q46.845-62.831 46.445-62.432Q46.044-62.034 45.489-62.034M45.489-62.592Q45.790-62.592 46.007-62.809Q46.224-63.026 46.351-63.354Q46.478-63.682 46.538-64.028Q46.599-64.374 46.599-64.655Q46.599-64.905 46.536-65.231Q46.474-65.557 46.343-65.848Q46.212-66.139 45.999-66.329Q45.786-66.518 45.489-66.518Q45.114-66.518 44.863-66.206Q44.611-65.893 44.493-65.460Q44.376-65.026 44.376-64.655Q44.376-64.257 44.489-63.776Q44.603-63.296 44.851-62.944Q45.099-62.592 45.489-62.592M48.950-62.327L48.950-62.385Q48.950-62.928 49.056-63.475Q49.161-64.022 49.366-64.546Q49.572-65.069 49.868-65.548Q50.165-66.026 50.544-66.440L48.607-66.440L48.607-66.303Q48.556-66.089 48.357-66.065L48.216-66.065Q48.017-66.089 47.966-66.303L47.966-66.897Q48.017-67.108 48.216-67.128L48.357-67.128Q48.493-67.116 48.568-66.999L51.255-66.999Q51.450-66.975 51.501-66.768L51.501-66.678Q51.489-66.589 51.447-66.538Q51.185-66.280 50.954-66.014Q50.724-65.749 50.562-65.516Q50.400-65.284 50.241-64.985Q50.083-64.686 49.950-64.335Q49.775-63.862 49.683-63.346Q49.591-62.831 49.591-62.327Q49.579-62.202 49.493-62.124Q49.407-62.046 49.286-62.034Q49.150-62.034 49.056-62.112Q48.962-62.190 48.950-62.327M53.982-62.034Q53.548-62.034 53.216-62.272Q52.884-62.510 52.663-62.899Q52.443-63.288 52.335-63.725Q52.228-64.163 52.228-64.561Q52.228-64.952 52.337-65.395Q52.447-65.839 52.663-66.219Q52.880-66.600 53.214-66.841Q53.548-67.081 53.982-67.081Q54.536-67.081 54.937-66.682Q55.337-66.284 55.534-65.698Q55.732-65.112 55.732-64.561Q55.732-64.007 55.534-63.419Q55.337-62.831 54.937-62.432Q54.536-62.034 53.982-62.034M53.982-62.592Q54.282-62.592 54.499-62.809Q54.716-63.026 54.843-63.354Q54.970-63.682 55.030-64.028Q55.091-64.374 55.091-64.655Q55.091-64.905 55.029-65.231Q54.966-65.557 54.835-65.848Q54.704-66.139 54.491-66.329Q54.279-66.518 53.982-66.518Q53.607-66.518 53.355-66.206Q53.103-65.893 52.986-65.460Q52.868-65.026 52.868-64.655Q52.868-64.257 52.982-63.776Q53.095-63.296 53.343-62.944Q53.591-62.592 53.982-62.592M56.435-61.678L56.435-61.768Q56.486-61.983 56.681-62.007L57.970-62.007L57.970-67.104L56.681-67.104Q56.486-67.128 56.435-67.342L56.435-67.432Q56.486-67.639 56.681-67.663L58.364-67.663Q58.560-67.639 58.611-67.432L58.611-61.678Q58.560-61.471 58.364-61.448L56.681-61.448Q56.486-61.471 56.435-61.678\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M68.282-63.647L65.236-63.647Q65.114-63.659 65.027-63.743Q64.939-63.827 64.939-63.952Q64.939-64.077 65.023-64.161Q65.107-64.245 65.236-64.264L68.282-64.264Q68.407-64.245 68.489-64.161Q68.572-64.077 68.572-63.952Q68.572-63.827 68.488-63.743Q68.404-63.659 68.282-63.647M68.282-64.854L65.236-64.854Q65.103-64.874 65.021-64.952Q64.939-65.030 64.939-65.159Q64.939-65.284 65.023-65.368Q65.107-65.452 65.236-65.471L68.282-65.471Q68.407-65.452 68.489-65.368Q68.572-65.284 68.572-65.159Q68.572-65.030 68.491-64.952Q68.411-64.874 68.282-64.854\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(63.284 110.565)\">\u003Cpath d=\"M73.540-63.225Q73.540-63.671 73.954-63.928Q74.368-64.186 74.909-64.286Q75.450-64.385 75.958-64.393Q75.958-64.608 75.823-64.760Q75.689-64.913 75.482-64.989Q75.275-65.065 75.064-65.065Q74.720-65.065 74.560-65.042L74.560-64.983Q74.560-64.815 74.441-64.700Q74.322-64.585 74.157-64.585Q73.982-64.585 73.866-64.708Q73.751-64.831 73.751-64.999Q73.751-65.405 74.132-65.514Q74.513-65.624 75.072-65.624Q75.341-65.624 75.609-65.546Q75.876-65.467 76.101-65.317Q76.325-65.167 76.462-64.946Q76.599-64.725 76.599-64.448L76.599-62.729Q76.599-62.671 77.126-62.671Q77.322-62.651 77.372-62.440L77.372-62.350Q77.322-62.135 77.126-62.112L76.982-62.112Q76.638-62.112 76.409-62.159Q76.181-62.206 76.036-62.393Q75.575-62.073 74.868-62.073Q74.532-62.073 74.228-62.214Q73.923-62.354 73.732-62.616Q73.540-62.878 73.540-63.225M74.181-63.217Q74.181-62.944 74.423-62.788Q74.665-62.632 74.950-62.632Q75.169-62.632 75.402-62.690Q75.634-62.749 75.796-62.887Q75.958-63.026 75.958-63.249L75.958-63.839Q75.677-63.839 75.261-63.782Q74.845-63.725 74.513-63.587Q74.181-63.448 74.181-63.217M79.501-62.034Q79.068-62.034 78.736-62.272Q78.404-62.510 78.183-62.899Q77.962-63.288 77.855-63.725Q77.747-64.163 77.747-64.561Q77.747-64.952 77.857-65.395Q77.966-65.839 78.183-66.219Q78.400-66.600 78.734-66.841Q79.068-67.081 79.501-67.081Q80.056-67.081 80.456-66.682Q80.857-66.284 81.054-65.698Q81.251-65.112 81.251-64.561Q81.251-64.007 81.054-63.419Q80.857-62.831 80.456-62.432Q80.056-62.034 79.501-62.034M79.501-62.592Q79.802-62.592 80.019-62.809Q80.236-63.026 80.363-63.354Q80.489-63.682 80.550-64.028Q80.611-64.374 80.611-64.655Q80.611-64.905 80.548-65.231Q80.486-65.557 80.355-65.848Q80.224-66.139 80.011-66.329Q79.798-66.518 79.501-66.518Q79.126-66.518 78.874-66.206Q78.622-65.893 78.505-65.460Q78.388-65.026 78.388-64.655Q78.388-64.257 78.501-63.776Q78.614-63.296 78.863-62.944Q79.111-62.592 79.501-62.592M83.747-62.034Q83.314-62.034 82.982-62.272Q82.650-62.510 82.429-62.899Q82.208-63.288 82.101-63.725Q81.993-64.163 81.993-64.561Q81.993-64.952 82.103-65.395Q82.212-65.839 82.429-66.219Q82.646-66.600 82.980-66.841Q83.314-67.081 83.747-67.081Q84.302-67.081 84.702-66.682Q85.103-66.284 85.300-65.698Q85.497-65.112 85.497-64.561Q85.497-64.007 85.300-63.419Q85.103-62.831 84.702-62.432Q84.302-62.034 83.747-62.034M83.747-62.592Q84.048-62.592 84.265-62.809Q84.482-63.026 84.609-63.354Q84.736-63.682 84.796-64.028Q84.857-64.374 84.857-64.655Q84.857-64.905 84.794-65.231Q84.732-65.557 84.601-65.848Q84.470-66.139 84.257-66.329Q84.044-66.518 83.747-66.518Q83.372-66.518 83.120-66.206Q82.868-65.893 82.751-65.460Q82.634-65.026 82.634-64.655Q82.634-64.257 82.747-63.776Q82.861-63.296 83.109-62.944Q83.357-62.592 83.747-62.592M87.993-62.034Q87.560-62.034 87.228-62.272Q86.896-62.510 86.675-62.899Q86.454-63.288 86.347-63.725Q86.239-64.163 86.239-64.561Q86.239-64.952 86.349-65.395Q86.458-65.839 86.675-66.219Q86.892-66.600 87.226-66.841Q87.560-67.081 87.993-67.081Q88.548-67.081 88.948-66.682Q89.349-66.284 89.546-65.698Q89.743-65.112 89.743-64.561Q89.743-64.007 89.546-63.419Q89.349-62.831 88.948-62.432Q88.548-62.034 87.993-62.034M87.993-62.592Q88.294-62.592 88.511-62.809Q88.728-63.026 88.855-63.354Q88.982-63.682 89.042-64.028Q89.103-64.374 89.103-64.655Q89.103-64.905 89.040-65.231Q88.978-65.557 88.847-65.848Q88.716-66.139 88.503-66.329Q88.290-66.518 87.993-66.518Q87.618-66.518 87.366-66.206Q87.114-65.893 86.997-65.460Q86.880-65.026 86.880-64.655Q86.880-64.257 86.993-63.776Q87.107-63.296 87.355-62.944Q87.603-62.592 87.993-62.592M90.525-63.225Q90.525-63.671 90.939-63.928Q91.353-64.186 91.894-64.286Q92.435-64.385 92.943-64.393Q92.943-64.608 92.808-64.760Q92.673-64.913 92.466-64.989Q92.259-65.065 92.048-65.065Q91.704-65.065 91.544-65.042L91.544-64.983Q91.544-64.815 91.425-64.700Q91.306-64.585 91.142-64.585Q90.966-64.585 90.851-64.708Q90.736-64.831 90.736-64.999Q90.736-65.405 91.116-65.514Q91.497-65.624 92.056-65.624Q92.325-65.624 92.593-65.546Q92.861-65.467 93.085-65.317Q93.310-65.167 93.447-64.946Q93.583-64.725 93.583-64.448L93.583-62.729Q93.583-62.671 94.111-62.671Q94.306-62.651 94.357-62.440L94.357-62.350Q94.306-62.135 94.111-62.112L93.966-62.112Q93.622-62.112 93.394-62.159Q93.165-62.206 93.021-62.393Q92.560-62.073 91.853-62.073Q91.517-62.073 91.212-62.214Q90.907-62.354 90.716-62.616Q90.525-62.878 90.525-63.225M91.165-63.217Q91.165-62.944 91.407-62.788Q91.650-62.632 91.935-62.632Q92.154-62.632 92.386-62.690Q92.618-62.749 92.780-62.887Q92.943-63.026 92.943-63.249L92.943-63.839Q92.661-63.839 92.245-63.782Q91.829-63.725 91.497-63.587Q91.165-63.448 91.165-63.217M96.486-62.034Q96.052-62.034 95.720-62.272Q95.388-62.510 95.167-62.899Q94.947-63.288 94.839-63.725Q94.732-64.163 94.732-64.561Q94.732-64.952 94.841-65.395Q94.950-65.839 95.167-66.219Q95.384-66.600 95.718-66.841Q96.052-67.081 96.486-67.081Q97.040-67.081 97.441-66.682Q97.841-66.284 98.038-65.698Q98.236-65.112 98.236-64.561Q98.236-64.007 98.038-63.419Q97.841-62.831 97.441-62.432Q97.040-62.034 96.486-62.034M96.486-62.592Q96.786-62.592 97.003-62.809Q97.220-63.026 97.347-63.354Q97.474-63.682 97.534-64.028Q97.595-64.374 97.595-64.655Q97.595-64.905 97.532-65.231Q97.470-65.557 97.339-65.848Q97.208-66.139 96.995-66.329Q96.782-66.518 96.486-66.518Q96.111-66.518 95.859-66.206Q95.607-65.893 95.489-65.460Q95.372-65.026 95.372-64.655Q95.372-64.257 95.486-63.776Q95.599-63.296 95.847-62.944Q96.095-62.592 96.486-62.592M100.732-62.034Q100.298-62.034 99.966-62.272Q99.634-62.510 99.413-62.899Q99.193-63.288 99.085-63.725Q98.978-64.163 98.978-64.561Q98.978-64.952 99.087-65.395Q99.197-65.839 99.413-66.219Q99.630-66.600 99.964-66.841Q100.298-67.081 100.732-67.081Q101.286-67.081 101.687-66.682Q102.087-66.284 102.284-65.698Q102.482-65.112 102.482-64.561Q102.482-64.007 102.284-63.419Q102.087-62.831 101.687-62.432Q101.286-62.034 100.732-62.034M100.732-62.592Q101.032-62.592 101.249-62.809Q101.466-63.026 101.593-63.354Q101.720-63.682 101.780-64.028Q101.841-64.374 101.841-64.655Q101.841-64.905 101.779-65.231Q101.716-65.557 101.585-65.848Q101.454-66.139 101.241-66.329Q101.029-66.518 100.732-66.518Q100.357-66.518 100.105-66.206Q99.853-65.893 99.736-65.460Q99.618-65.026 99.618-64.655Q99.618-64.257 99.732-63.776Q99.845-63.296 100.093-62.944Q100.341-62.592 100.732-62.592M104.978-62.034Q104.544-62.034 104.212-62.272Q103.880-62.510 103.659-62.899Q103.439-63.288 103.331-63.725Q103.224-64.163 103.224-64.561Q103.224-64.952 103.333-65.395Q103.443-65.839 103.659-66.219Q103.876-66.600 104.210-66.841Q104.544-67.081 104.978-67.081Q105.532-67.081 105.933-66.682Q106.333-66.284 106.530-65.698Q106.728-65.112 106.728-64.561Q106.728-64.007 106.530-63.419Q106.333-62.831 105.933-62.432Q105.532-62.034 104.978-62.034M104.978-62.592Q105.279-62.592 105.495-62.809Q105.712-63.026 105.839-63.354Q105.966-63.682 106.027-64.028Q106.087-64.374 106.087-64.655Q106.087-64.905 106.025-65.231Q105.962-65.557 105.831-65.848Q105.700-66.139 105.488-66.329Q105.275-66.518 104.978-66.518Q104.603-66.518 104.351-66.206Q104.099-65.893 103.982-65.460Q103.864-65.026 103.864-64.655Q103.864-64.257 103.978-63.776Q104.091-63.296 104.339-62.944Q104.587-62.592 104.978-62.592M107.509-63.225Q107.509-63.671 107.923-63.928Q108.337-64.186 108.878-64.286Q109.419-64.385 109.927-64.393Q109.927-64.608 109.792-64.760Q109.657-64.913 109.450-64.989Q109.243-65.065 109.032-65.065Q108.689-65.065 108.529-65.042L108.529-64.983Q108.529-64.815 108.409-64.700Q108.290-64.585 108.126-64.585Q107.950-64.585 107.835-64.708Q107.720-64.831 107.720-64.999Q107.720-65.405 108.101-65.514Q108.482-65.624 109.040-65.624Q109.310-65.624 109.577-65.546Q109.845-65.467 110.070-65.317Q110.294-65.167 110.431-64.946Q110.568-64.725 110.568-64.448L110.568-62.729Q110.568-62.671 111.095-62.671Q111.290-62.651 111.341-62.440L111.341-62.350Q111.290-62.135 111.095-62.112L110.950-62.112Q110.607-62.112 110.378-62.159Q110.150-62.206 110.005-62.393Q109.544-62.073 108.837-62.073Q108.501-62.073 108.197-62.214Q107.892-62.354 107.700-62.616Q107.509-62.878 107.509-63.225M108.150-63.217Q108.150-62.944 108.392-62.788Q108.634-62.632 108.919-62.632Q109.138-62.632 109.370-62.690Q109.603-62.749 109.765-62.887Q109.927-63.026 109.927-63.249L109.927-63.839Q109.646-63.839 109.230-63.782Q108.814-63.725 108.482-63.587Q108.150-63.448 108.150-63.217M113.470-62.034Q113.036-62.034 112.704-62.272Q112.372-62.510 112.152-62.899Q111.931-63.288 111.823-63.725Q111.716-64.163 111.716-64.561Q111.716-64.952 111.825-65.395Q111.935-65.839 112.152-66.219Q112.368-66.600 112.702-66.841Q113.036-67.081 113.470-67.081Q114.025-67.081 114.425-66.682Q114.825-66.284 115.023-65.698Q115.220-65.112 115.220-64.561Q115.220-64.007 115.023-63.419Q114.825-62.831 114.425-62.432Q114.025-62.034 113.470-62.034M113.470-62.592Q113.771-62.592 113.988-62.809Q114.204-63.026 114.331-63.354Q114.458-63.682 114.519-64.028Q114.579-64.374 114.579-64.655Q114.579-64.905 114.517-65.231Q114.454-65.557 114.323-65.848Q114.193-66.139 113.980-66.329Q113.767-66.518 113.470-66.518Q113.095-66.518 112.843-66.206Q112.591-65.893 112.474-65.460Q112.357-65.026 112.357-64.655Q112.357-64.257 112.470-63.776Q112.583-63.296 112.831-62.944Q113.079-62.592 113.470-62.592M117.716-62.034Q117.282-62.034 116.950-62.272Q116.618-62.510 116.398-62.899Q116.177-63.288 116.070-63.725Q115.962-64.163 115.962-64.561Q115.962-64.952 116.072-65.395Q116.181-65.839 116.398-66.219Q116.614-66.600 116.948-66.841Q117.282-67.081 117.716-67.081Q118.271-67.081 118.671-66.682Q119.072-66.284 119.269-65.698Q119.466-65.112 119.466-64.561Q119.466-64.007 119.269-63.419Q119.072-62.831 118.671-62.432Q118.271-62.034 117.716-62.034M117.716-62.592Q118.017-62.592 118.234-62.809Q118.450-63.026 118.577-63.354Q118.704-63.682 118.765-64.028Q118.825-64.374 118.825-64.655Q118.825-64.905 118.763-65.231Q118.700-65.557 118.570-65.848Q118.439-66.139 118.226-66.329Q118.013-66.518 117.716-66.518Q117.341-66.518 117.089-66.206Q116.837-65.893 116.720-65.460Q116.603-65.026 116.603-64.655Q116.603-64.257 116.716-63.776Q116.829-63.296 117.077-62.944Q117.325-62.592 117.716-62.592M121.962-62.034Q121.529-62.034 121.197-62.272Q120.864-62.510 120.644-62.899Q120.423-63.288 120.316-63.725Q120.208-64.163 120.208-64.561Q120.208-64.952 120.318-65.395Q120.427-65.839 120.644-66.219Q120.861-66.600 121.195-66.841Q121.529-67.081 121.962-67.081Q122.517-67.081 122.917-66.682Q123.318-66.284 123.515-65.698Q123.712-65.112 123.712-64.561Q123.712-64.007 123.515-63.419Q123.318-62.831 122.917-62.432Q122.517-62.034 121.962-62.034M121.962-62.592Q122.263-62.592 122.480-62.809Q122.697-63.026 122.823-63.354Q122.950-63.682 123.011-64.028Q123.072-64.374 123.072-64.655Q123.072-64.905 123.009-65.231Q122.947-65.557 122.816-65.848Q122.685-66.139 122.472-66.329Q122.259-66.518 121.962-66.518Q121.587-66.518 121.335-66.206Q121.083-65.893 120.966-65.460Q120.849-65.026 120.849-64.655Q120.849-64.257 120.962-63.776Q121.075-63.296 121.323-62.944Q121.572-62.592 121.962-62.592\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The running sum in rax after xorq and after each of the four loop iterations. Each array element fills a different nibble of every 16-bit group, so the digits a, b, c, d assemble in place and the final value 0xabcdabcdabcd is visibly correct - any wrong byte anywhere breaks the pattern.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:403.474px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 302.606 111.675\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-65.403 33.205h221.931V7.598H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M46.484 19.448L46.484 17.706Q46.484 17.491 46.421 17.395Q46.359 17.299 46.240 17.278Q46.121 17.256 45.874 17.256L45.874 16.960L47.121 16.874L47.121 19.424L47.121 19.448Q47.121 19.760 47.175 19.922Q47.230 20.085 47.380 20.155Q47.531 20.225 47.851 20.225Q48.281 20.225 48.554 19.887Q48.828 19.549 48.828 19.104L48.828 17.706Q48.828 17.491 48.765 17.395Q48.703 17.299 48.583 17.278Q48.464 17.256 48.218 17.256L48.218 16.960L49.464 16.874L49.464 19.659Q49.464 19.870 49.527 19.965Q49.589 20.061 49.708 20.083Q49.828 20.104 50.074 20.104L50.074 20.401L48.851 20.479L48.851 19.858Q48.683 20.147 48.402 20.313Q48.121 20.479 47.800 20.479Q46.484 20.479 46.484 19.448M52.449 20.401L50.593 20.401L50.593 20.104Q50.867 20.104 51.035 20.057Q51.203 20.010 51.203 19.842L51.203 17.706Q51.203 17.491 51.140 17.395Q51.078 17.299 50.958 17.278Q50.839 17.256 50.593 17.256L50.593 16.960L51.785 16.874L51.785 17.608Q51.898 17.393 52.091 17.225Q52.285 17.057 52.523 16.965Q52.761 16.874 53.015 16.874Q54.183 16.874 54.183 17.952L54.183 19.842Q54.183 20.010 54.353 20.057Q54.523 20.104 54.792 20.104L54.792 20.401L52.937 20.401L52.937 20.104Q53.210 20.104 53.378 20.057Q53.546 20.010 53.546 19.842L53.546 17.967Q53.546 17.585 53.425 17.356Q53.304 17.128 52.953 17.128Q52.640 17.128 52.386 17.290Q52.132 17.452 51.986 17.721Q51.839 17.991 51.839 18.288L51.839 19.842Q51.839 20.010 52.009 20.057Q52.179 20.104 52.449 20.104L52.449 20.401M57.097 20.401L55.320 20.401L55.320 20.104Q55.593 20.104 55.761 20.057Q55.929 20.010 55.929 19.842L55.929 17.706Q55.929 17.491 55.873 17.395Q55.816 17.299 55.703 17.278Q55.589 17.256 55.343 17.256L55.343 16.960L56.542 16.874L56.542 19.842Q56.542 20.010 56.689 20.057Q56.835 20.104 57.097 20.104L57.097 20.401M55.656 15.479Q55.656 15.288 55.791 15.157Q55.925 15.026 56.121 15.026Q56.242 15.026 56.345 15.088Q56.449 15.151 56.511 15.255Q56.574 15.358 56.574 15.479Q56.574 15.674 56.443 15.809Q56.312 15.944 56.121 15.944Q55.921 15.944 55.789 15.811Q55.656 15.678 55.656 15.479M58.222 19.440L58.222 17.249L57.519 17.249L57.519 16.995Q57.874 16.995 58.117 16.762Q58.359 16.530 58.470 16.182Q58.582 15.835 58.582 15.479L58.863 15.479L58.863 16.952L60.039 16.952L60.039 17.249L58.863 17.249L58.863 19.424Q58.863 19.745 58.982 19.973Q59.101 20.202 59.382 20.202Q59.562 20.202 59.679 20.079Q59.796 19.956 59.849 19.776Q59.902 19.596 59.902 19.424L59.902 18.952L60.183 18.952L60.183 19.440Q60.183 19.694 60.078 19.934Q59.972 20.174 59.775 20.327Q59.578 20.479 59.320 20.479Q59.003 20.479 58.751 20.356Q58.499 20.233 58.361 19.999Q58.222 19.764 58.222 19.440\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M64.370 19.440L64.370 17.249L63.667 17.249L63.667 16.995Q64.023 16.995 64.265 16.762Q64.507 16.530 64.618 16.182Q64.730 15.835 64.730 15.479L65.011 15.479L65.011 16.952L66.187 16.952L66.187 17.249L65.011 17.249L65.011 19.424Q65.011 19.745 65.130 19.973Q65.249 20.202 65.530 20.202Q65.710 20.202 65.827 20.079Q65.945 19.956 65.997 19.776Q66.050 19.596 66.050 19.424L66.050 18.952L66.331 18.952L66.331 19.440Q66.331 19.694 66.226 19.934Q66.120 20.174 65.923 20.327Q65.726 20.479 65.468 20.479Q65.152 20.479 64.900 20.356Q64.648 20.233 64.509 19.999Q64.370 19.764 64.370 19.440M67.050 18.647Q67.050 18.167 67.282 17.751Q67.515 17.335 67.925 17.085Q68.335 16.835 68.812 16.835Q69.542 16.835 69.941 17.276Q70.339 17.717 70.339 18.448Q70.339 18.553 70.245 18.577L67.796 18.577L67.796 18.647Q67.796 19.057 67.917 19.413Q68.038 19.768 68.310 19.985Q68.581 20.202 69.011 20.202Q69.374 20.202 69.671 19.973Q69.968 19.745 70.070 19.393Q70.077 19.346 70.163 19.331L70.245 19.331Q70.339 19.358 70.339 19.440Q70.339 19.448 70.331 19.479Q70.269 19.706 70.130 19.889Q69.991 20.073 69.800 20.206Q69.609 20.338 69.390 20.409Q69.171 20.479 68.933 20.479Q68.562 20.479 68.224 20.342Q67.886 20.206 67.618 19.954Q67.351 19.702 67.200 19.362Q67.050 19.022 67.050 18.647M67.804 18.338L69.765 18.338Q69.765 18.034 69.663 17.743Q69.562 17.452 69.345 17.270Q69.128 17.088 68.812 17.088Q68.511 17.088 68.280 17.276Q68.050 17.463 67.927 17.755Q67.804 18.046 67.804 18.338M70.870 20.393L70.870 19.171Q70.870 19.143 70.902 19.112Q70.933 19.081 70.956 19.081L71.062 19.081Q71.132 19.081 71.148 19.143Q71.210 19.463 71.349 19.704Q71.487 19.944 71.720 20.085Q71.952 20.225 72.261 20.225Q72.499 20.225 72.708 20.165Q72.917 20.104 73.054 19.956Q73.191 19.807 73.191 19.561Q73.191 19.307 72.980 19.141Q72.769 18.975 72.499 18.921L71.878 18.807Q71.472 18.729 71.171 18.473Q70.870 18.217 70.870 17.842Q70.870 17.475 71.071 17.253Q71.273 17.030 71.597 16.932Q71.921 16.835 72.261 16.835Q72.726 16.835 73.023 17.042L73.245 16.858Q73.269 16.835 73.300 16.835L73.351 16.835Q73.382 16.835 73.409 16.862Q73.437 16.889 73.437 16.921L73.437 17.905Q73.437 17.936 73.411 17.965Q73.386 17.995 73.351 17.995L73.245 17.995Q73.210 17.995 73.183 17.967Q73.155 17.940 73.155 17.905Q73.155 17.506 72.903 17.286Q72.652 17.065 72.253 17.065Q71.898 17.065 71.614 17.188Q71.331 17.311 71.331 17.616Q71.331 17.835 71.532 17.967Q71.734 18.100 71.980 18.143L72.605 18.256Q73.034 18.346 73.343 18.643Q73.652 18.940 73.652 19.354Q73.652 19.924 73.253 20.202Q72.855 20.479 72.261 20.479Q71.710 20.479 71.359 20.143L71.062 20.456Q71.038 20.479 71.003 20.479L70.956 20.479Q70.933 20.479 70.902 20.448Q70.870 20.417 70.870 20.393M74.804 19.440L74.804 17.249L74.101 17.249L74.101 16.995Q74.456 16.995 74.698 16.762Q74.941 16.530 75.052 16.182Q75.163 15.835 75.163 15.479L75.445 15.479L75.445 16.952L76.620 16.952L76.620 17.249L75.445 17.249L75.445 19.424Q75.445 19.745 75.564 19.973Q75.683 20.202 75.964 20.202Q76.144 20.202 76.261 20.079Q76.378 19.956 76.431 19.776Q76.484 19.596 76.484 19.424L76.484 18.952L76.765 18.952L76.765 19.440Q76.765 19.694 76.659 19.934Q76.554 20.174 76.357 20.327Q76.159 20.479 75.902 20.479Q75.585 20.479 75.333 20.356Q75.081 20.233 74.943 19.999Q74.804 19.764 74.804 19.440M77.527 20.393L77.527 19.171Q77.527 19.143 77.558 19.112Q77.589 19.081 77.612 19.081L77.718 19.081Q77.788 19.081 77.804 19.143Q77.866 19.463 78.005 19.704Q78.144 19.944 78.376 20.085Q78.609 20.225 78.917 20.225Q79.155 20.225 79.364 20.165Q79.573 20.104 79.710 19.956Q79.847 19.807 79.847 19.561Q79.847 19.307 79.636 19.141Q79.425 18.975 79.155 18.921L78.534 18.807Q78.128 18.729 77.827 18.473Q77.527 18.217 77.527 17.842Q77.527 17.475 77.728 17.253Q77.929 17.030 78.253 16.932Q78.577 16.835 78.917 16.835Q79.382 16.835 79.679 17.042L79.902 16.858Q79.925 16.835 79.956 16.835L80.007 16.835Q80.038 16.835 80.066 16.862Q80.093 16.889 80.093 16.921L80.093 17.905Q80.093 17.936 80.068 17.965Q80.042 17.995 80.007 17.995L79.902 17.995Q79.866 17.995 79.839 17.967Q79.812 17.940 79.812 17.905Q79.812 17.506 79.560 17.286Q79.308 17.065 78.909 17.065Q78.554 17.065 78.271 17.188Q77.987 17.311 77.987 17.616Q77.987 17.835 78.189 17.967Q78.390 18.100 78.636 18.143L79.261 18.256Q79.691 18.346 79.999 18.643Q80.308 18.940 80.308 19.354Q80.308 19.924 79.909 20.202Q79.511 20.479 78.917 20.479Q78.366 20.479 78.015 20.143L77.718 20.456Q77.695 20.479 77.659 20.479L77.612 20.479Q77.589 20.479 77.558 20.448Q77.527 20.417 77.527 20.393M81.316 19.936Q81.316 19.753 81.452 19.616Q81.589 19.479 81.780 19.479Q81.972 19.479 82.105 19.612Q82.237 19.745 82.237 19.936Q82.237 20.135 82.105 20.268Q81.972 20.401 81.780 20.401Q81.589 20.401 81.452 20.264Q81.316 20.128 81.316 19.936M81.316 17.409Q81.316 17.225 81.452 17.088Q81.589 16.952 81.780 16.952Q81.972 16.952 82.105 17.085Q82.237 17.217 82.237 17.409Q82.237 17.608 82.105 17.741Q81.972 17.874 81.780 17.874Q81.589 17.874 81.452 17.737Q81.316 17.600 81.316 17.409\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M88.780 20.401L87.030 20.401L87.030 20.104Q87.729 20.104 87.917 19.624L89.718 14.799Q89.772 14.690 89.886 14.690L89.956 14.690Q90.069 14.690 90.124 14.799L92.014 19.842Q92.093 20.010 92.296 20.057Q92.499 20.104 92.811 20.104L92.811 20.401L90.589 20.401L90.589 20.104Q91.229 20.104 91.229 19.889Q91.229 19.870 91.227 19.860Q91.225 19.850 91.221 19.842L90.757 18.608L88.612 18.608L88.229 19.624Q88.225 19.639 88.220 19.669Q88.214 19.698 88.214 19.721Q88.214 19.862 88.303 19.946Q88.393 20.030 88.526 20.067Q88.659 20.104 88.780 20.104L88.780 20.401M89.686 15.745L88.718 18.311L90.643 18.311L89.686 15.745M97.819 20.401L93.436 20.401L93.436 20.104Q93.757 20.104 94.001 20.057Q94.245 20.010 94.245 19.842L94.245 15.499Q94.245 15.327 94.001 15.280Q93.757 15.233 93.436 15.233L93.436 14.936L96.022 14.936L96.022 15.233Q95.011 15.233 95.011 15.499L95.011 19.842Q95.011 20.014 95.102 20.059Q95.194 20.104 95.413 20.104L96.100 20.104Q96.573 20.104 96.882 19.979Q97.190 19.854 97.368 19.624Q97.546 19.393 97.637 19.067Q97.729 18.741 97.772 18.288L98.053 18.288L97.819 20.401M99.550 18.592L99.550 15.499Q99.550 15.327 99.305 15.280Q99.061 15.233 98.741 15.233L98.741 14.936L101.124 14.936L101.124 15.233Q100.803 15.233 100.559 15.282Q100.315 15.331 100.315 15.499L100.315 18.569Q100.315 19.292 100.659 19.782Q101.003 20.272 101.702 20.272Q102.167 20.272 102.538 20.042Q102.909 19.811 103.118 19.419Q103.327 19.026 103.327 18.569L103.327 15.713Q103.327 15.233 102.518 15.233L102.518 14.936L104.428 14.936L104.428 15.233Q103.620 15.233 103.620 15.713L103.620 18.592Q103.620 19.112 103.366 19.569Q103.112 20.026 102.671 20.297Q102.229 20.569 101.702 20.569Q101.292 20.569 100.911 20.426Q100.530 20.284 100.218 20.014Q99.905 19.745 99.727 19.378Q99.550 19.010 99.550 18.592\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M109.655 20.370L108.432 17.514Q108.350 17.338 108.206 17.294Q108.061 17.249 107.792 17.249L107.792 16.952L109.503 16.952L109.503 17.249Q109.081 17.249 109.081 17.432Q109.081 17.467 109.096 17.514L110.042 19.706L110.882 17.729Q110.921 17.651 110.921 17.561Q110.921 17.421 110.815 17.335Q110.710 17.249 110.569 17.249L110.569 16.952L111.921 16.952L111.921 17.249Q111.397 17.249 111.182 17.729L110.057 20.370Q109.995 20.479 109.889 20.479L109.823 20.479Q109.710 20.479 109.655 20.370\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M112.104 18.647Q112.104 18.167 112.337 17.751Q112.569 17.335 112.979 17.085Q113.389 16.835 113.866 16.835Q114.596 16.835 114.995 17.276Q115.393 17.717 115.393 18.448Q115.393 18.553 115.300 18.577L112.850 18.577L112.850 18.647Q112.850 19.057 112.971 19.413Q113.093 19.768 113.364 19.985Q113.636 20.202 114.065 20.202Q114.428 20.202 114.725 19.973Q115.022 19.745 115.124 19.393Q115.132 19.346 115.218 19.331L115.300 19.331Q115.393 19.358 115.393 19.440Q115.393 19.448 115.386 19.479Q115.323 19.706 115.184 19.889Q115.046 20.073 114.854 20.206Q114.663 20.338 114.444 20.409Q114.225 20.479 113.987 20.479Q113.616 20.479 113.278 20.342Q112.940 20.206 112.673 19.954Q112.405 19.702 112.255 19.362Q112.104 19.022 112.104 18.647M112.858 18.338L114.819 18.338Q114.819 18.034 114.718 17.743Q114.616 17.452 114.399 17.270Q114.182 17.088 113.866 17.088Q113.565 17.088 113.335 17.276Q113.104 17.463 112.981 17.755Q112.858 18.046 112.858 18.338M115.925 18.674Q115.925 18.178 116.175 17.753Q116.425 17.327 116.845 17.081Q117.264 16.835 117.764 16.835Q118.303 16.835 118.694 16.960Q119.085 17.085 119.085 17.499Q119.085 17.604 119.034 17.696Q118.983 17.788 118.891 17.838Q118.800 17.889 118.690 17.889Q118.585 17.889 118.493 17.838Q118.401 17.788 118.350 17.696Q118.300 17.604 118.300 17.499Q118.300 17.276 118.468 17.171Q118.245 17.112 117.772 17.112Q117.475 17.112 117.261 17.251Q117.046 17.389 116.915 17.620Q116.784 17.850 116.725 18.120Q116.667 18.389 116.667 18.674Q116.667 19.069 116.800 19.419Q116.932 19.768 117.204 19.985Q117.475 20.202 117.874 20.202Q118.249 20.202 118.524 19.985Q118.800 19.768 118.901 19.409Q118.917 19.346 118.979 19.346L119.085 19.346Q119.120 19.346 119.145 19.374Q119.171 19.401 119.171 19.440L119.171 19.463Q119.038 19.944 118.653 20.212Q118.268 20.479 117.764 20.479Q117.401 20.479 117.067 20.342Q116.733 20.206 116.473 19.956Q116.214 19.706 116.069 19.370Q115.925 19.034 115.925 18.674M120.284 19.440L120.284 17.249L119.581 17.249L119.581 16.995Q119.936 16.995 120.178 16.762Q120.421 16.530 120.532 16.182Q120.643 15.835 120.643 15.479L120.925 15.479L120.925 16.952L122.100 16.952L122.100 17.249L120.925 17.249L120.925 19.424Q120.925 19.745 121.044 19.973Q121.163 20.202 121.444 20.202Q121.624 20.202 121.741 20.079Q121.858 19.956 121.911 19.776Q121.964 19.596 121.964 19.424L121.964 18.952L122.245 18.952L122.245 19.440Q122.245 19.694 122.139 19.934Q122.034 20.174 121.837 20.327Q121.639 20.479 121.382 20.479Q121.065 20.479 120.813 20.356Q120.561 20.233 120.423 19.999Q120.284 19.764 120.284 19.440M122.964 18.706Q122.964 18.202 123.220 17.770Q123.475 17.338 123.911 17.087Q124.346 16.835 124.846 16.835Q125.233 16.835 125.575 16.979Q125.917 17.124 126.178 17.385Q126.440 17.647 126.583 17.983Q126.725 18.319 126.725 18.706Q126.725 19.198 126.462 19.608Q126.198 20.018 125.768 20.249Q125.339 20.479 124.846 20.479Q124.354 20.479 123.921 20.247Q123.487 20.014 123.225 19.606Q122.964 19.198 122.964 18.706M124.846 20.202Q125.303 20.202 125.555 19.979Q125.807 19.756 125.895 19.405Q125.983 19.053 125.983 18.608Q125.983 18.178 125.889 17.840Q125.796 17.503 125.542 17.296Q125.288 17.088 124.846 17.088Q124.198 17.088 123.954 17.505Q123.710 17.921 123.710 18.608Q123.710 19.053 123.798 19.405Q123.886 19.756 124.137 19.979Q124.389 20.202 124.846 20.202M129.218 20.401L127.237 20.401L127.237 20.104Q127.507 20.104 127.675 20.059Q127.843 20.014 127.843 19.842L127.843 17.706Q127.843 17.491 127.780 17.395Q127.718 17.299 127.600 17.278Q127.483 17.256 127.237 17.256L127.237 16.960L128.405 16.874L128.405 17.659Q128.483 17.448 128.636 17.262Q128.788 17.077 128.987 16.975Q129.186 16.874 129.413 16.874Q129.659 16.874 129.850 17.018Q130.042 17.163 130.042 17.393Q130.042 17.549 129.936 17.659Q129.831 17.768 129.675 17.768Q129.518 17.768 129.409 17.659Q129.300 17.549 129.300 17.393Q129.300 17.233 129.405 17.128Q129.081 17.128 128.866 17.356Q128.651 17.585 128.555 17.924Q128.460 18.264 128.460 18.569L128.460 19.842Q128.460 20.010 128.686 20.057Q128.913 20.104 129.218 20.104L129.218 20.401M130.565 20.393L130.565 19.171Q130.565 19.143 130.596 19.112Q130.628 19.081 130.651 19.081L130.757 19.081Q130.827 19.081 130.843 19.143Q130.905 19.463 131.044 19.704Q131.182 19.944 131.415 20.085Q131.647 20.225 131.956 20.225Q132.194 20.225 132.403 20.165Q132.612 20.104 132.749 19.956Q132.886 19.807 132.886 19.561Q132.886 19.307 132.675 19.141Q132.464 18.975 132.194 18.921L131.573 18.807Q131.167 18.729 130.866 18.473Q130.565 18.217 130.565 17.842Q130.565 17.475 130.766 17.253Q130.968 17.030 131.292 16.932Q131.616 16.835 131.956 16.835Q132.421 16.835 132.718 17.042L132.940 16.858Q132.964 16.835 132.995 16.835L133.046 16.835Q133.077 16.835 133.104 16.862Q133.132 16.889 133.132 16.921L133.132 17.905Q133.132 17.936 133.106 17.965Q133.081 17.995 133.046 17.995L132.940 17.995Q132.905 17.995 132.878 17.967Q132.850 17.940 132.850 17.905Q132.850 17.506 132.598 17.286Q132.346 17.065 131.948 17.065Q131.593 17.065 131.309 17.188Q131.026 17.311 131.026 17.616Q131.026 17.835 131.227 17.967Q131.428 18.100 131.675 18.143L132.300 18.256Q132.729 18.346 133.038 18.643Q133.346 18.940 133.346 19.354Q133.346 19.924 132.948 20.202Q132.550 20.479 131.956 20.479Q131.405 20.479 131.053 20.143L130.757 20.456Q130.733 20.479 130.698 20.479L130.651 20.479Q130.628 20.479 130.596 20.448Q130.565 20.417 130.565 20.393M134.460 21.807Q134.460 21.784 134.491 21.737Q134.784 21.475 134.950 21.108Q135.116 20.741 135.116 20.354L135.116 20.296Q134.987 20.401 134.819 20.401Q134.628 20.401 134.491 20.268Q134.354 20.135 134.354 19.936Q134.354 19.745 134.491 19.612Q134.628 19.479 134.819 19.479Q135.120 19.479 135.245 19.749Q135.370 20.018 135.370 20.354Q135.370 20.803 135.188 21.217Q135.007 21.631 134.667 21.928Q134.643 21.952 134.604 21.952Q134.557 21.952 134.509 21.907Q134.460 21.862 134.460 21.807\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M141.083 20.401L139.103 20.401L139.103 20.104Q139.372 20.104 139.540 20.059Q139.708 20.014 139.708 19.842L139.708 17.706Q139.708 17.491 139.646 17.395Q139.583 17.299 139.466 17.278Q139.349 17.256 139.103 17.256L139.103 16.960L140.271 16.874L140.271 17.659Q140.349 17.448 140.501 17.262Q140.653 17.077 140.853 16.975Q141.052 16.874 141.278 16.874Q141.524 16.874 141.716 17.018Q141.907 17.163 141.907 17.393Q141.907 17.549 141.802 17.659Q141.696 17.768 141.540 17.768Q141.384 17.768 141.274 17.659Q141.165 17.549 141.165 17.393Q141.165 17.233 141.271 17.128Q140.946 17.128 140.732 17.356Q140.517 17.585 140.421 17.924Q140.325 18.264 140.325 18.569L140.325 19.842Q140.325 20.010 140.552 20.057Q140.778 20.104 141.083 20.104L141.083 20.401M142.388 18.647Q142.388 18.167 142.620 17.751Q142.853 17.335 143.263 17.085Q143.673 16.835 144.149 16.835Q144.880 16.835 145.278 17.276Q145.677 17.717 145.677 18.448Q145.677 18.553 145.583 18.577L143.134 18.577L143.134 18.647Q143.134 19.057 143.255 19.413Q143.376 19.768 143.648 19.985Q143.919 20.202 144.349 20.202Q144.712 20.202 145.009 19.973Q145.306 19.745 145.407 19.393Q145.415 19.346 145.501 19.331L145.583 19.331Q145.677 19.358 145.677 19.440Q145.677 19.448 145.669 19.479Q145.607 19.706 145.468 19.889Q145.329 20.073 145.138 20.206Q144.946 20.338 144.728 20.409Q144.509 20.479 144.271 20.479Q143.899 20.479 143.562 20.342Q143.224 20.206 142.956 19.954Q142.689 19.702 142.538 19.362Q142.388 19.022 142.388 18.647M143.142 18.338L145.103 18.338Q145.103 18.034 145.001 17.743Q144.899 17.452 144.683 17.270Q144.466 17.088 144.149 17.088Q143.849 17.088 143.618 17.276Q143.388 17.463 143.265 17.755Q143.142 18.046 143.142 18.338M146.165 21.010Q146.165 20.729 146.376 20.518Q146.587 20.307 146.872 20.217Q146.716 20.092 146.638 19.903Q146.560 19.713 146.560 19.514Q146.560 19.159 146.790 18.866Q146.423 18.526 146.423 18.057Q146.423 17.706 146.626 17.436Q146.829 17.167 147.149 17.020Q147.470 16.874 147.814 16.874Q148.333 16.874 148.704 17.155Q149.067 16.784 149.614 16.784Q149.794 16.784 149.921 16.911Q150.048 17.038 150.048 17.217Q150.048 17.323 149.970 17.401Q149.892 17.479 149.782 17.479Q149.673 17.479 149.597 17.403Q149.521 17.327 149.521 17.217Q149.521 17.116 149.560 17.065Q149.567 17.057 149.571 17.051Q149.575 17.046 149.575 17.042Q149.200 17.042 148.880 17.296Q149.200 17.635 149.200 18.057Q149.200 18.327 149.083 18.544Q148.966 18.760 148.761 18.919Q148.556 19.077 148.314 19.159Q148.071 19.241 147.814 19.241Q147.595 19.241 147.382 19.182Q147.169 19.124 146.974 19.003Q146.880 19.143 146.880 19.323Q146.880 19.530 147.017 19.682Q147.153 19.835 147.360 19.835L148.056 19.835Q148.544 19.835 148.956 19.919Q149.368 20.003 149.648 20.260Q149.927 20.518 149.927 21.010Q149.927 21.374 149.607 21.606Q149.286 21.838 148.845 21.940Q148.403 22.042 148.048 22.042Q147.692 22.042 147.249 21.940Q146.806 21.838 146.485 21.606Q146.165 21.374 146.165 21.010M146.669 21.010Q146.669 21.206 146.814 21.354Q146.958 21.503 147.171 21.592Q147.384 21.682 147.624 21.729Q147.864 21.776 148.048 21.776Q148.290 21.776 148.620 21.698Q148.950 21.620 149.187 21.446Q149.423 21.272 149.423 21.010Q149.423 20.604 149.013 20.495Q148.603 20.385 148.040 20.385L147.360 20.385Q147.091 20.385 146.880 20.563Q146.669 20.741 146.669 21.010M147.814 18.975Q148.536 18.975 148.536 18.057Q148.536 17.135 147.814 17.135Q147.087 17.135 147.087 18.057Q147.087 18.975 147.814 18.975M152.271 20.401L150.493 20.401L150.493 20.104Q150.767 20.104 150.935 20.057Q151.103 20.010 151.103 19.842L151.103 17.706Q151.103 17.491 151.046 17.395Q150.989 17.299 150.876 17.278Q150.763 17.256 150.517 17.256L150.517 16.960L151.716 16.874L151.716 19.842Q151.716 20.010 151.862 20.057Q152.009 20.104 152.271 20.104L152.271 20.401M150.829 15.479Q150.829 15.288 150.964 15.157Q151.099 15.026 151.294 15.026Q151.415 15.026 151.519 15.088Q151.622 15.151 151.685 15.255Q151.747 15.358 151.747 15.479Q151.747 15.674 151.616 15.809Q151.485 15.944 151.294 15.944Q151.095 15.944 150.962 15.811Q150.829 15.678 150.829 15.479M152.814 20.393L152.814 19.171Q152.814 19.143 152.845 19.112Q152.876 19.081 152.899 19.081L153.005 19.081Q153.075 19.081 153.091 19.143Q153.153 19.463 153.292 19.704Q153.431 19.944 153.663 20.085Q153.896 20.225 154.204 20.225Q154.442 20.225 154.651 20.165Q154.860 20.104 154.997 19.956Q155.134 19.807 155.134 19.561Q155.134 19.307 154.923 19.141Q154.712 18.975 154.442 18.921L153.821 18.807Q153.415 18.729 153.114 18.473Q152.814 18.217 152.814 17.842Q152.814 17.475 153.015 17.253Q153.216 17.030 153.540 16.932Q153.864 16.835 154.204 16.835Q154.669 16.835 154.966 17.042L155.189 16.858Q155.212 16.835 155.243 16.835L155.294 16.835Q155.325 16.835 155.353 16.862Q155.380 16.889 155.380 16.921L155.380 17.905Q155.380 17.936 155.355 17.965Q155.329 17.995 155.294 17.995L155.189 17.995Q155.153 17.995 155.126 17.967Q155.099 17.940 155.099 17.905Q155.099 17.506 154.847 17.286Q154.595 17.065 154.196 17.065Q153.841 17.065 153.558 17.188Q153.274 17.311 153.274 17.616Q153.274 17.835 153.476 17.967Q153.677 18.100 153.923 18.143L154.548 18.256Q154.978 18.346 155.286 18.643Q155.595 18.940 155.595 19.354Q155.595 19.924 155.196 20.202Q154.798 20.479 154.204 20.479Q153.653 20.479 153.302 20.143L153.005 20.456Q152.982 20.479 152.946 20.479L152.899 20.479Q152.876 20.479 152.845 20.448Q152.814 20.417 152.814 20.393M156.747 19.440L156.747 17.249L156.044 17.249L156.044 16.995Q156.399 16.995 156.642 16.762Q156.884 16.530 156.995 16.182Q157.107 15.835 157.107 15.479L157.388 15.479L157.388 16.952L158.564 16.952L158.564 17.249L157.388 17.249L157.388 19.424Q157.388 19.745 157.507 19.973Q157.626 20.202 157.907 20.202Q158.087 20.202 158.204 20.079Q158.321 19.956 158.374 19.776Q158.427 19.596 158.427 19.424L158.427 18.952L158.708 18.952L158.708 19.440Q158.708 19.694 158.603 19.934Q158.497 20.174 158.300 20.327Q158.103 20.479 157.845 20.479Q157.528 20.479 157.276 20.356Q157.024 20.233 156.886 19.999Q156.747 19.764 156.747 19.440M159.427 18.647Q159.427 18.167 159.659 17.751Q159.892 17.335 160.302 17.085Q160.712 16.835 161.189 16.835Q161.919 16.835 162.317 17.276Q162.716 17.717 162.716 18.448Q162.716 18.553 162.622 18.577L160.173 18.577L160.173 18.647Q160.173 19.057 160.294 19.413Q160.415 19.768 160.687 19.985Q160.958 20.202 161.388 20.202Q161.751 20.202 162.048 19.973Q162.345 19.745 162.446 19.393Q162.454 19.346 162.540 19.331L162.622 19.331Q162.716 19.358 162.716 19.440Q162.716 19.448 162.708 19.479Q162.646 19.706 162.507 19.889Q162.368 20.073 162.177 20.206Q161.985 20.338 161.767 20.409Q161.548 20.479 161.310 20.479Q160.939 20.479 160.601 20.342Q160.263 20.206 159.995 19.954Q159.728 19.702 159.577 19.362Q159.427 19.022 159.427 18.647M160.181 18.338L162.142 18.338Q162.142 18.034 162.040 17.743Q161.939 17.452 161.722 17.270Q161.505 17.088 161.189 17.088Q160.888 17.088 160.657 17.276Q160.427 17.463 160.304 17.755Q160.181 18.046 160.181 18.338M165.212 20.401L163.232 20.401L163.232 20.104Q163.501 20.104 163.669 20.059Q163.837 20.014 163.837 19.842L163.837 17.706Q163.837 17.491 163.774 17.395Q163.712 17.299 163.595 17.278Q163.478 17.256 163.232 17.256L163.232 16.960L164.399 16.874L164.399 17.659Q164.478 17.448 164.630 17.262Q164.782 17.077 164.982 16.975Q165.181 16.874 165.407 16.874Q165.653 16.874 165.845 17.018Q166.036 17.163 166.036 17.393Q166.036 17.549 165.931 17.659Q165.825 17.768 165.669 17.768Q165.513 17.768 165.403 17.659Q165.294 17.549 165.294 17.393Q165.294 17.233 165.399 17.128Q165.075 17.128 164.860 17.356Q164.646 17.585 164.550 17.924Q164.454 18.264 164.454 18.569L164.454 19.842Q164.454 20.010 164.681 20.057Q164.907 20.104 165.212 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M171.242 21.952L169.387 21.952L169.387 21.659Q169.656 21.659 169.824 21.614Q169.992 21.569 169.992 21.393L169.992 17.569Q169.992 17.362 169.836 17.309Q169.680 17.256 169.387 17.256L169.387 16.960L170.609 16.874L170.609 17.338Q170.840 17.116 171.154 16.995Q171.469 16.874 171.809 16.874Q172.281 16.874 172.685 17.120Q173.090 17.366 173.322 17.782Q173.555 18.198 173.555 18.674Q173.555 19.049 173.406 19.378Q173.258 19.706 172.988 19.958Q172.719 20.210 172.375 20.344Q172.031 20.479 171.672 20.479Q171.383 20.479 171.111 20.358Q170.840 20.237 170.633 20.026L170.633 21.393Q170.633 21.569 170.801 21.614Q170.969 21.659 171.242 21.659L171.242 21.952M170.633 17.737L170.633 19.577Q170.785 19.866 171.047 20.046Q171.309 20.225 171.617 20.225Q171.902 20.225 172.125 20.087Q172.348 19.948 172.500 19.717Q172.652 19.487 172.730 19.215Q172.809 18.944 172.809 18.674Q172.809 18.342 172.684 17.985Q172.559 17.628 172.310 17.391Q172.062 17.155 171.715 17.155Q171.391 17.155 171.096 17.311Q170.801 17.467 170.633 17.737\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M174.318 18.706Q174.318 18.202 174.574 17.770Q174.830 17.338 175.266 17.087Q175.701 16.835 176.201 16.835Q176.588 16.835 176.930 16.979Q177.271 17.124 177.533 17.385Q177.795 17.647 177.937 17.983Q178.080 18.319 178.080 18.706Q178.080 19.198 177.816 19.608Q177.553 20.018 177.123 20.249Q176.693 20.479 176.201 20.479Q175.709 20.479 175.275 20.247Q174.842 20.014 174.580 19.606Q174.318 19.198 174.318 18.706M176.201 20.202Q176.658 20.202 176.910 19.979Q177.162 19.756 177.250 19.405Q177.338 19.053 177.338 18.608Q177.338 18.178 177.244 17.840Q177.150 17.503 176.896 17.296Q176.643 17.088 176.201 17.088Q175.553 17.088 175.309 17.505Q175.064 17.921 175.064 18.608Q175.064 19.053 175.152 19.405Q175.240 19.756 175.492 19.979Q175.744 20.202 176.201 20.202M180.572 20.401L178.592 20.401L178.592 20.104Q178.861 20.104 179.029 20.059Q179.197 20.014 179.197 19.842L179.197 17.706Q179.197 17.491 179.135 17.395Q179.072 17.299 178.955 17.278Q178.838 17.256 178.592 17.256L178.592 16.960L179.760 16.874L179.760 17.659Q179.838 17.448 179.990 17.262Q180.143 17.077 180.342 16.975Q180.541 16.874 180.768 16.874Q181.014 16.874 181.205 17.018Q181.396 17.163 181.396 17.393Q181.396 17.549 181.291 17.659Q181.185 17.768 181.029 17.768Q180.873 17.768 180.764 17.659Q180.654 17.549 180.654 17.393Q180.654 17.233 180.760 17.128Q180.435 17.128 180.221 17.356Q180.006 17.585 179.910 17.924Q179.814 18.264 179.814 18.569L179.814 19.842Q179.814 20.010 180.041 20.057Q180.268 20.104 180.572 20.104L180.572 20.401M182.502 19.440L182.502 17.249L181.799 17.249L181.799 16.995Q182.154 16.995 182.396 16.762Q182.639 16.530 182.750 16.182Q182.861 15.835 182.861 15.479L183.143 15.479L183.143 16.952L184.318 16.952L184.318 17.249L183.143 17.249L183.143 19.424Q183.143 19.745 183.262 19.973Q183.381 20.202 183.662 20.202Q183.842 20.202 183.959 20.079Q184.076 19.956 184.129 19.776Q184.182 19.596 184.182 19.424L184.182 18.952L184.463 18.952L184.463 19.440Q184.463 19.694 184.357 19.934Q184.252 20.174 184.055 20.327Q183.857 20.479 183.600 20.479Q183.283 20.479 183.031 20.356Q182.779 20.233 182.641 19.999Q182.502 19.764 182.502 19.440M185.225 20.393L185.225 19.171Q185.225 19.143 185.256 19.112Q185.287 19.081 185.310 19.081L185.416 19.081Q185.486 19.081 185.502 19.143Q185.564 19.463 185.703 19.704Q185.842 19.944 186.074 20.085Q186.307 20.225 186.615 20.225Q186.853 20.225 187.062 20.165Q187.271 20.104 187.408 19.956Q187.545 19.807 187.545 19.561Q187.545 19.307 187.334 19.141Q187.123 18.975 186.853 18.921L186.232 18.807Q185.826 18.729 185.525 18.473Q185.225 18.217 185.225 17.842Q185.225 17.475 185.426 17.253Q185.627 17.030 185.951 16.932Q186.275 16.835 186.615 16.835Q187.080 16.835 187.377 17.042L187.600 16.858Q187.623 16.835 187.654 16.835L187.705 16.835Q187.736 16.835 187.764 16.862Q187.791 16.889 187.791 16.921L187.791 17.905Q187.791 17.936 187.766 17.965Q187.740 17.995 187.705 17.995L187.600 17.995Q187.564 17.995 187.537 17.967Q187.510 17.940 187.510 17.905Q187.510 17.506 187.258 17.286Q187.006 17.065 186.607 17.065Q186.252 17.065 185.969 17.188Q185.685 17.311 185.685 17.616Q185.685 17.835 185.887 17.967Q186.088 18.100 186.334 18.143L186.959 18.256Q187.389 18.346 187.697 18.643Q188.006 18.940 188.006 19.354Q188.006 19.924 187.607 20.202Q187.209 20.479 186.615 20.479Q186.064 20.479 185.713 20.143L185.416 20.456Q185.393 20.479 185.357 20.479L185.310 20.479Q185.287 20.479 185.256 20.448Q185.225 20.417 185.225 20.393M189.119 21.807Q189.119 21.784 189.150 21.737Q189.443 21.475 189.609 21.108Q189.775 20.741 189.775 20.354L189.775 20.296Q189.646 20.401 189.478 20.401Q189.287 20.401 189.150 20.268Q189.014 20.135 189.014 19.936Q189.014 19.745 189.150 19.612Q189.287 19.479 189.478 19.479Q189.779 19.479 189.904 19.749Q190.029 20.018 190.029 20.354Q190.029 20.803 189.848 21.217Q189.666 21.631 189.326 21.928Q189.303 21.952 189.264 21.952Q189.217 21.952 189.168 21.907Q189.119 21.862 189.119 21.807\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M195.663 20.401L193.808 20.401L193.808 20.104Q194.081 20.104 194.249 20.057Q194.417 20.010 194.417 19.842L194.417 17.706Q194.417 17.491 194.354 17.395Q194.292 17.299 194.173 17.278Q194.054 17.256 193.808 17.256L193.808 16.960L194.999 16.874L194.999 17.608Q195.112 17.393 195.306 17.225Q195.499 17.057 195.737 16.965Q195.975 16.874 196.229 16.874Q197.190 16.874 197.366 17.585Q197.550 17.256 197.878 17.065Q198.206 16.874 198.585 16.874Q199.761 16.874 199.761 17.952L199.761 19.842Q199.761 20.010 199.929 20.057Q200.097 20.104 200.366 20.104L200.366 20.401L198.511 20.401L198.511 20.104Q198.784 20.104 198.952 20.059Q199.120 20.014 199.120 19.842L199.120 17.967Q199.120 17.581 198.995 17.354Q198.870 17.128 198.518 17.128Q198.214 17.128 197.958 17.290Q197.702 17.452 197.554 17.721Q197.405 17.991 197.405 18.288L197.405 19.842Q197.405 20.010 197.575 20.057Q197.745 20.104 198.015 20.104L198.015 20.401L196.159 20.401L196.159 20.104Q196.433 20.104 196.600 20.057Q196.768 20.010 196.768 19.842L196.768 17.967Q196.768 17.581 196.643 17.354Q196.518 17.128 196.167 17.128Q195.862 17.128 195.606 17.290Q195.350 17.452 195.202 17.721Q195.054 17.991 195.054 18.288L195.054 19.842Q195.054 20.010 195.224 20.057Q195.393 20.104 195.663 20.104L195.663 20.401M200.811 18.647Q200.811 18.167 201.044 17.751Q201.276 17.335 201.686 17.085Q202.097 16.835 202.573 16.835Q203.304 16.835 203.702 17.276Q204.100 17.717 204.100 18.448Q204.100 18.553 204.007 18.577L201.558 18.577L201.558 18.647Q201.558 19.057 201.679 19.413Q201.800 19.768 202.071 19.985Q202.343 20.202 202.772 20.202Q203.136 20.202 203.433 19.973Q203.729 19.745 203.831 19.393Q203.839 19.346 203.925 19.331L204.007 19.331Q204.100 19.358 204.100 19.440Q204.100 19.448 204.093 19.479Q204.030 19.706 203.891 19.889Q203.753 20.073 203.561 20.206Q203.370 20.338 203.151 20.409Q202.933 20.479 202.694 20.479Q202.323 20.479 201.985 20.342Q201.647 20.206 201.380 19.954Q201.112 19.702 200.962 19.362Q200.811 19.022 200.811 18.647M201.565 18.338L203.526 18.338Q203.526 18.034 203.425 17.743Q203.323 17.452 203.106 17.270Q202.890 17.088 202.573 17.088Q202.272 17.088 202.042 17.276Q201.811 17.463 201.688 17.755Q201.565 18.046 201.565 18.338M206.518 20.401L204.663 20.401L204.663 20.104Q204.936 20.104 205.104 20.057Q205.272 20.010 205.272 19.842L205.272 17.706Q205.272 17.491 205.210 17.395Q205.147 17.299 205.028 17.278Q204.909 17.256 204.663 17.256L204.663 16.960L205.854 16.874L205.854 17.608Q205.968 17.393 206.161 17.225Q206.354 17.057 206.593 16.965Q206.831 16.874 207.085 16.874Q208.046 16.874 208.222 17.585Q208.405 17.256 208.733 17.065Q209.061 16.874 209.440 16.874Q210.616 16.874 210.616 17.952L210.616 19.842Q210.616 20.010 210.784 20.057Q210.952 20.104 211.222 20.104L211.222 20.401L209.366 20.401L209.366 20.104Q209.640 20.104 209.808 20.059Q209.975 20.014 209.975 19.842L209.975 17.967Q209.975 17.581 209.850 17.354Q209.725 17.128 209.374 17.128Q209.069 17.128 208.813 17.290Q208.558 17.452 208.409 17.721Q208.261 17.991 208.261 18.288L208.261 19.842Q208.261 20.010 208.431 20.057Q208.600 20.104 208.870 20.104L208.870 20.401L207.015 20.401L207.015 20.104Q207.288 20.104 207.456 20.057Q207.624 20.010 207.624 19.842L207.624 17.967Q207.624 17.581 207.499 17.354Q207.374 17.128 207.022 17.128Q206.718 17.128 206.462 17.290Q206.206 17.452 206.058 17.721Q205.909 17.991 205.909 18.288L205.909 19.842Q205.909 20.010 206.079 20.057Q206.249 20.104 206.518 20.104L206.518 20.401M211.667 18.706Q211.667 18.202 211.923 17.770Q212.179 17.338 212.614 17.087Q213.050 16.835 213.550 16.835Q213.936 16.835 214.278 16.979Q214.620 17.124 214.882 17.385Q215.143 17.647 215.286 17.983Q215.429 18.319 215.429 18.706Q215.429 19.198 215.165 19.608Q214.901 20.018 214.472 20.249Q214.042 20.479 213.550 20.479Q213.058 20.479 212.624 20.247Q212.190 20.014 211.929 19.606Q211.667 19.198 211.667 18.706M213.550 20.202Q214.007 20.202 214.259 19.979Q214.511 19.756 214.599 19.405Q214.686 19.053 214.686 18.608Q214.686 18.178 214.593 17.840Q214.499 17.503 214.245 17.296Q213.991 17.088 213.550 17.088Q212.901 17.088 212.657 17.505Q212.413 17.921 212.413 18.608Q212.413 19.053 212.501 19.405Q212.589 19.756 212.841 19.979Q213.093 20.202 213.550 20.202M217.921 20.401L215.940 20.401L215.940 20.104Q216.210 20.104 216.378 20.059Q216.546 20.014 216.546 19.842L216.546 17.706Q216.546 17.491 216.483 17.395Q216.421 17.299 216.304 17.278Q216.186 17.256 215.940 17.256L215.940 16.960L217.108 16.874L217.108 17.659Q217.186 17.448 217.339 17.262Q217.491 17.077 217.690 16.975Q217.890 16.874 218.116 16.874Q218.362 16.874 218.554 17.018Q218.745 17.163 218.745 17.393Q218.745 17.549 218.640 17.659Q218.534 17.768 218.378 17.768Q218.222 17.768 218.112 17.659Q218.003 17.549 218.003 17.393Q218.003 17.233 218.108 17.128Q217.784 17.128 217.569 17.356Q217.354 17.585 217.259 17.924Q217.163 18.264 217.163 18.569L217.163 19.842Q217.163 20.010 217.390 20.057Q217.616 20.104 217.921 20.104L217.921 20.401M219.643 21.698Q219.757 21.776 219.933 21.776Q220.222 21.776 220.442 21.563Q220.663 21.350 220.788 21.049L221.077 20.401L219.804 17.514Q219.722 17.338 219.577 17.294Q219.433 17.249 219.163 17.249L219.163 16.952L220.882 16.952L220.882 17.249Q220.460 17.249 220.460 17.432Q220.460 17.444 220.475 17.514L221.413 19.639L222.245 17.729Q222.284 17.639 222.284 17.561Q222.284 17.421 222.183 17.335Q222.081 17.249 221.940 17.249L221.940 16.952L223.292 16.952L223.292 17.249Q223.038 17.249 222.845 17.374Q222.651 17.499 222.546 17.729L221.100 21.049Q220.987 21.303 220.821 21.526Q220.655 21.749 220.427 21.891Q220.198 22.034 219.933 22.034Q219.636 22.034 219.395 21.842Q219.155 21.651 219.155 21.362Q219.155 21.206 219.261 21.104Q219.366 21.003 219.515 21.003Q219.620 21.003 219.700 21.049Q219.780 21.096 219.827 21.174Q219.874 21.253 219.874 21.362Q219.874 21.483 219.813 21.571Q219.753 21.659 219.643 21.698\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-105.754 1.956)\">\u003Cpath d=\"M228.443 21.952L226.588 21.952L226.588 21.659Q226.857 21.659 227.025 21.614Q227.193 21.569 227.193 21.393L227.193 17.569Q227.193 17.362 227.037 17.309Q226.881 17.256 226.588 17.256L226.588 16.960L227.810 16.874L227.810 17.338Q228.041 17.116 228.355 16.995Q228.670 16.874 229.010 16.874Q229.482 16.874 229.886 17.120Q230.291 17.366 230.523 17.782Q230.756 18.198 230.756 18.674Q230.756 19.049 230.607 19.378Q230.459 19.706 230.189 19.958Q229.920 20.210 229.576 20.344Q229.232 20.479 228.873 20.479Q228.584 20.479 228.312 20.358Q228.041 20.237 227.834 20.026L227.834 21.393Q227.834 21.569 228.002 21.614Q228.170 21.659 228.443 21.659L228.443 21.952M227.834 17.737L227.834 19.577Q227.986 19.866 228.248 20.046Q228.510 20.225 228.818 20.225Q229.103 20.225 229.326 20.087Q229.549 19.948 229.701 19.717Q229.853 19.487 229.931 19.215Q230.010 18.944 230.010 18.674Q230.010 18.342 229.885 17.985Q229.760 17.628 229.511 17.391Q229.263 17.155 228.916 17.155Q228.592 17.155 228.297 17.311Q228.002 17.467 227.834 17.737M231.377 19.569Q231.377 19.085 231.779 18.790Q232.181 18.495 232.732 18.376Q233.283 18.256 233.775 18.256L233.775 17.967Q233.775 17.741 233.660 17.534Q233.545 17.327 233.347 17.208Q233.150 17.088 232.920 17.088Q232.494 17.088 232.209 17.194Q232.279 17.221 232.326 17.276Q232.373 17.331 232.398 17.401Q232.424 17.471 232.424 17.546Q232.424 17.651 232.373 17.743Q232.322 17.835 232.230 17.885Q232.138 17.936 232.033 17.936Q231.927 17.936 231.836 17.885Q231.744 17.835 231.693 17.743Q231.642 17.651 231.642 17.546Q231.642 17.128 232.031 16.981Q232.420 16.835 232.920 16.835Q233.252 16.835 233.605 16.965Q233.959 17.096 234.187 17.350Q234.416 17.604 234.416 17.952L234.416 19.753Q234.416 19.885 234.488 19.995Q234.560 20.104 234.689 20.104Q234.814 20.104 234.883 19.999Q234.951 19.893 234.951 19.753L234.951 19.241L235.232 19.241L235.232 19.753Q235.232 19.956 235.115 20.114Q234.998 20.272 234.816 20.356Q234.635 20.440 234.431 20.440Q234.201 20.440 234.049 20.268Q233.896 20.096 233.865 19.866Q233.705 20.147 233.396 20.313Q233.088 20.479 232.736 20.479Q232.224 20.479 231.801 20.256Q231.377 20.034 231.377 19.569M232.064 19.569Q232.064 19.854 232.291 20.040Q232.517 20.225 232.810 20.225Q233.056 20.225 233.281 20.108Q233.506 19.991 233.640 19.788Q233.775 19.585 233.775 19.331L233.775 18.499Q233.510 18.499 233.224 18.553Q232.939 18.608 232.668 18.737Q232.396 18.866 232.230 19.073Q232.064 19.280 232.064 19.569M236.150 19.440L236.150 17.249L235.447 17.249L235.447 16.995Q235.802 16.995 236.045 16.762Q236.287 16.530 236.398 16.182Q236.510 15.835 236.510 15.479L236.791 15.479L236.791 16.952L237.967 16.952L237.967 17.249L236.791 17.249L236.791 19.424Q236.791 19.745 236.910 19.973Q237.029 20.202 237.310 20.202Q237.490 20.202 237.607 20.079Q237.724 19.956 237.777 19.776Q237.830 19.596 237.830 19.424L237.830 18.952L238.111 18.952L238.111 19.440Q238.111 19.694 238.006 19.934Q237.900 20.174 237.703 20.327Q237.506 20.479 237.248 20.479Q236.931 20.479 236.679 20.356Q236.427 20.233 236.289 19.999Q236.150 19.764 236.150 19.440M239.455 19.440L239.455 17.249L238.752 17.249L238.752 16.995Q239.107 16.995 239.349 16.762Q239.592 16.530 239.703 16.182Q239.814 15.835 239.814 15.479L240.095 15.479L240.095 16.952L241.271 16.952L241.271 17.249L240.095 17.249L240.095 19.424Q240.095 19.745 240.215 19.973Q240.334 20.202 240.615 20.202Q240.795 20.202 240.912 20.079Q241.029 19.956 241.082 19.776Q241.135 19.596 241.135 19.424L241.135 18.952L241.416 18.952L241.416 19.440Q241.416 19.694 241.310 19.934Q241.205 20.174 241.008 20.327Q240.810 20.479 240.552 20.479Q240.236 20.479 239.984 20.356Q239.732 20.233 239.593 19.999Q239.455 19.764 239.455 19.440M242.135 18.647Q242.135 18.167 242.367 17.751Q242.599 17.335 243.010 17.085Q243.420 16.835 243.896 16.835Q244.627 16.835 245.025 17.276Q245.424 17.717 245.424 18.448Q245.424 18.553 245.330 18.577L242.881 18.577L242.881 18.647Q242.881 19.057 243.002 19.413Q243.123 19.768 243.394 19.985Q243.666 20.202 244.095 20.202Q244.459 20.202 244.756 19.973Q245.052 19.745 245.154 19.393Q245.162 19.346 245.248 19.331L245.330 19.331Q245.424 19.358 245.424 19.440Q245.424 19.448 245.416 19.479Q245.353 19.706 245.215 19.889Q245.076 20.073 244.885 20.206Q244.693 20.338 244.474 20.409Q244.256 20.479 244.017 20.479Q243.646 20.479 243.308 20.342Q242.970 20.206 242.703 19.954Q242.435 19.702 242.285 19.362Q242.135 19.022 242.135 18.647M242.888 18.338L244.849 18.338Q244.849 18.034 244.748 17.743Q244.646 17.452 244.429 17.270Q244.213 17.088 243.896 17.088Q243.595 17.088 243.365 17.276Q243.135 17.463 243.011 17.755Q242.888 18.046 242.888 18.338M247.920 20.401L245.939 20.401L245.939 20.104Q246.209 20.104 246.377 20.059Q246.545 20.014 246.545 19.842L246.545 17.706Q246.545 17.491 246.482 17.395Q246.420 17.299 246.302 17.278Q246.185 17.256 245.939 17.256L245.939 16.960L247.107 16.874L247.107 17.659Q247.185 17.448 247.338 17.262Q247.490 17.077 247.689 16.975Q247.888 16.874 248.115 16.874Q248.361 16.874 248.552 17.018Q248.744 17.163 248.744 17.393Q248.744 17.549 248.638 17.659Q248.533 17.768 248.377 17.768Q248.220 17.768 248.111 17.659Q248.002 17.549 248.002 17.393Q248.002 17.233 248.107 17.128Q247.783 17.128 247.568 17.356Q247.353 17.585 247.258 17.924Q247.162 18.264 247.162 18.569L247.162 19.842Q247.162 20.010 247.388 20.057Q247.615 20.104 247.920 20.104L247.920 20.401M251.154 20.401L249.299 20.401L249.299 20.104Q249.572 20.104 249.740 20.057Q249.908 20.010 249.908 19.842L249.908 17.706Q249.908 17.491 249.845 17.395Q249.783 17.299 249.664 17.278Q249.545 17.256 249.299 17.256L249.299 16.960L250.490 16.874L250.490 17.608Q250.603 17.393 250.797 17.225Q250.990 17.057 251.228 16.965Q251.467 16.874 251.720 16.874Q252.888 16.874 252.888 17.952L252.888 19.842Q252.888 20.010 253.058 20.057Q253.228 20.104 253.498 20.104L253.498 20.401L251.642 20.401L251.642 20.104Q251.916 20.104 252.084 20.057Q252.252 20.010 252.252 19.842L252.252 17.967Q252.252 17.585 252.131 17.356Q252.010 17.128 251.658 17.128Q251.345 17.128 251.092 17.290Q250.838 17.452 250.691 17.721Q250.545 17.991 250.545 18.288L250.545 19.842Q250.545 20.010 250.715 20.057Q250.885 20.104 251.154 20.104L251.154 20.401M253.986 20.393L253.986 19.171Q253.986 19.143 254.017 19.112Q254.049 19.081 254.072 19.081L254.177 19.081Q254.248 19.081 254.263 19.143Q254.326 19.463 254.465 19.704Q254.603 19.944 254.836 20.085Q255.068 20.225 255.377 20.225Q255.615 20.225 255.824 20.165Q256.033 20.104 256.170 19.956Q256.306 19.807 256.306 19.561Q256.306 19.307 256.095 19.141Q255.885 18.975 255.615 18.921L254.994 18.807Q254.588 18.729 254.287 18.473Q253.986 18.217 253.986 17.842Q253.986 17.475 254.187 17.253Q254.388 17.030 254.713 16.932Q255.037 16.835 255.377 16.835Q255.842 16.835 256.138 17.042L256.361 16.858Q256.385 16.835 256.416 16.835L256.467 16.835Q256.498 16.835 256.525 16.862Q256.552 16.889 256.552 16.921L256.552 17.905Q256.552 17.936 256.527 17.965Q256.502 17.995 256.467 17.995L256.361 17.995Q256.326 17.995 256.299 17.967Q256.271 17.940 256.271 17.905Q256.271 17.506 256.019 17.286Q255.767 17.065 255.369 17.065Q255.013 17.065 254.730 17.188Q254.447 17.311 254.447 17.616Q254.447 17.835 254.648 17.967Q254.849 18.100 255.095 18.143L255.720 18.256Q256.150 18.346 256.459 18.643Q256.767 18.940 256.767 19.354Q256.767 19.924 256.369 20.202Q255.970 20.479 255.377 20.479Q254.826 20.479 254.474 20.143L254.177 20.456Q254.154 20.479 254.119 20.479L254.072 20.479Q254.049 20.479 254.017 20.448Q253.986 20.417 253.986 20.393\" 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-6.628h221.931v-25.608H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M45.843 18.674Q45.843 18.178 46.093 17.753Q46.343 17.327 46.763 17.081Q47.183 16.835 47.683 16.835Q48.222 16.835 48.613 16.960Q49.003 17.085 49.003 17.499Q49.003 17.604 48.953 17.696Q48.902 17.788 48.810 17.838Q48.718 17.889 48.609 17.889Q48.503 17.889 48.412 17.838Q48.320 17.788 48.269 17.696Q48.218 17.604 48.218 17.499Q48.218 17.276 48.386 17.171Q48.164 17.112 47.691 17.112Q47.394 17.112 47.179 17.251Q46.964 17.389 46.833 17.620Q46.703 17.850 46.644 18.120Q46.585 18.389 46.585 18.674Q46.585 19.069 46.718 19.419Q46.851 19.768 47.123 19.985Q47.394 20.202 47.792 20.202Q48.167 20.202 48.443 19.985Q48.718 19.768 48.820 19.409Q48.835 19.346 48.898 19.346L49.003 19.346Q49.039 19.346 49.064 19.374Q49.089 19.401 49.089 19.440L49.089 19.463Q48.957 19.944 48.572 20.212Q48.187 20.479 47.683 20.479Q47.320 20.479 46.986 20.342Q46.652 20.206 46.392 19.956Q46.132 19.706 45.988 19.370Q45.843 19.034 45.843 18.674M49.578 18.706Q49.578 18.202 49.833 17.770Q50.089 17.338 50.525 17.087Q50.960 16.835 51.460 16.835Q51.847 16.835 52.189 16.979Q52.531 17.124 52.792 17.385Q53.054 17.647 53.197 17.983Q53.339 18.319 53.339 18.706Q53.339 19.198 53.076 19.608Q52.812 20.018 52.382 20.249Q51.953 20.479 51.460 20.479Q50.968 20.479 50.535 20.247Q50.101 20.014 49.839 19.606Q49.578 19.198 49.578 18.706M51.460 20.202Q51.917 20.202 52.169 19.979Q52.421 19.756 52.509 19.405Q52.597 19.053 52.597 18.608Q52.597 18.178 52.503 17.840Q52.410 17.503 52.156 17.296Q51.902 17.088 51.460 17.088Q50.812 17.088 50.568 17.505Q50.324 17.921 50.324 18.608Q50.324 19.053 50.412 19.405Q50.499 19.756 50.751 19.979Q51.003 20.202 51.460 20.202M55.753 20.401L53.898 20.401L53.898 20.104Q54.171 20.104 54.339 20.057Q54.507 20.010 54.507 19.842L54.507 17.706Q54.507 17.491 54.445 17.395Q54.382 17.299 54.263 17.278Q54.144 17.256 53.898 17.256L53.898 16.960L55.089 16.874L55.089 17.608Q55.203 17.393 55.396 17.225Q55.589 17.057 55.828 16.965Q56.066 16.874 56.320 16.874Q57.488 16.874 57.488 17.952L57.488 19.842Q57.488 20.010 57.658 20.057Q57.828 20.104 58.097 20.104L58.097 20.401L56.242 20.401L56.242 20.104Q56.515 20.104 56.683 20.057Q56.851 20.010 56.851 19.842L56.851 17.967Q56.851 17.585 56.730 17.356Q56.609 17.128 56.257 17.128Q55.945 17.128 55.691 17.290Q55.437 17.452 55.291 17.721Q55.144 17.991 55.144 18.288L55.144 19.842Q55.144 20.010 55.314 20.057Q55.484 20.104 55.753 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M58.939 19.440L58.939 17.249L58.236 17.249L58.236 16.995Q58.592 16.995 58.834 16.762Q59.076 16.530 59.187 16.182Q59.299 15.835 59.299 15.479L59.580 15.479L59.580 16.952L60.756 16.952L60.756 17.249L59.580 17.249L59.580 19.424Q59.580 19.745 59.699 19.973Q59.818 20.202 60.099 20.202Q60.279 20.202 60.396 20.079Q60.514 19.956 60.566 19.776Q60.619 19.596 60.619 19.424L60.619 18.952L60.900 18.952L60.900 19.440Q60.900 19.694 60.795 19.934Q60.689 20.174 60.492 20.327Q60.295 20.479 60.037 20.479Q59.721 20.479 59.469 20.356Q59.217 20.233 59.078 19.999Q58.939 19.764 58.939 19.440M63.627 20.401L61.646 20.401L61.646 20.104Q61.916 20.104 62.084 20.059Q62.252 20.014 62.252 19.842L62.252 17.706Q62.252 17.491 62.189 17.395Q62.127 17.299 62.010 17.278Q61.892 17.256 61.646 17.256L61.646 16.960L62.814 16.874L62.814 17.659Q62.892 17.448 63.045 17.262Q63.197 17.077 63.396 16.975Q63.596 16.874 63.822 16.874Q64.068 16.874 64.260 17.018Q64.451 17.163 64.451 17.393Q64.451 17.549 64.346 17.659Q64.240 17.768 64.084 17.768Q63.928 17.768 63.818 17.659Q63.709 17.549 63.709 17.393Q63.709 17.233 63.814 17.128Q63.490 17.128 63.275 17.356Q63.060 17.585 62.965 17.924Q62.869 18.264 62.869 18.569L62.869 19.842Q62.869 20.010 63.096 20.057Q63.322 20.104 63.627 20.104L63.627 20.401M65.029 19.569Q65.029 19.085 65.431 18.790Q65.834 18.495 66.385 18.376Q66.935 18.256 67.428 18.256L67.428 17.967Q67.428 17.741 67.312 17.534Q67.197 17.327 67 17.208Q66.803 17.088 66.572 17.088Q66.146 17.088 65.861 17.194Q65.931 17.221 65.978 17.276Q66.025 17.331 66.051 17.401Q66.076 17.471 66.076 17.546Q66.076 17.651 66.025 17.743Q65.974 17.835 65.883 17.885Q65.791 17.936 65.685 17.936Q65.580 17.936 65.488 17.885Q65.396 17.835 65.346 17.743Q65.295 17.651 65.295 17.546Q65.295 17.128 65.683 16.981Q66.072 16.835 66.572 16.835Q66.904 16.835 67.258 16.965Q67.611 17.096 67.840 17.350Q68.068 17.604 68.068 17.952L68.068 19.753Q68.068 19.885 68.140 19.995Q68.213 20.104 68.342 20.104Q68.467 20.104 68.535 19.999Q68.603 19.893 68.603 19.753L68.603 19.241L68.885 19.241L68.885 19.753Q68.885 19.956 68.767 20.114Q68.650 20.272 68.469 20.356Q68.287 20.440 68.084 20.440Q67.853 20.440 67.701 20.268Q67.549 20.096 67.517 19.866Q67.357 20.147 67.049 20.313Q66.740 20.479 66.388 20.479Q65.877 20.479 65.453 20.256Q65.029 20.034 65.029 19.569M65.717 19.569Q65.717 19.854 65.943 20.040Q66.170 20.225 66.463 20.225Q66.709 20.225 66.933 20.108Q67.158 19.991 67.293 19.788Q67.428 19.585 67.428 19.331L67.428 18.499Q67.162 18.499 66.877 18.553Q66.592 18.608 66.320 18.737Q66.049 18.866 65.883 19.073Q65.717 19.280 65.717 19.569M69.221 18.674Q69.221 18.178 69.471 17.753Q69.721 17.327 70.140 17.081Q70.560 16.835 71.060 16.835Q71.599 16.835 71.990 16.960Q72.381 17.085 72.381 17.499Q72.381 17.604 72.330 17.696Q72.279 17.788 72.187 17.838Q72.096 17.889 71.986 17.889Q71.881 17.889 71.789 17.838Q71.697 17.788 71.646 17.696Q71.596 17.604 71.596 17.499Q71.596 17.276 71.763 17.171Q71.541 17.112 71.068 17.112Q70.771 17.112 70.556 17.251Q70.342 17.389 70.211 17.620Q70.080 17.850 70.021 18.120Q69.963 18.389 69.963 18.674Q69.963 19.069 70.096 19.419Q70.228 19.768 70.500 19.985Q70.771 20.202 71.170 20.202Q71.545 20.202 71.820 19.985Q72.096 19.768 72.197 19.409Q72.213 19.346 72.275 19.346L72.381 19.346Q72.416 19.346 72.441 19.374Q72.467 19.401 72.467 19.440L72.467 19.463Q72.334 19.944 71.949 20.212Q71.564 20.479 71.060 20.479Q70.697 20.479 70.363 20.342Q70.029 20.206 69.769 19.956Q69.510 19.706 69.365 19.370Q69.221 19.034 69.221 18.674M73.580 19.440L73.580 17.249L72.877 17.249L72.877 16.995Q73.232 16.995 73.474 16.762Q73.717 16.530 73.828 16.182Q73.939 15.835 73.939 15.479L74.221 15.479L74.221 16.952L75.396 16.952L75.396 17.249L74.221 17.249L74.221 19.424Q74.221 19.745 74.340 19.973Q74.459 20.202 74.740 20.202Q74.920 20.202 75.037 20.079Q75.154 19.956 75.207 19.776Q75.260 19.596 75.260 19.424L75.260 18.952L75.541 18.952L75.541 19.440Q75.541 19.694 75.435 19.934Q75.330 20.174 75.133 20.327Q74.935 20.479 74.678 20.479Q74.361 20.479 74.109 20.356Q73.857 20.233 73.719 19.999Q73.580 19.764 73.580 19.440M76.303 20.393L76.303 19.171Q76.303 19.143 76.334 19.112Q76.365 19.081 76.388 19.081L76.494 19.081Q76.564 19.081 76.580 19.143Q76.642 19.463 76.781 19.704Q76.920 19.944 77.152 20.085Q77.385 20.225 77.693 20.225Q77.931 20.225 78.140 20.165Q78.349 20.104 78.486 19.956Q78.623 19.807 78.623 19.561Q78.623 19.307 78.412 19.141Q78.201 18.975 77.931 18.921L77.310 18.807Q76.904 18.729 76.603 18.473Q76.303 18.217 76.303 17.842Q76.303 17.475 76.504 17.253Q76.705 17.030 77.029 16.932Q77.353 16.835 77.693 16.835Q78.158 16.835 78.455 17.042L78.678 16.858Q78.701 16.835 78.732 16.835L78.783 16.835Q78.814 16.835 78.842 16.862Q78.869 16.889 78.869 16.921L78.869 17.905Q78.869 17.936 78.844 17.965Q78.818 17.995 78.783 17.995L78.678 17.995Q78.642 17.995 78.615 17.967Q78.588 17.940 78.588 17.905Q78.588 17.506 78.336 17.286Q78.084 17.065 77.685 17.065Q77.330 17.065 77.047 17.188Q76.763 17.311 76.763 17.616Q76.763 17.835 76.965 17.967Q77.166 18.100 77.412 18.143L78.037 18.256Q78.467 18.346 78.775 18.643Q79.084 18.940 79.084 19.354Q79.084 19.924 78.685 20.202Q78.287 20.479 77.693 20.479Q77.142 20.479 76.791 20.143L76.494 20.456Q76.471 20.479 76.435 20.479L76.388 20.479Q76.365 20.479 76.334 20.448Q76.303 20.417 76.303 20.393M80.092 19.936Q80.092 19.753 80.228 19.616Q80.365 19.479 80.556 19.479Q80.748 19.479 80.881 19.612Q81.013 19.745 81.013 19.936Q81.013 20.135 80.881 20.268Q80.748 20.401 80.556 20.401Q80.365 20.401 80.228 20.264Q80.092 20.128 80.092 19.936M80.092 17.409Q80.092 17.225 80.228 17.088Q80.365 16.952 80.556 16.952Q80.748 16.952 80.881 17.085Q81.013 17.217 81.013 17.409Q81.013 17.608 80.881 17.741Q80.748 17.874 80.556 17.874Q80.365 17.874 80.228 17.737Q80.092 17.600 80.092 17.409\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M85.801 18.674Q85.801 18.178 86.051 17.753Q86.301 17.327 86.721 17.081Q87.141 16.835 87.641 16.835Q88.180 16.835 88.571 16.960Q88.961 17.085 88.961 17.499Q88.961 17.604 88.911 17.696Q88.860 17.788 88.768 17.838Q88.676 17.889 88.567 17.889Q88.461 17.889 88.370 17.838Q88.278 17.788 88.227 17.696Q88.176 17.604 88.176 17.499Q88.176 17.276 88.344 17.171Q88.122 17.112 87.649 17.112Q87.352 17.112 87.137 17.251Q86.922 17.389 86.791 17.620Q86.661 17.850 86.602 18.120Q86.543 18.389 86.543 18.674Q86.543 19.069 86.676 19.419Q86.809 19.768 87.081 19.985Q87.352 20.202 87.750 20.202Q88.125 20.202 88.401 19.985Q88.676 19.768 88.778 19.409Q88.793 19.346 88.856 19.346L88.961 19.346Q88.997 19.346 89.022 19.374Q89.047 19.401 89.047 19.440L89.047 19.463Q88.915 19.944 88.530 20.212Q88.145 20.479 87.641 20.479Q87.278 20.479 86.944 20.342Q86.610 20.206 86.350 19.956Q86.090 19.706 85.946 19.370Q85.801 19.034 85.801 18.674M89.536 18.706Q89.536 18.202 89.791 17.770Q90.047 17.338 90.483 17.087Q90.918 16.835 91.418 16.835Q91.805 16.835 92.147 16.979Q92.489 17.124 92.750 17.385Q93.012 17.647 93.155 17.983Q93.297 18.319 93.297 18.706Q93.297 19.198 93.034 19.608Q92.770 20.018 92.340 20.249Q91.911 20.479 91.418 20.479Q90.926 20.479 90.493 20.247Q90.059 20.014 89.797 19.606Q89.536 19.198 89.536 18.706M91.418 20.202Q91.875 20.202 92.127 19.979Q92.379 19.756 92.467 19.405Q92.555 19.053 92.555 18.608Q92.555 18.178 92.461 17.840Q92.368 17.503 92.114 17.296Q91.860 17.088 91.418 17.088Q90.770 17.088 90.526 17.505Q90.282 17.921 90.282 18.608Q90.282 19.053 90.370 19.405Q90.457 19.756 90.709 19.979Q90.961 20.202 91.418 20.202M95.711 20.401L93.856 20.401L93.856 20.104Q94.129 20.104 94.297 20.057Q94.465 20.010 94.465 19.842L94.465 17.706Q94.465 17.491 94.403 17.395Q94.340 17.299 94.221 17.278Q94.102 17.256 93.856 17.256L93.856 16.960L95.047 16.874L95.047 17.608Q95.161 17.393 95.354 17.225Q95.547 17.057 95.786 16.965Q96.024 16.874 96.278 16.874Q97.446 16.874 97.446 17.952L97.446 19.842Q97.446 20.010 97.616 20.057Q97.786 20.104 98.055 20.104L98.055 20.401L96.200 20.401L96.200 20.104Q96.473 20.104 96.641 20.057Q96.809 20.010 96.809 19.842L96.809 17.967Q96.809 17.585 96.688 17.356Q96.567 17.128 96.215 17.128Q95.903 17.128 95.649 17.290Q95.395 17.452 95.249 17.721Q95.102 17.991 95.102 18.288L95.102 19.842Q95.102 20.010 95.272 20.057Q95.442 20.104 95.711 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M98.897 19.440L98.897 17.249L98.194 17.249L98.194 16.995Q98.550 16.995 98.792 16.762Q99.034 16.530 99.145 16.182Q99.257 15.835 99.257 15.479L99.538 15.479L99.538 16.952L100.714 16.952L100.714 17.249L99.538 17.249L99.538 19.424Q99.538 19.745 99.657 19.973Q99.776 20.202 100.057 20.202Q100.237 20.202 100.354 20.079Q100.472 19.956 100.524 19.776Q100.577 19.596 100.577 19.424L100.577 18.952L100.858 18.952L100.858 19.440Q100.858 19.694 100.753 19.934Q100.647 20.174 100.450 20.327Q100.253 20.479 99.995 20.479Q99.679 20.479 99.427 20.356Q99.175 20.233 99.036 19.999Q98.897 19.764 98.897 19.440M103.585 20.401L101.604 20.401L101.604 20.104Q101.874 20.104 102.042 20.059Q102.210 20.014 102.210 19.842L102.210 17.706Q102.210 17.491 102.147 17.395Q102.085 17.299 101.968 17.278Q101.850 17.256 101.604 17.256L101.604 16.960L102.772 16.874L102.772 17.659Q102.850 17.448 103.003 17.262Q103.155 17.077 103.354 16.975Q103.554 16.874 103.780 16.874Q104.026 16.874 104.218 17.018Q104.409 17.163 104.409 17.393Q104.409 17.549 104.304 17.659Q104.198 17.768 104.042 17.768Q103.886 17.768 103.776 17.659Q103.667 17.549 103.667 17.393Q103.667 17.233 103.772 17.128Q103.448 17.128 103.233 17.356Q103.018 17.585 102.923 17.924Q102.827 18.264 102.827 18.569L102.827 19.842Q102.827 20.010 103.054 20.057Q103.280 20.104 103.585 20.104L103.585 20.401M104.889 18.706Q104.889 18.202 105.145 17.770Q105.401 17.338 105.837 17.087Q106.272 16.835 106.772 16.835Q107.159 16.835 107.501 16.979Q107.843 17.124 108.104 17.385Q108.366 17.647 108.509 17.983Q108.651 18.319 108.651 18.706Q108.651 19.198 108.388 19.608Q108.124 20.018 107.694 20.249Q107.264 20.479 106.772 20.479Q106.280 20.479 105.847 20.247Q105.413 20.014 105.151 19.606Q104.889 19.198 104.889 18.706M106.772 20.202Q107.229 20.202 107.481 19.979Q107.733 19.756 107.821 19.405Q107.909 19.053 107.909 18.608Q107.909 18.178 107.815 17.840Q107.722 17.503 107.468 17.296Q107.214 17.088 106.772 17.088Q106.124 17.088 105.880 17.505Q105.636 17.921 105.636 18.608Q105.636 19.053 105.723 19.405Q105.811 19.756 106.063 19.979Q106.315 20.202 106.772 20.202M111.050 20.401L109.218 20.401L109.218 20.104Q109.491 20.104 109.659 20.057Q109.827 20.010 109.827 19.842L109.827 15.682Q109.827 15.467 109.764 15.372Q109.702 15.276 109.583 15.255Q109.464 15.233 109.218 15.233L109.218 14.936L110.440 14.850L110.440 19.842Q110.440 20.010 110.608 20.057Q110.776 20.104 111.050 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M114.960 19.440L114.960 17.249L114.257 17.249L114.257 16.995Q114.613 16.995 114.855 16.762Q115.097 16.530 115.208 16.182Q115.320 15.835 115.320 15.479L115.601 15.479L115.601 16.952L116.777 16.952L116.777 17.249L115.601 17.249L115.601 19.424Q115.601 19.745 115.720 19.973Q115.839 20.202 116.120 20.202Q116.300 20.202 116.417 20.079Q116.534 19.956 116.587 19.776Q116.640 19.596 116.640 19.424L116.640 18.952L116.921 18.952L116.921 19.440Q116.921 19.694 116.816 19.934Q116.710 20.174 116.513 20.327Q116.316 20.479 116.058 20.479Q115.742 20.479 115.490 20.356Q115.238 20.233 115.099 19.999Q114.960 19.764 114.960 19.440M117.738 19.569Q117.738 19.085 118.140 18.790Q118.542 18.495 119.093 18.376Q119.644 18.256 120.136 18.256L120.136 17.967Q120.136 17.741 120.021 17.534Q119.906 17.327 119.708 17.208Q119.511 17.088 119.281 17.088Q118.855 17.088 118.570 17.194Q118.640 17.221 118.687 17.276Q118.734 17.331 118.759 17.401Q118.784 17.471 118.784 17.546Q118.784 17.651 118.734 17.743Q118.683 17.835 118.591 17.885Q118.499 17.936 118.394 17.936Q118.288 17.936 118.197 17.885Q118.105 17.835 118.054 17.743Q118.003 17.651 118.003 17.546Q118.003 17.128 118.392 16.981Q118.781 16.835 119.281 16.835Q119.613 16.835 119.966 16.965Q120.320 17.096 120.548 17.350Q120.777 17.604 120.777 17.952L120.777 19.753Q120.777 19.885 120.849 19.995Q120.921 20.104 121.050 20.104Q121.175 20.104 121.243 19.999Q121.312 19.893 121.312 19.753L121.312 19.241L121.593 19.241L121.593 19.753Q121.593 19.956 121.476 20.114Q121.359 20.272 121.177 20.356Q120.995 20.440 120.792 20.440Q120.562 20.440 120.409 20.268Q120.257 20.096 120.226 19.866Q120.066 20.147 119.757 20.313Q119.449 20.479 119.097 20.479Q118.585 20.479 118.161 20.256Q117.738 20.034 117.738 19.569M118.425 19.569Q118.425 19.854 118.652 20.040Q118.878 20.225 119.171 20.225Q119.417 20.225 119.642 20.108Q119.867 19.991 120.001 19.788Q120.136 19.585 120.136 19.331L120.136 18.499Q119.870 18.499 119.585 18.553Q119.300 18.608 119.029 18.737Q118.757 18.866 118.591 19.073Q118.425 19.280 118.425 19.569M122.800 20.401L122.519 20.401L122.519 15.682Q122.519 15.467 122.456 15.372Q122.394 15.276 122.277 15.255Q122.159 15.233 121.913 15.233L121.913 14.936L123.136 14.850L123.136 17.338Q123.613 16.874 124.312 16.874Q124.792 16.874 125.201 17.118Q125.609 17.362 125.845 17.776Q126.081 18.190 126.081 18.674Q126.081 19.049 125.933 19.378Q125.784 19.706 125.515 19.958Q125.245 20.210 124.902 20.344Q124.558 20.479 124.199 20.479Q123.878 20.479 123.579 20.331Q123.281 20.182 123.074 19.921L122.800 20.401M123.159 17.729L123.159 19.569Q123.312 19.866 123.572 20.046Q123.831 20.225 124.144 20.225Q124.570 20.225 124.837 20.006Q125.105 19.788 125.220 19.442Q125.335 19.096 125.335 18.674Q125.335 18.026 125.087 17.577Q124.839 17.128 124.242 17.128Q123.906 17.128 123.617 17.286Q123.327 17.444 123.159 17.729M128.519 20.401L126.687 20.401L126.687 20.104Q126.960 20.104 127.128 20.057Q127.296 20.010 127.296 19.842L127.296 15.682Q127.296 15.467 127.234 15.372Q127.171 15.276 127.052 15.255Q126.933 15.233 126.687 15.233L126.687 14.936L127.909 14.850L127.909 19.842Q127.909 20.010 128.077 20.057Q128.245 20.104 128.519 20.104L128.519 20.401M128.964 18.647Q128.964 18.167 129.197 17.751Q129.429 17.335 129.839 17.085Q130.249 16.835 130.726 16.835Q131.456 16.835 131.855 17.276Q132.253 17.717 132.253 18.448Q132.253 18.553 132.159 18.577L129.710 18.577L129.710 18.647Q129.710 19.057 129.831 19.413Q129.952 19.768 130.224 19.985Q130.495 20.202 130.925 20.202Q131.288 20.202 131.585 19.973Q131.882 19.745 131.984 19.393Q131.992 19.346 132.077 19.331L132.159 19.331Q132.253 19.358 132.253 19.440Q132.253 19.448 132.245 19.479Q132.183 19.706 132.044 19.889Q131.906 20.073 131.714 20.206Q131.523 20.338 131.304 20.409Q131.085 20.479 130.847 20.479Q130.476 20.479 130.138 20.342Q129.800 20.206 129.533 19.954Q129.265 19.702 129.115 19.362Q128.964 19.022 128.964 18.647M129.718 18.338L131.679 18.338Q131.679 18.034 131.577 17.743Q131.476 17.452 131.259 17.270Q131.042 17.088 130.726 17.088Q130.425 17.088 130.195 17.276Q129.964 17.463 129.841 17.755Q129.718 18.046 129.718 18.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M138.468 18.585L135.995 18.585Q135.917 18.573 135.868 18.524Q135.820 18.475 135.820 18.401Q135.820 18.327 135.868 18.278Q135.917 18.229 135.995 18.217L138.468 18.217L138.468 15.737Q138.495 15.569 138.652 15.569Q138.726 15.569 138.775 15.618Q138.824 15.667 138.835 15.737L138.835 18.217L141.308 18.217Q141.476 18.249 141.476 18.401Q141.476 18.553 141.308 18.585L138.835 18.585L138.835 21.065Q138.824 21.135 138.775 21.184Q138.726 21.233 138.652 21.233Q138.495 21.233 138.468 21.065\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M145.030 18.706Q145.030 18.202 145.286 17.770Q145.542 17.338 145.978 17.087Q146.413 16.835 146.913 16.835Q147.300 16.835 147.642 16.979Q147.983 17.124 148.245 17.385Q148.507 17.647 148.649 17.983Q148.792 18.319 148.792 18.706Q148.792 19.198 148.528 19.608Q148.265 20.018 147.835 20.249Q147.405 20.479 146.913 20.479Q146.421 20.479 145.987 20.247Q145.554 20.014 145.292 19.606Q145.030 19.198 145.030 18.706M146.913 20.202Q147.370 20.202 147.622 19.979Q147.874 19.756 147.962 19.405Q148.050 19.053 148.050 18.608Q148.050 18.178 147.956 17.840Q147.862 17.503 147.608 17.296Q147.355 17.088 146.913 17.088Q146.265 17.088 146.021 17.505Q145.776 17.921 145.776 18.608Q145.776 19.053 145.864 19.405Q145.952 19.756 146.204 19.979Q146.456 20.202 146.913 20.202M151.206 20.401L149.351 20.401L149.351 20.104Q149.624 20.104 149.792 20.057Q149.960 20.010 149.960 19.842L149.960 17.706Q149.960 17.491 149.897 17.395Q149.835 17.299 149.716 17.278Q149.597 17.256 149.351 17.256L149.351 16.960L150.542 16.874L150.542 17.608Q150.655 17.393 150.849 17.225Q151.042 17.057 151.280 16.965Q151.519 16.874 151.772 16.874Q152.940 16.874 152.940 17.952L152.940 19.842Q152.940 20.010 153.110 20.057Q153.280 20.104 153.550 20.104L153.550 20.401L151.694 20.401L151.694 20.104Q151.968 20.104 152.136 20.057Q152.304 20.010 152.304 19.842L152.304 17.967Q152.304 17.585 152.183 17.356Q152.062 17.128 151.710 17.128Q151.397 17.128 151.144 17.290Q150.890 17.452 150.743 17.721Q150.597 17.991 150.597 18.288L150.597 19.842Q150.597 20.010 150.767 20.057Q150.937 20.104 151.206 20.104L151.206 20.401M153.995 18.647Q153.995 18.167 154.228 17.751Q154.460 17.335 154.870 17.085Q155.280 16.835 155.757 16.835Q156.487 16.835 156.886 17.276Q157.284 17.717 157.284 18.448Q157.284 18.553 157.190 18.577L154.741 18.577L154.741 18.647Q154.741 19.057 154.862 19.413Q154.983 19.768 155.255 19.985Q155.526 20.202 155.956 20.202Q156.319 20.202 156.616 19.973Q156.913 19.745 157.015 19.393Q157.022 19.346 157.108 19.331L157.190 19.331Q157.284 19.358 157.284 19.440Q157.284 19.448 157.276 19.479Q157.214 19.706 157.075 19.889Q156.937 20.073 156.745 20.206Q156.554 20.338 156.335 20.409Q156.116 20.479 155.878 20.479Q155.507 20.479 155.169 20.342Q154.831 20.206 154.563 19.954Q154.296 19.702 154.146 19.362Q153.995 19.022 153.995 18.647M154.749 18.338L156.710 18.338Q156.710 18.034 156.608 17.743Q156.507 17.452 156.290 17.270Q156.073 17.088 155.757 17.088Q155.456 17.088 155.226 17.276Q154.995 17.463 154.872 17.755Q154.749 18.046 154.749 18.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M162.496 21.952L160.641 21.952L160.641 21.659Q160.910 21.659 161.078 21.614Q161.246 21.569 161.246 21.393L161.246 17.569Q161.246 17.362 161.090 17.309Q160.934 17.256 160.641 17.256L160.641 16.960L161.863 16.874L161.863 17.338Q162.094 17.116 162.408 16.995Q162.723 16.874 163.063 16.874Q163.535 16.874 163.939 17.120Q164.344 17.366 164.576 17.782Q164.809 18.198 164.809 18.674Q164.809 19.049 164.660 19.378Q164.512 19.706 164.242 19.958Q163.973 20.210 163.629 20.344Q163.285 20.479 162.926 20.479Q162.637 20.479 162.365 20.358Q162.094 20.237 161.887 20.026L161.887 21.393Q161.887 21.569 162.055 21.614Q162.223 21.659 162.496 21.659L162.496 21.952M161.887 17.737L161.887 19.577Q162.039 19.866 162.301 20.046Q162.563 20.225 162.871 20.225Q163.156 20.225 163.379 20.087Q163.602 19.948 163.754 19.717Q163.906 19.487 163.984 19.215Q164.063 18.944 164.063 18.674Q164.063 18.342 163.938 17.985Q163.813 17.628 163.564 17.391Q163.316 17.155 162.969 17.155Q162.645 17.155 162.350 17.311Q162.055 17.467 161.887 17.737M167.340 20.401L165.359 20.401L165.359 20.104Q165.629 20.104 165.797 20.059Q165.965 20.014 165.965 19.842L165.965 17.706Q165.965 17.491 165.902 17.395Q165.840 17.299 165.723 17.278Q165.605 17.256 165.359 17.256L165.359 16.960L166.527 16.874L166.527 17.659Q166.605 17.448 166.758 17.262Q166.910 17.077 167.109 16.975Q167.309 16.874 167.535 16.874Q167.781 16.874 167.973 17.018Q168.164 17.163 168.164 17.393Q168.164 17.549 168.059 17.659Q167.953 17.768 167.797 17.768Q167.641 17.768 167.531 17.659Q167.422 17.549 167.422 17.393Q167.422 17.233 167.527 17.128Q167.203 17.128 166.988 17.356Q166.773 17.585 166.678 17.924Q166.582 18.264 166.582 18.569L166.582 19.842Q166.582 20.010 166.809 20.057Q167.035 20.104 167.340 20.104L167.340 20.401M168.645 18.706Q168.645 18.202 168.900 17.770Q169.156 17.338 169.592 17.087Q170.027 16.835 170.527 16.835Q170.914 16.835 171.256 16.979Q171.598 17.124 171.859 17.385Q172.121 17.647 172.264 17.983Q172.406 18.319 172.406 18.706Q172.406 19.198 172.143 19.608Q171.879 20.018 171.449 20.249Q171.020 20.479 170.527 20.479Q170.035 20.479 169.602 20.247Q169.168 20.014 168.906 19.606Q168.645 19.198 168.645 18.706M170.527 20.202Q170.984 20.202 171.236 19.979Q171.488 19.756 171.576 19.405Q171.664 19.053 171.664 18.608Q171.664 18.178 171.570 17.840Q171.477 17.503 171.223 17.296Q170.969 17.088 170.527 17.088Q169.879 17.088 169.635 17.505Q169.391 17.921 169.391 18.608Q169.391 19.053 169.479 19.405Q169.566 19.756 169.818 19.979Q170.070 20.202 170.527 20.202M172.891 21.010Q172.891 20.729 173.102 20.518Q173.313 20.307 173.598 20.217Q173.441 20.092 173.363 19.903Q173.285 19.713 173.285 19.514Q173.285 19.159 173.516 18.866Q173.148 18.526 173.148 18.057Q173.148 17.706 173.352 17.436Q173.555 17.167 173.875 17.020Q174.195 16.874 174.539 16.874Q175.059 16.874 175.430 17.155Q175.793 16.784 176.340 16.784Q176.520 16.784 176.646 16.911Q176.773 17.038 176.773 17.217Q176.773 17.323 176.695 17.401Q176.617 17.479 176.508 17.479Q176.398 17.479 176.322 17.403Q176.246 17.327 176.246 17.217Q176.246 17.116 176.285 17.065Q176.293 17.057 176.297 17.051Q176.301 17.046 176.301 17.042Q175.926 17.042 175.605 17.296Q175.926 17.635 175.926 18.057Q175.926 18.327 175.809 18.544Q175.691 18.760 175.486 18.919Q175.281 19.077 175.039 19.159Q174.797 19.241 174.539 19.241Q174.320 19.241 174.107 19.182Q173.895 19.124 173.699 19.003Q173.605 19.143 173.605 19.323Q173.605 19.530 173.742 19.682Q173.879 19.835 174.086 19.835L174.781 19.835Q175.270 19.835 175.682 19.919Q176.094 20.003 176.373 20.260Q176.652 20.518 176.652 21.010Q176.652 21.374 176.332 21.606Q176.012 21.838 175.570 21.940Q175.129 22.042 174.773 22.042Q174.418 22.042 173.975 21.940Q173.531 21.838 173.211 21.606Q172.891 21.374 172.891 21.010M173.395 21.010Q173.395 21.206 173.539 21.354Q173.684 21.503 173.896 21.592Q174.109 21.682 174.350 21.729Q174.590 21.776 174.773 21.776Q175.016 21.776 175.346 21.698Q175.676 21.620 175.912 21.446Q176.148 21.272 176.148 21.010Q176.148 20.604 175.738 20.495Q175.328 20.385 174.766 20.385L174.086 20.385Q173.816 20.385 173.605 20.563Q173.395 20.741 173.395 21.010M174.539 18.975Q175.262 18.975 175.262 18.057Q175.262 17.135 174.539 17.135Q173.813 17.135 173.813 18.057Q173.813 18.975 174.539 18.975M179.145 20.401L177.164 20.401L177.164 20.104Q177.434 20.104 177.602 20.059Q177.770 20.014 177.770 19.842L177.770 17.706Q177.770 17.491 177.707 17.395Q177.645 17.299 177.527 17.278Q177.410 17.256 177.164 17.256L177.164 16.960L178.332 16.874L178.332 17.659Q178.410 17.448 178.563 17.262Q178.715 17.077 178.914 16.975Q179.113 16.874 179.340 16.874Q179.586 16.874 179.777 17.018Q179.969 17.163 179.969 17.393Q179.969 17.549 179.863 17.659Q179.758 17.768 179.602 17.768Q179.445 17.768 179.336 17.659Q179.227 17.549 179.227 17.393Q179.227 17.233 179.332 17.128Q179.008 17.128 178.793 17.356Q178.578 17.585 178.482 17.924Q178.387 18.264 178.387 18.569L178.387 19.842Q178.387 20.010 178.613 20.057Q178.840 20.104 179.145 20.104L179.145 20.401M180.547 19.569Q180.547 19.085 180.949 18.790Q181.352 18.495 181.902 18.376Q182.453 18.256 182.945 18.256L182.945 17.967Q182.945 17.741 182.830 17.534Q182.715 17.327 182.518 17.208Q182.320 17.088 182.090 17.088Q181.664 17.088 181.379 17.194Q181.449 17.221 181.496 17.276Q181.543 17.331 181.568 17.401Q181.594 17.471 181.594 17.546Q181.594 17.651 181.543 17.743Q181.492 17.835 181.400 17.885Q181.309 17.936 181.203 17.936Q181.098 17.936 181.006 17.885Q180.914 17.835 180.863 17.743Q180.813 17.651 180.813 17.546Q180.813 17.128 181.201 16.981Q181.590 16.835 182.090 16.835Q182.422 16.835 182.775 16.965Q183.129 17.096 183.357 17.350Q183.586 17.604 183.586 17.952L183.586 19.753Q183.586 19.885 183.658 19.995Q183.730 20.104 183.859 20.104Q183.984 20.104 184.053 19.999Q184.121 19.893 184.121 19.753L184.121 19.241L184.402 19.241L184.402 19.753Q184.402 19.956 184.285 20.114Q184.168 20.272 183.986 20.356Q183.805 20.440 183.602 20.440Q183.371 20.440 183.219 20.268Q183.066 20.096 183.035 19.866Q182.875 20.147 182.566 20.313Q182.258 20.479 181.906 20.479Q181.395 20.479 180.971 20.256Q180.547 20.034 180.547 19.569M181.234 19.569Q181.234 19.854 181.461 20.040Q181.688 20.225 181.980 20.225Q182.227 20.225 182.451 20.108Q182.676 19.991 182.811 19.788Q182.945 19.585 182.945 19.331L182.945 18.499Q182.680 18.499 182.395 18.553Q182.109 18.608 181.838 18.737Q181.566 18.866 181.400 19.073Q181.234 19.280 181.234 19.569M186.625 20.401L184.770 20.401L184.770 20.104Q185.043 20.104 185.211 20.057Q185.379 20.010 185.379 19.842L185.379 17.706Q185.379 17.491 185.316 17.395Q185.254 17.299 185.135 17.278Q185.016 17.256 184.770 17.256L184.770 16.960L185.961 16.874L185.961 17.608Q186.074 17.393 186.268 17.225Q186.461 17.057 186.699 16.965Q186.938 16.874 187.191 16.874Q188.152 16.874 188.328 17.585Q188.512 17.256 188.840 17.065Q189.168 16.874 189.547 16.874Q190.723 16.874 190.723 17.952L190.723 19.842Q190.723 20.010 190.891 20.057Q191.059 20.104 191.328 20.104L191.328 20.401L189.473 20.401L189.473 20.104Q189.746 20.104 189.914 20.059Q190.082 20.014 190.082 19.842L190.082 17.967Q190.082 17.581 189.957 17.354Q189.832 17.128 189.480 17.128Q189.176 17.128 188.920 17.290Q188.664 17.452 188.516 17.721Q188.367 17.991 188.367 18.288L188.367 19.842Q188.367 20.010 188.537 20.057Q188.707 20.104 188.977 20.104L188.977 20.401L187.121 20.401L187.121 20.104Q187.395 20.104 187.563 20.057Q187.730 20.010 187.730 19.842L187.730 17.967Q187.730 17.581 187.605 17.354Q187.480 17.128 187.129 17.128Q186.824 17.128 186.568 17.290Q186.313 17.452 186.164 17.721Q186.016 17.991 186.016 18.288L186.016 19.842Q186.016 20.010 186.186 20.057Q186.355 20.104 186.625 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M196.511 21.952L194.656 21.952L194.656 21.659Q194.925 21.659 195.093 21.614Q195.261 21.569 195.261 21.393L195.261 17.569Q195.261 17.362 195.105 17.309Q194.949 17.256 194.656 17.256L194.656 16.960L195.878 16.874L195.878 17.338Q196.109 17.116 196.423 16.995Q196.738 16.874 197.077 16.874Q197.550 16.874 197.954 17.120Q198.359 17.366 198.591 17.782Q198.824 18.198 198.824 18.674Q198.824 19.049 198.675 19.378Q198.527 19.706 198.257 19.958Q197.988 20.210 197.644 20.344Q197.300 20.479 196.941 20.479Q196.652 20.479 196.380 20.358Q196.109 20.237 195.902 20.026L195.902 21.393Q195.902 21.569 196.070 21.614Q196.238 21.659 196.511 21.659L196.511 21.952M195.902 17.737L195.902 19.577Q196.054 19.866 196.316 20.046Q196.577 20.225 196.886 20.225Q197.171 20.225 197.394 20.087Q197.617 19.948 197.769 19.717Q197.921 19.487 197.999 19.215Q198.077 18.944 198.077 18.674Q198.077 18.342 197.952 17.985Q197.827 17.628 197.579 17.391Q197.331 17.155 196.984 17.155Q196.660 17.155 196.365 17.311Q196.070 17.467 195.902 17.737\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M199.586 18.647Q199.586 18.167 199.819 17.751Q200.051 17.335 200.461 17.085Q200.871 16.835 201.348 16.835Q202.078 16.835 202.477 17.276Q202.875 17.717 202.875 18.448Q202.875 18.553 202.782 18.577L200.332 18.577L200.332 18.647Q200.332 19.057 200.453 19.413Q200.575 19.768 200.846 19.985Q201.118 20.202 201.547 20.202Q201.911 20.202 202.207 19.973Q202.504 19.745 202.606 19.393Q202.614 19.346 202.700 19.331L202.782 19.331Q202.875 19.358 202.875 19.440Q202.875 19.448 202.868 19.479Q202.805 19.706 202.666 19.889Q202.528 20.073 202.336 20.206Q202.145 20.338 201.926 20.409Q201.707 20.479 201.469 20.479Q201.098 20.479 200.760 20.342Q200.422 20.206 200.155 19.954Q199.887 19.702 199.737 19.362Q199.586 19.022 199.586 18.647M200.340 18.338L202.301 18.338Q202.301 18.034 202.200 17.743Q202.098 17.452 201.881 17.270Q201.664 17.088 201.348 17.088Q201.047 17.088 200.817 17.276Q200.586 17.463 200.463 17.755Q200.340 18.046 200.340 18.338M205.371 20.401L203.391 20.401L203.391 20.104Q203.661 20.104 203.828 20.059Q203.996 20.014 203.996 19.842L203.996 17.706Q203.996 17.491 203.934 17.395Q203.871 17.299 203.754 17.278Q203.637 17.256 203.391 17.256L203.391 16.960L204.559 16.874L204.559 17.659Q204.637 17.448 204.789 17.262Q204.942 17.077 205.141 16.975Q205.340 16.874 205.567 16.874Q205.813 16.874 206.004 17.018Q206.196 17.163 206.196 17.393Q206.196 17.549 206.090 17.659Q205.985 17.768 205.828 17.768Q205.672 17.768 205.563 17.659Q205.453 17.549 205.453 17.393Q205.453 17.233 205.559 17.128Q205.235 17.128 205.020 17.356Q204.805 17.585 204.709 17.924Q204.614 18.264 204.614 18.569L204.614 19.842Q204.614 20.010 204.840 20.057Q205.067 20.104 205.371 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-101.951 -37.834)\">\u003Cpath d=\"M211.370 20.401L209.592 20.401L209.592 20.104Q209.866 20.104 210.034 20.057Q210.202 20.010 210.202 19.842L210.202 17.706Q210.202 17.491 210.145 17.395Q210.088 17.299 209.975 17.278Q209.862 17.256 209.616 17.256L209.616 16.960L210.815 16.874L210.815 19.842Q210.815 20.010 210.961 20.057Q211.108 20.104 211.370 20.104L211.370 20.401M209.928 15.479Q209.928 15.288 210.063 15.157Q210.198 15.026 210.393 15.026Q210.514 15.026 210.618 15.088Q210.721 15.151 210.784 15.255Q210.846 15.358 210.846 15.479Q210.846 15.674 210.715 15.809Q210.584 15.944 210.393 15.944Q210.194 15.944 210.061 15.811Q209.928 15.678 209.928 15.479M213.799 20.401L211.944 20.401L211.944 20.104Q212.217 20.104 212.385 20.057Q212.553 20.010 212.553 19.842L212.553 17.706Q212.553 17.491 212.491 17.395Q212.428 17.299 212.309 17.278Q212.190 17.256 211.944 17.256L211.944 16.960L213.135 16.874L213.135 17.608Q213.249 17.393 213.442 17.225Q213.635 17.057 213.874 16.965Q214.112 16.874 214.366 16.874Q215.534 16.874 215.534 17.952L215.534 19.842Q215.534 20.010 215.704 20.057Q215.874 20.104 216.143 20.104L216.143 20.401L214.288 20.401L214.288 20.104Q214.561 20.104 214.729 20.057Q214.897 20.010 214.897 19.842L214.897 17.967Q214.897 17.585 214.776 17.356Q214.655 17.128 214.303 17.128Q213.991 17.128 213.737 17.290Q213.483 17.452 213.336 17.721Q213.190 17.991 213.190 18.288L213.190 19.842Q213.190 20.010 213.360 20.057Q213.530 20.104 213.799 20.104L213.799 20.401M216.631 20.393L216.631 19.171Q216.631 19.143 216.663 19.112Q216.694 19.081 216.717 19.081L216.823 19.081Q216.893 19.081 216.909 19.143Q216.971 19.463 217.110 19.704Q217.249 19.944 217.481 20.085Q217.713 20.225 218.022 20.225Q218.260 20.225 218.469 20.165Q218.678 20.104 218.815 19.956Q218.952 19.807 218.952 19.561Q218.952 19.307 218.741 19.141Q218.530 18.975 218.260 18.921L217.639 18.807Q217.233 18.729 216.932 18.473Q216.631 18.217 216.631 17.842Q216.631 17.475 216.833 17.253Q217.034 17.030 217.358 16.932Q217.682 16.835 218.022 16.835Q218.487 16.835 218.784 17.042L219.006 16.858Q219.030 16.835 219.061 16.835L219.112 16.835Q219.143 16.835 219.170 16.862Q219.198 16.889 219.198 16.921L219.198 17.905Q219.198 17.936 219.172 17.965Q219.147 17.995 219.112 17.995L219.006 17.995Q218.971 17.995 218.944 17.967Q218.917 17.940 218.917 17.905Q218.917 17.506 218.665 17.286Q218.413 17.065 218.014 17.065Q217.659 17.065 217.376 17.188Q217.092 17.311 217.092 17.616Q217.092 17.835 217.293 17.967Q217.495 18.100 217.741 18.143L218.366 18.256Q218.795 18.346 219.104 18.643Q219.413 18.940 219.413 19.354Q219.413 19.924 219.014 20.202Q218.616 20.479 218.022 20.479Q217.471 20.479 217.120 20.143L216.823 20.456Q216.799 20.479 216.764 20.479L216.717 20.479Q216.694 20.479 216.663 20.448Q216.631 20.417 216.631 20.393M220.565 19.440L220.565 17.249L219.862 17.249L219.862 16.995Q220.217 16.995 220.459 16.762Q220.702 16.530 220.813 16.182Q220.924 15.835 220.924 15.479L221.206 15.479L221.206 16.952L222.381 16.952L222.381 17.249L221.206 17.249L221.206 19.424Q221.206 19.745 221.325 19.973Q221.444 20.202 221.725 20.202Q221.905 20.202 222.022 20.079Q222.139 19.956 222.192 19.776Q222.245 19.596 222.245 19.424L222.245 18.952L222.526 18.952L222.526 19.440Q222.526 19.694 222.420 19.934Q222.315 20.174 222.118 20.327Q221.920 20.479 221.663 20.479Q221.346 20.479 221.094 20.356Q220.842 20.233 220.704 19.999Q220.565 19.764 220.565 19.440M225.252 20.401L223.272 20.401L223.272 20.104Q223.542 20.104 223.709 20.059Q223.877 20.014 223.877 19.842L223.877 17.706Q223.877 17.491 223.815 17.395Q223.752 17.299 223.635 17.278Q223.518 17.256 223.272 17.256L223.272 16.960L224.440 16.874L224.440 17.659Q224.518 17.448 224.670 17.262Q224.823 17.077 225.022 16.975Q225.221 16.874 225.448 16.874Q225.694 16.874 225.885 17.018Q226.077 17.163 226.077 17.393Q226.077 17.549 225.971 17.659Q225.866 17.768 225.709 17.768Q225.553 17.768 225.444 17.659Q225.334 17.549 225.334 17.393Q225.334 17.233 225.440 17.128Q225.116 17.128 224.901 17.356Q224.686 17.585 224.590 17.924Q224.495 18.264 224.495 18.569L224.495 19.842Q224.495 20.010 224.721 20.057Q224.948 20.104 225.252 20.104L225.252 20.401M227.241 19.448L227.241 17.706Q227.241 17.491 227.178 17.395Q227.116 17.299 226.997 17.278Q226.877 17.256 226.631 17.256L226.631 16.960L227.877 16.874L227.877 19.424L227.877 19.448Q227.877 19.760 227.932 19.922Q227.987 20.085 228.137 20.155Q228.288 20.225 228.608 20.225Q229.038 20.225 229.311 19.887Q229.584 19.549 229.584 19.104L229.584 17.706Q229.584 17.491 229.522 17.395Q229.459 17.299 229.340 17.278Q229.221 17.256 228.975 17.256L228.975 16.960L230.221 16.874L230.221 19.659Q230.221 19.870 230.284 19.965Q230.346 20.061 230.465 20.083Q230.584 20.104 230.831 20.104L230.831 20.401L229.608 20.479L229.608 19.858Q229.440 20.147 229.159 20.313Q228.877 20.479 228.557 20.479Q227.241 20.479 227.241 19.448M231.319 18.674Q231.319 18.178 231.569 17.753Q231.819 17.327 232.239 17.081Q232.659 16.835 233.159 16.835Q233.698 16.835 234.088 16.960Q234.479 17.085 234.479 17.499Q234.479 17.604 234.428 17.696Q234.377 17.788 234.286 17.838Q234.194 17.889 234.084 17.889Q233.979 17.889 233.887 17.838Q233.795 17.788 233.745 17.696Q233.694 17.604 233.694 17.499Q233.694 17.276 233.862 17.171Q233.639 17.112 233.167 17.112Q232.870 17.112 232.655 17.251Q232.440 17.389 232.309 17.620Q232.178 17.850 232.120 18.120Q232.061 18.389 232.061 18.674Q232.061 19.069 232.194 19.419Q232.327 19.768 232.598 19.985Q232.870 20.202 233.268 20.202Q233.643 20.202 233.918 19.985Q234.194 19.768 234.295 19.409Q234.311 19.346 234.374 19.346L234.479 19.346Q234.514 19.346 234.540 19.374Q234.565 19.401 234.565 19.440L234.565 19.463Q234.432 19.944 234.047 20.212Q233.663 20.479 233.159 20.479Q232.795 20.479 232.461 20.342Q232.127 20.206 231.868 19.956Q231.608 19.706 231.463 19.370Q231.319 19.034 231.319 18.674M235.678 19.440L235.678 17.249L234.975 17.249L234.975 16.995Q235.331 16.995 235.573 16.762Q235.815 16.530 235.926 16.182Q236.038 15.835 236.038 15.479L236.319 15.479L236.319 16.952L237.495 16.952L237.495 17.249L236.319 17.249L236.319 19.424Q236.319 19.745 236.438 19.973Q236.557 20.202 236.838 20.202Q237.018 20.202 237.135 20.079Q237.252 19.956 237.305 19.776Q237.358 19.596 237.358 19.424L237.358 18.952L237.639 18.952L237.639 19.440Q237.639 19.694 237.534 19.934Q237.428 20.174 237.231 20.327Q237.034 20.479 236.776 20.479Q236.459 20.479 236.208 20.356Q235.956 20.233 235.817 19.999Q235.678 19.764 235.678 19.440M240.217 20.401L238.440 20.401L238.440 20.104Q238.713 20.104 238.881 20.057Q239.049 20.010 239.049 19.842L239.049 17.706Q239.049 17.491 238.993 17.395Q238.936 17.299 238.823 17.278Q238.709 17.256 238.463 17.256L238.463 16.960L239.663 16.874L239.663 19.842Q239.663 20.010 239.809 20.057Q239.956 20.104 240.217 20.104L240.217 20.401M238.776 15.479Q238.776 15.288 238.911 15.157Q239.045 15.026 239.241 15.026Q239.362 15.026 239.465 15.088Q239.569 15.151 239.631 15.255Q239.694 15.358 239.694 15.479Q239.694 15.674 239.563 15.809Q239.432 15.944 239.241 15.944Q239.042 15.944 238.909 15.811Q238.776 15.678 238.776 15.479M240.717 18.706Q240.717 18.202 240.973 17.770Q241.229 17.338 241.665 17.087Q242.100 16.835 242.600 16.835Q242.987 16.835 243.329 16.979Q243.670 17.124 243.932 17.385Q244.194 17.647 244.336 17.983Q244.479 18.319 244.479 18.706Q244.479 19.198 244.215 19.608Q243.952 20.018 243.522 20.249Q243.092 20.479 242.600 20.479Q242.108 20.479 241.674 20.247Q241.241 20.014 240.979 19.606Q240.717 19.198 240.717 18.706M242.600 20.202Q243.057 20.202 243.309 19.979Q243.561 19.756 243.649 19.405Q243.737 19.053 243.737 18.608Q243.737 18.178 243.643 17.840Q243.549 17.503 243.295 17.296Q243.042 17.088 242.600 17.088Q241.952 17.088 241.708 17.505Q241.463 17.921 241.463 18.608Q241.463 19.053 241.551 19.405Q241.639 19.756 241.891 19.979Q242.143 20.202 242.600 20.202M246.893 20.401L245.038 20.401L245.038 20.104Q245.311 20.104 245.479 20.057Q245.647 20.010 245.647 19.842L245.647 17.706Q245.647 17.491 245.584 17.395Q245.522 17.299 245.403 17.278Q245.284 17.256 245.038 17.256L245.038 16.960L246.229 16.874L246.229 17.608Q246.342 17.393 246.536 17.225Q246.729 17.057 246.967 16.965Q247.206 16.874 247.459 16.874Q248.627 16.874 248.627 17.952L248.627 19.842Q248.627 20.010 248.797 20.057Q248.967 20.104 249.237 20.104L249.237 20.401L247.381 20.401L247.381 20.104Q247.655 20.104 247.823 20.057Q247.991 20.010 247.991 19.842L247.991 17.967Q247.991 17.585 247.870 17.356Q247.749 17.128 247.397 17.128Q247.084 17.128 246.831 17.290Q246.577 17.452 246.430 17.721Q246.284 17.991 246.284 18.288L246.284 19.842Q246.284 20.010 246.454 20.057Q246.624 20.104 246.893 20.104\" 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-46.463h221.931V-72.07H-65.403Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-size=\"8\">\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M47.660 20.401L45.882 20.401L45.882 20.104Q46.156 20.104 46.324 20.057Q46.492 20.010 46.492 19.842L46.492 17.706Q46.492 17.491 46.435 17.395Q46.378 17.299 46.265 17.278Q46.152 17.256 45.906 17.256L45.906 16.960L47.105 16.874L47.105 19.842Q47.105 20.010 47.251 20.057Q47.398 20.104 47.660 20.104L47.660 20.401M46.218 15.479Q46.218 15.288 46.353 15.157Q46.488 15.026 46.683 15.026Q46.804 15.026 46.908 15.088Q47.011 15.151 47.074 15.255Q47.136 15.358 47.136 15.479Q47.136 15.674 47.005 15.809Q46.874 15.944 46.683 15.944Q46.484 15.944 46.351 15.811Q46.218 15.678 46.218 15.479M50.089 20.401L48.234 20.401L48.234 20.104Q48.507 20.104 48.675 20.057Q48.843 20.010 48.843 19.842L48.843 17.706Q48.843 17.491 48.781 17.395Q48.718 17.299 48.599 17.278Q48.480 17.256 48.234 17.256L48.234 16.960L49.425 16.874L49.425 17.608Q49.539 17.393 49.732 17.225Q49.925 17.057 50.164 16.965Q50.402 16.874 50.656 16.874Q51.824 16.874 51.824 17.952L51.824 19.842Q51.824 20.010 51.994 20.057Q52.164 20.104 52.433 20.104L52.433 20.401L50.578 20.401L50.578 20.104Q50.851 20.104 51.019 20.057Q51.187 20.010 51.187 19.842L51.187 17.967Q51.187 17.585 51.066 17.356Q50.945 17.128 50.593 17.128Q50.281 17.128 50.027 17.290Q49.773 17.452 49.626 17.721Q49.480 17.991 49.480 18.288L49.480 19.842Q49.480 20.010 49.650 20.057Q49.820 20.104 50.089 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M53.273 19.440L53.273 17.249L52.570 17.249L52.570 16.995Q52.926 16.995 53.168 16.762Q53.410 16.530 53.521 16.182Q53.633 15.835 53.633 15.479L53.914 15.479L53.914 16.952L55.090 16.952L55.090 17.249L53.914 17.249L53.914 19.424Q53.914 19.745 54.033 19.973Q54.152 20.202 54.433 20.202Q54.613 20.202 54.730 20.079Q54.847 19.956 54.900 19.776Q54.953 19.596 54.953 19.424L54.953 18.952L55.234 18.952L55.234 19.440Q55.234 19.694 55.129 19.934Q55.023 20.174 54.826 20.327Q54.629 20.479 54.371 20.479Q54.055 20.479 53.803 20.356Q53.551 20.233 53.412 19.999Q53.273 19.764 53.273 19.440M55.953 18.647Q55.953 18.167 56.185 17.751Q56.418 17.335 56.828 17.085Q57.238 16.835 57.715 16.835Q58.445 16.835 58.844 17.276Q59.242 17.717 59.242 18.448Q59.242 18.553 59.148 18.577L56.699 18.577L56.699 18.647Q56.699 19.057 56.820 19.413Q56.941 19.768 57.213 19.985Q57.484 20.202 57.914 20.202Q58.277 20.202 58.574 19.973Q58.871 19.745 58.972 19.393Q58.980 19.346 59.066 19.331L59.148 19.331Q59.242 19.358 59.242 19.440Q59.242 19.448 59.234 19.479Q59.172 19.706 59.033 19.889Q58.894 20.073 58.703 20.206Q58.512 20.338 58.293 20.409Q58.074 20.479 57.836 20.479Q57.465 20.479 57.127 20.342Q56.789 20.206 56.521 19.954Q56.254 19.702 56.103 19.362Q55.953 19.022 55.953 18.647M56.707 18.338L58.668 18.338Q58.668 18.034 58.566 17.743Q58.465 17.452 58.248 17.270Q58.031 17.088 57.715 17.088Q57.414 17.088 57.183 17.276Q56.953 17.463 56.830 17.755Q56.707 18.046 56.707 18.338M59.730 21.010Q59.730 20.729 59.941 20.518Q60.152 20.307 60.437 20.217Q60.281 20.092 60.203 19.903Q60.125 19.713 60.125 19.514Q60.125 19.159 60.355 18.866Q59.988 18.526 59.988 18.057Q59.988 17.706 60.191 17.436Q60.394 17.167 60.715 17.020Q61.035 16.874 61.379 16.874Q61.898 16.874 62.269 17.155Q62.633 16.784 63.180 16.784Q63.359 16.784 63.486 16.911Q63.613 17.038 63.613 17.217Q63.613 17.323 63.535 17.401Q63.457 17.479 63.347 17.479Q63.238 17.479 63.162 17.403Q63.086 17.327 63.086 17.217Q63.086 17.116 63.125 17.065Q63.133 17.057 63.137 17.051Q63.140 17.046 63.140 17.042Q62.765 17.042 62.445 17.296Q62.765 17.635 62.765 18.057Q62.765 18.327 62.648 18.544Q62.531 18.760 62.326 18.919Q62.121 19.077 61.879 19.159Q61.637 19.241 61.379 19.241Q61.160 19.241 60.947 19.182Q60.734 19.124 60.539 19.003Q60.445 19.143 60.445 19.323Q60.445 19.530 60.582 19.682Q60.719 19.835 60.926 19.835L61.621 19.835Q62.109 19.835 62.521 19.919Q62.933 20.003 63.213 20.260Q63.492 20.518 63.492 21.010Q63.492 21.374 63.172 21.606Q62.851 21.838 62.410 21.940Q61.969 22.042 61.613 22.042Q61.258 22.042 60.814 21.940Q60.371 21.838 60.051 21.606Q59.730 21.374 59.730 21.010M60.234 21.010Q60.234 21.206 60.379 21.354Q60.523 21.503 60.736 21.592Q60.949 21.682 61.189 21.729Q61.430 21.776 61.613 21.776Q61.855 21.776 62.185 21.698Q62.515 21.620 62.752 21.446Q62.988 21.272 62.988 21.010Q62.988 20.604 62.578 20.495Q62.168 20.385 61.605 20.385L60.926 20.385Q60.656 20.385 60.445 20.563Q60.234 20.741 60.234 21.010M61.379 18.975Q62.101 18.975 62.101 18.057Q62.101 17.135 61.379 17.135Q60.652 17.135 60.652 18.057Q60.652 18.975 61.379 18.975M65.984 20.401L64.004 20.401L64.004 20.104Q64.273 20.104 64.441 20.059Q64.609 20.014 64.609 19.842L64.609 17.706Q64.609 17.491 64.547 17.395Q64.484 17.299 64.367 17.278Q64.250 17.256 64.004 17.256L64.004 16.960L65.172 16.874L65.172 17.659Q65.250 17.448 65.402 17.262Q65.555 17.077 65.754 16.975Q65.953 16.874 66.180 16.874Q66.426 16.874 66.617 17.018Q66.808 17.163 66.808 17.393Q66.808 17.549 66.703 17.659Q66.597 17.768 66.441 17.768Q66.285 17.768 66.176 17.659Q66.066 17.549 66.066 17.393Q66.066 17.233 66.172 17.128Q65.847 17.128 65.633 17.356Q65.418 17.585 65.322 17.924Q65.226 18.264 65.226 18.569L65.226 19.842Q65.226 20.010 65.453 20.057Q65.680 20.104 65.984 20.104L65.984 20.401M67.387 19.569Q67.387 19.085 67.789 18.790Q68.191 18.495 68.742 18.376Q69.293 18.256 69.785 18.256L69.785 17.967Q69.785 17.741 69.670 17.534Q69.555 17.327 69.357 17.208Q69.160 17.088 68.930 17.088Q68.504 17.088 68.219 17.194Q68.289 17.221 68.336 17.276Q68.383 17.331 68.408 17.401Q68.433 17.471 68.433 17.546Q68.433 17.651 68.383 17.743Q68.332 17.835 68.240 17.885Q68.148 17.936 68.043 17.936Q67.937 17.936 67.846 17.885Q67.754 17.835 67.703 17.743Q67.652 17.651 67.652 17.546Q67.652 17.128 68.041 16.981Q68.430 16.835 68.930 16.835Q69.262 16.835 69.615 16.965Q69.969 17.096 70.197 17.350Q70.426 17.604 70.426 17.952L70.426 19.753Q70.426 19.885 70.498 19.995Q70.570 20.104 70.699 20.104Q70.824 20.104 70.892 19.999Q70.961 19.893 70.961 19.753L70.961 19.241L71.242 19.241L71.242 19.753Q71.242 19.956 71.125 20.114Q71.008 20.272 70.826 20.356Q70.644 20.440 70.441 20.440Q70.211 20.440 70.058 20.268Q69.906 20.096 69.875 19.866Q69.715 20.147 69.406 20.313Q69.097 20.479 68.746 20.479Q68.234 20.479 67.810 20.256Q67.387 20.034 67.387 19.569M68.074 19.569Q68.074 19.854 68.301 20.040Q68.527 20.225 68.820 20.225Q69.066 20.225 69.291 20.108Q69.515 19.991 69.650 19.788Q69.785 19.585 69.785 19.331L69.785 18.499Q69.519 18.499 69.234 18.553Q68.949 18.608 68.678 18.737Q68.406 18.866 68.240 19.073Q68.074 19.280 68.074 19.569M72.160 19.440L72.160 17.249L71.457 17.249L71.457 16.995Q71.812 16.995 72.055 16.762Q72.297 16.530 72.408 16.182Q72.519 15.835 72.519 15.479L72.801 15.479L72.801 16.952L73.976 16.952L73.976 17.249L72.801 17.249L72.801 19.424Q72.801 19.745 72.920 19.973Q73.039 20.202 73.320 20.202Q73.500 20.202 73.617 20.079Q73.734 19.956 73.787 19.776Q73.840 19.596 73.840 19.424L73.840 18.952L74.121 18.952L74.121 19.440Q74.121 19.694 74.015 19.934Q73.910 20.174 73.713 20.327Q73.515 20.479 73.258 20.479Q72.941 20.479 72.689 20.356Q72.437 20.233 72.299 19.999Q72.160 19.764 72.160 19.440M76.699 20.401L74.922 20.401L74.922 20.104Q75.195 20.104 75.363 20.057Q75.531 20.010 75.531 19.842L75.531 17.706Q75.531 17.491 75.474 17.395Q75.418 17.299 75.305 17.278Q75.191 17.256 74.945 17.256L74.945 16.960L76.144 16.874L76.144 19.842Q76.144 20.010 76.291 20.057Q76.437 20.104 76.699 20.104L76.699 20.401M75.258 15.479Q75.258 15.288 75.392 15.157Q75.527 15.026 75.722 15.026Q75.844 15.026 75.947 15.088Q76.051 15.151 76.113 15.255Q76.176 15.358 76.176 15.479Q76.176 15.674 76.045 15.809Q75.914 15.944 75.722 15.944Q75.523 15.944 75.390 15.811Q75.258 15.678 75.258 15.479M77.199 18.706Q77.199 18.202 77.455 17.770Q77.711 17.338 78.146 17.087Q78.582 16.835 79.082 16.835Q79.469 16.835 79.810 16.979Q80.152 17.124 80.414 17.385Q80.676 17.647 80.818 17.983Q80.961 18.319 80.961 18.706Q80.961 19.198 80.697 19.608Q80.433 20.018 80.004 20.249Q79.574 20.479 79.082 20.479Q78.590 20.479 78.156 20.247Q77.722 20.014 77.461 19.606Q77.199 19.198 77.199 18.706M79.082 20.202Q79.539 20.202 79.791 19.979Q80.043 19.756 80.131 19.405Q80.219 19.053 80.219 18.608Q80.219 18.178 80.125 17.840Q80.031 17.503 79.777 17.296Q79.523 17.088 79.082 17.088Q78.433 17.088 78.189 17.505Q77.945 17.921 77.945 18.608Q77.945 19.053 78.033 19.405Q78.121 19.756 78.373 19.979Q78.625 20.202 79.082 20.202M83.375 20.401L81.519 20.401L81.519 20.104Q81.793 20.104 81.961 20.057Q82.129 20.010 82.129 19.842L82.129 17.706Q82.129 17.491 82.066 17.395Q82.004 17.299 81.885 17.278Q81.765 17.256 81.519 17.256L81.519 16.960L82.711 16.874L82.711 17.608Q82.824 17.393 83.017 17.225Q83.211 17.057 83.449 16.965Q83.687 16.874 83.941 16.874Q85.109 16.874 85.109 17.952L85.109 19.842Q85.109 20.010 85.279 20.057Q85.449 20.104 85.719 20.104L85.719 20.401L83.863 20.401L83.863 20.104Q84.137 20.104 84.305 20.057Q84.472 20.010 84.472 19.842L84.472 17.967Q84.472 17.585 84.351 17.356Q84.230 17.128 83.879 17.128Q83.566 17.128 83.312 17.290Q83.058 17.452 82.912 17.721Q82.765 17.991 82.765 18.288L82.765 19.842Q82.765 20.010 82.935 20.057Q83.105 20.104 83.375 20.104L83.375 20.401M86.644 19.936Q86.644 19.753 86.781 19.616Q86.918 19.479 87.109 19.479Q87.301 19.479 87.433 19.612Q87.566 19.745 87.566 19.936Q87.566 20.135 87.433 20.268Q87.301 20.401 87.109 20.401Q86.918 20.401 86.781 20.264Q86.644 20.128 86.644 19.936M86.644 17.409Q86.644 17.225 86.781 17.088Q86.918 16.952 87.109 16.952Q87.301 16.952 87.433 17.085Q87.566 17.217 87.566 17.409Q87.566 17.608 87.433 17.741Q87.301 17.874 87.109 17.874Q86.918 17.874 86.781 17.737Q86.644 17.600 86.644 17.409\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M92.490 19.288Q92.490 18.842 92.904 18.585Q93.318 18.327 93.859 18.227Q94.400 18.128 94.908 18.120Q94.908 17.905 94.773 17.753Q94.639 17.600 94.432 17.524Q94.225 17.448 94.014 17.448Q93.670 17.448 93.510 17.471L93.510 17.530Q93.510 17.698 93.391 17.813Q93.272 17.928 93.107 17.928Q92.932 17.928 92.816 17.805Q92.701 17.682 92.701 17.514Q92.701 17.108 93.082 16.999Q93.463 16.889 94.022 16.889Q94.291 16.889 94.559 16.967Q94.826 17.046 95.051 17.196Q95.275 17.346 95.412 17.567Q95.549 17.788 95.549 18.065L95.549 19.784Q95.549 19.842 96.076 19.842Q96.272 19.862 96.322 20.073L96.322 20.163Q96.272 20.378 96.076 20.401L95.932 20.401Q95.588 20.401 95.359 20.354Q95.131 20.307 94.986 20.120Q94.525 20.440 93.818 20.440Q93.482 20.440 93.178 20.299Q92.873 20.159 92.682 19.897Q92.490 19.635 92.490 19.288M93.131 19.296Q93.131 19.569 93.373 19.725Q93.615 19.881 93.900 19.881Q94.119 19.881 94.352 19.823Q94.584 19.764 94.746 19.626Q94.908 19.487 94.908 19.264L94.908 18.674Q94.627 18.674 94.211 18.731Q93.795 18.788 93.463 18.926Q93.131 19.065 93.131 19.296M96.916 20.202L96.916 19.288Q96.943 19.081 97.154 19.057L97.322 19.057Q97.486 19.081 97.545 19.241Q97.748 19.881 98.475 19.881Q98.682 19.881 98.910 19.846Q99.139 19.811 99.307 19.696Q99.475 19.581 99.475 19.378Q99.475 19.167 99.252 19.053Q99.029 18.940 98.756 18.897L98.057 18.784Q96.916 18.573 96.916 17.850Q96.916 17.561 97.061 17.372Q97.205 17.182 97.445 17.075Q97.686 16.967 97.941 16.928Q98.197 16.889 98.475 16.889Q98.725 16.889 98.918 16.919Q99.111 16.948 99.275 17.026Q99.354 16.909 99.482 16.889L99.561 16.889Q99.658 16.901 99.721 16.963Q99.783 17.026 99.795 17.120L99.795 17.827Q99.783 17.921 99.721 17.987Q99.658 18.053 99.561 18.065L99.393 18.065Q99.299 18.053 99.232 17.987Q99.166 17.921 99.154 17.827Q99.154 17.448 98.459 17.448Q98.111 17.448 97.793 17.530Q97.475 17.612 97.475 17.858Q97.475 18.124 98.147 18.233L98.850 18.354Q99.334 18.436 99.684 18.684Q100.033 18.932 100.033 19.378Q100.033 19.768 99.797 20.010Q99.561 20.253 99.211 20.346Q98.861 20.440 98.475 20.440Q97.897 20.440 97.498 20.186Q97.428 20.311 97.379 20.368Q97.330 20.424 97.225 20.440L97.154 20.440Q96.939 20.417 96.916 20.202M101.318 19.546L101.318 17.514L100.897 17.514Q100.689 17.491 100.647 17.272L100.647 17.186Q100.693 16.975 100.897 16.952L101.713 16.952Q101.908 16.975 101.959 17.186L101.959 19.514Q101.959 19.749 102.129 19.815Q102.299 19.881 102.584 19.881Q102.791 19.881 102.986 19.805Q103.182 19.729 103.307 19.579Q103.432 19.428 103.432 19.217L103.432 17.514L103.010 17.514Q102.799 17.491 102.760 17.272L102.760 17.186Q102.799 16.975 103.010 16.952L103.822 16.952Q104.022 16.975 104.072 17.186L104.072 19.842L104.498 19.842Q104.705 19.866 104.744 20.073L104.744 20.163Q104.705 20.378 104.498 20.401L103.682 20.401Q103.482 20.378 103.432 20.178Q103.029 20.440 102.522 20.440Q102.287 20.440 102.072 20.399Q101.857 20.358 101.691 20.256Q101.525 20.155 101.422 19.977Q101.318 19.799 101.318 19.546M104.768 20.163L104.768 20.073Q104.818 19.862 105.014 19.842L105.213 19.842L105.213 17.514L105.014 17.514Q104.807 17.491 104.768 17.272L104.768 17.186Q104.818 16.971 105.014 16.952L105.494 16.952Q105.686 16.975 105.744 17.186Q106.064 16.913 106.479 16.913Q106.670 16.913 106.838 17.022Q107.006 17.131 107.080 17.303Q107.256 17.112 107.479 17.012Q107.701 16.913 107.943 16.913Q108.361 16.913 108.516 17.255Q108.670 17.596 108.670 18.065L108.670 19.842L108.869 19.842Q109.080 19.866 109.119 20.073L109.119 20.163Q109.068 20.378 108.869 20.401L108.053 20.401Q107.857 20.378 107.807 20.163L107.807 20.073Q107.857 19.866 108.053 19.842L108.143 19.842L108.143 18.096Q108.143 17.471 107.893 17.471Q107.561 17.471 107.383 17.782Q107.205 18.092 107.205 18.456L107.205 19.842L107.408 19.842Q107.615 19.866 107.654 20.073L107.654 20.163Q107.604 20.378 107.408 20.401L106.592 20.401Q106.393 20.378 106.342 20.163L106.342 20.073Q106.393 19.866 106.592 19.842L106.678 19.842L106.678 18.096Q106.678 17.471 106.432 17.471Q106.100 17.471 105.922 17.784Q105.744 18.096 105.744 18.456L105.744 19.842L105.943 19.842Q106.150 19.866 106.189 20.073L106.189 20.163Q106.139 20.381 105.943 20.401L105.014 20.401Q104.807 20.378 104.768 20.163M110.635 19.842Q110.635 19.620 110.801 19.454Q110.967 19.288 111.197 19.288Q111.346 19.288 111.473 19.366Q111.600 19.444 111.674 19.569Q111.748 19.694 111.748 19.842Q111.748 20.069 111.582 20.235Q111.416 20.401 111.197 20.401Q110.971 20.401 110.803 20.233Q110.635 20.065 110.635 19.842M113.658 21.522Q113.658 21.413 113.709 21.321Q113.760 21.229 113.852 21.178Q113.943 21.128 114.049 21.128Q114.158 21.128 114.250 21.178Q114.342 21.229 114.393 21.321Q114.443 21.413 114.443 21.522L114.299 21.522Q114.299 21.659 114.322 21.659Q114.580 21.659 114.768 21.467Q114.955 21.276 115.041 21.010L115.252 20.401L114.115 17.514L113.787 17.514Q113.592 17.491 113.537 17.272L113.537 17.186Q113.596 16.975 113.787 16.952L114.947 16.952Q115.143 16.975 115.193 17.186L115.193 17.272Q115.143 17.491 114.947 17.514L114.682 17.514Q115.018 18.362 115.262 19.016Q115.506 19.671 115.506 19.760L115.514 19.760Q115.514 19.702 115.605 19.409Q115.697 19.116 115.891 18.532Q116.084 17.948 116.225 17.514L115.947 17.514Q115.736 17.491 115.697 17.272L115.697 17.186Q115.748 16.971 115.947 16.952L117.100 16.952Q117.307 16.975 117.346 17.186L117.346 17.272Q117.307 17.491 117.100 17.514L116.779 17.514L115.604 21.010Q115.436 21.510 115.109 21.864Q114.783 22.217 114.322 22.217Q114.049 22.217 113.854 22.006Q113.658 21.796 113.658 21.522M118.147 20.202L118.147 19.288Q118.174 19.081 118.385 19.057L118.553 19.057Q118.717 19.081 118.775 19.241Q118.979 19.881 119.705 19.881Q119.912 19.881 120.141 19.846Q120.369 19.811 120.537 19.696Q120.705 19.581 120.705 19.378Q120.705 19.167 120.482 19.053Q120.260 18.940 119.986 18.897L119.287 18.784Q118.147 18.573 118.147 17.850Q118.147 17.561 118.291 17.372Q118.436 17.182 118.676 17.075Q118.916 16.967 119.172 16.928Q119.428 16.889 119.705 16.889Q119.955 16.889 120.148 16.919Q120.342 16.948 120.506 17.026Q120.584 16.909 120.713 16.889L120.791 16.889Q120.889 16.901 120.951 16.963Q121.014 17.026 121.025 17.120L121.025 17.827Q121.014 17.921 120.951 17.987Q120.889 18.053 120.791 18.065L120.623 18.065Q120.529 18.053 120.463 17.987Q120.397 17.921 120.385 17.827Q120.385 17.448 119.689 17.448Q119.342 17.448 119.023 17.530Q118.705 17.612 118.705 17.858Q118.705 18.124 119.377 18.233L120.080 18.354Q120.564 18.436 120.914 18.684Q121.264 18.932 121.264 19.378Q121.264 19.768 121.027 20.010Q120.791 20.253 120.441 20.346Q120.092 20.440 119.705 20.440Q119.127 20.440 118.729 20.186Q118.658 20.311 118.609 20.368Q118.561 20.424 118.455 20.440L118.385 20.440Q118.170 20.417 118.147 20.202\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M124.949 20.393L124.949 19.171Q124.949 19.143 124.981 19.112Q125.012 19.081 125.035 19.081L125.141 19.081Q125.211 19.081 125.227 19.143Q125.289 19.463 125.428 19.704Q125.566 19.944 125.799 20.085Q126.031 20.225 126.340 20.225Q126.578 20.225 126.787 20.165Q126.996 20.104 127.133 19.956Q127.270 19.807 127.270 19.561Q127.270 19.307 127.059 19.141Q126.848 18.975 126.578 18.921L125.957 18.807Q125.551 18.729 125.250 18.473Q124.949 18.217 124.949 17.842Q124.949 17.475 125.150 17.253Q125.352 17.030 125.676 16.932Q126 16.835 126.340 16.835Q126.805 16.835 127.102 17.042L127.324 16.858Q127.348 16.835 127.379 16.835L127.430 16.835Q127.461 16.835 127.488 16.862Q127.516 16.889 127.516 16.921L127.516 17.905Q127.516 17.936 127.490 17.965Q127.465 17.995 127.430 17.995L127.324 17.995Q127.289 17.995 127.262 17.967Q127.234 17.940 127.234 17.905Q127.234 17.506 126.982 17.286Q126.731 17.065 126.332 17.065Q125.977 17.065 125.693 17.188Q125.410 17.311 125.410 17.616Q125.410 17.835 125.611 17.967Q125.813 18.100 126.059 18.143L126.684 18.256Q127.113 18.346 127.422 18.643Q127.731 18.940 127.731 19.354Q127.731 19.924 127.332 20.202Q126.934 20.479 126.340 20.479Q125.789 20.479 125.438 20.143L125.141 20.456Q125.117 20.479 125.082 20.479L125.035 20.479Q125.012 20.479 124.981 20.448Q124.949 20.417 124.949 20.393M128.883 19.440L128.883 17.249L128.180 17.249L128.180 16.995Q128.535 16.995 128.777 16.762Q129.020 16.530 129.131 16.182Q129.242 15.835 129.242 15.479L129.523 15.479L129.523 16.952L130.699 16.952L130.699 17.249L129.523 17.249L129.523 19.424Q129.523 19.745 129.643 19.973Q129.762 20.202 130.043 20.202Q130.223 20.202 130.340 20.079Q130.457 19.956 130.510 19.776Q130.563 19.596 130.563 19.424L130.563 18.952L130.844 18.952L130.844 19.440Q130.844 19.694 130.738 19.934Q130.633 20.174 130.436 20.327Q130.238 20.479 129.981 20.479Q129.664 20.479 129.412 20.356Q129.160 20.233 129.022 19.999Q128.883 19.764 128.883 19.440M131.660 19.569Q131.660 19.085 132.063 18.790Q132.465 18.495 133.016 18.376Q133.566 18.256 134.059 18.256L134.059 17.967Q134.059 17.741 133.943 17.534Q133.828 17.327 133.631 17.208Q133.434 17.088 133.203 17.088Q132.777 17.088 132.492 17.194Q132.563 17.221 132.609 17.276Q132.656 17.331 132.682 17.401Q132.707 17.471 132.707 17.546Q132.707 17.651 132.656 17.743Q132.606 17.835 132.514 17.885Q132.422 17.936 132.316 17.936Q132.211 17.936 132.119 17.885Q132.027 17.835 131.977 17.743Q131.926 17.651 131.926 17.546Q131.926 17.128 132.314 16.981Q132.703 16.835 133.203 16.835Q133.535 16.835 133.889 16.965Q134.242 17.096 134.471 17.350Q134.699 17.604 134.699 17.952L134.699 19.753Q134.699 19.885 134.772 19.995Q134.844 20.104 134.973 20.104Q135.098 20.104 135.166 19.999Q135.234 19.893 135.234 19.753L135.234 19.241L135.516 19.241L135.516 19.753Q135.516 19.956 135.398 20.114Q135.281 20.272 135.100 20.356Q134.918 20.440 134.715 20.440Q134.484 20.440 134.332 20.268Q134.180 20.096 134.148 19.866Q133.988 20.147 133.680 20.313Q133.371 20.479 133.020 20.479Q132.508 20.479 132.084 20.256Q131.660 20.034 131.660 19.569M132.348 19.569Q132.348 19.854 132.574 20.040Q132.801 20.225 133.094 20.225Q133.340 20.225 133.564 20.108Q133.789 19.991 133.924 19.788Q134.059 19.585 134.059 19.331L134.059 18.499Q133.793 18.499 133.508 18.553Q133.223 18.608 132.951 18.737Q132.680 18.866 132.514 19.073Q132.348 19.280 132.348 19.569M136.434 19.440L136.434 17.249L135.731 17.249L135.731 16.995Q136.086 16.995 136.328 16.762Q136.570 16.530 136.682 16.182Q136.793 15.835 136.793 15.479L137.074 15.479L137.074 16.952L138.250 16.952L138.250 17.249L137.074 17.249L137.074 19.424Q137.074 19.745 137.193 19.973Q137.313 20.202 137.594 20.202Q137.773 20.202 137.891 20.079Q138.008 19.956 138.061 19.776Q138.113 19.596 138.113 19.424L138.113 18.952L138.395 18.952L138.395 19.440Q138.395 19.694 138.289 19.934Q138.184 20.174 137.986 20.327Q137.789 20.479 137.531 20.479Q137.215 20.479 136.963 20.356Q136.711 20.233 136.572 19.999Q136.434 19.764 136.434 19.440M139.113 18.647Q139.113 18.167 139.346 17.751Q139.578 17.335 139.988 17.085Q140.398 16.835 140.875 16.835Q141.606 16.835 142.004 17.276Q142.402 17.717 142.402 18.448Q142.402 18.553 142.309 18.577L139.859 18.577L139.859 18.647Q139.859 19.057 139.981 19.413Q140.102 19.768 140.373 19.985Q140.645 20.202 141.074 20.202Q141.438 20.202 141.734 19.973Q142.031 19.745 142.133 19.393Q142.141 19.346 142.227 19.331L142.309 19.331Q142.402 19.358 142.402 19.440Q142.402 19.448 142.395 19.479Q142.332 19.706 142.193 19.889Q142.055 20.073 141.863 20.206Q141.672 20.338 141.453 20.409Q141.234 20.479 140.996 20.479Q140.625 20.479 140.287 20.342Q139.949 20.206 139.682 19.954Q139.414 19.702 139.264 19.362Q139.113 19.022 139.113 18.647M139.867 18.338L141.828 18.338Q141.828 18.034 141.727 17.743Q141.625 17.452 141.408 17.270Q141.191 17.088 140.875 17.088Q140.574 17.088 140.344 17.276Q140.113 17.463 139.990 17.755Q139.867 18.046 139.867 18.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M146.356 19.440L146.356 17.249L145.653 17.249L145.653 16.995Q146.009 16.995 146.251 16.762Q146.493 16.530 146.604 16.182Q146.716 15.835 146.716 15.479L146.997 15.479L146.997 16.952L148.173 16.952L148.173 17.249L146.997 17.249L146.997 19.424Q146.997 19.745 147.116 19.973Q147.235 20.202 147.516 20.202Q147.696 20.202 147.813 20.079Q147.930 19.956 147.983 19.776Q148.036 19.596 148.036 19.424L148.036 18.952L148.317 18.952L148.317 19.440Q148.317 19.694 148.212 19.934Q148.106 20.174 147.909 20.327Q147.712 20.479 147.454 20.479Q147.138 20.479 146.886 20.356Q146.634 20.233 146.495 19.999Q146.356 19.764 146.356 19.440M151.044 20.401L149.063 20.401L149.063 20.104Q149.333 20.104 149.501 20.059Q149.669 20.014 149.669 19.842L149.669 17.706Q149.669 17.491 149.606 17.395Q149.544 17.299 149.427 17.278Q149.309 17.256 149.063 17.256L149.063 16.960L150.231 16.874L150.231 17.659Q150.309 17.448 150.462 17.262Q150.614 17.077 150.813 16.975Q151.013 16.874 151.239 16.874Q151.485 16.874 151.677 17.018Q151.868 17.163 151.868 17.393Q151.868 17.549 151.763 17.659Q151.657 17.768 151.501 17.768Q151.345 17.768 151.235 17.659Q151.126 17.549 151.126 17.393Q151.126 17.233 151.231 17.128Q150.907 17.128 150.692 17.356Q150.477 17.585 150.382 17.924Q150.286 18.264 150.286 18.569L150.286 19.842Q150.286 20.010 150.513 20.057Q150.739 20.104 151.044 20.104L151.044 20.401M152.446 19.569Q152.446 19.085 152.848 18.790Q153.251 18.495 153.802 18.376Q154.352 18.256 154.845 18.256L154.845 17.967Q154.845 17.741 154.729 17.534Q154.614 17.327 154.417 17.208Q154.220 17.088 153.989 17.088Q153.563 17.088 153.278 17.194Q153.348 17.221 153.395 17.276Q153.442 17.331 153.468 17.401Q153.493 17.471 153.493 17.546Q153.493 17.651 153.442 17.743Q153.391 17.835 153.300 17.885Q153.208 17.936 153.102 17.936Q152.997 17.936 152.905 17.885Q152.813 17.835 152.763 17.743Q152.712 17.651 152.712 17.546Q152.712 17.128 153.100 16.981Q153.489 16.835 153.989 16.835Q154.321 16.835 154.675 16.965Q155.028 17.096 155.257 17.350Q155.485 17.604 155.485 17.952L155.485 19.753Q155.485 19.885 155.557 19.995Q155.630 20.104 155.759 20.104Q155.884 20.104 155.952 19.999Q156.020 19.893 156.020 19.753L156.020 19.241L156.302 19.241L156.302 19.753Q156.302 19.956 156.184 20.114Q156.067 20.272 155.886 20.356Q155.704 20.440 155.501 20.440Q155.270 20.440 155.118 20.268Q154.966 20.096 154.934 19.866Q154.774 20.147 154.466 20.313Q154.157 20.479 153.805 20.479Q153.294 20.479 152.870 20.256Q152.446 20.034 152.446 19.569M153.134 19.569Q153.134 19.854 153.360 20.040Q153.587 20.225 153.880 20.225Q154.126 20.225 154.350 20.108Q154.575 19.991 154.710 19.788Q154.845 19.585 154.845 19.331L154.845 18.499Q154.579 18.499 154.294 18.553Q154.009 18.608 153.737 18.737Q153.466 18.866 153.300 19.073Q153.134 19.280 153.134 19.569M156.638 18.674Q156.638 18.178 156.888 17.753Q157.138 17.327 157.557 17.081Q157.977 16.835 158.477 16.835Q159.016 16.835 159.407 16.960Q159.798 17.085 159.798 17.499Q159.798 17.604 159.747 17.696Q159.696 17.788 159.604 17.838Q159.513 17.889 159.403 17.889Q159.298 17.889 159.206 17.838Q159.114 17.788 159.063 17.696Q159.013 17.604 159.013 17.499Q159.013 17.276 159.180 17.171Q158.958 17.112 158.485 17.112Q158.188 17.112 157.973 17.251Q157.759 17.389 157.628 17.620Q157.497 17.850 157.438 18.120Q157.380 18.389 157.380 18.674Q157.380 19.069 157.513 19.419Q157.645 19.768 157.917 19.985Q158.188 20.202 158.587 20.202Q158.962 20.202 159.237 19.985Q159.513 19.768 159.614 19.409Q159.630 19.346 159.692 19.346L159.798 19.346Q159.833 19.346 159.858 19.374Q159.884 19.401 159.884 19.440L159.884 19.463Q159.751 19.944 159.366 20.212Q158.981 20.479 158.477 20.479Q158.114 20.479 157.780 20.342Q157.446 20.206 157.186 19.956Q156.927 19.706 156.782 19.370Q156.638 19.034 156.638 18.674M160.372 18.647Q160.372 18.167 160.604 17.751Q160.837 17.335 161.247 17.085Q161.657 16.835 162.134 16.835Q162.864 16.835 163.263 17.276Q163.661 17.717 163.661 18.448Q163.661 18.553 163.567 18.577L161.118 18.577L161.118 18.647Q161.118 19.057 161.239 19.413Q161.360 19.768 161.632 19.985Q161.903 20.202 162.333 20.202Q162.696 20.202 162.993 19.973Q163.290 19.745 163.391 19.393Q163.399 19.346 163.485 19.331L163.567 19.331Q163.661 19.358 163.661 19.440Q163.661 19.448 163.653 19.479Q163.591 19.706 163.452 19.889Q163.313 20.073 163.122 20.206Q162.930 20.338 162.712 20.409Q162.493 20.479 162.255 20.479Q161.884 20.479 161.546 20.342Q161.208 20.206 160.940 19.954Q160.673 19.702 160.522 19.362Q160.372 19.022 160.372 18.647M161.126 18.338L163.087 18.338Q163.087 18.034 162.985 17.743Q162.884 17.452 162.667 17.270Q162.450 17.088 162.134 17.088Q161.833 17.088 161.602 17.276Q161.372 17.463 161.249 17.755Q161.126 18.046 161.126 18.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M168.789 20.370L167.566 17.514Q167.484 17.338 167.340 17.294Q167.195 17.249 166.926 17.249L166.926 16.952L168.637 16.952L168.637 17.249Q168.215 17.249 168.215 17.432Q168.215 17.467 168.230 17.514L169.176 19.706L170.016 17.729Q170.055 17.651 170.055 17.561Q170.055 17.421 169.949 17.335Q169.844 17.249 169.703 17.249L169.703 16.952L171.055 16.952L171.055 17.249Q170.531 17.249 170.316 17.729L169.191 20.370Q169.129 20.479 169.023 20.479L168.957 20.479Q168.844 20.479 168.789 20.370M171.512 20.393L171.512 19.171Q171.512 19.143 171.543 19.112Q171.574 19.081 171.598 19.081L171.703 19.081Q171.773 19.081 171.789 19.143Q171.852 19.463 171.990 19.704Q172.129 19.944 172.361 20.085Q172.594 20.225 172.902 20.225Q173.141 20.225 173.350 20.165Q173.559 20.104 173.695 19.956Q173.832 19.807 173.832 19.561Q173.832 19.307 173.621 19.141Q173.410 18.975 173.141 18.921L172.520 18.807Q172.113 18.729 171.813 18.473Q171.512 18.217 171.512 17.842Q171.512 17.475 171.713 17.253Q171.914 17.030 172.238 16.932Q172.563 16.835 172.902 16.835Q173.367 16.835 173.664 17.042L173.887 16.858Q173.910 16.835 173.941 16.835L173.992 16.835Q174.023 16.835 174.051 16.862Q174.078 16.889 174.078 16.921L174.078 17.905Q174.078 17.936 174.053 17.965Q174.027 17.995 173.992 17.995L173.887 17.995Q173.852 17.995 173.824 17.967Q173.797 17.940 173.797 17.905Q173.797 17.506 173.545 17.286Q173.293 17.065 172.895 17.065Q172.539 17.065 172.256 17.188Q171.973 17.311 171.973 17.616Q171.973 17.835 172.174 17.967Q172.375 18.100 172.621 18.143L173.246 18.256Q173.676 18.346 173.984 18.643Q174.293 18.940 174.293 19.354Q174.293 19.924 173.895 20.202Q173.496 20.479 172.902 20.479Q172.352 20.479 172 20.143L171.703 20.456Q171.680 20.479 171.645 20.479L171.598 20.479Q171.574 20.479 171.543 20.448Q171.512 20.417 171.512 20.393\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M178.286 19.440L178.286 17.249L177.583 17.249L177.583 16.995Q177.939 16.995 178.181 16.762Q178.423 16.530 178.534 16.182Q178.646 15.835 178.646 15.479L178.927 15.479L178.927 16.952L180.103 16.952L180.103 17.249L178.927 17.249L178.927 19.424Q178.927 19.745 179.046 19.973Q179.165 20.202 179.446 20.202Q179.626 20.202 179.743 20.079Q179.861 19.956 179.913 19.776Q179.966 19.596 179.966 19.424L179.966 18.952L180.247 18.952L180.247 19.440Q180.247 19.694 180.142 19.934Q180.036 20.174 179.839 20.327Q179.642 20.479 179.384 20.479Q179.068 20.479 178.816 20.356Q178.564 20.233 178.425 19.999Q178.286 19.764 178.286 19.440M182.896 20.401L181.040 20.401L181.040 20.104Q181.314 20.104 181.482 20.057Q181.650 20.010 181.650 19.842L181.650 15.682Q181.650 15.467 181.587 15.372Q181.525 15.276 181.405 15.255Q181.286 15.233 181.040 15.233L181.040 14.936L182.263 14.850L182.263 17.553Q182.388 17.342 182.575 17.192Q182.763 17.042 182.989 16.958Q183.216 16.874 183.462 16.874Q184.630 16.874 184.630 17.952L184.630 19.842Q184.630 20.010 184.800 20.057Q184.970 20.104 185.239 20.104L185.239 20.401L183.384 20.401L183.384 20.104Q183.657 20.104 183.825 20.057Q183.993 20.010 183.993 19.842L183.993 17.967Q183.993 17.585 183.872 17.356Q183.751 17.128 183.400 17.128Q183.087 17.128 182.833 17.290Q182.579 17.452 182.433 17.721Q182.286 17.991 182.286 18.288L182.286 19.842Q182.286 20.010 182.456 20.057Q182.626 20.104 182.896 20.104L182.896 20.401M185.685 18.647Q185.685 18.167 185.917 17.751Q186.150 17.335 186.560 17.085Q186.970 16.835 187.446 16.835Q188.177 16.835 188.575 17.276Q188.974 17.717 188.974 18.448Q188.974 18.553 188.880 18.577L186.431 18.577L186.431 18.647Q186.431 19.057 186.552 19.413Q186.673 19.768 186.944 19.985Q187.216 20.202 187.646 20.202Q188.009 20.202 188.306 19.973Q188.603 19.745 188.704 19.393Q188.712 19.346 188.798 19.331L188.880 19.331Q188.974 19.358 188.974 19.440Q188.974 19.448 188.966 19.479Q188.903 19.706 188.765 19.889Q188.626 20.073 188.435 20.206Q188.243 20.338 188.025 20.409Q187.806 20.479 187.568 20.479Q187.196 20.479 186.859 20.342Q186.521 20.206 186.253 19.954Q185.986 19.702 185.835 19.362Q185.685 19.022 185.685 18.647M186.439 18.338L188.400 18.338Q188.400 18.034 188.298 17.743Q188.196 17.452 187.980 17.270Q187.763 17.088 187.446 17.088Q187.146 17.088 186.915 17.276Q186.685 17.463 186.562 17.755Q186.439 18.046 186.439 18.338\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M194.824 20.401L192.359 20.401L192.359 20.104Q192.691 20.104 192.949 20.057Q193.207 20.010 193.207 19.842L193.207 15.499Q193.207 15.233 192.359 15.233L192.359 14.936L194.824 14.936L194.824 15.233Q193.972 15.233 193.972 15.499L193.972 19.842Q193.972 20.104 194.824 20.104L194.824 20.401M195.589 20.479L195.589 18.674Q195.589 18.647 195.621 18.616Q195.652 18.585 195.675 18.585L195.781 18.585Q195.812 18.585 195.841 18.614Q195.871 18.643 195.871 18.674Q195.871 19.456 196.386 19.864Q196.902 20.272 197.710 20.272Q198.007 20.272 198.263 20.122Q198.519 19.971 198.669 19.715Q198.820 19.460 198.820 19.163Q198.820 18.764 198.574 18.460Q198.328 18.155 197.957 18.073L196.835 17.815Q196.496 17.741 196.208 17.520Q195.921 17.299 195.755 16.981Q195.589 16.663 195.589 16.311Q195.589 15.881 195.820 15.526Q196.050 15.171 196.431 14.969Q196.812 14.768 197.238 14.768Q197.488 14.768 197.734 14.827Q197.980 14.885 198.199 15.008Q198.417 15.131 198.582 15.311L198.910 14.815Q198.941 14.768 198.980 14.768L199.027 14.768Q199.054 14.768 199.085 14.799Q199.117 14.831 199.117 14.858L199.117 16.667Q199.117 16.690 199.085 16.721Q199.054 16.753 199.027 16.753L198.925 16.753Q198.894 16.753 198.865 16.723Q198.835 16.694 198.835 16.667Q198.835 16.534 198.792 16.348Q198.750 16.163 198.685 16.008Q198.621 15.854 198.521 15.696Q198.421 15.538 198.332 15.448Q197.902 15.042 197.238 15.042Q196.960 15.042 196.701 15.174Q196.441 15.307 196.283 15.542Q196.125 15.776 196.125 16.057Q196.125 16.413 196.365 16.684Q196.605 16.956 196.972 17.042L198.085 17.296Q198.363 17.362 198.595 17.516Q198.828 17.671 198.998 17.889Q199.167 18.108 199.261 18.366Q199.355 18.624 199.355 18.913Q199.355 19.241 199.230 19.544Q199.105 19.846 198.871 20.083Q198.636 20.319 198.343 20.444Q198.050 20.569 197.710 20.569Q196.695 20.569 196.125 20.026L195.796 20.522Q195.765 20.569 195.726 20.569L195.675 20.569Q195.652 20.569 195.621 20.538Q195.589 20.506 195.589 20.479M201.875 20.401L200.125 20.401L200.125 20.104Q200.824 20.104 201.011 19.624L202.812 14.799Q202.867 14.690 202.980 14.690L203.050 14.690Q203.164 14.690 203.218 14.799L205.109 19.842Q205.187 20.010 205.390 20.057Q205.593 20.104 205.906 20.104L205.906 20.401L203.683 20.401L203.683 20.104Q204.324 20.104 204.324 19.889Q204.324 19.870 204.322 19.860Q204.320 19.850 204.316 19.842L203.851 18.608L201.707 18.608L201.324 19.624Q201.320 19.639 201.314 19.669Q201.308 19.698 201.308 19.721Q201.308 19.862 201.398 19.946Q201.488 20.030 201.621 20.067Q201.753 20.104 201.875 20.104L201.875 20.401M202.781 15.745L201.812 18.311L203.738 18.311\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M211.213 20.401L209.357 20.401L209.357 20.104Q209.631 20.104 209.799 20.057Q209.967 20.010 209.967 19.842L209.967 17.706Q209.967 17.491 209.904 17.395Q209.842 17.299 209.723 17.278Q209.604 17.256 209.357 17.256L209.357 16.960L210.549 16.874L210.549 17.608Q210.662 17.393 210.856 17.225Q211.049 17.057 211.287 16.965Q211.525 16.874 211.779 16.874Q212.740 16.874 212.916 17.585Q213.100 17.256 213.428 17.065Q213.756 16.874 214.135 16.874Q215.311 16.874 215.311 17.952L215.311 19.842Q215.311 20.010 215.479 20.057Q215.647 20.104 215.916 20.104L215.916 20.401L214.061 20.401L214.061 20.104Q214.334 20.104 214.502 20.059Q214.670 20.014 214.670 19.842L214.670 17.967Q214.670 17.581 214.545 17.354Q214.420 17.128 214.068 17.128Q213.764 17.128 213.508 17.290Q213.252 17.452 213.104 17.721Q212.955 17.991 212.955 18.288L212.955 19.842Q212.955 20.010 213.125 20.057Q213.295 20.104 213.565 20.104L213.565 20.401L211.709 20.401L211.709 20.104Q211.982 20.104 212.150 20.057Q212.318 20.010 212.318 19.842L212.318 17.967Q212.318 17.581 212.193 17.354Q212.068 17.128 211.717 17.128Q211.412 17.128 211.156 17.290Q210.900 17.452 210.752 17.721Q210.604 17.991 210.604 18.288L210.604 19.842Q210.604 20.010 210.774 20.057Q210.943 20.104 211.213 20.104L211.213 20.401M216.361 18.706Q216.361 18.202 216.617 17.770Q216.873 17.338 217.309 17.087Q217.744 16.835 218.244 16.835Q218.631 16.835 218.973 16.979Q219.315 17.124 219.576 17.385Q219.838 17.647 219.981 17.983Q220.123 18.319 220.123 18.706Q220.123 19.198 219.859 19.608Q219.596 20.018 219.166 20.249Q218.736 20.479 218.244 20.479Q217.752 20.479 217.318 20.247Q216.885 20.014 216.623 19.606Q216.361 19.198 216.361 18.706M218.244 20.202Q218.701 20.202 218.953 19.979Q219.205 19.756 219.293 19.405Q219.381 19.053 219.381 18.608Q219.381 18.178 219.287 17.840Q219.193 17.503 218.940 17.296Q218.686 17.088 218.244 17.088Q217.596 17.088 217.352 17.505Q217.107 17.921 217.107 18.608Q217.107 19.053 217.195 19.405Q217.283 19.756 217.535 19.979Q217.787 20.202 218.244 20.202\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(-92.957 -77.779)\">\u003Cpath d=\"M222.670 20.479Q222.189 20.479 221.781 20.235Q221.373 19.991 221.135 19.577Q220.896 19.163 220.896 18.674Q220.896 18.182 221.154 17.766Q221.412 17.350 221.844 17.112Q222.275 16.874 222.767 16.874Q223.388 16.874 223.838 17.311L223.838 15.682Q223.838 15.467 223.775 15.372Q223.713 15.276 223.595 15.255Q223.478 15.233 223.232 15.233L223.232 14.936L224.455 14.850L224.455 19.659Q224.455 19.870 224.517 19.965Q224.580 20.061 224.697 20.083Q224.814 20.104 225.064 20.104L225.064 20.401L223.814 20.479L223.814 19.995Q223.349 20.479 222.670 20.479M222.736 20.225Q223.076 20.225 223.369 20.034Q223.662 19.842 223.814 19.546L223.814 17.713Q223.666 17.440 223.404 17.284Q223.142 17.128 222.830 17.128Q222.205 17.128 221.922 17.575Q221.638 18.022 221.638 18.682Q221.638 19.327 221.890 19.776Q222.142 20.225 222.736 20.225M225.572 18.647Q225.572 18.167 225.804 17.751Q226.037 17.335 226.447 17.085Q226.857 16.835 227.334 16.835Q228.064 16.835 228.463 17.276Q228.861 17.717 228.861 18.448Q228.861 18.553 228.767 18.577L226.318 18.577L226.318 18.647Q226.318 19.057 226.439 19.413Q226.560 19.768 226.832 19.985Q227.103 20.202 227.533 20.202Q227.896 20.202 228.193 19.973Q228.490 19.745 228.592 19.393Q228.599 19.346 228.685 19.331L228.767 19.331Q228.861 19.358 228.861 19.440Q228.861 19.448 228.853 19.479Q228.791 19.706 228.652 19.889Q228.513 20.073 228.322 20.206Q228.131 20.338 227.912 20.409Q227.693 20.479 227.455 20.479Q227.084 20.479 226.746 20.342Q226.408 20.206 226.140 19.954Q225.873 19.702 225.722 19.362Q225.572 19.022 225.572 18.647M226.326 18.338L228.287 18.338Q228.287 18.034 228.185 17.743Q228.084 17.452 227.867 17.270Q227.650 17.088 227.334 17.088Q227.033 17.088 226.803 17.276Q226.572 17.463 226.449 17.755Q226.326 18.046 226.326 18.338M231.263 20.401L229.431 20.401L229.431 20.104Q229.705 20.104 229.873 20.057Q230.041 20.010 230.041 19.842L230.041 15.682Q230.041 15.467 229.978 15.372Q229.916 15.276 229.797 15.255Q229.678 15.233 229.431 15.233L229.431 14.936L230.654 14.850L230.654 19.842Q230.654 20.010 230.822 20.057Q230.990 20.104 231.263 20.104\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M45.562 7.398V-4.428\"\u002F>\u003Cpath stroke=\"none\" d=\"m45.562-6.428-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\">\u003Cpath fill=\"none\" d=\"M45.562-32.436v-11.827\"\u002F>\u003Cpath stroke=\"none\" d=\"m45.562-46.263-1.6 3.2 1.6-1.2 1.6 1.2\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.19 1.325)\">\u003Cpath d=\"M45.632 21.944L45.632 21.858Q45.675 21.639 45.882 21.616L46.304 21.616L46.304 17.514L45.882 17.514Q45.675 17.491 45.632 17.272L45.632 17.186Q45.679 16.975 45.882 16.952L46.699 16.952Q46.894 16.971 46.945 17.186L46.945 17.256Q47.156 17.088 47.419 17.001Q47.683 16.913 47.953 16.913Q48.292 16.913 48.589 17.057Q48.886 17.202 49.101 17.454Q49.316 17.706 49.431 18.018Q49.546 18.331 49.546 18.674Q49.546 19.139 49.320 19.549Q49.093 19.960 48.707 20.200Q48.320 20.440 47.851 20.440Q47.332 20.440 46.945 20.073L46.945 21.616L47.371 21.616Q47.578 21.639 47.617 21.858L47.617 21.944Q47.578 22.155 47.371 22.178L45.882 22.178Q45.679 22.155 45.632 21.944M47.808 19.881Q48.117 19.881 48.367 19.712Q48.617 19.542 48.761 19.260Q48.906 18.979 48.906 18.674Q48.906 18.385 48.781 18.106Q48.656 17.827 48.423 17.649Q48.191 17.471 47.890 17.471Q47.570 17.471 47.308 17.657Q47.046 17.842 46.945 18.143L46.945 18.995Q47.035 19.362 47.255 19.622Q47.476 19.881 47.808 19.881M50.214 19.288Q50.214 18.842 50.628 18.585Q51.042 18.327 51.583 18.227Q52.124 18.128 52.632 18.120Q52.632 17.905 52.498 17.753Q52.363 17.600 52.156 17.524Q51.949 17.448 51.738 17.448Q51.394 17.448 51.234 17.471L51.234 17.530Q51.234 17.698 51.115 17.813Q50.996 17.928 50.832 17.928Q50.656 17.928 50.541 17.805Q50.425 17.682 50.425 17.514Q50.425 17.108 50.806 16.999Q51.187 16.889 51.746 16.889Q52.015 16.889 52.283 16.967Q52.550 17.046 52.775 17.196Q52.999 17.346 53.136 17.567Q53.273 17.788 53.273 18.065L53.273 19.784Q53.273 19.842 53.800 19.842Q53.996 19.862 54.046 20.073L54.046 20.163Q53.996 20.378 53.800 20.401L53.656 20.401Q53.312 20.401 53.083 20.354Q52.855 20.307 52.710 20.120Q52.249 20.440 51.542 20.440Q51.207 20.440 50.902 20.299Q50.597 20.159 50.406 19.897Q50.214 19.635 50.214 19.288M50.855 19.296Q50.855 19.569 51.097 19.725Q51.339 19.881 51.624 19.881Q51.843 19.881 52.076 19.823Q52.308 19.764 52.470 19.626Q52.632 19.487 52.632 19.264L52.632 18.674Q52.351 18.674 51.935 18.731Q51.519 18.788 51.187 18.926Q50.855 19.065 50.855 19.296M54.277 20.163L54.277 20.073Q54.335 19.866 54.527 19.842L55.238 19.842L55.238 17.514L54.527 17.514Q54.332 17.491 54.277 17.272L54.277 17.186Q54.335 16.975 54.527 16.952L55.628 16.952Q55.828 16.971 55.878 17.186L55.878 17.514Q56.140 17.229 56.496 17.071Q56.851 16.913 57.238 16.913Q57.531 16.913 57.765 17.047Q57.999 17.182 57.999 17.448Q57.999 17.616 57.890 17.733Q57.781 17.850 57.613 17.850Q57.460 17.850 57.345 17.739Q57.230 17.628 57.230 17.471Q56.855 17.471 56.541 17.672Q56.226 17.874 56.052 18.208Q55.878 18.542 55.878 18.921L55.878 19.842L56.824 19.842Q57.031 19.866 57.070 20.073L57.070 20.163Q57.031 20.378 56.824 20.401L54.527 20.401Q54.335 20.378 54.277 20.163M59.499 19.296L59.499 17.514L58.749 17.514Q58.550 17.491 58.499 17.272L58.499 17.186Q58.550 16.975 58.749 16.952L59.499 16.952L59.499 16.202Q59.550 15.995 59.749 15.967L59.894 15.967Q60.089 15.995 60.140 16.202L60.140 16.952L61.499 16.952Q61.691 16.971 61.749 17.186L61.749 17.272Q61.695 17.491 61.499 17.514L60.140 17.514L60.140 19.264Q60.140 19.881 60.714 19.881Q60.964 19.881 61.128 19.696Q61.292 19.510 61.292 19.264Q61.292 19.171 61.365 19.100Q61.437 19.030 61.539 19.018L61.683 19.018Q61.882 19.042 61.933 19.249L61.933 19.296Q61.933 19.620 61.749 19.883Q61.566 20.147 61.273 20.294Q60.980 20.440 60.660 20.440Q60.148 20.440 59.824 20.130Q59.499 19.819 59.499 19.296M63.132 20.202L63.132 19.288Q63.160 19.081 63.371 19.057L63.539 19.057Q63.703 19.081 63.761 19.241Q63.964 19.881 64.691 19.881Q64.898 19.881 65.126 19.846Q65.355 19.811 65.523 19.696Q65.691 19.581 65.691 19.378Q65.691 19.167 65.468 19.053Q65.246 18.940 64.972 18.897L64.273 18.784Q63.132 18.573 63.132 17.850Q63.132 17.561 63.277 17.372Q63.421 17.182 63.662 17.075Q63.902 16.967 64.158 16.928Q64.414 16.889 64.691 16.889Q64.941 16.889 65.134 16.919Q65.328 16.948 65.492 17.026Q65.570 16.909 65.699 16.889L65.777 16.889Q65.874 16.901 65.937 16.963Q65.999 17.026 66.011 17.120L66.011 17.827Q65.999 17.921 65.937 17.987Q65.874 18.053 65.777 18.065L65.609 18.065Q65.515 18.053 65.449 17.987Q65.382 17.921 65.371 17.827Q65.371 17.448 64.675 17.448Q64.328 17.448 64.009 17.530Q63.691 17.612 63.691 17.858Q63.691 18.124 64.363 18.233L65.066 18.354Q65.550 18.436 65.900 18.684Q66.249 18.932 66.249 19.378Q66.249 19.768 66.013 20.010Q65.777 20.253 65.427 20.346Q65.078 20.440 64.691 20.440Q64.113 20.440 63.714 20.186Q63.644 20.311 63.595 20.368Q63.546 20.424 63.441 20.440L63.371 20.440Q63.156 20.417 63.132 20.202\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.19 -37.62)\">\u003Cpath d=\"M46.121 18.674Q46.121 18.194 46.365 17.780Q46.609 17.366 47.025 17.128Q47.441 16.889 47.921 16.889Q48.476 16.889 48.855 16.999Q49.234 17.108 49.234 17.514Q49.234 17.682 49.121 17.805Q49.007 17.928 48.835 17.928Q48.664 17.928 48.544 17.813Q48.425 17.698 48.425 17.530L48.425 17.471Q48.265 17.448 47.929 17.448Q47.601 17.448 47.333 17.618Q47.066 17.788 46.914 18.071Q46.761 18.354 46.761 18.674Q46.761 18.995 46.933 19.276Q47.105 19.557 47.390 19.719Q47.675 19.881 48.003 19.881Q48.316 19.881 48.443 19.778Q48.570 19.674 48.687 19.485Q48.804 19.296 48.921 19.280L49.089 19.280Q49.195 19.292 49.259 19.360Q49.324 19.428 49.324 19.530Q49.324 19.577 49.304 19.616Q49.195 19.909 48.992 20.088Q48.789 20.268 48.513 20.354Q48.238 20.440 47.921 20.440Q47.437 20.440 47.021 20.202Q46.605 19.963 46.363 19.561Q46.121 19.159 46.121 18.674M51.929 20.440Q51.457 20.440 51.072 20.196Q50.687 19.952 50.464 19.542Q50.242 19.131 50.242 18.674Q50.242 18.331 50.367 18.008Q50.492 17.686 50.722 17.432Q50.953 17.178 51.259 17.034Q51.566 16.889 51.929 16.889Q52.292 16.889 52.605 17.036Q52.917 17.182 53.140 17.428Q53.363 17.674 53.490 17.995Q53.617 18.315 53.617 18.674Q53.617 19.131 53.392 19.544Q53.167 19.956 52.783 20.198Q52.398 20.440 51.929 20.440M51.929 19.881Q52.394 19.881 52.685 19.487Q52.976 19.092 52.976 18.608Q52.976 18.315 52.841 18.047Q52.707 17.780 52.466 17.614Q52.226 17.448 51.929 17.448Q51.624 17.448 51.386 17.614Q51.148 17.780 51.013 18.047Q50.878 18.315 50.878 18.608Q50.878 19.088 51.171 19.485Q51.464 19.881 51.929 19.881M54.124 20.163L54.124 20.073Q54.167 19.866 54.374 19.842L54.796 19.842L54.796 17.514L54.374 17.514Q54.167 17.491 54.124 17.272L54.124 17.186Q54.171 16.975 54.374 16.952L55.191 16.952Q55.386 16.975 55.437 17.186L55.437 17.272L55.429 17.296Q55.656 17.116 55.929 17.014Q56.203 16.913 56.496 16.913Q56.843 16.913 57.082 17.053Q57.320 17.194 57.435 17.452Q57.550 17.710 57.550 18.065L57.550 19.842L57.976 19.842Q58.183 19.866 58.222 20.073L58.222 20.163Q58.183 20.378 57.976 20.401L56.582 20.401Q56.386 20.378 56.335 20.163L56.335 20.073Q56.386 19.862 56.582 19.842L56.910 19.842L56.910 18.096Q56.910 17.788 56.820 17.630Q56.730 17.471 56.437 17.471Q56.167 17.471 55.939 17.602Q55.710 17.733 55.574 17.962Q55.437 18.190 55.437 18.456L55.437 19.842L55.863 19.842Q56.070 19.866 56.109 20.073L56.109 20.163Q56.070 20.378 55.863 20.401L54.374 20.401Q54.167 20.378 54.124 20.163M59.499 19.296L59.499 17.514L58.749 17.514Q58.550 17.491 58.499 17.272L58.499 17.186Q58.550 16.975 58.749 16.952L59.499 16.952L59.499 16.202Q59.550 15.995 59.749 15.967L59.894 15.967Q60.089 15.995 60.140 16.202L60.140 16.952L61.499 16.952Q61.691 16.971 61.749 17.186L61.749 17.272Q61.695 17.491 61.499 17.514L60.140 17.514L60.140 19.264Q60.140 19.881 60.714 19.881Q60.964 19.881 61.128 19.696Q61.292 19.510 61.292 19.264Q61.292 19.171 61.365 19.100Q61.437 19.030 61.539 19.018L61.683 19.018Q61.882 19.042 61.933 19.249L61.933 19.296Q61.933 19.620 61.749 19.883Q61.566 20.147 61.273 20.294Q60.980 20.440 60.660 20.440Q60.148 20.440 59.824 20.130Q59.499 19.819 59.499 19.296M62.769 20.163L62.769 20.073Q62.828 19.866 63.019 19.842L63.730 19.842L63.730 17.514L63.019 17.514Q62.824 17.491 62.769 17.272L62.769 17.186Q62.828 16.975 63.019 16.952L64.121 16.952Q64.320 16.971 64.371 17.186L64.371 17.514Q64.632 17.229 64.988 17.071Q65.343 16.913 65.730 16.913Q66.023 16.913 66.257 17.047Q66.492 17.182 66.492 17.448Q66.492 17.616 66.382 17.733Q66.273 17.850 66.105 17.850Q65.953 17.850 65.837 17.739Q65.722 17.628 65.722 17.471Q65.347 17.471 65.033 17.672Q64.718 17.874 64.544 18.208Q64.371 18.542 64.371 18.921L64.371 19.842L65.316 19.842Q65.523 19.866 65.562 20.073L65.562 20.163Q65.523 20.378 65.316 20.401L63.019 20.401Q62.828 20.378 62.769 20.163M67.199 19.288Q67.199 18.842 67.613 18.585Q68.027 18.327 68.568 18.227Q69.109 18.128 69.617 18.120Q69.617 17.905 69.482 17.753Q69.347 17.600 69.140 17.524Q68.933 17.448 68.722 17.448Q68.378 17.448 68.218 17.471L68.218 17.530Q68.218 17.698 68.099 17.813Q67.980 17.928 67.816 17.928Q67.640 17.928 67.525 17.805Q67.410 17.682 67.410 17.514Q67.410 17.108 67.791 16.999Q68.171 16.889 68.730 16.889Q68.999 16.889 69.267 16.967Q69.535 17.046 69.759 17.196Q69.984 17.346 70.121 17.567Q70.257 17.788 70.257 18.065L70.257 19.784Q70.257 19.842 70.785 19.842Q70.980 19.862 71.031 20.073L71.031 20.163Q70.980 20.378 70.785 20.401L70.640 20.401Q70.296 20.401 70.068 20.354Q69.839 20.307 69.695 20.120Q69.234 20.440 68.527 20.440Q68.191 20.440 67.886 20.299Q67.582 20.159 67.390 19.897Q67.199 19.635 67.199 19.288M67.839 19.296Q67.839 19.569 68.082 19.725Q68.324 19.881 68.609 19.881Q68.828 19.881 69.060 19.823Q69.292 19.764 69.455 19.626Q69.617 19.487 69.617 19.264L69.617 18.674Q69.335 18.674 68.919 18.731Q68.503 18.788 68.171 18.926Q67.839 19.065 67.839 19.296M71.597 18.674Q71.597 18.194 71.841 17.780Q72.085 17.366 72.501 17.128Q72.917 16.889 73.398 16.889Q73.953 16.889 74.332 16.999Q74.710 17.108 74.710 17.514Q74.710 17.682 74.597 17.805Q74.484 17.928 74.312 17.928Q74.140 17.928 74.021 17.813Q73.902 17.698 73.902 17.530L73.902 17.471Q73.742 17.448 73.406 17.448Q73.078 17.448 72.810 17.618Q72.542 17.788 72.390 18.071Q72.238 18.354 72.238 18.674Q72.238 18.995 72.410 19.276Q72.582 19.557 72.867 19.719Q73.152 19.881 73.480 19.881Q73.792 19.881 73.919 19.778Q74.046 19.674 74.164 19.485Q74.281 19.296 74.398 19.280L74.566 19.280Q74.671 19.292 74.736 19.360Q74.800 19.428 74.800 19.530Q74.800 19.577 74.781 19.616Q74.671 19.909 74.468 20.088Q74.265 20.268 73.990 20.354Q73.714 20.440 73.398 20.440Q72.914 20.440 72.498 20.202Q72.082 19.963 71.839 19.561Q71.597 19.159 71.597 18.674M76.484 19.296L76.484 17.514L75.734 17.514Q75.535 17.491 75.484 17.272L75.484 17.186Q75.535 16.975 75.734 16.952L76.484 16.952L76.484 16.202Q76.535 15.995 76.734 15.967L76.878 15.967Q77.074 15.995 77.124 16.202L77.124 16.952L78.484 16.952Q78.675 16.971 78.734 17.186L78.734 17.272Q78.679 17.491 78.484 17.514L77.124 17.514L77.124 19.264Q77.124 19.881 77.699 19.881Q77.949 19.881 78.113 19.696Q78.277 19.510 78.277 19.264Q78.277 19.171 78.349 19.100Q78.421 19.030 78.523 19.018L78.667 19.018Q78.867 19.042 78.917 19.249L78.917 19.296Q78.917 19.620 78.734 19.883Q78.550 20.147 78.257 20.294Q77.964 20.440 77.644 20.440Q77.132 20.440 76.808 20.130Q76.484 19.819 76.484 19.296M80.117 20.202L80.117 19.288Q80.144 19.081 80.355 19.057L80.523 19.057Q80.687 19.081 80.746 19.241Q80.949 19.881 81.675 19.881Q81.882 19.881 82.111 19.846Q82.339 19.811 82.507 19.696Q82.675 19.581 82.675 19.378Q82.675 19.167 82.453 19.053Q82.230 18.940 81.957 18.897L81.257 18.784Q80.117 18.573 80.117 17.850Q80.117 17.561 80.261 17.372Q80.406 17.182 80.646 17.075Q80.886 16.967 81.142 16.928Q81.398 16.889 81.675 16.889Q81.925 16.889 82.119 16.919Q82.312 16.948 82.476 17.026Q82.554 16.909 82.683 16.889L82.761 16.889Q82.859 16.901 82.921 16.963Q82.984 17.026 82.996 17.120L82.996 17.827Q82.984 17.921 82.921 17.987Q82.859 18.053 82.761 18.065L82.593 18.065Q82.499 18.053 82.433 17.987Q82.367 17.921 82.355 17.827Q82.355 17.448 81.660 17.448Q81.312 17.448 80.994 17.530Q80.675 17.612 80.675 17.858Q80.675 18.124 81.347 18.233L82.050 18.354Q82.535 18.436 82.884 18.684Q83.234 18.932 83.234 19.378Q83.234 19.768 82.998 20.010Q82.761 20.253 82.412 20.346Q82.062 20.440 81.675 20.440Q81.097 20.440 80.699 20.186Q80.628 20.311 80.580 20.368Q80.531 20.424 80.425 20.440L80.355 20.440Q80.140 20.417 80.117 20.202\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(120.19 -77.223)\">\u003Cpath d=\"M46.570 20.178L46.105 17.514L45.945 17.514Q45.738 17.491 45.699 17.272L45.699 17.186Q45.738 16.975 45.945 16.952L47.113 16.952Q47.324 16.975 47.363 17.186L47.363 17.272Q47.324 17.491 47.113 17.514L46.640 17.514Q46.753 18.159 46.832 18.604Q46.910 19.049 46.960 19.368Q47.011 19.686 47.011 19.760Q47.019 19.588 47.304 18.592Q47.343 18.479 47.441 18.405Q47.539 18.331 47.660 18.331L47.738 18.331Q47.859 18.331 47.957 18.405Q48.054 18.479 48.089 18.592Q48.199 18.975 48.281 19.299Q48.363 19.624 48.363 19.760Q48.374 19.471 48.722 17.514L48.249 17.514Q48.042 17.491 48.003 17.272L48.003 17.186Q48.042 16.975 48.249 16.952L49.425 16.952Q49.617 16.975 49.675 17.186L49.675 17.272Q49.621 17.491 49.425 17.514L49.257 17.514L48.792 20.178Q48.769 20.296 48.681 20.368Q48.593 20.440 48.472 20.440L48.332 20.440Q48.210 20.440 48.115 20.368Q48.019 20.296 47.976 20.178Q47.929 19.999 47.857 19.743Q47.785 19.487 47.742 19.278Q47.699 19.069 47.699 18.967Q47.691 19.249 47.410 20.178Q47.382 20.288 47.285 20.364Q47.187 20.440 47.066 20.440L46.890 20.440Q46.769 20.440 46.681 20.368Q46.593 20.296 46.570 20.178M49.878 20.163L49.878 20.073Q49.921 19.866 50.128 19.842L50.550 19.842L50.550 16.073L50.128 16.073Q49.921 16.049 49.878 15.835L49.878 15.745Q49.921 15.538 50.128 15.514L50.945 15.514Q51.140 15.538 51.191 15.745L51.191 17.296Q51.652 16.913 52.249 16.913Q52.597 16.913 52.835 17.053Q53.074 17.194 53.189 17.452Q53.304 17.710 53.304 18.065L53.304 19.842L53.730 19.842Q53.937 19.866 53.976 20.073L53.976 20.163Q53.937 20.378 53.730 20.401L52.335 20.401Q52.140 20.378 52.089 20.163L52.089 20.073Q52.140 19.862 52.335 19.842L52.664 19.842L52.664 18.096Q52.664 17.788 52.574 17.630Q52.484 17.471 52.191 17.471Q51.921 17.471 51.693 17.602Q51.464 17.733 51.328 17.962Q51.191 18.190 51.191 18.456L51.191 19.842L51.617 19.842Q51.824 19.866 51.863 20.073L51.863 20.163Q51.824 20.378 51.617 20.401L50.128 20.401Q49.921 20.378 49.878 20.163M56.175 20.440Q55.703 20.440 55.318 20.196Q54.933 19.952 54.710 19.542Q54.488 19.131 54.488 18.674Q54.488 18.331 54.613 18.008Q54.738 17.686 54.968 17.432Q55.199 17.178 55.505 17.034Q55.812 16.889 56.175 16.889Q56.539 16.889 56.851 17.036Q57.164 17.182 57.386 17.428Q57.609 17.674 57.736 17.995Q57.863 18.315 57.863 18.674Q57.863 19.131 57.638 19.544Q57.414 19.956 57.029 20.198Q56.644 20.440 56.175 20.440M56.175 19.881Q56.640 19.881 56.931 19.487Q57.222 19.092 57.222 18.608Q57.222 18.315 57.087 18.047Q56.953 17.780 56.712 17.614Q56.472 17.448 56.175 17.448Q55.871 17.448 55.632 17.614Q55.394 17.780 55.259 18.047Q55.124 18.315 55.124 18.608Q55.124 19.088 55.417 19.485Q55.710 19.881 56.175 19.881M58.749 20.163L58.749 20.073Q58.800 19.866 58.996 19.842L60.101 19.842L60.101 16.073L58.996 16.073Q58.800 16.049 58.749 15.835L58.749 15.745Q58.800 15.538 58.996 15.514L60.492 15.514Q60.683 15.538 60.742 15.745L60.742 19.842L61.843 19.842Q62.042 19.866 62.093 20.073L62.093 20.163Q62.042 20.378 61.843 20.401L58.996 20.401Q58.800 20.378 58.749 20.163M66.058 18.913L63.617 18.913Q63.671 19.190 63.869 19.413Q64.066 19.635 64.343 19.758Q64.621 19.881 64.906 19.881Q65.378 19.881 65.601 19.592Q65.609 19.581 65.666 19.475Q65.722 19.370 65.771 19.327Q65.820 19.284 65.914 19.272L66.058 19.272Q66.249 19.292 66.308 19.506L66.308 19.561Q66.242 19.862 66.011 20.059Q65.781 20.256 65.468 20.348Q65.156 20.440 64.851 20.440Q64.367 20.440 63.927 20.212Q63.488 19.983 63.220 19.583Q62.953 19.182 62.953 18.690L62.953 18.631Q62.953 18.163 63.199 17.760Q63.445 17.358 63.853 17.124Q64.261 16.889 64.730 16.889Q65.234 16.889 65.587 17.112Q65.941 17.335 66.124 17.723Q66.308 18.112 66.308 18.616L66.308 18.674Q66.249 18.889 66.058 18.913M63.624 18.362L65.652 18.362Q65.605 17.952 65.367 17.700Q65.128 17.448 64.730 17.448Q64.335 17.448 64.029 17.710Q63.722 17.971 63.624 18.362\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(120.19 -77.223)\">\u003Cpath d=\"M71.008 20.163L71.008 20.073Q71.059 19.862 71.254 19.842L71.454 19.842L71.454 17.514L71.254 17.514Q71.047 17.491 71.008 17.272L71.008 17.186Q71.059 16.971 71.254 16.952L71.735 16.952Q71.926 16.975 71.985 17.186Q72.305 16.913 72.719 16.913Q72.911 16.913 73.079 17.022Q73.247 17.131 73.321 17.303Q73.497 17.112 73.719 17.012Q73.942 16.913 74.184 16.913Q74.602 16.913 74.756 17.255Q74.911 17.596 74.911 18.065L74.911 19.842L75.110 19.842Q75.321 19.866 75.360 20.073L75.360 20.163Q75.309 20.378 75.110 20.401L74.293 20.401Q74.098 20.378 74.047 20.163L74.047 20.073Q74.098 19.866 74.293 19.842L74.383 19.842L74.383 18.096Q74.383 17.471 74.133 17.471Q73.801 17.471 73.624 17.782Q73.446 18.092 73.446 18.456L73.446 19.842L73.649 19.842Q73.856 19.866 73.895 20.073L73.895 20.163Q73.844 20.378 73.649 20.401L72.833 20.401Q72.633 20.378 72.583 20.163L72.583 20.073Q72.633 19.866 72.833 19.842L72.918 19.842L72.918 18.096Q72.918 17.471 72.672 17.471Q72.340 17.471 72.163 17.784Q71.985 18.096 71.985 18.456L71.985 19.842L72.184 19.842Q72.391 19.866 72.430 20.073L72.430 20.163Q72.379 20.381 72.184 20.401L71.254 20.401Q71.047 20.378 71.008 20.163M75.715 19.288Q75.715 18.842 76.129 18.585Q76.543 18.327 77.084 18.227Q77.626 18.128 78.133 18.120Q78.133 17.905 77.999 17.753Q77.864 17.600 77.657 17.524Q77.450 17.448 77.239 17.448Q76.895 17.448 76.735 17.471L76.735 17.530Q76.735 17.698 76.616 17.813Q76.497 17.928 76.333 17.928Q76.157 17.928 76.042 17.805Q75.926 17.682 75.926 17.514Q75.926 17.108 76.307 16.999Q76.688 16.889 77.247 16.889Q77.516 16.889 77.784 16.967Q78.051 17.046 78.276 17.196Q78.501 17.346 78.637 17.567Q78.774 17.788 78.774 18.065L78.774 19.784Q78.774 19.842 79.301 19.842Q79.497 19.862 79.547 20.073L79.547 20.163Q79.497 20.378 79.301 20.401L79.157 20.401Q78.813 20.401 78.584 20.354Q78.356 20.307 78.211 20.120Q77.751 20.440 77.043 20.440Q76.708 20.440 76.403 20.299Q76.098 20.159 75.907 19.897Q75.715 19.635 75.715 19.288M76.356 19.296Q76.356 19.569 76.598 19.725Q76.840 19.881 77.126 19.881Q77.344 19.881 77.577 19.823Q77.809 19.764 77.971 19.626Q78.133 19.487 78.133 19.264L78.133 18.674Q77.852 18.674 77.436 18.731Q77.020 18.788 76.688 18.926Q76.356 19.065 76.356 19.296M80.114 18.674Q80.114 18.194 80.358 17.780Q80.602 17.366 81.018 17.128Q81.434 16.889 81.915 16.889Q82.469 16.889 82.848 16.999Q83.227 17.108 83.227 17.514Q83.227 17.682 83.114 17.805Q83.001 17.928 82.829 17.928Q82.657 17.928 82.538 17.813Q82.418 17.698 82.418 17.530L82.418 17.471Q82.258 17.448 81.922 17.448Q81.594 17.448 81.327 17.618Q81.059 17.788 80.907 18.071Q80.754 18.354 80.754 18.674Q80.754 18.995 80.926 19.276Q81.098 19.557 81.383 19.719Q81.668 19.881 81.997 19.881Q82.309 19.881 82.436 19.778Q82.563 19.674 82.680 19.485Q82.797 19.296 82.915 19.280L83.083 19.280Q83.188 19.292 83.252 19.360Q83.317 19.428 83.317 19.530Q83.317 19.577 83.297 19.616Q83.188 19.909 82.985 20.088Q82.782 20.268 82.506 20.354Q82.231 20.440 81.915 20.440Q81.430 20.440 81.014 20.202Q80.598 19.963 80.356 19.561Q80.114 19.159 80.114 18.674M83.872 20.163L83.872 20.073Q83.915 19.866 84.122 19.842L84.543 19.842L84.543 16.073L84.122 16.073Q83.915 16.049 83.872 15.835L83.872 15.745Q83.915 15.538 84.122 15.514L84.938 15.514Q85.133 15.538 85.184 15.745L85.184 17.296Q85.645 16.913 86.243 16.913Q86.590 16.913 86.829 17.053Q87.067 17.194 87.182 17.452Q87.297 17.710 87.297 18.065L87.297 19.842L87.723 19.842Q87.930 19.866 87.969 20.073L87.969 20.163Q87.930 20.378 87.723 20.401L86.329 20.401Q86.133 20.378 86.083 20.163L86.083 20.073Q86.133 19.862 86.329 19.842L86.657 19.842L86.657 18.096Q86.657 17.788 86.567 17.630Q86.477 17.471 86.184 17.471Q85.915 17.471 85.686 17.602Q85.458 17.733 85.321 17.962Q85.184 18.190 85.184 18.456L85.184 19.842L85.610 19.842Q85.817 19.866 85.856 20.073L85.856 20.163Q85.817 20.378 85.610 20.401L84.122 20.401Q83.915 20.378 83.872 20.163M88.665 20.163L88.665 20.073Q88.715 19.866 88.911 19.842L89.950 19.842L89.950 17.514L88.977 17.514Q88.778 17.491 88.727 17.272L88.727 17.186Q88.778 16.975 88.977 16.952L90.344 16.952Q90.540 16.971 90.590 17.186L90.590 19.842L91.504 19.842Q91.700 19.866 91.751 20.073L91.751 20.163Q91.700 20.378 91.504 20.401L88.911 20.401Q88.715 20.378 88.665 20.163M89.696 15.975L89.696 15.921Q89.696 15.749 89.833 15.628Q89.969 15.506 90.145 15.506Q90.317 15.506 90.454 15.628Q90.590 15.749 90.590 15.921L90.590 15.975Q90.590 16.151 90.454 16.272Q90.317 16.393 90.145 16.393Q89.969 16.393 89.833 16.272Q89.696 16.151 89.696 15.975M92.364 20.163L92.364 20.073Q92.407 19.866 92.614 19.842L93.036 19.842L93.036 17.514L92.614 17.514Q92.407 17.491 92.364 17.272L92.364 17.186Q92.411 16.975 92.614 16.952L93.430 16.952Q93.626 16.975 93.676 17.186L93.676 17.272L93.668 17.296Q93.895 17.116 94.168 17.014Q94.442 16.913 94.735 16.913Q95.083 16.913 95.321 17.053Q95.559 17.194 95.674 17.452Q95.790 17.710 95.790 18.065L95.790 19.842L96.215 19.842Q96.422 19.866 96.461 20.073L96.461 20.163Q96.422 20.378 96.215 20.401L94.821 20.401Q94.626 20.378 94.575 20.163L94.575 20.073Q94.626 19.862 94.821 19.842L95.149 19.842L95.149 18.096Q95.149 17.788 95.059 17.630Q94.969 17.471 94.676 17.471Q94.407 17.471 94.178 17.602Q93.950 17.733 93.813 17.962Q93.676 18.190 93.676 18.456L93.676 19.842L94.102 19.842Q94.309 19.866 94.348 20.073L94.348 20.163Q94.309 20.378 94.102 20.401L92.614 20.401Q92.407 20.378 92.364 20.163M100.051 18.913L97.610 18.913Q97.665 19.190 97.862 19.413Q98.059 19.635 98.336 19.758Q98.614 19.881 98.899 19.881Q99.372 19.881 99.594 19.592Q99.602 19.581 99.659 19.475Q99.715 19.370 99.764 19.327Q99.813 19.284 99.907 19.272L100.051 19.272Q100.243 19.292 100.301 19.506L100.301 19.561Q100.235 19.862 100.004 20.059Q99.774 20.256 99.461 20.348Q99.149 20.440 98.844 20.440Q98.360 20.440 97.920 20.212Q97.481 19.983 97.213 19.583Q96.946 19.182 96.946 18.690L96.946 18.631Q96.946 18.163 97.192 17.760Q97.438 17.358 97.846 17.124Q98.254 16.889 98.723 16.889Q99.227 16.889 99.581 17.112Q99.934 17.335 100.118 17.723Q100.301 18.112 100.301 18.616L100.301 18.674Q100.243 18.889 100.051 18.913M97.618 18.362L99.645 18.362Q99.598 17.952 99.360 17.700Q99.122 17.448 98.723 17.448Q98.329 17.448 98.022 17.710Q97.715 17.971 97.618 18.362\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The validation ladder. Unit tests check each part against its own spec; the control table and per-instruction programs check the contracts, with the ISA-level simulator as the golden model; integration runs whole programs and compares complete state traces.\u003C\u002Ffigcaption>","\u003Csvg style=\"width:100%;max-width:407.523px;height:auto\" xmlns=\"http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg\" viewBox=\"-75 -75 305.642 155.777\">\u003Cg stroke=\"currentColor\" style=\"stroke-miterlimit:10;stroke-width:.4\">\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M-43.13-46.463H42.23V-72.07h-85.358Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(12.644 -92.518)\">\u003Cpath d=\"M-24.903 28.084Q-24.903 27.490-24.671 26.959Q-24.439 26.427-24.022 26.027Q-23.606 25.627-23.073 25.406Q-22.540 25.185-21.935 25.185Q-21.497 25.185-21.099 25.367Q-20.700 25.548-20.392 25.881L-19.919 25.216Q-19.888 25.185-19.856 25.185L-19.810 25.185Q-19.782 25.185-19.751 25.216Q-19.720 25.248-19.720 25.275L-19.720 27.412Q-19.720 27.435-19.751 27.466Q-19.782 27.498-19.810 27.498L-19.927 27.498Q-19.954 27.498-19.985 27.466Q-20.017 27.435-20.017 27.412Q-20.017 27.146-20.159 26.793Q-20.302 26.439-20.481 26.201Q-20.735 25.869-21.085 25.675Q-21.435 25.482-21.841 25.482Q-22.345 25.482-22.798 25.701Q-23.251 25.920-23.544 26.314Q-24.040 26.982-24.040 28.084Q-24.040 28.615-23.903 29.082Q-23.767 29.548-23.491 29.914Q-23.216 30.279-22.796 30.484Q-22.376 30.689-21.833 30.689Q-21.345 30.689-20.921 30.445Q-20.497 30.201-20.249 29.781Q-20.001 29.361-20.001 28.865Q-20.001 28.830-19.972 28.804Q-19.942 28.779-19.911 28.779L-19.810 28.779Q-19.767 28.779-19.743 28.808Q-19.720 28.838-19.720 28.881Q-19.720 29.318-19.896 29.707Q-20.071 30.095-20.382 30.379Q-20.692 30.662-21.103 30.824Q-21.513 30.986-21.935 30.986Q-22.524 30.986-23.065 30.765Q-23.606 30.545-24.022 30.140Q-24.439 29.736-24.671 29.207Q-24.903 28.677-24.903 28.084M-19.001 29.123Q-19.001 28.619-18.745 28.187Q-18.489 27.756-18.054 27.504Q-17.618 27.252-17.118 27.252Q-16.731 27.252-16.390 27.396Q-16.048 27.541-15.786 27.802Q-15.524 28.064-15.382 28.400Q-15.239 28.736-15.239 29.123Q-15.239 29.615-15.503 30.025Q-15.767 30.435-16.196 30.666Q-16.626 30.896-17.118 30.896Q-17.610 30.896-18.044 30.664Q-18.478 30.431-18.739 30.023Q-19.001 29.615-19.001 29.123M-17.118 30.619Q-16.661 30.619-16.409 30.396Q-16.157 30.173-16.069 29.822Q-15.981 29.470-15.981 29.025Q-15.981 28.595-16.075 28.257Q-16.169 27.920-16.423 27.713Q-16.677 27.506-17.118 27.506Q-17.767 27.506-18.011 27.922Q-18.255 28.338-18.255 29.025Q-18.255 29.470-18.167 29.822Q-18.079 30.173-17.827 30.396Q-17.575 30.619-17.118 30.619M-12.747 30.818L-14.728 30.818L-14.728 30.521Q-14.458 30.521-14.290 30.476Q-14.122 30.431-14.122 30.259L-14.122 28.123Q-14.122 27.908-14.185 27.812Q-14.247 27.716-14.364 27.695Q-14.481 27.673-14.728 27.673L-14.728 27.377L-13.560 27.291L-13.560 28.076Q-13.481 27.865-13.329 27.679Q-13.177 27.494-12.978 27.392Q-12.778 27.291-12.552 27.291Q-12.306 27.291-12.114 27.435Q-11.923 27.580-11.923 27.810Q-11.923 27.966-12.028 28.076Q-12.134 28.185-12.290 28.185Q-12.446 28.185-12.556 28.076Q-12.665 27.966-12.665 27.810Q-12.665 27.650-12.560 27.545Q-12.884 27.545-13.099 27.773Q-13.314 28.002-13.409 28.341Q-13.505 28.681-13.505 28.986L-13.505 30.259Q-13.505 30.427-13.278 30.474Q-13.052 30.521-12.747 30.521L-12.747 30.818M-11.442 29.064Q-11.442 28.584-11.210 28.168Q-10.978 27.752-10.567 27.502Q-10.157 27.252-9.681 27.252Q-8.950 27.252-8.552 27.693Q-8.153 28.134-8.153 28.865Q-8.153 28.970-8.247 28.994L-10.696 28.994L-10.696 29.064Q-10.696 29.474-10.575 29.830Q-10.454 30.185-10.183 30.402Q-9.911 30.619-9.481 30.619Q-9.118 30.619-8.821 30.390Q-8.524 30.162-8.423 29.810Q-8.415 29.763-8.329 29.748L-8.247 29.748Q-8.153 29.775-8.153 29.857Q-8.153 29.865-8.161 29.896Q-8.224 30.123-8.362 30.306Q-8.501 30.490-8.692 30.623Q-8.884 30.756-9.103 30.826Q-9.321 30.896-9.560 30.896Q-9.931 30.896-10.269 30.759Q-10.606 30.623-10.874 30.371Q-11.142 30.119-11.292 29.779Q-11.442 29.439-11.442 29.064M-10.689 28.756L-8.728 28.756Q-8.728 28.451-8.829 28.160Q-8.931 27.869-9.147 27.687Q-9.364 27.506-9.681 27.506Q-9.981 27.506-10.212 27.693Q-10.442 27.881-10.565 28.172Q-10.689 28.463-10.689 28.756\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.644 -92.518)\">\u003Cpath d=\"M-2.942 30.986Q-3.645 30.986-4.045 30.586Q-4.446 30.185-4.590 29.576Q-4.735 28.966-4.735 28.267Q-4.735 27.744-4.665 27.281Q-4.594 26.818-4.401 26.406Q-4.208 25.994-3.850 25.746Q-3.493 25.498-2.942 25.498Q-2.391 25.498-2.034 25.746Q-1.676 25.994-1.485 26.404Q-1.293 26.814-1.223 27.283Q-1.153 27.752-1.153 28.267Q-1.153 28.966-1.295 29.574Q-1.438 30.181-1.838 30.584Q-2.239 30.986-2.942 30.986M-2.942 30.728Q-2.469 30.728-2.237 30.293Q-2.004 29.857-1.950 29.318Q-1.895 28.779-1.895 28.138Q-1.895 27.142-2.079 26.449Q-2.262 25.756-2.942 25.756Q-3.309 25.756-3.530 25.994Q-3.750 26.232-3.846 26.589Q-3.942 26.947-3.967 27.318Q-3.993 27.689-3.993 28.138Q-3.993 28.779-3.938 29.318Q-3.883 29.857-3.651 30.293Q-3.418 30.728-2.942 30.728\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.644 -92.518)\">\u003Cpath d=\"M-40.008 38.502L-42.481 38.502Q-42.559 38.490-42.608 38.441Q-42.656 38.392-42.656 38.318Q-42.656 38.244-42.608 38.195Q-42.559 38.146-42.481 38.134L-40.008 38.134L-40.008 35.654Q-39.981 35.486-39.824 35.486Q-39.750 35.486-39.701 35.535Q-39.652 35.584-39.641 35.654L-39.641 38.134L-37.168 38.134Q-37 38.166-37 38.318Q-37 38.470-37.168 38.502L-39.641 38.502L-39.641 40.982Q-39.652 41.052-39.701 41.101Q-39.750 41.150-39.824 41.150Q-39.981 41.150-40.008 40.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.644 -92.518)\">\u003Cpath d=\"M-33.349 39.486Q-33.349 39.002-32.947 38.707Q-32.544 38.412-31.994 38.293Q-31.443 38.173-30.951 38.173L-30.951 37.884Q-30.951 37.658-31.066 37.451Q-31.181 37.244-31.378 37.125Q-31.576 37.005-31.806 37.005Q-32.232 37.005-32.517 37.111Q-32.447 37.138-32.400 37.193Q-32.353 37.248-32.328 37.318Q-32.302 37.388-32.302 37.463Q-32.302 37.568-32.353 37.660Q-32.404 37.752-32.496 37.802Q-32.587 37.853-32.693 37.853Q-32.798 37.853-32.890 37.802Q-32.982 37.752-33.033 37.660Q-33.083 37.568-33.083 37.463Q-33.083 37.045-32.695 36.898Q-32.306 36.752-31.806 36.752Q-31.474 36.752-31.121 36.882Q-30.767 37.013-30.539 37.267Q-30.310 37.521-30.310 37.869L-30.310 39.670Q-30.310 39.802-30.238 39.912Q-30.165 40.021-30.037 40.021Q-29.912 40.021-29.843 39.916Q-29.775 39.810-29.775 39.670L-29.775 39.158L-29.494 39.158L-29.494 39.670Q-29.494 39.873-29.611 40.031Q-29.728 40.189-29.910 40.273Q-30.091 40.357-30.294 40.357Q-30.525 40.357-30.677 40.185Q-30.830 40.013-30.861 39.783Q-31.021 40.064-31.330 40.230Q-31.638 40.396-31.990 40.396Q-32.501 40.396-32.925 40.173Q-33.349 39.951-33.349 39.486M-32.662 39.486Q-32.662 39.771-32.435 39.957Q-32.208 40.142-31.915 40.142Q-31.669 40.142-31.445 40.025Q-31.220 39.908-31.085 39.705Q-30.951 39.502-30.951 39.248L-30.951 38.416Q-31.216 38.416-31.501 38.470Q-31.787 38.525-32.058 38.654Q-32.330 38.783-32.496 38.990Q-32.662 39.197-32.662 39.486M-28.576 39.357L-28.576 37.166L-29.279 37.166L-29.279 36.912Q-28.923 36.912-28.681 36.679Q-28.439 36.447-28.328 36.099Q-28.216 35.752-28.216 35.396L-27.935 35.396L-27.935 36.869L-26.759 36.869L-26.759 37.166L-27.935 37.166L-27.935 39.341Q-27.935 39.662-27.816 39.890Q-27.697 40.119-27.415 40.119Q-27.236 40.119-27.119 39.996Q-27.001 39.873-26.949 39.693Q-26.896 39.513-26.896 39.341L-26.896 38.869L-26.615 38.869L-26.615 39.357Q-26.615 39.611-26.720 39.851Q-26.826 40.091-27.023 40.244Q-27.220 40.396-27.478 40.396Q-27.794 40.396-28.046 40.273Q-28.298 40.150-28.437 39.916Q-28.576 39.681-28.576 39.357M-25.896 38.623Q-25.896 38.119-25.640 37.687Q-25.384 37.255-24.949 37.004Q-24.513 36.752-24.013 36.752Q-23.626 36.752-23.285 36.896Q-22.943 37.041-22.681 37.302Q-22.419 37.564-22.277 37.900Q-22.134 38.236-22.134 38.623Q-22.134 39.115-22.398 39.525Q-22.662 39.935-23.091 40.166Q-23.521 40.396-24.013 40.396Q-24.505 40.396-24.939 40.164Q-25.373 39.931-25.634 39.523Q-25.896 39.115-25.896 38.623M-24.013 40.119Q-23.556 40.119-23.304 39.896Q-23.052 39.673-22.964 39.322Q-22.876 38.970-22.876 38.525Q-22.876 38.095-22.970 37.757Q-23.064 37.420-23.318 37.213Q-23.572 37.005-24.013 37.005Q-24.662 37.005-24.906 37.422Q-25.150 37.838-25.150 38.525Q-25.150 38.970-25.062 39.322Q-24.974 39.673-24.722 39.896Q-24.470 40.119-24.013 40.119M-19.720 40.318L-21.576 40.318L-21.576 40.021Q-21.302 40.021-21.134 39.974Q-20.966 39.927-20.966 39.759L-20.966 37.623Q-20.966 37.408-21.029 37.312Q-21.091 37.216-21.210 37.195Q-21.330 37.173-21.576 37.173L-21.576 36.877L-20.384 36.791L-20.384 37.525Q-20.271 37.310-20.078 37.142Q-19.884 36.974-19.646 36.882Q-19.408 36.791-19.154 36.791Q-18.193 36.791-18.017 37.502Q-17.833 37.173-17.505 36.982Q-17.177 36.791-16.798 36.791Q-15.623 36.791-15.623 37.869L-15.623 39.759Q-15.623 39.927-15.455 39.974Q-15.287 40.021-15.017 40.021L-15.017 40.318L-16.873 40.318L-16.873 40.021Q-16.599 40.021-16.431 39.976Q-16.263 39.931-16.263 39.759L-16.263 37.884Q-16.263 37.498-16.388 37.271Q-16.513 37.045-16.865 37.045Q-17.169 37.045-17.425 37.207Q-17.681 37.369-17.830 37.638Q-17.978 37.908-17.978 38.205L-17.978 39.759Q-17.978 39.927-17.808 39.974Q-17.638 40.021-17.369 40.021L-17.369 40.318L-19.224 40.318L-19.224 40.021Q-18.951 40.021-18.783 39.974Q-18.615 39.927-18.615 39.759L-18.615 37.884Q-18.615 37.498-18.740 37.271Q-18.865 37.045-19.216 37.045Q-19.521 37.045-19.777 37.207Q-20.033 37.369-20.181 37.638Q-20.330 37.908-20.330 38.205L-20.330 39.759Q-20.330 39.927-20.160 39.974Q-19.990 40.021-19.720 40.021L-19.720 40.318M-12.712 40.318L-14.490 40.318L-14.490 40.021Q-14.216 40.021-14.048 39.974Q-13.880 39.927-13.880 39.759L-13.880 37.623Q-13.880 37.408-13.937 37.312Q-13.994 37.216-14.107 37.195Q-14.220 37.173-14.466 37.173L-14.466 36.877L-13.267 36.791L-13.267 39.759Q-13.267 39.927-13.121 39.974Q-12.974 40.021-12.712 40.021L-12.712 40.318M-14.154 35.396Q-14.154 35.205-14.019 35.074Q-13.884 34.943-13.689 34.943Q-13.568 34.943-13.464 35.005Q-13.361 35.068-13.298 35.172Q-13.236 35.275-13.236 35.396Q-13.236 35.591-13.367 35.726Q-13.498 35.861-13.689 35.861Q-13.888 35.861-14.021 35.728Q-14.154 35.595-14.154 35.396M-12.169 38.591Q-12.169 38.095-11.919 37.670Q-11.669 37.244-11.249 36.998Q-10.830 36.752-10.330 36.752Q-9.790 36.752-9.400 36.877Q-9.009 37.002-9.009 37.416Q-9.009 37.521-9.060 37.613Q-9.111 37.705-9.203 37.755Q-9.294 37.806-9.404 37.806Q-9.509 37.806-9.601 37.755Q-9.693 37.705-9.744 37.613Q-9.794 37.521-9.794 37.416Q-9.794 37.193-9.626 37.088Q-9.849 37.029-10.322 37.029Q-10.619 37.029-10.833 37.168Q-11.048 37.306-11.179 37.537Q-11.310 37.767-11.369 38.037Q-11.427 38.306-11.427 38.591Q-11.427 38.986-11.294 39.336Q-11.162 39.685-10.890 39.902Q-10.619 40.119-10.220 40.119Q-9.845 40.119-9.570 39.902Q-9.294 39.685-9.193 39.326Q-9.177 39.263-9.115 39.263L-9.009 39.263Q-8.974 39.263-8.949 39.291Q-8.923 39.318-8.923 39.357L-8.923 39.380Q-9.056 39.861-9.441 40.129Q-9.826 40.396-10.330 40.396Q-10.693 40.396-11.027 40.259Q-11.361 40.123-11.621 39.873Q-11.880 39.623-12.025 39.287Q-12.169 38.951-12.169 38.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(12.644 -92.518)\">\u003Cpath d=\"M-3.112 40.318L-5.471 40.318L-5.471 40.021Q-5.147 40.021-4.905 39.974Q-4.663 39.927-4.663 39.759L-4.663 35.416Q-4.663 35.244-4.905 35.197Q-5.147 35.150-5.471 35.150L-5.471 34.853L-2.878 34.853Q-2.546 34.853-2.159 34.939Q-1.772 35.025-1.425 35.199Q-1.077 35.373-0.858 35.654Q-0.639 35.935-0.639 36.302Q-0.639 36.627-0.841 36.892Q-1.042 37.158-1.348 37.334Q-1.655 37.509-1.983 37.599Q-1.616 37.720-1.356 37.990Q-1.096 38.259-1.046 38.623L-0.952 39.318Q-0.882 39.767-0.784 39.998Q-0.686 40.228-0.389 40.228Q-0.143 40.228-0.011 40.011Q0.122 39.795 0.122 39.533Q0.142 39.459 0.224 39.439L0.306 39.439Q0.400 39.463 0.400 39.556Q0.400 39.787 0.302 40.002Q0.204 40.216 0.027 40.351Q-0.151 40.486-0.382 40.486Q-0.979 40.486-1.397 40.199Q-1.815 39.912-1.815 39.341L-1.815 38.646Q-1.815 38.365-1.968 38.150Q-2.120 37.935-2.370 37.822Q-2.620 37.709-2.893 37.709L-3.921 37.709L-3.921 39.759Q-3.921 39.923-3.677 39.972Q-3.432 40.021-3.112 40.021L-3.112 40.318M-3.921 35.416L-3.921 37.455L-2.991 37.455Q-2.671 37.455-2.403 37.402Q-2.136 37.349-1.936 37.222Q-1.737 37.095-1.620 36.863Q-1.503 36.630-1.503 36.302Q-1.503 35.650-1.899 35.400Q-2.296 35.150-2.991 35.150L-3.518 35.150Q-3.737 35.150-3.829 35.193Q-3.921 35.236-3.921 35.416M2.720 40.318L0.798 40.318L0.798 40.021Q1.607 40.021 1.607 39.541L1.607 35.416Q1.607 35.244 1.364 35.197Q1.122 35.150 0.798 35.150L0.798 34.853L2.294 34.853Q2.404 34.853 2.462 34.966L4.310 39.509L6.150 34.966Q6.212 34.853 6.318 34.853L7.822 34.853L7.822 35.150Q7.501 35.150 7.259 35.197Q7.017 35.244 7.017 35.416L7.017 39.759Q7.017 39.927 7.259 39.974Q7.501 40.021 7.822 40.021L7.822 40.318L5.521 40.318L5.521 40.021Q6.325 40.021 6.325 39.759L6.325 35.166L4.279 40.205Q4.243 40.318 4.111 40.318Q3.970 40.318 3.935 40.205L1.911 35.228L1.911 39.541Q1.911 40.021 2.720 40.021L2.720 40.318M10.775 40.373L9.072 35.416Q9.005 35.240 8.829 35.195Q8.654 35.150 8.361 35.150L8.361 34.853L10.505 34.853L10.505 35.150Q9.849 35.150 9.849 35.365Q9.853 35.377 9.855 35.386Q9.857 35.396 9.857 35.416L11.208 39.349L12.407 35.845L12.263 35.416Q12.193 35.240 12.019 35.195Q11.845 35.150 11.552 35.150L11.552 34.853L13.689 34.853L13.689 35.150Q13.040 35.150 13.040 35.365Q13.040 35.408 13.048 35.416L14.400 39.349L15.673 35.630Q15.689 35.584 15.689 35.548Q15.689 35.408 15.579 35.316Q15.470 35.224 15.314 35.187Q15.157 35.150 15.025 35.150L15.025 34.853L16.759 34.853L16.759 35.150Q16.142 35.150 15.970 35.630L14.345 40.373Q14.325 40.423 14.282 40.455Q14.239 40.486 14.185 40.486L14.130 40.486Q14.009 40.486 13.970 40.373L12.560 36.279L11.154 40.373Q11.134 40.423 11.091 40.455Q11.048 40.486 10.993 40.486L10.935 40.486Q10.822 40.486 10.775 40.373\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M116.206-46.463h85.359V-72.07h-85.359Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(171.98 -92.518)\">\u003Cpath d=\"M-24.903 28.084Q-24.903 27.490-24.671 26.959Q-24.439 26.427-24.022 26.027Q-23.606 25.627-23.073 25.406Q-22.540 25.185-21.935 25.185Q-21.497 25.185-21.099 25.367Q-20.700 25.548-20.392 25.881L-19.919 25.216Q-19.888 25.185-19.856 25.185L-19.810 25.185Q-19.782 25.185-19.751 25.216Q-19.720 25.248-19.720 25.275L-19.720 27.412Q-19.720 27.435-19.751 27.466Q-19.782 27.498-19.810 27.498L-19.927 27.498Q-19.954 27.498-19.985 27.466Q-20.017 27.435-20.017 27.412Q-20.017 27.146-20.159 26.793Q-20.302 26.439-20.481 26.201Q-20.735 25.869-21.085 25.675Q-21.435 25.482-21.841 25.482Q-22.345 25.482-22.798 25.701Q-23.251 25.920-23.544 26.314Q-24.040 26.982-24.040 28.084Q-24.040 28.615-23.903 29.082Q-23.767 29.548-23.491 29.914Q-23.216 30.279-22.796 30.484Q-22.376 30.689-21.833 30.689Q-21.345 30.689-20.921 30.445Q-20.497 30.201-20.249 29.781Q-20.001 29.361-20.001 28.865Q-20.001 28.830-19.972 28.804Q-19.942 28.779-19.911 28.779L-19.810 28.779Q-19.767 28.779-19.743 28.808Q-19.720 28.838-19.720 28.881Q-19.720 29.318-19.896 29.707Q-20.071 30.095-20.382 30.379Q-20.692 30.662-21.103 30.824Q-21.513 30.986-21.935 30.986Q-22.524 30.986-23.065 30.765Q-23.606 30.545-24.022 30.140Q-24.439 29.736-24.671 29.207Q-24.903 28.677-24.903 28.084M-19.001 29.123Q-19.001 28.619-18.745 28.187Q-18.489 27.756-18.054 27.504Q-17.618 27.252-17.118 27.252Q-16.731 27.252-16.390 27.396Q-16.048 27.541-15.786 27.802Q-15.524 28.064-15.382 28.400Q-15.239 28.736-15.239 29.123Q-15.239 29.615-15.503 30.025Q-15.767 30.435-16.196 30.666Q-16.626 30.896-17.118 30.896Q-17.610 30.896-18.044 30.664Q-18.478 30.431-18.739 30.023Q-19.001 29.615-19.001 29.123M-17.118 30.619Q-16.661 30.619-16.409 30.396Q-16.157 30.173-16.069 29.822Q-15.981 29.470-15.981 29.025Q-15.981 28.595-16.075 28.257Q-16.169 27.920-16.423 27.713Q-16.677 27.506-17.118 27.506Q-17.767 27.506-18.011 27.922Q-18.255 28.338-18.255 29.025Q-18.255 29.470-18.167 29.822Q-18.079 30.173-17.827 30.396Q-17.575 30.619-17.118 30.619M-12.747 30.818L-14.728 30.818L-14.728 30.521Q-14.458 30.521-14.290 30.476Q-14.122 30.431-14.122 30.259L-14.122 28.123Q-14.122 27.908-14.185 27.812Q-14.247 27.716-14.364 27.695Q-14.481 27.673-14.728 27.673L-14.728 27.377L-13.560 27.291L-13.560 28.076Q-13.481 27.865-13.329 27.679Q-13.177 27.494-12.978 27.392Q-12.778 27.291-12.552 27.291Q-12.306 27.291-12.114 27.435Q-11.923 27.580-11.923 27.810Q-11.923 27.966-12.028 28.076Q-12.134 28.185-12.290 28.185Q-12.446 28.185-12.556 28.076Q-12.665 27.966-12.665 27.810Q-12.665 27.650-12.560 27.545Q-12.884 27.545-13.099 27.773Q-13.314 28.002-13.409 28.341Q-13.505 28.681-13.505 28.986L-13.505 30.259Q-13.505 30.427-13.278 30.474Q-13.052 30.521-12.747 30.521L-12.747 30.818M-11.442 29.064Q-11.442 28.584-11.210 28.168Q-10.978 27.752-10.567 27.502Q-10.157 27.252-9.681 27.252Q-8.950 27.252-8.552 27.693Q-8.153 28.134-8.153 28.865Q-8.153 28.970-8.247 28.994L-10.696 28.994L-10.696 29.064Q-10.696 29.474-10.575 29.830Q-10.454 30.185-10.183 30.402Q-9.911 30.619-9.481 30.619Q-9.118 30.619-8.821 30.390Q-8.524 30.162-8.423 29.810Q-8.415 29.763-8.329 29.748L-8.247 29.748Q-8.153 29.775-8.153 29.857Q-8.153 29.865-8.161 29.896Q-8.224 30.123-8.362 30.306Q-8.501 30.490-8.692 30.623Q-8.884 30.756-9.103 30.826Q-9.321 30.896-9.560 30.896Q-9.931 30.896-10.269 30.759Q-10.606 30.623-10.874 30.371Q-11.142 30.119-11.292 29.779Q-11.442 29.439-11.442 29.064M-10.689 28.756L-8.728 28.756Q-8.728 28.451-8.829 28.160Q-8.931 27.869-9.147 27.687Q-9.364 27.506-9.681 27.506Q-9.981 27.506-10.212 27.693Q-10.442 27.881-10.565 28.172Q-10.689 28.463-10.689 28.756\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.98 -92.518)\">\u003Cpath d=\"M-1.469 30.818L-4.262 30.818L-4.262 30.521Q-3.200 30.521-3.200 30.259L-3.200 26.091Q-3.629 26.306-4.309 26.306L-4.309 26.009Q-3.290 26.009-2.774 25.498L-2.629 25.498Q-2.555 25.517-2.536 25.595L-2.536 30.259Q-2.536 30.521-1.469 30.521\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.98 -92.518)\">\u003Cpath d=\"M-40.008 38.502L-42.481 38.502Q-42.559 38.490-42.608 38.441Q-42.656 38.392-42.656 38.318Q-42.656 38.244-42.608 38.195Q-42.559 38.146-42.481 38.134L-40.008 38.134L-40.008 35.654Q-39.981 35.486-39.824 35.486Q-39.750 35.486-39.701 35.535Q-39.652 35.584-39.641 35.654L-39.641 38.134L-37.168 38.134Q-37 38.166-37 38.318Q-37 38.470-37.168 38.502L-39.641 38.502L-39.641 40.982Q-39.652 41.052-39.701 41.101Q-39.750 41.150-39.824 41.150Q-39.981 41.150-40.008 40.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.98 -92.518)\">\u003Cpath d=\"M-33.349 39.486Q-33.349 39.002-32.947 38.707Q-32.544 38.412-31.994 38.293Q-31.443 38.173-30.951 38.173L-30.951 37.884Q-30.951 37.658-31.066 37.451Q-31.181 37.244-31.378 37.125Q-31.576 37.005-31.806 37.005Q-32.232 37.005-32.517 37.111Q-32.447 37.138-32.400 37.193Q-32.353 37.248-32.328 37.318Q-32.302 37.388-32.302 37.463Q-32.302 37.568-32.353 37.660Q-32.404 37.752-32.496 37.802Q-32.587 37.853-32.693 37.853Q-32.798 37.853-32.890 37.802Q-32.982 37.752-33.033 37.660Q-33.083 37.568-33.083 37.463Q-33.083 37.045-32.695 36.898Q-32.306 36.752-31.806 36.752Q-31.474 36.752-31.121 36.882Q-30.767 37.013-30.539 37.267Q-30.310 37.521-30.310 37.869L-30.310 39.670Q-30.310 39.802-30.238 39.912Q-30.165 40.021-30.037 40.021Q-29.912 40.021-29.843 39.916Q-29.775 39.810-29.775 39.670L-29.775 39.158L-29.494 39.158L-29.494 39.670Q-29.494 39.873-29.611 40.031Q-29.728 40.189-29.910 40.273Q-30.091 40.357-30.294 40.357Q-30.525 40.357-30.677 40.185Q-30.830 40.013-30.861 39.783Q-31.021 40.064-31.330 40.230Q-31.638 40.396-31.990 40.396Q-32.501 40.396-32.925 40.173Q-33.349 39.951-33.349 39.486M-32.662 39.486Q-32.662 39.771-32.435 39.957Q-32.208 40.142-31.915 40.142Q-31.669 40.142-31.445 40.025Q-31.220 39.908-31.085 39.705Q-30.951 39.502-30.951 39.248L-30.951 38.416Q-31.216 38.416-31.501 38.470Q-31.787 38.525-32.058 38.654Q-32.330 38.783-32.496 38.990Q-32.662 39.197-32.662 39.486M-28.576 39.357L-28.576 37.166L-29.279 37.166L-29.279 36.912Q-28.923 36.912-28.681 36.679Q-28.439 36.447-28.328 36.099Q-28.216 35.752-28.216 35.396L-27.935 35.396L-27.935 36.869L-26.759 36.869L-26.759 37.166L-27.935 37.166L-27.935 39.341Q-27.935 39.662-27.816 39.890Q-27.697 40.119-27.415 40.119Q-27.236 40.119-27.119 39.996Q-27.001 39.873-26.949 39.693Q-26.896 39.513-26.896 39.341L-26.896 38.869L-26.615 38.869L-26.615 39.357Q-26.615 39.611-26.720 39.851Q-26.826 40.091-27.023 40.244Q-27.220 40.396-27.478 40.396Q-27.794 40.396-28.046 40.273Q-28.298 40.150-28.437 39.916Q-28.576 39.681-28.576 39.357M-25.896 38.623Q-25.896 38.119-25.640 37.687Q-25.384 37.255-24.949 37.004Q-24.513 36.752-24.013 36.752Q-23.626 36.752-23.285 36.896Q-22.943 37.041-22.681 37.302Q-22.419 37.564-22.277 37.900Q-22.134 38.236-22.134 38.623Q-22.134 39.115-22.398 39.525Q-22.662 39.935-23.091 40.166Q-23.521 40.396-24.013 40.396Q-24.505 40.396-24.939 40.164Q-25.373 39.931-25.634 39.523Q-25.896 39.115-25.896 38.623M-24.013 40.119Q-23.556 40.119-23.304 39.896Q-23.052 39.673-22.964 39.322Q-22.876 38.970-22.876 38.525Q-22.876 38.095-22.970 37.757Q-23.064 37.420-23.318 37.213Q-23.572 37.005-24.013 37.005Q-24.662 37.005-24.906 37.422Q-25.150 37.838-25.150 38.525Q-25.150 38.970-25.062 39.322Q-24.974 39.673-24.722 39.896Q-24.470 40.119-24.013 40.119M-19.720 40.318L-21.576 40.318L-21.576 40.021Q-21.302 40.021-21.134 39.974Q-20.966 39.927-20.966 39.759L-20.966 37.623Q-20.966 37.408-21.029 37.312Q-21.091 37.216-21.210 37.195Q-21.330 37.173-21.576 37.173L-21.576 36.877L-20.384 36.791L-20.384 37.525Q-20.271 37.310-20.078 37.142Q-19.884 36.974-19.646 36.882Q-19.408 36.791-19.154 36.791Q-18.193 36.791-18.017 37.502Q-17.833 37.173-17.505 36.982Q-17.177 36.791-16.798 36.791Q-15.623 36.791-15.623 37.869L-15.623 39.759Q-15.623 39.927-15.455 39.974Q-15.287 40.021-15.017 40.021L-15.017 40.318L-16.873 40.318L-16.873 40.021Q-16.599 40.021-16.431 39.976Q-16.263 39.931-16.263 39.759L-16.263 37.884Q-16.263 37.498-16.388 37.271Q-16.513 37.045-16.865 37.045Q-17.169 37.045-17.425 37.207Q-17.681 37.369-17.830 37.638Q-17.978 37.908-17.978 38.205L-17.978 39.759Q-17.978 39.927-17.808 39.974Q-17.638 40.021-17.369 40.021L-17.369 40.318L-19.224 40.318L-19.224 40.021Q-18.951 40.021-18.783 39.974Q-18.615 39.927-18.615 39.759L-18.615 37.884Q-18.615 37.498-18.740 37.271Q-18.865 37.045-19.216 37.045Q-19.521 37.045-19.777 37.207Q-20.033 37.369-20.181 37.638Q-20.330 37.908-20.330 38.205L-20.330 39.759Q-20.330 39.927-20.160 39.974Q-19.990 40.021-19.720 40.021L-19.720 40.318M-12.712 40.318L-14.490 40.318L-14.490 40.021Q-14.216 40.021-14.048 39.974Q-13.880 39.927-13.880 39.759L-13.880 37.623Q-13.880 37.408-13.937 37.312Q-13.994 37.216-14.107 37.195Q-14.220 37.173-14.466 37.173L-14.466 36.877L-13.267 36.791L-13.267 39.759Q-13.267 39.927-13.121 39.974Q-12.974 40.021-12.712 40.021L-12.712 40.318M-14.154 35.396Q-14.154 35.205-14.019 35.074Q-13.884 34.943-13.689 34.943Q-13.568 34.943-13.464 35.005Q-13.361 35.068-13.298 35.172Q-13.236 35.275-13.236 35.396Q-13.236 35.591-13.367 35.726Q-13.498 35.861-13.689 35.861Q-13.888 35.861-14.021 35.728Q-14.154 35.595-14.154 35.396M-12.169 38.591Q-12.169 38.095-11.919 37.670Q-11.669 37.244-11.249 36.998Q-10.830 36.752-10.330 36.752Q-9.790 36.752-9.400 36.877Q-9.009 37.002-9.009 37.416Q-9.009 37.521-9.060 37.613Q-9.111 37.705-9.203 37.755Q-9.294 37.806-9.404 37.806Q-9.509 37.806-9.601 37.755Q-9.693 37.705-9.744 37.613Q-9.794 37.521-9.794 37.416Q-9.794 37.193-9.626 37.088Q-9.849 37.029-10.322 37.029Q-10.619 37.029-10.833 37.168Q-11.048 37.306-11.179 37.537Q-11.310 37.767-11.369 38.037Q-11.427 38.306-11.427 38.591Q-11.427 38.986-11.294 39.336Q-11.162 39.685-10.890 39.902Q-10.619 40.119-10.220 40.119Q-9.845 40.119-9.570 39.902Q-9.294 39.685-9.193 39.326Q-9.177 39.263-9.115 39.263L-9.009 39.263Q-8.974 39.263-8.949 39.291Q-8.923 39.318-8.923 39.357L-8.923 39.380Q-9.056 39.861-9.441 40.129Q-9.826 40.396-10.330 40.396Q-10.693 40.396-11.027 40.259Q-11.361 40.123-11.621 39.873Q-11.880 39.623-12.025 39.287Q-12.169 38.951-12.169 38.591\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(171.98 -92.518)\">\u003Cpath d=\"M-3.112 40.318L-5.471 40.318L-5.471 40.021Q-5.147 40.021-4.905 39.974Q-4.663 39.927-4.663 39.759L-4.663 35.416Q-4.663 35.244-4.905 35.197Q-5.147 35.150-5.471 35.150L-5.471 34.853L-2.878 34.853Q-2.546 34.853-2.159 34.939Q-1.772 35.025-1.425 35.199Q-1.077 35.373-0.858 35.654Q-0.639 35.935-0.639 36.302Q-0.639 36.627-0.841 36.892Q-1.042 37.158-1.348 37.334Q-1.655 37.509-1.983 37.599Q-1.616 37.720-1.356 37.990Q-1.096 38.259-1.046 38.623L-0.952 39.318Q-0.882 39.767-0.784 39.998Q-0.686 40.228-0.389 40.228Q-0.143 40.228-0.011 40.011Q0.122 39.795 0.122 39.533Q0.142 39.459 0.224 39.439L0.306 39.439Q0.400 39.463 0.400 39.556Q0.400 39.787 0.302 40.002Q0.204 40.216 0.027 40.351Q-0.151 40.486-0.382 40.486Q-0.979 40.486-1.397 40.199Q-1.815 39.912-1.815 39.341L-1.815 38.646Q-1.815 38.365-1.968 38.150Q-2.120 37.935-2.370 37.822Q-2.620 37.709-2.893 37.709L-3.921 37.709L-3.921 39.759Q-3.921 39.923-3.677 39.972Q-3.432 40.021-3.112 40.021L-3.112 40.318M-3.921 35.416L-3.921 37.455L-2.991 37.455Q-2.671 37.455-2.403 37.402Q-2.136 37.349-1.936 37.222Q-1.737 37.095-1.620 36.863Q-1.503 36.630-1.503 36.302Q-1.503 35.650-1.899 35.400Q-2.296 35.150-2.991 35.150L-3.518 35.150Q-3.737 35.150-3.829 35.193Q-3.921 35.236-3.921 35.416M2.720 40.318L0.798 40.318L0.798 40.021Q1.607 40.021 1.607 39.541L1.607 35.416Q1.607 35.244 1.364 35.197Q1.122 35.150 0.798 35.150L0.798 34.853L2.294 34.853Q2.404 34.853 2.462 34.966L4.310 39.509L6.150 34.966Q6.212 34.853 6.318 34.853L7.822 34.853L7.822 35.150Q7.501 35.150 7.259 35.197Q7.017 35.244 7.017 35.416L7.017 39.759Q7.017 39.927 7.259 39.974Q7.501 40.021 7.822 40.021L7.822 40.318L5.521 40.318L5.521 40.021Q6.325 40.021 6.325 39.759L6.325 35.166L4.279 40.205Q4.243 40.318 4.111 40.318Q3.970 40.318 3.935 40.205L1.911 35.228L1.911 39.541Q1.911 40.021 2.720 40.021L2.720 40.318M10.775 40.373L9.072 35.416Q9.005 35.240 8.829 35.195Q8.654 35.150 8.361 35.150L8.361 34.853L10.505 34.853L10.505 35.150Q9.849 35.150 9.849 35.365Q9.853 35.377 9.855 35.386Q9.857 35.396 9.857 35.416L11.208 39.349L12.407 35.845L12.263 35.416Q12.193 35.240 12.019 35.195Q11.845 35.150 11.552 35.150L11.552 34.853L13.689 34.853L13.689 35.150Q13.040 35.150 13.040 35.365Q13.040 35.408 13.048 35.416L14.400 39.349L15.673 35.630Q15.689 35.584 15.689 35.548Q15.689 35.408 15.579 35.316Q15.470 35.224 15.314 35.187Q15.157 35.150 15.025 35.150L15.025 34.853L16.759 34.853L16.759 35.150Q16.142 35.150 15.970 35.630L14.345 40.373Q14.325 40.423 14.282 40.455Q14.239 40.486 14.185 40.486L14.130 40.486Q14.009 40.486 13.970 40.373L12.560 36.279L11.154 40.373Q11.134 40.423 11.091 40.455Q11.048 40.486 10.993 40.486L10.935 40.486Q10.822 40.486 10.775 40.373\" 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-43.13-5.206H42.23v-22.762h-85.358Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(15.054 -55.017)\">\u003Cpath d=\"M-43.059 41.861L-43.059 41.775Q-43.016 41.556-42.809 41.533L-42.387 41.533L-42.387 37.431L-42.809 37.431Q-43.016 37.408-43.059 37.189L-43.059 37.103Q-43.012 36.892-42.809 36.869L-41.992 36.869Q-41.797 36.888-41.746 37.103L-41.746 37.173Q-41.535 37.005-41.272 36.918Q-41.008 36.830-40.738 36.830Q-40.399 36.830-40.102 36.974Q-39.805 37.119-39.590 37.371Q-39.375 37.623-39.260 37.935Q-39.145 38.248-39.145 38.591Q-39.145 39.056-39.371 39.466Q-39.598 39.877-39.984 40.117Q-40.371 40.357-40.840 40.357Q-41.359 40.357-41.746 39.990L-41.746 41.533L-41.320 41.533Q-41.113 41.556-41.074 41.775L-41.074 41.861Q-41.113 42.072-41.320 42.095L-42.809 42.095Q-43.012 42.072-43.059 41.861M-40.883 39.798Q-40.574 39.798-40.324 39.629Q-40.074 39.459-39.930 39.177Q-39.785 38.896-39.785 38.591Q-39.785 38.302-39.910 38.023Q-40.035 37.744-40.268 37.566Q-40.500 37.388-40.801 37.388Q-41.121 37.388-41.383 37.574Q-41.645 37.759-41.746 38.060L-41.746 38.912Q-41.656 39.279-41.436 39.539Q-41.215 39.798-40.883 39.798M-38.660 40.080L-38.660 39.990Q-38.602 39.783-38.410 39.759L-37.699 39.759L-37.699 37.431L-38.410 37.431Q-38.606 37.408-38.660 37.189L-38.660 37.103Q-38.602 36.892-38.410 36.869L-37.309 36.869Q-37.109 36.888-37.059 37.103L-37.059 37.431Q-36.797 37.146-36.441 36.988Q-36.086 36.830-35.699 36.830Q-35.406 36.830-35.172 36.964Q-34.938 37.099-34.938 37.365Q-34.938 37.533-35.047 37.650Q-35.156 37.767-35.324 37.767Q-35.477 37.767-35.592 37.656Q-35.707 37.545-35.707 37.388Q-36.082 37.388-36.397 37.589Q-36.711 37.791-36.885 38.125Q-37.059 38.459-37.059 38.838L-37.059 39.759L-36.113 39.759Q-35.906 39.783-35.867 39.990L-35.867 40.080Q-35.906 40.295-36.113 40.318L-38.410 40.318Q-38.602 40.295-38.660 40.080M-34.020 40.080L-34.020 39.990Q-33.969 39.783-33.774 39.759L-32.734 39.759L-32.734 37.431L-33.707 37.431Q-33.906 37.408-33.957 37.189L-33.957 37.103Q-33.906 36.892-33.707 36.869L-32.340 36.869Q-32.145 36.888-32.094 37.103L-32.094 39.759L-31.180 39.759Q-30.984 39.783-30.934 39.990L-30.934 40.080Q-30.984 40.295-31.180 40.318L-33.774 40.318Q-33.969 40.295-34.020 40.080M-32.988 35.892L-32.988 35.838Q-32.988 35.666-32.852 35.545Q-32.715 35.423-32.539 35.423Q-32.367 35.423-32.231 35.545Q-32.094 35.666-32.094 35.838L-32.094 35.892Q-32.094 36.068-32.231 36.189Q-32.367 36.310-32.539 36.310Q-32.715 36.310-32.852 36.189Q-32.988 36.068-32.988 35.892M-28.734 40.095L-29.621 37.431L-29.941 37.431Q-30.141 37.408-30.191 37.189L-30.191 37.103Q-30.141 36.892-29.941 36.869L-28.781 36.869Q-28.586 36.888-28.535 37.103L-28.535 37.189Q-28.586 37.408-28.781 37.431L-29.063 37.431L-28.270 39.806L-27.481 37.431L-27.758 37.431Q-27.957 37.408-28.008 37.189L-28.008 37.103Q-27.957 36.892-27.758 36.869L-26.598 36.869Q-26.402 36.892-26.352 37.103L-26.352 37.189Q-26.402 37.408-26.598 37.431L-26.918 37.431L-27.805 40.095Q-27.848 40.209-27.949 40.283Q-28.051 40.357-28.176 40.357L-28.367 40.357Q-28.484 40.357-28.588 40.285Q-28.691 40.213-28.734 40.095M-25.738 39.205Q-25.738 38.759-25.324 38.502Q-24.910 38.244-24.369 38.144Q-23.828 38.045-23.320 38.037Q-23.320 37.822-23.455 37.670Q-23.590 37.517-23.797 37.441Q-24.004 37.365-24.215 37.365Q-24.559 37.365-24.719 37.388L-24.719 37.447Q-24.719 37.615-24.838 37.730Q-24.957 37.845-25.121 37.845Q-25.297 37.845-25.412 37.722Q-25.527 37.599-25.527 37.431Q-25.527 37.025-25.147 36.916Q-24.766 36.806-24.207 36.806Q-23.938 36.806-23.670 36.884Q-23.402 36.963-23.178 37.113Q-22.953 37.263-22.816 37.484Q-22.680 37.705-22.680 37.982L-22.680 39.701Q-22.680 39.759-22.152 39.759Q-21.957 39.779-21.906 39.990L-21.906 40.080Q-21.957 40.295-22.152 40.318L-22.297 40.318Q-22.641 40.318-22.869 40.271Q-23.098 40.224-23.242 40.037Q-23.703 40.357-24.410 40.357Q-24.746 40.357-25.051 40.216Q-25.356 40.076-25.547 39.814Q-25.738 39.552-25.738 39.205M-25.098 39.213Q-25.098 39.486-24.856 39.642Q-24.613 39.798-24.328 39.798Q-24.109 39.798-23.877 39.740Q-23.645 39.681-23.483 39.543Q-23.320 39.404-23.320 39.181L-23.320 38.591Q-23.602 38.591-24.018 38.648Q-24.434 38.705-24.766 38.843Q-25.098 38.982-25.098 39.213M-20.699 39.213L-20.699 37.431L-21.449 37.431Q-21.649 37.408-21.699 37.189L-21.699 37.103Q-21.649 36.892-21.449 36.869L-20.699 36.869L-20.699 36.119Q-20.649 35.912-20.449 35.884L-20.305 35.884Q-20.109 35.912-20.059 36.119L-20.059 36.869L-18.699 36.869Q-18.508 36.888-18.449 37.103L-18.449 37.189Q-18.504 37.408-18.699 37.431L-20.059 37.431L-20.059 39.181Q-20.059 39.798-19.484 39.798Q-19.234 39.798-19.070 39.613Q-18.906 39.427-18.906 39.181Q-18.906 39.088-18.834 39.017Q-18.762 38.947-18.660 38.935L-18.516 38.935Q-18.316 38.959-18.266 39.166L-18.266 39.213Q-18.266 39.537-18.449 39.800Q-18.633 40.064-18.926 40.211Q-19.219 40.357-19.539 40.357Q-20.051 40.357-20.375 40.047Q-20.699 39.736-20.699 39.213M-14.141 38.830L-16.582 38.830Q-16.527 39.107-16.330 39.330Q-16.133 39.552-15.856 39.675Q-15.578 39.798-15.293 39.798Q-14.820 39.798-14.598 39.509Q-14.590 39.498-14.533 39.392Q-14.477 39.287-14.428 39.244Q-14.379 39.201-14.285 39.189L-14.141 39.189Q-13.949 39.209-13.891 39.423L-13.891 39.478Q-13.957 39.779-14.188 39.976Q-14.418 40.173-14.731 40.265Q-15.043 40.357-15.348 40.357Q-15.832 40.357-16.272 40.129Q-16.711 39.900-16.979 39.500Q-17.246 39.099-17.246 38.607L-17.246 38.548Q-17.246 38.080-17 37.677Q-16.754 37.275-16.346 37.041Q-15.938 36.806-15.469 36.806Q-14.965 36.806-14.611 37.029Q-14.258 37.252-14.074 37.640Q-13.891 38.029-13.891 38.533L-13.891 38.591Q-13.949 38.806-14.141 38.830M-16.574 38.279L-14.547 38.279Q-14.594 37.869-14.832 37.617Q-15.070 37.365-15.469 37.365Q-15.863 37.365-16.170 37.627Q-16.477 37.888-16.574 38.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(15.054 -55.017)\">\u003Cpath d=\"M-8.906 40.080L-8.906 39.990Q-8.848 39.783-8.656 39.759L-8.289 39.759L-8.289 35.990L-8.656 35.990Q-8.848 35.966-8.906 35.752L-8.906 35.662Q-8.848 35.455-8.656 35.431L-7.129 35.431Q-6.934 35.455-6.883 35.662L-6.883 35.752Q-6.934 35.966-7.129 35.990L-7.649 35.990L-7.649 39.759L-5.816 39.759L-5.816 39.119Q-5.766 38.912-5.570 38.884L-5.426 38.884Q-5.227 38.912-5.176 39.119L-5.176 40.080Q-5.227 40.295-5.426 40.318L-8.656 40.318Q-8.848 40.295-8.906 40.080M-4.027 40.080L-4.027 39.990Q-3.977 39.783-3.777 39.759L-2.961 39.759L-2.961 36.576Q-3.340 36.884-3.793 36.884Q-4.024 36.884-4.074 36.654L-4.074 36.564Q-4.024 36.349-3.828 36.326Q-3.500 36.326-3.246 36.088Q-2.992 35.849-2.852 35.502Q-2.781 35.373-2.625 35.349L-2.570 35.349Q-2.375 35.369-2.324 35.584L-2.324 39.759L-1.508 39.759Q-1.309 39.783-1.258 39.990L-1.258 40.080Q-1.309 40.295-1.508 40.318L-3.777 40.318Q-3.977 40.295-4.027 40.080M-0.164 40.677Q-0.164 40.623-0.141 40.556L2.539 34.951Q2.633 34.767 2.828 34.767Q2.953 34.767 3.043 34.857Q3.133 34.947 3.133 35.072Q3.133 35.134 3.105 35.189L0.426 40.798Q0.332 40.982 0.148 40.982Q0.023 40.982-0.070 40.892Q-0.164 40.802-0.164 40.677M3.832 40.080L3.832 39.990Q3.891 39.783 4.082 39.759L4.449 39.759L4.449 35.990L4.082 35.990Q3.891 35.966 3.832 35.752L3.832 35.662Q3.891 35.455 4.082 35.431L5.609 35.431Q5.805 35.455 5.855 35.662L5.855 35.752Q5.805 35.966 5.609 35.990L5.090 35.990L5.090 39.759L6.922 39.759L6.922 39.119Q6.973 38.912 7.168 38.884L7.312 38.884Q7.512 38.912 7.562 39.119L7.562 40.080Q7.512 40.295 7.312 40.318L4.082 40.318Q3.891 40.295 3.832 40.080M8.281 40.080L8.281 40.005Q8.312 39.838 8.414 39.791L9.703 38.724Q10.035 38.447 10.217 38.295Q10.398 38.142 10.594 37.922Q10.789 37.701 10.910 37.451Q11.031 37.201 11.031 36.935Q11.031 36.611 10.855 36.377Q10.680 36.142 10.400 36.027Q10.121 35.912 9.801 35.912Q9.543 35.912 9.314 36.035Q9.086 36.158 8.984 36.373Q9.086 36.505 9.086 36.654Q9.086 36.814 8.967 36.937Q8.848 37.060 8.687 37.060Q8.512 37.060 8.396 36.935Q8.281 36.810 8.281 36.638Q8.281 36.345 8.416 36.103Q8.551 35.861 8.789 35.689Q9.027 35.517 9.295 35.433Q9.562 35.349 9.855 35.349Q10.336 35.349 10.752 35.539Q11.168 35.728 11.420 36.089Q11.672 36.451 11.672 36.935Q11.672 37.279 11.539 37.582Q11.406 37.884 11.182 38.144Q10.957 38.404 10.648 38.666Q10.340 38.927 10.129 39.103L9.320 39.759L11.031 39.759L11.031 39.615Q11.082 39.404 11.281 39.380L11.422 39.380Q11.621 39.400 11.672 39.615L11.672 40.080Q11.621 40.295 11.422 40.318L8.527 40.318Q8.332 40.298 8.281 40.080\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M116.206-5.206h85.359v-22.762h-85.359Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(174.39 -55.017)\">\u003Cpath d=\"M-43.059 41.861L-43.059 41.775Q-43.016 41.556-42.809 41.533L-42.387 41.533L-42.387 37.431L-42.809 37.431Q-43.016 37.408-43.059 37.189L-43.059 37.103Q-43.012 36.892-42.809 36.869L-41.992 36.869Q-41.797 36.888-41.746 37.103L-41.746 37.173Q-41.535 37.005-41.272 36.918Q-41.008 36.830-40.738 36.830Q-40.399 36.830-40.102 36.974Q-39.805 37.119-39.590 37.371Q-39.375 37.623-39.260 37.935Q-39.145 38.248-39.145 38.591Q-39.145 39.056-39.371 39.466Q-39.598 39.877-39.984 40.117Q-40.371 40.357-40.840 40.357Q-41.359 40.357-41.746 39.990L-41.746 41.533L-41.320 41.533Q-41.113 41.556-41.074 41.775L-41.074 41.861Q-41.113 42.072-41.320 42.095L-42.809 42.095Q-43.012 42.072-43.059 41.861M-40.883 39.798Q-40.574 39.798-40.324 39.629Q-40.074 39.459-39.930 39.177Q-39.785 38.896-39.785 38.591Q-39.785 38.302-39.910 38.023Q-40.035 37.744-40.268 37.566Q-40.500 37.388-40.801 37.388Q-41.121 37.388-41.383 37.574Q-41.645 37.759-41.746 38.060L-41.746 38.912Q-41.656 39.279-41.436 39.539Q-41.215 39.798-40.883 39.798M-38.660 40.080L-38.660 39.990Q-38.602 39.783-38.410 39.759L-37.699 39.759L-37.699 37.431L-38.410 37.431Q-38.606 37.408-38.660 37.189L-38.660 37.103Q-38.602 36.892-38.410 36.869L-37.309 36.869Q-37.109 36.888-37.059 37.103L-37.059 37.431Q-36.797 37.146-36.441 36.988Q-36.086 36.830-35.699 36.830Q-35.406 36.830-35.172 36.964Q-34.938 37.099-34.938 37.365Q-34.938 37.533-35.047 37.650Q-35.156 37.767-35.324 37.767Q-35.477 37.767-35.592 37.656Q-35.707 37.545-35.707 37.388Q-36.082 37.388-36.397 37.589Q-36.711 37.791-36.885 38.125Q-37.059 38.459-37.059 38.838L-37.059 39.759L-36.113 39.759Q-35.906 39.783-35.867 39.990L-35.867 40.080Q-35.906 40.295-36.113 40.318L-38.410 40.318Q-38.602 40.295-38.660 40.080M-34.020 40.080L-34.020 39.990Q-33.969 39.783-33.774 39.759L-32.734 39.759L-32.734 37.431L-33.707 37.431Q-33.906 37.408-33.957 37.189L-33.957 37.103Q-33.906 36.892-33.707 36.869L-32.340 36.869Q-32.145 36.888-32.094 37.103L-32.094 39.759L-31.180 39.759Q-30.984 39.783-30.934 39.990L-30.934 40.080Q-30.984 40.295-31.180 40.318L-33.774 40.318Q-33.969 40.295-34.020 40.080M-32.988 35.892L-32.988 35.838Q-32.988 35.666-32.852 35.545Q-32.715 35.423-32.539 35.423Q-32.367 35.423-32.231 35.545Q-32.094 35.666-32.094 35.838L-32.094 35.892Q-32.094 36.068-32.231 36.189Q-32.367 36.310-32.539 36.310Q-32.715 36.310-32.852 36.189Q-32.988 36.068-32.988 35.892M-28.734 40.095L-29.621 37.431L-29.941 37.431Q-30.141 37.408-30.191 37.189L-30.191 37.103Q-30.141 36.892-29.941 36.869L-28.781 36.869Q-28.586 36.888-28.535 37.103L-28.535 37.189Q-28.586 37.408-28.781 37.431L-29.063 37.431L-28.270 39.806L-27.481 37.431L-27.758 37.431Q-27.957 37.408-28.008 37.189L-28.008 37.103Q-27.957 36.892-27.758 36.869L-26.598 36.869Q-26.402 36.892-26.352 37.103L-26.352 37.189Q-26.402 37.408-26.598 37.431L-26.918 37.431L-27.805 40.095Q-27.848 40.209-27.949 40.283Q-28.051 40.357-28.176 40.357L-28.367 40.357Q-28.484 40.357-28.588 40.285Q-28.691 40.213-28.734 40.095M-25.738 39.205Q-25.738 38.759-25.324 38.502Q-24.910 38.244-24.369 38.144Q-23.828 38.045-23.320 38.037Q-23.320 37.822-23.455 37.670Q-23.590 37.517-23.797 37.441Q-24.004 37.365-24.215 37.365Q-24.559 37.365-24.719 37.388L-24.719 37.447Q-24.719 37.615-24.838 37.730Q-24.957 37.845-25.121 37.845Q-25.297 37.845-25.412 37.722Q-25.527 37.599-25.527 37.431Q-25.527 37.025-25.147 36.916Q-24.766 36.806-24.207 36.806Q-23.938 36.806-23.670 36.884Q-23.402 36.963-23.178 37.113Q-22.953 37.263-22.816 37.484Q-22.680 37.705-22.680 37.982L-22.680 39.701Q-22.680 39.759-22.152 39.759Q-21.957 39.779-21.906 39.990L-21.906 40.080Q-21.957 40.295-22.152 40.318L-22.297 40.318Q-22.641 40.318-22.869 40.271Q-23.098 40.224-23.242 40.037Q-23.703 40.357-24.410 40.357Q-24.746 40.357-25.051 40.216Q-25.356 40.076-25.547 39.814Q-25.738 39.552-25.738 39.205M-25.098 39.213Q-25.098 39.486-24.856 39.642Q-24.613 39.798-24.328 39.798Q-24.109 39.798-23.877 39.740Q-23.645 39.681-23.483 39.543Q-23.320 39.404-23.320 39.181L-23.320 38.591Q-23.602 38.591-24.018 38.648Q-24.434 38.705-24.766 38.843Q-25.098 38.982-25.098 39.213M-20.699 39.213L-20.699 37.431L-21.449 37.431Q-21.649 37.408-21.699 37.189L-21.699 37.103Q-21.649 36.892-21.449 36.869L-20.699 36.869L-20.699 36.119Q-20.649 35.912-20.449 35.884L-20.305 35.884Q-20.109 35.912-20.059 36.119L-20.059 36.869L-18.699 36.869Q-18.508 36.888-18.449 37.103L-18.449 37.189Q-18.504 37.408-18.699 37.431L-20.059 37.431L-20.059 39.181Q-20.059 39.798-19.484 39.798Q-19.234 39.798-19.070 39.613Q-18.906 39.427-18.906 39.181Q-18.906 39.088-18.834 39.017Q-18.762 38.947-18.660 38.935L-18.516 38.935Q-18.316 38.959-18.266 39.166L-18.266 39.213Q-18.266 39.537-18.449 39.800Q-18.633 40.064-18.926 40.211Q-19.219 40.357-19.539 40.357Q-20.051 40.357-20.375 40.047Q-20.699 39.736-20.699 39.213M-14.141 38.830L-16.582 38.830Q-16.527 39.107-16.330 39.330Q-16.133 39.552-15.856 39.675Q-15.578 39.798-15.293 39.798Q-14.820 39.798-14.598 39.509Q-14.590 39.498-14.533 39.392Q-14.477 39.287-14.428 39.244Q-14.379 39.201-14.285 39.189L-14.141 39.189Q-13.949 39.209-13.891 39.423L-13.891 39.478Q-13.957 39.779-14.188 39.976Q-14.418 40.173-14.731 40.265Q-15.043 40.357-15.348 40.357Q-15.832 40.357-16.272 40.129Q-16.711 39.900-16.979 39.500Q-17.246 39.099-17.246 38.607L-17.246 38.548Q-17.246 38.080-17 37.677Q-16.754 37.275-16.346 37.041Q-15.938 36.806-15.469 36.806Q-14.965 36.806-14.611 37.029Q-14.258 37.252-14.074 37.640Q-13.891 38.029-13.891 38.533L-13.891 38.591Q-13.949 38.806-14.141 38.830M-16.574 38.279L-14.547 38.279Q-14.594 37.869-14.832 37.617Q-15.070 37.365-15.469 37.365Q-15.863 37.365-16.170 37.627Q-16.477 37.888-16.574 38.279\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(174.39 -55.017)\">\u003Cpath d=\"M-8.906 40.080L-8.906 39.990Q-8.848 39.783-8.656 39.759L-8.289 39.759L-8.289 35.990L-8.656 35.990Q-8.848 35.966-8.906 35.752L-8.906 35.662Q-8.848 35.455-8.656 35.431L-7.129 35.431Q-6.934 35.455-6.883 35.662L-6.883 35.752Q-6.934 35.966-7.129 35.990L-7.649 35.990L-7.649 39.759L-5.816 39.759L-5.816 39.119Q-5.766 38.912-5.570 38.884L-5.426 38.884Q-5.227 38.912-5.176 39.119L-5.176 40.080Q-5.227 40.295-5.426 40.318L-8.656 40.318Q-8.848 40.295-8.906 40.080M-4.027 40.080L-4.027 39.990Q-3.977 39.783-3.777 39.759L-2.961 39.759L-2.961 36.576Q-3.340 36.884-3.793 36.884Q-4.024 36.884-4.074 36.654L-4.074 36.564Q-4.024 36.349-3.828 36.326Q-3.500 36.326-3.246 36.088Q-2.992 35.849-2.852 35.502Q-2.781 35.373-2.625 35.349L-2.570 35.349Q-2.375 35.369-2.324 35.584L-2.324 39.759L-1.508 39.759Q-1.309 39.783-1.258 39.990L-1.258 40.080Q-1.309 40.295-1.508 40.318L-3.777 40.318Q-3.977 40.295-4.027 40.080M-0.164 40.677Q-0.164 40.623-0.141 40.556L2.539 34.951Q2.633 34.767 2.828 34.767Q2.953 34.767 3.043 34.857Q3.133 34.947 3.133 35.072Q3.133 35.134 3.105 35.189L0.426 40.798Q0.332 40.982 0.148 40.982Q0.023 40.982-0.070 40.892Q-0.164 40.802-0.164 40.677M3.832 40.080L3.832 39.990Q3.891 39.783 4.082 39.759L4.449 39.759L4.449 35.990L4.082 35.990Q3.891 35.966 3.832 35.752L3.832 35.662Q3.891 35.455 4.082 35.431L5.609 35.431Q5.805 35.455 5.855 35.662L5.855 35.752Q5.805 35.966 5.609 35.990L5.090 35.990L5.090 39.759L6.922 39.759L6.922 39.119Q6.973 38.912 7.168 38.884L7.312 38.884Q7.512 38.912 7.562 39.119L7.562 40.080Q7.512 40.295 7.312 40.318L4.082 40.318Q3.891 40.295 3.832 40.080M8.281 40.080L8.281 40.005Q8.312 39.838 8.414 39.791L9.703 38.724Q10.035 38.447 10.217 38.295Q10.398 38.142 10.594 37.922Q10.789 37.701 10.910 37.451Q11.031 37.201 11.031 36.935Q11.031 36.611 10.855 36.377Q10.680 36.142 10.400 36.027Q10.121 35.912 9.801 35.912Q9.543 35.912 9.314 36.035Q9.086 36.158 8.984 36.373Q9.086 36.505 9.086 36.654Q9.086 36.814 8.967 36.937Q8.848 37.060 8.687 37.060Q8.512 37.060 8.396 36.935Q8.281 36.810 8.281 36.638Q8.281 36.345 8.416 36.103Q8.551 35.861 8.789 35.689Q9.027 35.517 9.295 35.433Q9.562 35.349 9.855 35.349Q10.336 35.349 10.752 35.539Q11.168 35.728 11.420 36.089Q11.672 36.451 11.672 36.935Q11.672 37.279 11.539 37.582Q11.406 37.884 11.182 38.144Q10.957 38.404 10.648 38.666Q10.340 38.927 10.129 39.103L9.320 39.759L11.031 39.759L11.031 39.615Q11.082 39.404 11.281 39.380L11.422 39.380Q11.621 39.400 11.672 39.615L11.672 40.080Q11.621 40.295 11.422 40.318L8.527 40.318Q8.332 40.298 8.281 40.080\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-.45-46.263v16.095\"\u002F>\u003Cpath stroke=\"none\" d=\"m-.45-28.168 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M158.885-46.263v16.095\"\u002F>\u003Cpath stroke=\"none\" d=\"m158.885-28.168 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" style=\"stroke-dasharray:3.0,3.0\">\u003Cpath fill=\"none\" d=\"M44.429-16.587h69.577\"\u002F>\u003Cpath stroke=\"none\" d=\"m42.429-16.587 3.2 1.6-1.2-1.6 1.2-1.6M116.006-16.587l-3.2-1.6 1.2 1.6-1.2 1.6\"\u002F>\u003C\u002Fg>\u003Cg fill=\"var(--tk-accent)\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(92.596 -63.284)\">\u003Cpath d=\"M-43.016 40.080L-43.016 39.990Q-42.965 39.783-42.770 39.759L-42.594 39.759L-42.594 35.990L-42.770 35.990Q-42.965 35.966-43.016 35.752L-43.016 35.662Q-42.965 35.455-42.770 35.431L-42.082 35.431Q-41.953 35.431-41.854 35.507Q-41.754 35.584-41.715 35.693Q-41.684 35.798-41.461 36.488Q-41.238 37.177-41.123 37.574Q-41.008 37.970-41.008 38.045Q-41 37.966-40.945 37.769Q-40.891 37.572-40.777 37.201Q-40.664 36.830-40.518 36.367Q-40.371 35.904-40.305 35.693Q-40.266 35.584-40.162 35.507Q-40.059 35.431-39.938 35.431L-39.250 35.431Q-39.051 35.455-39 35.662L-39 35.752Q-39.051 35.966-39.250 35.990L-39.426 35.990L-39.426 39.759L-39.250 39.759Q-39.051 39.783-39 39.990L-39 40.080Q-39.051 40.295-39.250 40.318L-40.129 40.318Q-40.324 40.295-40.375 40.080L-40.375 39.990Q-40.324 39.783-40.129 39.759L-39.953 39.759L-39.953 36.072Q-39.953 36.130-40.037 36.429Q-40.121 36.728-40.225 37.060Q-40.328 37.392-40.459 37.800Q-40.590 38.209-40.656 38.423Q-40.695 38.537-40.795 38.611Q-40.895 38.685-41.008 38.685Q-41.121 38.685-41.221 38.611Q-41.320 38.537-41.359 38.423Q-41.426 38.209-41.561 37.791Q-41.695 37.373-41.832 36.929Q-41.969 36.486-42.014 36.322Q-42.059 36.158-42.066 36.072L-42.066 39.759L-41.891 39.759Q-41.691 39.783-41.641 39.990L-41.641 40.080Q-41.691 40.295-41.891 40.318L-42.770 40.318Q-42.965 40.295-43.016 40.080M-38.699 40.080L-38.699 39.990Q-38.660 39.783-38.449 39.759L-38.141 39.759L-38.141 35.990L-38.449 35.990Q-38.660 35.966-38.699 35.752L-38.699 35.662Q-38.660 35.455-38.449 35.431L-35.242 35.431Q-35.047 35.455-34.996 35.662L-34.996 36.502Q-35.047 36.716-35.242 36.744L-35.387 36.744Q-35.582 36.716-35.637 36.502L-35.637 35.990L-37.500 35.990L-37.500 37.509L-36.524 37.509L-36.524 37.295Q-36.473 37.088-36.274 37.060L-36.129 37.060Q-35.934 37.088-35.883 37.295L-35.883 38.279Q-35.934 38.494-36.129 38.517L-36.274 38.517Q-36.473 38.494-36.524 38.279L-36.524 38.072L-37.500 38.072L-37.500 39.759L-35.457 39.759L-35.457 39.119Q-35.406 38.912-35.211 38.884L-35.066 38.884Q-34.871 38.912-34.820 39.119L-34.820 40.080Q-34.871 40.298-35.066 40.318L-38.449 40.318Q-38.660 40.295-38.699 40.080M-34.211 40.158L-34.211 38.927Q-34.184 38.716-33.973 38.693L-33.805 38.693Q-33.711 38.705-33.649 38.763Q-33.586 38.822-33.574 38.927Q-33.574 39.420-33.209 39.629Q-32.844 39.838-32.309 39.838Q-32.074 39.838-31.871 39.730Q-31.668 39.623-31.545 39.429Q-31.422 39.236-31.422 39.005Q-31.422 38.709-31.617 38.486Q-31.813 38.263-32.102 38.197L-33.109 37.966Q-33.410 37.896-33.662 37.711Q-33.914 37.525-34.063 37.257Q-34.211 36.990-34.211 36.677Q-34.211 36.298-34.002 35.994Q-33.793 35.689-33.451 35.519Q-33.109 35.349-32.734 35.349Q-32.059 35.349-31.629 35.677L-31.559 35.494Q-31.484 35.373-31.348 35.349L-31.270 35.349Q-31.172 35.361-31.109 35.423Q-31.047 35.486-31.035 35.584L-31.035 36.814Q-31.059 37.025-31.270 37.052L-31.438 37.052Q-31.633 37.029-31.668 36.845Q-31.731 36.392-31.998 36.152Q-32.266 35.912-32.727 35.912Q-32.934 35.912-33.141 36Q-33.348 36.088-33.481 36.255Q-33.613 36.423-33.613 36.638Q-33.613 36.892-33.420 37.089Q-33.227 37.287-32.957 37.349L-31.949 37.576Q-31.621 37.654-31.367 37.857Q-31.113 38.060-30.967 38.355Q-30.820 38.650-30.820 38.966Q-30.820 39.365-31.024 39.691Q-31.227 40.017-31.570 40.207Q-31.914 40.396-32.301 40.396Q-33.102 40.396-33.621 40.080L-33.691 40.255Q-33.762 40.373-33.902 40.396L-33.973 40.396Q-34.188 40.373-34.211 40.158M-29.774 40.080L-29.774 39.990Q-29.723 39.783-29.527 39.759L-28.590 39.759L-28.590 35.990L-29.527 35.990Q-29.723 35.966-29.774 35.752L-29.774 35.662Q-29.723 35.455-29.527 35.431L-27.016 35.431Q-26.816 35.455-26.766 35.662L-26.766 35.752Q-26.816 35.966-27.016 35.990L-27.949 35.990L-27.949 39.759L-27.016 39.759Q-26.816 39.783-26.766 39.990L-26.766 40.080Q-26.816 40.295-27.016 40.318L-29.527 40.318Q-29.723 40.295-29.774 40.080\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(92.596 -63.284)\">\u003Cpath d=\"M-21.320 38.591Q-21.320 38.111-21.076 37.697Q-20.832 37.283-20.416 37.045Q-20 36.806-19.520 36.806Q-18.965 36.806-18.586 36.916Q-18.207 37.025-18.207 37.431Q-18.207 37.599-18.320 37.722Q-18.434 37.845-18.606 37.845Q-18.777 37.845-18.897 37.730Q-19.016 37.615-19.016 37.447L-19.016 37.388Q-19.176 37.365-19.512 37.365Q-19.840 37.365-20.108 37.535Q-20.375 37.705-20.527 37.988Q-20.680 38.271-20.680 38.591Q-20.680 38.912-20.508 39.193Q-20.336 39.474-20.051 39.636Q-19.766 39.798-19.438 39.798Q-19.125 39.798-18.998 39.695Q-18.871 39.591-18.754 39.402Q-18.637 39.213-18.520 39.197L-18.352 39.197Q-18.246 39.209-18.182 39.277Q-18.117 39.345-18.117 39.447Q-18.117 39.494-18.137 39.533Q-18.246 39.826-18.449 40.005Q-18.652 40.185-18.928 40.271Q-19.203 40.357-19.520 40.357Q-20.004 40.357-20.420 40.119Q-20.836 39.880-21.078 39.478Q-21.320 39.076-21.320 38.591M-15.512 40.357Q-15.984 40.357-16.369 40.113Q-16.754 39.869-16.977 39.459Q-17.199 39.048-17.199 38.591Q-17.199 38.248-17.074 37.925Q-16.949 37.603-16.719 37.349Q-16.488 37.095-16.182 36.951Q-15.875 36.806-15.512 36.806Q-15.149 36.806-14.836 36.953Q-14.524 37.099-14.301 37.345Q-14.078 37.591-13.951 37.912Q-13.824 38.232-13.824 38.591Q-13.824 39.048-14.049 39.461Q-14.274 39.873-14.658 40.115Q-15.043 40.357-15.512 40.357M-15.512 39.798Q-15.047 39.798-14.756 39.404Q-14.465 39.009-14.465 38.525Q-14.465 38.232-14.600 37.964Q-14.734 37.697-14.975 37.531Q-15.215 37.365-15.512 37.365Q-15.817 37.365-16.055 37.531Q-16.293 37.697-16.428 37.964Q-16.563 38.232-16.563 38.525Q-16.563 39.005-16.270 39.402Q-15.977 39.798-15.512 39.798M-13.317 40.080L-13.317 39.990Q-13.274 39.783-13.067 39.759L-12.645 39.759L-12.645 35.990L-13.067 35.990Q-13.274 35.966-13.317 35.752L-13.317 35.662Q-13.274 35.455-13.067 35.431L-12.250 35.431Q-12.055 35.455-12.004 35.662L-12.004 37.213Q-11.543 36.830-10.945 36.830Q-10.598 36.830-10.359 36.970Q-10.121 37.111-10.006 37.369Q-9.891 37.627-9.891 37.982L-9.891 39.759L-9.465 39.759Q-9.258 39.783-9.219 39.990L-9.219 40.080Q-9.258 40.295-9.465 40.318L-10.859 40.318Q-11.055 40.295-11.106 40.080L-11.106 39.990Q-11.055 39.779-10.859 39.759L-10.531 39.759L-10.531 38.013Q-10.531 37.705-10.621 37.547Q-10.711 37.388-11.004 37.388Q-11.274 37.388-11.502 37.519Q-11.731 37.650-11.867 37.879Q-12.004 38.107-12.004 38.373L-12.004 39.759L-11.578 39.759Q-11.371 39.783-11.332 39.990L-11.332 40.080Q-11.371 40.295-11.578 40.318L-13.067 40.318Q-13.274 40.295-13.317 40.080M-5.629 38.830L-8.070 38.830Q-8.016 39.107-7.818 39.330Q-7.621 39.552-7.344 39.675Q-7.067 39.798-6.781 39.798Q-6.309 39.798-6.086 39.509Q-6.078 39.498-6.022 39.392Q-5.965 39.287-5.916 39.244Q-5.867 39.201-5.774 39.189L-5.629 39.189Q-5.438 39.209-5.379 39.423L-5.379 39.478Q-5.445 39.779-5.676 39.976Q-5.906 40.173-6.219 40.265Q-6.531 40.357-6.836 40.357Q-7.320 40.357-7.760 40.129Q-8.199 39.900-8.467 39.500Q-8.734 39.099-8.734 38.607L-8.734 38.548Q-8.734 38.080-8.488 37.677Q-8.242 37.275-7.834 37.041Q-7.426 36.806-6.957 36.806Q-6.453 36.806-6.100 37.029Q-5.746 37.252-5.563 37.640Q-5.379 38.029-5.379 38.533L-5.379 38.591Q-5.438 38.806-5.629 38.830M-8.063 38.279L-6.035 38.279Q-6.082 37.869-6.320 37.617Q-6.559 37.365-6.957 37.365Q-7.352 37.365-7.658 37.627Q-7.965 37.888-8.063 38.279M-4.672 40.080L-4.672 39.990Q-4.613 39.783-4.422 39.759L-3.711 39.759L-3.711 37.431L-4.422 37.431Q-4.617 37.408-4.672 37.189L-4.672 37.103Q-4.613 36.892-4.422 36.869L-3.320 36.869Q-3.121 36.888-3.070 37.103L-3.070 37.431Q-2.809 37.146-2.453 36.988Q-2.098 36.830-1.711 36.830Q-1.418 36.830-1.184 36.964Q-0.949 37.099-0.949 37.365Q-0.949 37.533-1.059 37.650Q-1.168 37.767-1.336 37.767Q-1.488 37.767-1.604 37.656Q-1.719 37.545-1.719 37.388Q-2.094 37.388-2.408 37.589Q-2.723 37.791-2.897 38.125Q-3.070 38.459-3.070 38.838L-3.070 39.759L-2.125 39.759Q-1.918 39.783-1.879 39.990L-1.879 40.080Q-1.918 40.295-2.125 40.318L-4.422 40.318Q-4.613 40.295-4.672 40.080M2.863 38.830L0.422 38.830Q0.476 39.107 0.674 39.330Q0.871 39.552 1.148 39.675Q1.426 39.798 1.711 39.798Q2.183 39.798 2.406 39.509Q2.414 39.498 2.471 39.392Q2.527 39.287 2.576 39.244Q2.625 39.201 2.719 39.189L2.863 39.189Q3.055 39.209 3.113 39.423L3.113 39.478Q3.047 39.779 2.816 39.976Q2.586 40.173 2.273 40.265Q1.961 40.357 1.656 40.357Q1.172 40.357 0.732 40.129Q0.293 39.900 0.025 39.500Q-0.242 39.099-0.242 38.607L-0.242 38.548Q-0.242 38.080 0.004 37.677Q0.250 37.275 0.658 37.041Q1.066 36.806 1.535 36.806Q2.039 36.806 2.392 37.029Q2.746 37.252 2.930 37.640Q3.113 38.029 3.113 38.533L3.113 38.591Q3.055 38.806 2.863 38.830M0.430 38.279L2.457 38.279Q2.410 37.869 2.172 37.617Q1.933 37.365 1.535 37.365Q1.141 37.365 0.834 37.627Q0.527 37.888 0.430 38.279M3.668 40.080L3.668 39.990Q3.711 39.783 3.918 39.759L4.340 39.759L4.340 37.431L3.918 37.431Q3.711 37.408 3.668 37.189L3.668 37.103Q3.715 36.892 3.918 36.869L4.734 36.869Q4.930 36.892 4.980 37.103L4.980 37.189L4.973 37.213Q5.199 37.033 5.473 36.931Q5.746 36.830 6.039 36.830Q6.387 36.830 6.625 36.970Q6.863 37.111 6.978 37.369Q7.094 37.627 7.094 37.982L7.094 39.759L7.519 39.759Q7.726 39.783 7.766 39.990L7.766 40.080Q7.726 40.295 7.519 40.318L6.125 40.318Q5.930 40.295 5.879 40.080L5.879 39.990Q5.930 39.779 6.125 39.759L6.453 39.759L6.453 38.013Q6.453 37.705 6.363 37.547Q6.273 37.388 5.980 37.388Q5.711 37.388 5.482 37.519Q5.254 37.650 5.117 37.879Q4.980 38.107 4.980 38.373L4.980 39.759L5.406 39.759Q5.613 39.783 5.652 39.990L5.652 40.080Q5.613 40.295 5.406 40.318L3.918 40.318Q3.711 40.295 3.668 40.080M8.402 38.591Q8.402 38.111 8.646 37.697Q8.891 37.283 9.307 37.045Q9.723 36.806 10.203 36.806Q10.758 36.806 11.137 36.916Q11.516 37.025 11.516 37.431Q11.516 37.599 11.402 37.722Q11.289 37.845 11.117 37.845Q10.945 37.845 10.826 37.730Q10.707 37.615 10.707 37.447L10.707 37.388Q10.547 37.365 10.211 37.365Q9.883 37.365 9.615 37.535Q9.348 37.705 9.195 37.988Q9.043 38.271 9.043 38.591Q9.043 38.912 9.215 39.193Q9.387 39.474 9.672 39.636Q9.957 39.798 10.285 39.798Q10.598 39.798 10.725 39.695Q10.851 39.591 10.969 39.402Q11.086 39.213 11.203 39.197L11.371 39.197Q11.476 39.209 11.541 39.277Q11.605 39.345 11.605 39.447Q11.605 39.494 11.586 39.533Q11.476 39.826 11.273 40.005Q11.070 40.185 10.795 40.271Q10.519 40.357 10.203 40.357Q9.719 40.357 9.303 40.119Q8.887 39.880 8.644 39.478Q8.402 39.076 8.402 38.591M15.601 38.830L13.160 38.830Q13.215 39.107 13.412 39.330Q13.609 39.552 13.887 39.675Q14.164 39.798 14.449 39.798Q14.922 39.798 15.144 39.509Q15.152 39.498 15.209 39.392Q15.266 39.287 15.314 39.244Q15.363 39.201 15.457 39.189L15.601 39.189Q15.793 39.209 15.851 39.423L15.851 39.478Q15.785 39.779 15.555 39.976Q15.324 40.173 15.012 40.265Q14.699 40.357 14.394 40.357Q13.910 40.357 13.471 40.129Q13.031 39.900 12.764 39.500Q12.496 39.099 12.496 38.607L12.496 38.548Q12.496 38.080 12.742 37.677Q12.988 37.275 13.396 37.041Q13.805 36.806 14.273 36.806Q14.777 36.806 15.131 37.029Q15.484 37.252 15.668 37.640Q15.851 38.029 15.851 38.533L15.851 38.591Q15.793 38.806 15.601 38.830M13.168 38.279L15.195 38.279Q15.148 37.869 14.910 37.617Q14.672 37.365 14.273 37.365Q13.879 37.365 13.572 37.627Q13.266 37.888 13.168 38.279\" fill=\"var(--tk-accent)\" stroke=\"var(--tk-accent)\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath fill=\"var(--tk-soft-accent)\" d=\"M-68.737 34.628h295.909V11.865H-68.737Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmtt8\" font-size=\"8\">\u003Cg transform=\"translate(69.221 -14.627)\">\u003Cpath d=\"M-42.543 40.119L-42.543 39.205Q-42.516 38.998-42.305 38.974L-42.137 38.974Q-41.973 38.998-41.914 39.158Q-41.711 39.798-40.984 39.798Q-40.777 39.798-40.549 39.763Q-40.320 39.728-40.152 39.613Q-39.984 39.498-39.984 39.295Q-39.984 39.084-40.207 38.970Q-40.430 38.857-40.703 38.814L-41.402 38.701Q-42.543 38.490-42.543 37.767Q-42.543 37.478-42.399 37.289Q-42.254 37.099-42.014 36.992Q-41.774 36.884-41.518 36.845Q-41.262 36.806-40.984 36.806Q-40.734 36.806-40.541 36.836Q-40.348 36.865-40.184 36.943Q-40.106 36.826-39.977 36.806L-39.899 36.806Q-39.801 36.818-39.738 36.880Q-39.676 36.943-39.664 37.037L-39.664 37.744Q-39.676 37.838-39.738 37.904Q-39.801 37.970-39.899 37.982L-40.066 37.982Q-40.160 37.970-40.227 37.904Q-40.293 37.838-40.305 37.744Q-40.305 37.365-41 37.365Q-41.348 37.365-41.666 37.447Q-41.984 37.529-41.984 37.775Q-41.984 38.041-41.313 38.150L-40.609 38.271Q-40.125 38.353-39.775 38.601Q-39.426 38.849-39.426 39.295Q-39.426 39.685-39.662 39.927Q-39.899 40.170-40.248 40.263Q-40.598 40.357-40.984 40.357Q-41.563 40.357-41.961 40.103Q-42.031 40.228-42.080 40.285Q-42.129 40.341-42.234 40.357L-42.305 40.357Q-42.520 40.334-42.543 40.119M-38.813 40.080L-38.813 39.990Q-38.770 39.783-38.563 39.759L-38.141 39.759L-38.141 35.990L-38.563 35.990Q-38.770 35.966-38.813 35.752L-38.813 35.662Q-38.770 35.455-38.563 35.431L-37.746 35.431Q-37.551 35.455-37.500 35.662L-37.500 37.213Q-37.039 36.830-36.441 36.830Q-36.094 36.830-35.856 36.970Q-35.617 37.111-35.502 37.369Q-35.387 37.627-35.387 37.982L-35.387 39.759L-34.961 39.759Q-34.754 39.783-34.715 39.990L-34.715 40.080Q-34.754 40.295-34.961 40.318L-36.356 40.318Q-36.551 40.295-36.602 40.080L-36.602 39.990Q-36.551 39.779-36.356 39.759L-36.027 39.759L-36.027 38.013Q-36.027 37.705-36.117 37.547Q-36.207 37.388-36.500 37.388Q-36.770 37.388-36.998 37.519Q-37.227 37.650-37.363 37.879Q-37.500 38.107-37.500 38.373L-37.500 39.759L-37.074 39.759Q-36.867 39.783-36.828 39.990L-36.828 40.080Q-36.867 40.295-37.074 40.318L-38.563 40.318Q-38.770 40.295-38.813 40.080M-34.231 39.205Q-34.231 38.759-33.816 38.502Q-33.402 38.244-32.861 38.144Q-32.320 38.045-31.813 38.037Q-31.813 37.822-31.947 37.670Q-32.082 37.517-32.289 37.441Q-32.496 37.365-32.707 37.365Q-33.051 37.365-33.211 37.388L-33.211 37.447Q-33.211 37.615-33.330 37.730Q-33.449 37.845-33.613 37.845Q-33.789 37.845-33.904 37.722Q-34.020 37.599-34.020 37.431Q-34.020 37.025-33.639 36.916Q-33.258 36.806-32.699 36.806Q-32.430 36.806-32.162 36.884Q-31.895 36.963-31.670 37.113Q-31.445 37.263-31.309 37.484Q-31.172 37.705-31.172 37.982L-31.172 39.701Q-31.172 39.759-30.645 39.759Q-30.449 39.779-30.399 39.990L-30.399 40.080Q-30.449 40.295-30.645 40.318L-30.789 40.318Q-31.133 40.318-31.361 40.271Q-31.590 40.224-31.734 40.037Q-32.195 40.357-32.902 40.357Q-33.238 40.357-33.543 40.216Q-33.848 40.076-34.039 39.814Q-34.231 39.552-34.231 39.205M-33.590 39.213Q-33.590 39.486-33.348 39.642Q-33.106 39.798-32.820 39.798Q-32.602 39.798-32.369 39.740Q-32.137 39.681-31.975 39.543Q-31.813 39.404-31.813 39.181L-31.813 38.591Q-32.094 38.591-32.510 38.648Q-32.926 38.705-33.258 38.843Q-33.590 38.982-33.590 39.213M-30.168 40.080L-30.168 39.990Q-30.109 39.783-29.918 39.759L-29.207 39.759L-29.207 37.431L-29.918 37.431Q-30.113 37.408-30.168 37.189L-30.168 37.103Q-30.109 36.892-29.918 36.869L-28.816 36.869Q-28.617 36.888-28.566 37.103L-28.566 37.431Q-28.305 37.146-27.949 36.988Q-27.594 36.830-27.207 36.830Q-26.914 36.830-26.680 36.964Q-26.445 37.099-26.445 37.365Q-26.445 37.533-26.555 37.650Q-26.664 37.767-26.832 37.767Q-26.984 37.767-27.100 37.656Q-27.215 37.545-27.215 37.388Q-27.590 37.388-27.904 37.589Q-28.219 37.791-28.393 38.125Q-28.566 38.459-28.566 38.838L-28.566 39.759L-27.621 39.759Q-27.414 39.783-27.375 39.990L-27.375 40.080Q-27.414 40.295-27.621 40.318L-29.918 40.318Q-30.109 40.295-30.168 40.080M-22.633 38.830L-25.074 38.830Q-25.020 39.107-24.822 39.330Q-24.625 39.552-24.348 39.675Q-24.070 39.798-23.785 39.798Q-23.313 39.798-23.090 39.509Q-23.082 39.498-23.025 39.392Q-22.969 39.287-22.920 39.244Q-22.871 39.201-22.777 39.189L-22.633 39.189Q-22.441 39.209-22.383 39.423L-22.383 39.478Q-22.449 39.779-22.680 39.976Q-22.910 40.173-23.223 40.265Q-23.535 40.357-23.840 40.357Q-24.324 40.357-24.764 40.129Q-25.203 39.900-25.471 39.500Q-25.738 39.099-25.738 38.607L-25.738 38.548Q-25.738 38.080-25.492 37.677Q-25.246 37.275-24.838 37.041Q-24.430 36.806-23.961 36.806Q-23.457 36.806-23.104 37.029Q-22.750 37.252-22.566 37.640Q-22.383 38.029-22.383 38.533L-22.383 38.591Q-22.441 38.806-22.633 38.830M-25.066 38.279L-23.039 38.279Q-23.086 37.869-23.324 37.617Q-23.563 37.365-23.961 37.365Q-24.356 37.365-24.662 37.627Q-24.969 37.888-25.066 38.279M-20.035 40.357Q-20.500 40.357-20.865 40.107Q-21.231 39.857-21.436 39.453Q-21.641 39.048-21.641 38.591Q-21.641 38.248-21.516 37.927Q-21.391 37.607-21.158 37.357Q-20.926 37.107-20.621 36.968Q-20.316 36.830-19.961 36.830Q-19.449 36.830-19.043 37.150L-19.043 35.990L-19.465 35.990Q-19.676 35.966-19.715 35.752L-19.715 35.662Q-19.676 35.455-19.465 35.431L-18.652 35.431Q-18.453 35.455-18.402 35.662L-18.402 39.759L-17.977 39.759Q-17.770 39.783-17.731 39.990L-17.731 40.080Q-17.770 40.295-17.977 40.318L-18.793 40.318Q-18.992 40.295-19.043 40.080L-19.043 39.951Q-19.238 40.142-19.500 40.250Q-19.762 40.357-20.035 40.357M-19.996 39.798Q-19.637 39.798-19.385 39.529Q-19.133 39.259-19.043 38.884L-19.043 38.052Q-19.102 37.865-19.229 37.714Q-19.356 37.564-19.533 37.476Q-19.711 37.388-19.906 37.388Q-20.215 37.388-20.465 37.558Q-20.715 37.728-20.859 38.013Q-21.004 38.298-21.004 38.599Q-21.004 39.048-20.719 39.423Q-20.434 39.798-19.996 39.798\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(69.221 -14.627)\">\u003Cpath d=\"M-13.156 40.080L-13.156 39.990Q-13.098 39.783-12.906 39.759L-12.539 39.759L-12.539 35.990L-12.906 35.990Q-13.098 35.966-13.156 35.752L-13.156 35.662Q-13.098 35.455-12.906 35.431L-11.379 35.431Q-11.184 35.455-11.133 35.662L-11.133 35.752Q-11.184 35.966-11.379 35.990L-11.899 35.990L-11.899 39.759L-10.066 39.759L-10.066 39.119Q-10.016 38.912-9.820 38.884L-9.676 38.884Q-9.477 38.912-9.426 39.119L-9.426 40.080Q-9.477 40.295-9.676 40.318L-12.906 40.318Q-13.098 40.295-13.156 40.080M-8.910 40.080L-8.910 39.990Q-8.852 39.783-8.660 39.759L-8.293 39.759L-8.293 35.990L-8.660 35.990Q-8.852 35.966-8.910 35.752L-8.910 35.662Q-8.852 35.455-8.660 35.431L-7.133 35.431Q-6.938 35.455-6.887 35.662L-6.887 35.752Q-6.938 35.966-7.133 35.990L-7.652 35.990L-7.652 39.759L-5.820 39.759L-5.820 39.119Q-5.770 38.912-5.574 38.884L-5.430 38.884Q-5.231 38.912-5.180 39.119L-5.180 40.080Q-5.231 40.295-5.430 40.318L-8.660 40.318Q-8.852 40.295-8.910 40.080M-2.621 40.396Q-3.070 40.396-3.436 40.172Q-3.801 39.947-4.055 39.564Q-4.309 39.181-4.434 38.738Q-4.559 38.295-4.559 37.869Q-4.559 37.443-4.434 37.004Q-4.309 36.564-4.055 36.181Q-3.801 35.798-3.441 35.574Q-3.082 35.349-2.621 35.349Q-2.344 35.349-2.086 35.441Q-1.828 35.533-1.613 35.701L-1.481 35.463Q-1.453 35.412-1.399 35.380Q-1.344 35.349-1.285 35.349L-1.207 35.349Q-1.113 35.361-1.051 35.420Q-0.988 35.478-0.977 35.584L-0.977 36.912Q-0.988 37.013-1.051 37.076Q-1.113 37.138-1.207 37.150L-1.375 37.150Q-1.477 37.138-1.539 37.072Q-1.602 37.005-1.613 36.912Q-1.652 36.646-1.775 36.422Q-1.899 36.197-2.102 36.054Q-2.305 35.912-2.566 35.912Q-2.899 35.912-3.150 36.095Q-3.402 36.279-3.574 36.580Q-3.746 36.880-3.832 37.222Q-3.918 37.564-3.918 37.869Q-3.918 38.173-3.834 38.515Q-3.750 38.857-3.578 39.160Q-3.406 39.463-3.149 39.650Q-2.891 39.838-2.559 39.838Q-2.176 39.838-1.895 39.564Q-1.613 39.291-1.613 38.904Q-1.586 38.693-1.375 38.670L-1.207 38.670Q-0.977 38.709-0.977 38.935Q-0.977 39.252-1.113 39.523Q-1.250 39.795-1.484 39.992Q-1.719 40.189-2.010 40.293Q-2.301 40.396-2.621 40.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(69.221 -14.627)\">\u003Cpath d=\"M5.437 39.396L5.437 38.181L4.223 38.181Q4.098 38.170 4.012 38.084Q3.926 37.998 3.926 37.869Q3.926 37.740 4.012 37.658Q4.098 37.576 4.223 37.564L5.437 37.564L5.437 36.341Q5.449 36.216 5.535 36.134Q5.621 36.052 5.750 36.052Q5.879 36.052 5.961 36.134Q6.043 36.216 6.055 36.341L6.055 37.564L7.269 37.564Q7.394 37.576 7.476 37.658Q7.559 37.740 7.559 37.869Q7.559 37.998 7.476 38.084Q7.394 38.170 7.269 38.181L6.055 38.181L6.055 39.396Q6.043 39.521 5.961 39.607Q5.879 39.693 5.750 39.693Q5.621 39.693 5.535 39.607Q5.449 39.521 5.437 39.396\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(69.221 -14.627)\">\u003Cpath d=\"M12.739 40.080L12.739 39.990Q12.790 39.783 12.985 39.759L14.024 39.759L14.024 37.431L13.052 37.431Q12.852 37.408 12.802 37.189L12.802 37.103Q12.852 36.892 13.052 36.869L14.419 36.869Q14.614 36.888 14.665 37.103L14.665 39.759L15.579 39.759Q15.774 39.783 15.825 39.990L15.825 40.080Q15.774 40.295 15.579 40.318L12.985 40.318Q12.790 40.295 12.739 40.080M13.770 35.892L13.770 35.838Q13.770 35.666 13.907 35.545Q14.044 35.423 14.220 35.423Q14.392 35.423 14.528 35.545Q14.665 35.666 14.665 35.838L14.665 35.892Q14.665 36.068 14.528 36.189Q14.392 36.310 14.220 36.310Q14.044 36.310 13.907 36.189Q13.770 36.068 13.770 35.892M16.438 40.080L16.438 39.990Q16.481 39.783 16.688 39.759L17.110 39.759L17.110 37.431L16.688 37.431Q16.481 37.408 16.438 37.189L16.438 37.103Q16.485 36.892 16.688 36.869L17.505 36.869Q17.700 36.892 17.751 37.103L17.751 37.189L17.743 37.213Q17.970 37.033 18.243 36.931Q18.517 36.830 18.809 36.830Q19.157 36.830 19.395 36.970Q19.634 37.111 19.749 37.369Q19.864 37.627 19.864 37.982L19.864 39.759L20.290 39.759Q20.497 39.783 20.536 39.990L20.536 40.080Q20.497 40.295 20.290 40.318L18.895 40.318Q18.700 40.295 18.649 40.080L18.649 39.990Q18.700 39.779 18.895 39.759L19.224 39.759L19.224 38.013Q19.224 37.705 19.134 37.547Q19.044 37.388 18.751 37.388Q18.481 37.388 18.253 37.519Q18.024 37.650 17.888 37.879Q17.751 38.107 17.751 38.373L17.751 39.759L18.177 39.759Q18.384 39.783 18.423 39.990L18.423 40.080Q18.384 40.295 18.177 40.318L16.688 40.318Q16.481 40.295 16.438 40.080M21.813 39.213L21.813 37.431L21.063 37.431Q20.864 37.408 20.813 37.189L20.813 37.103Q20.864 36.892 21.063 36.869L21.813 36.869L21.813 36.119Q21.864 35.912 22.063 35.884L22.208 35.884Q22.403 35.912 22.454 36.119L22.454 36.869L23.813 36.869Q24.005 36.888 24.063 37.103L24.063 37.189Q24.009 37.408 23.813 37.431L22.454 37.431L22.454 39.181Q22.454 39.798 23.028 39.798Q23.278 39.798 23.442 39.613Q23.606 39.427 23.606 39.181Q23.606 39.088 23.679 39.017Q23.751 38.947 23.852 38.935L23.997 38.935Q24.196 38.959 24.247 39.166L24.247 39.213Q24.247 39.537 24.063 39.800Q23.880 40.064 23.587 40.211Q23.294 40.357 22.974 40.357Q22.462 40.357 22.138 40.047Q21.813 39.736 21.813 39.213M28.372 38.830L25.931 38.830Q25.985 39.107 26.183 39.330Q26.380 39.552 26.657 39.675Q26.934 39.798 27.220 39.798Q27.692 39.798 27.915 39.509Q27.923 39.498 27.979 39.392Q28.036 39.287 28.085 39.244Q28.134 39.201 28.227 39.189L28.372 39.189Q28.563 39.209 28.622 39.423L28.622 39.478Q28.556 39.779 28.325 39.976Q28.095 40.173 27.782 40.265Q27.470 40.357 27.165 40.357Q26.681 40.357 26.241 40.129Q25.802 39.900 25.534 39.500Q25.267 39.099 25.267 38.607L25.267 38.548Q25.267 38.080 25.513 37.677Q25.759 37.275 26.167 37.041Q26.575 36.806 27.044 36.806Q27.548 36.806 27.901 37.029Q28.255 37.252 28.438 37.640Q28.622 38.029 28.622 38.533L28.622 38.591Q28.563 38.806 28.372 38.830M25.938 38.279L27.966 38.279Q27.919 37.869 27.681 37.617Q27.442 37.365 27.044 37.365Q26.649 37.365 26.343 37.627Q26.036 37.888 25.938 38.279M29.329 40.080L29.329 39.990Q29.388 39.783 29.579 39.759L30.290 39.759L30.290 37.431L29.579 37.431Q29.384 37.408 29.329 37.189L29.329 37.103Q29.388 36.892 29.579 36.869L30.681 36.869Q30.880 36.888 30.931 37.103L30.931 37.431Q31.192 37.146 31.548 36.988Q31.903 36.830 32.290 36.830Q32.583 36.830 32.817 36.964Q33.052 37.099 33.052 37.365Q33.052 37.533 32.942 37.650Q32.833 37.767 32.665 37.767Q32.513 37.767 32.397 37.656Q32.282 37.545 32.282 37.388Q31.907 37.388 31.593 37.589Q31.278 37.791 31.104 38.125Q30.931 38.459 30.931 38.838L30.931 39.759L31.876 39.759Q32.083 39.783 32.122 39.990L32.122 40.080Q32.083 40.295 31.876 40.318L29.579 40.318Q29.388 40.295 29.329 40.080M33.911 38.591Q33.911 38.111 34.155 37.697Q34.399 37.283 34.815 37.045Q35.231 36.806 35.712 36.806Q36.267 36.806 36.645 36.916Q37.024 37.025 37.024 37.431Q37.024 37.599 36.911 37.722Q36.798 37.845 36.626 37.845Q36.454 37.845 36.335 37.730Q36.216 37.615 36.216 37.447L36.216 37.388Q36.056 37.365 35.720 37.365Q35.392 37.365 35.124 37.535Q34.856 37.705 34.704 37.988Q34.552 38.271 34.552 38.591Q34.552 38.912 34.724 39.193Q34.895 39.474 35.181 39.636Q35.466 39.798 35.794 39.798Q36.106 39.798 36.233 39.695Q36.360 39.591 36.477 39.402Q36.595 39.213 36.712 39.197L36.880 39.197Q36.985 39.209 37.050 39.277Q37.114 39.345 37.114 39.447Q37.114 39.494 37.095 39.533Q36.985 39.826 36.782 40.005Q36.579 40.185 36.304 40.271Q36.028 40.357 35.712 40.357Q35.227 40.357 34.811 40.119Q34.395 39.880 34.153 39.478Q33.911 39.076 33.911 38.591M39.720 40.357Q39.247 40.357 38.862 40.113Q38.477 39.869 38.255 39.459Q38.032 39.048 38.032 38.591Q38.032 38.248 38.157 37.925Q38.282 37.603 38.513 37.349Q38.743 37.095 39.050 36.951Q39.356 36.806 39.720 36.806Q40.083 36.806 40.395 36.953Q40.708 37.099 40.931 37.345Q41.153 37.591 41.280 37.912Q41.407 38.232 41.407 38.591Q41.407 39.048 41.183 39.461Q40.958 39.873 40.573 40.115Q40.188 40.357 39.720 40.357M39.720 39.798Q40.184 39.798 40.476 39.404Q40.767 39.009 40.767 38.525Q40.767 38.232 40.632 37.964Q40.497 37.697 40.257 37.531Q40.017 37.365 39.720 37.365Q39.415 37.365 39.177 37.531Q38.938 37.697 38.804 37.964Q38.669 38.232 38.669 38.525Q38.669 39.005 38.962 39.402Q39.255 39.798 39.720 39.798M41.915 40.080L41.915 39.990Q41.958 39.783 42.165 39.759L42.587 39.759L42.587 37.431L42.165 37.431Q41.958 37.408 41.915 37.189L41.915 37.103Q41.962 36.892 42.165 36.869L42.981 36.869Q43.177 36.892 43.227 37.103L43.227 37.189L43.220 37.213Q43.446 37.033 43.720 36.931Q43.993 36.830 44.286 36.830Q44.634 36.830 44.872 36.970Q45.110 37.111 45.226 37.369Q45.341 37.627 45.341 37.982L45.341 39.759L45.767 39.759Q45.974 39.783 46.013 39.990L46.013 40.080Q45.974 40.295 45.767 40.318L44.372 40.318Q44.177 40.295 44.126 40.080L44.126 39.990Q44.177 39.779 44.372 39.759L44.700 39.759L44.700 38.013Q44.700 37.705 44.610 37.547Q44.520 37.388 44.227 37.388Q43.958 37.388 43.729 37.519Q43.501 37.650 43.364 37.879Q43.227 38.107 43.227 38.373L43.227 39.759L43.653 39.759Q43.860 39.783 43.899 39.990L43.899 40.080Q43.860 40.295 43.653 40.318L42.165 40.318Q41.958 40.295 41.915 40.080M46.161 40.080L46.161 39.990Q46.204 39.783 46.411 39.759L46.833 39.759L46.833 37.431L46.411 37.431Q46.204 37.408 46.161 37.189L46.161 37.103Q46.208 36.892 46.411 36.869L47.227 36.869Q47.423 36.892 47.474 37.103L47.474 37.189L47.466 37.213Q47.692 37.033 47.966 36.931Q48.239 36.830 48.532 36.830Q48.880 36.830 49.118 36.970Q49.356 37.111 49.472 37.369Q49.587 37.627 49.587 37.982L49.587 39.759L50.013 39.759Q50.220 39.783 50.259 39.990L50.259 40.080Q50.220 40.295 50.013 40.318L48.618 40.318Q48.423 40.295 48.372 40.080L48.372 39.990Q48.423 39.779 48.618 39.759L48.946 39.759L48.946 38.013Q48.946 37.705 48.856 37.547Q48.767 37.388 48.474 37.388Q48.204 37.388 47.976 37.519Q47.747 37.650 47.610 37.879Q47.474 38.107 47.474 38.373L47.474 39.759L47.899 39.759Q48.106 39.783 48.145 39.990L48.145 40.080Q48.106 40.295 47.899 40.318L46.411 40.318Q46.204 40.295 46.161 40.080M53.849 38.830L51.407 38.830Q51.462 39.107 51.659 39.330Q51.856 39.552 52.134 39.675Q52.411 39.798 52.696 39.798Q53.169 39.798 53.392 39.509Q53.399 39.498 53.456 39.392Q53.513 39.287 53.561 39.244Q53.610 39.201 53.704 39.189L53.849 39.189Q54.040 39.209 54.099 39.423L54.099 39.478Q54.032 39.779 53.802 39.976Q53.571 40.173 53.259 40.265Q52.946 40.357 52.642 40.357Q52.157 40.357 51.718 40.129Q51.278 39.900 51.011 39.500Q50.743 39.099 50.743 38.607L50.743 38.548Q50.743 38.080 50.989 37.677Q51.235 37.275 51.643 37.041Q52.052 36.806 52.520 36.806Q53.024 36.806 53.378 37.029Q53.731 37.252 53.915 37.640Q54.099 38.029 54.099 38.533L54.099 38.591Q54.040 38.806 53.849 38.830M51.415 38.279L53.442 38.279Q53.395 37.869 53.157 37.617Q52.919 37.365 52.520 37.365Q52.126 37.365 51.819 37.627Q51.513 37.888 51.415 38.279M55.142 38.591Q55.142 38.111 55.386 37.697Q55.630 37.283 56.046 37.045Q56.462 36.806 56.942 36.806Q57.497 36.806 57.876 36.916Q58.255 37.025 58.255 37.431Q58.255 37.599 58.142 37.722Q58.028 37.845 57.856 37.845Q57.684 37.845 57.565 37.730Q57.446 37.615 57.446 37.447L57.446 37.388Q57.286 37.365 56.950 37.365Q56.622 37.365 56.354 37.535Q56.087 37.705 55.934 37.988Q55.782 38.271 55.782 38.591Q55.782 38.912 55.954 39.193Q56.126 39.474 56.411 39.636Q56.696 39.798 57.024 39.798Q57.337 39.798 57.464 39.695Q57.591 39.591 57.708 39.402Q57.825 39.213 57.942 39.197L58.110 39.197Q58.216 39.209 58.280 39.277Q58.345 39.345 58.345 39.447Q58.345 39.494 58.325 39.533Q58.216 39.826 58.013 40.005Q57.809 40.185 57.534 40.271Q57.259 40.357 56.942 40.357Q56.458 40.357 56.042 40.119Q55.626 39.880 55.384 39.478Q55.142 39.076 55.142 38.591M60.028 39.213L60.028 37.431L59.278 37.431Q59.079 37.408 59.028 37.189L59.028 37.103Q59.079 36.892 59.278 36.869L60.028 36.869L60.028 36.119Q60.079 35.912 60.278 35.884L60.423 35.884Q60.618 35.912 60.669 36.119L60.669 36.869L62.028 36.869Q62.220 36.888 62.278 37.103L62.278 37.189Q62.224 37.408 62.028 37.431L60.669 37.431L60.669 39.181Q60.669 39.798 61.243 39.798Q61.493 39.798 61.657 39.613Q61.821 39.427 61.821 39.181Q61.821 39.088 61.893 39.017Q61.966 38.947 62.067 38.935L62.212 38.935Q62.411 38.959 62.462 39.166L62.462 39.213Q62.462 39.537 62.278 39.800Q62.095 40.064 61.802 40.211Q61.509 40.357 61.188 40.357Q60.677 40.357 60.352 40.047Q60.028 39.736 60.028 39.213\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M-.45-5.006V9.866\"\u002F>\u003Cpath stroke=\"none\" d=\"m-.45 11.866 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cpath fill=\"none\" d=\"M158.885-5.006V9.866\"\u002F>\u003Cpath stroke=\"none\" d=\"m158.885 11.866 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003Cg fill=\"var(--tk-soft-accent)\">\u003Cpath d=\"M22.312 77.307h113.811V54.545H22.313Z\"\u002F>\u003Cg fill=\"currentColor\" stroke=\"none\" font-family=\"cmr8\" font-size=\"8\">\u003Cg transform=\"translate(68.751 27.607)\">\u003Cpath d=\"M-40.961 40.318L-42.816 40.318L-42.816 40.021Q-42.543 40.021-42.375 39.974Q-42.207 39.927-42.207 39.759L-42.207 37.623Q-42.207 37.408-42.270 37.312Q-42.332 37.216-42.451 37.195Q-42.570 37.173-42.816 37.173L-42.816 36.877L-41.625 36.791L-41.625 37.525Q-41.512 37.310-41.318 37.142Q-41.125 36.974-40.887 36.882Q-40.649 36.791-40.395 36.791Q-39.434 36.791-39.258 37.502Q-39.074 37.173-38.746 36.982Q-38.418 36.791-38.039 36.791Q-36.863 36.791-36.863 37.869L-36.863 39.759Q-36.863 39.927-36.695 39.974Q-36.527 40.021-36.258 40.021L-36.258 40.318L-38.113 40.318L-38.113 40.021Q-37.840 40.021-37.672 39.976Q-37.504 39.931-37.504 39.759L-37.504 37.884Q-37.504 37.498-37.629 37.271Q-37.754 37.045-38.106 37.045Q-38.410 37.045-38.666 37.207Q-38.922 37.369-39.070 37.638Q-39.219 37.908-39.219 38.205L-39.219 39.759Q-39.219 39.927-39.049 39.974Q-38.879 40.021-38.609 40.021L-38.609 40.318L-40.465 40.318L-40.465 40.021Q-40.191 40.021-40.024 39.974Q-39.856 39.927-39.856 39.759L-39.856 37.884Q-39.856 37.498-39.981 37.271Q-40.106 37.045-40.457 37.045Q-40.762 37.045-41.018 37.207Q-41.274 37.369-41.422 37.638Q-41.570 37.908-41.570 38.205L-41.570 39.759Q-41.570 39.927-41.400 39.974Q-41.231 40.021-40.961 40.021L-40.961 40.318M-35.813 38.564Q-35.813 38.084-35.580 37.668Q-35.348 37.252-34.938 37.002Q-34.527 36.752-34.051 36.752Q-33.320 36.752-32.922 37.193Q-32.524 37.634-32.524 38.365Q-32.524 38.470-32.617 38.494L-35.066 38.494L-35.066 38.564Q-35.066 38.974-34.945 39.330Q-34.824 39.685-34.553 39.902Q-34.281 40.119-33.852 40.119Q-33.488 40.119-33.191 39.890Q-32.895 39.662-32.793 39.310Q-32.785 39.263-32.699 39.248L-32.617 39.248Q-32.524 39.275-32.524 39.357Q-32.524 39.365-32.531 39.396Q-32.594 39.623-32.733 39.806Q-32.871 39.990-33.063 40.123Q-33.254 40.255-33.473 40.326Q-33.691 40.396-33.930 40.396Q-34.301 40.396-34.639 40.259Q-34.977 40.123-35.244 39.871Q-35.512 39.619-35.662 39.279Q-35.813 38.939-35.813 38.564M-35.059 38.255L-33.098 38.255Q-33.098 37.951-33.199 37.660Q-33.301 37.369-33.518 37.187Q-33.734 37.005-34.051 37.005Q-34.352 37.005-34.582 37.193Q-34.813 37.380-34.936 37.672Q-35.059 37.963-35.059 38.255M-30.106 40.318L-31.961 40.318L-31.961 40.021Q-31.688 40.021-31.520 39.974Q-31.352 39.927-31.352 39.759L-31.352 37.623Q-31.352 37.408-31.414 37.312Q-31.477 37.216-31.596 37.195Q-31.715 37.173-31.961 37.173L-31.961 36.877L-30.770 36.791L-30.770 37.525Q-30.656 37.310-30.463 37.142Q-30.270 36.974-30.031 36.882Q-29.793 36.791-29.539 36.791Q-28.578 36.791-28.402 37.502Q-28.219 37.173-27.891 36.982Q-27.563 36.791-27.184 36.791Q-26.008 36.791-26.008 37.869L-26.008 39.759Q-26.008 39.927-25.840 39.974Q-25.672 40.021-25.402 40.021L-25.402 40.318L-27.258 40.318L-27.258 40.021Q-26.984 40.021-26.816 39.976Q-26.649 39.931-26.649 39.759L-26.649 37.884Q-26.649 37.498-26.774 37.271Q-26.899 37.045-27.250 37.045Q-27.555 37.045-27.811 37.207Q-28.066 37.369-28.215 37.638Q-28.363 37.908-28.363 38.205L-28.363 39.759Q-28.363 39.927-28.193 39.974Q-28.024 40.021-27.754 40.021L-27.754 40.318L-29.609 40.318L-29.609 40.021Q-29.336 40.021-29.168 39.974Q-29 39.927-29 39.759L-29 37.884Q-29 37.498-29.125 37.271Q-29.250 37.045-29.602 37.045Q-29.906 37.045-30.162 37.207Q-30.418 37.369-30.566 37.638Q-30.715 37.908-30.715 38.205L-30.715 39.759Q-30.715 39.927-30.545 39.974Q-30.375 40.021-30.106 40.021L-30.106 40.318M-24.957 38.623Q-24.957 38.119-24.701 37.687Q-24.445 37.255-24.010 37.004Q-23.574 36.752-23.074 36.752Q-22.688 36.752-22.346 36.896Q-22.004 37.041-21.742 37.302Q-21.481 37.564-21.338 37.900Q-21.195 38.236-21.195 38.623Q-21.195 39.115-21.459 39.525Q-21.723 39.935-22.152 40.166Q-22.582 40.396-23.074 40.396Q-23.566 40.396-24 40.164Q-24.434 39.931-24.695 39.523Q-24.957 39.115-24.957 38.623M-23.074 40.119Q-22.617 40.119-22.365 39.896Q-22.113 39.673-22.025 39.322Q-21.938 38.970-21.938 38.525Q-21.938 38.095-22.031 37.757Q-22.125 37.420-22.379 37.213Q-22.633 37.005-23.074 37.005Q-23.723 37.005-23.967 37.422Q-24.211 37.838-24.211 38.525Q-24.211 38.970-24.123 39.322Q-24.035 39.673-23.783 39.896Q-23.531 40.119-23.074 40.119M-18.703 40.318L-20.684 40.318L-20.684 40.021Q-20.414 40.021-20.246 39.976Q-20.078 39.931-20.078 39.759L-20.078 37.623Q-20.078 37.408-20.141 37.312Q-20.203 37.216-20.320 37.195Q-20.438 37.173-20.684 37.173L-20.684 36.877L-19.516 36.791L-19.516 37.576Q-19.438 37.365-19.285 37.179Q-19.133 36.994-18.934 36.892Q-18.734 36.791-18.508 36.791Q-18.262 36.791-18.070 36.935Q-17.879 37.080-17.879 37.310Q-17.879 37.466-17.984 37.576Q-18.090 37.685-18.246 37.685Q-18.402 37.685-18.512 37.576Q-18.621 37.466-18.621 37.310Q-18.621 37.150-18.516 37.045Q-18.840 37.045-19.055 37.273Q-19.270 37.502-19.365 37.841Q-19.461 38.181-19.461 38.486L-19.461 39.759Q-19.461 39.927-19.234 39.974Q-19.008 40.021-18.703 40.021L-18.703 40.318M-16.981 41.615Q-16.867 41.693-16.691 41.693Q-16.402 41.693-16.182 41.480Q-15.961 41.267-15.836 40.966L-15.547 40.318L-16.820 37.431Q-16.902 37.255-17.047 37.211Q-17.191 37.166-17.461 37.166L-17.461 36.869L-15.742 36.869L-15.742 37.166Q-16.164 37.166-16.164 37.349Q-16.164 37.361-16.149 37.431L-15.211 39.556L-14.379 37.646Q-14.340 37.556-14.340 37.478Q-14.340 37.338-14.441 37.252Q-14.543 37.166-14.684 37.166L-14.684 36.869L-13.332 36.869L-13.332 37.166Q-13.586 37.166-13.779 37.291Q-13.973 37.416-14.078 37.646L-15.524 40.966Q-15.637 41.220-15.803 41.443Q-15.969 41.666-16.197 41.808Q-16.426 41.951-16.691 41.951Q-16.988 41.951-17.229 41.759Q-17.469 41.568-17.469 41.279Q-17.469 41.123-17.363 41.021Q-17.258 40.920-17.109 40.920Q-17.004 40.920-16.924 40.966Q-16.844 41.013-16.797 41.091Q-16.750 41.170-16.750 41.279Q-16.750 41.400-16.811 41.488Q-16.871 41.576-16.981 41.615\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.751 27.607)\">\u003Cpath d=\"M-10.021 38.591Q-10.021 38.095-9.771 37.670Q-9.521 37.244-9.101 36.998Q-8.681 36.752-8.181 36.752Q-7.642 36.752-7.251 36.877Q-6.861 37.002-6.861 37.416Q-6.861 37.521-6.911 37.613Q-6.962 37.705-7.054 37.755Q-7.146 37.806-7.255 37.806Q-7.361 37.806-7.452 37.755Q-7.544 37.705-7.595 37.613Q-7.646 37.521-7.646 37.416Q-7.646 37.193-7.478 37.088Q-7.700 37.029-8.173 37.029Q-8.470 37.029-8.685 37.168Q-8.900 37.306-9.031 37.537Q-9.161 37.767-9.220 38.037Q-9.279 38.306-9.279 38.591Q-9.279 38.986-9.146 39.336Q-9.013 39.685-8.741 39.902Q-8.470 40.119-8.072 40.119Q-7.697 40.119-7.421 39.902Q-7.146 39.685-7.044 39.326Q-7.029 39.263-6.966 39.263L-6.861 39.263Q-6.825 39.263-6.800 39.291Q-6.775 39.318-6.775 39.357L-6.775 39.380Q-6.907 39.861-7.292 40.129Q-7.677 40.396-8.181 40.396Q-8.544 40.396-8.878 40.259Q-9.212 40.123-9.472 39.873Q-9.732 39.623-9.876 39.287Q-10.021 38.951-10.021 38.591M-6.286 38.623Q-6.286 38.119-6.031 37.687Q-5.775 37.255-5.339 37.004Q-4.904 36.752-4.404 36.752Q-4.017 36.752-3.675 36.896Q-3.333 37.041-3.072 37.302Q-2.810 37.564-2.667 37.900Q-2.525 38.236-2.525 38.623Q-2.525 39.115-2.788 39.525Q-3.052 39.935-3.482 40.166Q-3.911 40.396-4.404 40.396Q-4.896 40.396-5.329 40.164Q-5.763 39.931-6.025 39.523Q-6.286 39.115-6.286 38.623M-4.404 40.119Q-3.947 40.119-3.695 39.896Q-3.443 39.673-3.355 39.322Q-3.267 38.970-3.267 38.525Q-3.267 38.095-3.361 37.757Q-3.454 37.420-3.708 37.213Q-3.962 37.005-4.404 37.005Q-5.052 37.005-5.296 37.422Q-5.540 37.838-5.540 38.525Q-5.540 38.970-5.452 39.322Q-5.364 39.673-5.113 39.896Q-4.861 40.119-4.404 40.119M-0.111 40.318L-1.966 40.318L-1.966 40.021Q-1.693 40.021-1.525 39.974Q-1.357 39.927-1.357 39.759L-1.357 37.623Q-1.357 37.408-1.419 37.312Q-1.482 37.216-1.601 37.195Q-1.720 37.173-1.966 37.173L-1.966 36.877L-0.775 36.791L-0.775 37.525Q-0.661 37.310-0.468 37.142Q-0.275 36.974-0.036 36.882Q0.202 36.791 0.456 36.791Q1.624 36.791 1.624 37.869L1.624 39.759Q1.624 39.927 1.794 39.974Q1.964 40.021 2.233 40.021L2.233 40.318L0.378 40.318L0.378 40.021Q0.651 40.021 0.819 39.974Q0.987 39.927 0.987 39.759L0.987 37.884Q0.987 37.502 0.866 37.273Q0.745 37.045 0.393 37.045Q0.081 37.045-0.173 37.207Q-0.427 37.369-0.573 37.638Q-0.720 37.908-0.720 38.205L-0.720 39.759Q-0.720 39.927-0.550 39.974Q-0.380 40.021-0.111 40.021\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.751 27.607)\">\u003Cpath d=\"M3.075 39.357L3.075 37.166L2.372 37.166L2.372 36.912Q2.728 36.912 2.970 36.679Q3.212 36.447 3.323 36.099Q3.435 35.752 3.435 35.396L3.716 35.396L3.716 36.869L4.892 36.869L4.892 37.166L3.716 37.166L3.716 39.341Q3.716 39.662 3.835 39.890Q3.954 40.119 4.235 40.119Q4.415 40.119 4.532 39.996Q4.649 39.873 4.702 39.693Q4.755 39.513 4.755 39.341L4.755 38.869L5.036 38.869L5.036 39.357Q5.036 39.611 4.931 39.851Q4.825 40.091 4.628 40.244Q4.431 40.396 4.173 40.396Q3.857 40.396 3.605 40.273Q3.353 40.150 3.214 39.916Q3.075 39.681 3.075 39.357M7.763 40.318L5.782 40.318L5.782 40.021Q6.052 40.021 6.220 39.976Q6.388 39.931 6.388 39.759L6.388 37.623Q6.388 37.408 6.325 37.312Q6.263 37.216 6.146 37.195Q6.028 37.173 5.782 37.173L5.782 36.877L6.950 36.791L6.950 37.576Q7.028 37.365 7.181 37.179Q7.333 36.994 7.532 36.892Q7.732 36.791 7.958 36.791Q8.204 36.791 8.396 36.935Q8.587 37.080 8.587 37.310Q8.587 37.466 8.482 37.576Q8.376 37.685 8.220 37.685Q8.064 37.685 7.954 37.576Q7.845 37.466 7.845 37.310Q7.845 37.150 7.950 37.045Q7.626 37.045 7.411 37.273Q7.196 37.502 7.101 37.841Q7.005 38.181 7.005 38.486L7.005 39.759Q7.005 39.927 7.232 39.974Q7.458 40.021 7.763 40.021L7.763 40.318M9.067 38.623Q9.067 38.119 9.323 37.687Q9.579 37.255 10.015 37.004Q10.450 36.752 10.950 36.752Q11.337 36.752 11.679 36.896Q12.021 37.041 12.282 37.302Q12.544 37.564 12.687 37.900Q12.829 38.236 12.829 38.623Q12.829 39.115 12.566 39.525Q12.302 39.935 11.872 40.166Q11.442 40.396 10.950 40.396Q10.458 40.396 10.024 40.164Q9.591 39.931 9.329 39.523Q9.067 39.115 9.067 38.623M10.950 40.119Q11.407 40.119 11.659 39.896Q11.911 39.673 11.999 39.322Q12.087 38.970 12.087 38.525Q12.087 38.095 11.993 37.757Q11.899 37.420 11.646 37.213Q11.392 37.005 10.950 37.005Q10.302 37.005 10.058 37.422Q9.814 37.838 9.814 38.525Q9.814 38.970 9.901 39.322Q9.989 39.673 10.241 39.896Q10.493 40.119 10.950 40.119M15.228 40.318L13.396 40.318L13.396 40.021Q13.669 40.021 13.837 39.974Q14.005 39.927 14.005 39.759L14.005 35.599Q14.005 35.384 13.942 35.289Q13.880 35.193 13.761 35.172Q13.642 35.150 13.396 35.150L13.396 34.853L14.618 34.767L14.618 39.759Q14.618 39.927 14.786 39.974Q14.954 40.021 15.228 40.021L15.228 40.318M17.587 40.318L15.755 40.318L15.755 40.021Q16.028 40.021 16.196 39.974Q16.364 39.927 16.364 39.759L16.364 35.599Q16.364 35.384 16.302 35.289Q16.239 35.193 16.120 35.172Q16.001 35.150 15.755 35.150L15.755 34.853L16.978 34.767L16.978 39.759Q16.978 39.927 17.146 39.974Q17.314 40.021 17.587 40.021L17.587 40.318M18.032 38.564Q18.032 38.084 18.265 37.668Q18.497 37.252 18.907 37.002Q19.317 36.752 19.794 36.752Q20.524 36.752 20.923 37.193Q21.321 37.634 21.321 38.365Q21.321 38.470 21.228 38.494L18.778 38.494L18.778 38.564Q18.778 38.974 18.899 39.330Q19.021 39.685 19.292 39.902Q19.564 40.119 19.993 40.119Q20.357 40.119 20.653 39.890Q20.950 39.662 21.052 39.310Q21.060 39.263 21.146 39.248L21.228 39.248Q21.321 39.275 21.321 39.357Q21.321 39.365 21.314 39.396Q21.251 39.623 21.112 39.806Q20.974 39.990 20.782 40.123Q20.591 40.255 20.372 40.326Q20.153 40.396 19.915 40.396Q19.544 40.396 19.206 40.259Q18.868 40.123 18.601 39.871Q18.333 39.619 18.183 39.279Q18.032 38.939 18.032 38.564M18.786 38.255L20.747 38.255Q20.747 37.951 20.646 37.660Q20.544 37.369 20.327 37.187Q20.110 37.005 19.794 37.005Q19.493 37.005 19.263 37.193Q19.032 37.380 18.909 37.672Q18.786 37.963 18.786 38.255M23.817 40.318L21.837 40.318L21.837 40.021Q22.107 40.021 22.274 39.976Q22.442 39.931 22.442 39.759L22.442 37.623Q22.442 37.408 22.380 37.312Q22.317 37.216 22.200 37.195Q22.083 37.173 21.837 37.173L21.837 36.877L23.005 36.791L23.005 37.576Q23.083 37.365 23.235 37.179Q23.388 36.994 23.587 36.892Q23.786 36.791 24.013 36.791Q24.259 36.791 24.450 36.935Q24.642 37.080 24.642 37.310Q24.642 37.466 24.536 37.576Q24.431 37.685 24.274 37.685Q24.118 37.685 24.009 37.576Q23.899 37.466 23.899 37.310Q23.899 37.150 24.005 37.045Q23.681 37.045 23.466 37.273Q23.251 37.502 23.155 37.841Q23.060 38.181 23.060 38.486L23.060 39.759Q23.060 39.927 23.286 39.974Q23.513 40.021 23.817 40.021\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.751 27.607)\">\u003Cpath d=\"M30.847 38.502L28.374 38.502Q28.296 38.490 28.247 38.441Q28.199 38.392 28.199 38.318Q28.199 38.244 28.247 38.195Q28.296 38.146 28.374 38.134L30.847 38.134L30.847 35.654Q30.874 35.486 31.031 35.486Q31.105 35.486 31.154 35.535Q31.203 35.584 31.214 35.654L31.214 38.134L33.687 38.134Q33.855 38.166 33.855 38.318Q33.855 38.470 33.687 38.502L31.214 38.502L31.214 40.982Q31.203 41.052 31.154 41.101Q31.105 41.150 31.031 41.150Q30.874 41.150 30.847 40.982\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003Cg transform=\"translate(68.751 27.607)\">\u003Cpath d=\"M40.585 40.318L37.523 40.318L37.523 40.021Q37.847 40.021 38.089 39.974Q38.331 39.927 38.331 39.759L38.331 35.416Q38.331 35.244 38.089 35.197Q37.847 35.150 37.523 35.150L37.523 34.853L40.585 34.853Q41.136 34.853 41.614 35.080Q42.093 35.306 42.446 35.701Q42.800 36.095 42.989 36.595Q43.179 37.095 43.179 37.638Q43.179 38.345 42.835 38.963Q42.491 39.580 41.896 39.949Q41.300 40.318 40.585 40.318M39.073 35.416L39.073 39.759Q39.073 39.931 39.165 39.976Q39.257 40.021 39.476 40.021L40.370 40.021Q40.816 40.021 41.208 39.851Q41.601 39.681 41.872 39.357Q42.144 39.033 42.241 38.613Q42.339 38.193 42.339 37.638Q42.339 37.283 42.302 36.970Q42.265 36.658 42.159 36.363Q42.054 36.068 41.874 35.845Q41.691 35.611 41.452 35.461Q41.214 35.310 40.933 35.230Q40.651 35.150 40.370 35.150L39.476 35.150Q39.257 35.150 39.165 35.193Q39.073 35.236 39.073 35.416M46.370 40.318L44.011 40.318L44.011 40.021Q44.335 40.021 44.577 39.974Q44.819 39.927 44.819 39.759L44.819 35.416Q44.819 35.244 44.577 35.197Q44.335 35.150 44.011 35.150L44.011 34.853L46.605 34.853Q46.937 34.853 47.323 34.939Q47.710 35.025 48.058 35.199Q48.405 35.373 48.624 35.654Q48.843 35.935 48.843 36.302Q48.843 36.627 48.642 36.892Q48.441 37.158 48.134 37.334Q47.827 37.509 47.499 37.599Q47.866 37.720 48.126 37.990Q48.386 38.259 48.437 38.623L48.530 39.318Q48.601 39.767 48.698 39.998Q48.796 40.228 49.093 40.228Q49.339 40.228 49.472 40.011Q49.605 39.795 49.605 39.533Q49.624 39.459 49.706 39.439L49.788 39.439Q49.882 39.463 49.882 39.556Q49.882 39.787 49.784 40.002Q49.687 40.216 49.509 40.351Q49.331 40.486 49.101 40.486Q48.503 40.486 48.085 40.199Q47.667 39.912 47.667 39.341L47.667 38.646Q47.667 38.365 47.515 38.150Q47.362 37.935 47.112 37.822Q46.862 37.709 46.589 37.709L45.562 37.709L45.562 39.759Q45.562 39.923 45.806 39.972Q46.050 40.021 46.370 40.021L46.370 40.318M45.562 35.416L45.562 37.455L46.491 37.455Q46.812 37.455 47.079 37.402Q47.347 37.349 47.546 37.222Q47.745 37.095 47.862 36.863Q47.980 36.630 47.980 36.302Q47.980 35.650 47.583 35.400Q47.187 35.150 46.491 35.150L45.964 35.150Q45.745 35.150 45.653 35.193Q45.562 35.236 45.562 35.416M51.944 40.318L50.194 40.318L50.194 40.021Q50.894 40.021 51.081 39.541L52.882 34.716Q52.937 34.607 53.050 34.607L53.120 34.607Q53.233 34.607 53.288 34.716L55.179 39.759Q55.257 39.927 55.460 39.974Q55.663 40.021 55.976 40.021L55.976 40.318L53.753 40.318L53.753 40.021Q54.394 40.021 54.394 39.806Q54.394 39.787 54.392 39.777Q54.390 39.767 54.386 39.759L53.921 38.525L51.776 38.525L51.394 39.541Q51.390 39.556 51.384 39.586Q51.378 39.615 51.378 39.638Q51.378 39.779 51.468 39.863Q51.558 39.947 51.691 39.984Q51.823 40.021 51.944 40.021L51.944 40.318M52.851 35.662L51.882 38.228L53.808 38.228L52.851 35.662M58.562 40.318L56.640 40.318L56.640 40.021Q57.448 40.021 57.448 39.541L57.448 35.416Q57.448 35.244 57.206 35.197Q56.964 35.150 56.640 35.150L56.640 34.853L58.136 34.853Q58.245 34.853 58.304 34.966L60.151 39.509L61.991 34.966Q62.054 34.853 62.159 34.853L63.663 34.853L63.663 35.150Q63.343 35.150 63.101 35.197Q62.858 35.244 62.858 35.416L62.858 39.759Q62.858 39.927 63.101 39.974Q63.343 40.021 63.663 40.021L63.663 40.318L61.362 40.318L61.362 40.021Q62.167 40.021 62.167 39.759L62.167 35.166L60.120 40.205Q60.085 40.318 59.952 40.318Q59.812 40.318 59.776 40.205L57.753 35.228L57.753 39.541Q57.753 40.021 58.562 40.021\" fill=\"currentColor\" stroke=\"currentColor\" class=\"tikz-text\" style=\"stroke-width:0.240\"\u002F>\u003C\u002Fg>\u003C\u002Fg>\u003C\u002Fg>\u003Cpath fill=\"none\" d=\"M79.218 34.628v17.717\"\u002F>\u003Cpath stroke=\"none\" d=\"m79.218 54.345 1.6-3.2-1.6 1.2-1.6-1.2\"\u002F>\u003C\u002Fg>\u003C\u002Fsvg>\u003Cfigcaption class=\"tikz-cap\">The dual-core extension of the assembled CPU. The core is duplicated verbatim; what is new is everything between the cores: MESI coherence across the private caches, a shared LLC on an interconnect, and atomic read-modify-write support so software can build locks.\u003C\u002Ffigcaption>",1785117694574]